diff --git a/langchain-rag-app/.gitignore b/langchain-rag-app/.gitignore new file mode 100644 index 0000000000..2da12025ac --- /dev/null +++ b/langchain-rag-app/.gitignore @@ -0,0 +1,4 @@ +__pycache__/ +*.pyc +.env +chroma_data/ diff --git a/langchain-rag-app/README.md b/langchain-rag-app/README.md index 67f52794c5..c2e0ae7fa3 100644 --- a/langchain-rag-app/README.md +++ b/langchain-rag-app/README.md @@ -15,18 +15,18 @@ NEO4J_URI= NEO4J_USERNAME= NEO4J_PASSWORD= -HOSPITALS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/hospitals.csv -PAYERS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/payers.csv -PHYSICIANS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/physicians.csv -PATIENTS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/patients.csv -VISITS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/visits.csv -REVIEWS_CSV_PATH=https://raw.githubusercontent.com/hfhoffman1144/langchain_neo4j_rag_app/main/data/reviews.csv - -HOSPITAL_AGENT_MODEL=gpt-3.5-turbo-1106 -HOSPITAL_CYPHER_MODEL=gpt-3.5-turbo-1106 -HOSPITAL_QA_MODEL=gpt-3.5-turbo-0125 - -CHATBOT_URL=http://host.docker.internal:8000/hospital-rag-agent +HOSPITALS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/hospitals.csv +PAYERS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/payers.csv +PHYSICIANS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/physicians.csv +PATIENTS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/patients.csv +VISITS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/visits.csv +REVIEWS_CSV_PATH=https://raw.githubusercontent.com/realpython/materials/refs/heads/master/langchain-rag-app/data/reviews.csv + +HOSPITAL_AGENT_MODEL=gpt-5.5 +HOSPITAL_CYPHER_MODEL=gpt-5.5 +HOSPITAL_QA_MODEL=gpt-5.5 + +CHATBOT_URL=http://chatbot_api:8000/hospital-rag-agent ``` The chatbot uses OpenAI LLMs, so you'll need to create an [OpenAI API key](https://realpython.com/generate-images-with-dalle-openai-api/#get-your-openai-api-key) and store it as `OPENAI_API_KEY`. @@ -38,7 +38,7 @@ Once you have a running Neo4j instance, and have filled out all the environment Once you've filled in all of the environment variables, set up a Neo4j AuraDB instance, and installed Docker Compose, open a terminal and run: ```console -$ docker-compose up --build +$ docker compose up --build ``` After each container finishes building, you'll be able to access the chatbot API at `http://localhost:8000/docs` and the Streamlit app at `http://localhost:8501/`. diff --git a/langchain-rag-app/source_code_final/data/hospitals.csv b/langchain-rag-app/data/hospitals.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/hospitals.csv rename to langchain-rag-app/data/hospitals.csv diff --git a/langchain-rag-app/source_code_final/data/patients.csv b/langchain-rag-app/data/patients.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/patients.csv rename to langchain-rag-app/data/patients.csv diff --git a/langchain-rag-app/source_code_final/data/payers.csv b/langchain-rag-app/data/payers.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/payers.csv rename to langchain-rag-app/data/payers.csv diff --git a/langchain-rag-app/source_code_final/data/physicians.csv b/langchain-rag-app/data/physicians.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/physicians.csv rename to langchain-rag-app/data/physicians.csv diff --git a/langchain-rag-app/source_code_final/data/reviews.csv b/langchain-rag-app/data/reviews.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/reviews.csv rename to langchain-rag-app/data/reviews.csv diff --git a/langchain-rag-app/source_code_final/data/visits.csv b/langchain-rag-app/data/visits.csv similarity index 100% rename from langchain-rag-app/source_code_final/data/visits.csv rename to langchain-rag-app/data/visits.csv diff --git a/langchain-rag-app/source_code_final/chatbot_api/Dockerfile b/langchain-rag-app/source_code_final/chatbot_api/Dockerfile index 7d315db20b..7f09e6f3ab 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/Dockerfile +++ b/langchain-rag-app/source_code_final/chatbot_api/Dockerfile @@ -1,12 +1,10 @@ -# chatbot_api/Dockerfile - -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. EXPOSE 8000 -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_final/chatbot_api/pyproject.toml b/langchain-rag-app/source_code_final/chatbot_api/pyproject.toml index 330db6ddb4..bc7d970213 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/pyproject.toml +++ b/langchain-rag-app/source_code_final/chatbot_api/pyproject.toml @@ -2,18 +2,16 @@ name = "chatbot_api" version = "0.1" dependencies = [ - "asyncio==3.4.3", - "fastapi==0.109.0", - "langchain==0.1.0", - "langchain-openai==0.0.2", - "langchainhub==0.1.14", - "neo4j==5.14.1", - "numpy==1.26.2", - "openai==1.7.2", - "opentelemetry-api==1.22.0", - "pydantic==2.5.1", - "uvicorn==0.25.0" + "fastapi==0.136.3", + "langchain==1.3.4", + "langchain-openai==1.2.2", + "langchain-neo4j==0.9.0", + "neo4j==6.2.0", + "numpy==2.4.6", + "openai==2.41.0", + "pydantic==2.13.4", + "uvicorn==0.49.0" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/agents/hospital_rag_agent.py b/langchain-rag-app/source_code_final/chatbot_api/src/agents/hospital_rag_agent.py index 7094a93011..b891829b8a 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/agents/hospital_rag_agent.py +++ b/langchain-rag-app/source_code_final/chatbot_api/src/agents/hospital_rag_agent.py @@ -1,10 +1,11 @@ import os +from langchain.agents import create_agent +from langchain_core.tools import Tool +from langchain_openai import ChatOpenAI + from chains.hospital_cypher_chain import hospital_cypher_chain from chains.hospital_review_chain import reviews_vector_chain -from langchain import hub -from langchain.agents import AgentExecutor, Tool, create_openai_functions_agent -from langchain_openai import ChatOpenAI from tools.wait_times import ( get_current_wait_times, get_most_available_hospital, @@ -12,12 +13,28 @@ HOSPITAL_AGENT_MODEL = os.getenv("HOSPITAL_AGENT_MODEL") -hospital_agent_prompt = hub.pull("hwchase17/openai-functions-agent") +agent_system_prompt = ( + "You are a helpful assistant for a hospital system. Use the tools " + "available to you to answer the user's questions about patients, " + "visits, physicians, hospitals, insurance payers, patient reviews, " + "and current wait times." +) + + +def query_reviews(query: str) -> str: + """Answer questions about patient experiences from their reviews.""" + return reviews_vector_chain.invoke(query) + + +def query_graph(query: str) -> str: + """Answer questions by querying the hospital graph database.""" + return hospital_cypher_chain.invoke(query)["result"] + tools = [ Tool( name="Experiences", - func=reviews_vector_chain.invoke, + func=query_reviews, description="""Useful when you need to answer questions about patient experiences, feelings, or any other qualitative question that could be answered about a patient using semantic @@ -30,7 +47,7 @@ ), Tool( name="Graph", - func=hospital_cypher_chain.invoke, + func=query_graph, description="""Useful for answering questions about patients, physicians, hospitals, insurance payers, patient review statistics, and hospital visit details. Use the entire prompt as @@ -63,20 +80,10 @@ ), ] -chat_model = ChatOpenAI( - model=HOSPITAL_AGENT_MODEL, - temperature=0, -) - -hospital_rag_agent = create_openai_functions_agent( - llm=chat_model, - prompt=hospital_agent_prompt, - tools=tools, -) +chat_model = ChatOpenAI(model=HOSPITAL_AGENT_MODEL) -hospital_rag_agent_executor = AgentExecutor( - agent=hospital_rag_agent, +hospital_rag_agent_executor = create_agent( + model=chat_model, tools=tools, - return_intermediate_steps=True, - verbose=True, + system_prompt=agent_system_prompt, ) diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_cypher_chain.py b/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_cypher_chain.py index 198a5df311..71d8a9694f 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_cypher_chain.py +++ b/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_cypher_chain.py @@ -1,8 +1,7 @@ import os -from langchain.chains import GraphCypherQAChain -from langchain.prompts import PromptTemplate -from langchain_community.graphs import Neo4jGraph +from langchain_core.prompts import PromptTemplate +from langchain_neo4j import GraphCypherQAChain, Neo4jGraph from langchain_openai import ChatOpenAI HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -72,15 +71,15 @@ LIMIT 1 # How many non-emergency patients in North Carolina have written reviews? -match (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) -where h.state_name = 'NC' and v.admission_type <> 'Emergency' -return count(*) +MATCH (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) +WHERE h.state_name = 'NC' and v.admission_type <> 'Emergency' +RETURN count(*) String category values: Test results are one of: 'Inconclusive', 'Normal', 'Abnormal' Visit statuses are one of: 'OPEN', 'DISCHARGED' Admission Types are one of: 'Elective', 'Emergency', 'Urgent' -Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicare', +Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicaid', 'Aetna' A visit is considered open if its status is 'OPEN' and the discharge date is @@ -88,7 +87,7 @@ Use abbreviations when filtering on hospital states (e.g. "Texas" is "TX", "Colorado" is "CO", "North Carolina" is "NC", -"Florida" is "FL", "Georgia" is "GA, etc.) +"Florida" is "FL", "Georgia" is "GA", etc.) Make sure to use IS NULL or IS NOT NULL when analyzing missing properties. Never return embedding properties in your queries. You must never include the @@ -109,7 +108,7 @@ qa_generation_template = """You are an assistant that takes the results from a Neo4j Cypher query and forms a human-readable response. The query results section contains the results of a Cypher query that was -generated based on a users natural language question. The provided +generated based on a user's natural language question. The provided information is authoritative, you must never doubt it or try to use your internal knowledge to correct it. Make the answer sound like a response to the question. @@ -128,15 +127,14 @@ results are in units of days unless otherwise specified. When names are provided in the query results, such as hospital names, -beware of any names that have commas or other punctuation in them. +beware of any names that have commas or other punctuation in them. For instance, 'Jones, Brown and Murray' is a single hospital name, not multiple hospitals. Make sure you return any list of names in a way that isn't ambiguous and allows someone to tell what the full names are. Never say you don't have the right information if there is data in -the query results. Make sure to show all the relevant query results -if you're asked. +the query results. Always use the data in the query results. Helpful Answer: """ @@ -146,12 +144,13 @@ ) hospital_cypher_chain = GraphCypherQAChain.from_llm( - cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL, temperature=0), - qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), + cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL), + qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL), graph=graph, verbose=True, qa_prompt=qa_generation_prompt, cypher_prompt=cypher_generation_prompt, validate_cypher=True, top_k=100, + allow_dangerous_requests=True, ) diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_review_chain.py b/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_review_chain.py index 28ebe95513..40fb7e74e7 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_review_chain.py +++ b/langchain-rag-app/source_code_final/chatbot_api/src/chains/hospital_review_chain.py @@ -1,14 +1,20 @@ +import logging import os -from langchain.chains import RetrievalQA -from langchain.prompts import ( +from langchain_core.output_parsers import StrOutputParser +from langchain_core.prompts import ( ChatPromptTemplate, HumanMessagePromptTemplate, PromptTemplate, SystemMessagePromptTemplate, ) -from langchain.vectorstores.neo4j_vector import Neo4jVector -from langchain_openai import ChatOpenAI, OpenAIEmbeddings +from langchain_core.runnables import RunnablePassthrough +from langchain_neo4j import Neo4jVector +from langchain_openai import ChatOpenAI +from langchain_openai import OpenAIEmbeddings + +# Silence Neo4j's deprecation notice for db.index.vector.queryNodes +logging.getLogger("neo4j.notifications").setLevel(logging.ERROR) HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -29,11 +35,10 @@ ) review_template = """Your job is to use patient -reviews to answer questions about their experience at -a hospital. Use the following context to answer questions. -Be as detailed as possible, but don't make up any information -that's not from the context. If you don't know an answer, -say you don't know. +reviews to answer questions about their experience at a hospital. Use +the following context to answer questions. Be as detailed as possible, +but don't make up any information that's not from the context. If you +don't know an answer, say you don't know. {context} """ @@ -52,9 +57,12 @@ input_variables=["context", "question"], messages=messages ) -reviews_vector_chain = RetrievalQA.from_chain_type( - llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), - chain_type="stuff", - retriever=neo4j_vector_index.as_retriever(k=12), +reviews_retriever = neo4j_vector_index.as_retriever(search_kwargs={"k": 12}) +review_chat_model = ChatOpenAI(model=HOSPITAL_QA_MODEL) + +reviews_vector_chain = ( + {"context": reviews_retriever, "question": RunnablePassthrough()} + | review_prompt + | review_chat_model + | StrOutputParser() ) -reviews_vector_chain.combine_documents_chain.llm_chain.prompt = review_prompt diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/entrypoint.sh b/langchain-rag-app/source_code_final/chatbot_api/src/entrypoint.sh index b656f98593..01e8fd2083 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/entrypoint.sh +++ b/langchain-rag-app/source_code_final/chatbot_api/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Starting hospital RAG FastAPI service..." # Start the main application -uvicorn main:app --host 0.0.0.0 --port 8000 \ No newline at end of file +uvicorn main:app --host 0.0.0.0 --port 8000 diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/main.py b/langchain-rag-app/source_code_final/chatbot_api/src/main.py index 22538627d4..f182f80986 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/main.py +++ b/langchain-rag-app/source_code_final/chatbot_api/src/main.py @@ -1,9 +1,9 @@ +from fastapi import FastAPI + from agents.hospital_rag_agent import hospital_rag_agent_executor from models.hospital_rag_query import HospitalQueryInput, HospitalQueryOutput from utils.async_utils import async_retry -from fastapi import FastAPI - app = FastAPI( title="Hospital Chatbot", description="Endpoints for a hospital system graph RAG chatbot", @@ -12,12 +12,14 @@ @async_retry(max_retries=10, delay=1) async def invoke_agent_with_retry(query: str): - """ - Retry the agent if a tool fails to run. This can help when there - are intermittent connection issues to external APIs. - """ + """Retry the agent if a tool fails to run. - return await hospital_rag_agent_executor.ainvoke({"input": query}) + This can help when there are intermittent connection issues + to external APIs. + """ + return await hospital_rag_agent_executor.ainvoke( + {"messages": [{"role": "user", "content": query}]} + ) @app.get("/") @@ -30,8 +32,10 @@ async def query_hospital_agent( query: HospitalQueryInput, ) -> HospitalQueryOutput: query_response = await invoke_agent_with_retry(query.text) - query_response["intermediate_steps"] = [ - str(s) for s in query_response["intermediate_steps"] - ] + messages = query_response["messages"] - return query_response + return HospitalQueryOutput( + input=query.text, + output=messages[-1].content, + intermediate_steps=[str(message) for message in messages], + ) diff --git a/langchain-rag-app/source_code_final/chatbot_api/src/tools/wait_times.py b/langchain-rag-app/source_code_final/chatbot_api/src/tools/wait_times.py index f696cfed82..4840f9d156 100644 --- a/langchain-rag-app/source_code_final/chatbot_api/src/tools/wait_times.py +++ b/langchain-rag-app/source_code_final/chatbot_api/src/tools/wait_times.py @@ -2,7 +2,7 @@ from typing import Any import numpy as np -from langchain_community.graphs import Neo4jGraph +from langchain_neo4j import Neo4jGraph def _get_current_hospitals() -> list[str]: @@ -20,14 +20,11 @@ def _get_current_hospitals() -> list[str]: """ ) - current_hospitals = [d["hospital_name"].lower() for d in current_hospitals] - - return current_hospitals + return [d["hospital_name"].lower() for d in current_hospitals] def _get_current_wait_time_minutes(hospital: str) -> int: """Get the current wait time at a hospital in minutes.""" - current_hospitals = _get_current_hospitals() if hospital.lower() not in current_hospitals: @@ -38,7 +35,6 @@ def _get_current_wait_time_minutes(hospital: str) -> int: def get_current_wait_times(hospital: str) -> str: """Get the current wait time at a hospital formatted as a string.""" - wait_time_in_minutes = _get_current_wait_time_minutes(hospital) if wait_time_in_minutes == -1: @@ -47,16 +43,13 @@ def get_current_wait_times(hospital: str) -> str: hours, minutes = divmod(wait_time_in_minutes, 60) if hours > 0: - formatted_wait_time = f"{hours} hours {minutes} minutes" + return f"{hours} hours {minutes} minutes" else: - formatted_wait_time = f"{minutes} minutes" - - return formatted_wait_time + return f"{minutes} minutes" def get_most_available_hospital(_: Any) -> dict[str, float]: """Find the hospital with the shortest wait time.""" - current_hospitals = _get_current_hospitals() current_wait_times = [ diff --git a/langchain-rag-app/source_code_final/chatbot_frontend/Dockerfile b/langchain-rag-app/source_code_final/chatbot_frontend/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_final/chatbot_frontend/Dockerfile +++ b/langchain-rag-app/source_code_final/chatbot_frontend/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_final/chatbot_frontend/pyproject.toml b/langchain-rag-app/source_code_final/chatbot_frontend/pyproject.toml index e9b0d3166f..1855659632 100644 --- a/langchain-rag-app/source_code_final/chatbot_frontend/pyproject.toml +++ b/langchain-rag-app/source_code_final/chatbot_frontend/pyproject.toml @@ -2,9 +2,9 @@ name = "chatbot_frontend" version = "0.1" dependencies = [ - "requests==2.31.0", - "streamlit==1.29.0" + "requests==2.34.2", + "streamlit==1.58.0" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_final/chatbot_frontend/src/entrypoint.sh b/langchain-rag-app/source_code_final/chatbot_frontend/src/entrypoint.sh index 90aefcc205..7b381ce235 100644 --- a/langchain-rag-app/source_code_final/chatbot_frontend/src/entrypoint.sh +++ b/langchain-rag-app/source_code_final/chatbot_frontend/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Starting hospital chatbot frontend..." # Run the ETL script -streamlit run main.py \ No newline at end of file +streamlit run main.py diff --git a/langchain-rag-app/source_code_final/chatbot_frontend/src/main.py b/langchain-rag-app/source_code_final/chatbot_frontend/src/main.py index 14b77db841..962db6ea62 100644 --- a/langchain-rag-app/source_code_final/chatbot_frontend/src/main.py +++ b/langchain-rag-app/source_code_final/chatbot_frontend/src/main.py @@ -12,10 +12,10 @@ st.markdown( """ This chatbot interfaces with a - [LangChain](https://python.langchain.com/docs/get_started/introduction) + [LangChain](https://docs.langchain.com/oss/python/langchain/overview) agent designed to answer questions about the hospitals, patients, - visits, physicians, and insurance payers in a fake hospital system. - The agent uses retrieval-augment generation (RAG) over both + visits, physicians, and insurance payers in a fake hospital system. + The agent uses retrieval-augmented generation (RAG) over both structured and unstructured data that has been synthetically generated. """ ) @@ -23,18 +23,18 @@ st.header("Example Questions") st.markdown("- Which hospitals are in the hospital system?") st.markdown( - """- What is the current wait time at wallace-hamilton hospital?""" + "- What is the current wait time at wallace-hamilton hospital?" ) st.markdown( - """- At which hospitals are patients complaining about billing and - insurance issues?""" + "- At which hospitals are patients complaining about billing and " + "insurance issues?" ) st.markdown( "- What is the average duration in days for closed emergency visits?" ) st.markdown( - """- What are patients saying about the nursing staff at - Castaneda-Hardy?""" + "- What are patients saying about the nursing staff at " + "Castaneda-Hardy?" ) st.markdown( "- What was the total billing amount charged to each payer for 2023?" @@ -45,39 +45,35 @@ ) st.markdown("- How much was billed for patient 789's stay?") st.markdown( - """- Which state had the largest percent increase in medicaid visits - from 2022 to 2023?""" + "- Which state had the largest percent increase in medicaid visits " + "from 2022 to 2023?" ) st.markdown( "- What is the average billing amount per day for Aetna patients?" ) st.markdown( - """- How many reviews have been written from - patients in Florida?""" + "- How many reviews have been written from patients in Florida?" ) st.markdown( - """- For visits that are not missing chief complaints, - what percentage have reviews?""" + "- For visits that are not missing chief complaints, " + "what percentage have reviews?" ) st.markdown( - """- What is the percentage of visits that have reviews for - each hospital?""" + "- What is the percentage of visits that have reviews for each hospital?" ) st.markdown( - """- Which physician has received the most reviews for this visits - they've attended?""" + "- Which physician has received the most reviews for the visits " + "they've attended?" ) st.markdown("- What is the ID for physician James Cooper?") st.markdown( - """- List every review for visits treated by physician 270. - Don't leave any out.""" + "- List every review for visits treated by physician 270. Don't leave any out." ) - st.title("Hospital System Chatbot") st.info( - """Ask me questions about patients, visits, insurance payers, hospitals, - physicians, reviews, and wait times!""" + "Ask me questions about patients, visits, insurance payers, hospitals, " + "physicians, reviews, and wait times!" ) if "messages" not in st.session_state: @@ -112,7 +108,7 @@ explanation = output_text st.chat_message("assistant").markdown(output_text) - st.status("How was this generated?", state="complete").info(explanation) + st.status("How was this generated", state="complete").info(explanation) st.session_state.messages.append( { diff --git a/langchain-rag-app/source_code_final/docker-compose.yml b/langchain-rag-app/source_code_final/docker-compose.yml index a68dd3a135..f66b89a50d 100644 --- a/langchain-rag-app/source_code_final/docker-compose.yml +++ b/langchain-rag-app/source_code_final/docker-compose.yml @@ -1,19 +1,37 @@ -version: '3' - services: + neo4j: + image: neo4j:2026.05-community + ports: + - "7474:7474" + - "7687:7687" + environment: + - NEO4J_AUTH=neo4j/${NEO4J_PASSWORD} + - NEO4J_PLUGINS=["apoc"] + volumes: + - neo4j_data:/data + hospital_neo4j_etl: build: context: ./hospital_neo4j_etl env_file: - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 + depends_on: + - neo4j chatbot_api: build: context: ./chatbot_api env_file: - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 depends_on: - - hospital_neo4j_etl + neo4j: + condition: service_started + hospital_neo4j_etl: + condition: service_completed_successfully ports: - "8000:8000" @@ -25,4 +43,7 @@ services: depends_on: - chatbot_api ports: - - "8501:8501" \ No newline at end of file + - "8501:8501" + +volumes: + neo4j_data: diff --git a/langchain-rag-app/source_code_final/hospital_neo4j_etl/Dockerfile b/langchain-rag-app/source_code_final/hospital_neo4j_etl/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_final/hospital_neo4j_etl/Dockerfile +++ b/langchain-rag-app/source_code_final/hospital_neo4j_etl/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_final/hospital_neo4j_etl/pyproject.toml b/langchain-rag-app/source_code_final/hospital_neo4j_etl/pyproject.toml index 35c7467ebb..eb44f09746 100644 --- a/langchain-rag-app/source_code_final/hospital_neo4j_etl/pyproject.toml +++ b/langchain-rag-app/source_code_final/hospital_neo4j_etl/pyproject.toml @@ -2,9 +2,9 @@ name = "hospital_neo4j_etl" version = "0.1" dependencies = [ - "neo4j==5.14.1", + "neo4j==6.2.0", "retry==0.9.2" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/entrypoint.sh b/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/entrypoint.sh index 94764de2a7..af607f4c6a 100644 --- a/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/entrypoint.sh +++ b/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Running ETL to move hospital data from csvs to Neo4j..." # Run the ETL script -python hospital_bulk_csv_write.py \ No newline at end of file +python hospital_bulk_csv_write.py diff --git a/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/hospital_bulk_csv_write.py b/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/hospital_bulk_csv_write.py index fa7c6c161e..84d9b82766 100644 --- a/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/hospital_bulk_csv_write.py +++ b/langchain-rag-app/source_code_final/hospital_neo4j_etl/src/hospital_bulk_csv_write.py @@ -29,7 +29,7 @@ def _set_uniqueness_constraints(tx, node): query = f"""CREATE CONSTRAINT IF NOT EXISTS FOR (n:{node}) REQUIRE n.id IS UNIQUE;""" - _ = tx.run(query, {}) + tx.run(query, {}) @retry(tries=100, delay=10) @@ -55,7 +55,7 @@ def load_hospital_graph_from_csv() -> None: name: hospitals.hospital_name, state_name: hospitals.hospital_state}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading payer nodes") with driver.session(database="neo4j") as session: @@ -65,7 +65,7 @@ def load_hospital_graph_from_csv() -> None: MERGE (p:Payer {{id: toInteger(payers.payer_id), name: payers.payer_name}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading physician nodes") with driver.session(database="neo4j") as session: @@ -80,7 +80,7 @@ def load_hospital_graph_from_csv() -> None: salary: toFloat(physicians.salary) }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading visit nodes") with driver.session(database="neo4j") as session: @@ -103,7 +103,7 @@ def load_hospital_graph_from_csv() -> None: ON CREATE SET v.discharge_date = visits.discharge_date ON MATCH SET v.discharge_date = visits.discharge_date """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading patient nodes") with driver.session(database="neo4j") as session: @@ -117,7 +117,7 @@ def load_hospital_graph_from_csv() -> None: blood_type: patients.patient_blood_type }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading review nodes") with driver.session(database="neo4j") as session: @@ -131,7 +131,7 @@ def load_hospital_graph_from_csv() -> None: hospital_name: reviews.hospital_name }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'AT' relationships") with driver.session(database="neo4j") as session: @@ -142,7 +142,7 @@ def load_hospital_graph_from_csv() -> None: toInteger(trim(row.`hospital_id`))}}) MERGE (source)-[r: `AT`]->(target) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'WRITES' relationships") with driver.session(database="neo4j") as session: @@ -152,7 +152,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (r:Review {{id: toInteger(reviews.review_id)}}) MERGE (v)-[writes:WRITES]->(r) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'TREATS' relationships") with driver.session(database="neo4j") as session: @@ -162,7 +162,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[treats:TREATS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'COVERED_BY' relationships") with driver.session(database="neo4j") as session: @@ -175,7 +175,7 @@ def load_hospital_graph_from_csv() -> None: covered_by.service_date = visits.discharge_date, covered_by.billing_amount = toFloat(visits.billing_amount) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'HAS' relationships") with driver.session(database="neo4j") as session: @@ -185,7 +185,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[has:HAS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'EMPLOYS' relationships") with driver.session(database="neo4j") as session: @@ -195,7 +195,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (p:Physician {{id: toInteger(visits.physician_id)}}) MERGE (h)-[employs:EMPLOYS]->(p) """ - _ = session.run(query, {}) + session.run(query, {}) if __name__ == "__main__": diff --git a/langchain-rag-app/source_code_final/requirements.txt b/langchain-rag-app/source_code_final/requirements.txt index 55ae3ace27..acf8be7803 100644 --- a/langchain-rag-app/source_code_final/requirements.txt +++ b/langchain-rag-app/source_code_final/requirements.txt @@ -1,10 +1,2 @@ -anyio==4.3.0 -certifi==2024.2.2 -charset-normalizer==3.3.2 -h11==0.14.0 -httpcore==1.0.3 -httpx==0.26.0 -idna==3.6 -requests==2.31.0 -sniffio==1.3.0 -urllib3==2.2.1 +httpx==0.28.1 +requests==2.34.2 diff --git a/langchain-rag-app/source_code_final/tests/async_agent_requests.py b/langchain-rag-app/source_code_final/tests/async_agent_requests.py index 89194d56e4..6badbb11b5 100644 --- a/langchain-rag-app/source_code_final/tests/async_agent_requests.py +++ b/langchain-rag-app/source_code_final/tests/async_agent_requests.py @@ -21,20 +21,22 @@ async def make_bulk_requests(url, data): questions = [ - "What is the current wait time at wallace-hamilton hospital?", + "What is the current wait time at Wallace-Hamilton hospital?", "Which hospital has the shortest wait time?", - "At which hospitals are patients complaining about billing and insurance issues?", # E501 + "At which hospitals are patients complaining about billing and " + "insurance issues?", "What is the average duration in days for emergency visits?", "What are patients saying about the nursing staff at Castaneda-Hardy?", "What was the total billing amount charged to each payer for 2023?", - "What is the average billing amount for medicaid visits?", + "What is the average billing amount for Medicaid visits?", "How many patients has Dr. Ryan Brown treated?", "Which physician has the lowest average visit duration in days?", "How many visits are open and what is their average duration in days?", "Have any patients complained about noise?", "How much was billed for patient 789's stay?", "Which physician has billed the most to cigna?", - "Which state had the largest percent increase in medicaid visits from 2022 to 2023?", # E501 + "Which state had the largest percent increase in Medicaid " + "visits from 2022 to 2023?", ] request_bodies = [{"text": q} for q in questions] diff --git a/langchain-rag-app/source_code_final/tests/sync_agent_requests.py b/langchain-rag-app/source_code_final/tests/sync_agent_requests.py index 0f81363f78..f2a38061ec 100644 --- a/langchain-rag-app/source_code_final/tests/sync_agent_requests.py +++ b/langchain-rag-app/source_code_final/tests/sync_agent_requests.py @@ -5,20 +5,22 @@ CHATBOT_URL = "http://localhost:8000/hospital-rag-agent" questions = [ - "What is the current wait time at wallace-hamilton hospital?", + "What is the current wait time at Wallace-Hamilton hospital?", "Which hospital has the shortest wait time?", - "At which hospitals are patients complaining about billing and insurance issues?", # E501 + "At which hospitals are patients complaining about billing and " + "insurance issues?", "What is the average duration in days for emergency visits?", "What are patients saying about the nursing staff at Castaneda-Hardy?", "What was the total billing amount charged to each payer for 2023?", - "What is the average billing amount for medicaid visits?", + "What is the average billing amount for Medicaid visits?", "How many patients has Dr. Ryan Brown treated?", "Which physician has the lowest average visit duration in days?", "How many visits are open and what is their average duration in days?", "Have any patients complained about noise?", "How much was billed for patient 789's stay?", "Which physician has billed the most to cigna?", - "Which state had the largest percent increase in medicaid visits from 2022 to 2023?", # E501 + "Which state had the largest percent increase in Medicaid " + "visits from 2022 to 2023?", ] request_bodies = [{"text": q} for q in questions] diff --git a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/data_level0.bin b/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/data_level0.bin deleted file mode 100644 index 5e2940129b..0000000000 Binary files a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/data_level0.bin and /dev/null differ diff --git a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/header.bin b/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/header.bin deleted file mode 100644 index 880413a3b3..0000000000 Binary files a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/header.bin and /dev/null differ diff --git a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/index_metadata.pickle b/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/index_metadata.pickle deleted file mode 100644 index 73ecc1b390..0000000000 Binary files a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/index_metadata.pickle and /dev/null differ diff --git a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/length.bin b/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/length.bin deleted file mode 100644 index 6b6cc974ad..0000000000 Binary files a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/length.bin and /dev/null differ diff --git a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/link_lists.bin b/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/link_lists.bin deleted file mode 100644 index 94f8655ff9..0000000000 Binary files a/langchain-rag-app/source_code_step_1/chroma_data/c6e8d28e-4fd1-4ece-a99b-42b55f314ff7/link_lists.bin and /dev/null differ diff --git a/langchain-rag-app/source_code_step_1/langchain_intro/chatbot.py b/langchain-rag-app/source_code_step_1/langchain_intro/chatbot.py index da62ed5276..5f61b0514f 100644 --- a/langchain-rag-app/source_code_step_1/langchain_intro/chatbot.py +++ b/langchain-rag-app/source_code_step_1/langchain_intro/chatbot.py @@ -1,56 +1,62 @@ import dotenv -from langchain import hub -from langchain.agents import AgentExecutor, Tool, create_openai_functions_agent -from langchain.prompts import ( +from langchain.agents import create_agent +from langchain_chroma import Chroma +from langchain_core.output_parsers import StrOutputParser +from langchain_core.prompts import ( ChatPromptTemplate, HumanMessagePromptTemplate, PromptTemplate, SystemMessagePromptTemplate, ) -from langchain.schema.runnable import RunnablePassthrough -from langchain_community.vectorstores import Chroma -from langchain_core.output_parsers import StrOutputParser -from langchain_intro.tools import get_current_wait_time -from langchain_openai import ChatOpenAI, OpenAIEmbeddings +from langchain_core.runnables import RunnablePassthrough +from langchain_core.tools import Tool +from langchain_openai import ChatOpenAI +from langchain_openai import OpenAIEmbeddings -REVIEWS_CHROMA_PATH = "chroma_data/" +from langchain_intro.tools import get_current_wait_time dotenv.load_dotenv() +REVIEWS_CHROMA_PATH = "chroma_data/" + review_template_str = """Your job is to use patient reviews to answer questions about their experience at a hospital. Use the following context to answer questions. Be as detailed as possible, but don't make up any information that's not from the context. If you don't know an answer, say you don't know. + {context} """ review_system_prompt = SystemMessagePromptTemplate( prompt=PromptTemplate( - input_variables=["context"], template=review_template_str + input_variables=["context"], + template=review_template_str, ) ) review_human_prompt = HumanMessagePromptTemplate( - prompt=PromptTemplate(input_variables=["question"], template="{question}") + prompt=PromptTemplate( + input_variables=["question"], + template="{question}", + ) ) messages = [review_system_prompt, review_human_prompt] review_prompt_template = ChatPromptTemplate( - input_variables=["context", "question"], messages=messages + input_variables=["context", "question"], + messages=messages, ) -chat_model = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0) - -output_parser = StrOutputParser() +chat_model = ChatOpenAI(model="gpt-5.5") reviews_vector_db = Chroma( persist_directory=REVIEWS_CHROMA_PATH, embedding_function=OpenAIEmbeddings(), ) -reviews_retriever = reviews_vector_db.as_retriever(k=10) +reviews_retriever = reviews_vector_db.as_retriever(search_kwargs={"k": 10}) review_chain = ( {"context": reviews_retriever, "question": RunnablePassthrough()} @@ -87,22 +93,10 @@ ), ] -hospital_agent_prompt = hub.pull("hwchase17/openai-functions-agent") - -agent_chat_model = ChatOpenAI( - model="gpt-3.5-turbo-1106", - temperature=0, -) - -hospital_agent = create_openai_functions_agent( - llm=agent_chat_model, - prompt=hospital_agent_prompt, - tools=tools, -) +agent_chat_model = ChatOpenAI(model="gpt-5.5") -hospital_agent_executor = AgentExecutor( - agent=hospital_agent, +hospital_agent_executor = create_agent( + model=agent_chat_model, tools=tools, - return_intermediate_steps=True, - verbose=True, + system_prompt="You're a helpful assistant.", ) diff --git a/langchain-rag-app/source_code_step_1/langchain_intro/create_retriever.py b/langchain-rag-app/source_code_step_1/langchain_intro/create_retriever.py index 3ae76dbe9f..39d2463d39 100644 --- a/langchain-rag-app/source_code_step_1/langchain_intro/create_retriever.py +++ b/langchain-rag-app/source_code_step_1/langchain_intro/create_retriever.py @@ -1,6 +1,6 @@ import dotenv -from langchain.document_loaders.csv_loader import CSVLoader -from langchain_community.vectorstores import Chroma +from langchain_chroma import Chroma +from langchain_community.document_loaders.csv_loader import CSVLoader from langchain_openai import OpenAIEmbeddings REVIEWS_CSV_PATH = "data/reviews.csv" diff --git a/langchain-rag-app/source_code_step_1/requirements.txt b/langchain-rag-app/source_code_step_1/requirements.txt index a8b577877a..5341aeddea 100644 --- a/langchain-rag-app/source_code_step_1/requirements.txt +++ b/langchain-rag-app/source_code_step_1/requirements.txt @@ -1,105 +1,6 @@ -aiohttp==3.9.3 -aiosignal==1.3.1 -annotated-types==0.6.0 -anyio==4.3.0 -asgiref==3.7.2 -attrs==23.2.0 -backoff==2.2.1 -bcrypt==4.1.2 -build==1.0.3 -cachetools==5.3.2 -certifi==2024.2.2 -charset-normalizer==3.3.2 -chroma-hnswlib==0.7.3 -chromadb==0.4.22 -click==8.1.7 -coloredlogs==15.0.1 -dataclasses-json==0.6.4 -Deprecated==1.2.14 -distro==1.9.0 -fastapi==0.109.2 -filelock==3.13.1 -flatbuffers==23.5.26 -frozenlist==1.4.1 -fsspec==2024.2.0 -google-auth==2.28.0 -googleapis-common-protos==1.62.0 -grpcio==1.60.1 -h11==0.14.0 -httpcore==1.0.3 -httptools==0.6.1 -httpx==0.26.0 -huggingface-hub==0.20.3 -humanfriendly==10.0 -idna==3.6 -importlib-metadata==6.11.0 -importlib-resources==6.1.1 -jsonpatch==1.33 -jsonpointer==2.4 -kubernetes==29.0.0 -langchain==0.1.0 -langchain-community==0.0.12 -langchain-core==0.1.23 -langchain-openai==0.0.2 -langchainhub==0.1.14 -langsmith==0.0.87 -marshmallow==3.20.2 -mmh3==4.1.0 -monotonic==1.6 -mpmath==1.3.0 -multidict==6.0.5 -mypy-extensions==1.0.0 -numpy==1.26.4 -oauthlib==3.2.2 -onnxruntime==1.17.0 -openai==1.7.2 -opentelemetry-api==1.22.0 -opentelemetry-exporter-otlp-proto-common==1.22.0 -opentelemetry-exporter-otlp-proto-grpc==1.22.0 -opentelemetry-instrumentation==0.43b0 -opentelemetry-instrumentation-asgi==0.43b0 -opentelemetry-instrumentation-fastapi==0.43b0 -opentelemetry-proto==1.22.0 -opentelemetry-sdk==1.22.0 -opentelemetry-semantic-conventions==0.43b0 -opentelemetry-util-http==0.43b0 -overrides==7.7.0 -packaging==23.2 -posthog==3.4.1 -protobuf==4.25.3 -pulsar-client==3.4.0 -pyasn1==0.5.1 -pyasn1-modules==0.3.0 -pydantic==2.6.1 -pydantic_core==2.16.2 -PyPika==0.48.9 -pyproject_hooks==1.0.0 -python-dateutil==2.8.2 -python-dotenv==1.0.1 -PyYAML==6.0.1 -regex==2023.12.25 -requests==2.31.0 -requests-oauthlib==1.3.1 -rsa==4.9 -six==1.16.0 -sniffio==1.3.0 -SQLAlchemy==2.0.27 -starlette==0.36.3 -sympy==1.12 -tenacity==8.2.3 -tiktoken==0.5.2 -tokenizers==0.15.2 -tqdm==4.66.2 -typer==0.9.0 -types-requests==2.31.0.20240218 -typing-inspect==0.9.0 -typing_extensions==4.9.0 -urllib3==2.2.1 -uvicorn==0.27.1 -uvloop==0.19.0 -watchfiles==0.21.0 -websocket-client==1.7.0 -websockets==12.0 -wrapt==1.16.0 -yarl==1.9.4 -zipp==3.17.0 +langchain==1.3.4 +langchain-openai==1.2.2 +langchain-community==0.4.2 +langchain-chroma==1.1.0 +chromadb==1.5.9 +python-dotenv==1.2.2 diff --git a/langchain-rag-app/source_code_step_2/data/hospitals.csv b/langchain-rag-app/source_code_step_2/data/hospitals.csv deleted file mode 100644 index f99d3f84d6..0000000000 --- a/langchain-rag-app/source_code_step_2/data/hospitals.csv +++ /dev/null @@ -1,31 +0,0 @@ -hospital_id,hospital_name,hospital_state -0,Wallace-Hamilton,CO -1,"Burke, Griffin and Cooper",NC -2,Walton LLC,FL -3,Garcia Ltd,NC -4,"Jones, Brown and Murray",NC -5,Boyd PLC,GA -6,"Wheeler, Bryant and Johns",FL -7,Brown Inc,FL -8,"Smith, Edwards and Obrien",FL -9,Brown-Golden,NC -10,Little-Spencer,CO -11,Rose Inc,FL -12,"Malone, Thompson and Mejia",NC -13,Mcneil-Ali,GA -14,"Jones, Taylor and Garcia",CO -15,Richardson-Powell,GA -16,Castaneda-Hardy,CO -17,Burch-White,NC -18,Cunningham and Sons,TX -19,"Bell, Mcknight and Willis",CO -20,Pugh-Rogers,GA -21,"Rush, Owens and Johnson",NC -22,Pearson LLC,CO -23,Taylor and Sons,TX -24,Schultz-Powers,TX -25,Jordan Inc,FL -26,Lewis-Nelson,FL -27,Shea LLC,GA -28,Huynh PLC,CO -29,Vaughn PLC,CO diff --git a/langchain-rag-app/source_code_step_2/data/patients.csv b/langchain-rag-app/source_code_step_2/data/patients.csv deleted file mode 100644 index 8f6e0c03d2..0000000000 --- a/langchain-rag-app/source_code_step_2/data/patients.csv +++ /dev/null @@ -1,9650 +0,0 @@ -patient_name,patient_sex,patient_id,patient_dob,patient_blood_type -Tiffany Ramirez,Female,0,1994-10-06,O+ -Ruben Burns,Male,1,1973-03-31,A- -Chad Byrd,Male,2,1932-05-10,O- -Antonio Frederick,Male,3,1944-10-04,AB+ -Mrs. Brandy Flowers,Male,4,1989-01-26,AB+ -Patrick Parker,Male,5,1962-10-04,A+ -Charles Horton,Male,6,1960-11-23,B- -Patty Norman,Female,7,1990-07-23,B- -Ryan Hayes,Male,8,1947-02-26,O- -Sharon Perez,Female,9,1976-02-19,AB- -Amy Roberts,Male,10,1942-02-13,AB+ -Mrs. Caroline Farrell,Female,11,1990-02-17,A+ -Christina Williams,Female,12,1969-06-28,O- -William Page,Female,13,1961-02-10,B- -Michael Bradshaw,Female,14,1973-11-14,AB+ -Brian Dorsey,Female,15,1952-10-14,A- -Olivia Gonzalez,Male,16,1934-08-13,A+ -Teresa Caldwell,Male,17,1932-02-09,O+ -Desiree Williams MD,Male,18,1993-11-19,AB+ -Sally Shaw,Male,19,1936-08-30,A+ -William Johnson,Female,20,1944-07-17,O- -Steven Bennett,Male,21,1943-10-31,O+ -Haley Li,Male,22,1947-07-31,A+ -Angela Brown,Female,23,1978-02-06,A+ -Beverly Miller,Male,24,1987-05-01,B+ -Daniel Dickson,Female,25,1984-02-16,B+ -Kimberly Mason,Female,26,1947-07-07,B+ -Francis Newman,Female,27,1953-09-23,B- -Ronnie Hughes,Female,28,2000-04-01,AB- -Shannon Fitzpatrick DVM,Female,29,1981-11-11,AB+ -Teresa Gonzalez,Female,30,1996-05-07,B- -Rodney Maynard,Male,31,1980-06-18,A- -Kevin Johnson,Male,32,1937-07-10,O+ -Rebecca Parsons,Male,33,1999-12-16,AB- -Linda Chavez,Male,34,2002-03-26,A+ -Jennifer Rodriguez,Female,35,1930-07-09,B- -Anna Adams,Female,36,1982-05-06,B+ -Mariah Williams,Male,37,1938-03-25,AB- -Brendan Moody,Male,38,1987-08-12,A- -Michael Burns,Male,39,1935-03-15,AB+ -Miguel Baker,Male,40,1996-01-13,A- -Mr. Christopher Miller,Male,41,1933-06-21,O+ -Theresa Mendoza,Female,42,1979-01-16,O- -Laura Adams,Female,43,1961-03-13,B- -Lauren Barton,Male,44,1939-09-27,B+ -Christina Hernandez,Female,45,1940-08-26,O+ -Kyle Byrd,Female,46,1954-03-14,O- -Jasmine Singleton,Male,47,1969-09-15,B+ -John Griffin,Female,48,1989-08-16,B+ -Justin Kaufman,Female,49,1959-02-05,B+ -Dylan Mcknight,Male,50,1954-01-27,B- -Olivia Ayala,Male,51,1958-11-25,O+ -Frank Mccormick,Male,52,1958-01-27,B+ -Rachael Davidson,Female,53,1953-02-02,A- -Lori Owens,Male,54,1958-01-07,O+ -Frank Reid,Female,55,1960-02-29,AB- -Cynthia Stanton,Male,56,1995-06-06,A- -Nicole Williams,Male,57,1937-02-25,B- -Michael Miller,Male,58,1994-02-19,B+ -Kenneth Lopez,Female,59,2001-01-07,O+ -Gabrielle Russell,Male,60,1991-12-06,A+ -Mary Brown,Male,61,1989-11-17,B- -Evan Martinez,Female,62,1994-04-18,O+ -Amanda Stein DVM,Female,63,2001-05-02,AB- -Paul Graham,Female,64,1973-03-23,B+ -Lisa Gonzalez,Male,65,1976-12-24,O- -Angela Sanchez,Female,66,1963-06-03,B+ -Kimberly Wheeler,Female,67,1952-07-10,O- -Francisco Ritter,Male,68,1969-10-24,A+ -Kenneth Smith,Male,69,1938-08-19,B- -Christina Martinez,Female,70,2002-08-22,AB- -Ryan Richmond,Male,71,1934-05-05,O+ -Linda Wheeler,Male,72,1940-10-18,O+ -Anna Phillips,Male,73,1995-07-18,O- -Juan Patel,Female,74,1983-04-10,AB- -Miguel Fields,Female,75,1932-10-18,A- -Tyler Rosario,Female,76,1961-11-27,A+ -Lisa Johnson,Male,77,1959-08-02,O- -David Sanchez,Male,78,1966-09-26,O- -Teresa Marks,Female,79,1985-05-19,A+ -Jonathan Fernandez,Female,80,1951-11-16,B- -Douglas Crawford,Male,81,1956-07-15,O+ -Anthony Fisher,Female,82,1965-07-26,B- -Kimberly Vargas,Female,83,1948-10-26,AB- -Travis Walker,Female,84,1945-07-16,A- -Amanda Ortiz,Male,85,1930-06-11,B+ -Keith Johns,Female,86,1941-10-07,AB+ -Jesse Williams,Male,87,2002-09-17,AB+ -Michael Ford,Female,88,1932-09-22,AB+ -Jessica Ford,Female,89,1961-07-31,A+ -Thomas Washington,Female,90,1950-11-21,O- -Ariel Davis,Female,91,2000-10-11,A- -Joyce Vaughn,Male,92,1932-10-13,B- -Jermaine Thomas,Female,93,1996-05-27,B+ -Jason Horn,Female,94,1992-06-27,O+ -Samuel Welch,Male,95,1996-06-19,AB+ -Steven Boyer,Male,96,1993-08-25,B- -Gabrielle Francis,Male,97,1996-07-13,AB+ -Christian Guerrero,Male,98,1953-05-09,A- -Christopher Juarez,Male,99,1977-04-06,AB+ -Paul Greer,Male,100,1955-05-18,O+ -Brian Robinson,Female,101,1988-03-28,B+ -Scott Adams,Male,102,1963-05-13,AB- -Amber Solomon,Male,103,1988-02-29,AB- -Jacob Howell,Female,104,1947-05-03,A- -Monica Stevens,Female,105,1953-06-20,AB- -Kurt Sloan,Female,106,1998-08-20,A+ -Allison White,Female,107,1949-09-26,O- -Ronald Rollins,Female,108,1944-06-12,A+ -Albert Dunn,Male,109,1980-07-03,B- -Anthony Armstrong,Female,110,1975-01-13,A+ -William Jacobson,Female,111,1974-05-26,B- -Jennifer Reeves,Male,112,1951-12-03,B- -Tammy Thompson,Male,113,1937-01-12,O- -Susan Mills,Male,114,1989-10-25,O+ -Kelly Manning,Female,115,1935-07-21,B+ -Joseph Barrera,Female,116,1937-05-19,A- -Jason Hunter,Male,117,2001-05-19,O- -Martha Franklin,Male,118,1972-03-23,A- -Alyssa Osborne,Male,119,1944-05-25,AB- -Carlos Young,Male,120,1990-03-29,AB- -Jesse Sanders,Female,121,1948-06-11,A+ -Mrs. Brittany Fields,Female,122,1931-01-27,B- -Melanie Clark,Male,123,1968-04-17,AB+ -Kevin Andrews,Female,124,1964-09-05,AB+ -Caitlin Sanders,Male,125,1946-02-18,A- -Sabrina Patterson,Female,126,1939-10-02,B- -Destiny Parks,Female,127,1946-12-07,A- -Antonio Miller,Female,128,1983-05-06,O- -Matthew Oliver,Male,129,1992-01-18,O+ -Joshua Benjamin,Male,130,1952-12-23,B+ -Albert Carter,Female,131,1965-10-11,O- -James Pittman,Male,132,1971-10-18,B- -Danielle Rice,Male,133,1983-05-11,B- -John Edwards,Female,134,1994-08-12,O+ -Lori Sanders,Male,135,1936-09-20,A- -Rebecca Mcdonald,Male,136,1962-05-30,A+ -James Marsh,Female,137,1968-06-09,A+ -Patrick Bates,Male,138,1999-06-28,O+ -Sheila Castro,Female,139,1982-05-03,A+ -Tim Mercer,Female,140,1960-01-09,AB+ -Andrea Williams,Male,141,1997-03-08,A+ -Zachary Wood,Male,142,1956-09-23,A+ -Meghan Burns,Female,143,1943-11-05,A+ -Mark Grant,Male,144,1970-12-05,AB+ -Kelly Walker,Female,145,1952-03-16,A- -Kelly Miller,Male,146,1967-09-17,A+ -Tina Vargas,Female,147,1985-05-16,AB- -Christopher Gilbert,Male,148,1977-09-03,AB+ -Randall Meyer,Female,149,1995-01-29,O+ -Russell Holden,Female,150,1931-05-18,O- -Sara Bates,Male,151,1948-12-02,O+ -Jeff Cooper MD,Female,152,1964-09-24,O- -Anne Smith,Male,153,1999-09-02,B+ -Ernest Peters,Female,154,1993-11-08,O+ -Tammy Savage,Female,155,1987-02-23,AB- -Deborah Butler,Female,156,1930-07-26,O- -Amy Jensen,Female,157,1988-11-30,O- -Zachary Martinez,Male,158,1991-03-23,B- -Eric Wilson,Female,159,1995-12-31,O- -Matthew Pratt,Female,160,1994-02-13,O- -Andrew Alvarez,Female,161,1978-12-03,B- -Jocelyn Simmons,Female,162,1996-05-16,A+ -Andre Perez MD,Male,163,1973-08-17,A+ -Michael White,Male,164,1977-03-22,B- -Emily Perez,Female,165,1982-07-01,AB+ -David Casey,Male,166,1995-02-21,B+ -Joseph Bailey,Male,167,1953-12-21,O- -Raymond Cain,Female,168,1988-11-12,O- -Victoria Dunn,Female,169,1963-11-27,B- -Paula Knight,Female,170,1991-05-04,B- -Jennifer Trevino,Male,171,1979-09-02,AB+ -Mrs. Deborah Rose,Female,172,1970-07-30,AB- -Ryan Cross,Male,173,1950-09-27,A+ -Michael Morgan,Male,174,1947-06-15,O+ -Christina Armstrong,Male,175,1993-09-23,AB- -Anne Bates,Male,176,1934-08-06,A- -Scott Nicholson,Male,177,1983-09-26,A+ -Jeffrey Cross,Female,178,1987-07-21,O- -Holly Hickman,Male,179,1932-11-25,A- -Jacob Rodriguez,Female,180,1993-02-11,AB- -Jessica Joseph,Female,181,1974-05-08,B- -Stacy Williams,Male,182,1957-02-22,AB+ -Gregory Wilson,Female,183,1983-07-03,A+ -Elizabeth Sullivan,Male,184,1991-01-20,AB+ -Wendy Cantu,Female,185,1959-08-14,A- -Paul Wells,Male,187,1959-11-26,A+ -Troy Villarreal,Female,188,1956-10-20,B+ -Latoya Price,Male,189,1974-08-30,B+ -Paul Watson,Female,190,1960-10-22,AB- -Alejandro Ramirez DDS,Male,191,1937-05-17,O- -Timothy Miranda,Male,192,1968-02-22,B+ -Brian Shea,Male,193,1939-12-07,B+ -Shirley Casey,Female,194,2001-01-07,O+ -Kathy Cross,Female,195,1974-03-28,AB+ -Pam Cantu,Female,196,1957-11-08,AB+ -Heidi Parker,Male,197,1989-10-12,B+ -Lori Anderson,Male,198,1979-05-31,O+ -Colleen Swanson,Male,199,2001-06-22,AB+ -Christopher Campos,Female,200,1958-01-04,AB+ -Samantha Simpson,Male,201,1973-01-02,A+ -Terrence Edwards,Male,202,1990-03-03,A+ -Amanda Lee,Female,203,1961-06-21,O+ -Nancy Moore,Female,204,1995-02-05,A- -Rachel Williams,Male,205,1933-07-30,O- -Carolyn Murphy,Female,206,1948-07-21,AB- -Angela Beard,Male,207,1990-11-30,B+ -Vanessa Taylor,Male,208,1955-12-10,B+ -Brooke Ellison,Male,209,1950-08-10,AB- -Kevin Copeland,Female,210,1999-03-25,B+ -Timothy Lynch,Male,211,1990-02-14,B+ -Christopher Barker,Male,212,1945-02-21,A- -Stephanie Ayers,Female,213,1986-12-10,AB+ -Amber Foley,Female,214,1940-04-06,O- -Geoffrey Robertson,Female,215,1967-02-01,B+ -Laurie Mitchell,Female,216,1931-10-26,O+ -Stephanie Carter,Male,217,1935-06-22,A- -Ana Hall,Female,218,1951-11-21,B+ -Thomas Lopez,Female,219,1978-12-14,O+ -Paul Welch,Female,220,1939-01-18,A+ -David Harding,Male,221,1985-02-28,AB+ -Frederick Salazar,Female,222,1989-03-08,B- -Jose Hayes,Female,223,1979-12-07,B+ -Kara Long,Female,224,1967-10-22,O+ -David Reed,Male,225,1948-01-12,A- -Wayne Livingston,Female,226,1978-05-24,AB+ -Joel Williams,Female,227,1984-08-30,O- -Michael Daniel,Female,228,1961-11-23,A- -Deanna Moon,Male,229,1995-07-17,A+ -Wanda Moore MD,Male,230,1994-10-16,AB- -Charles Singleton,Female,231,1934-06-25,B+ -Matthew Russell,Female,232,1984-12-23,O- -Anna Davis,Female,233,1976-10-08,O+ -Emily Sanders,Female,234,1942-12-21,B+ -Erin Molina,Female,235,1969-11-07,O+ -Alyssa Wright,Female,236,1967-12-30,O- -Samantha Mora,Female,237,1932-05-04,O+ -Kyle Dean,Male,238,1997-03-18,A- -Jodi Moore,Female,239,1946-01-12,AB+ -Mark Chen,Male,240,1950-03-29,O+ -Christina Rogers,Male,241,1992-09-24,A+ -Alejandro Baxter,Female,242,1968-03-11,AB+ -Felicia Rodriguez,Female,243,1989-03-25,A- -Rebecca Campbell,Female,244,1989-01-07,B+ -Michael Pollard,Male,245,1979-07-14,B- -Willie Chan,Male,246,1945-11-09,B+ -Adam Ballard,Female,247,2002-01-12,O+ -William Mahoney,Male,248,1990-01-05,O+ -Aaron Hughes,Male,249,1943-07-03,A+ -Jeanette White,Female,250,1984-06-20,A- -Tammy Williams,Female,251,1930-07-22,A+ -Travis Morales,Male,252,1961-05-05,AB- -John Garza,Female,253,1986-05-29,A- -Elizabeth Adams,Male,254,1964-09-27,O- -Mindy Torres,Male,255,1999-05-21,O- -Nicole Smith,Female,256,1942-01-07,O- -Donna Sanchez,Female,257,1936-05-16,A+ -Stephen Manning,Female,258,1951-12-01,O- -Willie Black,Male,259,1982-11-19,A- -Jennifer Berg,Male,260,1951-04-18,O- -Lauren Ward,Male,261,1930-07-17,B- -John Briggs,Female,262,1994-05-14,O- -Yvette Scott,Female,263,1935-04-15,O+ -Eric Martinez,Female,264,1962-03-28,AB- -Jennifer Frye,Male,265,1971-04-23,A+ -Jamie Kelley,Male,266,1992-01-27,AB+ -Richard Kramer,Male,267,1998-12-14,AB- -Ashley Armstrong,Female,268,1955-07-28,B- -Jacob Meyers,Male,269,1986-08-01,A+ -Jillian Robinson,Male,270,1961-09-24,A- -Roberta Fisher,Female,271,1981-09-25,B+ -Andrew Morales,Male,272,1973-01-03,A+ -Jason Evans,Female,273,2002-03-14,O+ -Harry Thomas,Female,274,1976-08-30,A- -Natalie Jackson,Male,275,1937-09-12,AB- -Molly Houston,Male,276,1994-04-17,AB- -Ryan Lee,Female,277,1968-12-30,O- -Christopher Martin,Female,278,1947-12-04,A- -Tabitha Carr,Male,279,2001-01-13,B+ -Lisa Rojas,Male,280,1935-06-10,O+ -Mary Delgado,Female,281,1952-10-30,O- -Lisa Sanchez,Female,282,1961-03-30,O- -Kathleen Hanson,Female,283,1937-12-21,B+ -Donna Jones,Male,284,1934-10-01,A+ -Rachel Morales,Male,285,1979-11-27,AB- -Michelle Quinn,Female,286,1953-10-07,O- -Crystal Smith,Male,287,1983-01-03,B- -Tracey Martin,Female,288,1980-03-22,B- -Matthew Palmer,Female,289,1945-10-08,AB- -Kristy Donaldson,Female,290,1993-03-09,B- -Amy Jackson,Male,291,1936-07-13,B+ -Patrick Taylor DDS,Female,292,1960-06-03,A+ -Robert Carter DDS,Male,293,1942-12-20,O+ -Elizabeth Charles,Male,294,1934-12-08,AB+ -Melissa Jones,Female,295,1952-04-30,O- -Tammy Cook,Female,296,1952-03-26,AB+ -Dennis Banks,Female,297,1948-02-12,O+ -Cody Gonzales,Male,298,1969-01-13,O+ -Peter Alvarado,Female,299,1969-08-30,B+ -Timothy Melton,Male,300,1990-01-04,A+ -Donald Moreno,Female,301,1985-12-23,B- -Lori Barrett,Male,302,1975-07-30,B- -Cynthia Patterson,Female,303,1968-07-15,B+ -Angel Robles,Male,304,1992-01-27,O+ -Denise Randall,Male,305,1998-12-29,A+ -Laurie Turner,Male,306,1955-03-19,A+ -Whitney Garza,Female,307,1974-10-28,AB- -Erin Porter,Male,308,1962-05-28,A- -Victor Gardner,Female,309,1966-01-20,O- -Angelica Chen,Male,310,1935-08-12,B+ -Alan Rodriguez,Male,311,1944-11-06,A- -Angela Garcia,Male,312,1969-12-11,B+ -Julia Johnson,Female,313,1987-04-24,B- -David Hess,Male,314,1983-05-15,O+ -Jeffery Young,Male,315,1949-08-07,B+ -Louis Lewis,Female,316,1958-01-22,B+ -Jennifer Benson,Female,317,1950-04-06,AB- -Daniel Alexander,Male,318,1983-07-16,AB+ -Robert Taylor,Male,319,1957-01-13,B- -Mrs. Crystal Garcia,Female,320,1971-06-26,O- -Eduardo Davidson,Male,321,1981-01-12,A+ -Dustin Garrett,Female,322,1933-02-28,O+ -Jacqueline Sanchez,Female,323,1942-04-27,B- -Brian Foster,Male,324,1947-03-28,AB+ -Elizabeth Kline,Female,325,1991-10-29,B+ -Angela Ramos,Female,326,2001-12-06,O- -Lisa Howell,Female,327,1963-05-11,B+ -Jonathan Nielsen,Female,328,1965-04-01,O- -Rose Robinson,Male,329,1979-05-16,AB- -Timothy Mcgrath,Male,330,1945-03-02,B+ -Jonathan Brown,Female,331,1956-05-21,B- -Christopher Velasquez,Female,332,1986-05-10,AB+ -Louis Campbell,Female,333,1997-12-24,O- -William Dawson,Male,334,1972-09-03,O+ -Cindy Jones,Male,335,1937-01-01,O- -Adrian Valencia,Male,336,1945-04-24,AB+ -Alexis Chen,Female,337,1975-02-16,A+ -Kathleen Murray,Female,338,1936-01-10,A+ -Michelle Harris,Female,339,1968-10-20,AB- -Julie Mckenzie,Female,340,1938-02-09,B- -Robert Ho,Female,341,1968-11-24,AB+ -Katelyn Vincent,Male,342,1988-06-22,AB- -Anne Wallace,Female,343,1986-12-30,A- -Joseph Lynch,Male,344,1962-10-09,O- -Dr. Leah Delgado,Female,345,1937-11-09,A- -Melissa Robinson,Male,346,1977-06-23,O- -Carol Murray,Male,347,1968-04-23,A+ -Nathan Elliott,Female,348,1997-09-22,AB- -Melissa Harris,Male,349,1945-08-09,A+ -Gabriel Mccormick,Male,350,1993-11-14,O+ -Erica Santos,Male,351,1987-02-28,A- -Carrie Miller,Female,352,2000-11-05,A- -Barbara Salinas,Male,353,1988-04-21,A+ -Amanda Smith MD,Male,354,1940-12-01,O+ -Charles Simmons,Female,355,2001-06-20,O- -Christina Mccoy,Male,356,1991-04-30,AB- -Brett Montoya,Female,357,1966-10-25,O+ -Mr. Ricardo Bullock,Male,358,1933-05-03,AB- -Mrs. Kristine Hall MD,Female,359,1987-03-03,A- -Mary Jones,Male,360,1942-12-19,AB- -Jeffrey Wilson,Female,361,1960-12-05,A- -John Miller,Female,362,1942-06-22,O+ -Ashley Cherry,Male,363,1955-01-16,A- -Douglas Myers,Male,364,1952-01-16,B+ -Stephanie Fowler,Male,365,1964-12-05,B- -David Hines,Male,366,1984-04-17,A- -Robert Mcdonald,Male,367,1977-09-20,A+ -Ryan Frazier,Female,368,1948-11-15,O+ -Eric Price,Female,369,1979-06-30,B+ -Meagan Smith,Female,370,1969-05-09,O- -Jordan Nelson,Female,371,1969-11-17,AB- -Patrick Howard,Female,372,1939-05-30,B+ -Shelley Martinez,Male,373,1953-12-20,AB+ -Donna Mitchell,Male,374,1959-03-27,B+ -Lindsey Hampton,Male,375,1946-02-21,O+ -Dr. Wendy Taylor,Male,376,1984-01-16,B+ -Jodi Shannon,Female,377,1975-06-23,B+ -Nancy Peters,Male,378,1972-10-23,A+ -Vanessa Landry,Male,379,1988-04-03,A- -Carlos Bennett,Male,380,1949-03-24,AB- -Jessica Roman,Male,381,1955-01-21,B- -Mrs. Margaret Morris DDS,Female,382,1945-05-02,O- -Adam Butler,Male,383,1951-11-23,B- -Cheryl Mcgee,Male,384,1954-08-30,B+ -George Gordon,Female,385,1965-06-12,AB+ -Mrs. Ashley Simpson MD,Male,386,1995-11-23,O+ -Rose Rios,Male,387,1942-09-17,AB- -Gerald Moreno,Female,388,1960-12-21,O+ -Danielle Kim DVM,Female,389,1951-01-10,A+ -Nicole Casey,Male,390,1952-06-22,O+ -Terry Branch,Male,391,1994-12-14,O- -Michael Schmidt,Female,392,2000-09-09,AB+ -Justin Parker,Female,393,1980-11-23,B- -Donna Strickland,Female,394,1959-05-05,B+ -Jessica Garcia,Male,395,1977-10-14,B+ -David Brock,Male,396,1939-06-07,AB+ -Mark Mack,Male,397,1959-06-15,AB- -Renee Tate,Male,398,1969-07-09,O+ -Christopher Farmer,Female,399,1932-11-26,AB- -Bryan Moyer,Male,400,1981-03-25,B- -James Evans,Male,401,1939-05-14,AB- -Deborah Barrera,Male,402,1930-10-29,A+ -Laura Robinson,Female,403,1964-02-20,AB+ -Hannah Joseph,Male,404,1976-07-08,B- -Richard Smith,Female,405,1983-07-16,B- -Drew Edwards,Female,406,1931-12-01,A- -Dana Peterson,Female,407,1988-10-15,B- -David Stuart,Female,408,2000-05-28,A- -Allen Munoz,Male,409,1930-07-10,O- -Donald Mccoy,Male,410,1958-09-23,B+ -Jamie Day,Female,411,1977-07-17,A- -Corey Johnson,Male,412,1938-02-23,AB+ -Sarah Henson,Female,413,1946-09-16,AB- -Chelsea Johnson,Male,414,1978-02-06,A- -Danielle Ballard,Female,415,1983-12-20,B- -Heather Turner,Female,416,1984-02-25,AB+ -Joel Whitehead,Female,417,1997-08-20,A- -Lauren Clark,Male,418,2002-12-10,A- -Cory Miller,Female,419,1934-12-22,B- -Eric Aguirre,Female,420,1990-11-20,A+ -Cheryl Jones,Male,421,1993-03-24,A+ -Christopher Baker,Female,422,1931-07-24,A- -Thomas Stevens,Female,423,1944-11-25,A+ -Christopher Duffy,Male,424,1935-03-11,O+ -Donna Bailey,Female,425,1982-05-05,B- -John Gill,Female,426,1940-07-30,O+ -Kristina Becker,Male,427,1965-05-10,AB+ -Mrs. Christine Rodriguez,Female,428,1950-05-31,O+ -Scott Dickerson MD,Female,429,1940-12-28,AB+ -Ruth Perry,Male,430,1960-05-16,A- -Mrs. Penny Sanchez,Female,431,1979-06-23,AB+ -Benjamin Hanson,Male,432,1938-03-29,AB+ -Michael Hall,Female,433,1996-03-25,AB- -William Stokes,Female,434,1975-04-13,O+ -Tiffany White,Female,435,1959-05-18,AB- -Bradley Cross,Male,436,1933-11-10,A- -Richard Brown,Male,437,1963-07-16,B- -Megan Gibson DVM,Female,438,1932-02-24,O+ -Taylor Byrd,Female,439,1952-03-02,B- -Daniel Kline,Male,440,1950-09-13,B- -Alicia French,Female,441,1964-04-25,AB+ -Shelley Lee,Male,442,1950-02-08,B+ -Jennifer Cunningham,Male,443,1949-09-24,O+ -Robert Powell,Male,444,1990-03-07,B- -Amanda Martinez,Male,445,1945-11-19,B+ -Suzanne Clark,Female,446,1982-07-17,A+ -Cassandra Burke,Male,447,1976-04-30,B- -Mike Winters,Female,448,1946-05-23,A+ -Christopher Clark MD,Female,450,1979-11-25,O+ -Charles Wade,Male,451,1959-02-25,A- -Gabriel Vasquez,Male,452,1953-11-12,AB- -Donald Holden,Male,453,1993-12-11,O+ -Nancy Hodges,Male,454,1990-04-05,AB- -Albert Sandoval,Male,455,1982-12-08,AB- -George Morton,Female,456,1996-09-27,O+ -Peter Sutton,Female,457,1963-09-28,B- -Francisco Allen,Female,458,1943-02-02,O- -Richard Johnson,Female,459,1936-06-26,B- -Jessica Duncan,Male,460,1962-12-18,B- -William Cohen,Female,461,1948-03-22,A- -Gary Jackson,Female,462,1952-05-18,AB+ -Frederick Newman,Female,463,1942-04-23,AB+ -Jason Alvarez,Female,464,1959-10-29,B- -Linda Brown,Female,465,1999-12-12,A+ -Travis Williams,Male,466,1991-04-17,A- -Joshua Brooks,Female,467,1992-12-19,AB- -Catherine Wallace,Female,468,2000-06-24,B+ -Matthew Landry,Female,469,1966-09-12,AB+ -Nicholas Jordan,Female,470,1965-12-04,B- -Jose Brown,Female,471,1991-01-24,A- -Tami Oliver,Female,472,1960-01-10,O- -Rachel Brooks,Male,473,2002-09-18,A+ -Frank Rosario,Male,474,1932-05-03,O+ -Kayla Jackson,Female,475,1986-03-18,B- -Melissa Martinez,Female,476,1985-03-06,A- -Emily Hull,Male,477,1976-06-06,B- -Stephen Reynolds,Male,478,1978-01-01,B+ -Glen Brown,Male,479,1992-02-02,AB- -Ashley Greene,Female,480,1992-07-15,A+ -Julie Acevedo,Male,481,1995-06-02,AB+ -Micheal Duran,Male,482,1957-02-15,AB+ -Rebecca Harrison,Female,483,1943-01-30,AB+ -Johnny Johnson,Male,484,1985-05-30,B+ -Harry Brown,Female,485,1971-12-30,O+ -Tasha Smith,Female,486,1936-10-27,A- -April Young,Female,487,1971-12-20,A+ -Cathy Duncan,Male,488,1969-12-21,A+ -Megan Johnson,Male,489,1983-05-31,AB+ -Joshua Owens,Female,490,1990-06-10,AB+ -Teresa Williams,Male,491,1938-05-10,AB- -Ryan Garrison,Male,492,1973-10-01,B+ -Dr. Benjamin Jimenez,Female,493,1974-11-14,O- -Mariah Davis,Female,494,1989-02-26,O- -Nathan Schwartz,Female,495,1989-05-30,B- -Vickie Bernard,Female,496,1988-03-10,B- -Robert Brown,Male,497,1932-05-26,A+ -Daniel Mayo,Male,498,2000-01-01,A+ -Danny Farley,Male,499,1994-02-05,O+ -Maria Williams,Male,500,1941-05-05,O+ -Sally Henderson,Female,501,1971-08-16,O- -Kathy Walls,Male,502,1949-01-27,B+ -Angela Lara,Female,503,1949-05-20,B- -Terry Martinez,Male,504,1951-11-14,O- -Alicia Bartlett,Male,505,1948-08-13,B+ -Melissa Smith,Female,506,1942-03-24,O- -Bruce Atkinson,Male,507,1976-08-06,B- -Monica Hampton,Male,508,1966-09-26,A- -Travis Barrett,Male,509,1979-06-30,O+ -Kayla Herrera,Male,510,2001-11-22,AB- -Brian Gibson,Male,511,1987-11-14,AB- -Ryan Rodriguez,Male,512,1952-10-03,AB- -Jeremy Whitney,Female,513,1977-02-17,B- -Amanda Hernandez,Female,514,1968-08-07,AB+ -Steven Schaefer,Male,515,1944-03-05,AB+ -Matthew Norris,Male,516,1969-01-18,AB+ -Diana Watkins,Female,517,2001-01-13,A+ -Keith Chambers,Male,518,1999-04-25,O+ -Andrew Davis,Male,519,1952-09-30,O+ -Daniel Horne,Male,520,1946-04-16,A- -Angela Hunter,Male,521,1982-08-18,A- -Karen Clark,Female,522,1933-02-24,A+ -Walter Miller,Male,523,1995-07-23,O- -Shane Olson,Female,524,1935-04-16,B+ -Rhonda Larson,Male,525,1955-03-15,A- -Jasmine Hernandez,Female,526,1979-06-01,AB- -Christopher Delgado,Female,527,1932-12-17,AB+ -Laura Banks,Male,528,1976-04-05,AB- -John Johnson,Female,529,1966-09-16,AB+ -Craig Garcia,Male,530,1951-05-16,AB- -Stephen Wheeler,Male,531,1944-05-04,O- -Heather Walters,Female,532,1976-05-22,B+ -Alexis Huynh,Female,533,1984-11-29,AB- -Timothy Henderson,Female,534,1964-12-23,AB- -Colleen Allen,Male,535,1995-02-17,B- -Robert Cruz,Female,536,1974-06-23,B+ -Laura Torres,Male,537,1966-02-05,AB- -Laura Leonard,Female,538,1939-02-26,B- -Andrew Sharp,Male,539,1966-12-18,O+ -Jacob Jenkins,Female,540,1986-01-01,B+ -Theodore Sanchez,Male,541,1956-06-15,A+ -Robert Harris,Female,542,1976-06-12,B+ -Julie Johnston,Female,543,1971-05-31,B+ -Angela Lewis,Female,544,1994-01-13,AB- -Steven Irwin,Male,545,1952-04-05,O+ -Katelyn Barron,Male,546,1983-06-23,B+ -Karen Sanford,Male,547,1986-06-29,A- -Yvette Banks,Female,548,1934-08-07,A- -James Perkins,Female,549,1939-08-08,B- -Nicholas Marquez,Female,550,1966-05-16,AB- -Christopher Haynes,Male,551,1949-11-10,AB- -Heather Johnson,Female,552,1982-05-16,B+ -John Turner,Female,553,1955-11-01,O- -Maria Mahoney,Female,554,1989-01-23,O+ -Michelle Johnson,Female,555,1960-12-19,AB+ -Monica Serrano,Male,556,1966-05-28,AB+ -Larry Fitzpatrick,Female,557,1980-09-20,O- -Karen Dunn,Male,558,1966-04-07,B- -David Kim,Male,559,1960-07-13,AB+ -Christian Gonzalez,Male,560,1958-08-19,B+ -Martin Hines,Female,561,1992-12-22,AB+ -Sandra Rose,Male,562,1936-10-15,A- -Casey Brown,Male,563,1992-08-11,A- -Vincent Reese,Female,564,2001-10-06,A+ -Mr. John Martin DVM,Female,565,1995-03-06,O+ -Amanda Stone,Female,566,2002-02-05,B- -Timothy Hernandez,Female,567,1942-03-11,AB- -Kelly Jones,Male,568,2002-12-15,O+ -Megan Kelley,Female,569,1946-02-07,B- -Michelle Robinson MD,Female,570,1993-02-08,AB+ -Mr. Christopher Burns DDS,Female,571,1968-07-09,A+ -Deborah Kelley,Male,572,1937-10-20,O+ -Julie Long,Female,573,1950-03-27,AB+ -Natalie Johnson,Male,574,1993-10-06,B- -Steven Rodriguez,Male,575,1962-08-23,O+ -Jennifer Williams,Male,576,1936-10-25,AB- -Mark Gordon,Male,577,1956-11-23,O+ -Jon Harding,Male,578,1955-03-18,AB+ -Leslie Kennedy,Male,579,1956-02-14,B+ -Christina Roberts,Female,580,1974-10-21,B+ -Zachary Roberts,Female,581,1942-08-17,O+ -Steven Reilly,Male,582,1982-08-19,AB- -Amber Carter,Female,583,1998-03-16,A+ -Victor Edwards,Male,584,1946-02-04,A+ -Jeffery Tucker,Female,585,1974-10-04,B+ -Robert Cooper,Female,586,1999-09-27,AB+ -Victoria Velez,Female,587,1992-02-12,B- -Angela Scott,Female,588,1932-05-01,AB+ -Sarah Burke,Male,589,1979-06-24,A+ -Karen Fox,Female,590,2002-07-29,O- -Nathan Harrison,Male,591,1948-09-16,O- -Allen Chen,Male,592,1962-09-08,O+ -Bryan Williams,Female,593,1936-08-24,AB- -Stephanie Reed,Male,594,2001-07-31,B+ -Bradley Jones,Male,595,1940-12-14,A- -Francis Wheeler,Female,596,1943-11-01,A- -Ricardo Mcconnell,Male,597,1937-07-01,A- -Heather Stephens,Female,598,1990-07-21,O+ -Michael Parker,Male,599,1944-10-01,O- -Craig Leonard,Female,600,1951-11-29,A+ -Kevin Cunningham,Female,601,1945-02-27,O+ -Terrance Knapp,Female,602,1966-11-27,A- -Teresa Martinez,Male,603,1940-09-18,A- -Desiree Gordon,Female,604,1977-10-11,B+ -David Reyes,Female,605,1996-01-02,AB+ -Jessica Yates,Female,606,1986-11-07,A- -Amber Wade,Female,607,1959-02-14,AB- -Jo Clark,Male,608,1986-02-07,A- -Kevin Frederick,Female,609,1945-09-05,AB+ -Alfred Johnson,Male,610,1939-03-28,A- -Emily Mason,Female,611,1963-04-19,AB- -Terry Thompson,Female,612,1999-05-08,A+ -Michael Simon,Female,613,1935-09-14,O+ -Diana Stevens,Male,614,1999-05-30,AB- -Luis Cooper,Female,615,1993-05-02,AB+ -George Allison,Male,616,1974-07-30,O+ -David Boyd,Female,617,1971-11-27,O+ -Leonard Benton,Male,618,1956-11-17,AB+ -Kenneth Armstrong,Female,619,1960-10-31,B+ -Angela Lopez,Female,620,1931-02-22,O- -Stanley Kirby,Male,621,1997-08-07,A- -Stephanie Bryant,Female,622,1954-02-12,AB- -Daniel Barajas,Male,623,1985-09-27,AB+ -Joy Mitchell,Male,624,1938-12-12,A+ -Daniel Mccoy,Female,625,1977-02-12,B- -Latoya Liu,Male,626,1995-11-08,AB+ -Michael Thompson,Female,627,1945-09-24,A- -Daryl Torres,Female,628,2001-06-09,A- -Cindy Gomez,Female,629,1961-01-16,O+ -Sherry Williams,Male,630,1931-02-17,O+ -Kurt Gordon,Female,631,1950-08-27,AB+ -Tammy Hamilton,Male,632,1950-10-10,B- -Kevin Montoya,Female,633,1931-12-30,B+ -Dana Beck,Male,634,1994-06-22,AB+ -Crystal Green,Male,635,1999-02-19,B- -Steven Clark,Female,636,1961-12-01,B+ -Cheryl Thomas,Male,637,1946-05-25,B- -Judith Trevino,Female,638,1981-09-18,A- -Amy Keller,Female,639,1938-02-15,A- -Gerald Moore,Male,640,1969-10-10,A- -Deanna Stone,Female,641,1982-06-27,A+ -John Rios,Female,643,1973-12-09,A- -James Chung,Female,644,1977-12-06,AB- -Kimberly Mccarthy,Male,645,1986-01-10,O+ -Christine Young,Female,646,1979-02-28,O+ -Donald Walker,Female,647,1943-11-22,B- -Shane Black,Male,648,1943-12-23,O+ -Derek Henderson,Male,649,1935-11-14,O- -Pamela Miller,Male,650,2001-11-27,B+ -Allison Aguilar,Male,651,1993-06-29,B- -Ms. Katelyn Lopez MD,Female,652,1950-02-22,O+ -Alicia Evans,Female,653,1962-12-22,O- -David Collins,Male,654,1939-06-03,B+ -Lisa Marshall,Male,655,1985-03-03,A+ -Miss Courtney Navarro,Male,656,1945-06-15,O+ -Pamela Sullivan,Female,657,1958-10-19,O- -Linda Stewart,Male,658,1969-11-04,AB+ -Daniel Blevins,Female,659,1937-12-24,AB- -Kenneth Oconnell,Female,660,1988-06-17,AB+ -Tamara Salazar,Female,661,1991-01-22,O- -Tammy Lewis,Female,662,1967-03-12,B- -Christine Lewis,Male,663,1963-04-02,A- -Lynn Lowery,Male,664,1969-06-02,A- -Marie Franklin,Male,665,1954-01-22,A- -Holly Norman,Female,666,1968-11-08,B+ -Michael Russell,Male,667,1931-12-30,B- -Richard Vega,Male,668,1978-08-06,B+ -Jessica Mcdonald,Female,669,1987-02-27,O+ -Bruce Johnson,Female,670,1931-11-30,A- -Daniel Meadows,Male,671,1949-09-04,AB+ -Jesse Tucker,Female,672,1969-09-25,B- -Ryan Anderson,Male,673,1968-02-14,B- -Kaitlyn Sampson,Female,674,1975-12-10,A- -Brian York,Male,675,1950-04-06,AB+ -Ashley Martinez,Female,676,1996-12-26,A+ -Andre Burch,Female,677,1941-06-03,B- -Stephen Combs,Male,678,1941-12-09,A- -Allison Reed PhD,Male,679,1936-11-07,AB- -Abigail Mitchell,Female,680,2002-04-08,O- -Jackie Arellano,Female,681,1976-10-27,B+ -Sierra Moreno,Female,682,1982-06-23,O+ -Daniel Golden,Male,683,1988-05-26,B- -Melissa Martin,Female,684,1945-01-08,AB- -Emily Johnson,Female,685,1952-10-27,AB- -Angela Taylor,Male,686,1988-06-29,B- -Ronald Becker,Male,687,1994-10-02,A+ -Tanya Sanford DDS,Male,688,1942-04-19,O- -Jerry Roman,Male,689,1994-07-20,O+ -Adam Stephens,Female,690,1960-06-22,B- -Jane Vargas,Female,691,1990-02-27,B+ -Joseph Smith,Male,692,1950-12-13,O+ -Sydney Gill,Male,693,1984-10-24,AB+ -Katherine White,Female,694,1933-03-13,AB- -Joy Martinez,Female,695,1932-11-28,AB- -Karen Mccoy,Male,696,1980-10-05,B- -David Pierce,Female,697,1996-05-18,B- -Sandra Payne,Female,698,1988-12-27,B+ -Theresa Woodard,Female,699,1989-05-20,AB+ -Cindy Lowe,Female,700,1960-08-05,A+ -Deborah Perry,Female,701,1992-10-07,B- -Yesenia Williams,Female,702,1942-12-13,AB- -Amanda Jones,Male,703,1955-08-06,O+ -Julie Brooks,Male,704,1994-12-05,O- -Nicholas Martin,Male,705,1944-08-09,A- -Patricia Rivera,Female,706,1954-06-08,O+ -Jeffrey Lawrence,Male,707,1941-11-09,A+ -Curtis Dean,Male,708,1996-10-15,O- -Tabitha Price,Male,709,1948-08-15,O+ -Todd Hernandez,Male,710,1943-04-09,O+ -Seth Burgess,Male,711,1948-06-06,AB+ -Stephanie James,Male,712,1972-01-29,A- -Brandon Scott,Female,713,1994-09-07,B+ -Clarence Munoz,Male,714,1977-06-20,A+ -Theresa Ball,Male,715,1936-12-14,AB- -Barbara Gutierrez,Female,716,1949-04-27,AB+ -Kimberly Fernandez,Female,717,1961-07-13,O- -Eric Combs,Female,718,1961-06-20,A- -Travis Jordan,Female,719,1934-03-23,AB- -Dillon Dunlap,Female,720,1989-05-08,AB+ -Sonya Gonzales,Female,721,1968-03-26,A- -Erin Sharp,Male,722,1978-02-13,B+ -Eric Green,Female,723,1947-04-15,A+ -Tina Howard,Female,724,1993-11-08,B- -Michael Lewis,Male,725,1982-03-14,B+ -Thomas Rodriguez,Female,726,2000-08-14,B- -Linda Gillespie,Male,727,1979-01-28,O- -Terry Lawson,Female,728,1991-10-04,B- -Kelsey Perry,Female,729,1990-01-11,AB+ -Erik Wood,Male,730,1967-10-21,O- -Jeremy Jones,Female,731,1956-03-25,AB- -Elizabeth Stafford,Male,732,2002-05-15,B+ -Jason Alvarado,Female,733,1978-08-06,B+ -Mary Stein,Male,734,1953-10-18,A+ -Sandra Green,Male,735,2001-11-20,O- -Nicholas Mitchell,Male,736,1998-09-07,AB- -Joshua Gates,Male,737,1950-07-09,B+ -William Hart,Female,738,1941-10-22,O- -Leah Harrington,Male,739,1933-08-17,O+ -Victoria Kennedy,Female,740,2000-06-13,O+ -Juan Vargas,Male,741,2002-04-16,O- -Mr. Bryan Williams,Male,742,1938-08-08,B+ -Sabrina Barron,Male,743,1995-03-04,A- -Anthony Bailey,Male,744,1984-05-27,B- -Ryan Edwards,Male,745,1934-12-16,O+ -William Osborne,Male,746,1948-01-15,A- -Jennifer Perez,Female,747,1982-11-11,A- -Natasha Fischer,Male,748,1944-07-07,A+ -Jennifer Wang,Male,749,1986-04-27,AB- -Danielle Jones,Female,750,1999-03-29,AB+ -Lori Walker,Male,751,1991-03-23,O+ -Lauren Sosa,Female,752,1972-05-25,O- -John Lynch,Male,753,1962-01-27,B- -Elizabeth Johnson,Male,754,1986-07-18,AB+ -Karen Butler,Male,755,1943-01-01,AB- -Brittany Baker,Male,756,1988-02-19,A- -Melissa Dean,Male,757,1955-11-01,AB- -Sylvia Johnson,Male,758,1940-02-27,B+ -Johnny Stephens,Male,759,2000-03-31,O+ -Michele Thompson,Female,760,1992-12-24,AB- -Loretta Schmitt,Female,761,1998-07-14,AB- -Malik Phillips,Female,762,1965-11-29,B- -Andrea Thompson,Male,763,1999-09-26,B+ -Brenda James,Female,764,1956-03-21,B+ -Jeff Castillo,Female,765,1957-10-16,A- -John Kim,Male,766,1983-04-09,B- -Marie Cooper,Male,767,1947-11-18,B- -Christopher Powers,Female,768,1957-11-23,O- -Rebecca Johnson,Female,769,1970-03-15,AB- -Annette Cruz,Female,770,1931-05-20,AB- -Melissa Mcdonald,Male,771,1933-04-29,B+ -Ashley English,Female,772,1934-03-12,AB- -Kevin Thomas,Male,773,1995-08-08,A+ -Sean Sullivan,Female,774,1932-04-03,B- -Mark Proctor,Male,775,1977-05-26,AB+ -Annette Mitchell,Female,776,1943-10-09,B+ -Carl Thompson,Female,777,1966-10-07,O+ -Steven Davis,Female,778,1975-03-23,B+ -Justin Cunningham,Male,779,1935-10-07,A- -Christine Bryant,Female,780,1939-12-07,AB+ -Andrea Rich,Male,781,1965-07-08,A- -Audrey Moore,Male,782,1992-02-25,O- -Rebecca Lyons,Female,783,1935-01-27,O- -Steven Davis,Male,784,1943-06-12,A- -Ana Clark,Male,785,1986-04-16,AB- -Brandon Miller MD,Female,786,1960-02-16,AB+ -Autumn Ortiz,Female,787,1989-07-02,AB- -Ana Stone,Female,788,2000-09-16,B+ -Anthony Conner Jr.,Male,789,1967-11-26,A+ -April Williams,Male,790,1962-01-17,O- -Justin Martin,Male,791,1973-02-25,O- -Jason Whitaker,Male,792,1946-12-13,AB+ -Holly Knight,Female,793,1978-04-19,O- -Lori Phillips,Male,794,1984-02-07,A+ -Nicholas Johnson,Female,795,1945-06-16,A+ -Amy Bowman,Female,796,1984-05-27,A+ -Joshua Frey,Male,797,1984-09-02,O+ -William Farrell,Female,798,1956-04-02,A+ -Danielle Nunez,Male,799,1962-05-22,A+ -Mrs. Natasha Williams,Male,800,1952-01-19,O+ -Peter Davis MD,Female,801,1939-02-13,AB- -Angie Robinson,Male,802,1982-04-05,B+ -Elizabeth Burton,Female,803,1953-09-19,B- -Gloria Weaver,Female,804,1997-02-02,O- -David Thomas,Female,805,1949-06-24,A+ -Hector Gross,Female,806,1966-06-24,O- -Sean Holmes,Male,807,1933-09-15,AB+ -Sandra Mcclain,Female,808,1960-01-19,O- -Ashley Osborne,Female,809,1960-03-07,A- -Erin Baldwin,Female,810,1988-09-20,AB- -Kenneth Mcfarland,Female,811,1998-04-07,B+ -Timothy Wu,Female,812,1995-08-07,O+ -Margaret Hamilton,Male,813,1931-10-30,O- -Jeffery Patton,Male,814,1987-02-03,O- -Cameron Hall,Male,815,1955-07-26,O- -Matthew Olson,Male,816,1967-05-26,B- -Kevin Padilla,Female,817,1993-07-12,B- -Paul Brooks,Male,818,1940-03-08,AB+ -Crystal Allen,Female,819,1982-05-17,O+ -Brian Williams,Male,820,1950-06-28,O- -Laura Schmidt,Female,821,1931-06-24,O- -Sarah Campbell,Male,822,1943-08-05,O- -Kristen Johnson,Male,823,1943-03-29,O- -Antonio Robbins,Male,824,1985-03-12,B- -Debra Mcdaniel,Male,825,1946-07-18,AB- -Virginia Wolfe,Male,826,1970-08-16,AB- -Carolyn Nguyen DVM,Male,827,1994-04-21,AB+ -Christopher Cervantes,Female,828,1950-01-08,A- -Alan Alvarado,Female,829,1944-07-26,A+ -Kelly Taylor,Male,830,1966-03-09,O+ -Justin Perry,Male,831,1991-08-25,AB- -Kristin Proctor,Female,832,1996-06-18,A- -Danielle Hunter,Female,833,1937-08-11,B+ -Jeanne Gray,Female,834,1977-05-22,B+ -Rachel Marks,Female,835,1934-05-01,O- -Matthew Bush,Male,836,1995-12-24,B+ -Justin Buck,Female,837,1983-12-17,AB- -Julie Murray,Male,838,1964-09-16,AB+ -Travis Dyer,Male,839,1945-08-23,A+ -Matthew Good DVM,Female,840,1994-02-04,AB- -Lori Lyons,Female,841,1975-07-23,AB+ -Michael Monroe,Male,842,1943-02-26,B+ -Christopher Miller,Male,843,1979-11-22,B- -Chris Roth,Female,844,1957-10-02,A+ -Jennifer Harrison,Male,845,1930-01-10,AB+ -Jeffrey Carter,Female,846,1982-09-20,A- -Alexis Jones,Male,847,1999-06-21,AB- -Karen Mills,Female,848,1995-02-22,B- -Linda Collins,Male,849,1995-03-03,A- -Tricia Oliver,Female,850,1944-01-12,AB+ -Corey Cruz,Male,851,1932-10-12,AB+ -Christopher Adams,Female,852,2002-04-13,B+ -Michael Mccall,Female,853,1936-01-03,A- -Monica Ryan,Female,854,1953-01-15,AB- -Shannon Gonzales,Female,855,1967-02-06,A+ -Mason Boyd,Male,856,1969-09-25,B- -Laura Romero PhD,Male,857,1995-04-03,B+ -Angela Lewis,Male,858,1941-05-21,O- -Dwayne Fletcher,Female,859,1985-08-09,O+ -Robert Benitez PhD,Female,860,1949-01-31,A+ -Jamie Holland,Male,861,1948-12-30,B+ -Miss Lisa Hale,Male,862,1987-12-16,B- -Michelle Williams,Male,863,1967-09-16,A- -Mark Browning,Female,864,1985-10-23,AB+ -Heather Johnston,Female,865,1979-05-01,A- -Joy Henry,Female,866,1958-04-28,B+ -Sonya Hernandez,Female,867,1949-11-23,B- -Steven Martinez,Female,868,1953-10-29,A- -Heather Washington,Male,869,1931-01-20,A- -Michael Crawford,Male,870,1931-02-09,O+ -Andrew Harmon,Female,871,1952-05-20,AB- -Stacey Wade,Female,872,1971-07-03,B+ -Shannon Williams,Male,873,1964-12-11,O+ -Mr. Theodore Roberts,Male,874,1980-05-02,B+ -Catherine Potter,Male,875,1956-12-30,O- -Daniel Murray,Female,876,1946-05-26,O- -John Steele,Female,877,1971-05-12,O+ -Bradley Sanford,Female,878,1978-11-09,A+ -Courtney Salinas,Male,879,1994-07-18,A+ -Kevin Hernandez,Male,880,1994-05-29,A- -Lisa Gallegos,Male,881,1939-12-16,A- -Heather Hoffman,Male,882,1959-11-21,AB+ -Madeline Vaughan,Female,883,1943-03-03,O- -Susan Oconnell,Female,884,1986-04-19,B+ -Jeffrey Clark,Female,885,1966-11-04,AB+ -Robert Trevino,Male,886,1972-04-14,O- -Kayla Williams,Female,887,1994-09-11,O+ -Jeremy Duffy,Female,888,1992-12-05,A+ -Steven Lyons,Female,889,1946-06-03,A- -Linda Davis,Female,890,1935-08-11,A+ -James Roberts,Female,891,1963-10-13,O+ -Kevin Armstrong,Female,892,1987-12-12,AB+ -Tamara Scott,Male,893,1976-10-26,AB+ -Tiffany Macias,Male,894,1996-08-05,B- -Diana Brown,Female,895,1990-02-04,A- -Jeremy Gentry,Female,896,1942-06-11,A- -Rebecca Blackwell,Female,897,1943-08-17,B+ -Lauren Patterson,Male,898,1964-12-23,A- -Lisa Phillips,Male,899,1957-06-03,O- -Thomas Walsh,Male,900,2002-12-26,AB+ -Justin Cardenas,Male,901,1939-05-13,O+ -David Wright,Female,902,1969-07-05,AB+ -Renee Miller,Male,903,1949-10-27,A+ -Jeffrey Mckinney DDS,Female,904,2001-08-06,O- -David Copeland,Male,905,1969-09-02,A- -Alec Hess,Male,906,1975-07-17,B+ -Anthony Brown,Male,907,1999-02-17,B+ -Harry Johns,Male,908,1958-05-11,B+ -Roberto Beck,Male,909,1976-12-19,AB- -Jessica Hanna,Female,910,1941-12-12,B- -Daniel Evans,Male,911,1957-11-11,O- -Samantha Patel,Female,912,1977-10-22,A+ -Megan Livingston,Male,913,1953-01-27,A- -Thomas Brown,Female,914,1953-06-29,A+ -Jeremy Vasquez,Female,915,1996-06-28,A+ -Joshua Faulkner,Male,916,1943-04-21,A- -Kimberly Shelton,Female,917,1957-06-28,A+ -Marissa Dixon,Male,918,1992-10-10,B+ -Theresa May,Male,919,1987-10-12,O+ -Derek Patton,Male,920,1982-07-25,B- -Kristina Day,Female,921,1984-02-05,AB- -Andrea Nicholson,Male,922,1971-10-07,A+ -Andrew Jenkins,Female,923,1961-05-28,A+ -Kelly Graham,Female,924,1933-06-06,AB+ -David Jacobs,Male,925,1949-02-26,B- -David Garcia,Female,926,1963-05-01,O- -Sherry Petty,Male,927,1942-10-18,B- -Jonathan Snyder,Male,928,1987-04-06,B- -Wayne May,Female,929,1973-03-17,A- -Thomas Sharp,Male,930,1965-09-25,A- -Randy Huffman,Male,931,1948-11-03,A- -Chase Mooney,Male,932,1949-01-10,AB- -April Eaton,Female,933,1956-01-26,B+ -Johnny Johnson,Female,934,1991-12-12,B- -Jessica Lee,Male,935,1951-12-14,AB- -Steve Meyer,Female,936,1949-01-02,A+ -Laura Henderson,Female,937,2001-01-02,A- -Sandra Ford,Male,938,1994-01-11,A+ -Tara Graham,Female,939,1957-12-14,A- -Nicholas Lewis,Female,940,1978-07-03,O+ -Michael Jones,Male,941,1986-07-11,AB- -Bradley Durham,Female,942,1995-10-19,AB- -James Blair,Female,943,1956-02-24,B+ -Glenda Cooper,Male,944,1988-11-11,O- -Lee Clark,Female,945,1942-09-12,AB+ -Joshua Sullivan,Female,946,1943-04-17,B- -Jennifer Hoover,Male,947,1983-07-23,O- -Jacqueline Walker,Female,948,1996-01-09,AB- -Daniel Branch,Male,949,1958-04-04,O- -Christopher Barron,Male,950,1980-10-29,O+ -Marie Vargas,Male,951,1943-05-25,AB+ -William Garza,Female,952,1949-04-14,B+ -Bernard Gibbs,Female,953,1975-03-27,AB- -Mark French,Female,954,1992-03-07,AB- -Jennifer Walker,Female,955,1984-05-13,B- -Elizabeth Anderson,Female,956,1989-10-11,B+ -Theodore Zamora,Female,957,1982-08-12,B+ -Kenneth Obrien,Male,958,1984-08-28,A- -Aaron Gray,Male,959,1991-03-17,AB+ -Jennifer Le,Male,960,1941-05-27,O+ -Samuel Braun,Male,962,1951-09-29,A+ -Chloe Adams,Female,963,1969-05-24,O- -Gail Harris,Male,964,1945-04-01,B+ -Andrew Gibbs,Female,965,1941-10-10,B- -Jonathan Jimenez,Female,966,1947-03-02,AB- -James Smith,Male,967,1940-06-15,A+ -Jonathan Herring,Female,968,1962-11-24,O+ -Jasmin Scott,Male,969,1963-07-01,AB+ -Daniel Wilkinson,Male,970,1980-01-29,B+ -Kevin Robinson,Female,971,1947-02-15,O- -Lance Bradley,Female,972,1976-12-09,B+ -Jacob Franco,Male,973,1996-04-18,B- -Jennifer Nelson MD,Female,974,1950-02-15,B+ -Gabriella James,Female,975,1971-07-28,B+ -Megan Wheeler,Female,976,1947-01-30,B+ -Molly Brewer,Male,977,1946-09-04,AB- -William Williams,Male,978,1961-11-11,AB- -Drew Crane,Female,979,1991-05-16,A+ -Stacey Craig,Female,980,1995-11-27,A+ -Joel Mendoza,Male,981,1999-10-01,O- -Sarah Weaver,Male,982,1964-08-17,AB+ -Barbara Garrett,Female,983,1957-02-19,O+ -Whitney Bradley,Male,984,1953-03-13,A- -Patricia Taylor,Female,985,1980-01-10,AB+ -David Richardson,Male,986,1938-12-11,AB+ -Lee Peterson,Female,987,1931-10-29,AB+ -Kenneth Rollins,Male,988,1941-06-20,A- -Ryan Copeland,Male,989,1976-09-11,O- -Laura Jones,Female,990,1957-10-27,A- -Nicole Bullock,Female,991,1993-05-31,O- -Christopher Phillips,Male,992,1960-12-23,A- -Joshua Phillips,Male,993,1995-08-02,O+ -Zachary Collins,Female,994,1996-08-22,B+ -Natalie Navarro,Female,995,1988-11-20,AB+ -John George,Female,996,1990-02-24,B+ -April Gomez,Female,997,1965-04-18,O- -Jacob Hoover,Male,998,1943-01-30,A- -Alan Bell,Male,999,1940-09-05,O+ -Stacey Wilson,Female,1000,1993-02-20,A- -April Martin,Male,1001,1967-07-22,B+ -Kimberly Williams,Female,1002,1949-02-11,AB- -Jonathan Moore,Female,1003,1947-06-17,O+ -Paul Davidson,Female,1004,1976-04-16,AB+ -Anthony Johnson,Male,1005,1981-05-30,B- -Mark Moss,Male,1006,1981-12-16,AB+ -Greg Richardson,Female,1007,1957-10-26,B- -Philip Hall,Male,1008,2002-02-01,O+ -Judith Jackson,Female,1009,1968-09-02,AB- -Amber Perez,Male,1010,1974-07-31,B+ -Sherry Bass,Female,1011,1994-09-06,AB- -Tiffany Davies,Female,1012,1993-11-07,O- -Sabrina House MD,Male,1013,1958-09-19,AB- -Bill Garcia,Male,1014,1991-10-22,A+ -Jesse Kelly,Male,1015,1944-05-07,O+ -Emily Mosley,Male,1016,1958-08-15,B+ -Megan Garcia,Male,1017,1958-09-09,B+ -Austin Buchanan,Female,1018,1992-08-20,O- -Destiny Hicks DVM,Female,1019,1963-12-08,B+ -Joseph Johnson PhD,Female,1020,1982-09-27,AB- -Daniel Merritt,Male,1021,1986-03-15,O+ -Morgan Sanchez,Female,1022,1984-11-01,AB+ -Michael Gibbs,Male,1023,1942-02-19,AB- -Michael Phillips,Female,1024,1967-02-24,A- -Nathan Frank,Male,1025,2002-11-30,B- -John Perez,Male,1026,1968-10-26,O+ -Jason Henry,Male,1027,1978-05-09,B+ -Sarah Long,Male,1028,1990-10-08,O- -Rachel Vaughan,Female,1029,1930-10-30,AB+ -April Smith,Female,1030,1976-08-09,A+ -Kathleen Conner,Male,1031,1930-02-25,AB+ -Ryan Lopez,Female,1032,1965-08-18,AB- -Meagan Wright,Male,1033,1953-11-13,B- -Ashley Gonzales,Female,1034,1952-04-25,AB+ -Steven Simmons,Male,1035,1935-10-27,A+ -Scott Green,Male,1036,1961-06-06,A- -Jennifer Hunter,Male,1037,1973-02-09,O- -Christopher Gallegos,Female,1038,1975-11-09,O+ -Elizabeth Fernandez,Male,1039,1948-08-23,B- -Holly Meyers,Female,1040,1942-08-27,A+ -Bailey Wells,Female,1041,1971-03-01,B+ -Edward Decker,Female,1042,1967-04-20,AB- -David Wilson,Female,1043,1944-01-14,AB- -Michael Robertson,Male,1044,1944-01-10,AB- -Miss Mary Moon,Female,1045,1979-05-14,B+ -Theresa Young,Female,1046,1977-05-16,B+ -Bonnie Harding,Female,1047,1982-07-08,B- -Christopher Cabrera,Male,1048,1992-09-02,AB+ -John Carlson,Female,1049,1946-01-27,B- -Katherine Thompson,Male,1050,1934-03-12,AB- -Jessica Garcia,Female,1051,1952-05-17,A- -Christy Martinez,Female,1052,1984-01-07,A+ -Christina Perry,Male,1053,1951-01-04,O+ -Ryan Allen,Male,1054,1993-11-19,O+ -Christine Washington,Female,1055,1948-11-04,B- -Tim Rich,Female,1056,1935-03-22,AB- -Jessica Wagner,Male,1057,1938-06-14,B+ -Thomas Davis,Female,1058,1966-12-21,O- -Kelly Robertson,Male,1059,1952-04-27,A- -Terry Wong,Female,1060,1945-09-29,B- -Angela Copeland,Female,1061,1964-12-20,AB- -Anna Lopez,Female,1062,1958-02-10,AB+ -Jared Scott,Male,1063,1999-03-29,O+ -Mrs. Kristin Stephenson,Female,1064,1932-11-28,O+ -Lisa Lee,Female,1065,1980-04-08,A- -Sara Taylor,Male,1066,1978-05-29,O+ -Amanda Patel,Female,1067,1947-01-21,O- -Danielle Andrews,Female,1068,1995-10-12,AB- -Robert Thomas,Female,1069,1975-03-15,AB- -Kevin Mccormick,Male,1070,1971-06-22,A- -Joseph Hill,Male,1071,1942-09-07,AB- -Adam Burnett,Female,1072,1947-03-21,B+ -Joe Jones,Female,1073,1939-11-06,A- -Gregory Robertson,Male,1074,1961-06-02,AB- -Colleen Mann,Female,1075,1946-11-21,O- -David Turner,Male,1076,1956-10-26,A+ -Daniel Harris,Male,1077,1950-09-14,B- -Jamie Hughes,Male,1078,1952-08-11,B- -Harry Higgins,Female,1079,1975-06-30,AB- -Danielle Robles,Male,1080,2000-06-27,AB+ -Courtney Davis,Male,1081,1947-06-12,O+ -Penny Ross,Female,1082,1986-05-17,O- -Evan Fletcher,Female,1083,2001-05-17,AB+ -Brandon Scott,Male,1084,1969-05-05,B+ -George Petersen,Female,1085,1965-05-07,AB+ -Clayton Franklin,Female,1086,1951-10-01,AB- -Amanda Villegas,Female,1087,1963-05-27,O- -Brandon Thornton,Female,1088,1973-01-23,B- -Tracy Sheppard,Male,1089,1993-09-22,O+ -Lauren Carr,Male,1090,1948-06-13,B- -William Stephens,Female,1091,1973-07-27,AB+ -Autumn Proctor,Female,1092,1936-10-08,B+ -Kelly Wilson,Female,1093,1982-05-11,O+ -Cindy Combs,Female,1094,1989-08-24,A+ -Karen Ramirez,Male,1095,1972-12-05,AB+ -Isabella Powell,Male,1096,1934-10-28,B- -Matthew Greene,Male,1097,1957-11-02,B- -Karen Jackson,Female,1098,1958-11-24,AB- -Michael Martin,Female,1099,1977-04-04,B- -Morgan Collins,Female,1100,1969-02-02,O- -Jerry Welch,Female,1101,1940-06-09,AB+ -Lisa Friedman,Male,1102,2000-11-17,A- -Diane Green,Female,1103,1978-11-09,A- -Sandra Young,Female,1104,1979-08-09,B+ -Nicole Morris,Male,1105,1934-05-25,O+ -David Avila,Female,1106,1945-05-24,B- -John Powers,Female,1107,1948-07-12,AB- -Judy Anderson,Female,1108,1961-10-18,AB- -Julie Krause,Female,1109,1993-12-26,B- -David Richards,Female,1110,1984-06-27,O- -Charles Webster,Female,1111,1958-12-29,AB- -Karen Robinson,Male,1112,1968-02-09,A- -Michael Roth,Female,1113,1985-01-31,O+ -Travis Durham,Male,1114,2000-06-18,AB+ -Jessica Riley,Male,1115,1965-09-20,A+ -Rebecca Travis,Female,1116,1997-12-13,O- -Melvin Miller,Female,1117,1937-02-03,B+ -Dr. Deanna Rodriguez,Male,1118,1977-10-08,B+ -Barbara Love,Male,1119,1941-11-03,AB- -Anthony Steele,Female,1120,1959-07-15,AB+ -Matthew Hoffman,Female,1121,1954-12-12,A+ -Jennifer Ward,Female,1122,1944-08-17,B+ -Brian Charles,Male,1123,1974-11-15,B- -Regina Byrd,Female,1124,1995-05-13,B- -Karen Velazquez,Male,1125,1953-09-16,O+ -Brandon Mcbride,Female,1126,1968-06-13,A+ -Catherine Alvarado,Male,1127,1997-04-18,B- -Erika Anthony,Female,1128,1991-03-12,B+ -Mark Goodman,Male,1129,1954-03-13,B- -Maria Fuentes,Male,1130,1930-04-28,A- -Meghan Jordan,Male,1131,1968-02-08,AB- -John Klein,Male,1132,1981-11-04,B+ -Charlene Clayton,Male,1133,1969-03-06,B+ -Luke Lowery,Male,1134,1966-03-27,B+ -Robert Gould,Female,1135,1945-03-23,O+ -Heather Adams,Female,1136,1986-08-08,AB+ -Crystal Baker,Male,1137,1932-04-26,B+ -Elizabeth Murphy,Female,1138,1959-12-29,B- -Joel Butler,Male,1139,1967-07-09,A- -Jennifer Smith,Male,1140,1972-02-15,B+ -Marilyn Murray,Female,1141,1967-08-21,O- -David Crawford,Female,1142,1992-02-25,O- -Alexandra Murphy,Female,1143,1947-09-18,AB+ -Cynthia Garner DDS,Male,1144,1955-07-22,A+ -Sherry Robertson,Male,1145,2002-03-30,O+ -Sarah Strickland,Female,1146,1999-04-08,A- -Cheryl Herrera,Female,1147,1975-06-22,AB- -Michael Barajas,Male,1148,1965-02-05,A- -Elizabeth Dunn,Female,1149,1941-07-10,O- -Aaron Mack,Male,1150,1947-03-16,O- -Nicholas Castillo,Female,1151,1935-08-11,AB+ -Bryan Saunders,Male,1152,1947-01-25,A+ -Michael Soto,Male,1153,1965-06-07,A+ -Eric Thompson,Female,1154,1964-07-08,AB+ -Nicholas Carrillo,Male,1155,1956-09-26,B+ -Kayla James,Male,1156,1935-01-03,A- -Chelsea Henderson,Female,1157,1935-04-02,O- -Kimberly Carter,Male,1158,1986-06-14,A- -Ronald Mueller,Female,1159,1949-02-18,A- -Brenda Scott,Female,1160,1980-05-28,O+ -Robert Thompson,Male,1161,1969-12-16,O- -Kimberly Taylor,Male,1162,1985-02-09,A+ -Connie Stevens,Male,1163,1999-10-03,AB- -Logan Levine,Male,1164,1965-07-13,A- -Tina Ochoa,Female,1165,2002-11-14,O- -Kristin Nichols,Female,1166,1930-01-10,A- -Amanda Patrick,Female,1167,1975-07-28,O+ -Patricia Jones,Male,1168,1991-05-23,B+ -Anthony Young,Male,1169,1957-01-04,B- -Danielle Watson,Male,1170,1936-01-29,O- -Thomas Lewis,Female,1171,1949-04-12,AB+ -Brittany Smith,Female,1172,1980-07-01,B- -Mrs. Jessica Larsen MD,Male,1173,1944-06-23,A- -Christine Leonard,Male,1174,1934-06-08,AB+ -Leah Meyer,Female,1175,1953-04-22,AB+ -William Moon,Female,1176,1933-09-04,AB+ -Teresa Oconnell,Female,1177,1958-12-08,O- -Marilyn Ramsey,Female,1178,1982-08-12,A+ -Heather Yang,Male,1179,1982-08-04,A- -Jeremy Sandoval,Male,1180,1980-04-26,B- -Jamie Davis,Female,1181,1968-12-18,O+ -Lauren Gonzalez,Female,1182,2002-11-13,A+ -James Townsend,Male,1183,1939-07-23,A- -Taylor Bennett,Female,1184,1955-06-29,B+ -Justin Lane,Male,1185,1951-11-11,B+ -Nancy Lee,Male,1186,1979-04-02,O- -Robert Jenkins,Male,1187,1963-06-16,AB+ -Mercedes Estrada,Female,1188,1930-08-24,O+ -Gary Morris,Male,1189,1957-10-27,A- -Nathan Wilson,Female,1190,1935-03-24,B- -Samantha Herrera,Male,1191,1953-06-16,A- -Vickie Rogers,Male,1192,1939-09-01,A+ -Jacqueline Adams,Female,1193,1944-05-23,B+ -Heidi Burns PhD,Female,1194,1982-01-27,AB- -Samantha Peters,Female,1195,1952-05-07,A+ -Willie Perry,Female,1196,2001-08-02,A- -Kathleen Smith,Female,1197,1981-11-13,O+ -John Sandoval,Female,1198,1944-10-29,A- -Stephen Casey,Female,1199,1939-04-15,A- -Aaron Hill,Male,1200,1960-07-19,O- -Kelly Orozco,Female,1201,1946-04-18,B- -Curtis Allen,Female,1202,1989-10-30,O+ -John Smith,Male,1203,1951-12-04,A- -Kathleen Diaz,Female,1204,1954-10-26,AB+ -Brandon Wood,Male,1205,2000-09-18,B- -Carla Mitchell,Male,1206,1992-06-01,A+ -Dawn Taylor,Female,1207,1993-11-11,O+ -Chelsea Cardenas,Male,1208,2000-11-19,A+ -Jordan Miller,Female,1209,1988-01-21,B+ -Brendan Cross,Female,1210,1972-07-03,A- -Heather Watson,Female,1211,1982-10-17,A+ -Kenneth Johnston,Male,1212,1995-07-09,A+ -David Smith,Female,1213,1930-03-19,O- -Adam Daniels,Male,1214,1950-09-30,A+ -Charles Arnold,Female,1215,1986-06-07,AB+ -Sean Flores,Male,1216,1976-07-02,AB+ -Patricia Weeks,Male,1217,1968-06-30,B- -Pam Davis,Male,1218,1977-10-10,A- -Ronald Caldwell,Male,1219,1980-09-15,AB- -Blake Daniels,Male,1220,1958-11-05,B+ -Gregory Miller,Male,1221,2002-05-22,A+ -Vicki Camacho,Male,1222,1956-01-15,A+ -Melissa Henry,Male,1223,1949-01-04,O+ -Tammy James,Male,1224,1962-09-24,O- -Cynthia Davidson,Female,1225,1951-05-15,AB- -Daniel Luna,Female,1226,1947-12-23,B- -Connie Garcia,Male,1227,1946-05-21,B+ -Tina Serrano,Female,1228,1988-12-08,AB- -Jonathan Richards,Male,1229,1942-10-15,A+ -Anthony Moss,Male,1230,1980-11-08,O+ -Rhonda Young,Male,1231,1955-02-23,A- -Jessica Nguyen,Female,1232,1982-04-14,O- -Michael Robbins,Female,1233,1936-01-02,A- -Brandon Crawford,Female,1234,1933-06-02,B- -Tonya Horton,Male,1235,1960-10-16,AB- -Marcia Mckenzie,Female,1236,1965-01-07,B- -Mary Turner,Male,1237,1985-11-25,A+ -Amanda Washington,Female,1238,1980-04-29,B- -Michael Miller,Female,1239,1940-02-05,A- -Teresa Baker,Female,1240,1941-01-01,O+ -Edward Smith,Female,1241,1960-12-11,B- -Brittany Jones,Female,1242,1935-05-25,AB+ -John Murray,Male,1243,1952-12-20,O+ -Samuel Peterson,Male,1244,1990-08-23,AB- -William Cochran,Male,1245,1978-02-24,O- -Melissa Lewis,Female,1246,1997-02-17,O- -Erica Ray,Male,1247,1990-02-06,A+ -Michelle Lopez,Female,1248,1995-11-07,A+ -Julie Harris,Female,1249,1972-02-04,AB+ -Sabrina Flores,Male,1250,1990-07-31,AB- -Shane Smith,Male,1251,1945-11-06,A- -Linda Richardson,Male,1252,1944-10-22,O- -Allison Valentine,Female,1253,2002-11-10,O- -Kathleen Reyes,Male,1254,1998-08-05,O- -Courtney Elliott,Male,1255,1955-11-12,A- -Paul Vega,Female,1256,1932-07-11,O- -Sabrina Johnson,Female,1258,1931-02-24,B- -Elizabeth Alexander,Male,1259,1980-11-22,AB- -Kerry Brown,Female,1260,1959-07-17,O+ -Amy Zavala,Female,1261,1933-01-25,O+ -Crystal Brown,Female,1262,1960-10-30,AB+ -John York,Female,1263,1977-06-17,B- -Meghan Baker,Female,1264,1936-05-25,O- -Lisa Morrison,Female,1265,1944-09-17,O- -Shelby Avery,Male,1266,1936-02-22,A+ -Daniel Phillips,Male,1267,1982-02-06,A+ -Ashley Valentine,Female,1268,2002-05-16,AB+ -Mike Spears,Male,1269,1942-08-18,O- -Mark Booth,Male,1270,1968-03-08,AB+ -Darren Woods,Male,1271,1979-12-19,B- -Elizabeth Ellis,Female,1272,1960-05-27,O+ -Angela Powell,Male,1273,1966-10-08,O- -Jenny Smith,Male,1274,1991-05-13,AB- -Jamie Chavez,Female,1275,1994-12-01,A- -Courtney Duarte,Female,1276,1947-06-12,B- -Mr. Shawn Davis Jr.,Female,1277,1947-05-31,O- -Geoffrey Woods,Male,1278,1951-07-13,A- -Whitney Newman MD,Female,1279,1938-11-03,AB- -William Johnson,Male,1280,1985-01-15,A+ -Daniel Scott,Male,1281,1969-05-18,AB+ -Paul Gonzalez,Female,1282,1981-05-08,A+ -Jennifer Johnston,Female,1283,1937-12-01,O+ -Kathy Hayden,Female,1284,1940-04-14,A+ -Erica Brown,Male,1285,1986-06-05,O- -Haley Jones,Female,1286,1973-03-06,AB- -Wendy Weber,Male,1287,1975-02-12,A+ -Chad Conrad,Male,1288,1937-04-28,O- -Jonathan Carroll,Male,1290,1948-11-20,O+ -Katherine Reid,Female,1291,1957-10-13,A- -Margaret Owens,Female,1292,1932-03-04,AB- -Mindy Wood,Male,1293,2002-04-23,A+ -Tonya Smith,Male,1294,1935-10-18,AB+ -Jessica Lowe,Male,1295,1945-10-28,AB+ -Bryan Erickson,Male,1296,1963-09-03,AB- -Crystal Patterson,Male,1297,1968-10-01,AB+ -Melissa Larson,Male,1298,1960-06-03,A+ -Rachel Macdonald,Male,1299,1959-07-17,A+ -James Lloyd,Female,1300,1961-03-16,AB- -Zachary Murphy,Male,1301,1965-08-04,A+ -Diana Smith,Female,1302,1991-09-28,A- -Jessica Burke,Female,1303,1932-03-25,O- -Brandi Ramirez,Female,1304,1975-10-21,O+ -Roy Thomas,Female,1305,1958-11-11,A- -Rodney Harper,Female,1306,1998-04-12,A- -Brittany Burnett,Male,1307,1936-09-09,AB+ -William Wilson,Male,1308,1958-08-19,O- -Richard Herrera,Female,1309,1958-06-03,AB- -Donna Weaver,Male,1310,1951-04-24,B+ -Jason Hernandez,Male,1311,1961-05-31,AB+ -Gregory Russell,Female,1312,1977-07-21,O- -Ryan Randall,Female,1313,1971-12-20,A+ -Stephen Edwards,Female,1314,1996-03-09,AB- -Jonathan Rios,Male,1315,2001-10-10,B+ -Robert Campbell,Female,1316,1932-04-07,AB- -Christina Soto,Male,1317,1984-07-11,B+ -Gary Hamilton,Female,1318,1949-07-27,B+ -Edward Whitehead,Female,1319,1942-03-10,AB+ -Ryan Baldwin,Male,1320,1972-01-04,A+ -Leslie Harris,Male,1321,1967-05-02,AB+ -Nathan Smith,Male,1322,1985-06-21,B+ -Rachael Johnson,Female,1323,1946-04-26,B+ -Brian Nelson,Male,1324,1930-05-07,B- -Katelyn Thomas,Male,1325,1983-07-23,O- -Thomas David,Male,1326,1954-01-30,B- -Joseph Nelson,Male,1327,1961-11-15,O- -Bobby Osborne,Male,1328,1991-05-09,O+ -Austin Ortega,Female,1329,1988-11-05,A- -Chad Martin,Male,1330,1986-03-18,AB- -Anthony Butler,Male,1331,1949-09-14,AB+ -Christina Frank,Male,1332,1961-08-25,O+ -Lisa Campbell,Male,1333,1939-03-23,O+ -Amy Wall,Male,1334,1940-05-25,AB- -Melissa Lin,Female,1335,1971-05-20,AB- -Pamela Rodriguez,Female,1336,1967-07-24,O- -Michael Garcia,Male,1337,1934-11-28,B- -Kenneth Choi,Female,1338,1960-04-06,A+ -Margaret Casey,Male,1339,1990-07-21,O- -Matthew Stevens,Male,1340,1939-07-09,A+ -Sean Hernandez,Female,1341,1939-05-11,O+ -Courtney Graham,Female,1342,1934-07-04,A+ -Thomas Collier,Male,1343,1970-05-26,B- -Andrew Howard,Male,1344,2000-08-02,O- -Wendy Flores,Male,1345,1983-02-26,B+ -Willie Gibbs,Male,1346,1982-09-21,AB- -Samuel Johnson,Male,1347,1938-05-31,B+ -Alexander Turner,Female,1348,1935-01-29,B- -Allison Warner,Female,1349,1985-11-13,A- -Kim Galloway,Male,1350,1942-10-07,B- -Amy Johnson,Male,1351,1947-11-02,A- -Jasmine Middleton,Male,1352,1988-08-19,O- -Stephanie Berry,Male,1353,1937-06-01,AB- -Matthew Brock,Male,1354,1962-01-07,B- -Caitlin Day,Male,1355,1994-05-01,B+ -Nicole Evans,Male,1356,1956-01-29,A- -William Harris,Female,1357,1997-11-02,AB- -Brian Gomez,Male,1358,1984-06-17,AB+ -Cassandra White,Female,1359,1947-09-05,AB+ -Aaron Jones,Male,1360,1941-07-14,AB+ -Marilyn Steele,Male,1361,1966-03-17,A+ -Eric Roberts,Male,1362,1951-10-28,B- -Rebecca Knox,Male,1363,1998-11-10,O- -Alex Wright,Male,1364,1976-04-29,B+ -Clinton Moore,Female,1366,1934-06-14,O- -Tyler Sanders DVM,Female,1367,1958-03-29,A+ -Robert Olson,Female,1368,1951-10-31,O- -Michael Smith,Male,1369,1953-06-26,A- -Jaime Holmes,Male,1370,1952-02-05,AB+ -Todd Moore,Male,1371,1953-09-23,B+ -James Lopez,Male,1372,1998-06-06,B- -Thomas Long,Female,1373,1992-08-17,O- -Justin Lewis,Female,1374,1939-11-10,O- -Monique Castro,Female,1375,1948-07-28,O+ -Brian Hardin,Female,1376,1966-03-19,O+ -Kent Peters,Male,1377,1955-01-16,O+ -Michele Gardner,Female,1378,1943-08-12,B- -Joseph Perez,Male,1379,1966-12-08,AB+ -Mary Taylor,Female,1380,1978-02-27,AB- -Kelli Richardson,Male,1381,1965-06-17,AB+ -Dr. Cheyenne Chen DDS,Female,1382,1963-09-17,B+ -Peggy Miller,Male,1383,1935-06-14,AB+ -Linda Douglas,Female,1384,1944-07-05,B- -Jennifer Nelson,Male,1385,1965-08-02,A- -Bryan Harmon,Female,1386,1984-08-21,A- -Joseph Lewis,Female,1387,1991-03-21,B- -Mackenzie Ward,Male,1388,1966-11-20,O+ -David Peterson,Female,1389,1992-02-29,O- -Mr. Joshua Salazar,Female,1390,1941-12-29,A+ -Elizabeth Donovan,Female,1391,1943-01-10,A+ -Karen Martinez,Male,1392,1982-04-15,AB- -Elizabeth Tucker,Male,1393,1958-06-18,O- -Eric Campbell,Male,1394,1974-06-20,AB- -Debbie James,Male,1395,1945-04-20,O+ -Alan Ibarra,Male,1396,1977-07-03,AB- -Christine Hernandez,Male,1397,1943-07-16,O- -Lee Kramer,Female,1398,1966-09-04,B+ -Kyle Johnson,Female,1399,1984-04-03,O- -Ruth Meyer,Female,1400,1976-09-28,A+ -Tonya Ferguson,Male,1401,1941-08-14,A- -Kevin Fowler,Female,1402,1984-12-28,O+ -Felicia Ramirez,Male,1403,1998-03-22,B+ -Joshua Ellis,Female,1404,1989-01-17,B- -Patrick Farmer,Female,1405,1957-02-24,B+ -Maria Novak,Female,1406,1993-03-19,B+ -Samantha Roberts,Male,1407,1986-12-19,AB- -Michael Powell,Female,1408,1957-05-03,A+ -Jamie Santos,Male,1409,1934-10-26,AB- -John Rodriguez,Female,1410,1955-02-20,AB- -Brian Wilson,Male,1411,1936-10-18,B- -Justin Alexander,Female,1412,1996-12-02,O+ -Christopher White,Male,1413,1932-08-09,O- -Abigail Lamb,Male,1414,1999-04-07,AB+ -Ralph Kirk,Female,1415,1935-09-11,AB- -Caroline Riley,Male,1416,1937-06-10,AB+ -Susan Phillips,Male,1417,1987-03-31,O+ -Rachel Greene,Female,1418,1956-07-15,AB+ -Anthony Thompson,Male,1419,1998-01-25,AB- -Claudia Dickerson,Male,1420,1950-01-07,B- -Holly Nunez,Female,1421,1994-07-14,AB+ -Christian Holloway,Female,1422,1980-07-06,O+ -Juan Simon,Female,1423,1932-02-08,O+ -Juan Stephenson,Male,1424,1945-01-12,A- -Walter Smith,Male,1425,1972-07-13,A- -Matthew Montgomery,Male,1426,1948-03-12,B- -Virginia Morgan,Female,1427,1988-10-10,AB+ -Susan Ramirez,Female,1428,1944-04-29,AB+ -Robin Lara,Female,1429,1961-06-12,A- -Jennifer Robinson,Female,1430,1945-11-15,O- -Kevin White,Male,1431,1999-11-17,A+ -Vanessa Kim,Female,1432,1988-05-06,O+ -Daniel Wright,Male,1433,1991-05-01,O- -Ashley Hamilton,Male,1434,1983-12-28,O+ -Kristina Odonnell,Female,1435,1963-10-17,B+ -Joshua Mcdonald,Female,1436,1952-01-04,B+ -Matthew Lee,Male,1437,1973-10-24,O- -Jordan Schwartz,Male,1438,1965-10-31,B+ -Stacy Taylor,Male,1439,1943-05-06,A- -Colton Rose,Male,1440,1934-01-21,A- -Maria Williams,Female,1441,1957-08-20,A+ -Mr. Paul Simpson,Male,1442,1992-02-14,O- -Nicole Garcia,Female,1443,1984-04-22,O+ -William Christian,Female,1444,1969-06-27,AB+ -David Bauer,Male,1445,1975-01-03,O+ -Daniel Campbell,Female,1446,1950-12-05,AB- -Thomas Walters,Male,1447,2002-04-12,A- -Erin Marsh,Male,1448,1984-05-03,B- -Cassandra Koch,Female,1449,1973-01-03,B- -Gregory Morales,Female,1450,1960-11-10,A- -Cathy Martin,Male,1451,1977-02-19,AB- -Rita Cooper,Male,1452,1964-07-01,B- -Robert Washington,Female,1453,1960-02-11,B+ -Allison Hill,Female,1454,1991-02-28,A- -Jennifer Abbott,Male,1455,1969-02-20,B- -Victoria Mathews,Male,1456,1959-04-01,A- -Jennifer Lawson,Male,1457,1974-11-06,A+ -Tiffany Harper,Female,1458,1953-04-29,AB+ -Kenneth Stewart,Male,1459,1994-08-18,AB+ -Melissa Cline,Female,1460,1983-12-03,O+ -Sarah Jordan,Male,1461,1939-01-14,AB- -Alfred Wells,Female,1462,1948-05-28,A- -Belinda Castillo,Female,1463,1949-10-06,O- -Christina Clayton,Male,1464,1996-02-24,O+ -Mallory Jones,Male,1465,1984-12-02,O+ -Jimmy Gomez,Female,1466,1938-05-13,A- -Sarah Sanders,Male,1467,1967-03-03,A- -Francisco Young,Male,1468,1951-10-28,O+ -Amy Waller,Male,1469,1935-11-14,O+ -Kathy Benjamin,Male,1470,1989-02-11,AB+ -Mr. Brian Cordova,Male,1471,1956-01-08,O- -Gregory Martin,Female,1472,1971-06-24,B+ -Julia Davila,Male,1473,1981-10-22,O+ -Julie Grant,Male,1474,1963-05-03,B+ -Carla Bailey,Male,1475,1987-04-23,AB+ -Patrick Gonzalez,Male,1476,1990-03-30,O+ -Shane Rasmussen,Female,1477,1952-11-17,B- -Jesus Larson,Female,1478,1992-12-17,O+ -Brendan Peck,Male,1479,1988-07-24,A- -Spencer Good,Female,1480,1971-04-06,AB- -Matthew Barton,Male,1481,1932-04-02,AB- -Joshua Beasley,Female,1482,1977-06-10,O+ -Amanda Warren,Male,1483,1969-02-14,A+ -Danielle Singleton,Male,1484,1946-11-03,B- -Bryan Walker,Male,1485,1942-02-12,O- -Robin Nelson,Male,1486,1999-05-29,O+ -Kelly Pearson,Male,1487,1973-11-23,B+ -Brittany Ray,Female,1488,1936-01-08,O- -Cheryl Jennings,Female,1489,1986-06-22,B- -David Clayton,Male,1490,1984-12-22,O+ -Carlos Castro DVM,Male,1491,1939-06-15,A+ -Elizabeth Adams,Female,1492,1954-12-07,AB+ -Juan Walter,Male,1493,1967-12-12,A+ -Shirley Garza,Female,1494,1978-06-10,A- -Holly Clayton,Male,1495,1986-04-18,A+ -Carol Byrd,Female,1496,1953-11-01,B+ -Michelle Williams,Female,1497,1957-09-08,AB+ -Michael Delgado,Female,1498,1993-08-14,A- -Anthony Barron,Female,1499,1991-05-20,AB+ -Alexander Thomas,Female,1500,1984-09-12,AB- -Kevin Harper,Male,1501,1943-04-04,AB+ -Samuel Adams,Female,1502,1972-01-19,O+ -Jordan Chandler,Male,1503,1933-11-10,O- -Anna Morrison,Female,1504,1942-07-03,AB- -Brandy Cross,Male,1505,1961-03-01,AB- -Lauren Williamson,Female,1506,1987-02-26,O- -Bryan Payne,Female,1507,1979-02-12,B+ -Christine Scott,Male,1508,1969-12-18,AB- -Courtney Gonzales,Male,1509,1932-03-15,AB+ -Teresa Green,Male,1510,1966-03-14,A+ -Kevin Duke,Male,1511,1933-07-03,B- -Kimberly Parker,Female,1512,1966-02-13,B+ -John Reed,Male,1513,1949-05-24,AB+ -Brent Roth,Male,1514,1991-04-01,A- -Thomas Garrett,Male,1515,1990-03-30,A- -Rebecca Calderon,Female,1516,1960-05-16,A+ -Samantha Gallagher,Male,1517,1978-08-28,B+ -Joshua Rodriguez,Female,1518,1965-04-07,B+ -James Thompson MD,Male,1519,1972-06-26,A+ -Daniel Santos,Male,1520,1982-03-12,B+ -Heather Smith,Female,1521,1935-10-08,AB- -John Beck,Female,1522,1997-03-27,O+ -Jillian Hernandez,Female,1523,1974-01-16,O+ -Matthew Mayer,Male,1524,1986-06-03,B+ -Hannah Welch,Female,1525,1943-03-25,AB- -Crystal Wright,Female,1526,1982-06-09,AB- -Timothy Holt,Female,1527,1938-09-22,O- -Heather Pacheco,Male,1528,1937-01-17,O- -Kimberly Stephens,Male,1529,1965-01-25,B- -David Allen,Female,1530,1937-02-12,B- -Cassandra Greene,Male,1531,1941-01-16,B- -Tina Huff,Male,1532,1953-01-28,B- -Michael Newton,Female,1533,1933-07-28,A+ -Rachel Evans,Male,1534,1995-01-12,A+ -Adam Williams,Male,1535,1990-12-13,O- -Deborah Walker,Male,1536,1978-06-03,O+ -Omar Matthews,Female,1537,1981-10-25,AB- -Mrs. Anne Reid MD,Male,1538,1980-06-22,A- -Jeffrey Peterson,Female,1539,1993-07-02,O+ -Megan Fields,Male,1540,1953-08-21,AB+ -Sharon Tucker,Male,1541,2002-12-21,A+ -Jesse Esparza,Female,1542,1961-02-19,B- -Anthony Lee,Male,1543,1954-08-19,B- -Stephen Jones,Male,1544,1975-01-23,AB+ -Jessica Patterson PhD,Female,1545,1993-12-21,O+ -Jacqueline Hawkins,Female,1546,1944-12-28,B- -Linda Harris,Female,1547,1997-05-25,O+ -Benjamin Jackson,Female,1548,2002-12-26,AB- -Brian Jacobs,Male,1549,1949-09-02,AB+ -Steven Bryan,Female,1550,1990-09-23,A- -Paul Wilson,Male,1551,1994-05-30,O+ -Kevin Campbell,Female,1552,1965-04-02,AB- -Richard Huerta,Female,1553,1934-06-11,B+ -Daniel Garcia,Female,1554,1973-10-10,B+ -Michelle Blake,Female,1555,1952-01-07,O+ -Lawrence Bradford,Female,1556,1975-10-17,B+ -Suzanne Bailey,Female,1557,1980-07-15,O+ -Shannon Jackson,Female,1558,1951-11-19,B- -Zachary Jones,Male,1559,1972-11-02,O- -Alyssa Monroe,Female,1560,1976-08-16,B+ -Jennifer Gonzalez,Male,1561,1941-09-03,A+ -Christopher Green,Female,1562,1998-12-15,O+ -Teresa Coleman,Male,1563,1968-06-30,O+ -John Atkinson,Male,1564,1991-08-29,O+ -Mark Mcdowell,Female,1565,1971-07-01,O- -Meagan Mullins,Male,1566,1953-09-03,AB- -Scott Perez,Male,1567,2001-12-18,B+ -Lauren Fischer,Male,1568,1961-12-08,A- -Harry Moore,Female,1569,1938-02-17,A- -Katie Crane,Female,1570,1938-04-17,AB+ -Michael Browning,Female,1571,1995-10-14,B- -Chelsea Wu,Male,1572,1982-03-14,O- -Joyce Jones,Male,1573,1939-12-09,AB- -Anthony Lucas,Male,1574,1986-06-05,O+ -Jared Martinez,Male,1575,1938-05-26,AB- -Christopher Carter,Male,1576,1946-04-08,O- -Kimberly Hodges,Male,1577,1978-08-27,O- -Stephen Owen,Female,1578,1982-09-15,O- -Maria Mack,Male,1579,1987-12-20,AB+ -Katelyn Daniel,Male,1580,1961-08-21,A+ -Alan Garcia,Male,1581,1989-11-21,B- -Henry Choi,Female,1582,1965-10-25,AB+ -Tracy Diaz,Male,1583,1986-02-24,AB+ -Alicia Kennedy,Female,1584,1997-09-10,B+ -Kristopher Griffin,Female,1585,1985-05-26,A+ -Emily Vega,Male,1586,1989-09-07,AB+ -Jennifer Chavez,Male,1587,2002-12-03,O- -Jennifer Chen,Female,1588,1995-11-19,O- -Tyler Morrison,Male,1589,1948-09-02,B+ -Kimberly Fletcher,Female,1590,2000-05-25,AB- -Linda Gray,Female,1591,1997-10-18,O+ -Mr. Jason Wilson,Male,1592,1960-03-30,AB+ -Mary Rodriguez,Male,1593,2000-09-16,O+ -Mr. Taylor Williams DDS,Female,1594,1978-07-05,B- -Sylvia Oneal,Female,1595,1986-03-22,A- -Tina Williams,Male,1596,1993-05-20,O- -Renee Walker,Female,1597,1937-06-04,AB- -Danny Rojas,Female,1598,1943-04-16,B- -Jamie Holt,Female,1599,1991-11-13,B+ -Carrie Ford,Female,1600,1995-05-03,AB- -Drew Mccullough,Male,1601,1989-08-31,A- -Charles Hampton,Male,1602,2002-03-05,A- -Mr. John Wright,Female,1603,1951-02-15,B+ -Victor Thomas,Male,1604,1954-06-26,A+ -Michelle Bell,Male,1605,1972-06-16,B+ -Susan Matthews,Female,1606,1973-05-01,O- -Jodi Freeman,Female,1607,1934-10-29,B- -Stacie Snyder,Female,1608,1973-05-25,A+ -Mackenzie Curry,Female,1609,1963-03-01,A- -Jamie Zimmerman,Female,1610,1994-04-20,B- -Teresa Lynn,Male,1611,1995-11-14,AB- -Nathaniel Nichols,Female,1612,1964-08-22,A+ -Aaron Smith,Male,1613,1946-10-06,A+ -Joshua Rogers,Female,1614,1931-04-27,O- -George Harris,Female,1615,1969-10-19,B+ -Jesse Blair,Female,1616,1930-06-03,O+ -Kenneth Yu,Male,1617,1950-11-09,AB- -Christine Chavez,Female,1618,1934-03-05,AB- -Timothy Ford,Male,1619,1935-10-22,B+ -Susan Munoz,Female,1620,1971-03-15,A+ -Joanne Clark,Male,1621,1936-06-01,A+ -Steven Adams,Female,1622,1944-01-24,O- -Robin Robbins,Female,1623,1990-08-18,O+ -Adam Dominguez,Male,1624,1933-05-25,AB- -Ashley Watkins,Male,1625,1930-03-02,A- -Hunter Smith,Male,1626,1954-12-31,AB+ -Edward Wagner,Male,1627,1979-05-07,AB+ -Christopher Bray,Male,1628,1991-10-17,O+ -Debra Lambert,Female,1629,1963-09-17,B- -Steve Hunt,Male,1630,1966-07-21,O- -Johnny Howard,Male,1631,1996-09-05,O+ -Anthony Cantu,Male,1632,1964-01-01,B+ -Devon Gonzalez,Female,1633,1933-06-06,B+ -Jason Sexton,Female,1634,1986-05-14,AB+ -Benjamin Rice,Male,1635,1952-11-24,A+ -Jessica Wilson,Female,1636,1956-06-03,AB+ -Blake Wood,Female,1637,1984-07-29,A+ -Arthur James,Female,1638,1986-05-08,O- -Lauren Wilcox,Male,1639,1994-01-18,A+ -Melissa Weaver,Male,1640,1993-02-10,O+ -Amber Scott,Male,1641,1981-03-20,A+ -Jennifer Mejia,Male,1642,2001-10-07,B- -Donald Huffman,Female,1643,1974-09-01,B+ -Ian Jefferson,Male,1644,1941-03-14,O+ -Lori Smith,Female,1645,1949-01-21,B+ -Robert Simpson DDS,Female,1646,1938-03-24,O- -Theresa Holland,Female,1647,1988-12-02,O+ -Jackie Carroll,Male,1648,1975-10-05,B- -Emily White,Female,1649,1939-12-20,O- -Anthony Hunt,Female,1651,1996-09-17,AB+ -Christina George,Male,1652,1986-02-07,B- -Andrea Carr,Male,1653,1933-09-03,O- -Joel Young,Female,1654,1962-06-17,A- -Dr. Andrew Lester,Female,1655,1997-11-16,A+ -Frances Johnson,Male,1656,1930-12-05,O+ -George Cox,Male,1657,1946-02-21,O- -Timothy Smith,Female,1658,1963-07-21,O+ -Samuel Gonzales,Male,1659,1982-04-10,A+ -Timothy Perry,Female,1660,1961-01-22,O- -Kenneth Ross,Female,1661,1934-10-17,AB+ -Timothy Cox,Male,1662,1990-03-15,A- -Joseph Frazier,Male,1663,1936-08-18,A- -Angela Lowery,Male,1664,1949-06-29,B- -Kim Aguilar,Male,1665,1999-03-25,O- -Patricia Roth,Female,1666,1944-07-25,A+ -Tracy Brown,Female,1667,1973-07-10,O- -Stephanie Reyes,Male,1668,1992-12-14,O+ -Larry Martin,Female,1669,1989-08-10,AB- -David Webb,Female,1670,1962-08-19,B+ -Christopher Anderson,Female,1671,1985-10-16,O- -Tina Martinez,Female,1672,1998-08-16,A- -James Jackson,Male,1673,1996-11-18,A- -Cindy Meyer,Male,1674,1967-12-02,B+ -Mary Bennett,Male,1675,1997-05-31,A- -Jessica Rhodes,Female,1677,1943-05-06,AB+ -Deborah Camacho,Male,1678,1943-02-28,O- -Jacob Garcia,Female,1679,1953-07-11,B- -Erica Russell,Male,1680,1963-05-10,O- -Brian Evans,Male,1681,1991-01-18,AB- -Charles Rodriguez,Male,1682,1994-05-13,A- -Richard Gonzalez,Female,1683,1983-07-03,O+ -Alexis Dalton,Male,1684,1975-12-05,A- -Aaron Miller,Female,1685,1962-12-24,O- -Erica Mullins,Female,1686,1942-02-17,AB+ -Rebecca Patterson,Male,1687,1954-02-24,A+ -Leslie Hall,Male,1688,1995-11-26,O- -Dakota Hamilton,Female,1689,1941-08-03,O- -Greg Webster,Female,1690,1960-06-14,B- -Sean Hernandez,Male,1691,1971-02-18,AB+ -Antonio Robinson,Male,1692,1951-12-04,AB- -Kristy Shepherd,Male,1693,1979-01-09,A+ -Jodi Lee,Male,1694,1954-09-10,A- -Cameron Ross,Male,1695,1934-02-09,O+ -Lisa Austin,Male,1696,1948-06-12,O- -Brian Roberts,Male,1697,1939-01-08,AB- -Tommy Hines,Female,1698,1988-10-12,A+ -Shane Espinoza,Male,1699,1981-06-25,O+ -Rebecca Ibarra,Male,1700,1999-11-05,AB- -Brandon Gregory,Male,1701,1983-03-10,AB+ -Michael Herrera,Female,1702,1942-04-25,AB+ -Donald Alexander,Female,1703,1978-11-15,A+ -Lisa Bryant,Female,1704,1984-08-10,A- -Kristina Montgomery,Female,1705,1931-09-07,B+ -Sara Hines,Female,1706,1989-08-15,O+ -Denise Stein,Female,1707,1995-12-03,AB+ -Karen Osborne,Male,1708,1955-09-01,B+ -Ricardo Sullivan,Female,1709,1983-09-07,A+ -Roger Morgan,Female,1710,1994-05-27,AB+ -Matthew Ford,Female,1711,1937-04-21,AB+ -Dana Chambers,Female,1712,1996-09-15,AB- -Melissa Dominguez,Female,1713,1966-09-18,B+ -Andrew Hill,Male,1714,1975-03-20,AB- -Madison Rodriguez,Female,1715,1938-03-03,AB+ -Natasha Martin,Female,1716,1986-07-28,B+ -Douglas Wong,Male,1717,1994-05-15,B- -Kathryn Garcia,Female,1718,1964-08-21,B+ -Marissa Schultz,Female,1719,1952-07-14,AB- -Dana Wilson,Male,1720,1995-12-04,O+ -Christina Reynolds,Female,1721,1948-03-07,A+ -James Maynard,Male,1722,1962-04-02,A+ -Susan Banks,Male,1723,1989-10-30,A- -Jaime Santiago,Male,1724,1971-12-09,O+ -Pamela Medina,Female,1725,1977-05-18,O+ -Rebekah Wells,Female,1726,1950-09-17,O+ -Christina Dixon,Male,1727,1972-06-29,A- -William Baker,Female,1728,1998-08-20,O+ -Tyrone Campbell,Female,1729,1967-08-12,O- -John Carroll,Female,1730,1955-07-12,A- -Kristy Thomas,Female,1731,1971-09-12,A+ -Brett Hobbs,Male,1732,1962-01-26,O- -Amanda Wise,Male,1733,1953-04-12,A- -Amy Carpenter,Male,1734,1999-04-23,AB+ -Shannon Macias,Male,1735,1983-09-25,AB+ -Dr. Sean Hansen,Male,1736,1931-06-30,A+ -Jason York,Male,1737,1941-11-25,AB+ -Melvin Smith,Male,1738,1957-05-15,O+ -Victoria Graham,Female,1739,1973-03-11,A- -Robert Garcia,Male,1740,1968-02-10,O- -Sarah Dougherty,Male,1741,1940-06-07,O+ -Peter Mack,Male,1742,1949-09-24,AB+ -Max Montgomery,Male,1743,1954-08-28,AB- -Sara Johnson,Female,1744,1974-10-28,B+ -Jonathan Rowland,Male,1745,1963-09-21,O- -Valerie Riley,Male,1746,1980-06-03,O+ -Sonya Cisneros,Male,1747,1953-02-05,A- -Jeanne Price,Male,1748,1965-07-20,A+ -Jake Matthews,Female,1749,1930-09-29,O+ -Tammy Dillon,Male,1750,1984-06-21,AB- -Joseph Shelton,Female,1751,1979-09-16,AB+ -Tony Chen,Male,1752,2000-09-28,O- -Willie Short,Male,1753,1959-01-25,A+ -Kathryn Mcpherson PhD,Male,1754,1941-12-10,O- -Raymond Wilson,Female,1755,1949-05-10,A+ -George Stewart,Male,1756,1977-05-18,B+ -Robert Jarvis,Female,1757,1997-04-13,A- -Mr. Brian Chavez,Female,1758,1939-05-24,O- -Parker Delacruz,Male,1759,1987-01-01,AB+ -Andrea King,Female,1760,1964-09-15,A- -Kevin Miller,Male,1761,1959-08-13,A- -Shannon Carlson,Female,1762,1985-02-25,B+ -Veronica Bailey,Female,1763,1935-08-13,A+ -Kelly Hernandez,Male,1764,1962-01-05,B- -Gabriel Henderson,Female,1765,1933-03-11,O- -Joshua Fitzgerald,Female,1766,1998-04-25,O- -Brian Cox,Female,1767,1935-07-27,O+ -Thomas White,Female,1768,1992-07-25,A+ -Crystal Garrison,Male,1769,1930-05-26,AB- -Robert Reed,Female,1770,1969-01-25,B- -Reginald Marshall,Male,1771,1986-11-15,AB+ -Michael Wright,Male,1772,1951-06-12,O+ -Darrell Hall,Male,1773,1998-06-20,B+ -Christopher Robinson,Male,1774,1999-03-20,B- -Joe Mitchell,Female,1775,1997-03-27,A+ -Thomas Berry,Female,1776,1969-02-11,B- -Crystal Wright,Male,1777,1937-03-17,B+ -Evan Bradford,Female,1778,1942-04-22,A- -Greg Rogers,Female,1779,1971-06-27,O- -Oscar Thornton,Female,1780,1996-11-30,A- -Ashley Rodriguez MD,Male,1781,1995-06-04,O- -Larry Mitchell,Female,1782,1955-01-25,O+ -John Hudson,Male,1783,1958-07-19,B+ -James Williamson,Female,1784,1958-01-07,A+ -Matthew Williams,Female,1785,1935-01-03,A+ -Courtney Lane,Male,1786,1963-07-27,B- -Shaun Tran,Male,1787,1954-12-31,O+ -Jonathan Hernandez,Male,1788,1943-02-27,A+ -Jennifer Bowman,Female,1789,1932-03-17,AB- -Cheryl Sanchez,Female,1790,2001-04-17,AB- -Aaron Burnett,Female,1791,1995-05-10,A- -Kevin Rodriguez,Male,1792,1952-06-16,O- -Ian Green,Male,1793,1935-02-12,B- -Dustin Harper,Male,1794,1969-11-13,AB+ -Brian Mitchell MD,Female,1795,1972-06-21,B+ -Rebecca Olson,Male,1796,1996-06-05,O- -Leah Kemp,Male,1797,1970-10-17,O+ -Jessica Hayes,Female,1798,1990-06-09,A+ -Cindy Perkins,Female,1799,1996-04-15,O- -Christopher Rodriguez,Male,1800,1974-05-30,AB+ -Sarah Roberts,Male,1801,1973-08-17,AB+ -Derek Hughes,Male,1802,1944-11-12,AB- -Richard Mcconnell,Female,1803,1954-11-07,O+ -Andrew Morgan,Male,1804,1939-10-05,O- -Robin Long,Female,1805,1933-10-21,B- -Michael Richmond,Female,1806,1961-09-28,O- -Gary Martin,Male,1807,1949-12-01,AB- -Tiffany Dunn,Female,1808,1977-02-11,A- -Jeffrey Nelson,Male,1809,1981-01-22,AB+ -Larry Herrera,Male,1810,1977-06-03,O+ -Chad Mcknight,Male,1811,1959-06-03,O+ -Olivia Becker,Male,1812,1992-05-21,B- -Nancy Johnson,Male,1813,1968-11-16,O+ -Tony Jones,Female,1814,1985-05-21,AB- -Tiffany Collins,Male,1815,1973-06-20,AB- -Cody Mcclain,Female,1816,1979-10-11,AB- -Brad Dennis,Female,1817,1952-07-29,O+ -Richard Robinson,Female,1818,1949-10-02,O+ -Sara Robertson,Female,1819,1931-12-28,AB- -Jeffrey Hawkins,Male,1820,1982-05-08,O+ -Andres Keller,Male,1821,1967-11-15,B+ -Brandy Bridges,Female,1822,1961-02-09,O+ -Robin Foster,Female,1823,1980-02-05,B+ -Mckenzie Moore,Female,1824,2001-08-28,AB+ -Mr. David Mcconnell DDS,Male,1825,1957-09-02,O- -Timothy Arroyo,Male,1826,1950-12-19,A+ -Stanley Crane,Female,1827,1981-08-11,B+ -Cameron Bailey,Female,1828,1999-08-12,B+ -Richard Cole,Female,1829,1994-11-17,O+ -Deanna Stewart,Female,1830,1969-11-03,A+ -Lindsey Kelly DDS,Male,1831,1997-04-17,A- -Leslie Bennett,Male,1832,1951-08-25,A+ -Chloe Wolf,Female,1833,1988-03-17,AB+ -Brenda Mckenzie,Male,1834,1949-12-14,B+ -Charles Frost,Female,1835,1932-06-11,O+ -Edward Walker,Male,1836,1957-12-27,AB- -Breanna Thompson,Female,1837,1942-10-20,A+ -Jack Neal,Male,1838,1935-04-18,O+ -Amanda Kirby,Female,1839,1978-08-21,B- -Thomas Jacobs,Female,1840,1962-07-05,A- -Garrett Gomez,Female,1841,1978-05-23,AB- -Susan Rodriguez,Male,1842,1979-05-08,B- -Brian Crawford,Male,1843,1966-04-01,B- -Adrian Mooney,Male,1844,1995-05-14,A+ -Casey Holmes,Female,1846,1959-10-10,B- -Katrina Ashley,Male,1847,1999-12-28,AB+ -Amanda Edwards,Female,1848,1978-03-12,AB+ -James Lynn,Female,1849,1943-09-26,A+ -Mary Chambers,Male,1850,1993-09-12,O+ -Jeremy Merritt,Female,1851,2000-12-30,O- -Seth West,Male,1852,1967-09-18,O+ -Carlos Thomas,Female,1853,1956-09-13,O+ -Robin Barber,Female,1854,2001-03-03,O+ -Mathew Edwards,Female,1855,1977-06-21,O+ -Daniel Glover,Male,1856,1972-09-02,AB- -Debbie Becker,Female,1857,1999-12-24,O- -Juan Coleman,Female,1858,1949-12-18,AB- -Elizabeth Wright,Female,1859,1932-09-01,B- -Peggy Moody,Male,1860,1941-04-26,A- -Walter Hull,Male,1861,1970-02-23,O+ -Sherri Mckinney,Male,1862,1989-07-24,A- -Bradley Mack,Female,1863,1940-11-16,AB+ -Robert Kennedy,Female,1864,1944-07-01,A+ -Charles Henson,Male,1865,1968-02-04,A+ -Dawn Campbell,Female,1866,1954-12-06,AB- -Kelli Hartman,Male,1867,1952-07-12,AB- -Richard Sanchez,Male,1868,1957-02-11,AB+ -Curtis Fitzgerald,Female,1869,1938-04-09,O+ -James Taylor,Male,1870,1954-08-10,A- -Anthony Garcia,Male,1871,1985-11-28,B+ -Kenneth Hardy,Male,1872,1988-09-25,A- -Anita Warren,Female,1873,1965-04-07,O- -Cassandra King,Female,1874,1944-04-30,B- -Nina Lewis,Male,1875,1956-01-21,A+ -Taylor Ellison,Male,1876,1969-11-11,B- -Aaron Robinson,Male,1877,1975-09-23,O- -Annette Marshall,Female,1878,1936-07-24,AB- -Christopher Greer,Female,1879,1980-10-11,A- -Jeremy Jensen,Female,1880,1982-05-17,A+ -Clinton Gutierrez DDS,Male,1881,1934-05-11,B- -Karen Harvey,Male,1882,1960-12-12,B+ -Elizabeth Wood,Male,1883,1946-12-06,AB- -Jacqueline Oneill,Male,1884,1985-08-14,O- -Paula Gonzalez,Female,1885,2002-10-02,B+ -Carrie Hart,Female,1886,1933-08-05,B- -Anne Dougherty,Male,1887,2000-10-21,B+ -Ryan Baker,Male,1888,1986-08-30,A- -Joshua White,Male,1889,1950-01-10,O+ -Edward Hudson,Male,1890,1981-05-20,B+ -Douglas Howard,Male,1891,1983-09-23,AB- -Nathan Miranda MD,Female,1892,1935-11-10,O- -Jennifer Simmons MD,Male,1893,1970-03-20,B- -John Singh,Male,1894,1979-07-11,A- -Donald Olsen,Female,1895,1948-12-16,O+ -Lisa Caldwell,Female,1896,1930-12-29,O+ -Karina Hudson,Male,1897,1981-12-27,O- -Tiffany Cobb,Female,1898,2001-12-26,AB+ -Juan Miranda,Male,1899,1966-11-29,A- -Thomas Roberts,Male,1900,1986-08-05,A- -Stephanie Smith,Female,1901,1940-03-27,A+ -Charles Ramos,Male,1902,1936-10-05,O- -Elizabeth Jensen,Female,1903,1987-12-27,O+ -Craig Romero,Female,1904,1991-09-12,O+ -Jonathan Smith,Female,1905,1974-02-05,B+ -Chloe Jimenez,Female,1906,1976-05-19,O- -Kevin Lewis,Female,1907,1954-09-09,AB+ -Julie Mcbride,Female,1908,1937-09-09,A+ -Bradley Nelson,Female,1909,1974-10-27,B- -Stephanie Pratt,Male,1910,1988-12-16,O- -Matthew Robinson,Female,1911,1970-09-18,A+ -Michael Massey,Female,1912,1964-10-22,A- -Melissa Parker,Female,1913,1950-09-14,A+ -Erin Collins,Male,1914,1937-06-12,B+ -Rachel Bray,Female,1915,1992-09-02,AB- -Olivia Caldwell,Male,1916,1962-01-13,O+ -Lisa Irwin,Female,1917,1940-03-30,B+ -Jeremy Dixon,Male,1918,1956-09-27,B- -Chad Scott,Female,1920,1940-12-12,O- -Robert Green,Female,1921,1981-06-09,B+ -Trevor Rivera,Male,1922,1974-01-07,O+ -Brandon Webb,Male,1923,1998-11-24,AB- -Jorge Parsons,Female,1924,2002-10-18,B+ -Courtney Reed,Male,1925,2001-07-10,AB- -Alexandra Tucker,Female,1926,1930-10-22,B+ -Anthony Edwards,Male,1927,1957-11-12,O+ -Laura Preston,Male,1928,1989-06-27,AB+ -Robert Jones,Female,1929,1957-01-21,A+ -Felicia Patterson MD,Female,1930,1933-02-10,O- -Mark White,Male,1931,1935-08-27,O- -Nicholas Stokes,Male,1932,1949-03-11,O- -Brett Sexton,Female,1933,1965-07-23,O+ -Carrie Davis,Female,1934,1942-06-10,A- -Thomas Hill,Female,1935,1932-10-04,AB+ -Gregg Solis,Male,1936,1944-11-28,B- -James Rodriguez,Female,1937,1959-04-25,AB- -Taylor Munoz,Female,1938,1970-05-20,O+ -Mrs. Zoe Bartlett,Male,1939,1962-01-31,A- -Scott Alexander,Female,1940,1989-07-06,B- -Kevin Phillips,Female,1941,1955-11-05,AB- -Joseph Park,Male,1942,1966-05-13,AB- -Katherine Mcgee,Female,1943,1933-12-06,AB+ -Tristan Castillo,Female,1944,1931-07-26,A+ -Judith Sexton,Female,1945,1936-07-10,O- -Julia Williams,Male,1946,2000-09-11,B+ -Jaime Hodge,Female,1947,2002-12-29,B- -Christopher Frederick,Female,1948,1943-12-03,O+ -Barbara May,Male,1949,1975-08-14,B- -Kelly Stevens,Male,1950,1966-12-25,A+ -Andrew Smith,Female,1951,1949-04-30,O- -Janice Hancock,Male,1952,1980-01-10,B- -Kevin Pace,Female,1953,1964-12-19,A+ -Tammy Liu,Female,1954,1978-04-28,O+ -Jeremy Lowe,Male,1955,1950-07-06,AB+ -Robert Duncan,Male,1956,1969-10-10,A- -Victoria Barker,Male,1957,1977-09-15,AB- -Molly Foster,Male,1958,1970-09-07,O+ -James Thompson,Male,1959,1999-10-19,O- -Craig Jensen,Male,1960,1952-02-08,AB- -Jesus Myers,Male,1961,1954-11-08,A- -Scott Mills,Male,1962,1982-05-24,O+ -Catherine Hawkins,Female,1963,1997-05-06,B+ -Emily Johnston,Male,1964,1987-05-15,O+ -Tamara Macdonald,Male,1965,1961-03-02,O+ -Whitney Obrien,Female,1966,1974-11-04,B+ -Carrie Johnson,Male,1967,1992-04-02,O+ -Ryan Hull,Female,1968,1936-06-11,AB- -Jacob Gallagher,Male,1969,1995-03-22,O- -Bryan Nguyen,Male,1970,1943-02-21,A- -Janice Benton,Female,1971,1976-09-26,A+ -Kathy Ross,Male,1972,1998-01-24,B- -Kelsey Lawson DVM,Male,1973,1988-01-12,B+ -Kevin Cox,Male,1974,1962-09-09,AB+ -Diane Cummings,Female,1975,1999-05-17,B+ -Michael Mitchell,Female,1976,1989-06-30,A- -Jeffrey Smith MD,Male,1977,1988-08-31,B- -Derek Estrada,Male,1978,1936-08-25,B- -Felicia Ramirez,Female,1979,1988-11-22,AB+ -William Gutierrez,Male,1980,1997-05-13,A- -Terri Harmon,Female,1981,1999-10-08,AB- -Jeffrey King MD,Male,1982,1960-12-05,O- -Dawn Ortiz,Female,1983,1951-05-24,AB+ -Leroy Wright,Male,1984,1969-06-19,O- -Jamie King,Male,1985,1962-04-24,AB- -Chelsea Smith,Male,1986,1962-02-27,B- -Krista Terry,Female,1987,2001-04-07,O- -Jessica Hayes,Male,1988,1965-08-30,AB- -Paul Serrano,Male,1989,1939-03-11,AB- -Dr. Charles Burton MD,Female,1990,1998-09-12,A+ -Heather Bryan,Male,1991,1969-02-13,AB+ -Andrew Perez,Male,1992,1994-10-02,A+ -James Thomas,Female,1993,1947-11-28,B+ -Lori Hayden,Male,1994,1974-12-18,B- -Paul Hunter,Female,1995,1939-02-25,AB+ -John Walker,Female,1996,1954-11-09,B- -Sean Gardner,Female,1997,1937-10-15,A+ -Barbara Martinez,Female,1998,1958-06-19,A- -Cheryl Rodriguez,Male,1999,1977-11-12,AB- -Julie Nguyen,Male,2000,1994-02-05,B- -Katherine Medina,Male,2001,1979-11-07,AB+ -Todd Henry,Female,2002,1968-04-29,B+ -Beverly Lopez,Male,2003,1966-04-23,AB+ -April Austin,Male,2004,1983-07-01,B- -Amanda Rollins,Male,2005,1938-06-21,AB+ -John Richardson,Male,2006,1962-02-04,B+ -Seth Morris,Male,2007,1990-05-08,AB- -Devin Martin,Male,2008,1985-03-15,A- -Gerald Hernandez,Male,2009,1982-10-15,AB- -Gwendolyn Wolfe,Male,2010,1961-11-19,AB+ -Jonathan Santos,Female,2011,1971-04-19,B+ -Roger Shaffer,Female,2012,1932-09-15,B+ -Denise Thompson,Male,2013,1986-02-16,B- -Pamela Valencia,Female,2014,1947-08-26,A+ -Ryan Oliver,Male,2015,1974-09-22,AB+ -Margaret Allen,Male,2016,1986-04-20,AB+ -John Alvarado,Female,2017,1974-03-04,AB+ -Eric Burns,Male,2018,1934-08-10,AB+ -Christina Ward,Female,2019,1945-05-28,B- -Kevin Fletcher,Female,2020,1950-04-30,A+ -Joshua Crawford,Male,2021,1965-03-15,A+ -Spencer Lloyd,Female,2022,1963-04-13,O- -Tammy Diaz,Female,2023,1977-05-31,AB+ -Stephen Anderson,Female,2024,1984-09-16,AB+ -Gary Long,Female,2025,1961-04-13,O- -Stacey Martin,Female,2026,1935-06-04,A+ -Kimberly Lee,Male,2027,1972-07-01,B+ -Emily Jones,Female,2028,2002-05-14,B+ -Casey Brewer,Male,2029,1983-03-24,O+ -Deborah Arias,Female,2031,1954-08-07,AB- -Alec Wallace,Male,2032,1977-01-09,O+ -Alex Sanchez,Female,2033,1973-06-27,A+ -Eric Johnson DVM,Female,2034,2002-03-29,A- -Travis Foster,Male,2035,1944-10-04,AB+ -Melissa Singh,Male,2036,1993-01-09,O+ -Donna Flores,Male,2037,1981-01-12,B- -Frank Stephens,Female,2038,1984-09-28,B+ -Joseph Spence,Male,2039,1934-05-27,B- -Marcus Powell,Female,2040,1989-01-14,O- -Gary Ayers,Female,2041,1947-12-31,A+ -Theresa Santiago,Male,2042,1977-07-21,A+ -Erin Jackson,Male,2043,1945-10-25,O+ -Michael Mason,Female,2044,1940-01-25,AB+ -Austin Ross,Male,2045,1939-04-04,A+ -Sandra Scott,Female,2046,1953-11-07,O+ -Mr. Alex Wilson,Male,2047,1954-01-17,O+ -Patrick Higgins,Male,2048,1977-09-25,AB- -Brittney Wells,Male,2049,1968-04-28,AB- -Jennifer Singleton,Male,2050,1984-10-21,A+ -Amy Gardner,Male,2051,1947-05-14,O+ -Andrew Edwards,Male,2052,1977-06-26,O- -Samantha Boone,Male,2053,1946-08-04,O- -Nancy Campos,Male,2054,1954-04-29,AB- -Morgan Daniels,Male,2055,1945-06-26,A+ -Angel Hogan,Female,2056,1963-02-08,B+ -Bethany Smith,Female,2057,1987-02-08,AB+ -Angela Clay,Female,2058,1982-12-04,A- -Nicole Meyer,Female,2059,1971-10-04,B+ -James Ramos,Female,2060,1996-01-04,O- -Paul Ramos,Female,2061,1931-06-11,O- -Jodi Smith,Female,2062,1938-10-30,B+ -Alexander Watts,Male,2063,1971-04-05,AB- -Lisa Olson,Male,2064,1961-08-02,AB- -Amy Thompson,Male,2065,1967-02-03,A+ -Robert Adkins,Male,2066,1979-12-29,AB- -Ronald Barrett,Female,2067,1934-10-30,B- -Michael Hendrix,Male,2068,1953-11-08,A- -Caleb Moss,Female,2069,1945-11-15,B+ -Danny Ray,Female,2070,1955-03-19,B+ -Robert Bright,Male,2071,1994-04-18,O+ -Andrea Vasquez,Male,2072,1943-12-28,O- -Brenda Stewart,Male,2073,1993-01-18,B+ -Janet White,Male,2074,1975-03-06,B- -Destiny Morgan,Female,2075,1936-08-30,B+ -Julie Hall,Female,2076,1989-10-25,AB+ -Thomas Waters,Male,2077,1976-06-15,B- -Crystal Coleman,Male,2078,1998-05-14,A+ -Victoria Snyder,Male,2079,1985-03-25,AB+ -Joseph Hill,Female,2080,1941-05-30,AB+ -William Brown,Male,2081,1998-01-13,B+ -Christie Galvan,Female,2082,2002-10-19,AB- -Chad Anthony,Male,2083,1978-08-30,B+ -Jessica Adams,Male,2084,1952-11-18,B- -William Thompson,Female,2085,2001-07-30,A+ -Kelly Bishop,Male,2086,1946-11-07,O- -Julie Delgado,Female,2087,1989-09-12,A- -Barry Mayo,Male,2088,1954-06-04,AB- -Johnny Richardson,Female,2089,1980-06-14,B- -Michael Allen,Male,2090,1986-05-08,O- -Amy Mueller,Male,2091,1984-06-06,B- -Amanda Bailey,Male,2092,1976-12-27,AB- -Joseph Avila,Male,2093,1930-08-02,O- -Karen Brooks,Female,2094,1940-04-20,AB- -Mary Dodson DDS,Female,2096,1966-09-08,B- -Kathy Clark,Male,2097,1956-09-29,AB+ -Beverly Robinson,Male,2098,1959-02-18,A- -Jessica Rodriguez,Female,2099,1948-06-06,O+ -Donald Thompson,Male,2100,1983-05-24,A- -Maurice Taylor,Female,2101,1945-11-09,AB+ -Dana Kelly DDS,Male,2102,1973-04-27,AB- -Wendy Mendoza,Female,2103,1954-01-18,A- -Justin Harris,Female,2104,1967-04-18,AB- -Heather Rodriguez,Female,2105,1973-11-10,AB- -Lisa Fernandez,Female,2106,1937-06-13,O- -James Ferrell,Male,2107,1954-05-20,A+ -Tracy Malone,Male,2108,1954-12-28,AB- -Adam Callahan,Male,2109,1991-06-01,A- -Tracey Soto,Female,2110,1996-11-06,A- -Michelle Wilson,Female,2111,1974-11-11,A- -Susan Holmes,Female,2112,1947-06-09,AB+ -Nancy Mitchell,Male,2113,1968-06-26,O+ -Heather Smith,Male,2114,1963-07-03,AB- -Linda Johnson,Female,2115,1980-03-12,B+ -Timothy Lucas,Male,2116,1993-04-16,AB- -Jon Garcia,Female,2117,1969-07-26,AB- -Jack Campbell,Female,2118,1996-04-21,B+ -Beverly Adkins,Male,2119,1977-05-15,O- -Timothy Goodman,Male,2120,1983-07-20,AB- -Jacqueline Stone,Male,2121,1958-07-26,AB+ -Jill Green,Male,2122,1972-07-04,B- -Arthur Harris,Female,2123,1994-01-23,A+ -John Adams,Female,2124,1930-03-31,A- -Danielle Leon,Male,2125,1979-07-16,AB- -Benjamin Howard,Female,2126,1958-05-15,O- -Tasha Dunn,Female,2127,1974-10-26,AB+ -Bridget Marquez,Female,2128,1938-04-30,AB- -Shelly Brandt,Male,2129,1930-04-16,B+ -Anthony Winters,Female,2130,1954-11-09,O- -Jennifer Caldwell,Male,2131,1998-06-16,B- -Alexandra Tran,Female,2132,1980-01-18,O+ -Mary Hunt,Female,2133,1946-09-04,AB- -Erica Dalton,Female,2134,1998-02-25,AB+ -Keith Graham,Female,2135,1946-08-27,O- -Claudia Zimmerman,Male,2136,1976-08-05,B+ -Jessica Patterson,Female,2137,1935-04-10,O- -Lori Robinson,Female,2138,1980-06-27,AB- -Madeline Scott,Female,2139,1948-12-09,O- -Austin Peterson,Male,2141,1983-06-20,O+ -Dawn Nielsen,Male,2142,2001-03-24,O- -Deborah Wood,Female,2143,1931-07-07,A- -Jacob Harris,Female,2144,1999-03-31,A+ -Janet Kerr,Female,2145,1989-08-06,A- -Austin Thompson,Female,2146,1940-09-16,A+ -Brandi Robinson,Female,2147,2001-12-23,O- -Melissa Norris,Male,2148,1939-04-13,B+ -Pamela Ayala,Female,2149,2000-04-26,B+ -Matthew Stokes,Female,2150,1967-04-26,AB- -Kevin Munoz,Female,2151,1997-12-21,B+ -Sara Daniels,Female,2152,1936-08-27,A+ -Christina Carlson,Male,2153,2002-11-29,AB+ -Jennifer Flowers,Female,2154,1931-04-04,A+ -Derek Craig,Male,2155,1966-09-04,A- -Alexis King,Female,2156,1930-07-27,O- -Jennifer Cook,Male,2157,1932-06-18,AB- -Lisa Lopez,Male,2158,1961-11-27,B- -Thomas Weber,Male,2159,1974-12-01,AB- -Caleb Norman,Female,2160,1953-07-20,AB- -Felicia Jimenez,Male,2161,1932-06-13,AB- -Corey Lee,Female,2162,1931-05-30,AB+ -Erin Mitchell,Male,2163,1994-10-30,O+ -Michael Beck,Female,2164,1988-04-14,A- -Keith Lynch,Female,2165,1996-05-25,O- -David Moore,Female,2166,1941-04-02,O+ -Robert Neal,Male,2167,1966-04-20,B- -Jamie Powell,Male,2168,1971-12-05,O+ -Holly Smith,Male,2169,1972-01-10,O- -Robert Wilson,Male,2170,1949-08-28,A- -Jennifer Matthews,Male,2171,1958-04-10,A- -Kenneth Wilson,Female,2172,1962-04-10,O- -Victoria Bruce,Male,2173,1934-04-10,B- -Jose Taylor,Male,2174,1967-04-09,O- -Jeffrey Mcdonald,Female,2175,1978-04-29,B- -Amber Jackson,Male,2176,1984-10-26,B- -Amy Brock,Female,2177,1999-05-04,O- -Kevin Greer,Female,2178,1984-03-29,A+ -Jamie Munoz,Female,2179,1943-02-02,A- -Richard Brown,Female,2180,1980-02-19,B- -Misty Palmer,Male,2181,1962-07-26,O- -Carlos Torres,Male,2182,1936-06-14,B+ -James Larson,Female,2183,1943-02-12,A+ -Robert Smith,Male,2184,1975-09-12,A- -Thomas Erickson,Male,2185,1996-09-14,B- -Mrs. Amanda Cardenas,Female,2186,1984-11-22,A- -Amanda Hubbard,Male,2187,1957-11-16,A+ -Catherine Moreno,Female,2188,1949-04-28,A- -Alexis Adkins,Male,2189,1974-01-12,AB+ -Sherry Mendez,Male,2190,1931-10-24,AB- -Patricia Christian,Male,2191,1942-09-19,AB+ -Sheila Miller,Female,2192,1973-01-06,A+ -Calvin Odonnell,Male,2193,1998-02-20,B- -Bill Lindsey,Male,2194,1937-12-30,O- -Justin Jackson,Female,2195,2000-04-01,O+ -Daniel Conway,Male,2196,1973-10-24,O- -Michael Barnes,Female,2197,1968-05-26,A- -Brandon Swanson,Female,2198,1954-06-30,O+ -Zachary Hall,Male,2199,1964-11-10,O+ -Jasmine Sanchez,Female,2200,1947-01-28,A- -Spencer Martin,Male,2201,1974-08-27,A- -Teresa Ingram,Female,2202,1991-07-02,B- -Adam Cole,Female,2203,1967-01-05,A+ -Kristen Roberts,Male,2204,1930-12-19,B+ -April James,Female,2205,1999-10-04,O- -Thomas Torres MD,Female,2206,1949-03-07,A+ -Brian Mills,Male,2207,1968-06-06,AB+ -Daniel Campos,Male,2208,1975-04-17,B- -Tanya Jackson,Female,2209,2002-09-13,B- -Benjamin Smith,Male,2210,1932-08-14,B+ -Andre James,Female,2211,1935-09-03,AB+ -Dr. Jessica Edwards,Female,2212,1953-07-14,O- -Ronald Sanchez,Female,2213,1971-06-15,AB- -Rebecca Hebert,Female,2214,1965-01-20,AB+ -Michael Anderson,Female,2215,2001-01-31,O- -David Middleton,Male,2216,1939-06-16,O+ -Lori Davis,Male,2217,1948-04-11,A- -Adam Johnson,Male,2218,1932-08-13,B- -Patrick Mcclure,Female,2219,1947-03-28,O- -Kaitlyn Kelly,Male,2220,1973-08-04,A+ -Robin Hamilton,Male,2221,1979-07-19,B+ -Susan Riddle,Male,2222,1971-11-04,A- -Jennifer Jones,Female,2223,1942-11-17,A+ -Christopher Smith,Female,2224,1947-12-21,A- -Vickie Thomas,Male,2225,2000-10-09,B- -Timothy Herring,Female,2226,1990-04-11,AB+ -Christina Phillips,Female,2227,1962-11-12,AB- -Martin Gilbert,Female,2228,1959-08-14,AB+ -Brian Wolf,Female,2229,2001-03-26,O- -Donald Gray,Male,2230,1960-08-02,B+ -Michael Shepherd,Male,2231,2002-03-17,AB+ -Manuel Gray,Male,2232,1964-06-13,B- -James Kelly,Female,2233,1963-05-29,B+ -Jessica Salinas,Female,2234,1978-09-04,O- -Helen Smith,Female,2235,1964-02-25,O+ -Michael Haas,Female,2236,1955-11-27,AB+ -Greg Holden,Male,2237,1987-10-25,AB+ -Angela Gomez,Female,2238,1985-01-10,AB- -Shane Griffin,Male,2239,1972-09-13,O- -Elizabeth Green DDS,Female,2240,1931-06-14,A+ -Brandy Clark,Female,2241,1982-12-16,AB+ -Kimberly Ford,Female,2242,1996-07-01,B- -Deborah Adams,Female,2243,1984-09-09,AB+ -Crystal Mckee,Female,2244,1993-09-26,AB- -Douglas Johnson,Male,2245,1964-12-13,O+ -Carolyn Simpson,Male,2246,1968-02-01,AB- -Emily Mccall,Male,2247,1961-08-27,AB+ -Lauren Benson,Female,2248,1955-01-01,B+ -Timothy Hill,Female,2249,1931-06-10,A+ -William Lawson,Female,2250,1992-08-04,A- -Erica Dougherty,Female,2251,1974-11-11,AB+ -Matthew Flores,Male,2252,1931-01-10,O- -Catherine Stevens,Female,2253,1963-05-25,AB+ -Destiny Bennett,Male,2254,1942-09-23,A+ -Janet Johnson,Male,2255,1936-06-23,O- -Cindy Dixon,Male,2256,1979-01-13,B- -Joshua Mclaughlin,Female,2257,1934-07-05,B+ -Christopher Nguyen,Male,2258,1930-01-14,O- -Elizabeth Wilson,Female,2259,1942-08-05,AB- -Ashley Mays,Male,2260,1936-03-28,O+ -Sarah Jackson,Male,2261,1969-02-21,AB- -Pamela Smith,Male,2262,1938-08-22,A- -Lydia Collins PhD,Male,2263,1952-10-13,O- -Cassandra Burgess,Male,2264,1940-06-11,B- -Lauren Lawrence,Female,2265,1965-12-08,AB+ -Richard Higgins,Male,2266,1938-10-22,B+ -Regina Chang,Male,2267,2002-11-15,O- -Sarah Fisher,Male,2268,1997-05-12,AB- -Martin Merritt,Female,2269,1935-10-15,O- -Emily Benson,Female,2270,2000-09-18,O- -Christina Green,Female,2271,1986-10-14,O- -Rachel Holden,Male,2272,1958-01-12,B- -Lauren Grant,Female,2273,1967-09-04,B+ -Susan Hurley,Male,2274,1990-01-13,A+ -Emily Rose,Male,2275,1987-05-01,A+ -David Butler,Female,2276,1964-06-19,O- -Lauren Beasley,Male,2277,1994-03-12,B- -Kathleen Knight,Male,2278,1939-03-29,B- -Susan Zuniga,Female,2279,1947-08-10,A- -Alexander Wood,Female,2280,1984-05-07,O- -Joseph Long,Male,2281,1983-04-18,AB- -Shannon Mcdonald,Female,2283,1962-10-10,AB- -Travis Bauer,Female,2284,1931-09-22,O+ -Sandy Nelson,Male,2285,1975-08-06,B+ -Amy Adams,Male,2286,1959-08-28,O- -Marie Green,Male,2287,2002-09-29,O+ -Danielle Santiago,Female,2288,1945-09-03,AB- -Juan Miller,Female,2289,1991-01-02,AB- -Laura Mills,Male,2290,1960-05-06,O- -Juan Peterson,Male,2291,1966-01-01,O+ -Crystal Burnett,Female,2292,1984-04-03,O+ -Donna Ortiz,Female,2293,1955-12-08,O- -Michael Spears,Male,2294,1947-03-09,B+ -Aaron White PhD,Male,2295,1972-10-22,A- -James Bush,Female,2296,1946-02-21,O+ -Colleen Mcdonald,Female,2297,1968-04-25,A- -Danielle Fowler,Female,2298,1994-05-04,AB+ -Kelli Parker,Male,2299,1993-01-30,B+ -Harry Pennington MD,Male,2300,1958-11-22,AB- -Jermaine Reyes,Male,2301,1976-06-07,A+ -Mr. Jacob Norton,Male,2302,1994-02-07,B+ -Malik Serrano,Female,2303,1946-09-13,A- -Patrick Madden,Female,2304,1956-01-04,A- -Leslie Allen,Female,2305,1983-08-07,A- -Kevin Benson,Female,2306,1938-09-14,B- -Jennifer Hinton PhD,Male,2307,1991-06-06,B+ -Angelica Barnes,Female,2308,1982-05-06,O+ -Bryce Kennedy,Female,2309,1946-09-30,O+ -Krista Grant,Female,2310,1972-08-11,B- -Joshua Ferguson,Male,2311,1939-10-09,O+ -Donna Kim,Male,2312,1956-12-17,B- -Connor Mathews,Male,2313,2001-08-11,A- -Jared Duncan,Male,2314,1968-09-13,O- -Jake Jensen,Female,2315,1980-11-21,B+ -Yesenia Yang,Female,2316,1978-08-31,AB+ -Kyle Melendez,Male,2317,1934-10-09,A- -Jamie Boyd,Female,2318,1980-02-17,AB+ -Robin Dillon,Male,2319,1931-09-12,AB- -Jennifer Kim,Female,2320,1978-05-07,A- -Patrick Cooper,Female,2321,1977-06-23,A+ -Derek Compton,Male,2322,1935-04-24,O+ -Shane George,Male,2323,1985-09-06,A+ -Elizabeth Brooks,Male,2324,1973-10-23,O- -Amy Allen,Female,2325,1932-08-26,AB+ -Jason Browning,Female,2327,1970-08-25,B+ -Jessica Schultz,Male,2328,2000-11-21,A- -Shannon Harris,Male,2329,2000-02-22,B+ -Lucas Potter,Male,2330,1930-10-09,O- -Jesse Marquez,Female,2331,1972-01-21,O- -Jessica Nelson,Male,2332,1947-02-23,O+ -Malik Murphy,Male,2333,1932-11-24,O- -Frances Bell,Male,2334,1986-08-12,A- -Travis Oneal,Female,2335,1959-05-13,A- -Michael Williamson,Female,2336,1944-03-06,B+ -Nicholas Greene,Male,2337,1949-02-10,B+ -Rebecca Brock,Female,2338,1955-03-11,AB+ -Jamie Schneider,Male,2339,1933-05-14,A- -Katherine Lam,Male,2340,2000-02-14,A+ -Andrew Vega,Female,2341,1987-05-31,AB+ -Heidi Gonzalez,Female,2342,1953-03-08,O+ -Daniel Harris,Female,2343,1982-05-12,AB+ -John Liu,Female,2344,1936-04-08,B- -Brianna Rose,Male,2345,1933-05-24,B+ -Melissa Valdez,Female,2346,1944-09-14,A+ -Kayla Benson,Female,2347,1974-04-10,B+ -Chad Howell,Female,2348,1930-05-06,B- -Miranda Harris,Female,2349,1964-03-27,B- -Jeff Thompson,Female,2350,1995-04-27,AB- -Caitlin Mann,Female,2351,2000-08-05,A- -Jesse Stephens,Male,2352,1972-02-28,O+ -Dennis Fitzgerald,Male,2353,1989-06-26,O- -Courtney Washington,Female,2354,1994-12-26,B- -Jill Griffin,Female,2355,1948-03-05,AB+ -Rachel Gill,Female,2356,1947-12-28,O- -Todd Arellano,Male,2357,1938-11-24,AB+ -Kenneth White,Female,2358,1954-12-11,B+ -Robert Whitaker,Male,2359,1950-10-18,AB+ -Justin Willis,Female,2360,1967-04-02,O- -Dawn Russell,Male,2361,1963-03-04,O- -Charlene Green,Male,2362,1947-03-27,A- -Mary Bell,Female,2363,1992-09-23,AB+ -Judy Sanders,Female,2364,1945-10-06,O+ -Andre Bernard,Male,2365,1964-06-26,A- -Kathleen Butler,Male,2366,1935-05-24,A+ -Luke Oliver,Male,2367,1960-01-29,AB- -Tara Rodriguez,Male,2368,1977-04-19,A+ -Kelly Fields,Male,2369,1942-03-29,O+ -Hannah Clark,Female,2370,1994-07-03,A- -Timothy Thompson,Male,2371,1957-12-30,AB- -Kelsey Simpson,Female,2372,1956-03-01,A- -Jody Singleton,Female,2373,1997-08-21,O- -Shawn Munoz,Male,2374,1955-03-17,AB- -Heidi Mendoza,Male,2375,1957-05-10,B+ -Priscilla Tate,Male,2376,1993-07-05,AB+ -Richard Acosta,Male,2377,1950-08-03,A+ -Brandon Sherman,Female,2378,1967-06-05,AB- -Robin Saunders,Female,2379,1942-08-18,AB+ -Chad Garcia,Female,2380,2001-06-11,A- -Michael Carter,Male,2381,1963-11-17,O+ -Susan Williams,Female,2382,1978-02-20,AB- -Nicole Sellers,Female,2383,1972-07-31,AB+ -Joshua Berry,Female,2384,1970-02-06,A- -Sylvia Mann,Female,2385,1944-05-05,A- -James Mendez,Male,2386,1972-08-25,A- -Terri Hernandez,Male,2387,1991-07-13,O+ -Travis Dixon,Male,2388,1991-12-28,O- -Philip Gallagher,Female,2389,1972-06-13,O+ -Katherine Martinez,Female,2390,1995-12-15,O+ -Ariel Miller,Male,2391,1940-03-08,B+ -Gerald Thomas,Female,2392,1930-10-30,A+ -Terry Wright,Female,2393,1963-04-02,A- -Kimberly Salazar,Female,2394,1977-07-23,AB+ -Melissa Sexton,Female,2395,1957-07-13,AB- -Mr. Matthew Myers,Male,2396,1942-02-27,A+ -James Martin,Male,2397,1988-04-19,A- -Kelly Alvarez,Male,2398,1938-05-31,B- -Samuel Vazquez,Male,2399,1967-03-26,O+ -Derek Brown,Male,2400,1969-02-12,B- -Andrea Jones MD,Male,2401,1968-03-27,A- -Bethany Griffin,Male,2402,1983-05-31,A+ -Christine Rogers,Female,2403,1956-01-24,AB+ -Russell Fisher,Female,2404,1966-08-20,A+ -James Foster,Male,2405,1962-06-27,B+ -Omar Smith,Male,2406,1952-03-31,AB+ -Adam Callahan,Female,2407,1939-01-05,AB+ -Ryan Lee,Male,2408,1941-01-16,A- -Alicia Martin,Male,2409,1943-12-24,O- -Erin Carroll,Female,2410,1976-10-13,A- -Nicole Newton,Female,2411,1952-04-08,O+ -Andre Le,Female,2412,1976-06-06,A+ -Kerry Clark,Male,2413,1945-08-14,AB+ -Regina Dorsey,Female,2414,1951-06-28,A- -Justin Oliver,Female,2415,1989-02-12,A- -Jason Mccall,Female,2416,1965-07-11,A+ -James Patton,Female,2417,1948-12-16,A+ -Lisa Washington,Female,2418,1985-05-04,B+ -Brianna Clark,Female,2419,1983-09-14,AB+ -Rebecca Newman,Male,2420,1931-05-04,AB- -Jennifer Davidson,Male,2421,1949-06-24,B+ -Megan Miller,Male,2422,2000-12-22,B- -Antonio Clark,Male,2423,1973-02-04,O+ -Abigail Young,Male,2424,1938-09-09,O+ -Tyler Fernandez,Male,2425,1934-07-26,AB- -Douglas Navarro,Female,2426,2001-10-08,O- -Lee Ward,Female,2427,1941-04-07,B+ -Michael Fuller DDS,Female,2428,1939-09-24,AB- -Bailey Flores,Female,2429,1951-04-02,O- -Jennifer Carrillo,Male,2430,1932-09-27,O- -Kenneth Fitzgerald,Female,2431,1972-10-25,AB- -Susan Ward,Female,2432,1999-08-13,O+ -Danielle Barker,Female,2433,1978-08-29,B- -Christopher Carson,Male,2434,1944-12-03,O+ -Joel Scott MD,Female,2435,1940-03-01,A- -Patty Barnett,Male,2436,1933-09-29,O+ -Carla Grimes,Male,2437,1952-06-03,O+ -Carla Mcdonald,Male,2438,1954-09-05,B+ -Michael Wallace,Female,2439,1976-02-07,AB- -Courtney Fields,Male,2440,2001-09-25,AB- -Nicole Mcdonald,Female,2441,1982-06-13,A- -Patrick Lyons,Male,2442,1940-03-15,A- -Kylie Harris,Female,2443,1994-08-29,B+ -Derrick Lynch,Female,2444,1943-02-28,AB- -Jeffery Levine,Female,2445,1935-12-31,O+ -Kristen Freeman,Female,2446,1954-12-09,B- -Cory Sanchez,Male,2447,1963-05-06,O- -Michelle Colon,Female,2448,1937-11-15,A+ -Anthony Macdonald,Male,2449,1945-04-24,O- -Michael Kelly,Female,2450,1978-10-20,A- -Candice Marshall,Female,2451,1964-06-23,A- -Pamela Brooks,Female,2452,1954-06-11,O- -Tammy Cantu,Male,2453,1991-06-13,A+ -Thomas Cherry,Male,2454,1969-07-12,O+ -Joseph Bryant,Male,2455,1961-07-27,B- -Marissa Webb,Male,2456,1949-03-12,B- -Robert Maynard,Female,2457,1960-09-07,O- -Brittney Holmes MD,Male,2458,1994-05-06,A+ -Kristen Moore,Female,2459,1999-12-02,B+ -Julie Perry,Male,2460,1938-03-09,A- -Mark Hall,Female,2461,1962-12-19,AB+ -Angela Gray,Female,2462,1955-03-29,O+ -Nicole Jordan,Female,2463,1991-11-29,B+ -Angela Fernandez,Female,2464,1947-09-20,O- -Brittney Reed,Female,2465,1937-11-03,B- -Christopher Taylor,Male,2466,1959-04-12,A- -Anthony Dorsey,Female,2467,2002-08-14,B+ -Dominique Arias,Female,2468,1933-03-23,B+ -Eric Gallagher,Female,2469,1943-01-13,AB- -Felicia Lewis,Female,2470,1930-01-12,AB- -Mark Griffin,Female,2471,1989-03-28,A+ -Lynn Smith,Female,2472,1974-10-10,A+ -Destiny Diaz,Female,2473,1986-11-26,O- -Frank Coleman,Male,2474,1961-08-22,B+ -Reginald Mcpherson,Female,2475,1961-08-29,AB+ -Andrew Flores,Male,2476,1968-06-21,B- -Matthew Watkins,Female,2477,1960-03-06,O- -Steve Campbell,Female,2478,1952-07-18,AB+ -Karen Bishop,Male,2479,1999-11-14,A- -Penny Parker,Female,2480,1989-10-07,A+ -Megan Morrison,Male,2481,1974-04-13,AB- -Dr. Matthew Lindsey,Female,2482,1966-01-30,O+ -Lauren Young,Male,2483,1947-12-28,B+ -Janice Figueroa,Male,2484,2000-01-14,A- -Dana Graves,Male,2485,1997-05-05,AB- -Joshua Mckay,Female,2486,1931-02-11,B- -Susan Coleman,Female,2487,1955-03-17,B- -Jeremy Randall,Female,2488,1942-02-18,AB- -Brian Boyd,Male,2489,2002-04-27,A- -Joyce Johnson,Female,2490,1989-03-19,AB- -Tammy West,Female,2491,1947-11-30,AB+ -Sheryl Wright,Female,2492,1993-11-06,O- -Patrick Roberts,Female,2493,1954-05-21,A+ -Tanya Zimmerman,Male,2494,1941-05-09,AB+ -Brittany Matthews,Male,2495,1962-12-25,O+ -Nina Washington,Male,2496,1964-07-12,AB- -Kristen Gonzales,Female,2497,1965-10-20,O+ -Felicia Benjamin,Male,2498,1975-03-30,O+ -Douglas Miller,Male,2499,1943-05-15,AB+ -Elizabeth Salinas DVM,Male,2500,1968-08-22,A+ -Joshua Davis,Male,2501,1967-05-12,A- -Emma Townsend,Female,2502,1946-06-18,B- -Sara Barton,Male,2503,1977-06-30,O- -Lisa Jones,Male,2504,1949-07-31,B+ -Dana Johnson,Female,2505,1998-04-22,B- -Kevin Bryan,Male,2506,1939-11-20,A+ -Sarah Mason,Male,2507,1957-01-23,B+ -Laura Garcia,Female,2508,1948-11-16,B- -Miss Denise Webster DVM,Male,2509,1966-11-15,AB- -Laurie Craig,Male,2510,1994-11-16,AB- -Cynthia West,Male,2511,1975-02-23,AB+ -Natasha Phelps,Female,2512,1990-01-09,O+ -Ronald Wright,Female,2513,1957-01-12,B+ -Kathleen Richard,Male,2514,1963-08-25,A+ -Jamie Newton,Male,2515,1963-06-05,A+ -William Murphy,Female,2516,1959-08-25,B- -Miguel Lewis,Male,2517,1993-06-10,AB+ -Adam Hall,Female,2518,1935-11-08,B- -William Arellano,Female,2519,1987-01-11,B- -Andrea Gould,Male,2520,1984-07-10,A+ -Suzanne Delgado,Female,2521,1933-07-10,B- -Lisa Lucas,Female,2522,1973-01-05,O+ -Angela Riley,Male,2523,1961-02-18,B- -Lisa Baker,Male,2524,1973-08-28,B+ -Justin Davidson,Female,2525,1949-04-23,O+ -Mary Wilson,Female,2526,1940-01-03,A+ -Luke Vargas,Male,2527,1994-04-21,AB+ -Amanda Taylor,Male,2528,1981-04-26,AB- -Allison Rodriguez,Male,2529,1972-09-17,B+ -Nicole Choi,Female,2530,1997-01-18,O+ -Elizabeth Patrick,Male,2531,1953-08-24,AB+ -Phyllis Waters,Male,2532,1947-08-21,AB+ -Brandon Bell,Male,2533,1988-09-04,O+ -William Sherman,Female,2534,1997-05-20,A+ -Sarah Roth,Male,2535,1989-02-07,O- -Taylor Smith,Male,2536,1956-06-20,AB+ -Adriana Ochoa,Male,2537,1963-04-07,AB+ -Marisa Gray,Male,2539,1934-12-04,A+ -Andrea Poole,Male,2540,2002-05-04,A+ -Colin Lyons,Male,2541,1956-04-14,B- -Gary Brooks,Female,2542,1989-05-06,A+ -John Cooper,Female,2543,1945-01-17,AB+ -Heather Farmer,Female,2544,1957-02-08,O+ -Barbara Brown,Female,2545,1967-06-09,O- -Christopher Ortiz Jr.,Female,2546,1960-06-22,A- -Robert Jackson,Female,2547,1992-01-24,B- -Troy Morgan,Male,2548,1971-09-05,A- -Gary Bennett,Male,2549,1994-10-21,O+ -Kimberly Lee,Female,2550,1933-07-24,O- -Michael Rodriguez,Female,2551,1993-08-31,O- -Diane Williams,Male,2552,1955-11-01,O- -Kelli Salinas,Male,2553,1983-05-04,AB- -Evelyn Hines,Male,2554,1942-08-22,O+ -Judy Lucas,Female,2555,1974-11-19,B+ -Nancy Collins,Female,2556,1959-01-26,B- -Anthony Dawson,Male,2557,1945-10-01,B- -Kimberly Bryant,Male,2558,1956-12-22,O- -Michael Mueller,Male,2559,1947-03-28,O+ -Tammy Stephens,Male,2560,1988-01-16,AB- -Christopher Collins,Male,2561,1977-10-17,O- -Monique Foster,Male,2562,1938-10-31,A+ -Jennifer Everett,Female,2563,1933-08-09,B+ -Jessica Carter,Female,2564,1990-06-18,A- -Hannah Myers,Female,2565,1963-10-12,B- -Courtney Turner,Female,2566,1948-08-21,A- -Sophia Jones,Female,2567,1993-02-17,AB+ -John Stone,Female,2568,1940-02-01,O- -Leah Richardson,Male,2569,1949-10-15,A+ -Jennifer Cooper,Female,2570,1938-12-18,B- -Mr. Jeffrey Ellis,Male,2571,1994-01-09,A- -Noah Gillespie,Female,2572,1930-05-26,B+ -Michael Gregory,Male,2573,1943-09-20,AB- -Robert Riggs,Male,2574,1973-11-26,O+ -Edwin Harris,Male,2575,1938-04-29,B- -Jennifer Johnson,Male,2576,1956-06-07,B+ -Catherine Foster,Female,2577,2001-08-16,A- -Michelle Wiley,Male,2578,1976-03-06,O+ -Victoria Cobb,Male,2579,1983-07-25,A- -Rebecca Diaz,Male,2580,1978-04-12,O+ -Theresa Lambert,Female,2581,1976-08-01,AB- -Jake Martin,Male,2582,1971-01-22,AB- -James Perez,Female,2583,1974-09-23,O- -Edward Mcpherson,Female,2584,1954-03-29,O- -Sally Williams,Male,2585,1962-01-08,B- -Nathan Bailey DDS,Female,2586,1937-10-23,AB- -Rhonda Hernandez,Female,2587,1973-11-05,A+ -Joseph Pratt,Male,2588,1932-09-14,A- -Michelle Smith,Male,2589,1950-11-14,A- -Jade Sanchez,Male,2590,1994-12-02,A- -Kristin Newman,Male,2591,2001-07-09,B- -James Buck,Female,2592,1999-01-24,A- -Ryan Jacobs,Male,2593,1955-01-30,AB+ -Kyle Wolf,Female,2594,1977-11-14,O+ -Lisa Moore,Male,2595,1948-03-19,A- -Cynthia Howell,Female,2596,1998-06-29,B+ -Laura Lawson,Female,2597,1950-04-27,O+ -Jared Williams,Male,2598,1988-08-04,O- -Elizabeth Evans,Female,2599,1932-02-09,A- -Andrew Jarvis,Male,2601,1978-07-15,B+ -Vicki Jacobs,Female,2602,1968-08-23,A+ -Jacqueline Stevens,Female,2604,1941-12-07,B+ -Andrea Wood,Male,2605,2001-08-09,AB- -Megan Stephens,Female,2606,1993-06-03,AB- -Trevor Hurley,Male,2607,1992-12-07,O- -Brian Schwartz,Male,2608,1961-08-09,AB+ -Douglas Smith,Male,2609,1981-04-16,B- -Meredith Hall,Female,2610,1945-08-09,B- -Ryan Howard,Female,2611,1978-04-04,A+ -Susan Carrillo,Female,2612,1933-01-30,O- -Steven Jimenez,Male,2613,1959-07-21,O- -Miranda Frey,Female,2614,2000-07-18,AB+ -Jessica Walter,Male,2615,1948-07-09,A- -Toni Turner,Female,2616,1988-10-28,B- -Lauren Hines,Female,2617,1963-09-28,A- -Margaret Hayes,Male,2618,1965-09-05,O- -Miss Lisa Lopez,Female,2619,1968-06-22,A- -Mary Adams,Male,2620,1964-08-10,AB- -Pamela Santiago,Male,2621,1951-06-23,A+ -Margaret Jones MD,Male,2622,1968-11-27,B- -Mary Case,Male,2623,1975-01-21,AB+ -Ashley Howard,Female,2624,1989-11-03,A+ -William Norton,Female,2625,1957-09-02,O+ -John Parks,Male,2626,1944-03-17,AB- -Dawn Bradley,Female,2627,1936-10-08,AB+ -Mary Floyd,Male,2628,1976-10-17,B+ -Justin Robertson,Male,2629,1979-10-19,A+ -Leah Perez,Female,2630,1948-05-10,O- -Alan King,Male,2631,1940-03-02,O+ -Carla Cooper,Male,2632,1943-10-31,AB+ -Sarah Gibbs,Female,2633,1959-06-14,O- -Jonathan Stevens,Female,2635,1936-10-11,AB- -Carol Rodriguez,Male,2636,1939-11-20,B+ -Eric Mendez,Female,2637,1941-08-26,O+ -Sarah Price,Female,2638,1969-08-28,B- -Dylan Brown,Female,2639,1995-02-10,B+ -Vanessa Mcdowell,Male,2640,1934-10-02,O- -Andrew Wood,Female,2641,2001-08-17,A+ -Mary Rojas,Female,2642,1952-08-11,A- -Martha Ford,Male,2643,1951-11-06,AB+ -Ian Lewis,Female,2644,1936-08-25,O+ -Mark Wright,Female,2645,1963-10-20,O- -Melissa Lozano,Male,2646,1950-05-02,B- -Travis Kelly DVM,Male,2647,1953-05-13,A- -Jacob Hudson,Female,2648,1944-05-16,AB+ -Michael Hopkins,Female,2649,1989-05-06,AB+ -Angela Jordan,Female,2650,1982-07-28,O- -Hannah Walker,Female,2651,2000-08-29,B- -Brenda Reyes,Female,2652,1985-06-19,AB- -Stephen Lopez,Female,2653,1956-07-09,A- -Christina Mcconnell,Male,2654,1968-08-18,AB- -Bryan Smith,Female,2655,1986-05-22,O+ -Michael Hunt,Female,2656,1931-10-24,O- -Jeffrey Jones,Male,2657,1963-01-23,A- -Kevin Smith,Male,2658,1970-06-28,O+ -Rachel Evans,Female,2659,1957-07-18,B+ -Justin Swanson,Male,2660,1973-05-11,AB- -Tracy Gentry,Male,2661,1958-10-27,B+ -Daniel Miller,Female,2662,1939-03-29,B+ -Katie Perez,Female,2663,2000-01-26,A- -Meghan Lee,Male,2664,1930-07-27,AB+ -Charles Holt,Male,2665,1937-04-19,O+ -Richard Walker,Female,2666,1981-09-07,B+ -Jennifer Carroll,Male,2667,1993-07-06,B- -Lance Haynes,Male,2668,1931-09-25,A+ -Brandi Jones,Female,2669,1938-06-11,AB- -Brandi Henson,Female,2670,1967-07-17,AB- -Kelly Howell,Male,2671,1957-09-19,B- -Ian Jackson,Male,2672,1985-01-15,A- -Rachel May,Male,2673,1949-07-03,A- -Tina Combs,Male,2674,1959-06-12,A- -Michael Powell,Male,2675,1934-08-07,O+ -Matthew Hall,Male,2676,1973-07-15,O- -Edward Smith,Male,2677,1930-08-25,B+ -Lori Hill,Male,2678,1950-05-22,AB+ -Elizabeth Robinson,Male,2679,1942-03-02,A+ -Mary Scott,Female,2680,1993-05-24,O- -Paul Salazar,Female,2681,1972-05-03,O- -Phillip Rivera,Female,2682,2001-07-03,B- -Sabrina Williams,Female,2683,1991-07-23,O+ -Todd Phillips,Female,2684,1953-06-04,AB- -Jennifer Graham,Female,2685,1981-05-05,AB- -Sergio Wilson,Male,2686,1975-08-22,B- -Michelle Webb,Male,2687,1930-05-29,O+ -Rachel Mcmillan,Male,2688,1966-09-04,B- -Corey Mcguire,Female,2689,1985-11-29,AB- -Tracy Sanford,Male,2690,1992-10-15,O- -Timothy Rose,Male,2691,1994-05-10,AB+ -James Delacruz,Female,2692,2002-02-14,B+ -Steven Petersen,Male,2693,1943-05-28,A- -Laura Valdez,Male,2694,1989-04-25,O+ -Kimberly Boone,Female,2695,1977-08-18,B+ -Robin Bishop,Female,2696,1960-03-07,A+ -Haley Baker,Female,2697,1959-04-18,A+ -Antonio Mitchell,Male,2698,1956-08-07,O- -Elizabeth Mercado,Female,2699,1982-06-26,B- -Troy Parker,Female,2700,1985-01-21,B- -Nancy Smith DDS,Male,2701,1974-04-03,AB- -Taylor Moore,Male,2702,1987-05-22,O- -Robert Webb,Male,2703,1945-10-31,AB- -James Moses,Male,2704,1991-12-28,AB- -David Estes,Male,2705,2001-09-02,A+ -Glenn Weber,Male,2706,1981-06-14,AB- -Julie Velasquez,Male,2707,1975-10-16,B+ -Andrew Smith,Male,2708,1937-09-18,A- -Angela Carey,Female,2709,1971-05-02,AB- -Kristi King DVM,Male,2710,1981-09-10,A+ -Isabella Rose,Female,2711,1991-03-08,A- -Deborah Goodman,Male,2712,1944-07-05,B- -Thomas Decker,Female,2713,1957-02-25,O+ -Nicole Garcia,Male,2714,1995-08-06,AB+ -Travis Hamilton,Male,2715,1979-06-26,AB- -Austin Benjamin,Female,2716,1938-12-12,B+ -Cory Heath,Female,2717,1942-01-24,A- -Javier Gray,Male,2718,1998-01-01,O+ -Andrea Neal,Male,2719,1978-10-22,A+ -Stacy Farmer,Male,2720,1998-05-25,O+ -Tracy Davidson,Female,2721,1958-06-05,AB+ -Jenny Harris,Male,2722,1942-02-24,B+ -Patricia Brown,Male,2723,1944-11-18,O+ -Brandon Delgado,Male,2724,1997-12-14,B+ -Ashley Solis,Male,2725,1941-03-31,A- -Rebecca Anderson,Male,2726,1931-07-15,O+ -Dr. Stacy Gibson PhD,Male,2727,1963-10-04,B+ -William Austin,Male,2728,1998-11-29,O+ -Damon Brady,Male,2729,1990-01-18,O+ -Bethany Hicks,Female,2730,1935-01-01,O- -Daniel Obrien,Female,2731,1961-04-09,AB- -Angela Stephens,Male,2732,1963-08-01,A+ -Martha Singleton,Female,2733,1950-11-21,AB+ -Nancy Garcia,Female,2734,1952-10-17,A+ -Carly Johnson,Male,2735,1983-06-14,O- -Shannon Wood,Male,2736,1951-01-24,O- -Zachary Luna,Female,2737,1952-08-17,A- -Richard Fields,Female,2738,1964-09-25,O- -Katherine Smith,Female,2739,1967-07-22,AB- -Cole George,Female,2740,1996-04-30,O- -Nancy Velasquez,Male,2741,1948-05-27,O+ -Dana Moody,Female,2742,1994-01-11,A+ -Melinda Curtis,Female,2743,1986-06-05,B- -Tabitha Jenkins,Male,2744,1983-01-05,AB+ -Jacqueline Mejia,Male,2745,1950-03-10,O- -Susan Dunlap,Female,2746,1946-03-05,A+ -Lisa Beck,Female,2747,1991-07-21,A- -Billy Ross,Female,2748,1974-02-26,O- -Belinda Combs,Female,2749,1945-06-27,AB- -Connor Chen,Female,2750,2002-09-21,O- -Bradley Fisher,Male,2751,1954-08-07,O- -Sara Berry,Female,2752,1986-07-09,B+ -Lisa Thompson,Female,2753,1952-09-08,B+ -David Myers,Male,2754,1946-02-27,O- -Mary Daniels,Male,2755,2000-05-22,A- -Kimberly Matthews,Female,2756,1943-06-19,B+ -Robert Navarro,Female,2757,1953-01-29,O- -Danielle Schultz,Female,2758,1970-04-17,AB+ -Kevin Harris,Female,2760,1973-03-31,A+ -Steven Moody,Female,2761,1960-06-30,B+ -Robert Dillon,Male,2762,1936-12-05,B+ -Rhonda Sherman,Female,2763,1980-03-23,AB- -Cynthia Wagner,Female,2764,1994-02-23,O- -Tammy Marshall,Male,2765,1977-09-23,O- -Benjamin Anderson,Male,2766,1945-10-21,O- -Colleen Boyd,Male,2767,1972-05-16,O- -Stephanie Sellers,Female,2768,1981-10-13,B+ -Frank Conner,Male,2769,1973-02-15,O+ -Vanessa Little,Female,2770,1938-02-12,O+ -Daniel Rice,Male,2771,1949-07-17,B- -Jordan Smith,Male,2772,1977-06-30,O- -Maria Mccarthy,Female,2773,1976-04-29,B- -Edwin Bailey,Female,2774,1968-01-13,AB+ -Michael Miranda,Male,2775,1950-02-05,B- -Danielle Smith,Female,2776,1994-07-07,A+ -Lori Brown,Female,2777,1951-10-25,O+ -Ashley Clark,Female,2778,1963-12-29,O+ -Kenneth Little,Female,2779,1962-07-03,O- -Barbara Ibarra,Female,2780,1962-08-17,B+ -Rebecca Collins,Male,2781,1953-11-30,O- -Tammy King,Female,2782,1932-04-25,AB+ -Brian Acosta,Female,2783,1990-09-04,AB- -Alexandra Davidson,Female,2784,1983-03-04,AB+ -Robert Williams,Female,2785,1991-02-21,A+ -Nathan Cain,Female,2786,1936-10-30,O- -Brittany Snyder,Female,2787,1964-09-16,O- -Alyssa Levine,Male,2788,1982-04-21,AB+ -Zachary Turner,Female,2789,1980-01-07,AB+ -Robert Ali,Female,2790,1963-10-05,AB+ -Dana Zavala DDS,Male,2791,1986-10-07,O+ -Jeremiah Lawrence,Female,2792,1944-03-07,B- -Veronica Morris,Male,2793,1948-02-06,B- -Luis Aguilar,Male,2794,1947-08-10,O- -Kimberly Obrien,Male,2795,1949-08-03,O+ -Tamara Gomez,Female,2796,1967-11-11,AB+ -Jessica Martinez,Female,2797,1957-10-11,O- -Lisa Ferguson,Female,2798,1947-10-07,O+ -Elizabeth Bryant,Female,2799,1987-10-30,A+ -Todd Hernandez,Female,2800,1992-09-21,AB- -Eric Owens,Male,2801,1940-07-17,O+ -Jeffrey Downs,Female,2802,1976-09-29,A- -Frank Bird,Male,2803,1967-02-20,O- -Sheri Gray,Female,2804,2002-08-17,B+ -Jennifer Gilmore,Male,2805,1989-01-10,B- -Daniel Wilkins,Female,2806,1998-07-15,A- -Jennifer Jackson,Female,2807,1943-11-27,AB+ -Thomas Kelly,Male,2808,1963-04-26,AB- -Jason Ortiz,Male,2809,1944-12-01,B+ -Amy Taylor DDS,Female,2810,1978-02-01,A+ -Paula Anderson,Female,2811,1954-11-05,B+ -Andrea Taylor,Male,2812,1947-07-17,AB- -Caleb Flores,Female,2813,1998-05-19,B+ -Richard Kelly,Female,2815,1993-10-08,AB- -Eric Williams,Female,2817,1954-02-04,O+ -Shannon Martinez,Female,2818,1968-07-23,O- -Sandra Jones,Male,2819,1934-06-27,B+ -Mrs. Tracie Solis,Female,2821,1990-05-21,B+ -Ashley Elliott,Female,2822,1993-10-29,O- -Stephen Preston,Female,2823,1958-04-24,AB- -Jodi Pope,Female,2824,1933-10-14,AB+ -Carlos Bush,Female,2825,1933-11-04,O- -Anita Oconnor,Male,2826,1954-09-03,AB- -Tammy Elliott,Female,2827,1939-01-06,O- -Beverly Hansen,Female,2828,1954-09-03,AB+ -Nancy Harper,Female,2829,1931-02-24,A+ -John Hayes,Male,2830,1963-12-25,A- -Nicole Miller,Male,2831,1942-05-15,AB- -Lindsay Dominguez,Female,2832,1983-11-25,B- -Loretta Long,Male,2833,1996-05-15,B- -Charles Fields,Female,2834,1972-03-23,AB- -Kelly Hill,Male,2835,1956-07-23,O+ -Amy James,Male,2836,1996-05-28,A+ -Kenneth Brown,Female,2837,1945-08-03,O+ -Samantha Murphy,Male,2838,1932-02-07,A- -Kelli Harris,Male,2839,1980-06-15,B- -Alexander Howard PhD,Male,2840,1970-07-28,AB+ -Angela Mcgee,Female,2841,1934-03-30,AB- -Megan Gallegos,Female,2842,1957-04-05,A- -Brent Rodriguez,Male,2843,1946-10-24,B+ -Diana Sanchez,Male,2844,1959-09-03,B+ -Lawrence Collins,Female,2845,1940-03-05,O- -Jay Smith,Female,2846,1942-04-09,B- -Emily Bright,Female,2847,1996-06-25,A+ -Luke Baker DDS,Male,2848,1947-12-06,B- -Jerry Ochoa,Male,2849,1981-02-19,A+ -Lisa Raymond,Female,2850,1943-03-31,A+ -Angela Smith,Male,2851,1951-03-30,AB- -Dana Rhodes,Male,2852,1959-11-05,A+ -Jeremy Jones DDS,Male,2853,1993-06-16,O+ -John Lewis,Male,2854,1995-10-09,B+ -John Smith,Female,2855,1951-11-20,A- -Elizabeth Reilly,Male,2856,1991-04-22,AB+ -Lisa Mann,Female,2857,1945-03-05,B- -Sylvia Grimes,Male,2858,1999-10-02,AB+ -Elizabeth Martin,Female,2859,1992-04-05,A- -Brian Rodriguez,Female,2860,2002-10-15,O- -Richard Hammond,Male,2861,1997-12-12,A- -Michael Thomas,Female,2862,1970-08-07,B- -Rebecca Sexton,Female,2863,1995-01-24,B+ -Danielle Shannon,Female,2864,1973-12-13,AB+ -Jon Schultz,Male,2865,1936-07-13,AB+ -Lauren Morales,Female,2866,1969-03-05,AB- -Randall Baker,Female,2867,1986-07-18,AB- -Gerald Rodriguez,Female,2868,1931-11-03,A- -Laurie Lamb,Female,2869,1930-06-13,A- -Amanda Williams,Female,2870,1953-09-13,O- -Jeffery Johnson,Female,2871,1960-10-04,A+ -Daniel Decker,Male,2872,1987-06-07,B- -Molly Mitchell,Female,2873,1943-02-17,AB- -Robert Conley,Male,2874,1959-02-12,B- -Megan Rogers,Male,2875,1943-02-20,O- -Adam Cooper,Female,2876,1991-05-21,AB- -Crystal Lang,Female,2877,1981-04-22,AB- -Charles Fowler,Male,2878,1990-12-23,A+ -Jonathan Lynch,Female,2879,1996-08-27,B- -Jessica Sanchez,Male,2880,1959-06-07,B+ -Valerie Simpson,Female,2881,1945-12-15,B- -Ricky Mccarthy,Female,2883,1998-10-12,B- -Greg Kane,Female,2884,1942-12-03,A+ -Linda Curtis,Female,2885,1931-08-17,AB- -Jay Walker,Male,2886,1988-02-09,O- -Timothy Gillespie,Female,2887,1950-03-31,B- -Danielle Williams,Male,2888,1968-06-26,AB+ -Dalton Brooks,Female,2889,2001-04-13,B+ -Barbara Sanders,Male,2890,1984-06-03,B+ -Wayne Wallace,Female,2891,1991-09-26,A+ -Matthew Ramirez Jr.,Female,2892,1959-02-14,O+ -Victoria Moore,Female,2893,1982-03-05,O- -Jessica Archer,Female,2894,1986-05-11,AB+ -Benjamin Martin,Female,2895,1930-01-17,B- -Jennifer Obrien,Female,2896,1938-09-27,O+ -Thomas Griffith,Male,2897,1931-01-28,O- -Kathleen Roman,Female,2898,1998-06-13,A+ -Christina Carlson,Female,2899,1947-03-05,O+ -Leah Scott,Female,2900,1976-06-03,AB- -Nicole Edwards,Female,2901,1939-12-11,A- -Jennifer Thompson,Female,2902,1946-11-25,O+ -Kristie Hall,Male,2903,1955-07-01,A- -Louis Coleman,Female,2904,1994-07-05,B+ -Sharon Baker,Female,2905,1997-12-12,AB+ -Cassidy Cooper,Male,2906,1985-07-12,O- -Shawn Cline,Male,2907,1997-02-05,AB+ -Laura Mckinney,Female,2908,1981-02-05,AB+ -Javier Sanford,Female,2909,1999-06-12,B- -Daniel Stevens,Male,2910,1995-04-05,A+ -Ryan Smith,Female,2911,1954-05-21,O+ -Kimberly Allen,Male,2912,1976-12-24,O- -Richard Porter,Female,2913,1993-08-31,B+ -Brian Rodgers,Male,2914,1981-01-04,AB- -Julia Powell,Male,2915,1994-04-07,A+ -Yolanda Ramirez,Female,2916,1975-01-27,A+ -Diane Williams,Female,2917,1952-02-15,O- -Bryan Wilkinson,Male,2918,1949-06-09,A+ -Adam Thompson,Female,2919,1985-08-10,B- -Todd Murphy,Male,2920,1999-08-18,A+ -Thomas Perez DDS,Male,2921,1994-12-15,B+ -Jessica Chavez,Female,2922,1970-11-03,B+ -Angela Howard,Female,2923,1949-05-24,B- -Emily Harris,Male,2924,1991-12-01,O+ -Brian Jenkins,Male,2925,1955-04-03,O+ -Michael Daniels,Male,2926,1943-07-12,AB+ -David Payne,Female,2927,1983-10-25,B+ -Brandon Fitzpatrick,Male,2928,1939-06-19,B- -Mr. Richard Johnson,Male,2929,1951-04-29,AB- -Ashley Miller,Male,2930,1998-05-27,O+ -Denise Williams,Female,2931,1995-10-21,A+ -Douglas Hill,Male,2932,1937-06-04,O- -Patricia Chan,Male,2933,1960-11-19,O- -Scott Morrison,Male,2934,1979-06-05,A- -Maria Clark,Male,2935,1975-04-06,B+ -Jerome May,Female,2936,1992-06-08,B- -Richard Stone,Female,2937,1963-02-06,AB- -Patrick Wall,Female,2938,1957-10-08,AB+ -Dr. Terry Austin DDS,Male,2939,1975-11-10,A+ -Maria Smith,Female,2940,1972-09-04,B- -Nicole Rush,Female,2941,1957-01-05,A- -David Page,Female,2942,1942-05-29,O- -Matthew Nelson,Female,2943,1964-09-25,B- -Joshua Braun,Female,2944,1944-08-05,A+ -Michelle Hess,Female,2945,1945-02-01,AB- -Michael Drake,Female,2946,1998-10-29,B+ -Michele Mann,Male,2947,1954-07-18,AB- -Christina Moore,Male,2948,1947-10-12,O+ -Nicolas Shah,Male,2949,2002-11-12,A+ -Lori Garcia,Female,2950,1959-06-17,A- -David Zhang,Male,2951,1944-11-22,O+ -Brett Key,Male,2953,1969-08-17,O+ -Ashlee Larson,Female,2954,1956-09-26,O+ -James Carlson Jr.,Female,2956,1966-05-11,B- -Alejandro Perkins,Male,2957,1947-10-30,A- -Sherry Copeland,Female,2958,1961-06-10,O- -Robert Maldonado,Female,2959,1995-05-28,AB- -Miss Maria Bates DDS,Female,2960,1978-04-09,B+ -Marvin Underwood Jr.,Male,2961,1985-05-15,B- -Mary Ware,Male,2962,1998-04-09,O- -Seth Johnson,Male,2963,1936-07-04,AB- -Jessica Murray,Male,2964,1983-02-05,B+ -Kimberly Patel,Female,2965,1999-12-03,A- -Ricardo Roth,Male,2966,1962-05-17,B+ -John Valentine,Female,2967,1979-11-11,A- -Angel Grant,Female,2968,1949-02-09,A+ -Andrew Watson,Male,2969,2001-09-14,B+ -William Murray,Male,2970,1956-12-02,AB- -David Marquez,Female,2971,1964-03-27,AB- -Melanie Hendrix,Male,2972,1998-04-27,A- -Jordan Thomas,Male,2973,1986-08-04,AB- -Gregory Baker,Male,2974,1948-12-02,AB+ -Amy Soto,Male,2975,1998-04-19,A+ -Kevin Bryant,Male,2976,1968-07-29,B- -Sheila Martinez,Male,2977,1936-01-06,B+ -Mary Anderson,Female,2978,1985-02-12,B- -Jason Rivera,Female,2979,1999-01-26,O- -Stephanie Rodriguez,Male,2980,1946-05-15,B- -Sydney Moore,Female,2981,1990-03-18,O+ -Alexa Phelps,Male,2982,1976-12-18,AB- -Edwin Valenzuela,Male,2983,1932-02-20,B- -Victoria Mills,Male,2984,1957-02-16,O- -Carol Martin,Male,2985,1947-04-05,O- -Justin Gallagher,Female,2986,1970-03-18,O+ -Terri Lewis,Male,2988,1940-11-27,O- -Seth Woods,Female,2989,1956-01-08,A- -Jamie Coleman,Female,2990,1998-09-19,AB+ -Deborah Benson,Female,2991,1976-04-14,A- -Michael Martin,Male,2992,1965-10-14,AB- -Christopher Meyer,Male,2993,1999-11-06,AB- -Mathew Martin,Male,2994,1995-08-01,AB- -Maurice Garcia,Male,2995,1963-06-29,A+ -Stephen Ward,Male,2996,1990-09-11,B- -Brandy Walters,Male,2997,1942-07-20,AB+ -Lynn Dixon,Male,2998,1946-04-13,B- -Sherry Aguirre,Male,2999,1988-05-21,AB+ -Victor Fox,Female,3000,1992-01-07,B- -Mr. Randy Pierce,Male,3001,1974-11-03,O+ -Lori Robertson,Male,3002,1949-07-08,B+ -Brittany Reed,Female,3003,1962-07-21,A- -Travis Miller,Female,3004,1963-08-11,O- -Joshua Jackson,Female,3005,1936-09-27,O- -Nicholas Garrett,Male,3006,1969-02-16,A- -Bridget Velazquez,Male,3007,1968-06-06,O+ -Holly Pierce,Female,3008,1961-04-23,AB+ -Linda Robinson,Male,3009,1931-11-17,A- -Jennifer Houston,Female,3010,1980-10-09,A+ -Kelly Johnson,Female,3013,1994-02-09,AB+ -Toni Jackson,Female,3014,1963-07-25,O- -Seth Smith,Male,3015,2001-07-30,A+ -Michael Murray DDS,Female,3016,1989-06-25,B- -Alexander Woods,Male,3017,1973-10-12,A+ -Jeremy Hubbard,Female,3018,1974-12-18,AB+ -Pamela Ayers,Female,3019,1959-05-25,O+ -Caitlin Diaz,Female,3020,1943-05-08,B- -Paula Dean,Female,3021,1978-04-19,AB+ -Lori Parrish,Female,3022,1960-08-13,B- -Martin Jordan,Female,3023,1995-12-07,A+ -Brandy Brown,Female,3024,1936-01-06,O- -Jorge Wells,Female,3025,1949-08-14,AB+ -Mario Smith,Male,3026,1973-10-19,B+ -Zachary Marshall,Female,3027,1968-12-02,O+ -Todd Harris,Male,3028,1930-10-29,B+ -Michelle Nichols,Male,3029,1995-06-20,B+ -Sharon Jones,Male,3030,1992-04-30,A- -Cynthia Valencia,Female,3031,1976-08-17,A+ -John Davis,Male,3033,1969-11-23,AB+ -Mia Travis,Male,3034,1957-03-31,O+ -Mrs. Kimberly Hogan DDS,Male,3035,1998-12-03,AB+ -Rachel Schroeder,Male,3036,1999-02-05,A+ -Jackie Fuller,Male,3037,1986-09-18,AB+ -Mr. John Mcpherson,Male,3038,2001-01-12,B- -Tina Ibarra,Female,3039,1959-07-01,A+ -Caitlin Bartlett,Male,3040,1994-01-12,AB+ -Brandon Hudson,Female,3041,1974-03-11,A- -Keith Smith,Female,3042,1984-07-17,O- -Maureen Osborne,Male,3043,1965-10-01,AB+ -Jennifer Roberts,Male,3044,1964-03-23,B- -Wendy Sanchez,Male,3045,1987-05-04,O+ -Christopher Carpenter,Male,3046,1992-11-14,A- -Maria Anderson,Male,3047,1998-01-22,O+ -Isabella Fisher,Male,3048,1973-08-04,B+ -Andrea Lloyd,Female,3049,1962-07-02,A- -Crystal Ramos,Male,3050,2001-05-10,O+ -Nicole Mcfarland,Male,3051,1941-03-06,O- -Crystal Coleman,Female,3052,1967-07-24,B- -Susan Tate,Male,3053,1986-04-24,B+ -Mary Harper,Male,3054,1998-07-19,A+ -Heather Richmond,Male,3055,1958-10-18,O+ -Tamara Suarez,Male,3056,1940-04-12,A- -Edward Johnson,Female,3057,1934-09-21,B- -Jacqueline Cooper,Male,3058,1933-10-08,AB+ -Ms. Debra Ramirez,Male,3059,1953-11-02,O- -Tracey Moon,Female,3060,1954-05-09,B- -John Stark,Female,3061,1979-05-21,B- -Richard Erickson,Female,3062,1980-07-07,A+ -William Vance,Male,3063,1974-12-02,B- -William Butler,Male,3064,1981-08-05,A+ -Paul Spencer,Male,3065,1946-03-24,O- -Thomas Cabrera,Female,3066,1947-02-12,O- -Tyler Koch,Male,3067,1956-01-01,AB+ -John Manning,Male,3068,1994-10-31,A+ -Elizabeth Coleman,Male,3069,1939-01-14,A+ -Gloria Larson,Male,3070,1992-01-19,O+ -David Curry,Male,3071,1953-06-02,O+ -Shelby Gardner,Female,3072,1994-12-28,AB+ -Jessica Molina,Male,3073,1940-03-16,O- -Jeffrey Rodgers,Male,3074,1992-01-12,AB- -Rachel Gutierrez,Male,3075,1991-04-10,O+ -Kimberly Martin,Female,3076,2000-10-20,B- -Anthony Flores,Female,3077,1976-04-07,O- -Andrew Nunez,Female,3078,1976-02-01,AB- -Jessica Hubbard,Female,3079,1946-06-25,B+ -Sean Miller,Female,3080,1972-05-03,B- -Sarah Mcintosh,Male,3081,1989-06-27,A- -Jacqueline Meza,Male,3082,1957-07-05,A+ -Brandy Wilkins,Male,3083,1996-11-07,O- -Luke Lee,Female,3085,1962-03-08,A- -Bryan Newton,Female,3086,1936-11-25,AB+ -Michael Simmons,Female,3088,1938-06-09,A+ -Kaitlin Miller,Female,3089,1933-11-29,A+ -Dawn Mullins,Female,3090,1940-11-11,B- -Matthew Davidson,Female,3091,1947-08-25,A- -Christine Rocha,Male,3092,1969-11-18,A+ -Robert Clark,Female,3093,1968-06-12,O+ -Matthew Jones,Female,3094,1999-10-24,O- -Michele Moore,Male,3095,1961-01-07,O+ -Scott Day,Male,3096,1935-11-30,B- -Cody Thomas,Female,3097,1944-01-20,AB- -Cody Green DDS,Female,3098,1981-10-31,B+ -Kristen Smith,Male,3099,1983-01-06,B- -Timothy Perez,Male,3100,1970-11-20,O- -Carl Mccann,Female,3101,1958-09-04,A+ -Scott Cruz,Female,3102,1982-02-10,A- -Amanda Harrell,Male,3103,1998-02-22,A- -Jeffrey Wilkerson,Female,3104,1959-08-02,AB+ -Edward Vargas,Male,3105,1938-06-11,B- -Mr. Hayden Rubio,Male,3106,1977-09-12,O- -Jessica Estes DVM,Male,3107,1968-03-06,AB+ -Jenny Welch,Male,3108,1984-05-30,A+ -Lisa Lester,Female,3109,1950-10-27,AB- -Brandon Curtis,Female,3110,1995-07-07,B- -Dr. Robert Sherman MD,Female,3111,1972-02-09,AB- -Stephanie Bradshaw,Female,3112,1982-01-26,O- -Tracey Carroll,Male,3113,1940-11-27,AB- -Mr. Samuel Elliott,Male,3114,1934-11-14,AB- -Christopher Jones,Female,3115,1996-06-29,O- -Joshua Barrera,Male,3116,1943-12-29,O- -Mark Simpson,Male,3117,1989-01-24,B- -Lucas Buchanan,Male,3118,1963-02-04,AB- -Brianna Christensen,Female,3119,1995-01-22,AB+ -Julie Spencer DDS,Male,3120,1977-12-08,B+ -Nicole Hernandez,Male,3121,1976-10-07,O- -Rachel Myers,Male,3122,1935-12-20,A+ -Michael Barnett,Male,3123,1956-04-10,AB- -Margaret Dean,Female,3124,1944-05-18,O- -Samantha Knight,Female,3125,1955-04-15,AB+ -Sara Ford,Female,3126,1980-02-21,A- -Donna Davis,Male,3127,1970-09-19,B- -Nicole Shea,Male,3128,1932-10-10,AB- -Gary Robinson,Female,3129,1975-06-24,A- -Gina Davidson,Female,3130,1994-11-26,O- -Travis Clark,Female,3131,1935-01-03,O- -Julia Gonzalez,Female,3132,1951-08-28,A+ -Cassandra Short,Female,3133,1945-04-20,A+ -Troy Walker,Male,3134,1965-11-22,AB- -Sally Franklin,Male,3135,1935-07-17,A- -Jennifer Yu,Male,3136,1988-06-15,B+ -Samantha Bailey,Male,3137,1969-10-20,A- -Belinda Sanchez,Female,3138,2002-12-30,O- -Margaret Anderson,Female,3139,1946-02-17,B+ -Savannah Phillips,Female,3140,1932-12-16,AB- -Ashley Tran,Male,3141,1943-10-16,O- -Haley Cummings,Female,3142,1972-02-09,A+ -Jennifer Martinez DDS,Male,3143,1959-08-19,AB+ -Julia Johnson,Male,3144,1937-01-07,O+ -Linda Bean,Female,3145,1939-01-06,B+ -Jeffrey Bradford,Male,3146,1939-10-27,O+ -Ashley Novak,Female,3147,1974-01-17,O- -Lauren Myers,Female,3148,1974-01-30,A- -Jack Benton,Female,3149,1986-12-28,A+ -Gary Smith,Female,3150,1993-08-03,B- -Derrick Gonzalez,Male,3151,1948-03-10,B- -Erika Whitehead,Male,3152,1940-11-03,O+ -Jackson Williams,Female,3153,1960-02-18,AB+ -Michelle Powers,Female,3154,1959-07-03,O+ -Bailey Rich,Male,3155,1930-06-11,O- -Anthony Freeman,Female,3156,1973-11-20,AB+ -Joseph Collins,Male,3157,1976-06-25,B- -Lee Murray,Male,3158,1968-12-13,A- -Kimberly Romero,Female,3159,1960-07-16,A+ -Zachary Mccormick,Male,3160,1963-01-28,B+ -Thomas Peck,Female,3161,1939-04-14,A+ -Joseph Foster,Male,3162,1946-06-03,O- -Karen Jenkins,Female,3163,1992-04-03,O+ -Alexandria Nelson,Male,3164,1964-10-02,O- -Patrick Haley,Male,3165,1976-09-03,B+ -Mark Burke,Male,3166,1955-07-13,A+ -Bradley Day,Male,3167,1931-06-26,B+ -Melissa Clayton,Female,3168,1989-09-25,B- -Erika Phelps,Female,3169,1943-12-12,A+ -Samantha Sanchez,Male,3170,1966-10-07,AB+ -Eric Dixon,Male,3171,1960-07-28,A- -Isabel Lawson,Male,3172,1977-03-26,B+ -Stephen Jones,Female,3173,1973-12-24,A- -Taylor Young,Male,3174,1958-02-01,AB- -Karl Mason,Female,3175,1998-06-20,A+ -Jasmine Wilkerson,Female,3176,1973-12-05,A+ -Todd Rangel,Female,3177,1944-12-22,A- -Dr. Richard Thompson,Female,3179,1947-02-17,AB- -Robert Lopez,Male,3180,2000-08-03,AB+ -Holly Sanford,Male,3181,1959-05-09,O+ -Deborah Douglas,Male,3182,1933-03-15,B+ -Kellie Mcdonald,Male,3183,1932-04-10,B+ -Karen Faulkner,Male,3184,1934-07-10,A+ -Anne Mcdaniel,Male,3185,1977-12-20,A- -William Hansen,Female,3186,1982-07-21,O- -Johnny Harrison,Male,3187,1998-08-03,A+ -Elizabeth Anderson,Male,3188,1956-01-23,O- -Amanda Lee,Male,3189,1966-04-20,AB+ -Timothy Williamson,Female,3190,1974-04-24,A+ -Julie Hobbs,Male,3191,1932-10-16,B+ -Tracey Ford,Male,3192,1989-03-13,A- -Pamela Howard,Female,3193,1957-06-16,AB+ -Shawn Guerrero,Male,3194,1964-01-31,AB+ -James Dominguez,Male,3195,1964-03-08,O+ -Michelle Ray,Female,3196,1933-07-07,A+ -Sandra Smith,Female,3197,1976-08-30,O- -Joseph Weaver,Female,3198,1980-05-12,O- -Miss Danielle Boyd DVM,Male,3199,1998-05-18,A+ -Melissa Malone,Female,3200,1934-09-30,AB- -Tara Wong,Female,3201,1980-09-04,O+ -Amy Molina,Male,3202,1980-10-20,O+ -Brian Cooper,Male,3203,1997-06-28,O+ -Larry Armstrong,Female,3204,1974-06-09,O- -Ashley Marquez,Male,3205,1969-08-16,AB+ -William Mathews,Male,3206,1965-04-16,A- -Kristine Miller,Female,3207,1939-07-04,AB- -Laura Walker,Male,3208,1954-09-20,B+ -Tonya Wilkinson,Male,3209,1990-04-04,O+ -Andrew Webb,Female,3210,1998-08-27,O- -Kathleen Lee,Female,3211,1952-10-21,O- -Brooke Cox,Female,3212,1935-09-29,B+ -Joshua Davis,Female,3213,1968-07-22,AB+ -Amanda Cox,Male,3214,1988-09-25,B+ -Alan Fields,Male,3215,1968-02-21,A+ -Angela Baker,Male,3216,1957-08-04,A+ -Ruth Galloway,Male,3217,1947-07-08,A- -Regina Stevens,Female,3218,1937-07-20,B+ -Jessica Carrillo,Male,3219,1985-08-04,A- -Christine Hahn,Female,3220,1997-04-09,O+ -Laura Moss,Female,3221,1980-01-23,A- -Arthur Hicks,Female,3222,1982-01-02,O+ -Amanda Harris,Male,3223,1993-10-01,AB- -Jim Spencer,Male,3224,1978-10-29,A- -Dawn Johnson,Male,3225,1998-10-13,AB+ -Amber Stout,Female,3226,1943-09-27,O+ -Kayla Pineda,Female,3227,1974-10-27,AB+ -Christine Thornton,Male,3228,1951-11-26,O- -Darin Manning,Female,3229,1991-06-06,O+ -Mary Thomas,Male,3230,1957-11-30,O- -Kelsey Williamson,Male,3231,1935-09-28,B- -Nicole Wells,Female,3232,1972-04-03,AB+ -Stephanie Kim,Male,3233,1999-03-19,B- -Sandra Maynard,Female,3234,1992-05-23,O+ -Jason Davis,Female,3235,1959-01-04,O- -Heather Nguyen,Male,3236,1973-08-24,O+ -Kimberly King,Male,3237,2001-09-26,B- -Christine Jordan,Female,3238,1983-12-24,B+ -Phillip Jones,Male,3239,1971-04-14,B+ -Jacob Smith,Male,3240,1995-04-16,O+ -Kayla Lambert,Female,3241,1943-12-24,AB- -Debra Hunter,Male,3242,1983-01-05,A+ -Jason Perry,Female,3243,1937-10-10,B- -Duane Hayes,Female,3244,1939-04-08,O+ -Emily Swanson,Male,3245,1959-09-17,O- -David Rodriguez,Male,3246,1957-07-11,O+ -Allison Gallegos,Female,3247,1966-12-11,B+ -James Perez,Male,3248,1976-09-25,O- -Richard Mack,Female,3249,1968-09-17,A+ -Heather Middleton,Male,3250,1950-08-15,O+ -Jason Robinson,Female,3251,1941-09-23,A- -Heather Strong,Female,3252,1951-03-08,B+ -Ashley Bradley,Male,3253,1951-02-10,A- -Erika Johnson,Male,3254,1934-06-08,A+ -Austin Davies,Female,3255,1968-04-06,B- -Roy Beck,Female,3256,1965-02-21,O- -Jennifer Lawrence,Female,3257,1993-08-30,A- -Mariah Smith,Male,3258,1971-10-14,AB- -Jonathan Vargas,Female,3259,1933-12-02,B- -Michael Stephens,Male,3260,1954-10-29,O- -Amanda Bryan,Male,3261,1942-11-27,B+ -Steve Lindsey,Male,3262,1956-03-02,B+ -Shannon Long,Male,3263,1955-11-01,B+ -Gina Johnston MD,Male,3264,1943-09-08,A+ -April Wilkerson,Male,3265,1930-06-12,A- -Jason Miller,Male,3266,1935-05-29,B+ -Cody Ibarra,Female,3267,1983-11-14,AB+ -Rebekah Martin,Female,3268,1953-03-02,B+ -Leslie Williams,Female,3269,1976-08-02,O+ -Amanda Reynolds,Female,3270,1977-05-03,A+ -Annette Joseph,Male,3271,1935-07-08,O- -Benjamin Harrison,Male,3272,1956-12-03,O- -David Carter,Male,3273,1951-08-15,O- -Stephen Browning,Female,3274,1930-07-24,O- -Antonio Drake,Female,3275,1976-06-13,O+ -Thomas Clark,Male,3276,1990-05-25,B- -Cathy Terrell,Male,3277,1954-09-24,AB- -Jason Simmons,Male,3278,1944-08-22,AB+ -Michael Harper,Male,3279,2001-12-29,O+ -Zachary Hicks,Male,3280,1937-03-28,O- -Nicholas Brown,Female,3281,1951-12-14,O+ -Tommy Barry,Male,3282,1981-02-23,A+ -Dr. Sonia Martinez,Male,3283,1977-04-02,AB- -Matthew Davis,Male,3284,1945-03-23,O- -Kevin Daniel,Female,3285,1973-07-06,AB+ -Katherine Harper,Male,3286,1969-10-14,O- -Tony Mckinney,Female,3287,1976-09-29,AB- -Tyler Jackson,Female,3288,1940-12-14,AB+ -Rhonda Baxter,Male,3289,2001-03-07,AB- -Michael Solis,Male,3290,1969-02-14,AB+ -Patrick Schultz,Female,3291,1976-09-11,B- -Kimberly Russell,Female,3292,1951-09-15,A- -Elizabeth Fernandez,Female,3293,1972-08-10,B- -Erin Jackson,Female,3294,1933-03-17,O+ -Stacy Douglas,Male,3295,1990-03-02,O+ -Zachary Merritt,Female,3296,1962-08-19,B+ -Christopher Gentry,Male,3297,1955-01-05,AB+ -Jordan Howe,Male,3298,1947-05-14,B+ -William Simmons,Female,3299,1978-10-29,B+ -Terry Jones,Female,3300,1962-08-30,O- -Kaitlyn Holmes,Female,3301,1936-12-14,A- -Rickey Payne,Female,3302,1940-11-03,A+ -Douglas White,Female,3303,1966-02-04,A+ -Angela Bowers,Male,3304,1992-01-25,O- -Grant Munoz,Female,3305,1944-11-15,O- -Lucas Miller,Male,3306,1986-07-10,B- -Jacob Miller,Female,3307,1981-04-28,A+ -Casey Navarro,Male,3308,1991-09-26,AB+ -Joshua King,Male,3309,1984-11-27,AB- -Jesse Gay,Female,3310,1934-10-20,B+ -Pamela Nguyen,Male,3311,1997-01-13,O+ -Susan Horne,Female,3312,1980-03-01,B+ -Matthew Pennington,Female,3313,1998-04-20,B+ -Katie Shannon,Male,3314,1991-03-22,AB- -Matthew Campbell,Female,3316,1957-09-19,B- -Henry Benson,Male,3317,1974-11-02,A+ -Jennifer Ellis,Male,3318,1948-01-15,B+ -Ryan Salazar,Female,3319,1998-06-13,A- -Timothy Green,Female,3320,1947-04-06,O- -Sharon Cain,Male,3321,1950-02-10,A- -Brianna Garcia MD,Male,3322,1996-06-02,A- -Aaron Frank,Female,3323,1999-09-26,A+ -Craig Davidson,Female,3324,1993-01-07,AB+ -Angela Ortiz,Female,3325,1972-01-13,B- -Jason Mendez,Female,3326,1931-08-21,B+ -Ronald Smith,Male,3327,1983-03-30,B+ -Carly Henderson,Male,3328,1936-05-25,B+ -Shawn Watson,Female,3329,1957-01-18,O- -Jason Rodriguez,Male,3330,1931-07-27,AB- -Emily Phillips,Male,3331,1950-08-05,AB+ -Kim Franklin,Male,3332,1946-11-24,AB- -Jordan Munoz,Male,3333,1994-04-16,O+ -Jose Hawkins,Female,3334,1980-07-31,B- -Dr. Donald Ferguson,Male,3335,1968-04-23,AB+ -Joel Kelly,Male,3336,1992-11-01,AB+ -Mark Reid,Male,3337,1962-06-23,B+ -Charles Harris,Male,3338,1964-02-16,AB- -Cole Woodward,Male,3339,1987-07-09,O- -Bradley Leonard,Male,3340,1934-06-22,O+ -Cheryl Burke,Male,3341,1979-01-05,B+ -Jamie Castro,Male,3342,1964-03-08,B+ -Mr. Jared Bell,Female,3343,1959-09-15,B+ -Randall Callahan,Male,3344,1939-12-28,AB- -Catherine Potter,Female,3345,1971-07-22,AB+ -Brian Torres,Female,3346,1965-12-23,B- -Brett Jordan,Female,3347,1979-01-25,AB+ -Samantha Munoz,Female,3348,1969-04-23,A+ -Karen Newman,Male,3349,1966-08-08,B- -Jason Eaton,Female,3350,1938-08-04,B+ -Lisa Miller,Female,3351,1993-12-25,B- -Patricia Clark,Female,3352,1930-04-08,AB+ -Jeremy Gutierrez,Male,3353,1961-03-26,O- -Ross Lee,Female,3354,1964-10-31,B+ -Elizabeth Figueroa,Male,3355,1965-05-21,B- -Robert Phillips,Female,3356,1940-04-08,A+ -Todd Rodgers,Male,3357,1953-05-15,AB- -Jessica Miller,Female,3358,1997-03-28,O- -Robert Long,Female,3359,1997-01-16,O- -Jennifer Fischer,Female,3360,1989-09-05,O- -Crystal Simpson,Male,3361,1942-10-11,B- -Scott Burch,Male,3362,1973-10-31,O- -Daniel Collins,Female,3363,1976-07-12,AB+ -John Huffman,Female,3364,1934-09-24,O- -Raven Lucas,Male,3365,1935-01-29,A+ -Melissa Perkins DVM,Female,3366,1959-07-28,B+ -Anthony Jones,Male,3368,1943-11-04,B+ -Stephanie Knox,Female,3369,1958-02-14,O+ -Sharon Rose,Male,3370,1981-03-22,A+ -Wayne Tran,Male,3371,1965-02-05,B- -Cheryl Frazier,Female,3372,1955-08-27,O- -Heather Taylor,Male,3373,1955-06-02,O- -Michael Burton,Female,3374,1966-01-23,AB+ -Alexis Bailey,Female,3375,1945-10-23,AB- -Victoria Lawrence,Male,3376,1947-11-07,O- -James Villanueva,Female,3377,1960-01-27,A- -Brittany Randall,Female,3378,1979-08-25,A+ -Timothy Hill,Male,3379,1970-11-26,B- -Pamela Rice,Male,3380,1932-02-21,B+ -Rachel Alvarez,Male,3381,1974-07-31,O+ -Daniel Moore,Female,3382,1995-07-11,O- -John Brown,Male,3383,1948-09-06,O+ -Emily Young,Female,3384,1980-08-15,O- -Donald Ramsey,Female,3385,1985-06-12,B- -John Harper,Female,3386,1949-09-11,AB- -Jacqueline Harvey,Female,3387,1988-06-25,A+ -Michael King,Male,3388,1935-10-15,B+ -Richard Mason,Female,3389,1974-07-29,B- -Christian Robertson,Male,3390,1990-12-15,O+ -Mr. William Bentley Jr.,Male,3391,1967-02-21,O- -Susan Watkins,Male,3392,1985-09-23,O+ -Carol Allen,Female,3393,1957-11-18,A+ -Ann Morgan,Male,3394,2000-03-17,A- -Aaron Patel,Female,3395,1994-09-30,B+ -Elizabeth Johnson,Female,3396,1979-03-06,B- -James Kerr,Female,3397,1955-03-14,O+ -Jennifer Stewart,Male,3398,1981-01-31,O+ -Roger Curry,Female,3399,1988-03-10,A+ -Jennifer Sutton,Male,3400,1973-03-31,A- -Alex Patel,Female,3401,2002-04-03,O- -Derek Sims,Female,3402,1993-04-28,A- -Lisa Davis,Male,3403,1981-07-02,O+ -Javier Green,Male,3404,1966-12-07,A+ -Derek Elliott,Female,3405,1945-03-09,O- -Joyce Ramirez,Female,3406,1948-10-05,A- -Tara Morris,Male,3407,1936-12-26,B+ -Joseph Woods,Female,3408,1947-07-22,A- -David Taylor,Male,3409,1974-11-17,B+ -Pamela Garcia,Male,3410,1996-12-31,A- -Dawn Hawkins,Male,3411,1981-11-08,AB- -Cory Williams,Female,3412,1931-04-21,O- -Stacy Moody,Female,3413,1989-09-08,A- -Gabriel Rodriguez,Male,3414,1958-06-26,AB- -Danny Scott,Female,3415,1998-08-12,B- -Kenneth Garcia,Male,3416,1949-10-27,A+ -Diane Martinez,Male,3417,1948-05-16,A- -Kathryn Mitchell,Female,3418,1988-07-19,B+ -Rebekah Thomas,Male,3419,1987-08-08,O- -Marissa French,Male,3420,1952-02-13,B+ -Nicole Bradley,Female,3421,1991-06-17,AB- -Jo Reyes,Male,3422,1936-04-04,AB- -Thomas Gonzales,Male,3423,1944-04-20,B- -George Day,Female,3424,1967-01-08,B+ -Victoria Fleming,Female,3426,1970-10-07,AB+ -Felicia Casey MD,Male,3427,1949-02-01,A+ -Julian Savage,Female,3428,1984-07-05,B+ -Scott Barr,Male,3429,1961-07-28,AB+ -Lisa Wong,Female,3430,1970-04-22,O- -Melissa Weaver,Female,3431,1982-08-02,A+ -Carlos Floyd,Male,3432,1943-07-15,B+ -Vanessa Morgan,Male,3433,1947-11-18,B- -Russell Elliott,Female,3434,1960-06-08,O- -Terry Gonzalez,Male,3435,1930-09-16,A+ -Richard Kline,Female,3436,1930-10-10,B+ -Julia Stuart,Female,3437,1968-02-28,B+ -Amanda Garza,Male,3438,1935-03-14,A+ -Patrick Rodriguez,Female,3439,1941-04-28,AB+ -Marc Ellis,Male,3440,1948-02-25,O- -Diane Knight,Male,3441,1960-07-30,B- -Alison Kennedy,Female,3442,1983-08-15,B- -Jacqueline Cisneros,Female,3443,1988-11-06,O- -Heather Garcia,Male,3444,1994-06-25,O- -Evan Graham,Male,3445,1931-09-05,AB- -Tiffany Hines,Female,3446,1968-11-20,O+ -Miranda White,Female,3447,1976-09-27,B+ -Thomas Klein,Male,3448,1984-12-17,AB+ -Lisa Owens,Female,3449,1998-12-18,O- -Dana Hall,Male,3450,1936-04-26,O- -Amanda Levy,Male,3451,1949-07-13,O+ -Heather Lewis,Female,3452,1960-09-05,O+ -Harold Molina,Female,3453,1992-09-05,A+ -Diamond Andrews,Male,3454,2002-03-01,A- -Scott Hunt,Female,3455,1946-03-04,B- -Ricardo Reyes,Male,3456,1937-02-04,AB+ -Debra Hamilton,Male,3457,1971-06-24,A+ -Catherine Cohen,Male,3458,1963-04-08,O- -Daniel Jennings,Male,3459,1949-09-01,B+ -Oscar Allen,Male,3460,1989-03-24,O+ -Ronald Estes,Female,3461,1998-11-10,AB- -Carol Steele,Female,3462,1957-08-29,B- -Wesley Rogers,Male,3463,1988-11-04,A+ -Mrs. Donna Bishop,Male,3464,1984-09-22,AB- -Curtis Tran,Male,3465,1976-09-09,B- -Charles Winters,Female,3466,1986-10-22,A- -Willie Brewer,Male,3467,1994-12-04,A- -Laura Rodriguez,Female,3468,1933-07-07,AB- -Kaitlin Khan,Female,3469,1932-07-12,O+ -Morgan Flores,Female,3470,1933-01-30,A+ -David Johnson,Male,3471,1934-03-10,A+ -Brian Lee,Male,3472,2001-08-26,A- -Jessica Haynes,Male,3473,1953-02-07,B- -Sandra Leonard,Female,3474,1985-01-07,AB- -Vincent Mason,Female,3475,1974-03-25,O+ -Joshua Banks,Female,3476,1951-12-01,O- -Jessica Wolf,Male,3477,1956-09-13,A+ -Joseph Thompson,Male,3478,1992-01-14,B+ -Laurie Gonzalez,Female,3479,1959-01-01,O- -Janice Mccall,Male,3480,1940-07-31,O+ -Betty Sandoval,Female,3481,2002-08-06,A- -Michael Booth,Female,3482,1996-04-21,B+ -Eric Rojas,Female,3483,1993-06-11,A+ -David Oconnell,Female,3484,1930-08-15,A+ -Kristy Palmer,Male,3485,1971-03-03,AB- -Katie Hernandez,Female,3486,1962-02-21,B+ -Kevin Contreras,Male,3487,1975-08-01,O- -Amanda Daniels,Female,3488,1956-04-01,A- -Gerald Johnson,Female,3489,1962-03-03,AB- -Travis Golden,Male,3491,1931-10-08,AB+ -Scott Williams,Female,3492,1974-08-17,O- -Steven Owen DDS,Male,3493,1995-07-07,O- -Margaret Steele,Male,3494,1990-02-08,AB+ -Albert Gordon,Female,3495,1983-01-17,O+ -Dylan Parks,Female,3496,1967-06-11,B+ -Craig Howard,Male,3497,2002-06-27,B+ -Paul Jones,Female,3498,1981-09-18,O+ -Brenda Norton,Female,3499,1960-01-08,A+ -Paul Thompson,Male,3500,1974-01-17,B- -Theresa Douglas,Female,3501,1967-01-24,AB- -Paige Hunt,Male,3502,1966-05-01,B- -David Garcia MD,Female,3503,1955-08-04,A+ -John Gonzalez,Male,3504,1931-08-11,B+ -Patricia Hill,Female,3505,1964-12-11,B- -Randy Mitchell,Male,3506,2002-04-10,O- -Hunter Munoz,Female,3507,1955-02-16,O- -Linda Turner,Female,3508,1941-03-03,AB+ -Brianna Flores,Female,3510,1939-03-03,AB+ -Faith Miranda,Male,3511,1992-02-08,A+ -Kayla Snyder,Male,3512,1985-05-07,A+ -Heidi Brown,Female,3513,2000-09-07,A- -Jose Mullen,Male,3514,1997-10-21,A+ -Benjamin Gomez,Male,3515,1999-12-21,O- -Helen Meyer,Male,3516,2001-12-08,B- -Rachel Mcguire DDS,Male,3517,1979-07-22,AB- -Nancy Oconnor,Female,3518,1959-07-13,A- -Jessica Christensen,Male,3519,1963-10-03,A- -Mario Stone,Female,3520,1947-08-30,B+ -Lucas Hernandez,Female,3521,1966-03-23,A- -Mary Smith,Female,3522,1944-11-16,A+ -Brian Alvarado,Female,3523,1933-01-03,A+ -Kathy Harvey,Female,3524,1949-06-06,O- -Shannon Hunter,Male,3525,1981-03-24,AB- -Richard Jones,Female,3526,1961-04-27,O- -Christina Mills,Female,3527,1954-11-18,AB- -Gary Lee,Female,3528,1973-11-12,O- -Jay Yates,Male,3529,1947-07-27,B- -Andres Adams,Male,3530,1949-02-10,B+ -Lori Lee,Female,3531,1993-05-17,A+ -Alexandra Davis,Male,3532,1979-06-11,O+ -William Doyle,Male,3533,1960-05-24,O+ -Casey Foster,Male,3534,1951-10-08,B+ -Kevin Martinez,Female,3535,1954-12-23,A+ -Lisa Castro,Female,3536,1964-06-07,A- -Matthew Spencer,Female,3537,1999-04-08,A+ -Derek Brown,Female,3538,1991-06-03,A+ -Adam Taylor,Male,3539,1932-12-25,B+ -Jacqueline Wilson,Female,3540,1942-07-15,A+ -Alexis Ortega,Male,3541,1954-12-28,A- -Kristin Hill DVM,Female,3542,1958-09-18,AB- -Ashley Wallace,Male,3543,1930-06-05,B+ -Daniel Wilson,Male,3544,2000-03-20,B- -Ronald Bell,Female,3545,1935-05-13,O+ -Beth Frazier,Female,3546,1959-04-12,B+ -Lynn Sawyer,Female,3547,1947-05-16,AB+ -Adriana Murphy,Male,3548,1945-10-28,O+ -Christine Waller,Male,3549,1991-09-06,O+ -Debra Stokes,Female,3550,1988-09-20,A- -Jason Ruiz,Female,3551,1940-06-27,O- -Patrick Swanson,Female,3552,1954-10-08,A+ -Monica Harris,Female,3553,1999-01-14,A+ -Kim Bowen,Male,3554,1956-10-25,A+ -Paul Beck,Male,3555,1993-02-02,O- -Rebecca Allen,Female,3556,1931-03-18,A- -Robert Walsh,Male,3557,1991-05-25,B+ -Vincent Arroyo,Male,3558,1991-01-30,B- -Jesse Davis,Female,3559,1969-08-22,B- -Jacob Murphy,Male,3560,1995-01-02,A- -Pamela Martinez,Female,3561,1942-09-03,AB+ -Kelly Floyd,Male,3562,1947-06-11,B- -Ricky Marsh,Female,3563,1956-02-02,A- -James Pearson,Female,3564,1977-06-15,B+ -Richard Garrett,Female,3565,1961-08-31,B- -Melanie Best,Male,3566,1952-05-24,A+ -Carol Villanueva,Male,3567,1973-11-04,AB- -Lisa Morrow,Female,3568,1991-08-08,A- -Amber Atkinson,Male,3569,1976-02-12,O+ -Alexandra Bailey,Male,3570,1995-07-31,B- -Derek Lopez,Male,3571,1987-07-31,B- -Heather Carey,Male,3572,1931-01-28,O- -Jose Wilson,Male,3573,1963-03-19,AB+ -Jay Stephenson,Female,3574,1979-10-02,AB- -John Williams,Male,3575,1995-01-18,B+ -Colleen Johnson,Male,3576,1958-08-11,O- -Marc Nguyen,Male,3577,1977-12-22,A+ -Joseph Coleman,Male,3578,1987-11-03,O+ -Joanna Taylor,Male,3579,1950-04-24,AB+ -Cheryl Jones,Female,3580,1992-04-11,O- -Elizabeth Jones,Female,3582,1936-09-20,A- -Jordan Rose,Male,3583,2001-04-20,B- -Brian Mosley,Male,3584,1984-12-01,B- -Robert Black,Male,3585,1978-08-18,AB+ -Danielle Rodriguez,Male,3586,1971-09-06,B- -Jenna Jacobson,Female,3587,1948-05-07,A- -Scott Tyler,Male,3588,1937-02-10,O- -Shannon Warren,Female,3589,1930-05-22,O- -Rebecca Torres,Female,3590,1937-04-13,B- -James Harris,Female,3591,1987-06-11,B- -Sara Roberts,Male,3592,1954-09-23,A+ -Stephen Dalton,Male,3593,1971-03-04,O+ -Elizabeth Rivera,Male,3594,1968-04-01,B+ -Lindsay Higgins,Female,3595,1945-07-02,AB+ -Patrick Pennington,Female,3596,1946-10-26,O- -Adam Vega,Male,3597,1963-02-26,AB+ -Peter Hardy,Male,3598,1990-04-06,A+ -Emily Parker,Male,3599,1954-01-22,O- -April Johnson,Female,3600,1957-08-23,A+ -Daniel Good,Female,3601,1953-03-13,A+ -Jason Porter,Female,3602,1976-01-07,AB- -Stephanie Hensley,Female,3604,1994-01-08,B- -Austin Lucas,Male,3605,1941-08-20,A- -Kelli Martinez,Female,3606,1970-12-06,AB- -Melissa Jefferson,Female,3607,1934-10-17,B+ -Alicia Brown,Female,3608,1987-11-19,AB+ -Darryl Carter,Male,3609,1980-03-30,A- -John White,Male,3610,1941-03-12,AB+ -Lee Cuevas,Female,3611,1986-04-19,B- -Brandy Martin,Female,3612,1996-03-08,A- -Casey Evans,Male,3613,1971-11-04,AB- -Cynthia Brown,Male,3614,1982-12-04,AB+ -Mr. Charles Myers DVM,Female,3615,1956-05-25,AB- -Rhonda Martinez,Male,3616,1989-08-17,B- -James Lopez,Female,3617,1996-06-07,A- -Amber Cunningham,Female,3618,1943-11-24,A- -Tonya Perkins,Female,3619,1958-07-05,O- -Carolyn Moran,Female,3620,1972-12-12,A+ -Caroline Gordon,Male,3621,1949-10-18,A+ -Jeffrey Carr,Male,3622,1972-04-02,AB- -Nicholas Young,Female,3623,1960-02-15,A- -Elizabeth Mckee,Male,3624,1968-03-09,AB+ -James Bennett,Female,3625,1967-06-22,AB- -Clinton Martin,Male,3627,1979-01-19,AB- -Gregory Simpson,Male,3628,1965-10-18,O+ -Jeanette Hines,Male,3629,1983-01-17,B+ -Brian Richardson,Female,3630,1994-06-13,A- -Teresa Kennedy,Male,3631,1942-04-21,A+ -Mark Mitchell,Male,3632,2000-06-01,A- -Kimberly Franco,Male,3633,1977-05-31,B- -Charles Johnson,Male,3634,1933-12-31,AB- -Ronald Ashley,Female,3635,1968-09-18,O+ -Jessica Ross,Male,3636,1982-04-25,O+ -Tyler Black,Male,3637,1959-04-23,A+ -Lisa Ryan,Male,3638,1975-08-22,A+ -Melanie Alvarado,Male,3639,1975-08-01,A+ -Manuel Reid,Male,3640,1948-08-30,B- -Diane Holmes,Female,3641,1961-11-13,O+ -Dennis Bullock,Male,3642,1969-06-29,AB+ -Laura White,Male,3643,1968-03-27,B- -Catherine Roth,Female,3644,1979-09-07,O- -Stephen Ramos,Female,3645,1960-10-10,B+ -Joseph Hendricks,Female,3646,1930-02-10,B+ -Jessica Neal,Male,3647,1945-12-15,AB- -Jason Underwood,Male,3648,1952-08-12,B+ -Jason Buchanan,Female,3649,1977-07-24,A+ -Lisa Jarvis,Female,3650,1970-08-28,O+ -Michelle Lewis,Male,3651,1974-06-11,B+ -Nathan Martinez,Female,3652,1951-05-15,AB- -Dorothy Abbott,Male,3653,1996-03-08,B+ -Whitney Nelson,Male,3654,1990-07-06,A- -Maurice Watson,Female,3655,1983-08-13,B- -Meredith Koch,Female,3656,1944-09-18,O- -Jacob Moore,Male,3657,1987-12-22,A- -Jennifer Hanson,Male,3658,1994-07-11,B- -Eric Cobb,Male,3659,1936-11-29,B- -Roy Dickerson,Male,3660,1955-05-27,AB+ -Elizabeth Smith,Female,3661,1981-08-24,B+ -Adam Bryant,Male,3662,1957-01-24,AB- -Matthew Reynolds,Male,3663,1988-12-20,AB+ -Kathryn Knight,Male,3664,1932-02-18,B- -Mrs. Kimberly Gray,Female,3665,2001-08-17,B+ -Elizabeth Mata,Female,3666,1934-02-01,O- -Gregory Singleton,Male,3667,1976-08-31,O+ -Caleb Brock,Female,3668,1978-07-20,O+ -Bradley Peterson,Female,3669,1967-04-12,B+ -Elizabeth Pope,Female,3670,2000-11-04,A- -James Hernandez,Male,3671,1963-03-21,AB- -Kyle Berry,Male,3672,1957-11-13,A+ -Lindsay Sullivan MD,Male,3673,1951-07-01,A+ -Keith Reyes,Male,3674,1974-08-06,O+ -Jennifer Turner,Female,3675,1949-08-05,B- -Andrew Johnson,Female,3676,1935-08-07,B- -Brian Martinez,Female,3677,1950-03-05,AB+ -Darren Roberts,Female,3678,1984-06-26,B+ -David Murphy,Male,3679,1967-05-02,AB- -Terry Elliott,Female,3680,2000-03-08,B+ -Jennifer Martinez,Male,3681,1955-02-07,B+ -Diana Jones,Male,3682,1987-05-23,AB+ -Jesus Miller,Female,3683,1976-11-06,A+ -Teresa Todd,Male,3684,1961-01-06,B+ -Jonathan Fitzpatrick,Male,3685,1966-06-20,O+ -Damon Kelley,Female,3687,1995-04-22,A- -Frederick Flynn,Female,3688,1930-12-09,B+ -Christopher Watson,Male,3689,1933-12-18,B- -Robert Phelps,Male,3690,1948-01-08,B+ -Amanda Williams,Male,3691,1962-06-13,O+ -Juan Patton,Female,3692,1947-04-19,O- -Daniel Moreno,Male,3693,1976-04-19,O+ -Joy Sheppard,Female,3694,1957-08-15,O- -Regina Bates,Female,3695,1965-06-12,AB+ -Diane Bennett,Male,3696,2002-12-18,AB+ -Andrew Rivera,Male,3697,1993-05-02,A+ -Rodney Vazquez,Male,3698,1975-12-20,O+ -Robert Harrington,Male,3699,1969-11-19,O+ -Dr. Derrick Robinson,Female,3700,1970-09-16,O- -Kathleen Ramsey,Male,3701,1996-09-21,AB+ -James Cook,Male,3702,1956-09-26,O- -Edwin Roberson,Female,3703,1985-02-05,AB+ -Mary Green,Male,3704,1964-02-18,O- -Julie Anderson,Female,3706,1979-11-30,AB+ -Larry Mitchell Jr.,Female,3707,1978-11-27,O- -Erica Brown,Female,3708,1958-12-27,A- -Shane Daniel,Male,3709,1932-02-11,AB+ -Chad Chen,Male,3710,1989-12-26,AB- -Eduardo Alexander,Male,3711,1974-08-18,O- -Melanie Richardson,Male,3712,1954-01-05,O+ -Christy Phillips,Male,3713,1960-05-16,A+ -Lisa Wilson,Female,3714,1967-10-17,AB- -Charles Fernandez,Female,3715,1930-07-13,AB- -Christina Villanueva,Female,3716,1935-07-01,O- -Joseph Castillo,Male,3717,1978-02-07,A+ -Philip Ward,Male,3718,1981-05-31,O+ -Jillian Davis,Male,3719,1960-08-21,AB- -Caleb Hughes,Female,3720,1957-05-03,O+ -Caleb Green,Female,3721,1955-06-21,AB+ -Cheryl Ramirez,Female,3722,1985-10-28,B+ -Victoria Thomas,Female,3723,1950-05-05,A- -Patricia Silva,Female,3724,1936-03-11,B+ -Jennifer Hernandez,Male,3725,1985-02-01,B+ -Michael Carter,Female,3726,2002-08-03,A+ -Jennifer Rodriguez,Male,3727,1948-05-22,A- -Mr. Tyler Parks MD,Female,3728,1988-03-16,B- -Crystal Johnson,Male,3729,1954-06-05,AB+ -Angela Pennington,Male,3730,1941-12-27,A+ -Amber Ruiz,Female,3731,1951-05-26,O- -Terry Tapia,Female,3732,1967-09-22,A- -Dana Baldwin,Female,3733,1984-04-22,O- -Aaron Davis,Female,3734,1995-09-17,O+ -Michelle Freeman,Female,3736,1964-11-06,B+ -Courtney Jones,Male,3737,1958-04-16,AB- -Jennifer Best,Female,3738,1956-12-06,A- -Steven Bates,Female,3739,1937-09-01,B- -Makayla Frey MD,Female,3740,1952-10-25,O- -Holly Stuart,Female,3741,1944-10-24,A+ -Stacey Trevino,Female,3742,1978-11-04,A- -Danielle Duke,Male,3743,1993-09-23,A- -Darren Obrien,Female,3744,1945-11-26,AB- -Omar Merritt,Male,3745,1948-08-10,AB- -Amber Gonzales,Female,3746,1987-12-28,A+ -Kaitlyn Bailey,Male,3747,1988-10-20,AB- -Angela Browning,Female,3748,1958-03-03,O- -Samantha Martinez,Female,3749,1978-06-27,A+ -Vincent Curtis,Male,3750,1988-06-25,B+ -Raymond Perry,Female,3751,2000-08-10,A+ -Jeffrey Williams,Female,3752,1978-01-12,O+ -Tina Alexander,Male,3754,1942-09-25,B- -Robert Allen,Male,3755,1943-08-28,A- -Mark Walker,Female,3756,1971-08-14,O+ -Christopher Chavez,Male,3757,1942-11-11,B- -Jeffrey Bell,Female,3758,1975-10-16,A+ -Michael Moore,Male,3759,1940-06-25,A- -Andrew Daniel,Female,3760,1980-03-31,AB- -Kara Chapman,Male,3761,1976-10-13,B- -David Skinner,Male,3762,1964-07-06,A+ -Karen Wade,Male,3763,1945-01-04,A+ -Robin Rice,Female,3764,1992-04-25,O+ -Mary Murray,Male,3765,1979-10-15,O+ -Robert Knight,Male,3766,1944-12-16,AB- -Sarah Burton,Male,3767,1967-12-13,B+ -Amber Matthews,Female,3768,1943-06-14,AB+ -Dawn Davis,Male,3769,1942-09-23,O- -Donald Campbell,Female,3770,1932-05-05,AB+ -Claudia Sanders,Female,3771,2002-04-01,AB+ -Amy Alvarez,Female,3772,1937-11-06,A- -Thomas Jacobs,Male,3773,1962-05-27,B+ -Tom Gallagher,Male,3774,1974-08-12,A- -Amber Olson,Female,3775,1975-05-11,AB- -Diamond Garcia,Female,3776,1938-07-10,A- -Mrs. Kelly Berry DVM,Female,3777,1990-05-20,B- -Kenneth Harrison,Female,3778,1942-04-20,AB- -Emily Spence,Male,3779,1990-10-20,AB- -Louis Martinez,Female,3780,1971-05-20,A+ -William Snyder,Male,3781,1934-02-26,A+ -Rachel Thomas,Male,3783,1973-11-09,A+ -John Mullins,Female,3784,1988-07-21,O- -Kevin Mack,Male,3785,1978-07-28,B- -Michael Shaw,Female,3786,1984-10-17,B- -Terry Turner,Male,3787,1984-10-16,A+ -Tyler Rivera,Female,3788,1961-04-19,AB+ -Susan Salinas,Male,3789,1952-06-24,O- -Amy Knight,Female,3790,1961-09-30,AB+ -Jimmy Wilson,Female,3791,1965-03-29,O+ -Meagan Johnson,Female,3792,1964-11-21,B- -Richard Thomas,Female,3793,1991-08-25,B- -John Wood,Male,3794,1955-07-13,AB+ -Christopher Reese,Male,3795,1961-07-28,O- -Nicole Johnson,Female,3796,1948-01-15,B- -William Rowe,Female,3797,1939-01-25,AB+ -Shane King,Male,3798,1991-06-02,AB- -Dr. Susan Wagner,Male,3799,1991-12-17,AB- -Mark Avila,Female,3800,1932-09-14,A- -Steven Coleman,Female,3801,1939-02-04,O- -Charles Novak,Female,3802,1973-04-17,AB+ -Nicole Roberts,Female,3803,1942-08-21,A- -Deanna Rodriguez,Male,3804,1972-06-21,AB- -Shelley Jennings,Female,3805,1965-12-29,O- -Melinda Nelson,Male,3806,1997-10-05,B+ -Claire Drake,Female,3807,1967-05-21,A- -Stacey Sanchez,Male,3808,1985-02-06,B+ -Robert Mccormick,Male,3809,1938-05-11,A+ -Rebecca Baxter,Female,3810,1992-11-09,O- -Jerry Collins,Female,3811,1931-12-28,O+ -Anthony Page,Female,3812,1940-04-18,A+ -Harold Dixon,Male,3813,1990-10-03,A- -Teresa Moyer,Female,3814,1935-02-19,AB+ -Larry Contreras,Male,3815,1994-01-02,A+ -Kevin Stephens,Female,3816,1968-03-31,A+ -Andrew Quinn,Female,3818,1941-01-16,A- -Scott Hicks,Male,3819,1944-11-26,AB+ -Meagan Franklin,Female,3820,1977-07-26,AB+ -Jon Garza,Male,3821,1940-04-02,AB- -Jill Duarte,Female,3822,1998-06-08,O+ -Dylan Simmons,Female,3823,1976-06-25,AB+ -Sarah Martin,Male,3824,1934-11-10,B- -Kenneth Allen,Male,3825,1959-03-01,B- -Angelica Bennett,Male,3826,1932-07-24,O+ -Margaret Rios,Male,3827,1966-09-04,O- -Mrs. Stephanie Mcbride,Male,3828,1940-06-05,A- -Michael Bean,Male,3829,1975-10-07,O- -Eric Randall,Female,3830,1961-11-15,B- -Patricia Bailey,Male,3831,1996-07-19,AB+ -Tiffany Bishop,Female,3832,1982-04-04,O+ -Michelle Zimmerman,Male,3833,1969-05-12,O- -Matthew Holmes,Female,3834,1946-02-15,O- -Todd James,Male,3835,1943-11-03,B+ -Lisa Ward,Female,3836,1940-08-04,A- -Michael Ross,Male,3837,1986-05-11,A+ -Matthew White,Female,3838,1975-05-30,B- -Darryl Martin,Female,3839,1981-09-11,AB+ -Malik Sullivan,Female,3840,1935-01-17,O+ -Shannon Horton,Female,3841,1957-07-16,O- -Matthew Carter,Female,3842,2002-10-02,A- -Sarah Serrano,Male,3843,1954-12-02,A+ -David Lara,Female,3844,1964-03-20,B- -Tammy Fowler,Female,3845,1942-10-03,B- -Charles Johnson,Female,3846,1961-02-28,A- -Emily Ponce,Female,3847,1950-08-28,B+ -Erin Garcia,Female,3848,1951-02-18,O+ -Adam Allen,Female,3849,1967-12-04,O- -Diane Soto,Female,3850,1976-12-19,O+ -Todd Strong,Female,3851,1983-07-01,A- -Matthew Thompson,Female,3852,1962-03-31,A- -Sandra Robinson,Male,3853,1934-06-17,O+ -Scott Jones,Male,3854,1931-01-22,AB- -Frank Olson,Female,3855,1946-07-07,A+ -Jessica Fox,Female,3856,1947-08-19,B- -Jose Henderson,Male,3857,1992-05-20,AB- -Laura Taylor,Female,3858,1966-09-01,AB+ -Jamie Clark,Female,3859,1985-10-31,B- -Julie Patterson,Male,3860,1981-08-11,B- -Allison Frederick,Male,3861,1936-04-01,A+ -Jill Rosario,Female,3862,1935-01-31,AB+ -Jennifer Robles,Female,3863,1972-11-26,O- -Rebekah Cherry,Male,3864,1996-09-15,AB+ -George Houston,Female,3865,1935-06-22,O- -Danielle Anthony,Male,3867,1944-12-29,B+ -Wesley Johnson,Female,3868,1955-10-25,B+ -Patricia Harris,Female,3869,1942-10-14,AB+ -Erica Walker,Male,3870,1963-10-11,O+ -Angel Dennis,Female,3871,1955-07-31,A- -Wanda Gilbert,Female,3872,1986-09-06,AB+ -Mrs. Karen Garza,Female,3873,1949-05-05,AB- -Austin Harrison,Female,3874,1950-05-22,AB- -Emily Maddox,Male,3875,1978-10-11,A+ -Sara Pineda,Male,3876,1945-05-26,A- -Mariah Weaver,Female,3877,1950-06-06,A- -Brian Tate,Male,3878,1934-12-25,O- -Juan Diaz,Female,3879,1958-10-17,B- -Shelby Snyder,Male,3880,1967-08-24,A+ -Edward Jones,Male,3881,1977-12-14,AB- -Paul Graham,Male,3882,1992-10-29,AB- -Cheryl Smith,Female,3883,1937-04-12,B+ -Pamela Lewis,Female,3884,1939-08-02,O- -Megan Davis,Male,3885,1998-04-24,AB- -Mary Owens,Female,3886,1935-10-22,AB- -Whitney Stewart,Male,3887,1941-01-03,O- -Howard Hayes,Male,3888,1957-12-18,AB- -Mr. James Coleman DDS,Female,3889,1938-12-04,B- -Vincent Middleton,Female,3890,1957-08-08,O+ -Heather Stein,Male,3891,1934-12-29,A+ -Jacob Morrison,Female,3892,1978-11-23,B- -Joanna Schmidt,Female,3893,1980-12-30,B- -Jessica Herrera,Female,3894,1966-11-15,O+ -Gary Rivera,Female,3895,1983-09-27,B+ -Phillip Knight,Female,3896,1949-02-20,A- -Alison Jones,Female,3897,1988-12-26,A+ -Kyle Smith,Female,3898,1938-08-01,B+ -Jo Ramirez,Male,3899,1980-07-11,B+ -David Mckenzie,Male,3900,1975-11-04,B- -Mr. Bobby Johnson,Male,3901,1972-04-04,AB- -Elizabeth Ramirez,Male,3902,1971-02-02,B+ -Kelly Shaw,Male,3903,1958-01-07,O+ -Elizabeth Baldwin,Male,3905,1974-11-04,A- -Robert Morales,Male,3906,1933-02-15,A+ -Vanessa Rice,Male,3907,1979-05-03,AB+ -Patrick Joseph,Female,3908,1985-10-23,O- -Jaime Maxwell,Male,3909,1957-10-01,AB- -Angelica Cook,Male,3910,1965-07-02,O+ -Tara Schroeder,Female,3911,1939-03-16,O- -Richard Morrow,Male,3912,1992-11-18,A- -Dr. Melissa Johnson MD,Female,3913,1951-06-15,A- -Daniel Riggs,Female,3914,1960-08-03,AB+ -Nicole Lee,Female,3915,1974-11-16,B+ -Jennifer Bowen,Male,3916,1938-12-12,B- -Christopher Wallace,Male,3917,1947-12-22,B- -Pamela Morales,Female,3918,2001-08-23,A+ -Stephanie Powers,Male,3919,1988-05-08,O+ -Cynthia Welch,Female,3920,1981-12-29,O+ -Kayla Barnes,Female,3921,1961-03-30,B+ -Stephanie Allen,Female,3922,1946-03-04,A- -Steven Lopez,Female,3923,1973-11-19,A+ -Jason Mcguire,Female,3924,1983-10-27,B+ -Steven Jackson,Male,3925,1950-11-03,O- -Briana Mendoza,Female,3926,1977-05-11,B- -Anna Green,Male,3927,1935-07-05,B- -Drew Jones,Male,3928,1978-10-22,A- -Scott Underwood,Female,3929,1990-01-16,O+ -Diane Allen,Female,3930,1960-10-16,A- -Tammy Wright,Male,3931,1967-10-04,B+ -Patrick Booker,Female,3932,1962-02-20,O+ -Richard Carter,Female,3933,1970-05-01,A+ -Jo Lindsey,Female,3934,1960-06-12,B+ -Anthony Perry,Male,3935,1979-11-13,AB+ -Donald Martinez,Male,3936,1954-01-02,O- -Michael Meza,Male,3937,1992-07-26,AB- -Carlos Morgan,Male,3938,1967-07-09,AB+ -Wyatt Edwards,Female,3939,1932-07-18,B+ -Shane Conway,Male,3940,1962-09-21,AB+ -Jose Wheeler,Female,3941,1984-12-26,O+ -Jason Bailey,Female,3942,2001-04-17,O+ -Sarah Johnson,Female,3943,1973-05-20,O+ -Pamela Chavez,Male,3944,1977-09-29,AB+ -Thomas Wilson,Male,3945,1973-02-11,A- -David Wells,Male,3946,1945-09-23,O- -Ronald Campbell,Male,3947,1980-01-23,A- -Rebecca Galloway,Male,3948,1956-06-02,O+ -John Wilson,Male,3949,1949-02-10,B+ -John Jordan,Female,3950,1949-05-10,B+ -Linda Perry,Male,3951,1956-04-05,B- -Kristi Long,Female,3952,1984-03-17,A- -Robert Hayes,Male,3953,1931-03-19,O- -Timothy Baker,Female,3954,1991-11-19,B+ -Nancy Wilson,Male,3955,1942-09-27,B- -Bonnie Cobb,Male,3956,1996-08-05,O- -Mikayla Hood,Female,3957,1996-04-21,O+ -Brian Rice,Female,3958,1955-08-28,A- -Steven Perez,Female,3959,1950-10-20,AB- -Molly Watts,Female,3960,1969-03-22,A+ -Katherine Garcia,Male,3961,1942-03-17,O+ -Sandy Miller,Female,3962,1948-01-18,B+ -Robin Salas,Female,3963,1974-10-03,AB+ -Sandra Sanchez,Female,3964,2000-09-23,AB- -Matthew Lynn,Female,3965,1962-05-19,AB+ -Dominique Wade,Male,3966,2002-04-30,O- -Sergio Colon,Male,3967,1981-03-07,AB+ -Alan Taylor,Male,3968,1968-09-16,AB- -Charles Alvarez,Male,3969,1992-01-08,AB- -Debbie Warren,Female,3970,1977-05-08,O+ -Raymond Reyes,Female,3971,1986-09-28,B- -Nicole Alvarez,Male,3972,1985-11-01,O+ -Grace Chavez,Male,3973,1993-01-02,O- -Kendra Hodges,Female,3974,1935-12-10,B+ -Kelly Harris,Male,3975,1980-10-21,AB+ -Karen Walker,Male,3976,1990-05-18,B- -Terri Gentry,Male,3977,1947-04-15,A- -Shawn Nichols,Male,3978,1952-10-07,A+ -Brittney White,Female,3979,1952-01-02,AB- -Charles Myers,Male,3980,1993-06-12,B- -Sarah Hendricks,Male,3981,1932-02-25,B+ -Caleb Fisher,Male,3982,1946-10-23,A- -Doris Bray,Female,3983,1947-05-16,B- -Jamie Martin,Female,3984,1981-06-22,O+ -Cathy Chavez,Female,3985,1999-06-20,A- -Kyle Jacobson MD,Female,3986,1986-03-26,A+ -Marcus Gray,Male,3987,1970-12-30,B+ -Crystal Henderson,Female,3988,1945-05-21,AB- -Samantha Diaz,Female,3989,1935-04-21,B+ -Katherine Harmon,Male,3990,1940-06-04,O- -Jennifer Burton,Female,3991,1949-07-31,O- -Charles Rodgers,Male,3992,1955-12-29,B- -Willie Jimenez,Female,3993,1963-10-30,A- -Michael Morales,Female,3994,1938-11-11,B- -Robert Sandoval,Female,3995,1973-05-23,AB+ -Amanda Smith,Female,3996,1936-06-10,A+ -Robert Cruz,Male,3997,1935-04-17,AB- -Cassandra Myers,Female,3998,1959-11-18,B- -Ronald Brown,Male,3999,1953-06-05,AB+ -Sandra Morris,Male,4000,1988-04-26,A- -Cheryl Freeman,Female,4001,1945-01-20,A+ -Jason Howard,Male,4002,1958-12-22,AB- -Ms. Megan Hale,Male,4003,1977-06-13,O- -Carrie Zimmerman,Female,4004,1967-12-18,AB+ -Mia Davis,Male,4005,1956-03-14,A- -Monica Garcia,Female,4006,1978-10-19,A+ -Lawrence Chavez,Female,4007,1996-01-09,AB+ -Jackie Fields,Male,4008,1943-04-20,B- -Brendan Grimes,Female,4009,1930-12-07,O+ -Michael Myers,Female,4010,1960-08-12,O- -Travis Saunders,Female,4012,1975-11-27,B- -Ann Weeks,Male,4013,2001-07-19,B- -Joshua Sanders,Female,4014,1953-04-01,A- -Rachel Tate,Female,4015,1930-05-19,A- -Debra Stanley,Male,4016,1930-12-25,A+ -Maria Cisneros,Female,4017,1988-05-11,A- -David Burgess,Male,4018,1956-08-06,AB+ -Gloria Anderson,Female,4019,1984-04-27,O- -Renee Ramsey,Female,4020,1934-06-16,B- -Larry Gibson,Female,4021,2000-11-08,A+ -Michael Padilla,Female,4022,1973-10-18,B+ -Dr. Joseph Roberts,Male,4023,1992-12-31,B+ -Daniel Tucker,Female,4024,1943-09-14,O- -Benjamin Rivera,Male,4025,2000-05-23,A- -Sarah Olson,Female,4026,1966-05-15,A- -Victoria Moran,Male,4027,1948-03-19,AB+ -Anthony Singh,Male,4028,1992-06-04,A- -Joshua Rivera,Female,4029,1983-07-16,B+ -Heather Stevens,Male,4030,1985-05-11,B- -Wayne Gutierrez,Male,4031,1996-10-22,B+ -Martha Thomas,Male,4032,1935-11-22,AB- -Larry Mccoy,Female,4033,1955-10-26,B- -David Donovan,Male,4034,1968-07-12,B- -Mitchell Keller,Female,4035,1962-08-28,A- -Shelby Gallagher,Female,4036,1948-11-27,O- -Stephen Weeks,Female,4037,1982-08-14,A- -Megan Thompson,Female,4038,1964-02-04,O- -Theresa Bailey,Female,4039,2000-01-08,O- -Jessica Lopez,Female,4040,1974-05-22,B+ -Ryan Mathews,Male,4041,1981-11-20,O- -Ronald Lindsey,Female,4042,1933-07-31,A+ -Justin Kemp,Male,4043,1970-08-31,O+ -Brooke Brown,Male,4044,1999-01-31,A- -Ethan Farley,Male,4045,1937-04-14,A+ -Jimmy Johnson,Female,4046,1958-06-26,B- -Melissa Brown,Male,4047,2002-07-07,A+ -Terry Flores,Male,4048,1985-01-26,AB+ -Robin Mayer,Male,4049,1958-01-12,AB- -Lori Jones,Male,4050,1946-12-30,O- -Paula Weaver,Female,4051,1983-07-08,A- -Taylor Blanchard,Male,4052,1933-02-14,AB+ -Joseph Ramirez,Female,4053,1998-01-06,A- -Tyler King,Female,4054,2002-05-04,B+ -Jessica Burns,Female,4055,1934-09-05,AB- -Travis Wood,Male,4056,1939-12-10,AB+ -David Miller,Female,4057,1983-08-26,A- -Jennifer Garcia,Male,4058,1958-09-16,B- -Christopher George,Male,4059,1962-11-30,O- -Lauren Savage,Male,4060,1992-10-04,AB+ -Paige Hansen,Female,4061,2001-06-03,B- -Melissa Smith,Male,4062,1976-02-28,O- -David Logan,Male,4063,1951-01-15,O+ -Nicholas Stewart,Female,4064,1999-12-17,B- -Kristi Stephens,Female,4065,1933-04-22,A+ -Susan Brooks,Male,4066,1966-07-02,A- -Terri Reed,Female,4067,1935-05-15,B+ -Linda Walker,Female,4068,1931-07-12,O- -Gail Jones,Female,4069,1973-06-27,AB+ -Alyssa Leonard,Male,4070,1968-01-15,AB- -Ronald Bishop,Female,4071,1932-06-01,AB+ -Dana Turner,Male,4072,1943-01-14,A+ -Ms. Gina Ross,Male,4073,1946-01-24,A- -Dana Horton,Female,4074,1993-12-03,A+ -Nicole Carroll,Female,4075,1965-03-27,AB+ -Leslie Chapman,Male,4076,1949-08-15,B+ -Lisa Curry,Female,4077,1965-07-18,A- -Paige Diaz,Male,4078,1951-09-17,AB- -Jeremy Carroll,Female,4079,1944-08-22,O- -Kathryn Flynn,Male,4080,1949-11-26,A- -Nicole Griffin,Female,4081,2001-09-11,B- -Norma Adams,Male,4082,1997-02-07,A- -Lisa Perez,Female,4083,1967-01-14,A+ -Edwin Jordan,Female,4084,1936-09-20,A+ -Jared Robinson,Female,4085,1987-03-01,A+ -Gregory Atkins,Female,4086,1980-03-09,AB- -Joseph Tucker,Female,4087,1965-07-27,A- -Kim Mckee,Male,4088,1937-09-09,B+ -Daniel Burns,Female,4089,1948-03-09,B+ -Laura Barrett,Male,4091,1940-06-22,A- -Amanda Stevenson,Female,4092,1939-09-07,B+ -Brett Rogers,Female,4093,1991-06-22,O+ -Tiffany Mccormick,Female,4094,1971-12-01,AB- -Jennifer Sanchez,Male,4095,1940-05-30,O- -James Johnson,Male,4096,1987-09-22,O- -Andrew Tucker,Female,4097,1980-04-02,O- -Danielle Morales,Male,4098,1990-10-03,O- -Danielle Hansen MD,Female,4100,1946-10-26,O- -Wendy Hill,Male,4101,1982-07-30,B+ -Whitney Curry,Female,4103,1954-11-25,AB+ -David Reeves,Female,4104,1930-12-31,A+ -Kurt Perkins,Female,4105,1986-07-08,AB- -David Morris,Male,4106,1983-05-26,AB+ -Ellen Mccoy,Male,4107,1972-12-14,AB- -Leah Kelley,Male,4108,1935-02-07,O+ -Tammy Brown,Male,4109,1975-03-05,A- -Kenneth Frederick III,Female,4111,1949-05-25,B- -Kim Gay,Female,4112,1951-12-13,A+ -Ryan Russell,Female,4113,1936-07-12,O+ -Kristi Cox,Male,4114,1971-04-08,AB+ -Carlos Ruiz,Male,4115,1940-10-10,B- -John Strickland,Male,4116,1965-12-10,A- -Kayla Young,Female,4117,1969-08-26,O+ -Monica Horne,Female,4118,1951-03-14,A- -Chad Stone,Female,4119,1974-04-05,A- -Isaiah Adams,Male,4120,1989-10-04,B+ -Daniel Weiss,Male,4121,1936-10-26,AB- -Chris Cook,Male,4122,1993-12-20,B- -Travis Thompson,Male,4123,1966-06-25,AB- -Linda Nixon,Male,4124,1999-11-13,A- -Tiffany Adams,Male,4125,1995-11-01,B+ -Paul Rogers,Male,4126,1979-07-31,O+ -David Boyer,Female,4127,1997-04-05,A- -Kenneth Mason,Female,4128,1982-06-08,AB+ -Jeffrey Johnson,Male,4129,1933-02-11,A- -Tim Green,Female,4130,1986-02-17,AB- -Scott Hodge,Male,4131,1939-05-14,B- -Taylor Mayo,Female,4132,1946-01-02,O+ -David Martinez,Male,4133,1987-12-10,AB- -Angie Murphy,Female,4134,1940-09-11,A- -Tiffany Payne,Female,4135,1984-10-25,AB+ -Charles Hurst,Male,4136,1982-12-11,A+ -Brenda Lara,Male,4137,1991-02-03,B+ -Randall Torres,Female,4138,1963-12-27,AB+ -Candice Gallegos,Female,4139,1930-10-04,A- -Rebecca Brown,Female,4140,1980-05-01,AB+ -Tammie Christian,Male,4141,1978-03-21,B+ -Amanda Christensen,Female,4142,1947-05-09,A+ -John Long,Male,4143,1962-09-14,AB+ -Renee Young,Female,4144,1985-01-31,A+ -Douglas Faulkner,Female,4145,1973-07-20,A- -Anthony Gonzales,Female,4146,1976-10-05,A+ -Valerie Gardner,Female,4147,2000-11-14,AB- -Cassandra Castillo,Female,4148,1986-03-24,AB- -William Wood,Female,4149,1996-06-28,A+ -Patrick Quinn,Male,4150,1995-04-24,O+ -James Thomas,Male,4151,1963-09-11,B- -Elizabeth Burns,Male,4152,1995-06-30,O+ -Cody Rush,Male,4153,1958-10-04,A+ -Victoria Kim,Female,4154,1982-08-21,B- -Jacob Walton,Male,4155,1941-07-10,AB- -Bruce Hudson,Male,4156,1961-09-25,B- -Kyle Freeman,Female,4157,1998-10-08,A+ -Mia Williams,Male,4158,1959-10-22,AB- -Brittany Lucero,Male,4159,1965-03-24,B- -David Roberson,Male,4160,1932-12-24,B- -Jamie Joyce,Male,4161,1939-03-18,O+ -Kenneth Garcia,Female,4162,1930-01-25,B- -Anthony Kelly,Female,4163,1956-09-25,A- -Margaret Massey,Female,4164,1991-09-06,A+ -Benjamin Taylor,Female,4165,1990-05-18,O- -Elaine Palmer,Female,4166,1986-06-16,O- -Adriana Griffin,Female,4167,1957-04-08,O- -Cynthia Mclean,Male,4168,1965-06-01,A+ -Wyatt Jones,Male,4169,1952-02-03,O- -Steven Gray,Female,4170,1980-12-23,O+ -Tyler Howard,Male,4171,1949-12-22,A+ -Sarah Gates,Female,4172,1952-12-23,A- -Dr. Janet Ramos,Female,4173,1961-03-09,AB- -Lisa Bush,Male,4174,1953-02-17,A- -Courtney Moore,Male,4175,1985-02-12,A+ -Christopher Hudson,Female,4176,1958-07-26,A+ -Michelle Johnson,Male,4177,1971-03-05,B- -Scott Long,Male,4178,1983-07-21,B- -Beverly Monroe,Female,4179,1961-07-25,B- -Virginia Hunter,Female,4180,1988-04-07,B+ -Frank Lindsey,Male,4181,1988-08-25,B+ -Valerie Willis,Female,4182,1973-02-07,AB+ -Amber Powell,Male,4183,1995-03-12,B+ -Chloe Clark,Male,4184,1953-07-24,O+ -Hannah Scott,Female,4185,1935-07-08,A+ -William Garcia,Male,4186,1933-10-13,A- -Clayton Scott,Male,4187,1933-01-03,A+ -Cole Johnson,Female,4188,1984-03-28,B- -Haley Andrade,Female,4189,1984-11-12,A+ -Tammy Mckinney,Female,4191,1996-08-04,AB- -Megan King,Male,4192,1954-12-02,B+ -Mark Martinez,Male,4193,1930-07-07,A+ -Adam Jones,Female,4194,1962-09-18,A- -Jessica Kaufman,Male,4195,1957-12-12,O- -Sharon Rivers,Male,4196,1989-09-01,AB- -Eric Long,Female,4197,1935-09-24,AB- -Nichole Alvarez,Male,4198,1980-09-09,A+ -Christian Mckenzie,Female,4199,1944-05-09,AB+ -Roger Scott,Female,4200,1953-05-29,B- -James Dunn,Female,4201,1990-04-27,O+ -Alexander Perkins,Female,4202,1944-03-13,O+ -Jessica Gomez,Female,4203,1971-10-24,O- -Albert Salas,Male,4204,1945-10-25,O+ -Anita Cook,Male,4205,1964-02-01,O+ -Mrs. Michelle Berry,Male,4206,1996-07-10,B- -Larry Welch,Male,4207,1995-07-10,B+ -Curtis Shaw,Male,4208,1951-06-03,B- -Eugene Romero,Male,4209,1973-01-12,AB+ -Arthur Stephenson,Female,4210,1950-02-20,A- -Ashley Donovan,Female,4211,1947-09-14,O- -Samantha Mccoy,Female,4212,1964-11-15,O+ -Tracy Hill,Female,4213,1978-12-16,AB+ -Angela Cole,Female,4214,1966-06-25,O- -Crystal Rose,Male,4215,1958-05-04,AB- -Christopher Clark DDS,Male,4216,1936-12-30,O+ -Anna Reyes,Female,4217,1989-09-01,O+ -Norman Golden,Female,4219,1938-01-30,B- -Troy Rhodes,Female,4220,1978-04-01,A+ -Stephanie Rivera,Male,4221,1999-12-14,O- -Tara Allison,Male,4222,1942-12-11,O+ -Brittney Thomas,Male,4223,1985-09-18,B+ -Richard Hanson,Male,4224,1945-07-27,O- -Jillian Smith,Female,4225,2000-02-29,A- -Morgan Johnson,Male,4226,1940-02-19,B+ -Fred Sullivan,Male,4227,1937-08-12,AB+ -Nathaniel Parker,Male,4228,1995-02-11,B+ -Monica Obrien,Male,4229,1979-03-17,AB+ -Cassandra Warner,Male,4230,1936-06-26,A+ -Rachel Sanchez,Male,4231,1972-09-09,O+ -Mason Phelps,Female,4232,1990-09-16,B+ -Rachael Henderson,Female,4233,1931-03-13,A- -Matthew Miller,Female,4234,1937-09-29,B- -Tamara Miller,Male,4236,1934-04-06,O+ -Darren Barnes,Female,4237,1995-08-02,O- -Bryan Mayer,Male,4238,1966-08-04,AB- -Yolanda Smith,Female,4239,1995-05-04,AB+ -Jessica Greene,Female,4241,2000-11-09,O- -Desiree Giles,Male,4242,1971-03-28,A+ -Carlos Gonzales,Female,4243,1958-12-16,AB+ -Mary Torres,Male,4244,1975-05-11,B- -Jessica Moore,Male,4245,1949-09-08,AB+ -Dr. Kenneth Ford,Male,4246,1993-03-02,AB- -Elizabeth Ayers,Male,4247,1945-03-28,B+ -Jennifer Carter,Female,4248,1994-09-07,A- -Timothy Holland,Male,4249,1972-01-30,B+ -Richard Wells,Male,4250,1995-10-22,O+ -Jessica Lynch,Male,4251,1990-02-14,AB- -Robert Stewart,Male,4252,1934-05-09,A- -Cynthia York,Male,4253,2001-08-19,AB- -Rachael Green,Female,4254,1999-02-03,O+ -Steven Smith,Male,4255,1930-06-09,AB+ -Joseph Duran,Male,4256,1963-04-03,A+ -Lisa Thomas,Female,4257,1972-02-03,O+ -Paul Dudley,Male,4258,1947-12-13,O+ -Andrea Willis,Female,4259,1974-06-16,A- -Jaclyn Jones,Female,4260,1955-03-14,B- -Sara Ward,Female,4261,1952-07-28,B+ -Deanna Marsh,Male,4262,1970-05-14,AB+ -Annette Jones,Male,4263,1966-07-04,O+ -Jeffrey Davis,Female,4265,1966-07-12,A+ -Todd Saunders,Female,4266,1993-08-08,O- -Raymond Boyer,Female,4267,1981-03-05,AB+ -Logan Castillo,Male,4268,1933-05-13,B- -Shawna White,Female,4269,1994-08-23,AB- -Angelica Allen,Male,4270,1945-04-22,O+ -David Williams,Female,4271,1993-10-20,A+ -Tracy Lopez,Female,4272,1945-04-17,AB+ -Thomas Munoz,Male,4273,1955-04-07,A+ -Jennifer Zuniga,Female,4274,1946-07-22,A+ -Sherri Scott,Female,4275,1963-07-04,B+ -Cody Bates,Male,4276,1972-11-05,A- -Randy Stewart,Female,4277,1943-07-17,AB- -Ann Joseph,Female,4278,1951-09-15,B- -Elizabeth Webb,Female,4279,1964-08-11,B+ -Erika Miller,Female,4280,1973-10-20,AB+ -Carlos Esparza,Female,4281,1966-08-26,O+ -Jill Cummings,Male,4282,1949-03-18,B- -Michael Rodriguez,Male,4283,1968-05-28,O+ -Vanessa Mcmillan,Female,4284,1973-08-03,O- -Janet Macias,Male,4285,1996-02-06,A+ -Andrew Brown,Male,4286,1967-08-27,O- -Leslie Ross,Female,4287,1988-10-13,A- -Kristen Hobbs,Male,4289,2000-09-30,A+ -Ronald Riddle,Female,4290,1994-06-19,AB- -Russell Bell,Male,4291,1980-01-07,B- -Joseph King,Female,4292,1979-10-24,O+ -Gabriel Wallace,Female,4293,1938-09-03,B+ -Jeffrey Carrillo,Male,4294,1962-10-29,A- -Julie Dunlap,Female,4295,1992-04-01,AB- -Joshua Myers,Female,4296,1999-07-11,O+ -Dr. Michael Smith PhD,Female,4297,1968-07-27,B- -Christopher Alvarado,Male,4298,1991-06-10,AB+ -Brian Fox,Male,4299,1936-09-03,A- -Charles Butler,Female,4300,1992-07-26,O- -Steven Osborne,Male,4301,1971-10-28,O- -Kelly Baker,Female,4302,1999-09-20,B+ -Randy Buchanan,Female,4303,1991-02-25,O+ -Anne Hernandez,Female,4304,1944-06-12,O+ -Daniel Carter,Male,4305,1954-04-04,O+ -Valerie Williams,Male,4306,1951-05-29,A- -Jonathan Austin,Female,4307,1942-12-12,B- -Andrew Mills,Male,4308,1982-01-16,AB+ -Luis Fisher,Female,4309,1945-09-17,O- -Debra Smith,Female,4310,1986-06-12,AB- -Brendan Stanley,Female,4311,1945-11-11,A+ -John Byrd,Male,4312,1942-05-21,A- -Darin Mosley,Female,4313,1945-04-03,A- -Scott Oconnor,Female,4314,1974-05-19,B- -Angela Williams,Female,4315,1971-09-29,O- -John Hoffman,Male,4316,1999-07-12,B+ -James Green,Female,4317,1958-06-03,AB+ -Shelby Brown,Female,4318,2000-04-25,B- -Robert Cook,Female,4319,1936-02-03,AB- -John Brandt,Female,4320,1952-12-20,O- -Michael Mueller,Female,4321,1973-08-10,B- -Tina Lee,Male,4322,1991-07-15,O- -Monica Jackson,Male,4323,1961-12-28,O- -Danny Allison,Male,4324,1959-02-18,B+ -Daniel Wilson,Female,4325,1953-09-19,A- -Linda Allen,Female,4326,1947-06-02,AB+ -Rebecca Gomez,Male,4327,1935-05-03,A- -Misty Meyers,Male,4328,1963-02-08,A+ -Olivia Green,Male,4329,2002-10-16,AB+ -Amber Sharp,Male,4330,1962-11-01,O- -Michael Ellis,Male,4331,1994-04-13,B- -Katherine Bailey,Female,4332,1947-04-20,AB- -Monique Yang,Male,4333,1985-04-02,B+ -Thomas Alexander,Female,4334,1963-05-08,AB+ -Jocelyn King,Male,4335,1930-08-23,A+ -Nancy Perez,Male,4336,1972-02-02,O- -Richard Baxter,Male,4337,1999-10-30,AB- -Renee Collins,Male,4338,1984-09-25,AB+ -Dana Davis,Female,4339,1996-11-17,A- -Bradley Cohen,Male,4340,1931-06-07,A- -Steve Melendez,Female,4341,1991-01-09,AB+ -Alexander Sellers,Female,4342,1964-10-27,AB+ -Marilyn Owens,Male,4343,1988-03-29,AB+ -Eric Mason,Male,4344,1956-11-21,AB- -Jessica Werner,Female,4345,1945-12-20,A- -Lisa Diaz,Female,4346,1965-02-06,B- -Drew Tyler,Female,4347,1974-05-21,A+ -Michael Wong,Male,4348,1949-07-02,A+ -Sara Hill,Male,4349,1945-12-30,B+ -Megan Hernandez,Female,4350,1933-08-09,O- -William Cox,Male,4351,1966-02-21,O+ -Mary Bauer,Female,4352,1977-12-08,B- -Wendy Davis,Male,4353,1990-04-01,A- -Lauren Johnson,Male,4354,1989-09-15,O- -Laura Williams,Female,4355,1971-08-20,B+ -Dr. Ronald Gutierrez,Male,4356,1981-12-10,O- -Cindy Romero,Female,4357,2000-02-02,AB+ -William Maynard,Female,4358,1990-05-22,O+ -Carrie Bautista,Female,4359,1933-10-10,A- -Crystal Marshall,Male,4360,1984-02-05,O+ -Karen Chavez,Female,4361,1934-02-28,B- -Isabel Vang,Female,4362,1990-09-04,O+ -Bonnie Page,Female,4363,1951-09-23,O- -Carolyn Smith,Male,4364,1946-09-07,O+ -Alexis Wilson,Male,4365,1997-11-27,O+ -Timothy Higgins,Female,4366,1944-08-30,A+ -Michelle Carney,Female,4367,1988-06-17,A- -Christian Owen,Male,4368,1954-11-14,A- -Stephen Richardson,Female,4369,1945-04-06,O- -Yolanda Rogers,Female,4370,1986-01-03,AB- -Charles Ray,Female,4371,1966-06-25,O+ -Beverly Bryant,Male,4372,1936-03-07,O+ -Julie Fisher,Male,4373,1998-05-16,AB+ -Sydney Mills,Female,4374,1966-09-20,A- -Jasmine Palmer,Female,4375,2002-12-23,O+ -Yesenia Walker,Female,4376,1971-09-16,A- -Ryan Kirby,Male,4377,1973-07-01,O+ -Cheryl Martinez,Female,4378,1986-12-21,A+ -Jorge Sweeney,Female,4379,1983-09-21,O- -Eric Lopez,Male,4380,1985-07-08,A- -Darlene Santiago,Female,4381,1935-06-29,B- -Danielle Wallace,Male,4382,1980-05-18,O- -Mark Johnson,Male,4383,1959-09-26,AB+ -Adrian Lopez,Male,4384,1957-07-28,O- -Kimberly Bowen,Male,4385,1955-09-15,O+ -Lisa Lewis,Male,4386,1979-09-17,AB+ -Caleb Mccarty,Male,4387,1997-09-23,O- -Christopher Lee,Female,4388,1985-09-29,B+ -Samuel Rodriguez,Female,4389,1979-08-27,AB+ -Richard Schwartz,Female,4390,1999-05-30,B+ -Kimberly Brown,Female,4391,1995-03-15,B- -Russell Hawkins,Female,4392,1969-12-31,O- -Christopher Cantu,Female,4393,1994-06-28,A- -Andrew Mclaughlin,Male,4394,1992-07-27,A- -George Steele,Female,4395,1974-10-20,AB- -Megan Woods,Male,4396,1999-11-10,O+ -Mark Solomon,Male,4397,1983-09-04,B+ -John Lawrence,Male,4398,1976-05-02,AB+ -Chad Meyer,Female,4399,1970-08-02,AB- -Chris Velez,Female,4401,1978-11-10,AB- -Tonya Sanchez,Female,4402,1989-01-19,A+ -James Small,Female,4403,1953-05-27,B+ -Nicole Pineda,Female,4404,1961-07-12,AB+ -Sheila Mullins,Female,4405,1930-08-23,AB- -Monica Smith,Male,4406,1969-11-14,A+ -David Arias,Female,4407,1979-02-05,AB- -Carmen Horne,Female,4408,1950-06-25,O+ -Emily Moore,Female,4409,1941-07-15,B- -Seth Cochran,Female,4410,1958-03-08,B+ -Andrew Yu,Male,4411,1934-08-01,A+ -Michael Wells,Female,4412,1993-03-23,B- -Grace Franco,Female,4413,1996-09-17,AB+ -Katherine Alexander,Male,4414,1935-10-02,O+ -Monica Romero,Male,4415,1962-06-11,A+ -April Bridges,Male,4416,1985-02-13,AB+ -Angela Solomon,Female,4417,1983-07-19,AB- -Michele Campbell,Female,4418,1979-10-30,A- -Wendy Perez,Male,4419,1940-07-08,O- -Lauren Donaldson,Male,4420,1957-12-02,AB+ -Cynthia Reid,Female,4421,1951-12-13,B- -Michael Campbell,Female,4422,1949-03-13,O+ -Aaron Wilson,Male,4423,1942-04-21,O+ -Jaime Morgan MD,Male,4424,1976-09-14,AB+ -Leslie Obrien,Female,4425,1997-01-01,AB- -Allen Jackson,Male,4426,1953-06-27,O- -Brandon Payne,Female,4427,1935-11-29,B+ -Kimberly Briggs,Female,4429,1982-02-22,B- -Lawrence Dixon,Female,4430,1935-08-27,AB+ -Jon Steele,Female,4431,1938-11-28,AB+ -Stephen Jackson,Male,4432,1988-06-28,A- -Ashley Smith,Female,4433,1995-12-13,O+ -Adrian Werner,Male,4434,1965-02-14,B- -Jessica Clark,Female,4435,1999-04-24,O- -Margaret Perez,Female,4436,1933-11-02,O+ -Corey Martin,Male,4437,1983-10-13,AB+ -Patrick Poole,Male,4438,1971-08-07,O+ -Brittany Allen,Male,4439,1963-02-13,O+ -Anna Glass,Male,4440,1985-08-07,A+ -Michelle Christian,Female,4441,1941-07-16,O+ -Brent Robinson,Male,4442,1983-09-11,AB- -Brandy West,Female,4443,1960-03-07,O+ -John Clark,Male,4444,1962-09-20,B+ -Stacey Ramirez,Male,4445,1959-04-23,AB- -Stephanie Lyons,Female,4447,1958-04-27,B- -Kristy Benton,Female,4448,1962-06-29,O+ -Shawn Sexton,Female,4449,1937-07-08,O- -James Robbins,Male,4450,1991-07-15,AB- -Virginia Brown,Male,4451,1940-08-02,AB- -Tammy Martinez,Male,4452,1962-09-26,AB+ -Kara Gilbert,Male,4453,1945-12-06,B- -Troy Pineda,Male,4454,1980-12-10,O+ -Kyle Harrison,Male,4455,1974-01-23,A- -Lauren Savage,Female,4456,1982-07-03,O- -Jonathan Bryant,Male,4457,2001-12-07,AB+ -Tabitha Jackson,Male,4458,1972-06-02,B- -Natalie Bradley,Female,4459,1985-12-25,B+ -Christine Wood,Female,4460,1979-01-12,AB- -William Grant,Male,4461,1952-07-08,O- -Brandi Blake,Female,4462,1991-10-30,B+ -Eric Anderson,Female,4463,1941-01-08,O+ -Ian Norton,Male,4464,1981-11-19,A- -Mary Schmidt,Female,4465,1982-07-14,A+ -David Pratt,Male,4466,1985-01-05,A+ -Gary Gonzalez,Female,4467,1946-11-08,B- -Nathaniel Meyer,Male,4468,1967-11-22,A- -Tiffany Griffin,Male,4469,1931-12-21,O- -Jason Robinson,Male,4470,1970-10-08,AB+ -Stephen Alvarez,Female,4471,1992-09-12,O- -Christina Olson,Male,4472,1987-05-25,A- -Mary Ruiz,Female,4473,1977-07-09,B+ -Mr. Gregory Perez,Male,4474,1985-01-14,AB- -Eric Vincent,Female,4475,1995-02-08,A+ -Heather Rose,Female,4476,1986-11-29,B- -Terrence Reid,Male,4477,1987-04-28,O+ -Laura Monroe,Female,4478,1980-11-25,O- -Gary Rodgers,Female,4479,1942-02-13,A+ -Vanessa Jones,Female,4480,1993-10-20,AB+ -Jessica Brown,Female,4481,1964-04-04,B- -Breanna Gordon,Female,4482,1971-03-31,O+ -Roy Barton Jr.,Male,4483,1967-09-11,O- -Alexander Stein,Male,4484,1960-12-17,AB+ -Nicholas Wade,Male,4485,1961-06-04,O+ -Joshua Duncan,Female,4486,1999-01-18,AB- -Bryan Coffey,Female,4487,1965-04-30,A+ -Joshua Harper,Female,4488,1997-10-26,AB- -Lucas Carroll,Female,4489,1953-10-07,A+ -Charles Jones,Female,4490,1936-01-14,AB+ -Nathaniel Martin,Male,4491,1989-06-29,B+ -Kathleen Webb,Male,4492,1983-10-30,AB- -Robert Rodriguez,Female,4493,1933-01-07,A+ -Nancy Wolfe,Male,4495,1944-05-10,B- -Elizabeth Huff,Female,4496,1948-02-10,AB+ -Lisa Chavez,Female,4497,1974-08-17,A+ -Russell Thompson,Male,4498,2000-09-07,O- -Karina Russell,Male,4499,1953-11-03,A+ -William Howell,Female,4500,1968-02-04,AB- -Emily Cole,Female,4501,1989-02-27,B- -Dr. Scott Armstrong,Male,4502,1998-05-12,O+ -Felicia Jacobs,Male,4503,1931-09-23,B+ -Sarah Chapman,Male,4504,1962-08-09,O+ -Christine Watson,Male,4505,2002-05-06,A+ -Jonathan Ward,Male,4506,1959-09-13,O+ -Kevin Hunt,Female,4507,1955-02-10,A+ -Steven Brock,Male,4508,1964-10-30,B- -Kelly Carter,Female,4509,1993-02-26,O+ -Michael Fernandez Jr.,Male,4510,1975-08-14,AB- -Stephanie Dixon,Male,4511,1975-06-30,AB- -Stacy Berry,Male,4512,1956-09-05,O- -Carolyn Watson,Female,4514,1945-07-31,A+ -Linda Phillips,Male,4515,1966-09-10,O+ -Sarah Collins,Female,4516,1950-12-21,AB- -James Maldonado,Female,4517,1959-01-10,A- -William Hall,Male,4518,1962-01-17,B- -Terry Booth,Female,4519,1930-01-26,B+ -Lisa Hurley,Male,4520,1972-02-14,B- -Donna Evans,Male,4521,1967-07-11,A- -Lindsay Evans,Male,4522,1995-04-22,A- -Jessica Alvarez,Male,4523,1992-05-29,O- -Chris Fox,Male,4524,1953-09-09,B- -Kristin Evans,Female,4525,1985-03-01,B- -Joseph Anderson,Male,4526,1992-12-04,O+ -Claudia Miles,Female,4527,1966-08-19,A+ -Nathan Patterson DDS,Male,4528,1988-10-29,AB+ -Jesse Young,Female,4529,1949-03-08,B+ -Dr. Jeffrey Leon,Female,4530,1984-05-24,B- -Brandon Roberts,Female,4531,1980-04-26,B+ -Erica Wood,Male,4532,1953-10-09,B+ -Makayla Reynolds,Female,4533,1932-12-08,B+ -Andrea Chavez,Male,4535,1993-03-22,B- -Angela Houston,Female,4536,1930-08-04,AB+ -Laura Sanchez,Male,4537,1995-09-06,B- -Laura Washington,Female,4538,1957-02-23,O+ -Jeremy Davenport,Male,4539,1956-10-15,O+ -Timothy Flores,Male,4540,1981-12-29,AB+ -Mary Tran,Female,4541,1997-09-20,AB- -Lisa Dillon,Female,4542,1970-08-03,B- -Ashley Smith,Male,4543,1987-12-13,AB- -Ricky Burns,Female,4544,1939-01-27,B+ -Betty Velazquez,Male,4545,1960-03-17,B- -Robin Patterson,Female,4546,1957-04-17,A+ -Stacey Rios MD,Female,4547,1974-06-20,B- -Steven Rush,Male,4548,2002-11-27,O+ -Heidi Martinez,Male,4549,1996-02-11,O- -Kevin Meza,Female,4550,1946-04-06,A- -James Hammond,Male,4551,1970-03-28,O- -Christopher Herring,Female,4552,1970-07-04,O- -Johnny Martinez,Female,4553,1936-04-14,O- -Lisa Jones,Female,4554,1990-06-04,A- -Amanda Lamb,Male,4555,1934-08-24,AB- -Andrea Bass,Female,4556,1960-08-16,A- -Kim Hart,Male,4557,1980-03-09,AB- -Phillip Cook,Female,4558,1962-11-10,A- -Justin Maxwell,Female,4559,1969-04-16,A- -James Rios,Female,4560,1982-06-24,B- -Ann Griffin,Male,4561,1939-12-24,AB- -Aaron Gonzales,Female,4562,1989-03-17,B- -Bobby Hurst,Female,4563,1947-07-31,A+ -Victoria Mccormick,Female,4564,1995-07-20,B- -Kevin Cain,Female,4565,1962-05-30,O- -Alexander Navarro,Female,4566,1982-02-06,AB+ -Jeremy Johnson,Female,4567,1992-11-24,AB+ -Casey Oliver,Male,4568,1947-05-25,O+ -Brandon Rodriguez,Male,4569,1958-11-11,O+ -Shelly Martinez,Male,4570,1935-04-17,B+ -Melinda Osborne,Female,4571,1961-06-13,B- -Robert Grimes,Male,4572,1934-10-24,A- -Stephanie Lee,Male,4573,1943-12-04,A- -Suzanne Hoffman,Male,4574,1945-06-08,AB+ -Cynthia Welch,Male,4575,1933-01-21,O- -Briana Miller,Male,4576,1959-06-17,AB- -Randy Warren,Female,4577,1962-01-04,O- -Mary Wilson,Male,4578,1931-05-08,B+ -Ms. Raven Smith,Male,4579,1954-02-15,O- -Robert Wood,Male,4580,1996-06-15,B- -Robert Davis,Male,4581,1947-09-23,B- -Jennifer Greene,Male,4582,1969-05-21,A+ -Paul Dean,Female,4583,1956-08-30,B+ -Charles Anderson,Female,4584,1988-06-07,O- -Kenneth Rios,Female,4585,1968-04-10,A- -Dr. Erica Williams,Male,4586,1962-03-09,A- -Kimberly Sanchez,Female,4587,1956-10-28,B+ -Mrs. Melissa Griffin,Female,4588,1969-12-29,O- -Tammy Perkins,Male,4589,1965-03-25,B- -Joseph Matthews,Female,4590,2002-06-18,B- -Mallory Rodgers,Female,4591,2000-10-11,A+ -Anthony Coleman,Male,4592,1982-05-15,A+ -David Smith,Male,4593,1951-07-16,O+ -Amanda Richard,Male,4594,1972-04-19,B+ -Jonathan Barber,Female,4595,1959-04-04,AB+ -Sherry Davis,Male,4596,1994-06-18,O- -Tammy Stone,Female,4597,1944-12-04,B+ -Dr. Matthew Evans,Female,4598,1989-04-03,A- -Tiffany Olson,Male,4599,1953-05-28,O- -Mr. Ryan Bradley,Female,4600,1949-09-04,A+ -Kevin Rowland,Male,4601,1946-09-16,A+ -Sandra Sloan,Female,4602,1999-09-01,O+ -Michael Sanders,Male,4603,1999-09-17,AB+ -Robert Coleman,Male,4604,2002-10-07,O+ -Caitlin Park,Female,4605,2000-10-19,A- -Nicholas Morales,Female,4606,1931-09-12,AB+ -Timothy Moore,Female,4607,1932-06-01,AB- -Krista Johnson,Male,4608,1999-06-20,O- -Lauren Mcdaniel,Male,4609,1939-12-22,O+ -Brandon Anderson,Male,4610,1933-07-20,A+ -Kim Hughes,Female,4611,1968-08-31,O+ -Alexander Davis,Male,4612,1997-12-15,AB- -Roy Jacobs,Female,4613,1937-12-05,O+ -Stephen Davis,Female,4614,1992-11-28,O- -Jennifer Floyd,Female,4615,1977-05-27,AB- -Sarah Castaneda,Male,4616,1944-09-10,B+ -Todd Wilkinson,Female,4617,1953-11-07,B+ -Matthew Bass,Male,4618,1983-08-27,B+ -Patricia Rodriguez MD,Female,4621,1981-06-15,A+ -Anna Wilkerson,Male,4622,1952-06-13,A+ -Jeffery Mora,Male,4623,1959-05-06,B+ -Wendy Bryant,Female,4624,1939-05-17,B+ -Pamela Cain,Female,4625,1957-12-16,B+ -Devin Mcneil,Female,4626,1964-12-30,B- -Diane Herrera,Male,4627,1993-12-16,B+ -Nathan Medina,Male,4628,1995-08-26,AB- -Mary Norman,Female,4629,1988-12-24,B- -Terri Duke,Female,4630,1964-02-26,B- -Rebecca Miller,Female,4631,1940-01-16,O- -Barry Hernandez,Female,4632,1991-03-19,O+ -Kelly Jones,Female,4633,1991-12-07,A+ -Carmen Welch,Female,4634,1952-08-30,A+ -Michelle Rodriguez,Female,4635,1964-01-07,O+ -Raymond Williams,Female,4636,1981-08-13,A+ -Sean Reyes,Female,4637,1991-11-18,O+ -Cory Peterson,Female,4638,1984-10-07,AB- -Jessica Davis,Female,4639,1979-05-04,O- -Mark Barnes,Male,4640,1952-04-30,B+ -Jason Moore,Male,4643,1939-10-24,O- -Bradley Wilson,Female,4644,1972-06-24,A- -Betty Burke,Female,4645,1940-12-23,O- -Gina Morris,Female,4646,1983-12-19,O+ -Jason Benton,Female,4647,1958-07-03,A- -Sierra Conley,Female,4648,1997-03-02,O+ -Kimberly Cruz,Female,4649,1980-12-05,B+ -David Wall,Male,4650,1943-08-08,AB+ -Lisa Smith,Female,4651,1981-05-06,A- -Lisa Clark,Male,4652,1984-10-26,B+ -Laurie Mosley,Male,4653,1959-04-14,B+ -Antonio Davidson,Male,4654,1955-01-05,A+ -Marcus Charles,Male,4655,1945-09-01,A+ -Patricia Carlson,Male,4656,1972-06-23,AB+ -Blake Bell,Female,4657,1960-06-20,AB+ -Elizabeth Spencer,Female,4658,1942-03-03,O- -Denise Moore,Male,4659,1950-11-10,B+ -Douglas Powell,Male,4660,1985-08-31,AB+ -Julian Fernandez,Female,4661,1979-06-13,O+ -Mario Mills,Male,4662,1933-04-11,B+ -Benjamin Velasquez,Female,4663,1963-09-02,B- -Lori Mendez,Female,4664,1937-08-19,O+ -Don Parker,Female,4665,1995-03-17,A- -Samuel Simpson,Female,4666,2001-04-15,AB+ -Patricia Baker,Female,4667,1951-09-15,A+ -Christian Cook,Female,4668,1983-12-11,O+ -Joshua Campbell,Male,4669,1999-02-10,A+ -Justin Carroll,Female,4670,1993-03-04,O+ -Jesse Gallegos,Male,4671,1935-12-17,A+ -Andrew Thompson,Male,4672,1985-02-08,AB- -Kevin Sweeney,Male,4673,1954-01-27,O+ -Charles Sawyer,Female,4674,1986-12-19,A- -Katelyn Davila,Male,4675,1985-04-30,A+ -Erica Fox,Female,4676,1955-02-10,B- -Richard Wood,Male,4677,1936-09-17,A- -Amanda Allen,Male,4678,1931-09-21,O- -Casey Stevens,Female,4679,1956-11-21,O+ -John Hubbard,Female,4680,1951-04-19,B- -Michele Olson,Female,4681,1940-02-14,O- -Mike Goodman,Male,4682,1984-12-01,O+ -Nancy Morgan,Male,4683,1985-08-13,B- -Christopher Campbell,Female,4684,1982-06-06,B- -Alyssa Taylor,Male,4685,1986-10-27,A- -Kim Martinez,Male,4686,1965-07-08,AB- -Diane Larson,Female,4687,1952-09-29,B- -Denise Anderson,Male,4688,1943-07-28,AB- -Luke Kelley,Male,4689,1957-11-30,AB+ -Parker Conrad,Male,4690,1976-10-02,A- -Wendy Hendrix,Female,4691,1983-07-08,B+ -Debbie Moore,Male,4692,1933-01-10,A+ -Angel Smith,Male,4693,1983-02-04,A- -Gerald Garcia,Male,4694,1980-10-10,O- -Abigail Horn,Male,4695,1972-03-18,A+ -Jason Wright,Male,4696,1997-09-15,A+ -Wesley Campbell,Male,4697,1968-11-05,B+ -Jose Ochoa,Male,4698,1984-12-26,AB- -Michael Castillo Jr.,Male,4699,1964-07-03,B+ -Michele Perez,Female,4700,1985-03-23,B+ -Robin Rodriguez,Male,4701,1955-05-06,A+ -Caleb Coleman,Male,4702,1986-05-11,B- -Carla Flowers,Female,4703,1968-11-29,AB- -Joe Daniels,Male,4704,1935-03-29,A+ -Kristin Nolan,Female,4705,2000-08-13,AB- -Megan Thomas,Female,4706,1989-12-21,AB+ -Kathryn Owens,Female,4707,1959-01-02,AB- -David Fletcher,Male,4708,1934-11-08,O+ -Theresa Jones,Female,4709,2002-08-27,B- -Danielle Massey,Male,4710,1982-06-21,O- -Kimberly Lopez,Female,4711,1965-08-01,O+ -Nathan Rodriguez,Female,4712,1995-03-08,O+ -Paul Berry,Female,4713,1937-11-11,B+ -Jerome Evans,Female,4714,1966-03-27,B+ -Kristin Mccann,Male,4715,1976-08-31,O+ -Amy Hickman,Female,4716,1991-12-13,A+ -Thomas Hickman,Male,4717,1958-10-22,AB- -Wendy Harmon,Female,4718,1959-02-20,AB- -Deanna Clark,Male,4719,1933-02-06,A- -Kaylee Hill,Female,4720,1931-12-01,A+ -Patrick Smith,Male,4721,1969-10-17,B- -Melissa Roth,Male,4722,1995-04-24,A+ -Cheryl Lynch,Female,4723,1958-01-04,A+ -Brendan Garrett,Female,4724,1947-03-30,A+ -Jason Lewis,Female,4725,1965-02-25,B- -Chase Johnson,Female,4726,1951-05-23,A- -Heidi Avila,Female,4727,1942-06-24,B- -Tricia Wells,Female,4728,1935-12-20,AB+ -Angel Martin,Male,4729,1960-03-14,A- -Tiffany Hudson,Male,4730,1954-10-27,AB+ -Jeremiah Lawson,Female,4732,1952-08-28,AB+ -Calvin Santos,Female,4733,1978-10-02,AB+ -Janet Hunt,Male,4734,1971-04-25,AB- -Lauren Henry,Female,4735,1938-09-16,O+ -Rebecca Delgado,Female,4736,1986-09-04,O+ -Debra Wright,Male,4737,1948-05-02,AB+ -Erin Bond,Male,4738,1956-03-28,AB+ -Sylvia Bradley,Male,4739,1976-07-16,O- -John Jackson,Male,4740,1967-12-22,B+ -Amber Taylor,Female,4741,1962-03-11,O+ -Melissa Pitts,Male,4742,1987-05-16,B+ -Tyler Little,Male,4743,1975-08-07,B+ -Julie Robles,Female,4744,1963-07-25,O- -Abigail Grant,Female,4745,1936-10-04,B+ -John Norris,Female,4746,1968-11-25,A- -Tracy Bradley,Female,4747,1971-03-09,O- -Jeremy Floyd III,Female,4748,2001-02-03,B+ -Matthew Roberts,Male,4749,1972-10-26,B+ -Paul Williams,Male,4750,1961-08-12,A+ -Steven Hickman,Female,4751,1963-10-02,B+ -John Sexton,Male,4752,1969-01-26,AB- -Diane Mccarthy,Female,4753,1972-07-02,A- -Justin Galloway,Female,4754,1969-02-25,B- -Karen Smith,Male,4755,1984-09-25,O+ -Rebecca Gilbert,Male,4756,1959-07-03,AB+ -Vanessa Thompson DDS,Female,4757,1963-08-01,B+ -Amanda Wilson,Female,4758,1983-04-12,A- -Brittany Vega,Female,4759,1975-08-26,AB+ -Terry Richardson,Female,4760,1997-02-02,B- -Joshua Mcbride,Female,4761,1948-02-10,A- -Michael Small,Female,4762,1938-11-27,O+ -Brian Bates,Male,4763,1950-04-21,A- -Calvin Wilson,Female,4764,1993-05-25,AB+ -Joshua Alexander,Female,4765,1975-08-15,AB+ -Carlos Lopez,Female,4766,1960-06-08,A+ -Anthony Decker,Male,4767,1976-06-12,B+ -Michael Becker,Male,4768,1943-07-30,O- -Heather Moreno,Male,4769,1997-12-24,A- -Stephanie Cooley,Male,4771,1941-09-16,AB+ -Andrea Dawson,Male,4772,1996-10-02,AB- -Theresa Anderson,Male,4773,1943-01-29,O+ -Zachary Williams,Female,4774,1977-02-11,AB- -Michael Arellano,Female,4775,1940-06-29,B- -Kelsey Jensen,Female,4776,1999-03-15,A- -Kimberly Davis,Male,4777,1970-10-19,A+ -Linda Rodriguez,Female,4778,1944-11-28,O+ -Steve Martin,Female,4779,1933-10-12,A+ -Lee Hall,Female,4780,1957-01-04,O- -Karen Mann,Female,4781,1992-09-30,AB+ -Brian Figueroa,Female,4782,1968-02-17,B+ -Pamela Chavez,Female,4783,1983-07-02,O+ -Brian Alvarez,Male,4784,1961-09-15,B- -Ronald James,Female,4785,1986-08-26,B+ -Olivia Walsh,Male,4786,1945-06-05,A- -Kelly Colon,Female,4787,1998-05-03,O- -Jimmy Nicholson,Female,4788,1945-11-28,O- -Katherine Arnold,Male,4789,1998-03-22,A+ -Francis Brown,Male,4790,1991-02-08,O- -Richard Garcia,Male,4791,1957-11-14,O+ -John Silva,Female,4792,1963-07-18,A+ -Peter Bennett,Female,4793,1965-12-14,B+ -Christopher Fernandez,Male,4794,1983-05-16,O- -Ana Hale,Male,4795,1986-01-13,A- -Jamie Obrien,Male,4796,1964-10-16,B+ -Brandon Mann,Female,4797,1983-09-24,B- -Laurie Martin,Female,4798,2002-09-24,A- -Jordan Gordon,Male,4799,1991-05-13,AB- -Jamie Martin,Male,4800,1979-12-03,O+ -Benjamin Johnson,Female,4801,1998-02-14,B- -Nicole Young,Male,4803,1937-07-12,B- -Hannah Cruz,Female,4804,1966-01-08,A+ -Daniel Morris,Male,4805,1993-02-23,AB+ -Susan Carlson,Male,4806,2000-05-24,A+ -Kevin Allison,Female,4807,1975-06-03,O+ -Michael Pacheco,Male,4808,1994-12-27,O+ -Joseph Rivera,Male,4809,1987-06-06,A+ -Nicholas Henderson,Female,4810,1939-06-13,AB+ -Christina Blankenship,Male,4811,1949-10-02,A- -Scott Wong,Male,4812,1985-04-17,A+ -Courtney Harris,Male,4813,1962-05-07,O+ -Lindsey Jacobs,Male,4814,1944-01-29,AB+ -Anthony Hale,Male,4815,1998-02-18,O+ -Jason Dixon,Male,4816,1937-06-01,AB+ -Noah Evans,Female,4817,1980-04-23,AB+ -Shannon Vazquez,Male,4818,1971-04-24,B+ -James Cummings,Female,4819,1998-01-11,A+ -Robin Harper,Male,4820,1962-05-27,A+ -Kimberly Watkins,Female,4821,1963-08-14,A+ -Brian Cabrera,Male,4822,1957-06-02,AB+ -Billy Johnson,Female,4824,1938-12-18,AB+ -Michael Castro,Male,4825,1969-05-03,O+ -Amanda Thompson,Female,4826,1942-06-05,B- -Kirk Jones,Female,4827,1964-05-03,A+ -Susan Li,Female,4828,1953-11-08,B+ -Jennifer Spencer,Male,4829,1955-02-07,AB- -Carlos Graham,Female,4830,1985-01-18,O+ -Heather Allen,Male,4831,1939-09-22,O+ -Kelly Hebert,Male,4832,1963-09-02,O- -Kevin Farmer,Male,4833,1960-01-09,A+ -Cynthia Farley,Female,4834,1937-10-03,A- -Thomas Arnold,Female,4835,1990-05-29,O+ -Mike Duarte,Female,4836,1992-11-14,O- -Justin Brady,Female,4837,1966-10-01,AB- -Robert Burton,Male,4838,1930-06-02,B+ -Kenneth Cunningham,Male,4839,1990-08-12,AB- -Jonathon Perez,Female,4840,1960-07-18,A- -Julie Wolfe,Male,4841,1960-05-31,A+ -Andrew Mcdonald,Male,4842,1937-09-01,AB+ -Latoya Carpenter DDS,Male,4843,1944-07-16,O- -Ronald Singleton MD,Female,4844,1957-03-24,AB+ -Gregory Adams,Male,4845,1937-02-23,AB- -Mr. Tyler Baxter,Female,4846,1963-01-15,AB- -Thomas Evans,Female,4847,1933-01-09,B- -Mrs. Lydia Jones,Female,4848,1959-05-17,B- -Mr. Terry Jackson,Male,4849,1995-01-05,B+ -Kathleen Whitaker,Male,4850,1986-05-10,A- -Stephen Chavez,Male,4851,1985-05-30,B- -Brian Roach,Male,4852,1949-11-20,B- -Andrea Davis,Female,4853,1935-03-30,A- -Roger Leonard,Female,4854,1995-01-09,O+ -Lindsay Oneill,Female,4855,1983-04-09,B- -Kimberly Morales,Female,4856,2000-01-16,O+ -Justin Jones,Female,4857,1931-02-11,O+ -Donald Sparks,Female,4858,1967-06-25,A+ -Jason Smith,Male,4859,1930-06-16,O+ -James Robinson,Male,4860,1931-05-24,O+ -Dennis Todd,Female,4861,1979-05-29,B- -Shannon Brooks,Female,4862,1940-01-13,O+ -Alexandra Wilson,Female,4863,1984-05-30,AB+ -Brandi Brown,Male,4864,1965-09-24,A- -Robin Lee,Male,4865,1931-11-12,B- -Tonya Smith,Female,4866,1981-10-08,A- -Laura Warner,Female,4867,1980-08-30,O- -Candice Brown,Female,4868,1989-04-05,B- -Nicole Porter,Male,4869,1941-12-06,O+ -Jesus Nelson,Male,4870,1933-09-25,AB+ -Natalie Thomas,Female,4871,1956-01-28,A- -Caroline Moody,Female,4872,1936-04-11,B- -David Cunningham,Male,4873,1934-03-19,AB+ -Brittney Boone,Female,4874,1939-05-02,A- -Jason Hernandez,Female,4876,1996-01-21,O- -Jennifer Bishop,Male,4877,1953-12-18,AB- -Courtney Parker,Male,4878,2000-04-18,B+ -Robert Taylor,Female,4879,1980-01-26,B+ -Jeremiah Ewing,Female,4880,1930-06-24,O- -Ryan Decker,Male,4881,1936-02-09,AB- -Aaron Calderon,Female,4882,1941-09-27,A+ -Jacob Morris,Female,4883,1986-04-01,AB- -Katie Moody,Female,4884,1963-03-01,A+ -Oscar Lane,Female,4885,1949-06-16,B- -Dr. Vanessa Barnes,Male,4886,1956-07-12,A+ -Zachary Aguirre,Female,4887,1962-12-25,B+ -Mrs. Charlene Young,Female,4888,1983-07-17,B+ -Wesley Vincent,Male,4889,1979-02-24,AB+ -Michelle Branch,Male,4890,1933-02-25,A+ -Crystal Williams,Male,4891,1950-11-11,AB+ -Erica Roberts,Female,4892,1946-07-09,B+ -Thomas Oliver,Male,4893,1953-06-09,A- -Scott Thompson,Male,4894,1943-07-18,A- -Edward Jackson,Female,4895,1997-05-27,AB- -Benjamin Duncan,Female,4896,1935-03-23,AB- -Adrian Sandoval,Female,4897,1939-07-23,AB- -Megan Hayes,Male,4898,1981-10-19,A+ -Morgan Wallace,Male,4899,1941-06-05,AB- -Timothy Chandler,Male,4900,1960-04-18,A+ -Anthony Hanna,Male,4901,2002-04-13,A+ -Henry Hays,Male,4902,1978-05-26,O+ -Stephen Malone,Female,4903,1943-01-22,O+ -Jose Santiago,Male,4904,1943-02-18,A+ -Michele Mendoza,Male,4906,1965-09-20,A- -Courtney Martin,Male,4907,1968-11-28,AB+ -Lori Woodard,Male,4908,1993-09-02,B+ -Jason Fox,Male,4909,1982-12-30,B+ -Julia Jackson,Male,4910,1985-08-06,B- -Sarah Lopez,Female,4911,1943-09-07,O- -Janice Ibarra,Female,4912,1994-02-10,O+ -James Huff,Male,4913,1977-07-29,A+ -David Bailey,Male,4914,1952-03-18,O- -Julie Compton,Female,4915,1944-06-23,O+ -Miss Cynthia Massey,Male,4916,1958-12-18,B- -Robert Franklin,Male,4917,1980-12-28,B+ -Evan Jimenez,Male,4918,1978-11-25,AB+ -Michael Wilson,Female,4919,1947-08-06,A+ -Gregory Carpenter,Female,4920,1961-10-04,B- -Danielle Johnson,Female,4921,1931-01-25,B+ -Hannah Solomon,Female,4922,1932-09-26,A- -Valerie Williams,Female,4923,1965-01-29,O+ -Justin Bennett,Male,4924,1972-09-16,A+ -Anna Martin,Male,4925,1935-01-30,O- -Gary Cook,Female,4926,1952-03-31,A- -Kenneth Rivers,Female,4927,1967-10-08,B+ -Amy Nichols,Male,4928,1999-02-02,A- -Sandra Johnson,Male,4929,1937-07-26,AB- -Austin Oneal,Female,4930,1984-11-20,AB+ -Elizabeth Mcintyre,Male,4931,1943-08-27,B+ -Justin Bean,Male,4932,1934-01-21,A- -Michael Chavez,Female,4933,1994-09-22,O+ -Mitchell Ruiz,Male,4934,1940-03-20,AB+ -Amanda Peterson,Female,4935,1994-09-28,A+ -Bonnie Brooks,Male,4937,1976-02-04,AB- -Andrew Miller,Female,4938,2001-06-30,B+ -Anna Rubio,Female,4939,1983-04-30,B- -Nicole Daugherty,Female,4940,1977-04-10,AB+ -Desiree Williams,Female,4941,1986-12-05,O- -Dustin Davis,Male,4942,1985-12-30,O+ -Tracy Smith,Female,4943,1959-06-16,B+ -Michelle Hawkins,Female,4944,1983-10-31,O- -Joseph Daniels,Male,4945,1974-08-29,AB+ -Rodney Zimmerman,Male,4946,1953-06-15,B+ -Amanda Chase,Male,4947,1962-07-21,AB- -Joy Jones,Female,4948,1996-08-17,B- -Elizabeth Ponce,Female,4949,1960-10-24,B- -Todd Peck,Male,4950,1987-09-13,O- -Caitlyn Fisher,Male,4951,1961-04-30,A+ -Kevin Watson,Female,4952,1967-01-08,A+ -Shawn Brooks,Female,4953,1987-06-10,AB- -Joel Moore,Female,4954,1942-06-26,B- -Kathryn West,Male,4955,1974-05-09,O- -Nathan Holloway,Female,4956,1949-12-18,O- -Autumn Cardenas,Male,4957,1952-05-05,B+ -Lisa Long,Female,4958,1930-04-23,B+ -Joseph Mendoza,Female,4959,1988-11-27,O- -Jennifer Moran,Male,4960,1983-08-12,B+ -Richard Johnson,Male,4961,1973-08-07,AB+ -Edgar Compton,Female,4962,2002-07-22,B+ -Paul Parker,Female,4963,1975-03-29,AB- -Kevin King MD,Female,4964,1933-11-25,A+ -Justin Davis,Female,4965,1982-12-07,A+ -Deborah Salazar,Female,4966,1983-07-14,AB+ -Mrs. Tricia Porter,Male,4967,1998-09-13,O+ -Ronald Deleon,Male,4968,1959-08-05,AB+ -Chase Cooke,Male,4969,1946-07-19,AB- -Larry Barnes,Male,4970,1949-02-19,O- -Derrick Hoffman,Male,4971,1994-09-02,AB+ -Anthony Burton,Female,4972,1947-02-22,O- -Tammy Lopez,Male,4973,1932-06-06,AB- -James Garner,Female,4974,1983-05-11,A- -Jeremy Johnson,Male,4975,1974-12-29,AB- -Alexandria Lewis,Female,4976,1985-09-04,B- -Regina Vargas,Female,4977,1984-08-09,O- -Brian Black,Female,4978,1974-11-28,A+ -Sarah Medina MD,Female,4979,1988-01-22,AB+ -Nathaniel Fuller,Male,4980,1992-03-20,A- -Nicole Morris,Female,4982,1996-12-02,AB- -Keith Lindsey,Female,4983,2001-04-27,O- -Willie White,Male,4984,1963-07-20,A- -Randy Anthony,Female,4985,1981-12-29,O+ -Louis Evans,Male,4986,1951-06-26,B- -Rachel Smith,Female,4987,1998-07-10,O+ -Justin Peterson,Male,4988,1947-08-12,AB- -Timothy Leon,Female,4989,1966-10-31,O+ -Joseph Adams,Male,4990,1966-09-04,O+ -Cory Clark,Male,4991,1940-04-23,B- -Emily Campbell,Male,4992,1981-07-14,B- -Tara Murray,Male,4994,1973-09-02,B+ -Angela Cervantes,Female,4995,1964-03-25,B- -Rodney Harris,Female,4996,1956-09-02,A- -Ruth Mason,Female,4997,1992-04-07,B+ -Leonard Oneill,Male,4998,1997-08-20,B- -Jennifer White,Female,4999,1946-04-08,O+ -Donna Miller,Female,5000,1995-10-15,A+ -John Shaffer,Female,5001,1943-04-18,A+ -Joshua Kelly,Male,5002,1992-10-13,B+ -Garrett Sullivan,Male,5003,1994-07-24,B- -Anita Hill,Male,5004,1991-01-16,A- -Melissa Spencer,Female,5005,1992-08-08,AB+ -Shelby Moore,Female,5006,1971-07-11,O- -Sandra Fernandez,Female,5007,1982-06-02,AB- -Mary White,Female,5008,1987-01-22,A- -Jessica Marquez,Male,5009,2001-02-28,AB+ -Aaron Hicks,Female,5010,1992-04-10,AB- -Nancy Kim,Female,5011,1990-06-12,AB+ -Makayla Brady,Female,5012,1945-11-06,AB+ -Ashley Robinson,Male,5013,1930-07-21,B+ -Tiffany Wang,Female,5014,1991-09-22,A+ -Adam Richmond,Female,5016,1958-12-01,O- -Jennifer Williams,Female,5017,1976-04-10,AB+ -Samantha Morgan,Female,5018,1951-03-09,B- -Stephanie Murphy,Female,5019,2000-12-16,AB- -Tony Obrien,Female,5020,1935-06-12,A- -Pamela Miller,Female,5021,1972-04-11,A+ -John Fry,Male,5022,1962-02-19,AB- -Dustin Owens,Male,5023,1969-01-12,B+ -Erika Walker,Female,5024,1985-04-08,B- -Stacey Cohen,Male,5025,1990-10-05,B- -Jamie Novak,Female,5026,1949-08-11,AB+ -John Reynolds,Male,5028,1965-10-09,B- -Crystal Hatfield,Female,5029,1991-12-12,O- -Andrew Garrett,Male,5030,1968-08-23,B+ -Diamond Wright,Female,5031,1952-12-30,B- -Allison Davidson,Female,5032,1945-06-04,AB+ -Andrea Macdonald,Male,5033,1945-10-04,AB- -Henry Kim,Female,5034,1959-08-22,B+ -Jennifer Spencer,Female,5036,1992-02-18,B- -Shirley Allen,Female,5037,1941-04-10,A+ -Kathryn Rodriguez,Male,5038,1997-09-15,B+ -Monica Perez,Female,5039,1934-02-27,B+ -Benjamin Duran,Female,5040,1991-09-25,A- -Mark Farmer,Female,5041,1974-10-03,A+ -Cameron Martin,Male,5042,1937-02-13,A+ -Zachary Ortega,Male,5043,1966-03-30,AB- -Tiffany Richmond,Female,5044,1980-11-13,O+ -Karen James,Male,5045,1939-09-25,A- -Shannon Valentine,Male,5046,1974-05-03,A+ -Deborah May,Male,5047,1982-08-29,A+ -Robert Anderson,Female,5048,1971-10-06,O+ -Sean Ramirez,Female,5049,1974-05-04,AB- -Denise Fischer,Female,5050,1934-10-09,A- -Christopher Williams,Female,5051,1933-07-30,A+ -Matthew Perry,Male,5052,1940-07-16,AB+ -Jason Johnson,Female,5053,1963-11-04,AB- -Yolanda Ross,Female,5054,1964-12-16,A- -Mary Walters,Female,5055,1995-06-12,A+ -Craig Moore,Male,5056,1965-09-06,A+ -Daniel Norman,Male,5057,1941-06-27,O+ -Mark Carlson,Male,5058,1989-01-13,A- -Henry Skinner,Female,5059,1981-11-08,AB+ -Michael Torres,Male,5060,1981-03-03,AB- -James Wallace,Male,5061,1950-11-11,B- -Mary Holmes,Female,5062,1955-05-30,O- -Elizabeth Mccoy,Male,5063,1937-03-27,AB+ -Bradley Humphrey,Male,5064,1955-08-27,B- -Christopher Day,Male,5065,1969-02-21,AB+ -Daniel Patrick,Female,5066,1992-05-28,A- -Gordon Thompson,Female,5067,1972-04-08,B- -Alicia Brewer,Female,5068,1972-11-30,A- -Ebony White,Female,5069,1943-01-10,B- -Peter Bishop,Female,5070,1938-03-14,AB+ -Lisa Stewart,Male,5071,1998-10-26,O+ -Danielle Flores,Male,5072,1971-09-09,AB+ -Dr. Harold Fischer,Female,5073,1933-06-25,A- -Nicole Shelton,Female,5074,1934-12-19,AB+ -Katrina Schultz,Female,5075,1998-12-15,B+ -Kimberly Hill,Female,5076,1981-08-06,B+ -Andrea Morgan,Male,5077,1986-02-20,B- -Sheri Dixon,Female,5078,1991-08-17,B+ -Lisa White,Female,5079,1953-03-16,O- -Sara Moody,Male,5080,1942-01-14,B- -Alyssa Mcdonald,Female,5081,1955-06-02,B+ -Zachary Norton,Male,5082,1966-06-19,A+ -Douglas Yates,Male,5083,1977-02-03,AB+ -Don Davis,Male,5084,1994-11-09,AB- -Colleen Mitchell,Female,5085,1994-12-06,AB+ -Tamara Doyle,Female,5086,1930-03-24,B+ -Matthew Frost,Male,5087,1935-04-05,O+ -Penny Hebert,Female,5088,1951-05-28,A- -Kevin Lopez,Male,5089,1961-12-27,AB- -Jordan Finley,Male,5090,1961-01-14,B- -Eugene Bates MD,Male,5091,1972-09-13,O+ -Thomas Barnes,Female,5092,1935-09-25,AB+ -Sarah Brown,Male,5093,1965-05-02,B+ -Sarah Benjamin,Male,5094,1994-03-21,B- -Michelle Anthony,Male,5095,1996-09-02,B- -Alexandria Gonzalez,Female,5096,1952-11-28,A+ -Christopher Gonzalez,Female,5097,1944-06-21,A+ -Julie Davis,Male,5098,1959-11-01,B+ -Sandra Carter,Male,5099,1943-07-09,B+ -Kirk Berry III,Female,5100,1975-11-14,O- -Desiree Oconnor,Female,5101,1979-11-02,A+ -Daniel Flores,Male,5102,1980-08-11,A- -David Schultz,Female,5103,1965-07-13,AB- -Bruce Torres,Male,5104,1984-05-31,B- -Jennifer Willis,Male,5105,1979-09-24,A+ -Jeffrey Murphy,Male,5106,1951-01-05,B+ -Kevin Vazquez,Male,5107,1978-08-05,O- -Andrea Lambert,Female,5108,1994-10-30,B+ -Jose Flores,Male,5109,1940-01-25,B+ -Nicholas Wright,Female,5110,1936-08-23,B+ -Alan Velasquez,Female,5111,1997-06-26,AB+ -Diane Clark,Female,5112,1997-01-02,AB- -Nathan Sanders Jr.,Male,5113,1938-02-10,A+ -John Hill,Male,5114,1932-05-09,B- -Christina Simmons,Female,5115,1962-12-27,AB+ -Sarah Calhoun,Female,5116,1941-05-01,B+ -Mason Washington,Female,5117,1936-08-21,A- -David Gonzalez,Male,5118,2000-03-14,B- -Chad Riley,Female,5119,1958-07-02,AB+ -Jenny Vazquez,Female,5120,1940-12-31,A- -Darren Anderson,Male,5121,1958-08-13,A- -Melissa Taylor,Female,5122,1958-02-21,AB- -Dr. Christopher Rogers,Female,5123,1998-04-18,B- -Lynn Koch,Female,5124,1960-02-09,A+ -Lauren Garner,Female,5125,1997-09-12,A+ -Michael Munoz,Male,5126,1933-02-08,O- -Susan Cochran,Male,5127,1989-01-01,AB+ -Kelly Barnes,Male,5128,1944-01-07,O- -Joseph Brooks,Female,5129,1945-08-04,O+ -Monique Rodriguez,Female,5130,1991-08-29,A+ -Brian Watkins,Male,5132,1989-11-16,AB+ -Justin Caldwell,Female,5134,1941-05-27,AB- -Shannon Osborne,Male,5135,1981-04-13,O- -Rebecca Eaton,Female,5136,1943-10-19,AB- -Anne Coleman,Female,5137,1988-04-07,AB- -Samantha Wilson,Female,5138,1970-01-22,B+ -Austin Hull,Female,5139,1958-08-04,B+ -Paula Clark,Male,5140,1952-08-05,AB- -Laura Walton,Female,5141,1988-08-29,O- -Brianna Hardy,Female,5142,1985-07-16,B+ -Jacob Pierce,Female,5143,1978-07-09,O+ -Tyler Benjamin,Female,5144,1978-02-06,A- -Kent Carrillo,Female,5145,1986-12-23,A- -Brandon Obrien,Male,5146,1934-04-01,B+ -Lindsey Burgess,Male,5147,1964-07-26,O- -Steven Jenkins,Male,5148,1934-06-18,A- -Rebecca Davis,Female,5149,2000-12-02,B- -Courtney Hansen,Male,5150,1979-01-14,A- -Juan Flynn,Male,5151,2001-11-13,A+ -Jeremy White,Female,5153,1933-09-23,O- -Darin Rhodes,Female,5154,2001-08-05,B+ -Shawna Young,Female,5155,1941-12-19,B+ -Jon Thomas,Female,5156,1944-06-19,A- -Sean Brown,Male,5157,1950-11-02,O- -Christopher Scott,Male,5158,1958-11-28,O+ -Michael Ashley,Male,5160,1970-11-11,B- -Joseph Brown,Female,5161,1970-08-18,B+ -Connie Alvarez,Female,5162,1962-09-19,O- -Rachel Stewart DDS,Female,5163,1959-02-04,B+ -Alexis Miller,Female,5164,1935-06-17,B+ -Rachel Davis,Male,5165,1932-05-19,A+ -Natasha Goodwin,Female,5166,1932-10-11,A- -Nancy Johnson,Female,5167,1957-08-30,A+ -Holly May,Female,5168,1976-07-04,A- -Adam Mueller,Male,5170,1962-11-22,B+ -Mrs. Kristin Trujillo,Female,5171,1931-11-22,O- -Lisa Graves,Male,5172,1998-08-21,AB- -Alice Roth,Female,5173,1976-03-13,A- -Logan Adams,Male,5174,1993-08-26,AB- -Jessica Michael,Male,5175,1994-09-06,B- -Robert Hunter,Male,5176,1959-06-06,A+ -Angela Wheeler,Male,5177,1996-03-05,AB- -Ryan Jackson,Female,5178,1951-12-21,A+ -Jessica Schultz,Female,5179,1975-08-31,A- -Cindy Robinson,Male,5181,1945-01-10,A- -Kendra Walker,Female,5182,1985-11-19,B- -Eugene Fisher DDS,Female,5183,1960-03-19,A- -Michael Harding,Male,5184,1982-10-31,B+ -Lauren Davis,Female,5185,2001-12-27,B- -Robert Cowan,Female,5186,1987-11-06,AB- -Zachary Pearson,Male,5187,1979-12-27,A- -Jamie Smith,Female,5188,1965-03-13,O- -Michelle Charles,Female,5189,1983-10-12,AB+ -Cheryl Mason,Male,5190,1937-09-18,O+ -Angie Peterson,Female,5191,1998-07-03,B+ -Stacey Wright,Female,5192,1984-10-29,AB+ -John Johnson,Male,5193,1942-03-17,AB+ -Patricia Sullivan,Male,5195,1944-07-13,A+ -Debra Figueroa,Female,5196,1954-06-17,B+ -Benjamin Adams,Male,5197,1980-06-12,B+ -Tammy Gomez,Female,5198,1976-09-19,B- -Daniel Brown,Female,5199,1959-03-09,A+ -Margaret Chung,Female,5200,1945-09-17,AB- -Carolyn Stanley,Female,5201,1945-07-09,O+ -Aaron Hamilton,Male,5202,2001-01-02,AB- -Melissa Thomas,Male,5203,1969-07-02,O- -Christine Edwards,Male,5204,1951-01-28,O+ -Gina Gonzales,Female,5205,1996-11-07,A+ -Sandra Ingram,Male,5206,1975-01-11,A- -Christopher Davis,Male,5207,1951-06-09,A- -Mr. Chad Gray PhD,Male,5208,1959-06-09,A+ -Mathew Reilly,Female,5209,1966-10-29,AB- -Victoria Castillo,Male,5210,1950-02-17,A+ -Raymond Morton,Female,5211,1967-01-03,A+ -Amy Barnes,Female,5212,1993-10-16,AB+ -Tiffany Stewart,Male,5213,1952-10-18,O- -Joseph Schneider,Male,5214,1939-12-24,B+ -Lorraine Key,Male,5215,1988-06-19,A- -Jody Taylor,Male,5217,1951-11-30,AB+ -Sierra Johnson,Female,5218,1938-12-23,A+ -Lindsay Johnson,Female,5219,1949-12-23,B- -Edward Ramirez,Male,5220,1999-07-16,AB+ -Elizabeth Jones,Male,5221,1938-06-02,A+ -Christine Jones,Female,5223,1966-04-23,A- -Nicholas Jacobs,Male,5224,1960-08-04,B+ -Daniel Goodwin,Male,5225,1952-10-04,A+ -Shane Holland,Male,5226,1995-07-15,O- -Pamela Jones,Male,5227,1934-06-26,AB- -Todd Oneill,Female,5228,1967-05-19,O+ -Kevin Browning,Female,5229,1943-12-22,AB+ -James Friedman,Male,5230,1999-10-26,AB+ -Courtney Holmes,Female,5231,1976-08-15,AB+ -Christopher Day,Female,5232,1935-07-26,A+ -Cory Carter,Female,5233,1937-07-24,B+ -Elizabeth Hernandez,Female,5234,1971-08-09,O- -Sean Clarke,Female,5235,1980-07-09,B+ -Jennifer Meza,Male,5236,1975-07-09,A+ -Stacy Martin,Female,5237,1937-04-22,A+ -James Nelson,Male,5238,1970-01-29,AB- -Daniel Rodriguez,Male,5239,1973-09-06,B- -Jennifer Brown,Female,5240,1977-01-20,O- -Jordan Bass,Female,5241,1988-09-16,AB+ -Patrick Simpson,Female,5242,1963-10-31,O+ -Glenda Miles,Male,5243,1930-07-15,AB+ -Ronald Mcguire,Female,5244,1935-12-28,B+ -Charlene James,Female,5245,1962-01-20,A+ -Kathleen Chambers,Male,5246,1936-05-19,O- -Charles Davis,Male,5248,1988-02-11,A- -Bryan Beasley,Female,5249,1939-11-16,O- -Ryan Espinoza,Male,5250,1998-01-16,O- -Francis Fitzpatrick,Male,5251,1930-03-02,B- -William Deleon,Male,5252,2002-07-11,AB+ -Tina Ramsey,Male,5253,1969-05-23,B- -Matthew Livingston,Male,5254,1940-10-02,A- -Jeanne Perez,Female,5255,1947-03-29,A- -Alexander Henderson,Female,5256,1967-04-19,AB- -Monica Lang,Male,5257,1968-09-03,B+ -Christopher Contreras,Male,5258,1937-02-04,O+ -Nicole Anderson,Female,5259,1998-11-02,AB- -James Lane,Female,5260,1963-03-16,A+ -Robert Bates,Male,5261,1973-02-12,B- -Cynthia Smith,Male,5262,2001-08-03,B- -Robyn Griffith,Male,5263,1946-10-05,AB- -Stephen Hernandez,Male,5264,1933-04-15,A+ -Hannah Moore,Male,5265,1973-01-16,O- -Stacy Stewart,Male,5267,1982-09-03,A+ -Brooke Robinson,Male,5268,1960-05-10,AB+ -Jeffery Scott,Male,5269,1994-02-02,AB- -Jonathon Brown,Male,5270,2000-09-02,B+ -Rhonda Ball,Female,5271,1949-02-02,A+ -Charles Mitchell,Female,5272,1930-05-17,O- -Charles Watts,Female,5273,1977-09-04,A+ -Derek Woodard,Female,5274,1972-01-07,B- -Sean Harris,Male,5275,1981-12-17,O+ -Kelly Carr DVM,Male,5276,1994-08-03,B- -Diane Reese,Male,5277,1931-10-24,B+ -Jacob Buckley,Female,5278,1936-10-08,A- -Stephanie Blake,Male,5279,1930-03-28,O+ -James Avery,Male,5280,1959-04-23,A- -Ashley Ortiz,Female,5281,1947-01-11,A+ -Monica Gonzalez,Female,5282,1997-02-25,AB+ -Kimberly Livingston,Female,5283,1974-09-09,B+ -Benjamin Finley,Male,5285,1970-05-20,A+ -Maria Rodriguez,Male,5286,1949-01-29,O- -Nicole Hull,Female,5287,1982-06-14,A+ -Sarah Morgan,Male,5288,1967-03-24,O+ -Kimberly Adams,Male,5289,1934-08-28,B- -Andrew Lopez,Male,5290,1937-05-24,AB+ -Steven Snyder,Female,5291,1993-07-08,A- -Christine Trevino,Male,5293,1962-05-14,A+ -Erica Pruitt,Female,5294,1979-05-15,A+ -John Pitts,Male,5295,1991-05-23,B- -Marcus Russell,Female,5296,1988-12-30,AB+ -Rachel Carter,Female,5297,1945-02-11,AB- -Rachel Gray,Female,5298,1961-07-07,A- -Javier Fox,Male,5299,1940-02-05,A+ -Douglas Lyons,Female,5300,1976-06-28,A+ -Holly Clark,Male,5301,1987-04-21,AB- -Jonathan Keller DVM,Male,5302,1998-08-12,A- -Jessica Moore,Female,5303,1954-03-13,O+ -Mrs. Gabrielle Willis,Male,5304,1970-12-12,O+ -Michele Scott,Female,5305,1960-11-20,B+ -Morgan Christensen,Male,5306,1968-02-08,B+ -Christopher Zamora,Male,5307,1943-01-10,O- -Savannah Terry,Female,5308,1965-09-19,B- -Diana Thornton,Male,5310,1986-11-11,AB+ -Jody Hernandez,Male,5311,1954-05-27,A+ -Paul Golden,Male,5312,1942-12-17,A- -Sarah Anderson,Male,5313,1949-05-22,A+ -Kenneth Lowery,Male,5314,1953-10-17,B+ -Shelly Zavala,Female,5316,1994-05-06,O- -Vincent Young,Male,5317,1987-10-22,A- -Ashley Santiago,Female,5318,1934-08-01,A- -Connie Taylor,Male,5319,1969-03-15,A+ -Mr. Jared Barry,Male,5320,1997-08-07,B- -Melanie Walker,Female,5321,1960-08-02,O- -Miranda Cohen,Female,5322,2002-01-15,B- -Raymond Cruz,Male,5323,1967-02-01,O- -Kathleen Graham,Male,5324,1962-04-26,A+ -Joshua Simpson,Male,5325,1994-07-06,O- -Mariah Dalton,Male,5326,1936-04-13,O+ -Nicole Santiago,Male,5327,1939-12-10,A- -Erik Wilson,Male,5328,1971-04-29,AB+ -Kathryn Castillo,Male,5329,1975-04-05,A+ -Gerald Knox,Male,5330,1969-07-28,AB- -Angel Armstrong,Male,5331,1963-05-02,AB+ -Katherine Freeman,Female,5332,1939-06-16,A+ -Cathy Rhodes,Female,5333,1942-05-05,AB+ -Samuel Gilbert,Male,5334,1990-09-10,O+ -Lori Kim,Female,5335,1996-01-30,AB+ -Michael Nielsen,Female,5336,1959-01-11,O- -Robert Henderson,Female,5337,1945-05-30,B+ -Mark Ruiz,Male,5338,1952-10-20,AB+ -Kimberly Nichols,Male,5339,1972-07-13,A+ -Matthew Cruz,Male,5340,1984-01-22,AB- -Victoria Johnson,Male,5341,1983-02-01,AB- -Courtney Suarez,Female,5342,1939-09-23,B+ -Ashley Thompson,Female,5343,1974-11-28,B- -Jasmine Smith,Female,5344,1936-02-21,B+ -Joanne Smith,Female,5345,1970-02-25,A- -Ashley Barron,Female,5346,1992-02-27,AB+ -Deborah Robinson,Male,5347,1943-12-16,AB- -Lee Smith,Male,5348,1953-08-28,B+ -William Smith,Female,5349,1935-05-03,AB+ -Denise Lee,Male,5350,1999-11-16,A- -Nathaniel Durham,Female,5351,1945-05-20,AB- -Ronald Lee,Male,5352,1941-08-07,A- -Tanya Robinson,Male,5353,1993-10-02,AB+ -Brandon Miller,Male,5354,1935-04-05,A+ -Janice Savage,Male,5355,1960-07-31,AB+ -Christina Robbins,Male,5356,1941-06-20,B+ -Sarah Moore,Male,5357,1963-06-04,A- -Samuel Christensen,Female,5358,1930-08-27,A+ -Thomas Moran,Male,5359,1930-07-24,A+ -David Gonzales,Female,5360,1959-07-27,B- -Catherine George,Male,5361,1945-03-15,AB- -Amanda Aguilar,Female,5362,1943-06-29,O- -Tracy Hale,Male,5363,1960-07-26,A+ -Bradley Ryan,Male,5364,1942-01-08,A- -Richard Lee,Female,5365,1982-03-20,AB- -Jesus Griffin,Female,5366,1988-05-31,O+ -Mr. Victor Austin,Male,5367,1972-10-28,AB+ -Charles Hampton MD,Male,5368,1946-11-13,B+ -Nicholas Hayden,Female,5369,1989-08-11,A- -Michelle Reilly,Male,5370,2000-12-23,O+ -Diane Wallace,Male,5371,1973-04-15,A- -Bonnie Young,Female,5372,1944-01-14,AB+ -Linda Lawrence,Female,5373,1932-03-27,B- -Michele Jones,Female,5374,1966-09-23,A- -Donna Lewis,Female,5375,1999-07-14,A+ -Jeffrey Garcia,Female,5376,1930-07-12,O- -Shannon Smith,Male,5377,1979-09-21,A+ -George Townsend,Male,5378,1939-12-25,AB+ -Lori Atkinson,Male,5379,1965-02-02,A- -Lindsey Johnson,Male,5380,1947-04-16,O- -Erik Curtis,Male,5381,1997-12-21,A+ -Daniel Castillo,Female,5382,1979-10-03,O- -Kelly Collins,Female,5383,1950-03-11,B+ -Melissa Pacheco,Female,5384,1940-02-18,AB+ -Mckenzie Roberson,Male,5385,1959-03-05,B- -Maria Schmitt,Male,5386,1971-06-04,B- -Andrew Cantrell,Male,5387,1955-08-17,A- -Heather Watkins,Male,5388,1940-08-29,A+ -Kimberly Bond,Female,5389,1948-08-25,O+ -Lisa Alvarado,Male,5390,1955-06-07,AB+ -Dennis King,Male,5391,1982-03-12,A+ -Shawn Mcintyre,Female,5392,2002-05-06,A+ -Christopher Campbell,Male,5394,1985-07-19,B- -Cynthia Clark,Male,5395,1994-09-26,A- -Joseph Williams,Female,5396,1931-05-20,O- -Caleb Chandler,Male,5397,1956-11-13,AB+ -Michael Sanchez,Female,5398,1970-03-03,B+ -Mr. Andrew Dunn,Female,5399,1959-05-27,O- -Vincent Willis,Male,5400,2001-01-31,AB- -Miguel Miranda,Female,5401,1960-08-17,AB- -Deanna Deleon,Female,5402,1948-07-18,AB+ -Tina Lin,Female,5403,1940-06-13,A- -Shannon Lloyd,Female,5404,1931-12-19,O+ -Andrea Fernandez,Male,5405,1961-12-20,AB- -Miranda Armstrong,Male,5406,1942-02-21,B- -William Robbins,Male,5407,1976-08-29,O+ -Danielle Lee,Female,5408,1943-11-06,A+ -Nicholas Scott,Male,5409,1985-10-31,AB- -Kayla Hughes,Female,5410,1943-09-04,B- -Mackenzie Reed,Male,5411,1941-08-05,A+ -Daniel Howard,Male,5412,1940-04-22,O+ -Justin Suarez,Female,5413,1960-08-12,AB+ -Elizabeth Taylor,Female,5415,1942-09-12,A+ -Joseph Price,Female,5416,1935-10-06,O- -Mark Rhodes,Male,5417,1955-11-13,AB+ -Mark Sanders,Female,5418,1993-06-24,AB+ -Julie Allen,Male,5419,1959-03-24,O+ -Jackson Ward,Male,5420,1998-05-03,O+ -Dawn Barry,Male,5421,1981-12-30,B- -Nicole Santos,Male,5422,1952-12-16,B- -Kenneth Gonzalez,Male,5423,1962-11-08,O- -Robert Figueroa,Male,5424,1940-03-08,AB+ -Mark White,Female,5425,1937-01-25,B+ -Dakota Norton,Male,5426,1981-11-18,A- -Erin Mclean,Male,5427,1937-07-26,O- -Samantha Phillips,Male,5428,1992-03-08,O- -Eric Whitaker,Female,5429,1946-05-28,A- -Traci Henderson,Female,5430,1958-11-01,A- -John Larson,Male,5431,1984-03-08,A- -Jill Davis,Male,5432,1999-04-16,O+ -John Kirk,Female,5433,1960-04-17,O- -Steven Cohen,Female,5434,1960-12-21,O- -Elizabeth Macdonald,Male,5435,1943-02-02,A+ -Michaela Smith,Female,5436,1941-06-09,A- -Sally Thomas,Female,5437,1971-07-14,A- -Cynthia Thomas,Female,5438,1947-09-25,B- -Richard Eaton,Female,5439,1981-12-27,B- -Joseph Rodriguez,Male,5440,1997-04-04,AB+ -Kristin Jones,Female,5441,1936-07-10,B- -Steven Ortiz,Male,5442,1976-04-24,AB- -Matthew Strong,Male,5443,1991-07-03,AB+ -Jennifer Hughes,Male,5444,1964-03-31,B+ -Shawn Mcintosh,Female,5446,1931-09-27,A- -Kimberly Oconnell,Male,5447,2002-02-17,A+ -Rebecca Keller,Female,5448,1962-11-05,B- -Christina Nelson,Male,5449,1968-10-10,A+ -Craig Klein,Female,5450,1974-11-12,B- -Ryan Gibson,Male,5451,1968-05-06,B- -Peter Jones,Female,5452,1952-12-28,A+ -Richard Johnson DDS,Male,5453,1991-02-25,O- -Christopher Calderon,Male,5454,1963-10-02,O- -Tanner Davis,Female,5455,1969-05-30,O- -Tracy Coleman,Male,5456,1990-04-06,AB- -Julie Gould,Female,5457,1996-01-18,O- -Alexis Rice,Male,5458,1991-04-18,B- -Victoria Jackson,Female,5459,1937-11-30,A- -Maria James,Female,5460,1959-09-24,O+ -Parker Carson,Male,5461,1991-12-10,A+ -Christopher Adkins,Male,5462,1951-12-23,A- -Randy Herrera,Male,5463,1939-01-20,O+ -Mrs. Jill Jones,Male,5464,1932-06-16,A- -Robert Mcguire,Male,5465,1955-05-27,AB- -Michelle Hill,Male,5466,1955-12-07,O+ -Daniel Hammond,Female,5467,1970-10-14,B+ -Danielle Rice,Female,5468,1971-09-23,AB+ -Kristine Wilson,Female,5469,1970-03-15,O- -Amber Thomas,Male,5470,1931-11-02,B+ -Justin Thomas,Male,5472,1994-10-27,AB- -Dr. Caitlyn Miller,Female,5473,1978-12-24,A- -Leslie Oconnor,Female,5474,1992-07-18,B- -Miranda Martin,Male,5475,1962-03-21,O- -Thomas Smith,Male,5476,1965-08-11,B+ -Patricia Robinson,Female,5477,1989-01-02,O- -Lindsey Yang,Female,5478,1973-03-04,O+ -Timothy Martinez,Female,5479,2002-08-22,AB+ -Kevin Howard,Male,5480,1989-03-31,O- -Stephen Campbell,Female,5481,1975-07-17,A- -Melinda Howard,Male,5482,1992-07-15,A- -George Robinson,Female,5483,1935-03-08,A+ -Joseph Bennett,Male,5484,1939-06-02,A+ -Richard Weaver,Female,5485,2002-05-12,O- -Cheryl Peterson,Female,5486,1937-10-25,O+ -Michelle Krause,Female,5487,2001-05-27,O+ -Kimberly Perry,Female,5488,1961-09-12,B- -Daniel Baldwin,Female,5489,1962-03-17,AB- -Edward Bryan,Female,5490,1985-03-29,AB- -Thomas Allen,Male,5491,1961-10-23,B+ -Ryan Chen,Male,5492,1989-06-14,AB- -Robert Chandler,Female,5493,1996-05-29,AB+ -Nathan Meyers,Female,5494,1952-07-19,O+ -Courtney Osborne,Female,5495,1984-09-30,B- -David Mcdonald,Male,5496,1937-03-03,A+ -Thomas Hall,Female,5497,1987-09-01,A- -Rebecca Rose,Male,5498,1938-08-30,AB- -Tiffany Jones,Female,5499,2000-10-24,A+ -Jeffrey Oliver,Male,5500,1938-01-21,A+ -Carla Ortiz,Female,5501,1997-11-20,O- -Crystal Cox,Female,5502,1935-04-10,AB+ -Spencer Morgan,Male,5503,1938-02-20,B- -Mary Campbell,Male,5504,1962-01-18,AB+ -Kristine Thomas,Female,5505,1959-02-18,O- -Paul Harris,Female,5506,1960-01-10,B- -Lindsey Clements,Male,5507,1977-07-27,B- -Heather Burnett,Male,5508,1960-06-30,O+ -Cynthia Wright,Female,5509,1979-10-27,AB+ -Jodi Torres,Female,5510,1973-08-18,AB+ -Scott Singh,Male,5511,1965-12-28,O+ -Sara Craig,Male,5512,1999-06-27,B+ -Brandi Johnson,Female,5513,1931-05-05,A+ -Austin Castillo,Female,5514,1962-03-02,O- -Mark Sexton,Female,5515,1990-12-12,AB+ -Jackie Ryan,Male,5516,2001-05-17,O+ -Omar Fry,Female,5517,1984-11-02,A- -Jennifer Davidson,Female,5518,1994-03-31,B+ -Maurice Davis,Male,5520,1982-10-10,B- -Carol Tate,Female,5521,2001-12-15,AB- -Taylor Walton MD,Female,5522,1939-08-18,A- -Anthony Wilson,Female,5523,1984-01-02,O+ -Tracy Buchanan,Female,5524,1947-07-21,AB- -Karen Ortega,Female,5525,1930-02-23,A+ -Christopher Mason,Male,5526,1981-11-28,O- -Douglas Rogers,Female,5527,1976-07-17,AB- -Heather Weeks,Male,5528,1946-04-11,B+ -Madison Myers,Male,5529,1950-04-10,A+ -Thomas Diaz,Female,5530,1932-08-12,AB- -Matthew Kline,Male,5531,1959-02-03,B- -Deanna Patterson,Male,5532,1934-06-18,B- -Laura Cruz,Female,5533,1960-01-17,B+ -Victoria Arroyo,Female,5534,1948-10-12,B- -Zachary Fletcher,Female,5535,1954-03-17,B- -Amy Valdez,Female,5536,1958-11-09,O+ -Jaclyn Shepherd,Female,5537,1964-09-21,B- -Andrea Walker,Male,5538,1938-12-23,A- -Kimberly Rodriguez,Male,5539,1989-10-17,B- -Karen Turner,Female,5540,1985-04-07,A- -William Benitez,Female,5541,1981-11-14,O+ -Laura Gonzalez,Female,5542,1947-11-27,B- -Brian Meza,Female,5543,1975-11-15,B+ -Eric Mercado,Female,5544,1932-05-07,A+ -Christopher Ellis,Male,5546,1943-05-19,B+ -Amanda Sanchez,Female,5547,1965-06-11,A+ -Jessica Anderson,Female,5548,1950-06-30,AB+ -Allen Gibson,Male,5549,1967-06-16,A+ -Angela Bryant,Female,5550,1975-11-28,O- -Robin Miller,Female,5551,1969-06-02,O- -Destiny Evans,Female,5552,1959-06-02,O- -Daniel Taylor,Male,5554,1941-11-13,O+ -Tina Tucker,Female,5555,1986-08-09,B+ -Pamela Gomez,Female,5556,1982-04-27,A+ -Robert Cabrera,Female,5557,1963-06-23,B+ -Samuel Knight,Female,5558,1991-11-05,A- -Natalie Love,Female,5559,1966-10-19,O- -Jodi Foster,Male,5560,1971-02-15,AB+ -Amy Coleman,Male,5561,1991-08-04,O+ -Emily Glenn,Female,5562,1941-08-22,AB+ -Brittany Jacobs,Female,5564,1963-05-08,A+ -John Miller,Male,5565,1974-03-11,B- -Cameron Sellers,Female,5567,1932-07-11,AB+ -Ashley Palmer,Male,5568,1982-11-03,B- -Regina Castillo,Female,5569,1951-10-15,O+ -Kenneth Fletcher,Male,5570,1983-03-14,AB+ -Bonnie Jones,Male,5571,1973-04-01,AB+ -Theresa Sloan,Female,5572,1999-12-15,AB- -Nathaniel Thomas,Male,5573,1933-05-15,O+ -Kelly Erickson,Male,5574,1959-02-05,O+ -Jessica Lyons,Male,5575,1995-10-18,O- -Adrienne Stanley,Male,5576,1957-05-25,A+ -Joe Norton DVM,Female,5577,1943-07-05,AB+ -Dave Bass,Male,5578,1969-02-20,B+ -Ian Martin,Male,5579,2001-01-07,AB+ -Luis Ellis,Male,5580,1974-11-03,A- -Kyle Dunlap,Female,5581,1985-08-24,O+ -Richard Manning,Male,5582,1992-08-10,B+ -Madison Franklin,Male,5583,1930-07-23,O+ -Randy Trevino,Female,5584,1975-04-19,A+ -Crystal Smith,Female,5585,1973-07-13,O+ -Dylan Cooper,Female,5586,1999-05-23,B- -Amanda Walker,Female,5587,1940-04-06,B- -Dr. Richard Mitchell MD,Male,5588,1948-05-24,AB- -Abigail Smith,Female,5590,1981-12-04,B- -Sara Johnson,Male,5591,1932-12-29,B- -David Padilla,Male,5592,1971-09-11,A+ -Kiara Miller,Female,5593,1987-03-07,AB+ -Justin Lee,Male,5594,1998-12-13,B- -Laura Hughes,Female,5595,1973-11-25,B+ -Chelsey Hamilton,Female,5596,1945-08-20,AB- -David Olson,Female,5597,1956-08-24,O+ -Daniel Wong,Female,5598,1982-09-24,B- -Christine Young,Male,5599,1938-09-27,AB- -Keith Olson,Male,5600,1979-11-21,A+ -Jillian Riggs,Female,5601,1931-11-21,A- -Beth Perry,Female,5602,1985-02-24,A- -Rachel Thomas,Female,5603,1935-10-05,A- -Audrey Hall,Female,5604,1931-01-01,O+ -Robert Decker,Female,5605,1968-05-11,AB- -Erica Barrett,Male,5606,1962-03-21,B- -Katie Santos,Male,5607,1974-02-02,AB+ -Tiffany Hodges,Female,5608,1997-01-05,O+ -Bonnie Robinson,Female,5609,1964-11-20,O+ -Ashley Mitchell,Female,5610,1963-12-05,A- -Mr. Eric Simpson MD,Female,5611,1941-06-04,AB+ -Mary Clark,Female,5612,1991-05-18,A- -Johnathan Smith,Male,5613,1972-10-10,O+ -Lori Holland,Female,5614,1936-07-06,B- -Charles Smith DDS,Female,5615,1978-02-27,A- -Hailey Scott,Male,5616,1988-07-07,A- -Michael Duncan,Male,5617,1962-12-10,B+ -Tammy Howard,Male,5618,1945-07-10,A- -Kevin Ford,Male,5619,1937-06-28,O+ -Chad Davis,Male,5620,1957-01-06,B- -Teresa Richardson,Male,5621,1953-03-31,AB+ -Angela Obrien,Female,5622,1932-08-14,O- -Melissa Montoya,Female,5623,1955-06-25,AB+ -Allison Howard,Female,5624,1948-02-19,B- -David Dunn,Male,5625,1970-10-26,A+ -Sandra Roman,Female,5626,1978-11-23,A- -Kevin Matthews,Female,5627,1942-03-19,AB+ -Dean Gomez,Male,5628,1994-01-11,A+ -Carla Marshall,Female,5629,1968-04-17,A+ -John Wright,Female,5630,1964-08-08,B- -Amy Casey,Male,5632,1992-05-15,B- -Charles Lawson,Male,5633,1982-08-08,B+ -Robert Lucas,Male,5634,1937-10-21,A- -Sonya Foster,Male,5635,1966-05-31,O- -Danny Duncan,Male,5636,1959-04-17,AB- -Jennifer Hebert,Male,5637,1982-12-22,O+ -Henry Wagner,Female,5638,1942-07-31,AB+ -Theresa Schmidt,Female,5639,1999-11-20,B- -Gene Anderson,Male,5640,1969-02-07,AB+ -Lauren Miller,Male,5641,1974-08-03,AB- -Cheryl Richards,Male,5642,1969-03-31,AB- -Jeremy Barrett,Female,5643,1948-03-11,A- -Marcus Love,Male,5644,1937-10-21,A+ -Whitney Reese,Male,5645,1970-11-20,A- -Susan Rodriguez,Female,5646,1930-06-15,O+ -Erin Scott,Male,5647,1959-04-20,O- -Joseph Weiss,Female,5648,1932-07-08,AB+ -Kevin Maynard,Male,5649,1952-09-27,O+ -Eric Wade,Female,5650,1984-06-14,B+ -Kimberly Brown,Male,5651,1977-07-28,O- -Michael Perez,Male,5652,1973-01-10,AB+ -Sarah Pennington,Female,5653,1991-06-01,O+ -Debbie Hernandez,Male,5654,1940-07-06,B- -Clayton Tyler,Female,5655,1978-04-21,AB+ -Deborah Jordan,Male,5656,1995-09-10,O+ -Yolanda Smith,Male,5657,1961-10-23,AB- -Michael Cook,Male,5659,1998-09-11,O- -Christy Bradshaw,Male,5660,1967-01-06,O+ -Madeline Warner,Male,5661,1988-01-05,B- -Amanda Johnson,Male,5662,1959-07-04,A- -Daniel Johnson,Female,5663,1930-03-09,AB+ -Andrew Chang,Female,5664,1956-10-19,B+ -Billy Bowman,Female,5665,1945-07-01,AB+ -Jeremiah Martinez,Female,5667,1942-04-06,AB+ -Michael Johnson,Female,5668,1952-06-24,B- -Stephanie Wilson DVM,Male,5669,1959-11-27,O- -Courtney Wallace,Female,5670,1939-08-23,AB+ -Wanda Jackson,Female,5671,1931-07-27,O- -Stephanie Nguyen,Male,5672,1949-05-23,O+ -Jeremy Martin,Female,5673,1996-04-20,AB- -Paul Thomas,Male,5674,1944-10-09,B+ -Debra Lee,Female,5675,1972-03-08,AB- -Katherine Scott,Female,5676,1981-01-15,O- -Nathaniel Macdonald,Female,5677,1960-05-17,O- -Megan Guerrero,Male,5678,1991-05-24,AB- -Allison Bowman,Female,5679,1931-10-13,AB+ -Alexis Johnson,Female,5680,1945-09-20,A+ -Jonathan Harrell,Male,5681,1966-05-13,A+ -Michael Maddox,Male,5682,1948-09-21,B- -James Jones,Male,5683,1981-12-10,B+ -Kendra Mcdonald,Male,5684,1996-06-03,A- -Paula Garrett,Female,5685,1938-12-07,AB- -Maria Lambert,Female,5686,1978-07-10,AB- -Ryan Dodson,Female,5687,1943-09-06,B- -Megan Drake,Female,5688,1962-05-19,B+ -Joshua Moore,Male,5689,1990-09-07,A+ -Jennifer Ryan,Male,5690,1937-09-28,O+ -Kathleen Shaw,Female,5691,1968-11-28,AB+ -Matthew Kim,Female,5692,1944-04-29,AB+ -Stacey Ferguson,Female,5693,1936-01-27,O+ -Melanie Lopez,Female,5694,1984-07-19,O+ -Kyle Villanueva,Female,5695,1996-05-03,B+ -Allen Lynch,Female,5696,1968-12-19,A+ -Rachel Myers,Female,5697,2000-02-16,B- -Jerome Carr,Female,5698,1968-05-27,O+ -Briana Lang,Female,5699,1986-11-10,B- -Timothy Avila,Male,5700,1982-12-19,B+ -Jacob Vaughn,Male,5701,1983-09-10,A- -Charles Wilson,Female,5702,1967-12-31,O- -Brianna Mercado,Male,5703,1948-09-20,AB+ -Daniel Palmer,Female,5704,1949-04-02,A+ -George Monroe,Female,5705,1970-07-16,AB+ -Erika Fischer,Male,5706,2000-04-17,A+ -Lori Schneider,Male,5707,1999-11-10,B+ -Robert Shelton,Female,5708,1940-03-05,O- -Larry Dennis,Male,5709,1939-05-08,AB+ -Kristina Spencer,Female,5710,1978-10-28,O- -Justin Rice,Male,5711,1931-07-25,B+ -Casey Griffin,Male,5712,1982-10-23,A+ -Aaron Owen,Female,5714,1966-05-20,O+ -Richard Bailey,Male,5715,1981-09-19,A- -Katie Johnson DVM,Female,5716,1932-07-06,AB+ -Jason Mcdowell,Male,5717,1957-07-24,O- -Valerie Wright,Female,5718,1949-02-12,AB- -Anthony Lewis,Female,5719,1995-03-12,AB+ -Kiara Martinez,Female,5720,1947-05-08,AB+ -Richard King,Male,5721,1979-06-15,AB+ -Mason Hunter,Female,5723,1976-07-17,B- -Craig White,Male,5724,1957-03-21,O- -Allison Woods,Female,5725,1994-04-05,O- -Sharon Mathews,Female,5726,1963-11-24,AB+ -Henry Davis,Female,5727,1987-11-11,B+ -Christine Martinez,Female,5728,1984-06-15,B+ -Hector Barajas,Female,5729,1961-12-11,O+ -Lawrence King,Female,5730,1942-05-27,AB+ -Scott Smith,Male,5731,1977-12-19,B- -Theresa Welch,Female,5732,1963-05-20,A+ -Todd Cross,Female,5733,1953-06-15,B- -Steven Wood,Male,5734,1949-10-14,B+ -Kathy Hunt,Female,5735,1944-02-19,O+ -Kathy Phillips,Female,5736,1975-06-04,B+ -Evelyn Stone,Female,5737,1988-03-16,B+ -David Jennings,Male,5738,1933-08-12,B+ -Brian Allen,Female,5739,1933-02-15,AB+ -Gregory Lynch,Male,5740,1942-09-02,B+ -Nancy Lopez,Male,5741,1995-02-02,O- -Krystal Nguyen DDS,Male,5742,1969-09-14,A- -Kaitlyn Bender,Male,5743,1937-05-14,AB- -Robert Frederick,Male,5744,1950-01-19,AB+ -Timothy Robinson,Male,5745,1938-11-30,O+ -Lauren Webster,Male,5746,1997-07-13,O- -Monica Hunter,Female,5747,1944-04-10,B- -Jeffrey Greer,Male,5748,1941-04-01,B+ -Samantha Wagner,Female,5749,1983-02-16,A+ -William Nunez,Male,5750,1979-12-11,A+ -Michael Burgess,Male,5751,1999-06-28,A- -Glenn Sanchez,Male,5752,1999-11-15,AB+ -Ronald Edwards,Female,5753,1982-06-30,B- -Ashley Gill,Female,5754,1985-06-20,A- -Curtis Osborne,Female,5755,1995-09-06,AB- -Cindy Mccullough,Male,5756,1956-11-02,AB- -Shawn Byrd,Female,5757,1997-02-17,A- -Lindsey Hanson,Female,5758,1991-06-09,O+ -Katie Hunter,Female,5759,1985-06-27,A+ -John Norman,Female,5760,1961-04-01,B- -Jessica Owen,Female,5761,1971-01-21,AB+ -Jerry Swanson,Male,5762,1994-07-03,B+ -Mary Ramirez,Female,5763,1964-06-14,O- -Stacy Hernandez,Female,5764,1994-05-18,AB+ -Kelly Bell,Female,5765,1943-10-01,AB+ -Virginia Barnett,Male,5766,1987-10-28,B- -Angela Brown,Male,5767,1981-05-24,A+ -John Ford,Female,5768,1948-01-09,B- -Debra Jones,Female,5769,1966-11-03,O- -Miranda Lopez,Male,5770,1999-11-12,A- -Sabrina Martinez,Female,5772,1965-11-30,B- -Christine Melton,Male,5773,1990-12-02,O+ -Jon Robinson,Female,5774,1981-11-19,AB+ -Cassandra Chan,Male,5775,1977-07-12,A+ -Grace Moses,Male,5776,1994-08-09,B+ -Wanda Morrison,Male,5777,1999-11-25,AB- -Tiffany Davis,Male,5778,1933-06-16,O- -Timothy Alexander,Female,5779,1988-09-04,AB- -Mark Williams,Female,5780,1999-11-14,AB+ -Melissa Jackson,Male,5781,1950-03-19,B- -Alison Stewart,Female,5782,1991-12-02,AB- -Danielle Wallace,Female,5783,1939-02-10,O+ -Stacey Decker,Female,5784,1990-04-10,B- -Gregory Murray,Male,5785,1981-01-16,AB+ -Joshua Browning,Male,5786,1957-06-08,AB- -Tamara Hart,Female,5787,1978-04-20,B+ -Elizabeth Peters,Male,5788,1976-02-17,A- -Jeff Marks,Female,5789,1968-07-02,O- -Mariah Stewart,Male,5790,1983-11-17,AB- -Rhonda Martin,Male,5791,1948-07-19,B+ -Michael Bradley,Male,5792,1971-07-05,A- -Cathy Guzman,Male,5793,1995-03-16,A- -Clifford Avila,Male,5794,1933-05-15,AB- -Karen Cooper,Female,5795,1954-11-07,A+ -Holly Johnson,Male,5796,1940-06-02,AB- -Kimberly Clark,Male,5797,1992-06-07,AB+ -Jason Brennan,Male,5798,1970-04-16,A- -Terri Gilbert,Male,5799,1945-09-29,O- -Margaret Jones,Female,5800,1972-10-14,AB+ -Mr. John Pierce,Male,5801,1966-03-25,O+ -William Gaines,Male,5802,1985-06-01,B- -Shannon Le,Male,5803,1938-08-02,AB- -Tyler Bean,Male,5804,1949-01-14,A+ -Allison Robbins,Female,5805,1999-10-26,O- -Marco Maddox,Male,5806,1991-05-19,A+ -William Bowers,Male,5807,1987-06-04,A+ -Darlene Jones,Female,5808,1934-03-27,A+ -Alexandria Sparks,Male,5809,1972-04-27,AB- -Ryan Gomez,Male,5810,1991-06-19,O- -Sara Clark,Male,5811,1977-11-08,O- -Jesse Hudson,Male,5812,1936-08-08,A- -Robert King,Male,5813,1982-01-09,A+ -Lauren Phillips,Female,5814,1968-08-22,A- -Christy Gregory,Female,5815,1999-05-17,A- -Richard Jones,Male,5816,1941-05-08,B- -Kyle Williams,Female,5817,1937-08-07,AB- -Robert Bell,Female,5818,1966-02-14,AB- -Andrew Wilson,Male,5819,1965-03-09,AB+ -Gregory Hill,Male,5820,1965-10-14,B+ -Joseph Hunt,Male,5821,1993-01-02,A- -Nicholas Moore,Male,5822,1983-07-01,AB- -David Mendoza,Male,5823,1940-11-14,A+ -Melissa Russell,Female,5824,1996-09-07,B+ -Suzanne Phillips,Male,5825,2002-11-15,O+ -Cindy Johnson,Female,5826,1968-08-28,A+ -Elizabeth Scott,Female,5827,1998-11-19,O- -Betty Pierce,Male,5828,1989-09-07,AB- -Austin Davenport,Female,5829,1941-11-10,B+ -Tiffany Scott,Male,5830,1958-03-10,AB- -David Vazquez,Male,5831,1935-04-27,AB+ -Kyle Adams,Male,5832,1991-05-11,A- -Daniel Henderson,Male,5833,1997-08-02,O+ -Jennifer Dunn MD,Male,5835,1975-05-20,AB- -Kathryn Smith,Female,5836,1999-10-05,AB+ -Sarah Long,Female,5837,1966-09-13,AB+ -Jessica Thomas,Male,5838,1932-05-11,O+ -Lisa Myers,Male,5839,1993-03-26,A+ -Dennis Walter,Female,5840,1955-05-25,A+ -Adriana Reynolds,Male,5842,1976-08-20,A+ -Heather Lester,Male,5844,1941-04-27,B- -Allison Kelly,Female,5845,1962-04-26,A- -Stephanie Cox,Female,5846,1972-03-09,B+ -Angela Williams,Male,5847,1995-08-19,A- -Kelly Hicks,Female,5849,1999-01-11,A+ -Sierra Bowers,Male,5850,1977-09-11,O+ -Steven Brown,Male,5851,1974-10-08,B- -Pamela Shelton,Male,5852,1941-04-24,A- -Benjamin Martinez,Female,5853,1980-09-27,A+ -Isaac Thomas,Female,5854,1963-01-05,B- -Ellen Thomas,Female,5855,1961-01-27,B+ -John Avery,Female,5856,1961-06-13,O+ -Patrick Shields,Male,5857,1944-12-10,A+ -James Warner,Female,5858,1946-08-24,B+ -Dorothy Wright,Female,5859,1964-02-05,O- -Jennifer Daugherty,Female,5860,1981-07-06,B+ -Krista Sellers,Male,5861,1980-01-02,AB- -Michael Robbins,Male,5862,1963-04-16,O+ -Haley Bright,Male,5863,1973-01-30,B+ -Amanda West,Male,5865,1973-05-05,B+ -Nancy Nixon,Female,5866,1971-05-31,AB+ -Jeremiah Leblanc,Male,5867,1962-08-06,AB+ -Susan Jackson,Male,5868,1995-07-05,B+ -David White,Female,5869,1963-09-03,B+ -James Paul,Female,5870,1935-07-05,O+ -Andrew Brooks,Female,5871,1939-03-28,AB+ -Stephen Clark,Female,5872,1958-04-19,A- -Frederick Sherman,Female,5873,1995-01-01,O+ -Tiffany Gomez,Male,5874,1959-04-11,O- -Rebecca Buchanan,Female,5875,1969-10-10,O+ -Carlos Moore,Male,5876,1964-12-21,A+ -Jonathan Gonzalez,Female,5877,1933-07-13,A+ -Melanie Smith,Male,5878,1933-12-18,B- -Cindy Smith,Male,5879,1983-08-14,AB+ -Maria Duncan,Female,5880,1992-04-30,B+ -Tina Allison,Female,5881,2002-08-10,AB- -Sara Bradley,Male,5882,1995-06-15,AB+ -Michael Stevens,Female,5884,1991-06-13,A- -Darren Ramos,Male,5885,1983-07-29,O+ -Autumn Medina DDS,Female,5886,1968-09-17,AB- -William Davis,Female,5887,1967-09-01,AB- -Brianna Moore,Female,5888,1944-12-15,B+ -Mr. Gary Miller,Female,5889,1983-08-31,B+ -Sabrina Hall,Female,5890,1983-06-12,AB+ -Wendy Spears,Female,5891,1983-12-11,AB- -Matthew Lopez,Female,5892,1982-06-23,AB- -Lori Mcclain,Female,5893,1999-12-31,A+ -Albert Holder,Female,5894,1950-12-19,O- -Troy Sanchez,Male,5895,1943-06-22,B+ -Ellen Ward,Female,5896,1958-04-29,O+ -Jodi Griffin,Male,5897,1992-03-04,AB+ -Jade Turner,Female,5898,1992-03-07,B+ -Candice Rodriguez,Female,5899,1953-01-17,A+ -Patricia Bright,Male,5900,1976-12-25,A- -Helen Ward,Female,5901,1944-04-05,B+ -Joann Hendrix,Female,5902,1931-11-19,A- -Gary Grant,Female,5903,1976-04-22,B- -Tyrone Roach,Female,5904,1988-09-24,AB- -Emily Solis,Male,5905,1966-03-16,AB- -Sarah Garcia,Female,5906,1952-02-15,AB+ -Matthew Webster,Female,5907,1989-12-19,O- -Brittany Glover,Male,5908,1980-10-02,O- -Michael Young,Male,5909,1955-12-22,AB+ -Raven Dunlap,Female,5910,1946-09-08,AB+ -Pedro Stevens,Female,5912,1993-12-14,A+ -Thomas Marquez,Male,5913,2001-06-19,A- -Jason Owens,Female,5914,1987-12-06,AB+ -Austin Myers,Male,5915,1951-01-23,A- -Alexandra Cross,Female,5916,1960-05-11,B+ -Juan Randolph,Female,5917,1938-07-01,B+ -Lori Mathis,Female,5918,1936-09-06,B- -Scott Brewer,Female,5919,1986-03-07,A- -Dr. Barbara Foster,Male,5920,1949-07-04,A+ -Rachel Gibbs,Male,5921,1989-02-05,B+ -Scott Bates,Male,5922,1977-03-03,AB- -Michael Fischer,Female,5923,1968-06-01,AB- -Megan Kline,Female,5924,1969-10-19,B+ -Anna Pace,Male,5925,1931-03-23,B+ -Jonathan Sanford,Female,5926,1940-09-20,B+ -Kelly Moore,Male,5927,1973-03-23,A- -Nicole Brewer,Female,5928,1983-05-16,AB- -Selena Cooper,Female,5929,1978-03-28,AB- -Calvin Simmons,Female,5930,1948-01-14,O+ -Benjamin King,Male,5931,1930-08-15,B+ -Eric Nelson,Male,5932,1986-03-15,B- -Charles Hernandez,Female,5933,1994-07-13,B+ -Kathryn Davies,Female,5934,1960-07-13,A+ -Mark Bryant,Female,5935,1945-03-21,A+ -Samantha Baker MD,Male,5936,2002-04-19,AB- -Barbara Duran,Male,5937,1962-10-11,B+ -Christopher Shaffer,Male,5938,1930-07-06,O- -Caitlin Miller,Male,5939,1970-03-12,A+ -Daniel Pitts,Female,5940,1969-11-11,B+ -Veronica Price,Male,5941,1960-04-22,B- -Jordan Price,Male,5942,1936-12-10,AB+ -Nicholas Nash,Female,5943,1935-04-17,B+ -Darren Shea,Female,5944,1999-08-11,B- -Ryan Sanchez,Female,5945,1935-07-26,AB- -Madison Li,Female,5946,1933-06-06,AB- -Ruth Jarvis,Female,5947,1945-01-31,O+ -Kristen Branch,Male,5948,1943-11-23,A- -Heather Huffman,Female,5949,1968-01-22,A+ -Kara Beck,Male,5950,1969-10-06,A- -Darren Parker,Female,5951,1935-02-25,B+ -Christopher Taylor,Female,5952,1930-09-27,A- -Megan Short,Male,5953,1934-06-19,A+ -Joseph Martin PhD,Male,5954,1986-12-02,A+ -Steven Sutton,Male,5955,1991-09-01,B+ -Samantha Kim,Female,5956,1979-03-03,AB- -Ariel Estrada,Female,5957,1966-08-23,A+ -Nina Rich,Male,5958,1974-03-23,O- -Erica Parker,Female,5959,1960-05-07,O- -Melissa Jackson,Female,5960,1934-08-23,AB+ -John Reed,Female,5961,1983-10-12,A+ -Devin Mcbride,Male,5962,1970-07-31,O+ -Mary Long,Male,5963,1938-12-07,AB+ -Heather Schneider,Female,5964,1933-12-16,AB- -Brooke Smith,Female,5965,1992-01-03,A+ -Nicole Briggs,Female,5966,1997-11-20,O- -Debra Vazquez,Female,5968,1975-01-01,O+ -Ryan Powers DDS,Male,5969,1957-03-29,B+ -Emily Petty,Female,5970,1990-02-09,AB+ -Laurie Washington,Female,5971,1995-08-11,O+ -Alexandra Larson,Male,5972,1979-06-03,A+ -Henry Morris,Male,5974,1948-11-23,B- -Linda Neal,Male,5975,1982-06-26,O+ -Monica Lester,Male,5976,1931-12-21,O+ -Mrs. Erin Lee,Male,5977,1953-07-16,AB- -Kevin Bell,Male,5978,1948-10-08,O- -Jeremy Fernandez,Male,5979,1981-02-20,B+ -Shane Drake,Female,5980,1952-08-16,A+ -Eric Pierce,Male,5981,1969-10-03,O+ -Cynthia Jackson,Female,5982,2002-11-28,A+ -Cynthia Bright,Male,5983,2000-08-26,O- -Mr. Joshua Owen,Female,5984,2001-07-30,AB- -Brenda Johnson,Female,5985,1962-07-06,A+ -Cassandra Ryan,Female,5986,1987-02-17,A- -Edward Rodriguez,Female,5987,1968-07-19,O- -Kimberly Hardy,Male,5988,1976-10-08,O- -Melissa Collins,Female,5989,1949-10-31,B+ -Daniel Diaz,Male,5990,1954-09-10,AB+ -Amanda Hall,Male,5991,1991-01-23,AB- -Gabriel Turner,Female,5992,1975-10-24,AB- -Joshua Pennington,Male,5993,1989-07-28,B+ -Nathan Jackson,Female,5994,1963-02-17,A- -Daniel Berger,Male,5995,1996-05-27,A+ -Michael Fields,Female,5996,1975-09-13,B- -Rachel Dillon,Male,5997,1984-03-18,A- -Paige Thompson,Female,5998,1943-03-14,AB+ -Kimberly Singh,Female,5999,1960-02-14,AB- -Logan Gonzalez,Female,6000,1968-01-29,O- -Frank Fuentes,Male,6001,1984-08-07,AB- -Jonathan Taylor,Female,6002,1987-02-13,A- -Kimberly Phillips,Female,6003,1961-12-13,B- -Donna Singleton,Female,6005,1992-09-27,O+ -Christina Burns,Male,6006,1987-07-05,O+ -Tammy Mcmahon,Female,6007,1973-07-30,B+ -Edward Reed,Female,6008,1959-10-14,AB- -Michael Sims,Male,6009,1938-03-05,AB- -Rebecca Weeks,Male,6010,1952-03-18,AB+ -Kevin Roy,Male,6011,1953-03-08,AB- -Nicole Benton,Male,6012,1981-10-31,B- -Stephanie Lynch,Male,6013,1930-12-03,AB- -Kristin Blake,Male,6014,1957-10-31,A+ -Matthew Nguyen,Male,6015,1983-01-06,A- -Margaret Brown,Male,6016,1964-12-16,B+ -Teresa Friedman DVM,Female,6017,1940-11-12,B- -Hailey Johnson,Female,6018,1932-06-29,AB+ -Alex Maynard,Female,6019,1980-04-28,A+ -Hannah Fields,Female,6021,1972-10-19,A+ -Erica Stephens,Male,6022,1974-07-28,A- -John Weber,Female,6023,1938-07-27,O+ -Jessica Rogers,Female,6024,1944-11-30,B- -Dr. Jose Bartlett,Male,6025,1946-10-13,A- -Cindy Savage,Male,6026,1946-01-07,A+ -Michael Williamson,Male,6027,1986-05-15,AB+ -Nancy Ellis,Male,6028,1950-05-22,A- -Ariana Silva,Male,6029,1962-09-19,O+ -Diana Diaz,Male,6030,1953-04-29,A+ -Parker Compton,Female,6031,2002-03-19,A- -Glenda Hernandez,Male,6032,1930-11-11,B- -Elizabeth Wong,Male,6033,1962-02-19,O+ -Cesar Williams,Male,6034,1933-02-08,B- -Michelle Hernandez,Male,6035,1959-12-13,B- -Christopher Alexander,Female,6036,1988-03-17,B- -Jesse Brown,Female,6037,1997-01-15,A- -Patricia Martin,Male,6038,1972-09-05,O+ -Robert Payne,Male,6039,2001-06-13,A- -Kristen Aguirre,Female,6040,1952-11-08,A- -Sarah Reed,Male,6041,1945-04-24,A- -Jared Townsend,Female,6042,1979-07-31,A+ -Molly Keith,Female,6043,1984-01-05,AB- -Kaitlin Armstrong DDS,Male,6044,1977-04-14,O- -Brandon Hanson,Female,6045,1960-02-10,A+ -Kenneth Davis,Male,6046,1931-12-23,O+ -Philip Brown,Male,6047,1995-11-18,O- -Jacob Clark,Female,6048,1954-12-05,O- -Evan Mckinney,Female,6049,1984-01-19,O- -Brandon Lee,Male,6050,1932-05-20,AB- -Valerie Riley,Female,6051,1948-06-26,A- -Eric Duncan,Male,6052,1976-03-21,B+ -Kathleen Johnson DDS,Female,6054,1934-10-23,AB+ -Timothy Reynolds,Female,6055,1933-01-22,O+ -Amy Moore MD,Female,6056,1961-10-06,B+ -Jessica Perez,Male,6057,1937-09-29,AB- -Javier Johnson,Female,6058,1971-01-22,AB- -Nicole Mccoy,Female,6059,1979-05-15,AB+ -Leslie Jennings,Female,6060,1967-12-31,O- -Nicholas Kemp,Female,6061,1949-02-22,A- -Laurie White,Female,6062,1967-09-22,AB+ -Lisa Diaz,Male,6063,1948-07-16,B+ -Briana Johnson,Male,6064,1975-04-01,B+ -Charles Singh,Female,6066,1982-06-02,AB+ -Randy Rodriguez,Female,6067,1939-05-29,AB- -Brent Young,Male,6068,1948-02-18,O+ -Steve Moody,Male,6069,1965-03-10,B- -Linda Barker,Male,6070,1970-07-16,A- -Hayley Perry,Female,6071,1959-02-01,B+ -Michael Lindsey,Male,6072,1994-03-19,B+ -Jonathan Miranda,Male,6073,1987-03-19,AB+ -Terry Cooper,Female,6074,1935-01-23,A- -Suzanne Smith,Male,6075,1937-05-20,AB+ -Nicholas Vasquez,Male,6076,1934-09-14,O- -Michelle Coleman,Female,6077,1983-04-09,A- -Michele Burns,Female,6078,1955-05-09,O- -Brendan Bailey,Female,6079,1937-08-18,B+ -Reginald Rodriguez,Female,6080,1968-10-02,AB- -Robert Rose,Male,6081,1966-09-18,O- -Melanie George,Male,6082,1940-05-19,A- -Margaret Winters,Male,6083,2000-10-24,A+ -Gregory Williams,Female,6084,1940-08-07,A- -Bruce Boyle,Male,6085,1934-12-12,AB+ -Jonathan Mitchell,Male,6086,1978-12-23,O- -John Reynolds,Female,6087,1983-12-01,O+ -Joshua Lawrence DDS,Female,6088,1994-05-06,A+ -Ricky Parker,Female,6089,1966-06-05,AB- -Danny Matthews,Female,6090,1988-09-05,B- -Amber Day,Female,6091,1997-06-25,AB+ -Stephanie Murray,Male,6092,1979-06-27,AB+ -Leslie Reyes,Male,6094,1972-07-28,O+ -Deborah Castro,Female,6095,2000-12-19,B- -Stephanie Villegas,Female,6096,1939-01-17,B+ -Katie Green,Male,6097,1983-05-20,B- -Raymond Hudson,Female,6098,1973-12-22,AB- -Ashley Vaughn,Female,6099,1999-09-14,AB- -Megan Jones,Female,6100,1996-05-08,A+ -Robyn Anthony,Female,6101,1971-08-12,B+ -Eric Tapia,Female,6102,1992-06-04,AB+ -Joseph Ayala,Female,6103,1978-12-23,O- -Taylor Lopez,Female,6104,1959-03-05,AB- -Richard Burke,Female,6105,1954-06-08,O+ -Linda Chung,Male,6106,1957-03-20,O+ -Dana Wiggins,Male,6107,1940-09-29,O+ -Brian Wallace,Male,6109,1998-06-12,A- -Jennifer Flores,Male,6110,1956-10-14,B+ -Dylan Alvarez,Male,6111,1942-04-13,B+ -Wesley Brown,Male,6113,1964-07-30,AB- -Cody Vaughn,Male,6114,1966-03-26,AB- -Whitney Grant,Female,6115,1965-04-28,O+ -Michelle Wade,Female,6116,1997-01-13,B+ -Thomas Porter,Female,6117,1998-08-20,B+ -Heather Norris,Female,6119,1930-07-11,AB- -Melissa Davis,Female,6120,1998-08-26,A- -Bryan Dougherty,Female,6121,1943-06-19,O- -Cameron Willis,Male,6122,1945-12-19,O- -Anthony Mcmillan,Female,6123,2000-09-22,A+ -Kim Adams,Female,6124,1957-10-26,B+ -Jasmine Howard,Male,6125,1986-09-10,AB+ -Jessica Villarreal,Male,6126,1967-06-18,O- -Desiree Brooks,Female,6127,1994-01-08,A+ -Michelle Thompson,Male,6128,1999-07-10,B- -Holly Fletcher,Male,6129,1994-10-18,AB+ -Jacqueline Jackson,Male,6130,2001-04-27,B+ -Holly Sandoval,Male,6131,2000-04-05,O- -Danielle Shaw,Female,6132,1963-12-05,A- -Theresa Anderson,Female,6133,1935-02-18,B- -Michael Yu PhD,Female,6134,1954-10-24,A+ -Christopher Washington,Female,6135,1943-01-16,O- -Emily Reeves,Male,6136,1958-01-08,B+ -Scott Brown,Female,6137,1998-01-12,O- -Carol Campos,Male,6138,1955-04-01,AB- -Michelle Cole,Female,6139,1961-03-29,B- -Ryan Jenkins,Male,6140,1969-10-02,O- -Matthew Smith,Male,6141,1932-11-17,O+ -Micheal Allen,Female,6142,1963-06-22,A- -Theresa Lee,Male,6143,1956-09-26,AB- -Stefanie Vance,Male,6144,1961-03-01,AB- -Devin Lara,Female,6145,1964-06-11,O- -Diane Reid,Female,6146,1995-07-01,A- -Katherine Webster,Male,6147,1995-02-24,AB- -Emily Terry,Male,6148,1962-10-29,AB+ -Courtney Wilson,Male,6149,1992-02-29,B- -Jamie Murphy,Female,6150,1962-09-09,AB+ -Jose Powell,Female,6151,1980-08-15,A+ -Zoe Henderson,Female,6152,1930-11-04,AB+ -Jamie Jennings,Female,6153,1996-01-16,A- -Gary Casey,Female,6154,1939-03-14,O+ -Jessica Orozco,Male,6155,1938-09-12,AB- -Heather Hernandez,Female,6156,1933-06-05,A- -Brian Duncan,Male,6157,1944-09-10,AB- -Charles Poole,Female,6158,1979-01-05,B+ -Phyllis Arellano,Male,6159,1947-01-18,O+ -Sarah Wang,Female,6160,1989-05-20,AB- -Briana Bray,Male,6162,2001-01-22,AB+ -Kimberly Tanner,Female,6163,1990-12-05,B+ -Terri Solomon,Female,6164,1996-11-13,B+ -Christina Duffy,Male,6165,1969-03-27,A+ -Susan Griffin,Male,6166,1943-05-24,B+ -Jennifer Grant,Male,6167,1943-09-02,B+ -Stacy Villa,Male,6168,1935-05-16,O- -Jessica Sullivan,Male,6169,1964-03-20,O+ -Lindsey Wagner,Male,6170,1982-09-12,AB+ -Brittney Brady,Female,6171,1959-09-14,A- -Kristine Vega,Male,6172,1992-12-08,AB+ -Russell Chase,Female,6173,1966-04-17,AB+ -Daisy Warner,Female,6174,1942-07-04,O- -Elizabeth Reed,Male,6175,1974-01-09,B- -Randy Steele,Female,6176,1947-11-01,AB- -Vanessa Dixon,Male,6177,1971-09-18,AB- -Brian Guerrero,Female,6178,1985-10-28,A- -Matthew Gutierrez,Male,6179,1962-03-09,B+ -Jessica Adams,Female,6180,1999-10-24,A+ -Philip Wright,Female,6181,1960-07-13,A- -Shelley Fleming,Female,6182,1975-05-12,B- -Haley Hancock,Male,6183,1996-02-03,AB- -Shane Joseph III,Female,6184,1939-03-13,A+ -Jessica Brown,Male,6185,1992-12-20,A- -Gregory Duncan,Male,6186,1956-04-04,A+ -Melissa Kirby,Male,6187,1993-06-20,AB+ -Earl Lee,Female,6188,1960-02-01,O+ -Terri Guzman,Female,6189,1998-10-03,AB+ -Jose Contreras,Male,6190,1951-01-09,O- -Aaron Vargas,Female,6191,1945-08-08,B+ -Robert Deleon,Female,6192,1933-06-27,AB- -James Vazquez,Male,6193,1993-01-27,A+ -Dr. Brittany Hill,Male,6194,1960-10-11,A- -Debra King,Male,6195,1977-11-10,B+ -Raymond Hays,Female,6196,1956-01-02,O+ -Makayla Mcguire,Female,6197,1954-12-08,A- -Lindsay Williamson,Female,6198,1960-11-12,AB- -Mary Cole,Female,6199,1951-11-29,A+ -Marcus Sanders,Female,6200,1941-08-18,A+ -Sherry Walters,Female,6201,1955-03-31,AB+ -Susan Raymond,Male,6202,1989-05-29,O+ -Brenda Miller,Male,6203,2002-09-13,O+ -Jennifer Orozco,Male,6205,1984-01-16,AB- -Brenda Perry,Female,6206,1959-04-22,A+ -Joel Robertson,Female,6207,1972-05-12,B+ -Joshua Howard,Female,6208,1975-08-07,O+ -Kelsey Ward,Male,6209,1978-02-08,O+ -Thomas Carlson,Female,6210,1963-12-06,A- -David Dennis,Male,6211,1962-09-26,AB- -Ian Wilson,Male,6212,1972-10-28,AB+ -Marvin Watson,Male,6213,1968-04-29,A- -Thomas Phillips,Female,6214,1947-04-07,A- -John Stark,Male,6215,1981-06-04,B- -Gabrielle Mcclain,Male,6216,1964-10-30,O- -Charles Baldwin,Female,6217,1949-02-25,B- -April Harrison,Male,6218,1964-01-10,O+ -Dr. Christopher Williams,Male,6219,1967-09-26,A+ -Richard Williams,Female,6220,1994-11-04,O- -Adam Boyd,Female,6221,1986-04-23,O- -Rebecca Bright,Male,6222,2001-12-21,A+ -Paul Golden,Female,6223,1936-02-09,O- -John Garcia,Male,6224,1947-10-30,A+ -Andrew Torres,Male,6225,1975-03-18,O- -Dorothy Delgado,Female,6226,1955-11-27,A- -Aaron Coleman,Male,6227,1984-11-29,B+ -Kathryn Glenn,Male,6228,2001-09-02,AB- -Brian Brock,Female,6230,1943-01-18,AB- -Todd Guerrero,Female,6231,1985-09-23,B- -Christopher Nguyen MD,Male,6232,1995-07-08,A- -Crystal Koch,Male,6233,1966-05-04,O- -Timothy Brown,Female,6234,1945-03-15,AB+ -Julie Cooper,Female,6235,1931-09-20,A+ -Lacey Graham,Male,6236,1962-10-29,A- -Julie Trujillo,Male,6237,1967-09-24,O- -Ann Johnson,Male,6238,1948-01-16,AB- -James Stuart,Female,6239,1935-08-07,AB- -Joanne Townsend,Male,6240,1966-01-23,A+ -Dustin Nelson,Female,6241,1981-04-08,AB+ -Michael Johnson,Male,6242,1946-02-10,O- -Jessica Berg,Female,6243,1952-05-30,O- -Phyllis Bell,Male,6244,1930-09-07,AB+ -David Atkinson,Male,6245,1982-11-13,AB+ -Ashley Jones PhD,Male,6246,1988-08-31,AB+ -David Pittman,Male,6247,1977-07-11,AB- -Kristen Turner,Male,6248,2000-11-30,A+ -Heather Ferguson,Female,6249,1994-07-20,A- -Mrs. Ashley Cook,Female,6250,1955-02-14,B+ -Maurice Lyons,Male,6251,1999-09-20,AB+ -William Martin,Male,6252,1974-07-09,A+ -Douglas Bradley,Female,6253,1937-04-26,B- -Marie Bowen,Male,6254,1949-12-06,O- -Heidi Anderson,Female,6255,1995-06-24,O- -Anna Schultz,Male,6256,2000-12-01,B+ -Daniel Jones,Female,6257,1953-09-19,B+ -Monica Davis,Female,6258,1935-06-11,O+ -Tiffany Vaughan,Male,6259,1975-02-08,B- -Mary Lee,Male,6260,1998-09-26,A- -Natasha Miller,Female,6261,1965-06-14,B+ -Frederick Rodriguez,Female,6262,1985-12-21,AB+ -Tammy Maldonado,Female,6263,1965-08-31,AB+ -Cheryl Sweeney,Male,6264,1937-08-05,A- -Nicholas Morrison,Male,6265,1966-01-11,AB- -Michelle Parks,Male,6266,1957-01-17,B- -Tammy Benson DVM,Female,6267,1997-10-23,AB+ -Katherine Curry,Male,6268,1957-11-13,B+ -Joan White,Female,6269,1995-02-22,O+ -Wendy Taylor,Male,6270,1958-05-31,A+ -John Black,Male,6271,1987-01-06,O- -William Miller,Female,6272,1950-02-12,B- -Laura Sanchez,Female,6273,1932-10-05,O- -James Powell,Female,6274,1940-05-11,A+ -William Gould,Male,6275,1993-01-20,B- -Lisa Tran,Male,6276,1941-10-08,B+ -Jonathan Garcia,Female,6277,1942-10-13,A+ -Mark Mclean,Female,6278,1986-08-06,AB+ -Angel Ross,Male,6279,1935-08-15,A- -Amy Harris,Female,6280,1991-04-24,AB+ -Jennifer Horn,Female,6281,1934-09-13,B+ -Brian Martin,Female,6282,1930-11-07,A- -Lauren Ortiz,Male,6283,1969-05-27,AB+ -Connor Brown,Female,6284,1987-04-14,A+ -Charles Patel,Female,6285,1933-06-14,A+ -Gregory Salazar,Female,6286,1966-01-09,A+ -Joshua Callahan,Male,6287,1985-08-16,O- -Megan Bailey,Male,6288,1961-05-18,B+ -Megan Allison,Male,6289,1976-06-16,A+ -Margaret Bauer,Female,6290,1995-09-17,AB+ -James Daniel,Male,6291,1998-04-09,O+ -Janet Johnson,Female,6292,1968-05-12,B+ -Elizabeth Kane,Male,6293,1937-11-06,A+ -Scott Bartlett DVM,Female,6294,1969-05-01,O+ -Erica Cortez,Male,6295,1946-02-24,A- -Barbara Love,Female,6296,1980-05-13,AB+ -Stephen Cook,Male,6297,1947-02-12,A+ -Wayne Simmons,Female,6298,1943-07-11,O- -Edward White,Male,6299,1940-12-20,O- -Erica Beasley DVM,Male,6300,1934-06-14,A- -Linda Young,Female,6301,1959-12-31,O+ -Heather Myers,Male,6302,1977-04-18,AB- -Lisa Lopez,Female,6304,1946-08-23,O- -Traci Carpenter,Female,6305,1994-02-14,B+ -Mary Williamson,Male,6306,1954-06-07,O- -Alvin Robbins,Female,6307,1940-11-05,O- -Tyler Hoover,Male,6308,1981-09-18,AB+ -Brandi Moody,Male,6309,1954-02-10,O- -Karen Bryant DDS,Female,6310,1985-04-12,B- -Ashley Weeks,Female,6311,1991-07-24,A+ -Michael Martinez,Female,6312,1979-07-26,A- -Jacqueline Hanson,Female,6313,1967-02-14,O- -Lucas Hernandez,Male,6314,1948-04-22,AB- -Antonio Gonzales,Female,6315,1934-05-07,B+ -Bryan Johnson,Female,6316,1994-01-09,AB- -Beth Palmer,Male,6317,1956-11-03,O- -Mikayla Baker,Female,6318,1977-04-24,O- -Joseph Flores,Male,6319,1990-01-28,B- -Rhonda King,Female,6320,1998-01-17,O- -Donald Harris,Female,6321,1987-08-01,O- -Mr. Kenneth Long,Male,6322,2001-10-07,A+ -Denise Tanner,Male,6323,1958-05-04,AB- -Sharon Richardson,Male,6324,1981-07-08,B- -Melissa Bruce,Female,6325,1985-07-19,AB- -Jesse Hicks,Female,6326,1961-05-12,B- -Barbara Potter,Female,6327,1973-05-24,AB- -Ana Powell,Female,6328,1948-09-20,O- -Kevin Dean,Female,6329,1933-12-20,AB- -Courtney Morgan,Female,6330,1987-03-07,AB- -Hunter Miller,Female,6331,1944-12-07,B- -Matthew Bryant,Female,6332,1955-10-21,A- -Joseph Hughes,Male,6333,1941-04-10,O+ -Kristin Harrington,Female,6334,1954-04-14,B- -Pamela Cunningham,Female,6335,1959-09-16,B- -Margaret Moore,Female,6336,1980-05-30,B- -Andrew Bailey,Male,6337,1969-04-09,AB+ -Ray Patterson,Female,6338,1948-09-28,A- -Jimmy Moreno,Male,6339,1985-02-23,AB+ -Mr. Gary Lynn,Male,6340,1991-01-09,AB+ -Zachary Yates,Male,6341,1942-08-30,B- -Jillian Gregory,Male,6342,2002-11-12,O+ -Kevin Chang,Male,6343,1954-03-24,B- -Patrick Payne,Male,6344,1975-04-24,O- -Mary Arellano,Male,6345,1965-12-19,O+ -Thomas Ortiz,Male,6346,1987-06-06,AB+ -Taylor Dyer,Female,6347,1931-08-13,B+ -Ashley Brock MD,Male,6348,1987-03-31,AB- -Jose Lewis,Female,6349,1982-08-01,AB- -Carmen Harris,Male,6350,1947-10-28,A- -Antonio Evans,Female,6351,1951-01-24,B+ -Gwendolyn Gordon,Female,6352,1955-11-20,A+ -Scott Howard,Female,6353,1975-01-20,A- -Mark Hall,Male,6354,1962-01-21,O+ -Yolanda Rodriguez,Female,6355,1965-06-08,AB+ -Thomas Wood,Male,6356,1984-08-29,O+ -Angela Luna,Female,6357,1996-08-28,O+ -John Haynes,Male,6358,1975-08-05,AB- -David Graham,Male,6359,1957-04-17,B- -Christopher Brown,Male,6360,1936-09-28,O- -Cynthia Hernandez,Female,6361,1955-11-26,A+ -Elizabeth Larson,Male,6362,1932-10-12,AB+ -Julia Hill,Female,6363,1955-05-25,O+ -Anthony Shah,Female,6364,1966-05-01,A+ -Bonnie Randall,Male,6365,1996-09-19,O+ -Dr. Lisa Leblanc,Male,6366,1931-02-11,B+ -Anita Davis,Female,6367,1950-03-21,AB- -Lisa Stein,Female,6368,1991-06-03,O- -Shawn Gould,Female,6369,1991-10-01,AB- -Carol Warner,Male,6371,1996-09-17,A+ -Jonathan Hatfield,Male,6372,1960-11-07,AB+ -Teresa Mendoza,Female,6373,1977-07-22,O+ -Jeffrey Brown,Female,6374,1962-04-18,O- -Matthew Cox,Female,6375,1942-04-13,B+ -Alexander Logan,Male,6376,1954-05-16,AB- -Heather Chapman,Female,6377,1937-03-03,B+ -Karen Taylor,Female,6378,1992-01-29,A+ -Joseph Mathews,Female,6379,1956-04-17,AB- -Michael Garza,Male,6380,1948-12-20,O+ -Gregory Mahoney,Male,6381,1944-09-12,O+ -Kari Morris,Female,6382,1942-08-27,B+ -Jessica Mays,Female,6383,2001-05-09,AB+ -Cameron Holt,Male,6384,1970-04-20,O- -Angela Evans,Male,6385,1960-06-18,B- -Jamie Frederick,Male,6386,1950-09-19,AB- -John Meyers,Female,6387,1963-09-11,O+ -Melissa Clark,Female,6388,1987-08-24,A+ -Alex Vargas,Female,6389,1995-10-29,AB- -Daniel Cole,Male,6390,1971-04-22,AB+ -Albert Cohen,Female,6391,1977-08-09,AB+ -Scott Graham,Female,6392,1995-05-28,O+ -Roy Carter,Male,6393,1981-08-11,O+ -Jay Doyle,Male,6394,2002-08-05,B+ -Veronica Bishop,Male,6395,1980-03-02,O+ -Vanessa Foster,Female,6396,1979-05-03,B+ -Maria Carter,Female,6397,1957-01-29,A- -Dalton Craig,Male,6398,1952-03-01,B- -Diane Paul,Female,6399,1992-01-05,O+ -John Bartlett,Female,6400,1964-10-28,AB- -Sharon Fry,Female,6401,1958-02-26,AB- -Katelyn Wilson,Male,6402,1980-01-18,B+ -Brandon Farmer,Female,6403,1968-12-18,A- -Daniel Scott,Female,6404,1992-09-20,A- -Penny Garcia,Female,6405,1970-03-30,O- -Richard Solomon,Female,6406,1977-10-18,A+ -Stephanie Price,Male,6408,1944-03-12,O+ -Andrea Cunningham,Male,6409,1936-07-30,B+ -Joshua Bailey,Female,6411,1943-05-28,AB- -Michael Adams,Male,6412,1994-12-06,A- -Carrie Hoover,Male,6413,1961-03-23,AB- -Matthew Houston,Female,6414,1971-07-06,AB- -Raymond Walker,Female,6415,1955-08-01,A- -Shane Palmer,Male,6416,1959-02-15,B- -Catherine Harris,Female,6417,1935-05-11,A- -Matthew Little,Female,6418,1949-03-25,A- -Brendan Shaffer,Male,6419,1968-07-02,A+ -Jesse Ayala,Male,6420,1969-03-30,B+ -Michael Thornton,Male,6421,1940-09-12,B+ -Miranda Smith,Female,6422,1932-03-18,A- -Phyllis Kim,Female,6423,1997-10-18,AB+ -Samantha Young,Male,6424,1968-06-01,B+ -Gregory Taylor,Female,6425,1943-03-21,B+ -Laura Jones,Male,6426,1967-07-05,B+ -Claire Cooper,Female,6427,1942-05-22,A- -Jeffery Johnson,Male,6428,1971-08-07,AB- -Ashley Obrien,Male,6429,2000-11-12,O+ -Steven Miller,Male,6430,1974-06-02,AB- -Donald Church,Female,6431,1981-02-10,A+ -Travis Rodriguez,Female,6432,1944-07-19,AB+ -Jacqueline Smith,Male,6433,1967-03-26,A- -Darryl Garrett,Female,6434,1965-10-02,B- -Alicia Howard,Female,6435,1976-12-06,O- -Heather Harris,Male,6437,1943-05-20,A- -Anthony Cole,Female,6438,1940-07-21,O+ -Barbara Patel,Male,6439,1964-02-10,O- -William Hall,Female,6440,1969-10-19,B- -Felicia Nichols,Female,6441,1939-09-29,A+ -Robert Cameron,Male,6442,1956-10-03,A+ -Jesse Cochran,Female,6443,1977-06-28,B- -Carol Yates,Male,6444,1985-05-23,AB- -Jim Green,Female,6445,1993-04-10,B- -Jonathan Alexander,Male,6446,1939-10-16,B+ -Alyssa Olsen,Male,6447,1999-09-07,B+ -Tammy Flores,Female,6448,1936-08-15,A- -Ronald Rodriguez,Male,6449,1941-06-30,O+ -Ashley Vincent,Male,6450,1932-09-28,B+ -Lauren Morris,Male,6451,1989-03-20,AB+ -Rachel Smith,Male,6452,1949-06-29,A- -Jennifer Lucas,Female,6453,1985-12-28,A- -Debra Harmon,Female,6454,1982-08-25,A- -Megan Perez MD,Female,6455,1956-06-26,O- -Anthony Williams,Female,6457,1999-02-01,O- -Mark Shah,Male,6458,1944-07-22,A+ -Megan Mcdonald,Male,6459,1974-06-23,A- -Julia Estrada,Male,6460,1976-01-06,AB- -Christina Ellis,Male,6461,1993-03-30,B+ -Matthew Walsh,Male,6462,1962-07-05,A+ -Frank Brewer,Female,6463,1941-09-06,O+ -Roger Lopez,Male,6464,1950-09-02,B- -Jason Smith,Female,6465,1992-02-25,O- -Cameron Johnson,Female,6466,1982-04-12,A- -Jim Rodriguez,Male,6467,1998-07-11,O+ -Jason Williams,Male,6468,1958-12-29,A+ -Colton Williams DDS,Female,6469,1996-12-13,A+ -Patrick Stevens,Female,6470,2002-09-11,O- -Monique Harris,Female,6472,1934-07-16,A+ -Melissa Benton,Male,6473,1981-10-25,AB- -David Woods,Female,6474,1948-07-08,A+ -Molly Wong,Male,6475,1983-04-12,AB+ -Carrie Simmons,Male,6476,1938-08-31,B+ -James Nguyen,Male,6477,1980-06-24,B- -Kristina Fuentes,Male,6478,1953-03-20,A+ -Peter Allen,Female,6479,1945-09-16,B+ -Erin Martinez,Female,6480,1983-09-01,B+ -Ronnie Padilla,Male,6481,1978-10-27,AB+ -Joseph Fisher,Male,6482,1946-06-15,O+ -Dawn Wilson,Male,6483,1976-07-09,A+ -Steven Shaw,Male,6484,1942-06-19,AB- -Mr. Craig Richards,Male,6485,1979-09-09,O+ -Darrell Rice,Female,6486,1955-10-14,B+ -Rebecca Gilbert,Female,6487,2000-09-01,B+ -Joshua Watkins,Female,6488,1955-04-01,A- -Courtney Stokes,Male,6489,1937-04-25,A+ -Ashley Glover,Female,6490,1947-11-07,O- -Mark Morgan,Female,6491,1940-11-06,AB+ -Matthew Cannon,Male,6492,1964-11-12,AB+ -Albert Riley,Male,6493,1965-12-05,O- -Robert Torres,Female,6494,1983-07-23,B- -Teresa Martin,Female,6496,1940-03-11,B+ -Theresa Woods,Male,6497,1943-06-08,A- -Jacqueline Kennedy,Male,6498,1949-11-20,AB- -Kevin Steele,Female,6499,1967-07-05,AB+ -Douglas Hanson,Male,6500,1988-09-11,O+ -Jason Hampton,Female,6501,2001-04-29,B+ -Tracy Webb,Female,6502,1960-05-11,AB- -Xavier Dawson,Female,6503,1932-03-19,AB+ -Courtney Warner,Female,6504,1955-02-09,A- -Sandra Cline,Female,6505,1974-07-09,B- -Larry Jensen,Female,6506,1976-11-04,A- -Nicholas Fields,Female,6507,1959-04-12,O+ -Linda White,Female,6508,1951-02-01,A- -Anthony Steele,Male,6509,1978-03-10,AB- -Paul Carter,Female,6510,1985-12-13,B+ -Miss Melissa Ward,Male,6511,1980-11-15,O+ -Adam Haynes,Male,6512,1968-11-08,B+ -Angela Rodriguez,Female,6513,1982-07-17,O- -Michelle Herrera,Male,6514,1999-06-02,A+ -Kathy Freeman,Male,6515,1977-07-09,O- -Daniel Klein,Male,6516,1990-04-14,AB- -Reginald Kelley,Male,6517,1967-07-10,A+ -Michael Miles,Male,6518,1995-05-07,O- -Vicki Wilson,Male,6519,1935-10-25,A+ -Theresa Taylor,Male,6520,1998-12-04,AB+ -Kathryn Avery,Male,6521,1961-07-30,A- -Matthew Green,Female,6522,1975-06-22,O+ -John Martinez,Male,6523,1969-07-23,A+ -Stephanie Lopez,Male,6524,1969-12-08,AB+ -Olivia Mccarthy,Female,6525,1999-08-03,A- -Dr. Sherry Taylor,Female,6526,1934-12-20,A- -Amanda English,Female,6527,1965-08-06,B- -Heather Vasquez,Male,6528,1977-11-20,B+ -Jessica Roberts,Female,6529,1975-03-14,O- -Lisa Ramos,Female,6530,1983-09-30,B- -Jessica Campos,Male,6531,1966-08-20,B+ -Charles King,Male,6532,1972-03-07,B+ -Lindsay Garner,Male,6533,1938-01-10,AB- -Eric Lewis,Female,6534,1967-02-23,AB+ -Tamara Smith,Male,6535,1968-06-08,B- -Joseph Stevens,Female,6536,1963-09-22,B- -Melissa Anderson,Male,6538,1938-02-19,B+ -Albert Perkins,Male,6539,1935-07-11,A- -Cynthia Butler,Female,6540,1995-02-28,AB+ -Helen Mclaughlin,Male,6541,1936-08-12,A- -Becky Kelley,Male,6542,1983-05-03,O+ -Sherry Sanchez,Male,6543,1934-05-29,A+ -Jennifer Peterson,Female,6544,1931-12-19,AB- -Randy Smith,Female,6545,1984-08-10,AB- -Derek Sanchez,Male,6546,2000-01-26,O- -Steven Gray,Male,6547,1964-09-01,A- -Jasmine Hardy,Male,6548,1948-07-27,A+ -Gail Moore PhD,Female,6549,2002-08-27,B+ -Jeremy Adkins,Male,6550,1932-11-14,O- -John Jensen,Male,6551,2001-01-01,AB- -Joseph Simpson,Female,6552,1961-10-23,A+ -Dr. Kenneth Kirby,Female,6553,1952-09-29,B- -Megan Whitehead,Female,6554,1951-08-24,O+ -Derek Austin,Male,6555,1957-05-12,B+ -Amanda Pitts,Male,6556,1958-04-22,B- -Cody Bell,Female,6557,1945-04-10,O+ -Carla Young,Female,6558,1967-11-17,B+ -Steve Hansen,Female,6559,1979-04-18,A- -Kim Porter,Female,6560,1947-12-06,AB+ -Ernest Ellis,Male,6561,1950-03-18,O- -Dana Cooper,Female,6562,1987-12-12,O- -Bruce Hernandez,Female,6563,1985-03-29,AB+ -Robin Fisher,Female,6564,1938-01-20,A+ -Michael Maldonado,Male,6565,1945-08-05,AB+ -Scott Foster,Male,6566,1947-07-12,A- -Amanda Boyd,Female,6567,1971-07-24,AB- -Brandon Larson,Female,6568,1969-07-31,AB+ -Wayne Alexander,Female,6569,1965-11-10,O+ -Angela Parker,Female,6570,1999-12-18,AB- -Amanda Fowler,Female,6571,1946-12-20,AB+ -Ryan Ward,Female,6572,1944-12-03,O- -Derek Lloyd,Female,6573,1999-06-07,B- -Lauren Good,Male,6574,1997-12-11,O+ -Kathy Chapman,Male,6575,1990-12-10,A- -Steven Morales,Male,6576,1979-02-10,O+ -Brandon Kirk,Female,6577,1977-08-18,B+ -Joshua Bruce,Female,6578,1952-12-09,A+ -Angela Warren,Female,6579,1935-02-25,B- -Sherry Bauer,Male,6580,1948-08-13,O+ -Brian Chen,Female,6581,1969-12-19,B+ -Christopher Newman,Male,6582,1967-06-11,AB+ -Scott Wilson,Female,6583,1942-07-23,O+ -Ronald Potter,Female,6585,1998-06-19,O+ -Jenny Douglas,Male,6586,1953-01-30,O+ -Sabrina Gonzales,Female,6587,1992-07-05,A+ -Ann Fisher,Female,6588,1936-06-03,O+ -Blake Moyer,Male,6589,1975-01-24,O+ -Jacob Atkins,Male,6590,1956-02-22,A+ -David Simpson,Female,6591,1946-02-03,B+ -Kyle Russell,Female,6592,1948-07-30,AB- -Debra Hill,Female,6593,1973-05-08,B- -Charles Lewis,Female,6594,1943-06-24,B+ -Amanda Kelley,Male,6595,1997-01-03,A- -Teresa Brown,Female,6596,1981-03-28,AB- -Tammy Cruz,Female,6597,1942-10-31,O- -Allison Elliott,Male,6598,1969-06-12,A+ -Mike Garcia,Male,6599,1980-01-25,A+ -Monica Collins,Male,6600,1963-06-02,O+ -Lauren Castaneda,Male,6601,1987-08-24,O+ -Ronald Richardson,Male,6602,1994-06-01,A- -Mary Sanders,Male,6603,1966-01-31,O- -Dana Nguyen,Female,6604,1980-06-30,O+ -Trevor Mckenzie,Female,6606,1975-03-30,AB+ -Andrea Lutz,Male,6607,1979-10-04,O+ -Jordan Berg,Female,6608,1930-01-17,O+ -Manuel Moore,Female,6610,1966-08-14,AB+ -Brian Montgomery,Male,6611,1976-02-17,O- -Adam Espinoza,Male,6612,1987-02-06,AB+ -Rachel Taylor DDS,Male,6613,1979-11-11,A+ -Brandon Hart,Female,6614,1998-09-16,AB+ -Justin Thornton,Female,6615,1946-04-23,B- -John Walker,Male,6616,1975-02-07,A+ -William Barber,Female,6617,1943-03-09,O+ -Angela Knox MD,Male,6618,1982-08-31,A- -Caleb Stevens,Female,6619,1937-10-14,A+ -Kimberly Hunt,Male,6620,2002-06-12,O- -Devin Cantu,Male,6621,1973-09-24,O- -Katie Hill,Female,6622,1999-10-27,AB+ -William Hicks,Female,6623,1992-10-09,A+ -Emily Harrington,Female,6624,1991-01-06,O+ -Jerry Clarke,Female,6625,1977-07-06,O- -Kelsey Wagner,Male,6626,1932-12-30,AB- -James Woodard,Male,6627,1946-10-08,O+ -Marie West,Male,6628,1994-12-22,AB- -Kathy Campbell,Female,6629,1983-08-10,B- -Joshua James,Female,6630,1933-11-05,AB- -Molly Davis,Female,6631,1993-11-10,B+ -Vanessa Green,Male,6632,1986-08-09,O- -Penny House,Male,6633,1940-11-26,AB+ -Brian Goodman,Female,6634,1964-04-07,B- -Eric Hernandez,Male,6635,1973-03-26,A+ -George Bauer,Female,6637,1963-06-02,O+ -Drew Rivera,Female,6638,1990-01-25,O- -Tammy Henry,Male,6639,1996-08-20,B- -Tyler Crane,Male,6641,1964-11-26,B- -Mary Marquez MD,Female,6642,1987-10-06,B+ -Latasha Briggs,Female,6643,1938-06-20,O- -Kristin Valencia,Female,6644,1986-03-31,A+ -Jesse Anderson,Male,6645,1992-02-17,A+ -Gary Cole,Male,6646,2002-12-19,AB+ -Jamie Wade,Female,6647,1995-05-02,A- -Lisa Keller,Male,6648,1998-01-24,AB- -Troy Rodgers,Female,6649,1968-04-02,A+ -Jacob Snow,Male,6650,1970-01-07,B+ -Nicholas Edwards,Male,6651,1943-07-05,AB+ -Kelly Perry,Male,6652,1943-06-28,AB- -Troy Gomez,Male,6653,2000-07-15,B- -Mr. Kenneth Reynolds,Male,6654,1940-11-13,O- -Debra Reed,Male,6655,1938-02-13,A+ -Patrick Brock,Female,6656,1941-10-29,AB+ -Deborah Watson,Female,6657,1954-07-29,B- -Emily Hodges,Male,6658,1949-06-18,A+ -Anthony Wood,Female,6659,1955-01-11,O+ -Scott Keith,Female,6660,1985-08-23,A- -Robert Blackwell,Male,6661,1974-12-24,B- -Marissa Miller,Male,6662,1934-12-16,B+ -Erika Smith,Male,6664,1987-05-12,B+ -Todd Taylor,Male,6665,1958-02-16,A+ -Amanda Cook,Female,6666,1954-09-13,B+ -Christina Matthews,Female,6667,1980-02-01,B- -Kristen Webb,Female,6668,1947-06-05,O- -Ashley Johnson,Female,6669,1937-01-25,O- -Jeffrey Williams,Male,6670,1931-11-23,A- -Tamara Perez,Male,6671,1932-07-20,O- -Erika Cruz,Male,6672,1965-12-11,AB- -Kendra Wallace,Male,6673,1996-07-07,O+ -Tammy Fox,Female,6674,1968-12-13,O- -Jeremy Richard,Male,6675,1967-12-14,B+ -Anna Arnold,Female,6676,1972-05-15,O+ -Pamela Long,Male,6677,1992-05-01,O- -Douglas Cook,Male,6678,1939-04-30,AB- -Rodney Giles,Female,6679,1952-10-31,B+ -Austin Travis,Female,6680,1977-09-07,B- -Timothy West,Male,6681,1978-06-13,A+ -Emily Bishop,Female,6682,1953-06-28,A+ -Zachary Brown,Male,6683,1938-07-19,O- -Bryan Haynes,Female,6684,1979-12-27,A+ -Henry Fleming,Female,6685,1999-10-17,O- -Heather Palmer,Female,6686,2002-06-06,O- -Jonathan Brady,Male,6687,1993-06-04,B+ -Thomas Sellers,Male,6688,1973-08-29,A- -Don Evans,Male,6689,1940-04-06,AB+ -Dan Nash,Male,6690,1930-10-05,AB+ -Christina Barajas,Female,6691,2002-09-13,A- -Sierra Patton,Female,6692,1979-12-13,AB+ -Sandra Cunningham,Female,6693,1961-08-29,O+ -Sabrina Fox,Male,6694,1991-02-03,AB+ -Barbara Robertson,Male,6695,1948-08-06,O- -Jeanette Johnson,Male,6696,1987-10-06,AB- -Renee Neal,Female,6697,1968-02-09,AB- -Daniel Young,Male,6698,1958-05-28,B- -Steven Yoder,Female,6699,1942-10-20,B+ -Timothy Miller,Male,6701,1933-03-16,AB+ -Holly Carter,Female,6702,1953-10-08,AB- -Thomas Higgins,Male,6703,1959-05-06,AB+ -Pamela Harrington,Female,6704,2000-07-10,B+ -Sean Curtis,Male,6705,1964-02-02,B- -Casey Chan,Male,6706,1959-03-30,AB- -Audrey Howard,Female,6707,1957-07-26,O- -Dominique Jackson,Male,6708,1989-05-23,O+ -John May,Male,6709,1936-09-28,A- -Ashley Edwards,Female,6710,1967-05-17,A- -Krystal Miller,Male,6711,2001-10-01,A- -Joshua Li,Female,6712,1930-10-15,AB+ -Jackson Mitchell,Female,6713,1991-02-27,AB- -Kyle Madden,Female,6714,1986-08-01,B+ -Brian Johnson,Male,6715,1980-01-30,B+ -Melissa Pena,Female,6716,1933-03-07,AB- -Kristin Bishop,Male,6717,1975-03-19,B- -Cindy Davis,Male,6718,1992-03-17,O- -Dr. Aaron Todd,Female,6719,1936-06-21,A+ -Kayla Gardner,Female,6720,1997-03-05,AB- -Lori Holder,Male,6721,1946-05-20,O+ -Lori Brown,Male,6722,1975-04-02,B- -Chad Pruitt,Female,6723,1952-06-21,AB- -David Adams,Male,6724,1995-04-23,AB- -Karen Green,Female,6725,1970-05-29,B- -Antonio Webb,Female,6726,1930-09-02,B- -Samantha Myers,Male,6727,1977-05-24,AB+ -Melissa Jimenez,Female,6728,1938-09-14,AB- -James Peterson,Female,6729,1935-12-17,A+ -Jennifer Lee,Male,6730,1943-09-12,O+ -Douglas Hopkins,Female,6731,1932-06-05,O- -Joanne Miller,Male,6732,1998-03-21,O- -Kimberly Rosario,Male,6733,2002-11-26,A+ -Michael Cervantes,Female,6734,1984-02-29,B+ -Nicholas Graves,Female,6735,1967-07-27,B- -Katherine Roach,Male,6736,1963-03-31,B- -James Stewart,Male,6738,1998-02-14,B+ -Lisa Lawson,Female,6739,1999-10-09,B- -Holly Oliver,Male,6740,1937-04-08,B+ -Catherine Thompson,Female,6741,1962-10-24,AB- -Zachary Hicks,Female,6742,1995-02-05,B+ -Mark Maxwell,Male,6743,1978-08-12,B- -Patrick Santana,Female,6744,1949-07-15,B- -Rachel Cox,Female,6745,1930-11-17,AB- -Scott Murillo,Male,6746,1942-09-29,B+ -Robert Turner,Male,6747,1989-05-15,AB- -Michele Wheeler,Female,6748,1993-05-15,A+ -Justin Carr,Male,6749,1993-08-16,AB+ -Brandi Hall,Female,6750,1989-12-06,AB- -Christina Thompson,Female,6752,1974-03-02,O+ -Gregory Banks,Female,6753,2000-05-20,B- -Patricia Thomas,Male,6754,1959-06-28,AB+ -Alejandro Black,Female,6755,1947-12-11,O- -Derek Edwards,Female,6756,1985-12-04,A+ -Kristy Lara,Male,6758,1961-08-25,B+ -Robert Richardson,Male,6759,1954-09-01,AB+ -Donald Terry,Female,6760,1966-11-30,AB- -Brandon Dalton,Male,6761,1950-07-13,B- -Danielle Simon,Female,6762,1948-03-03,B- -Andrew Morris,Male,6763,1950-02-27,B- -Michael Bennett,Male,6764,1974-11-21,AB+ -Sara Miller,Female,6765,1975-05-23,B- -David Townsend,Female,6766,1936-12-12,AB- -Cynthia Maynard,Female,6767,1982-08-22,B+ -Margaret Brady,Male,6768,1971-08-30,AB+ -Denise Garcia,Male,6769,1980-12-17,B- -Joanne Wilcox,Female,6770,1938-03-29,O- -Adam Lynch,Female,6771,1996-09-19,O- -Laura Cervantes,Female,6772,1968-11-26,O+ -Christina Hernandez,Male,6773,1972-12-01,B- -Jonathan Small,Female,6774,1971-02-24,B- -Michael Morgan,Female,6775,1935-09-09,AB+ -James Gross,Female,6776,1968-01-29,AB+ -Adrienne Jackson DVM,Female,6777,1996-05-03,A- -Amanda Bray,Female,6778,1940-08-03,B+ -Stephanie Day,Male,6779,1974-03-23,B- -Whitney Anderson,Female,6780,1943-05-06,O+ -Ashley Roberts,Male,6781,1953-08-23,B+ -James Bell,Male,6782,1930-10-25,B- -Thomas Nelson,Female,6784,1965-11-08,B+ -Samantha Griffin,Female,6785,1990-11-22,AB- -Michael Saunders,Female,6786,1954-09-28,AB+ -Scott Hess,Female,6787,1932-10-12,B- -Erika Kidd,Male,6788,1933-10-16,B+ -Julie Morales,Male,6789,2001-02-10,AB+ -Lauren Bates,Female,6790,1953-12-11,B- -Corey Rose,Female,6792,1981-04-17,A+ -Eileen Price,Female,6793,1978-05-02,AB+ -Rebecca Clark,Female,6794,1933-06-14,B+ -Curtis Smith,Female,6795,1951-02-01,O+ -Alex Nguyen,Male,6796,1997-10-16,A+ -Amanda Gomez,Female,6797,1987-05-09,AB- -Joshua Kelley,Female,6798,1993-09-28,B- -Ashley Chen,Male,6799,1990-05-22,A- -Kyle Powell,Male,6800,1958-06-24,AB- -Kyle Arnold,Female,6801,1972-06-28,AB+ -Matthew Browning,Female,6802,1990-03-04,A+ -Patrick Murphy,Male,6803,1962-06-26,AB- -Brandon Thomas,Female,6804,1972-12-07,O+ -Julia Carroll,Male,6805,1991-09-17,A- -Sheri Dominguez,Female,6806,1945-03-06,AB+ -Jeffrey Rivera,Female,6807,1994-09-06,A+ -Craig Bryant,Female,6808,1987-09-06,AB- -Thomas Durham,Male,6809,1980-01-04,A+ -Benjamin Brooks,Female,6810,1964-03-11,A+ -Sara Cox,Female,6811,1998-09-18,AB- -Amanda Fuentes,Female,6812,1957-08-06,O- -Cameron Smith,Female,6813,1959-06-02,B- -Mckenzie Santiago,Female,6814,1940-06-06,B+ -Miguel Robinson,Female,6815,1990-10-04,AB+ -Charlotte Torres,Female,6817,1988-03-24,AB+ -Rachel Tran,Female,6818,1949-09-24,A- -Elizabeth Kennedy,Male,6819,1986-03-27,A- -Paul Gilbert,Male,6820,1987-08-27,A- -Charles Vaughn,Female,6821,1967-08-21,AB+ -Nicole Lane,Male,6822,1973-10-17,A+ -Philip Anderson,Male,6823,1973-11-26,A- -John Obrien,Female,6824,1961-12-15,AB- -Douglas Hickman,Male,6825,1966-03-03,B- -Richard Payne,Female,6826,1978-09-19,O+ -Angel Duke,Male,6827,2001-12-04,AB+ -Nicholas Luna,Female,6828,1944-03-25,AB- -Jonathan Small,Male,6829,1972-08-01,B- -Pamela Calderon,Male,6830,1950-05-28,B- -Tabitha Gray,Female,6831,1953-11-14,O- -Christopher Greene,Male,6832,1970-09-07,B+ -Barbara Alexander,Male,6833,1935-12-13,AB- -John Meza,Female,6834,1966-01-10,AB+ -Christina Jordan,Female,6835,1975-08-16,A- -Megan Phillips,Male,6836,1985-09-30,A+ -James Fox,Male,6837,1982-03-02,A- -Thomas Bell,Male,6838,1960-05-08,B- -Michelle Garcia,Female,6839,1996-04-13,B- -Justin Hernandez,Female,6840,2002-01-30,O+ -Kendra Barnett,Male,6841,1940-11-25,A- -Stephanie Anderson,Male,6842,1987-12-01,B+ -Patrick Bryant PhD,Female,6843,1944-05-14,B+ -Sue Allen,Male,6844,1958-11-23,O- -Michael Mccormick,Male,6845,1986-12-24,B+ -Kenneth Castro,Female,6846,1946-10-19,B- -Evelyn Bowman,Female,6847,1945-04-05,B- -Jason Sanchez,Male,6848,1986-03-03,B+ -Matthew Downs,Female,6849,2001-12-18,A+ -Shawn Woods,Female,6850,1967-08-06,A+ -Christopher Harmon,Male,6851,1949-09-07,B+ -Tiffany Hancock,Female,6852,1969-10-24,O+ -Kevin Sutton,Female,6853,1959-10-14,AB- -James Lindsey,Male,6854,1960-05-10,O+ -Christopher Mora,Male,6855,1967-06-03,O+ -Michelle Hunter,Male,6856,1987-04-11,B+ -Sandra Jacobs,Female,6857,1937-08-08,A+ -Joshua Andrade,Female,6858,1955-06-30,A- -Kimberly Stephens,Female,6859,1951-01-28,A- -Carla Griffin,Male,6860,1970-01-20,B+ -Gloria Mendoza,Male,6861,1952-12-17,A- -Jason Kelley,Male,6862,1976-09-02,AB- -Gregory Bentley,Female,6863,1998-08-07,A+ -Miguel Taylor,Male,6864,1952-01-10,B+ -Shawna Barnes,Female,6865,1986-05-29,O- -Lisa Ross,Female,6866,1956-04-29,AB+ -Stephen Gonzales,Female,6867,1971-03-01,AB+ -Rachel Church,Male,6868,1943-11-09,B+ -Jessica Marsh,Female,6869,1959-11-05,B+ -Erica Mcneil,Male,6870,1990-12-10,O- -Michael White,Female,6871,1945-04-13,A- -Deborah Ford,Female,6872,1935-07-08,AB+ -Melissa Bryan,Female,6873,1985-03-26,AB- -Ryan Perez,Male,6874,1965-08-02,B+ -Rebecca King,Female,6875,1959-02-13,A+ -John Baker,Male,6876,1999-10-13,AB+ -Lori Sloan,Female,6877,1967-05-15,AB- -Stephanie Weaver,Male,6878,1949-07-28,A+ -James Shields,Male,6879,1996-02-14,B+ -Jenny Cook,Female,6880,1981-05-01,AB- -Michael Caldwell,Male,6881,1968-05-23,O- -Micheal King,Female,6882,1984-10-17,B+ -Rachel Li,Male,6883,1946-03-17,O+ -Richard Grant,Male,6884,1973-06-30,O- -Andrew Adams,Female,6885,1990-05-25,AB+ -Steven Torres,Male,6886,1999-02-24,A+ -Jeremy Willis,Female,6887,1948-03-05,AB- -Troy Smith,Male,6888,1942-09-26,AB+ -Dale Henderson,Male,6889,1931-09-02,AB+ -Steven Benson,Male,6890,1951-09-28,B+ -Elaine Glenn,Male,6891,1958-05-02,O+ -Lawrence Meadows,Female,6892,1940-08-02,A- -Tammy Dunlap,Female,6893,1975-11-16,AB+ -Melissa Mcknight,Female,6894,1994-01-07,O+ -Pamela West,Male,6896,1976-07-17,A+ -Eric Stark,Female,6897,1993-10-12,A+ -Vanessa Cook,Female,6898,1991-04-25,AB- -Teresa Jones,Male,6899,1936-03-03,A- -Shannon Olson,Female,6900,1943-07-14,O+ -Ashley Barnes,Male,6901,1963-10-05,O- -Tanya Porter,Female,6902,1932-05-14,A+ -Robert Dickerson,Female,6903,1933-06-22,B+ -Jennifer Mack,Female,6904,1950-05-30,A- -Morgan Ballard,Female,6905,1967-06-02,AB- -Heather Maxwell,Male,6906,1999-06-08,O- -Kelli Jensen,Female,6907,1987-05-17,A+ -Jamie Graham,Male,6908,1963-11-14,A+ -Gary Blankenship,Female,6909,1944-04-26,AB- -Andrea Byrd,Female,6910,1974-08-27,AB- -Kevin Powell,Female,6911,1980-12-25,B- -Ricky Nelson,Female,6912,1941-02-06,B+ -Joanne Hall,Female,6914,1932-07-24,AB+ -Chloe Scott,Female,6915,1963-04-30,AB+ -Scott Sherman,Male,6916,1992-05-13,O- -Lauren Dominguez,Male,6917,1996-06-18,AB+ -Karen Kelly,Male,6918,1958-10-31,O- -Sandra Wallace,Male,6919,1972-08-08,A- -Christopher Walker,Male,6920,1974-03-27,A+ -Justin Garcia,Male,6921,1975-10-01,B- -Megan Wagner,Female,6922,1956-08-18,B- -Brittany Pena,Male,6923,1951-04-15,B+ -Jeffrey Bonilla,Female,6924,1985-06-06,B+ -Collin Miller,Male,6925,1935-06-09,A+ -Steven Watts,Male,6926,1969-01-08,AB- -Caleb Pitts,Female,6927,1988-05-12,B+ -Tony Carter,Male,6928,1942-08-09,B+ -Erin Brooks,Female,6930,1982-06-19,O+ -James Richard,Male,6931,1973-09-12,O+ -James Choi,Female,6932,1955-11-28,AB+ -Dennis Gray,Female,6933,1999-01-15,AB- -Angela Weber,Male,6934,1968-10-14,O- -Kimberly Prince,Female,6935,1951-03-26,A- -Rachel Rodriguez,Female,6936,1969-01-02,B- -William Price,Male,6937,1941-03-02,AB+ -Steve Glenn,Male,6938,1965-03-11,B+ -Molly Oliver,Male,6939,1978-08-08,A+ -Catherine Anderson,Female,6940,1941-01-25,AB- -Janet Nelson,Male,6941,1974-08-02,B+ -John Powell,Male,6942,1969-05-25,B- -Kaitlyn Juarez,Male,6943,1937-01-19,O- -Kelli Cowan,Male,6944,1948-06-29,O- -Laurie Moses,Female,6945,1979-03-10,O+ -Kimberly Valdez,Male,6946,1935-06-10,AB+ -Stacy Lewis,Female,6947,1980-12-28,B+ -Dalton Dunn,Female,6948,1985-09-19,A+ -Terry Brown,Male,6949,1995-09-05,B- -Charles Cook,Female,6950,1972-05-10,B+ -Francis Aguirre,Female,6951,1997-08-21,A- -Leslie Garcia,Female,6952,1946-05-05,O- -Brent Brown,Female,6953,1999-08-14,B+ -Shannon Miller,Male,6954,1950-07-08,B- -Mary Davis,Female,6955,1941-03-27,A+ -Rachel Hunt,Male,6956,1935-09-08,B- -Amy Robinson,Female,6957,1989-03-07,AB+ -David Fitzgerald,Male,6958,1938-03-14,O+ -Brandon Hayes,Female,6959,1940-04-02,B- -Theresa Robertson,Female,6960,1969-08-10,AB- -Paul Horne,Female,6961,1969-10-06,B+ -Angela Meadows,Male,6962,1945-04-26,O+ -Antonio Mendoza,Female,6963,1950-08-15,A+ -Gloria Taylor,Female,6964,1950-03-08,O+ -Ashley Nelson,Female,6965,1969-10-30,B- -Shane Franklin,Female,6966,1979-05-12,B- -Melissa Schultz,Male,6967,1938-08-11,AB- -Sue Peters,Female,6968,1968-04-21,O- -Candace Thomas,Female,6969,1968-07-23,B+ -Amy Dunlap,Female,6970,1975-07-10,AB- -Michael Hicks,Female,6971,1986-01-16,B- -Allison Berry,Male,6972,1951-10-12,A- -Melissa Thompson,Male,6973,1949-11-26,O+ -Noah Murphy,Female,6974,1949-07-10,AB- -John Brooks,Male,6975,1948-09-11,AB- -Michaela Hoffman,Female,6976,1997-10-02,B+ -Victoria Jones,Female,6977,1954-03-20,A- -Paige Young,Female,6978,1968-12-07,A- -Donald Mack,Female,6979,1947-05-03,A- -Scott Oneill,Male,6980,1984-06-22,B+ -Edward King,Male,6982,1966-09-06,O- -Paula Scott,Male,6983,1978-12-18,B- -James Preston,Male,6984,1958-03-06,B- -Charles Powers,Female,6985,1980-10-07,A+ -Pamela Cervantes,Male,6986,1957-10-30,B+ -Manuel Castillo,Male,6987,1988-12-28,O- -Alison Palmer,Female,6988,1958-08-12,A+ -Jessica Thompson,Male,6989,1985-12-01,A+ -Nicole Evans,Female,6990,1935-07-29,A+ -Lauren Bowers,Male,6991,1961-05-21,B+ -Philip Reeves,Male,6992,1951-11-04,AB+ -Lisa Lowery,Male,6993,1977-03-16,A+ -Tamara Bautista,Male,6994,1985-04-29,AB- -Joshua Thomas,Female,6995,1993-05-24,O+ -Jose Woodward,Female,6996,2000-02-28,AB- -Christy Johnson,Male,6997,1963-05-10,AB- -Jeffrey Powell,Male,6998,1930-10-26,B- -Terry Noble,Male,6999,1994-09-10,AB+ -William Ray,Male,7000,1932-07-12,B+ -Tyler Valenzuela,Male,7001,1986-06-12,A+ -Debra Mitchell,Female,7002,1966-07-02,B- -Lee Rodriguez,Male,7003,1986-08-25,O- -Allen Crawford,Female,7004,1982-07-10,O- -Kevin Bishop,Male,7005,1948-01-05,B+ -Fred Simon,Female,7006,1943-05-08,B- -Stacy Jennings,Female,7007,1989-06-10,O+ -Jennifer Potts,Male,7008,1963-07-21,B+ -Jonathan Graves,Male,7010,1992-11-17,B- -Willie Hendricks,Male,7011,1979-10-17,B- -Whitney Brown,Male,7012,1959-11-10,AB+ -Christopher Chapman,Female,7013,1966-07-24,B+ -Cassandra Rogers,Female,7014,1973-06-26,O- -Sandra Bell,Male,7015,1982-02-18,O- -Angela Griffith MD,Male,7016,1984-01-08,A+ -Sandra Myers,Female,7017,1956-06-16,AB- -Michael Castillo,Female,7018,1982-12-07,B+ -Dennis Ruiz,Male,7019,1932-07-30,B- -Patricia Herrera,Male,7020,1935-03-23,B+ -Joan Miller,Female,7021,1943-03-31,B- -Cynthia Mason,Female,7022,1967-06-16,O+ -Thomas Hill,Male,7023,1997-01-18,B+ -Caleb Peterson,Female,7024,1978-04-06,A- -Amanda Richard,Female,7025,1945-08-06,A- -William Clark,Male,7026,1974-06-05,O- -Robert Garcia,Female,7027,1967-01-30,O+ -Donald Osborne,Male,7029,1964-07-16,AB+ -Carla Johnson,Male,7030,1934-01-06,A+ -Paul Walsh,Female,7031,1985-09-10,O+ -Austin Fleming,Male,7032,1980-03-29,O- -Suzanne George,Female,7033,1931-01-11,AB+ -Mary Castaneda,Male,7034,1930-09-20,B- -Beverly Kim,Female,7035,1986-10-20,AB+ -Melissa Moon,Male,7037,1992-08-29,AB- -Ryan Riley,Male,7039,1961-09-15,B+ -Cynthia Scott,Female,7040,1957-10-02,O+ -Kathryn Brooks,Female,7041,1951-06-13,O- -Sharon Reed,Female,7042,1935-03-09,O+ -Mrs. Emily Lambert MD,Female,7043,1952-03-12,B- -Katie Boyd,Female,7044,1962-05-19,A- -April Martinez,Female,7045,1934-07-11,B- -Katelyn Ryan,Male,7046,1990-01-10,O- -Aimee Bartlett,Male,7047,1985-07-07,AB- -Jacqueline Johnson,Female,7048,1931-08-23,A+ -Marcus Rodriguez,Female,7049,1988-01-16,B+ -Ricardo Harrington,Male,7050,1980-02-04,B+ -Troy Travis,Female,7051,2000-10-28,AB+ -Brittany Henry DDS,Female,7052,1954-01-27,AB+ -Rebecca Boone,Female,7053,1998-04-30,B- -Jonathan Washington,Male,7054,1986-05-24,O+ -Daniel Freeman,Male,7055,1939-12-17,A- -Cassandra Wu,Female,7056,1958-05-09,O+ -Christina Cortez,Male,7057,1973-10-11,AB- -Louis Haney,Female,7058,1955-06-09,A+ -Dennis Pineda,Male,7059,1945-05-01,B+ -Michael Gray,Female,7060,1992-07-06,O+ -John Middleton,Female,7061,1969-04-08,B+ -Justin Boyd,Male,7062,1998-04-15,AB+ -Willie Collins,Female,7063,1968-03-07,B+ -Teresa Hernandez,Female,7064,1959-06-20,A- -Yolanda Richards,Female,7065,1969-03-09,B+ -Seth Pratt,Female,7066,1950-03-19,O+ -Kyle Pena,Male,7067,1954-08-05,A- -Chelsea Ramos,Female,7068,1984-08-18,B+ -Nicole Cunningham,Female,7069,1951-02-07,A+ -Christina Riley,Female,7070,1976-11-25,AB+ -Bethany Dyer,Female,7071,1998-02-21,B+ -Bradley Alvarez,Male,7072,1942-09-08,A- -Manuel Black,Male,7073,1977-05-18,O+ -Susan Brown,Female,7074,1955-05-19,AB+ -Thomas Hernandez,Female,7075,1967-09-22,B- -Jeffrey Pacheco,Male,7076,1949-03-10,B- -Jonathan Brown,Male,7077,1972-07-02,AB- -Mr. Gregory Pitts,Female,7078,1981-05-18,B- -Eric Wells,Male,7080,1939-11-28,O+ -John Davila,Female,7081,1999-06-21,A+ -Alexis Villegas,Female,7082,1987-01-09,AB+ -Jennifer Gonzalez,Female,7083,1930-09-30,A- -Teresa Riggs,Female,7084,1965-08-12,O- -Jeremy Rodriguez,Female,7085,1979-09-18,B- -Kevin Cruz,Male,7086,1936-12-22,B- -Timothy West,Female,7087,1938-08-31,O- -Madison Mata,Female,7088,1987-12-12,A- -Abigail Watson,Male,7089,1969-06-19,A- -Daniel Chapman,Male,7090,1969-03-24,O- -David Mathews,Female,7091,1972-08-24,A- -Robert Herman,Female,7092,1932-08-04,O+ -Kristin Garcia,Male,7094,1970-03-25,A- -Thomas Anderson,Male,7096,1976-03-30,AB+ -Kyle Ho,Male,7097,1972-07-19,A- -Thomas Moore,Female,7098,1948-05-25,B+ -Jay Collins,Male,7099,1953-02-04,B+ -Andrea Parsons,Female,7100,1998-09-02,B- -Donald Alvarez,Female,7101,1961-01-28,A+ -Kristie Hardin,Male,7102,1992-04-09,O+ -Cameron Wheeler II,Female,7103,1995-10-28,O+ -Tina Campbell,Female,7104,1939-10-31,A- -Stephen Wade,Male,7105,1957-07-22,A+ -Adam Patel,Male,7107,1978-02-14,A+ -Brianna Durham,Male,7108,1978-11-13,AB- -Alexis Bryant,Female,7109,1931-01-26,A+ -Amy Richardson,Male,7110,1990-03-26,A- -Robert Sherman,Female,7111,1964-09-07,A- -William Wilcox,Female,7112,1961-09-04,O- -Mary Ellis,Male,7113,1965-09-03,B- -John Hernandez,Female,7114,1991-07-30,B+ -Dana Robinson,Male,7115,1965-11-20,AB- -Christopher Ayers,Female,7116,1999-02-16,A- -Karen Stephenson,Female,7117,1937-01-04,O- -John Reid,Female,7118,1946-01-24,AB- -Joyce Scott,Male,7119,1971-11-06,B- -Doris Perez,Female,7121,1933-04-26,AB- -Angel Cameron,Female,7122,1954-12-22,O- -Regina Terry,Male,7123,1934-03-20,AB+ -Joshua Moore,Female,7125,1999-10-14,B+ -Samuel Arellano,Female,7126,1976-08-14,A- -Reginald Miller,Male,7127,1953-10-20,B+ -David Wood,Female,7128,1954-06-05,B- -Holly Robinson,Female,7129,1978-05-16,O+ -Brittany Rodriguez,Female,7130,1995-11-20,B- -Regina Waters,Male,7131,1958-03-25,B- -Anthony Duncan,Male,7132,1994-12-20,B- -Natalie Sanders,Female,7133,1964-11-22,AB+ -Steven Bruce,Male,7134,1942-01-04,A- -Joshua Franco,Male,7135,1977-05-17,O- -Jason Kaiser,Male,7136,1963-07-09,A- -James Oliver,Male,7137,1981-04-06,O+ -Stephen Henson,Male,7138,1969-01-13,O- -Amy Ryan,Male,7139,1954-07-01,AB- -Andrew Zimmerman,Female,7140,1968-03-08,AB- -Alyssa Delgado,Male,7141,1946-03-28,AB- -Mary Walker,Male,7142,1944-10-16,O- -Rachael Hutchinson,Male,7143,1990-05-13,A+ -Charles Villa,Male,7144,2002-05-28,AB+ -Charles Chase,Male,7145,1973-11-08,A+ -Sabrina Holland,Male,7146,1989-04-20,A- -Thomas Cabrera,Male,7147,1931-05-23,AB- -Ann Simmons,Male,7148,1933-12-07,AB+ -Ashley Hester,Female,7149,1961-10-23,O- -Rodney Clark,Female,7150,1953-12-16,AB- -Richard Parker,Male,7151,1974-02-21,O- -Tyler Walters,Female,7152,1950-02-19,AB+ -Susan Cooper,Female,7153,1960-12-03,O- -Lisa Cunningham,Female,7154,1987-03-23,O- -Victoria Rodriguez,Male,7155,1967-11-23,O+ -Michael Valentine,Male,7156,1984-10-10,A- -Jamie Gonzales,Female,7158,1942-01-17,A+ -Kristopher Freeman,Female,7159,1943-10-17,B+ -Colton Peterson,Female,7160,1997-01-24,A+ -Christopher Oconnell,Male,7161,1973-05-23,A+ -Kelsey Mills,Female,7162,1940-03-04,B- -Karen Adams,Female,7163,1970-09-25,O+ -Tracy Oliver,Female,7164,1951-06-17,B+ -Hannah Sanders,Female,7165,1933-07-25,AB- -Margaret Caldwell,Female,7166,1950-03-07,AB- -Donald Arnold,Female,7167,1989-01-20,AB- -Michael Jacobs,Male,7168,1980-10-04,A+ -Kari Garcia,Male,7169,1947-07-22,A- -Kimberly Gonzalez,Male,7170,1947-06-06,A+ -Cameron Baxter,Female,7171,1972-04-19,B+ -Robert James,Male,7174,1931-11-24,A- -Tracy Sexton,Female,7175,1934-01-18,O+ -Thomas Arnold,Male,7176,1947-07-07,A- -Bryan Harper,Male,7177,1953-02-17,B+ -Dr. Jenna Chase,Female,7178,1959-01-31,O- -Beth Long,Female,7179,1976-01-25,A+ -Debra Lee,Male,7180,1957-07-31,AB- -Madison Lozano,Male,7181,1937-03-31,O- -Phillip Trevino,Female,7182,1944-04-06,A+ -Ryan Howard,Male,7183,1947-11-21,AB+ -Amanda Jackson,Female,7184,1987-08-31,B- -Steven Rocha,Female,7185,1949-09-29,A+ -Julia Young,Female,7186,1957-03-07,AB+ -Richard Thomas,Male,7187,1962-08-28,B+ -Roy Nelson,Male,7188,1982-02-06,O+ -Carrie Merritt,Male,7189,1997-05-03,AB+ -Stephen Collins,Male,7190,1955-07-05,O+ -Cynthia Cameron,Female,7191,1963-05-05,A+ -Jeffrey Vazquez,Female,7192,1959-09-12,O+ -Brian Austin,Male,7193,1951-09-21,AB+ -John Johnston,Female,7194,1944-12-29,A- -Ashley Fuller,Male,7195,1967-12-06,B- -Brian Ryan,Male,7196,1951-09-16,O- -Gina Chavez,Female,7197,1935-09-12,O- -Edward Sheppard,Female,7198,1946-09-03,B- -Sharon Barton,Female,7199,1995-02-09,AB- -Kenneth Hayes,Male,7200,2001-07-10,O- -Miss Sara Shaw,Female,7201,1951-05-08,B+ -Megan Ayala,Female,7202,1977-03-20,A+ -Wanda Mcdonald,Female,7203,1952-11-07,AB- -Mark Fisher,Female,7204,1984-06-04,A+ -Renee Taylor,Male,7205,1932-06-23,AB+ -Laura Kennedy,Male,7206,1978-05-02,B+ -Melanie Roman,Female,7207,1975-12-19,AB+ -Penny Pitts,Female,7208,1999-08-06,AB- -Jason Jones,Female,7209,1957-04-23,AB- -Colton Nelson,Female,7210,2001-07-27,B+ -Joshua Hayes,Female,7211,1933-03-30,B+ -James Trevino,Female,7212,1999-05-01,AB- -David Calderon,Female,7213,1934-09-22,AB- -Nancy David,Female,7214,1961-02-27,O+ -Kenneth Perry,Female,7215,1998-01-10,A- -Jason Carter,Male,7216,1965-10-01,AB- -Christina Sutton,Female,7217,1990-10-08,B+ -Dana Costa,Male,7218,1945-05-08,A- -Mark Edwards,Female,7219,1940-10-31,AB- -Kayla Lee,Male,7220,1975-04-30,AB+ -Bradley Goodman,Male,7221,1998-01-13,A+ -Rebecca Simmons,Male,7222,1981-03-04,A- -Craig Stevens,Female,7223,2000-06-16,AB+ -Martin Smith,Female,7225,2001-12-16,O- -Kevin Garner,Female,7226,1974-01-11,B+ -Paul Terry,Female,7227,2002-02-19,O+ -James Williams,Female,7228,1931-02-26,O+ -Jordan Pittman,Female,7229,1945-03-03,A+ -William Perry,Male,7230,2000-08-06,AB- -Lisa Ramirez,Male,7231,1974-08-06,AB+ -Kenneth Guerra,Female,7232,1973-09-18,O- -Stephanie Garcia,Male,7233,1973-06-26,AB+ -Todd Nguyen,Male,7234,1942-10-20,B+ -Patricia Nguyen,Male,7235,1954-11-13,B+ -Kenneth Anderson,Male,7236,1965-08-14,AB- -Tony Woods,Male,7237,1948-06-23,AB- -Bryan Rhodes,Male,7238,1946-09-17,B+ -Cassandra Bradford,Female,7239,1978-11-22,B- -Alyssa Pierce,Male,7240,1983-09-27,B+ -Bryan Bradley,Female,7241,1980-10-30,AB+ -Julie Patel,Female,7243,2001-04-03,A+ -Brian Williams,Female,7244,1983-05-03,AB+ -Nicole Cowan,Male,7245,1993-01-20,O+ -Beth Simmons,Male,7246,1961-01-26,O- -Michael Moody,Male,7247,1956-10-13,A- -Jacob Bush,Female,7248,1946-02-08,A+ -Kimberly Lara,Male,7249,1991-03-28,B- -Larry Phillips,Male,7250,1945-11-16,O- -Kathryn Le,Male,7251,1956-05-11,O- -Adam Collins,Female,7252,1953-01-15,A- -Stephen Ramirez,Male,7253,1997-11-20,O+ -Michael Blankenship,Male,7254,1964-02-18,O+ -Melissa Powell,Male,7255,1956-12-16,O+ -Melanie Berger,Female,7256,1964-10-29,A+ -Benjamin Henderson,Male,7257,1998-01-04,AB+ -Robert Harrell DDS,Male,7258,1955-01-15,O- -Nicholas Cook,Male,7259,1942-05-22,AB+ -Erika Brown,Female,7260,1947-12-17,AB+ -Joshua Lee,Female,7261,1950-11-12,O+ -Richard Cooper,Male,7262,1982-06-15,AB+ -Anthony Thomas,Male,7264,1990-05-23,O- -Susan Nichols,Female,7265,1938-07-22,O- -Allison Wilkins,Female,7266,1953-09-28,AB- -Ariana Garcia DDS,Female,7267,1962-01-19,B- -Ruben West,Male,7268,1978-07-25,A+ -Kimberly Davenport,Male,7269,1963-01-18,AB+ -Kathleen Evans,Male,7270,1999-09-21,A+ -Julie Johnson,Male,7271,1985-05-30,A+ -Teresa Nelson MD,Male,7272,1952-04-09,A+ -Thomas Nichols,Male,7273,1932-07-13,A- -Dylan Smith,Female,7274,1980-10-19,B+ -Samantha Francis,Female,7275,2002-06-30,AB- -Donna Gray,Female,7276,1945-01-28,A+ -Dawn Davidson,Female,7277,1967-05-17,B+ -John Dougherty,Female,7278,1936-07-23,B+ -Alyssa Webster,Female,7279,1997-05-13,AB- -Dr. Chris Smith,Female,7280,1971-12-02,O- -Angela Meyers,Female,7282,1952-07-10,A- -Jacqueline Graves,Male,7283,1962-04-04,AB+ -Heather Jenkins,Male,7284,1945-02-06,AB- -Darren Andrews,Female,7285,1982-03-03,B- -Deborah Hester,Male,7286,1939-03-20,B+ -Frank Sutton,Female,7287,1976-06-20,A+ -Stephen Johnson,Female,7288,1961-03-29,B+ -Robert Potts,Female,7289,1983-06-14,A- -Anne Meyers,Female,7290,1954-11-26,B- -Christine Ware,Female,7291,1993-02-06,O- -Eric Schwartz,Male,7292,1986-01-17,O- -Isabella Collier,Male,7293,1958-05-15,O+ -Sarah Salazar,Male,7295,1953-05-11,A+ -Austin Webb,Female,7296,1941-09-10,O+ -Shannon Harris,Female,7297,1991-05-04,A- -Amy James,Female,7298,1957-02-14,B- -Edwin Vega,Female,7299,1976-05-19,B+ -Kent Mcgrath,Female,7300,1996-10-27,AB+ -Karen Stone,Female,7301,1960-11-18,O+ -Tyler Hernandez,Male,7302,1944-12-05,O- -Christian Trevino,Female,7303,1984-08-16,A+ -Kristina Payne,Female,7304,2002-12-01,B+ -Brandi Montgomery,Male,7306,1985-07-14,B- -Tabitha Sloan,Female,7307,1947-09-26,AB- -Brianna Johnson,Female,7308,1995-05-24,A- -Alyssa Davis,Male,7309,1977-08-22,A- -Jonathan Thomas,Male,7310,1947-09-19,O- -Ms. Ashley Kennedy DVM,Male,7311,1935-08-25,AB- -Jennifer Cochran,Female,7312,1954-09-22,A- -James Nunez,Male,7313,2001-10-08,AB+ -Casey Sparks,Female,7314,1986-09-09,B+ -Jeffrey Diaz,Female,7315,1984-06-06,A+ -Gabriela Atkins,Female,7316,1934-12-19,B+ -Shane Durham,Female,7317,1961-12-15,AB+ -Rachel Dickerson,Male,7319,1991-12-27,A- -John Hicks,Male,7320,1969-03-05,AB+ -Joan Santos,Female,7321,2001-04-05,B+ -Todd Miller,Female,7322,1936-05-02,A- -Dalton Oconnell,Male,7323,1956-07-29,A+ -William Burns,Male,7325,1978-03-25,A+ -Kelly Porter,Female,7326,1956-12-07,AB- -Audrey Edwards,Female,7327,1945-12-19,AB+ -Jon Williamson,Male,7328,1983-01-26,B- -Eric Moore,Male,7329,1984-04-11,AB- -Angela Osborn,Female,7330,1941-02-08,A+ -Dominique Howard,Male,7331,1930-11-02,O- -Ernest Freeman,Male,7332,1969-04-13,A- -Amy Gay,Female,7333,2002-01-02,AB- -Lisa Tucker,Female,7334,1934-08-17,O+ -Martin Espinoza,Male,7335,2001-06-10,B- -Stephen Jensen,Male,7336,1940-09-22,A- -Patricia Rodriguez,Female,7337,1994-03-30,AB- -Adam Bush,Male,7338,1998-06-08,A+ -Scott Hawkins,Male,7339,1938-01-15,B+ -Alexander Gallegos,Female,7340,1940-07-29,A+ -Jill Knight,Female,7341,1969-09-19,B- -Bill Buchanan,Female,7342,1969-03-15,O+ -Cheyenne Miller,Female,7343,1971-11-22,AB- -Joseph Turner,Female,7344,2001-04-04,B+ -Joshua Bender,Male,7345,1945-06-20,AB- -Derrick Jacobs,Male,7346,1983-10-15,AB+ -Allison Krueger,Male,7347,2000-06-22,O- -Diane Cruz,Male,7348,2002-05-28,A+ -Rebecca Boyd,Female,7349,1979-11-03,AB- -Cory Barnes,Male,7350,1972-11-30,AB- -Randall Holmes,Female,7351,1978-07-14,A- -Amanda Reed,Male,7352,1945-03-23,A- -Vicki Mcclain,Female,7353,1972-04-21,AB- -Daisy Brown,Female,7354,1980-12-14,O+ -Scott Harvey MD,Female,7356,1932-12-15,O- -Michael Stevens,Male,7357,1968-04-14,AB- -Suzanne Gonzales,Female,7358,1986-05-17,B- -Jennifer Lewis,Female,7359,1992-01-20,A+ -Michelle Jones,Female,7360,1971-12-19,AB+ -Brenda Coleman,Male,7361,1964-12-03,A- -Jake Meyers,Male,7362,1949-10-23,B- -Brittany Gibson,Female,7363,1977-01-31,A+ -Meghan Horne DVM,Male,7364,1988-10-16,B+ -Tyrone Harris,Female,7366,1935-07-25,A- -Tristan Torres,Female,7367,1953-04-24,O+ -Malik Simmons,Male,7368,1954-11-26,A- -Michael Weiss,Female,7369,2001-07-04,O- -Jorge Meyers,Male,7370,1969-02-12,O- -Veronica Griffith,Male,7372,1946-03-09,A+ -Christopher Matthews,Female,7373,1962-01-08,B- -Donald Calderon,Female,7374,1982-02-14,AB+ -Ronald Greene,Female,7375,1939-02-23,O+ -Joan Lawson,Female,7376,1951-07-26,A+ -Paula Mullins,Male,7377,1973-07-10,B+ -Tiffany Anderson,Female,7378,1964-01-18,O+ -Thomas Bishop,Female,7379,1933-02-15,O- -Katrina Leonard,Male,7380,1999-08-12,AB- -Marcus Guerrero,Female,7381,1998-04-16,AB- -John Cruz,Female,7383,1982-10-16,AB+ -Larry Thompson,Male,7384,1955-05-31,O+ -Jonathan Mills,Male,7385,1985-12-03,A+ -Colleen Harris,Male,7386,1935-08-01,AB+ -Elizabeth Clark,Male,7387,1941-09-10,A- -Tonya Clark,Female,7388,1957-07-04,A- -Christopher Page,Female,7389,1942-10-28,B+ -Scott Wright,Female,7390,1976-03-18,B- -Carol Barry,Female,7391,1949-06-26,AB- -Mary Powers,Male,7392,1934-11-20,A+ -Dustin Franco,Male,7393,1984-06-20,O+ -Michael Mcneil,Male,7394,1940-05-14,AB+ -Carlos Evans,Male,7395,1989-04-11,A+ -Raymond Jackson,Female,7396,1955-03-01,AB+ -Catherine Yang,Female,7397,1944-11-11,AB+ -Daniel Jones,Male,7398,1948-04-17,AB+ -Jamie Ford,Male,7399,1948-11-15,O+ -Douglas Booth,Male,7400,1964-08-31,A+ -Benjamin Bright,Male,7401,1970-10-10,O- -Patricia Duran,Female,7402,1956-05-27,O- -Samantha Brown,Female,7403,1957-03-23,O+ -Hannah Rogers,Female,7404,1958-09-03,A- -John Wiggins,Male,7405,1965-07-28,O+ -Benjamin Bean,Male,7406,1987-08-12,AB- -Heather Austin,Male,7407,1994-04-01,AB+ -Stanley Jenkins MD,Male,7408,1960-06-18,A+ -Lori Benjamin,Male,7409,1948-10-22,A+ -Jose Reeves,Female,7410,1995-09-08,B- -Tyler Frost,Female,7411,1950-12-31,B- -Douglas Berry,Female,7412,1961-08-04,B+ -Michael Logan,Female,7413,1957-07-23,O- -Justin Mcbride,Female,7414,1991-11-20,B- -Heather Cruz,Male,7415,1987-04-10,B- -Sheila Woodard,Male,7416,1991-03-25,O- -Stacy Perkins,Female,7417,1957-11-06,AB- -Diane Hall,Female,7418,1999-03-14,A- -Michael Key,Female,7419,1978-06-14,O- -Cheryl Middleton,Female,7420,1938-02-10,A- -John Harvey,Male,7421,1967-12-04,B+ -Mr. John Padilla III,Male,7422,1982-11-26,B- -Justin Smith,Male,7423,1965-07-15,A+ -Anthony Miller,Male,7424,1983-08-12,B- -Brian Cunningham,Female,7425,1944-07-02,AB+ -James Alexander,Male,7426,1994-08-01,B+ -Rebecca Miller,Male,7427,1970-05-16,A- -Mary Miller,Male,7428,1945-09-09,A- -Alexis Simpson,Male,7431,1968-02-12,AB+ -Beth Williams,Male,7433,1930-05-07,AB+ -James Chang,Female,7434,1945-05-04,AB- -Mr. Matthew Rivas IV,Female,7435,1978-02-13,O+ -Francisco Daniels,Female,7436,1982-01-31,AB+ -Tammy Martin,Female,7437,1964-06-12,A- -Kimberly Brewer,Female,7438,1973-10-19,A+ -Amanda Weeks,Female,7439,1978-08-07,A- -Barbara Woodward,Male,7440,1955-03-22,A- -Sheryl Sanchez,Female,7441,1992-07-11,AB- -Erin Patel,Male,7442,1971-01-23,O+ -Timothy Rodriguez,Female,7443,1948-04-07,O+ -Nancy Frost,Male,7444,1993-02-26,AB+ -James Owens,Female,7445,1963-08-07,B+ -Krista Atkinson,Female,7446,1987-04-15,B- -John Oneill,Male,7447,1954-04-21,A- -Gregory King,Male,7448,1937-11-27,O- -Mike Turner,Male,7449,1956-06-07,B- -Jesse Edwards,Male,7450,1941-03-10,B- -Thomas Cruz,Female,7453,1981-01-18,O+ -Julia Coleman,Female,7454,1941-06-12,O+ -Jonathan Cunningham,Male,7457,1937-10-12,AB- -Latasha Wright,Female,7458,2002-02-15,AB- -Lacey Miller,Male,7459,1946-07-16,O+ -Dakota Browning,Male,7460,1984-08-09,A+ -Beth Elliott,Male,7461,1958-03-19,A+ -Andrea Miller,Male,7462,1943-01-11,O- -Timothy Hernandez,Male,7463,1976-07-28,O+ -Chelsey Howard,Male,7464,1974-06-13,AB+ -Jorge Schultz,Male,7465,1943-09-24,AB- -Philip Thomas,Female,7466,1933-10-07,O+ -Joseph Cunningham,Male,7467,1933-03-27,A+ -William Yates,Female,7468,1990-06-27,O+ -Linda Rowe,Female,7469,1931-05-06,A+ -Aaron Patel,Male,7470,1940-03-18,O+ -Catherine White,Female,7471,1946-05-11,A- -Wesley Lewis,Female,7472,1984-07-14,AB+ -Michael Andrews,Female,7473,1983-11-19,B+ -Jeffrey Mcdonald,Male,7474,1980-03-03,O- -Derrick Robertson,Male,7475,1988-08-02,A- -Cindy Robinson,Female,7476,1935-02-26,AB+ -Stephanie Huang,Female,7477,1988-04-18,A+ -Bradley Macias II,Female,7478,1938-03-07,AB- -Vicki Carter,Male,7479,1945-04-17,AB- -Andrea Murray,Male,7480,1938-08-26,B- -Jennifer Ayers,Male,7481,1942-05-28,AB+ -Dr. Ryan Lee,Male,7482,1976-09-21,O+ -Emily Grant,Male,7484,1989-03-30,O- -Aimee Farmer,Male,7485,1932-12-09,O+ -April Harris,Male,7486,1967-08-18,O+ -Craig Galloway,Female,7487,1981-05-24,AB+ -Jeremy Garcia,Female,7489,1937-05-17,B+ -Mr. Dustin Thomas,Female,7490,1956-03-07,O- -Tiffany Smith,Female,7491,1941-11-19,B- -Kyle Rivera,Male,7492,1935-11-27,A- -Luke Kelly,Female,7493,1974-04-24,O+ -Victor Douglas,Female,7494,1951-10-24,O- -Jane Anderson,Female,7495,1937-01-24,B- -Timothy Sharp,Female,7496,1949-11-14,A- -Laura Newman,Male,7497,1935-11-30,O+ -Lori Ponce,Male,7498,1974-04-12,O- -Timothy Taylor,Female,7499,1968-01-22,A- -Cody Collier,Male,7500,1961-04-28,AB+ -Aaron Lee DVM,Female,7501,1970-03-10,B+ -Cheryl White,Male,7502,1969-07-11,AB- -Stacy Lindsey,Female,7503,1962-11-30,AB- -Joseph Mullins,Female,7504,1948-07-17,O+ -Michael Woods,Male,7505,1934-06-16,O+ -Jon Hammond MD,Female,7506,1961-12-08,A- -Sharon Myers,Male,7507,1952-07-03,O- -Kenneth Rose,Male,7508,1994-03-30,AB- -Rebecca Wallace,Male,7509,1980-04-17,O+ -Monica Hodge,Male,7510,1956-08-05,B- -Julie Martin,Male,7511,1953-03-29,O+ -Angela Black,Male,7513,1935-12-22,AB- -Karen Watson,Male,7514,1961-09-29,A+ -Michael Casey,Male,7515,1981-02-22,B+ -Charles Hendrix,Female,7516,1949-08-13,AB- -Alexander Harris,Male,7517,1981-12-20,B- -April Forbes,Male,7518,1932-06-20,O- -Judith Gardner,Female,7519,1991-06-14,B- -Angela Todd,Male,7520,1955-06-09,A+ -Robert Reed,Male,7521,1979-06-14,A+ -Heather Hicks,Male,7522,1937-11-21,O+ -Curtis Gilbert,Female,7523,1965-10-02,O+ -Nicole Barnes,Female,7524,1945-05-24,AB- -Jennifer Goodwin,Female,7525,1996-11-26,AB+ -Jack Williams,Female,7526,1933-10-10,B+ -Darren Vega,Male,7527,1978-04-11,B- -Ryan Hughes,Female,7528,1945-06-21,AB- -Tamara Hatfield,Male,7529,1964-01-16,AB+ -Timothy Rivera,Male,7530,1991-07-03,AB- -John Gilbert,Male,7531,1955-11-22,B+ -Kathleen Walker,Female,7532,2002-07-05,B+ -Rebecca Costa,Female,7533,1949-04-07,A+ -Sheri Edwards,Female,7534,1947-10-06,O+ -Lisa Burke,Male,7535,1977-10-03,O+ -Darius Lindsey,Male,7536,1980-06-19,B+ -Joseph Johnson,Male,7537,1991-08-08,AB- -Brandi Rose,Female,7539,1941-08-19,B+ -Theresa Jennings,Female,7540,1981-08-21,O+ -Patricia Morris,Female,7541,1942-08-09,O- -Anthony Martin,Male,7542,1984-08-02,AB- -Dr. Hannah Cox,Female,7543,1964-08-02,A+ -Kayla White,Male,7545,2002-02-09,A- -Katelyn Miller,Male,7547,1930-08-09,AB- -Amy Coffey,Female,7548,1968-12-13,AB- -Alexander Sanford,Female,7549,1943-03-12,O+ -Christopher Kelly,Female,7550,1994-07-20,A+ -Shelly Smith,Male,7551,1987-07-08,AB- -James Phillips,Male,7552,1950-02-14,O+ -Steven Stone,Male,7553,1945-05-20,B+ -Mark Vasquez,Male,7554,1956-12-26,B- -Daniel Robertson,Male,7555,1994-08-06,A+ -Sara House,Female,7556,1942-07-13,AB+ -Willie Montes,Male,7557,1979-12-25,O- -Robert Perkins,Male,7558,1996-07-12,AB+ -Stephanie Moreno,Male,7559,1971-08-21,A- -Jerome Fry,Male,7560,1934-01-02,B+ -Carol Alvarado,Male,7561,1989-12-22,A+ -Jamie Moreno,Male,7562,1973-07-19,AB- -Elizabeth Reynolds,Male,7563,1998-03-25,O+ -Marcus Rhodes,Female,7565,1974-07-01,A- -Nicole Bell,Male,7566,1952-07-20,A+ -Vickie Murphy,Male,7567,1951-05-24,O- -Eric Miles,Female,7568,1935-08-31,A+ -Brandon Miller,Female,7569,1945-10-02,A- -Brittany Palmer,Female,7571,1949-10-25,O+ -Carla Smith,Male,7572,1968-10-23,AB+ -Mark Thomas,Female,7573,1994-01-25,B- -Maria Black,Female,7574,1946-12-14,AB+ -Gina Briggs,Male,7575,1979-01-02,O+ -Jeffery Evans,Female,7577,1981-12-21,A- -Timothy Murray,Male,7578,1970-01-13,O+ -Randall Becker,Male,7579,1932-09-28,B+ -Jasmine Lopez,Male,7580,1977-09-08,O- -Amanda Gonzales,Male,7581,1970-09-25,A+ -Sarah Love,Female,7582,1958-01-06,B+ -Lorraine Scott,Female,7583,1993-09-30,A+ -James Shaw,Male,7584,1998-01-13,AB+ -Steven Tucker,Male,7585,1988-09-08,A- -Connie Benitez,Female,7586,2002-02-27,B- -Christopher French,Female,7587,1942-04-04,B- -Brian Gray,Male,7588,1976-03-02,O- -Sierra Torres,Female,7589,1931-05-31,O+ -Paige Davis,Male,7590,1964-03-01,O- -Frank Lester,Male,7591,1933-04-06,A+ -Lisa Price,Female,7592,1959-09-26,AB- -Ms. Leah Lane DDS,Female,7593,1966-10-27,AB- -David Austin,Male,7594,1947-03-30,AB- -Anne Perry,Male,7595,2001-02-24,O+ -Robert Ellis,Female,7596,1975-08-08,O- -Michael Walker,Male,7597,1952-10-26,B+ -Stephen Jackson,Female,7598,1996-02-26,A- -Michael Vazquez,Male,7599,1946-06-14,AB+ -Richard Wilson,Male,7600,1951-11-14,A+ -Trevor Compton,Male,7601,1939-02-15,AB- -Sierra Jenkins,Male,7602,1932-02-27,A- -Tanya Dudley,Male,7603,1947-01-14,B- -Adam James,Male,7604,1957-01-12,B+ -David Jones,Male,7605,1976-07-24,O- -Robin King,Male,7606,1985-05-17,A+ -Isabel Hughes,Male,7607,1940-01-25,A+ -Terri Jefferson,Female,7608,1937-01-16,B- -Brittany Haynes,Female,7610,1948-12-07,B+ -Shane Parker,Female,7611,1943-10-13,B- -Tyler Campbell,Female,7612,1951-04-29,B- -Lance Gonzalez,Female,7614,1972-12-15,AB- -Eugene Peterson,Male,7615,1961-05-10,B+ -Christina Webb,Female,7616,1989-02-18,AB- -Carlos Lin,Male,7617,1942-11-26,O- -Shirley Jones,Male,7618,1930-03-08,B- -Jennifer Richards,Female,7619,1973-05-30,AB+ -Cody Dalton,Female,7620,1964-03-01,A+ -Edward Stewart,Male,7621,1950-08-17,B+ -Michelle Collins,Female,7622,1971-05-09,B- -Chelsea Ellis,Male,7623,1942-08-22,B+ -Francis Winters,Male,7624,1966-05-09,A+ -Daniel Haynes,Female,7626,1977-12-24,O+ -Stacy Williams,Female,7627,1945-09-09,A- -James Lynch,Male,7628,1959-05-13,O+ -Steven Elliott,Female,7629,1962-03-26,B- -Jessica Villegas,Female,7630,1995-04-19,A+ -Jeffrey Long,Male,7631,1974-07-17,A- -Elizabeth Whitehead,Female,7632,2000-07-15,O+ -Peter Baker,Male,7633,1987-02-06,B- -Angela Hunt,Female,7634,1965-06-06,A+ -Mary Hernandez,Male,7635,1984-01-01,B- -Courtney Lee,Male,7636,1976-05-11,AB- -Alexandria Jones,Male,7637,1995-11-15,A+ -Jorge Parker,Female,7639,1997-06-26,O+ -Samantha Murray,Female,7640,1970-02-03,B- -Rachel Robinson,Male,7641,1930-07-18,B+ -Scott Campos,Male,7643,2002-03-01,O+ -Kevin Ferguson,Male,7644,1976-06-03,B- -Misty Kelly,Male,7645,1977-01-08,B+ -Richard Gallagher,Female,7646,1956-11-30,B+ -William Esparza,Female,7647,2002-04-20,O- -Jason Carr,Male,7648,2002-05-14,B+ -Michele Riddle,Male,7649,1967-10-12,O+ -Sheila Gonzales,Female,7650,1978-01-27,O+ -Michaela Wright,Male,7651,1961-05-27,AB+ -Michael Atkinson,Female,7652,1930-06-28,A- -Kristen Ortega,Male,7653,1981-01-01,AB- -Mary West,Male,7654,1986-01-17,O+ -Christopher Liu,Female,7655,1976-11-13,A+ -Megan May,Female,7656,1991-12-03,A- -Tyler Baker,Female,7657,1932-03-09,B+ -Elizabeth Wilson,Male,7658,1950-10-24,B- -Ana Riley,Male,7659,1999-06-11,O- -Michael Hernandez,Male,7660,1937-08-27,A+ -Sean Edwards,Male,7661,1964-03-19,A- -Nicholas Estes,Female,7662,1942-07-25,A+ -Jacob Lindsey,Male,7663,1949-12-24,A+ -April Lee,Male,7664,1938-06-12,A+ -Melvin Arnold,Female,7665,1960-06-02,A- -Julie Miller,Female,7666,1932-01-02,O- -Ryan Larson,Male,7667,1933-02-03,B+ -Elizabeth Crosby,Male,7668,1934-05-25,AB+ -Billy Jackson PhD,Female,7669,1962-10-10,AB- -Julie Anderson,Male,7670,1959-12-12,B+ -Kevin Patton,Female,7671,1961-02-09,O+ -Sarah Williams,Female,7672,1938-01-12,A- -Melanie Martinez,Male,7673,1971-08-01,A+ -Catherine Walsh,Female,7674,2000-08-12,B+ -Jacob Gibson,Male,7675,1998-03-05,O+ -Adrian Lee,Male,7676,1943-11-23,A- -Sheila Wilson,Male,7677,1968-06-07,O+ -Ashley Atkins,Female,7678,2002-05-09,A+ -Brianna Hill,Male,7679,1949-06-09,AB+ -Amanda Holloway,Male,7680,1978-12-09,A- -Marie Huang,Male,7681,1932-06-12,O+ -Keith Wilson,Female,7682,1933-10-22,B- -Sarah Jenkins,Male,7683,1984-02-20,O+ -Jasmine Patel DDS,Male,7684,1941-08-10,AB- -Michael Hamilton,Female,7685,1987-02-14,A+ -Kathleen Brown,Male,7686,1981-01-20,O- -Karen Coleman DDS,Male,7687,1939-05-26,O+ -Debra Miller,Male,7688,1936-06-29,AB+ -Amy Brown,Male,7689,1986-08-31,B- -Mr. Jordan Miller,Female,7690,1934-02-24,B- -Shaun Hawkins,Male,7691,1973-07-20,O- -Alexis Schultz,Male,7692,1947-04-28,B+ -Thomas Jones,Male,7693,1969-12-27,AB- -Scott Hart,Male,7694,1994-04-07,O- -Allen Lowe,Female,7695,1945-04-18,AB- -Terri Smith,Female,7696,1937-12-27,O+ -Elizabeth Hudson,Male,7697,1990-07-20,A+ -Michael Flores Jr.,Female,7698,1995-11-26,AB+ -Michael Ramos,Female,7699,1973-07-15,B- -Joseph Lee,Female,7700,1978-01-20,O- -Chris Robertson,Male,7701,1997-08-03,AB+ -Mary Mcintyre,Female,7702,1988-11-05,AB- -Jennifer Arroyo DDS,Female,7703,1986-09-15,A+ -James Parker,Female,7704,1990-10-07,B- -Ashley Peterson,Male,7705,1984-11-12,B- -Brian Keith,Female,7706,1940-05-21,AB- -Patricia Roberts,Male,7707,1957-03-27,A+ -Faith Allen,Male,7708,1973-06-03,B- -Melanie Robinson,Female,7709,1993-04-22,A+ -Latoya Phelps,Male,7710,1934-04-27,B- -Tracy Mays,Female,7711,1955-12-24,O+ -Nicole Harrison,Male,7712,1980-12-08,AB- -Timothy Frazier,Female,7713,1955-02-03,A+ -James Wiggins,Male,7714,1932-10-27,AB+ -Jason Luna,Male,7716,1973-06-25,B+ -Sheila Edwards,Male,7717,1959-07-13,O+ -Sherry Morris,Male,7718,1948-04-27,A- -Kerry Pittman,Male,7719,1985-10-15,AB+ -Brandon Esparza,Female,7720,1977-05-11,AB- -Kim Powers,Female,7721,1947-05-30,B- -Deborah Taylor,Male,7722,1980-10-30,A- -Kimberly Cohen,Female,7723,1983-08-12,AB+ -Jonathan Cervantes,Male,7724,1991-05-25,O+ -Jasmine Sandoval,Male,7725,1934-01-02,A- -Carlos Hernandez,Female,7726,1972-06-20,A- -Jacqueline Morgan,Male,7727,1958-12-10,A+ -Nathan Campbell,Male,7728,1973-07-11,O- -Sonya Williams,Female,7729,1961-11-20,AB+ -Lisa Powell,Male,7730,1972-05-14,O- -Chad Martinez,Female,7731,1949-04-08,AB- -Christina Jackson,Male,7732,1956-01-04,AB+ -Cassidy Harrison,Female,7733,1988-07-13,AB+ -Katherine Spencer,Female,7734,1966-08-26,A+ -Joshua Cook,Female,7735,2000-07-17,B- -Richard Norton,Female,7736,1989-05-23,O+ -Madison Wilson,Male,7737,1947-01-13,O+ -Hannah Bennett,Male,7738,1994-04-09,O+ -Kevin Neal,Male,7739,1951-04-10,B+ -Thomas Parsons,Male,7741,1976-09-27,AB- -Larry Robinson,Female,7742,1969-04-22,A- -Elizabeth Owens,Female,7743,1987-08-15,B- -Michele Anderson,Male,7744,2000-08-04,O- -Marcus Harris,Female,7746,1980-01-17,O+ -Dana Mcgee,Male,7748,1950-03-26,B+ -Tracy Reynolds,Female,7749,1943-06-24,O- -Adam Soto,Female,7750,1967-05-06,B- -Alexis Holt,Female,7751,1992-03-02,AB- -Anthony Parker,Male,7752,1957-05-22,B- -Michelle Jones,Male,7753,1983-07-29,A+ -Pamela Gonzalez,Male,7754,1985-04-03,A- -Alice Juarez,Female,7755,1944-03-06,O+ -Stephanie Ware,Male,7756,1971-09-23,AB- -Susan Taylor,Female,7758,2001-10-15,A+ -Philip Thompson,Female,7759,1940-11-12,O+ -Bridget Williams,Female,7760,1937-06-09,B- -Michael Gregory,Female,7761,1975-05-19,B- -Jimmy Sanchez,Male,7762,1966-12-29,B+ -Patrick Wallace,Male,7763,1978-07-07,AB+ -Joanne Ortiz,Female,7764,1952-05-26,AB+ -Sandra Perez,Male,7765,1965-07-31,B- -Misty Sanders,Female,7766,1960-12-07,B- -Chelsea Greene,Male,7767,1975-11-23,O- -Lisa Williams,Male,7768,1985-05-05,B+ -Sherry Ho,Female,7769,1947-06-21,A- -Maria Spencer,Female,7771,1931-09-08,O- -Daniel Braun,Female,7772,1981-03-28,A- -Joshua Edwards,Female,7773,1979-08-30,A+ -Sarah Thomas,Female,7774,1931-04-09,AB+ -Tracie Oconnell,Male,7775,1955-01-28,AB+ -Patrick Hartman,Male,7776,1986-07-17,B+ -Karen Ross,Female,7778,1938-08-25,B- -Patricia Roberts,Female,7780,1984-10-12,B- -James Elliott,Male,7781,1966-10-13,A+ -Dr. Christian Lee,Male,7782,1943-07-10,AB- -Amy Gonzalez,Female,7783,1944-10-31,AB- -Michael Gutierrez,Male,7784,1991-04-19,B+ -Katherine Garcia,Female,7785,1954-04-26,AB- -Isaiah Parker,Female,7786,1945-05-05,AB+ -Margaret Gordon,Female,7787,1936-01-22,O- -Tricia Perez,Male,7789,1991-08-13,AB- -Daniel Powell,Male,7790,1990-10-15,O+ -Tracy Hunt,Female,7791,1975-11-27,B+ -John Silva,Male,7792,1981-01-13,A+ -Michelle Walls,Male,7793,1962-01-08,AB- -Joanna Carpenter,Male,7794,1978-09-22,O+ -Abigail Nixon,Female,7795,1956-10-06,AB- -Heather Robinson,Male,7796,1969-11-11,O- -Ariana Hansen,Female,7797,1946-10-30,O- -Brooke Alvarez,Male,7798,1931-01-07,AB- -Brandon Carey,Male,7799,1990-10-03,B+ -Nathan Williams,Female,7800,1945-03-28,B+ -Teresa Zimmerman,Female,7801,1954-02-06,O+ -Kelly Moore,Female,7802,1952-09-29,A+ -Joseph Baker,Female,7803,1950-05-13,O+ -William Owens,Male,7804,1931-03-23,A+ -Thomas Morris,Female,7805,1933-10-23,AB- -Joel Rodriguez,Female,7806,1961-07-13,A+ -Trevor Schneider,Male,7807,1978-07-12,B- -Cindy Stephenson,Female,7808,1972-04-24,AB+ -Beverly Johnson,Female,7809,1982-11-27,A- -Stephen Mccoy,Female,7810,1962-07-23,AB+ -Keith Guerra,Male,7811,1971-01-24,O- -Jacob Wells,Female,7812,1946-05-06,B- -Heidi Yang,Male,7813,1955-05-15,AB+ -Jody Garcia,Male,7814,1973-06-05,AB- -Matthew May,Female,7815,1988-01-14,A+ -Donna Alvarado,Female,7816,1984-08-18,A+ -Lindsay French,Female,7817,1944-12-07,O+ -Jay Williams,Male,7818,1938-08-17,O+ -Samantha Ruiz,Male,7819,2001-09-06,B+ -Kenneth Phillips,Male,7820,1972-02-16,A+ -Mrs. Catherine Yates MD,Female,7821,1947-07-25,B+ -Andres Bennett,Female,7822,1942-10-02,AB- -Gary Clarke,Female,7823,1993-11-17,A+ -Katherine Mullins,Male,7824,1958-09-17,O+ -James Sloan,Female,7825,1996-08-09,AB+ -Barbara Adams,Female,7826,1984-11-19,B+ -Stephanie Williamson,Female,7828,1987-02-17,B+ -Zachary Mccann,Male,7829,1987-12-29,O- -Sara Davis,Male,7830,1970-10-12,O+ -Hailey Ali,Male,7831,1988-09-25,AB- -Richard Romero,Female,7832,1945-01-02,B+ -Kristen Singleton,Male,7833,1951-12-30,AB+ -Debra Carter,Male,7834,1932-09-10,AB+ -Robert Colon,Female,7835,1990-03-18,AB+ -Sandra Hernandez,Male,7837,1953-05-23,B- -Erin Mathews,Female,7838,1957-02-24,B- -Ronald Le,Female,7839,1957-10-09,A- -Gary Wall,Male,7840,2000-10-15,AB+ -Bonnie Wood,Male,7841,1972-08-29,B+ -Gary Gray,Female,7843,1935-03-23,AB- -Bridget King,Male,7844,1993-10-25,A+ -Ryan Farmer,Female,7845,1955-03-27,AB- -Aaron Daugherty,Male,7846,1953-12-03,B- -Cheryl Moss,Male,7847,1967-09-01,O+ -Dr. Lawrence Bowen,Male,7848,1941-06-06,B+ -Jessica Mora,Male,7849,1999-09-20,A- -Erica Padilla,Male,7850,1973-01-03,B- -Diamond Campbell,Male,7851,1994-10-01,A+ -Patricia Simmons,Male,7852,1955-06-16,O- -Raymond Butler,Female,7853,1935-06-14,A- -Brenda Hughes,Male,7854,1945-04-28,B- -Annette Rosales,Male,7855,1974-10-31,AB- -Emily Miranda,Male,7856,1985-10-21,A- -Jordan Garcia,Female,7857,1940-05-03,B+ -Carl Burns,Male,7858,1999-10-22,AB- -Samantha Costa,Female,7859,1987-07-30,AB+ -Travis Williams,Female,7860,1980-07-02,AB+ -Jay Salazar,Male,7861,1987-02-22,AB+ -Sarah Murphy,Female,7862,1973-01-01,A- -Gregory Martinez,Female,7863,1970-02-05,O- -Matthew Miller,Male,7864,1967-06-04,A+ -Angela Stewart,Female,7865,1973-09-12,B+ -Krystal Hamilton,Male,7866,1961-02-04,A- -Dorothy Chase,Female,7867,1942-02-22,O+ -Dalton English,Female,7868,1982-02-05,B+ -Gary Henderson,Female,7869,1973-04-09,AB- -Dr. Cassandra Austin,Female,7870,1977-09-20,AB- -Lindsay Sutton,Female,7871,1970-01-17,A- -Amy Giles,Male,7872,1951-10-09,A- -Danielle Lloyd,Male,7873,1947-08-29,A+ -James Jimenez,Male,7874,1982-03-14,O- -Tiffany Horton,Female,7875,1938-10-05,A- -Daniel Peters,Male,7876,1948-07-13,AB+ -Collin Mcdonald,Male,7877,1954-12-31,A+ -Linda Jones,Male,7878,1995-03-25,O+ -Paul Black,Female,7879,1953-08-21,AB+ -Andrew Silva,Male,7880,1981-11-03,O+ -April Clements,Male,7881,1941-07-27,B- -Roger Jordan,Male,7882,1976-06-28,O+ -Joel Roman,Male,7883,1946-07-30,AB+ -Carrie Hancock,Female,7884,1934-02-14,B- -Stacy Carter,Female,7885,1954-10-15,AB+ -Jamie Evans,Female,7886,1973-02-13,AB- -Stephanie Parsons,Female,7887,1959-08-29,AB+ -Sarah Farmer,Male,7888,1974-10-01,B- -Chad Clark,Female,7889,1992-07-26,O+ -Claire Glass,Male,7890,1994-09-02,AB- -Jordan Pope,Male,7891,1970-06-23,O- -Kenneth Martin,Female,7892,1934-04-01,O- -Dana Mathews,Female,7893,1971-06-29,B+ -Hannah Shelton,Male,7894,1967-10-13,O- -Monique Baker,Male,7895,2002-01-15,O- -Christopher Johnson,Male,7896,1948-10-05,A+ -Sandra Gardner,Male,7897,1933-12-20,O- -Stephen Ingram,Female,7898,1991-02-27,B- -Derek Mitchell,Male,7899,1998-01-04,A- -Frederick Kaufman,Female,7900,1996-11-16,O- -Zoe Adkins DVM,Female,7901,1937-04-13,AB+ -Shawn Hancock DVM,Male,7902,1950-07-24,A- -Tammy Collier,Female,7903,1996-06-20,O- -Katherine Powell,Female,7904,1995-03-30,A- -Sarah Estes,Female,7905,1937-06-14,O+ -John Richmond MD,Male,7906,2001-04-16,B- -Robert Nichols,Female,7907,1964-01-27,B- -Kevin Hill,Male,7908,1956-05-21,B+ -Amber Wong,Female,7909,1958-09-21,A- -Eric Norman,Male,7910,1938-01-04,B+ -Crystal Gardner,Male,7911,1956-11-24,AB- -Calvin Wright,Female,7912,1994-04-23,A+ -Maria Chavez,Male,7914,1947-02-01,AB+ -Terry Archer,Female,7915,1976-04-05,A- -Bradley Carr,Female,7916,1930-08-04,B- -Tonya Gentry,Female,7917,1949-12-26,B+ -Lori Jimenez,Female,7918,1961-07-20,O+ -Kelly Burgess,Female,7919,1958-05-18,O- -Jessica Moyer,Male,7920,1938-08-20,B- -Joseph Rogers,Female,7921,1995-04-04,O+ -Blake Barnett,Female,7922,1934-09-03,O- -Wendy Davis,Female,7923,1958-03-13,A+ -Garrett Mccann,Male,7924,1934-04-17,B- -Douglas Holland,Female,7925,1958-06-23,B+ -Elizabeth Robertson,Male,7926,1958-04-29,B- -Rachel Jackson,Female,7927,1933-02-02,A- -Rebecca Ortega,Female,7928,1984-06-20,A- -Joshua Blackburn,Female,7929,1951-07-17,O+ -Stephen Miller,Male,7930,1981-05-02,B+ -Bethany Farrell,Female,7931,1945-04-15,AB- -Jeremy Perez,Female,7932,1943-05-30,A- -Jacob Fields,Female,7933,1990-07-07,AB+ -Latasha Stokes,Male,7934,1946-06-07,A+ -Jill Thompson,Female,7936,1960-06-05,AB+ -Shawn Avila,Male,7937,1942-07-04,B- -Mercedes Mitchell,Male,7938,1955-05-21,AB+ -Daniel Kim,Female,7939,1969-04-14,O- -Wendy Harper,Female,7940,1962-01-16,A+ -Alexandra Lara,Female,7941,1966-06-30,AB+ -Steven Ferguson,Male,7942,1937-07-04,O- -Linda Jackson,Male,7943,1983-02-16,O+ -Donald Olson,Female,7944,1947-02-17,AB+ -Patricia Oliver,Female,7945,1930-08-17,A+ -Lindsay Sosa,Female,7946,1997-10-02,O- -Ashley Beck,Male,7947,1975-08-31,AB+ -Melissa Barnes,Female,7948,1941-09-24,O+ -Stephanie Smith,Male,7949,1998-06-14,AB+ -Jennifer Johnson,Female,7951,1966-04-26,O- -Mr. Jeff Jenkins,Female,7952,1966-08-30,AB+ -Jose Johnson,Male,7953,1993-06-24,A+ -Rebecca Wilkerson,Male,7954,1932-07-07,B- -Jose Peterson,Male,7955,1961-05-03,B+ -Seth Marshall,Female,7957,1931-05-14,B+ -John Jenkins,Female,7958,1937-09-10,O- -Ricky Rollins,Male,7959,1943-08-02,O- -Erik Liu,Male,7960,1954-09-09,O- -Amanda Hale,Female,7961,1940-05-07,O- -Chelsea Mitchell,Male,7962,1957-07-08,AB+ -John Lopez,Female,7963,1935-10-20,A+ -Scott Hall,Male,7964,1947-07-02,B+ -Amy Rivera,Female,7966,1930-05-26,O+ -David Morse,Male,7967,1968-02-20,B+ -Darryl Gill,Female,7968,1996-08-08,A+ -Eric Finley,Male,7969,1970-11-04,O- -Haley Schmidt,Female,7970,1942-07-02,AB- -Mark Oconnor,Female,7971,1975-05-21,AB+ -Jeff Sparks,Female,7972,1989-01-22,AB- -Barbara Schwartz,Male,7973,1948-03-04,AB+ -Mitchell Hampton,Male,7974,1952-07-27,O- -Jeremy Dunn,Female,7975,1936-08-07,AB+ -Patrick Nelson,Male,7976,1934-12-26,O- -Deanna Yu,Male,7977,1982-12-22,A+ -Lisa Winters,Female,7978,1936-11-26,A- -Aaron Williamson Jr.,Female,7979,2002-05-28,B- -Guy Nichols,Female,7981,1981-11-21,AB+ -Denise Norman,Female,7982,1946-02-08,O- -Sarah Cherry,Female,7983,1935-02-11,AB- -Brandon Garcia,Male,7984,1950-06-10,O- -Emma Chen,Male,7985,1995-09-03,AB- -Victor Young,Female,7986,1961-05-19,B+ -Tracy Brown,Male,7988,1983-08-14,AB+ -Madeline Robles,Male,7989,1946-09-17,O+ -Brian Smith,Female,7990,1963-05-25,AB- -Scott Anderson,Male,7991,1972-03-25,O- -Whitney Caldwell,Female,7993,1973-12-14,AB+ -Maria Thomas,Male,7994,1930-08-29,O- -Heather Burgess,Male,7995,1984-04-11,O+ -Misty Robbins MD,Male,7996,1942-09-06,B- -Steven Sanchez,Female,7997,1956-04-13,A- -Rachel Olsen,Male,7998,1962-01-07,A- -Amy Townsend,Male,7999,1997-07-06,O+ -Lorraine Zuniga,Female,8000,1943-11-26,A+ -Vanessa Ford,Male,8001,1940-04-26,AB+ -Micheal Young,Male,8002,1955-01-12,O+ -Rebecca Chavez,Male,8003,1951-11-22,B- -Misty Murray,Male,8004,1998-12-16,O- -Emma Farmer,Male,8005,1992-06-17,AB+ -Ashley Cox,Female,8006,1966-05-08,B+ -Caroline Sanders,Male,8007,1984-09-23,AB- -Amber Pruitt,Male,8008,1964-11-24,O+ -Sarah Gutierrez,Male,8009,1961-06-02,B+ -Ashlee Black,Female,8010,1980-10-22,B+ -Michael Williams,Male,8011,2001-06-15,B- -Michael Lewis,Female,8012,1947-12-26,B+ -Sheryl Hudson,Female,8013,1937-02-14,O+ -Rebecca Ryan,Female,8014,1982-02-18,A+ -Keith Carroll,Male,8016,1946-08-25,A- -Robert Morris,Female,8017,1967-12-07,A- -Diana Valenzuela,Male,8018,1994-11-30,AB+ -Christopher Potter,Female,8019,1935-11-30,O- -Denise Jimenez,Female,8020,1985-05-06,B- -Derek Nichols,Female,8022,1952-10-05,O+ -Jason French,Female,8023,1941-12-17,AB+ -Joseph Lopez,Female,8024,1933-08-10,O+ -Sherry Dennis,Female,8025,1987-02-28,AB+ -David Dunlap,Male,8026,1966-05-04,A- -Nicole Carter,Female,8027,1933-05-15,B+ -Andrea Smith,Female,8028,1977-12-17,A+ -Emily Moon,Female,8029,1995-09-08,O+ -Victoria Mendoza,Male,8030,1933-07-25,A+ -David Sawyer,Female,8031,1973-08-10,AB- -Jackson Johnson,Female,8032,1935-03-26,AB- -Derek Coleman,Male,8033,1996-12-26,B+ -Anna Wallace,Male,8034,1970-10-22,A- -Tammy Cox,Female,8035,1952-03-13,B- -Jason Cooper,Male,8036,2001-05-29,A+ -Joel Brown,Female,8037,1996-09-05,AB+ -Leslie Harvey,Male,8038,1980-02-08,B- -Sue Gray,Female,8039,1994-01-05,O+ -Ethan Cooper,Female,8040,1937-07-20,O+ -Carla Chavez,Female,8041,2002-08-23,AB+ -Thomas Colon,Male,8042,1947-09-13,O- -Ellen Clark,Male,8043,1975-05-07,B+ -Jessica Weaver,Male,8044,1954-11-19,O- -Eric Jones,Female,8045,1992-04-11,B+ -Ashley Davis,Male,8046,1971-05-30,O+ -Dr. James Williams,Female,8047,1969-01-16,B+ -Kara Sweeney,Female,8048,1956-09-04,A- -Jeffrey Lowe,Female,8049,1953-10-10,A- -Karen Wolfe,Female,8050,1930-03-02,AB+ -Julie James,Female,8051,1955-05-19,O- -Dr. Jillian Graves,Female,8052,1993-02-24,A+ -Steven Byrd,Female,8053,1937-12-05,O+ -Kenneth Vaughn,Male,8054,1971-12-15,AB- -Amanda Miller,Female,8055,1963-10-27,A+ -Bradley Ruiz,Female,8056,1962-07-07,AB+ -Manuel Jones,Male,8057,1976-06-17,AB- -Robert Williams,Male,8058,1945-12-11,A+ -Debra Anderson,Female,8059,1962-10-02,O- -Sheri Jones,Female,8060,1931-06-19,B+ -Brooke Wilson,Female,8061,1984-05-03,A- -Isaiah Rodriguez,Male,8062,1940-12-25,O- -Lisa White,Male,8063,1984-02-29,AB- -Stephanie Hensley,Male,8064,1935-11-26,B+ -Katherine Brooks,Female,8065,1991-03-12,B+ -Christine Hurley,Female,8066,1994-12-04,B+ -Vickie Flynn,Male,8067,1949-01-18,B- -Erik Smith,Male,8068,1955-03-07,A- -Gregory Webb,Male,8070,1959-04-10,O+ -Kayla Hill,Male,8071,1989-06-09,AB- -David Mack,Female,8072,1966-06-28,AB+ -Christopher Robertson,Female,8073,1998-03-07,O+ -Kimberly Cruz,Male,8074,1987-09-26,A+ -Joseph Shaffer,Female,8075,1937-05-30,A- -John Marshall,Male,8076,1930-01-02,AB+ -Nicole Harris,Male,8077,1955-04-05,AB+ -Natasha Meyer,Male,8078,1997-08-17,O- -David Kelly,Male,8079,1977-11-18,A+ -Shannon Riley,Female,8080,1970-07-30,O- -Eric Hall,Female,8081,1959-10-27,O- -Debra Henson,Female,8082,1935-02-05,B+ -Rachel Matthews,Female,8083,1944-06-05,A- -Richard Gould,Female,8084,1993-11-13,B- -Gilbert Gordon,Female,8085,1960-06-04,O- -Christopher Robinson,Female,8086,1972-12-25,O+ -Melanie Murphy,Female,8087,1952-10-12,AB+ -Adrian Curry,Male,8088,1976-01-21,A- -Robert Hensley,Female,8089,1988-02-16,O- -Eric Houston,Male,8090,1959-05-29,AB- -Jeremy Stein,Male,8091,1938-07-27,O+ -Erik Macias,Male,8092,2000-08-18,A+ -Jason Kent,Female,8093,1996-12-25,AB+ -Kimberly Powell,Male,8094,1977-04-29,A- -Alison Nguyen,Male,8095,1969-05-16,AB- -Brooke Sutton,Female,8096,1961-02-07,A- -Matthew Salas,Male,8097,1944-10-12,A- -Barbara Sanford,Male,8098,1993-02-21,AB- -Jeremiah Young,Female,8099,1945-02-20,A+ -Patrick Russo,Male,8100,1992-12-09,AB- -Donald Watkins,Male,8101,1940-09-23,O+ -Wesley Jackson,Male,8102,1977-10-12,B+ -Laura Burton,Male,8103,1974-12-06,A- -Richard Flores,Male,8104,1948-12-29,A+ -Deanna Jones,Male,8105,1994-09-30,A- -Laurie Bates,Female,8106,1949-06-28,AB- -Maria Salas MD,Female,8108,1976-05-10,A+ -Daniel Ramos,Male,8109,1959-09-26,A+ -Bryan Martin,Female,8110,1998-11-02,O- -Richard Kelly,Male,8111,1999-03-19,O- -Anne Case,Male,8112,1944-08-13,B+ -Carolyn Allen,Male,8113,1964-02-24,O- -Shawn Zuniga,Female,8114,1938-08-07,AB- -Johnny Gillespie,Female,8115,1951-11-23,AB+ -Robert Wright,Female,8117,1972-05-29,O+ -James Kelly III,Female,8118,1979-03-19,AB- -Christine Taylor,Male,8119,1968-11-18,A- -Christina Andrews,Male,8120,1951-04-17,O- -Jason Barr,Female,8121,1943-07-15,A+ -Jenna Rodriguez,Female,8122,1965-04-13,AB- -Andrew Taylor,Female,8123,1954-08-20,A+ -Kelsey Bass,Female,8124,1951-05-09,B+ -Erik Robinson,Female,8125,1985-03-28,A- -Matthew Grant,Male,8126,1978-07-29,A+ -Lisa Harper,Female,8127,1952-02-27,A+ -Steve Johnson,Male,8128,1938-10-31,B+ -Larry Riddle,Male,8129,1962-05-03,B- -Brett Walker,Female,8130,1970-11-01,AB+ -Alfred Wang,Female,8131,1936-09-26,O+ -Jeremy Solis,Male,8132,1953-12-03,O+ -Mr. Matthew Murray,Male,8133,1968-02-11,O- -Danny Schultz,Female,8135,1982-04-30,B- -Kathy Moses,Male,8137,1993-04-10,AB- -Anna Frazier,Male,8138,1959-06-12,B+ -Stephanie Nelson,Male,8139,1995-05-05,AB- -Daniel Ellis,Male,8140,2002-12-24,O+ -Frank Johnson,Male,8142,1992-06-18,AB+ -Alexander Guzman,Female,8143,1959-08-30,A+ -Cassandra Mclaughlin,Female,8144,1938-07-12,A- -Peggy Brooks,Male,8145,2002-07-24,O- -Hannah Garcia,Male,8146,1976-07-18,AB+ -Mitchell Miller,Male,8147,1972-01-21,O+ -David Baird,Male,8148,1984-11-01,B- -Debbie Mclean,Male,8149,1992-06-01,O- -Whitney Bullock,Female,8150,1978-02-25,B+ -James Stephens,Female,8151,1957-03-31,O+ -Tracy Murray,Female,8152,1937-01-09,AB- -Brian Garrison,Male,8153,1938-09-10,O- -Bradley Burton,Female,8154,1983-04-18,B+ -Austin Burke,Male,8155,1937-03-15,O+ -Gregg Fowler,Female,8156,1938-08-28,AB- -Ariel Fletcher,Female,8157,1941-10-31,A- -Wayne Watson,Female,8158,1999-02-13,AB- -Amanda Andrews,Male,8159,1966-02-25,A+ -Christian Kim,Male,8160,1992-01-09,B+ -Aaron Edwards,Female,8161,1949-06-09,B+ -Roberto Roberts,Male,8162,1995-01-20,B- -Sarah James,Male,8164,1961-02-07,B+ -Elizabeth Singh,Female,8165,1958-03-28,A+ -Lori Hansen,Male,8166,1966-12-20,O+ -Matthew Smith,Female,8167,1986-01-09,A- -Matthew Henry,Male,8168,1945-11-19,AB+ -Megan Gentry,Male,8169,1968-09-08,A- -Anthony Nguyen,Male,8170,1969-01-27,A- -Alfred Hernandez,Male,8171,1974-01-05,B+ -David Lang,Male,8173,1941-05-14,A- -Jordan Lee,Male,8174,1954-05-26,B+ -Curtis Wilson,Male,8175,1981-12-23,A+ -Brianna Griffith,Female,8176,1991-10-07,AB+ -Sue Perez,Female,8177,1965-03-19,AB- -Emma Watson,Male,8179,1931-10-29,B+ -Kyle Lutz,Male,8180,1975-08-20,O+ -Elizabeth Martinez,Male,8181,1945-12-28,B- -Lisa Houston,Male,8182,1939-10-06,AB+ -Jamie Fernandez,Male,8183,1958-07-19,O+ -Christopher West,Female,8184,1987-06-08,B+ -Mrs. Virginia Marshall MD,Female,8185,1978-11-14,AB+ -Matthew Barrett,Female,8186,1997-08-22,B+ -Samuel Rose,Female,8187,1987-10-27,A+ -Adam Lee,Female,8188,1991-12-28,O+ -Thomas Williams,Female,8189,1950-03-03,A+ -Rodney Wright,Female,8190,2002-12-05,O- -Tiffany Mahoney DVM,Male,8191,1972-10-17,O+ -Pamela Johnson,Female,8192,1984-11-29,AB+ -Ashley Sanchez,Female,8193,1950-03-19,O- -Shawn Carrillo,Female,8194,1992-11-22,A+ -Ebony Fleming,Female,8195,1974-03-20,A+ -Donna Davis,Female,8196,1973-06-15,AB+ -Rebecca Hernandez,Male,8197,1966-05-05,O- -Crystal Ward,Female,8199,1932-09-19,A- -Cindy Kim,Female,8200,1948-10-11,AB- -Michael Dominguez,Male,8201,1935-10-23,B- -Jesse Morales,Male,8202,1963-12-02,AB+ -Robert Dominguez,Male,8203,1980-12-11,A+ -William Welch,Female,8204,1987-03-29,O+ -Kelly Watson,Female,8205,1983-08-03,O- -Richard Woodard,Female,8206,1983-09-21,B+ -Todd Washington,Female,8207,1941-04-29,AB- -Kim Mills,Male,8209,1975-10-19,B- -Chelsea Williams,Female,8210,1964-08-23,O+ -Danielle Griffin,Female,8211,1972-05-19,O- -Heidi Douglas,Male,8213,1987-09-27,AB- -Edward Williams DDS,Female,8214,1943-03-17,AB+ -Eddie Barber,Male,8215,1943-06-22,B+ -Matthew Wyatt,Female,8216,1983-08-16,AB- -Candice Cunningham,Female,8217,1944-12-24,AB+ -Allison Wilson,Male,8219,1977-04-16,B+ -Aaron Yang,Female,8220,2002-11-18,B+ -Melissa Johnson,Female,8221,1956-02-07,A- -Holly Silva,Male,8222,1949-07-07,O- -Javier Guzman,Female,8223,1940-03-09,B+ -Jacob Sanders,Female,8224,1982-10-02,AB- -Lauren Williams,Female,8225,1972-12-22,B+ -Ruben Cisneros,Female,8226,1986-05-23,B- -Christopher Miller,Female,8227,1993-12-01,AB- -Alejandra Nunez,Male,8228,1981-06-21,O- -Ronald Bauer,Male,8229,2000-05-06,O+ -Elizabeth Nunez,Female,8230,1983-01-28,O+ -Emily Mendez,Female,8231,1979-08-14,AB- -Jonathan Thomas,Female,8233,1933-09-26,AB- -Miguel White DVM,Female,8234,1937-06-01,AB+ -Garrett Gutierrez,Female,8236,1965-07-18,O- -Autumn Mcdowell,Male,8238,1977-05-22,AB+ -Tina Evans,Female,8239,1930-06-01,B- -Tyler Gamble,Male,8240,1998-11-21,A- -Ian Porter,Male,8241,1996-11-18,O+ -Gabriel Phillips,Female,8242,1977-05-10,B+ -Julia Combs,Male,8243,1936-05-10,B+ -Anthony Vega,Male,8244,1967-12-18,A+ -Blake Cannon,Female,8245,1931-05-11,A+ -Connor Pierce,Male,8246,1962-10-27,O- -James Porter,Male,8247,1935-11-19,B+ -Ashley Greer,Female,8248,1931-07-11,O- -Mark Vargas,Female,8249,1966-09-02,A+ -Michael Holmes,Male,8250,1934-04-02,O- -Derek Morris,Female,8251,1980-08-30,O+ -Katherine Greer,Male,8252,1938-06-13,B- -Jessica Sanders,Male,8253,1984-06-14,B- -Daniel Barrett,Female,8255,1930-06-06,B+ -Jane Perez,Male,8256,1954-06-10,AB+ -Mr. James Thomas,Male,8258,1995-05-29,O+ -Calvin White,Female,8260,1949-08-11,A- -Kyle Morris,Female,8261,1989-12-24,O- -Tyler Freeman,Male,8262,1995-07-06,O- -Dustin Myers,Male,8264,1952-01-21,B+ -Jennifer Hale,Female,8265,1942-09-29,A- -Jennifer Estrada,Female,8266,1991-12-21,AB+ -Carrie Rice,Female,8267,1961-05-26,AB+ -Mark Peterson,Male,8268,1994-09-12,O- -Brandon Kim,Female,8269,1930-06-04,O- -David Zavala,Female,8270,1951-10-08,A- -Anthony Norris,Female,8271,1971-12-15,B+ -Alexandra Richardson,Female,8272,1977-08-02,O+ -Daniel Gregory,Male,8273,1942-09-01,A- -Amanda Gardner,Male,8274,1982-10-24,AB+ -Joann Johnson,Female,8275,1969-01-15,A- -Breanna Nielsen,Male,8276,1970-09-21,A- -Alexander Turner,Male,8277,1965-08-21,A- -Sierra Hansen,Male,8278,1955-08-27,O+ -Timothy Le,Female,8279,1930-06-03,AB- -Lauren Pena,Female,8280,1951-07-03,O- -Brett Rush,Male,8281,1963-11-23,A+ -Katherine Ward,Female,8282,1973-03-28,B+ -Jackie Owens,Male,8283,1992-08-08,A- -Kevin Barrett,Male,8284,1945-05-01,B+ -Kyle Francis,Female,8285,1979-07-23,A+ -Donald Mcclain,Male,8286,1970-06-25,AB- -Bradley Swanson,Female,8287,1960-04-02,O- -Alejandro Gray,Male,8288,1932-02-26,AB+ -Allison Rodgers,Female,8289,1941-12-17,A+ -William Robinson,Female,8290,1997-01-09,B+ -Jason Little,Male,8291,1970-11-10,B+ -Jason Phillips,Female,8292,1941-09-12,B+ -Christopher Hernandez DDS,Female,8293,1985-03-04,AB+ -Curtis Gonzalez,Male,8294,1999-01-17,A+ -Gregory Wilson,Male,8295,1946-05-31,B+ -Philip Cline DVM,Male,8296,1994-08-13,AB+ -Lori Scott,Female,8297,1999-02-09,A- -Tonya Blair,Male,8298,1984-03-28,B+ -Kendra Cox,Female,8299,1985-03-20,A+ -Rachel Diaz,Female,8300,1989-09-19,AB+ -Gabriel Flores,Female,8301,1949-03-13,AB- -David Miles,Female,8302,1996-11-26,O+ -Lauren Gomez,Female,8303,1984-12-28,AB+ -Matthew Gregory DDS,Female,8304,1968-07-26,O+ -Karen Walker,Female,8305,1955-05-11,O+ -James Murray,Male,8307,1981-04-16,O- -Harry Moon,Male,8308,1949-03-13,A- -Julie Schmidt,Male,8309,1994-03-05,AB- -Amy Salazar,Male,8310,1933-04-27,O+ -Gabriel Sanders,Female,8311,1993-12-05,B- -Rebecca Shaw,Female,8313,1968-09-19,A- -Susan Wilkerson,Male,8314,1955-08-02,O+ -Zachary Allen,Female,8316,1948-05-10,AB+ -Lawrence Watkins,Male,8317,1973-07-10,O+ -Rhonda Colon,Male,8318,1995-03-18,AB+ -Austin Rogers,Male,8319,1981-09-25,B+ -Travis Gomez,Female,8320,1930-05-24,AB+ -Evan Pittman,Female,8321,1959-03-31,B- -Christine King,Female,8322,1950-03-04,O+ -Ryan Nichols,Female,8323,1938-11-03,O+ -Todd Glass,Male,8324,1942-07-19,A+ -Thomas Lowery,Female,8325,1965-12-30,A- -Rachel Jones,Female,8326,1961-03-16,A+ -Sandra Rice,Female,8327,1946-07-07,O- -Mike Palmer DVM,Male,8328,1941-08-14,AB+ -Eric Quinn,Male,8330,1967-05-14,B- -Christian Bender,Female,8331,1961-06-23,A+ -Felicia Boyd,Male,8332,1956-02-23,O+ -Joshua Holmes,Female,8333,1971-06-21,O- -Michelle Kelly,Male,8334,1982-04-15,B- -Jennifer Stevens,Female,8335,1941-06-17,AB- -Jade Waters,Male,8336,2001-01-01,O+ -Jordan Rogers,Female,8337,1964-03-09,O+ -Barry Bryant,Male,8338,1950-01-24,B+ -John Green,Female,8339,1987-07-18,AB- -Robert Rodriguez,Male,8340,1983-08-07,AB+ -Catherine Osborne,Male,8341,1975-09-06,AB+ -Joyce Austin,Female,8342,1976-11-02,A+ -Charles Simpson,Male,8343,1990-06-13,A+ -Dr. Kimberly Khan,Female,8344,1938-03-30,O+ -David Shah,Male,8345,1945-03-18,A- -Dorothy Ingram,Male,8346,1930-03-09,O+ -Ricardo Wilkins,Female,8347,1963-05-13,A+ -Kayla Hayden,Male,8348,1981-09-20,AB- -Colton Jones,Male,8349,1934-03-18,A+ -Melissa Snyder,Male,8350,1975-12-12,O+ -Thomas Garcia,Male,8351,1961-08-15,B- -Chelsey Shepherd,Male,8352,1945-07-21,O+ -Jamie Ward,Male,8353,2000-06-21,B- -John Cook,Female,8354,1988-01-26,B- -Paul Roberts,Male,8355,1953-12-13,O+ -Nancy Davila,Male,8356,1991-06-02,A- -Alexis Shaw,Male,8357,1971-05-22,A- -Noah Nelson,Male,8358,1984-11-18,O- -Barbara Ross,Female,8359,2002-01-30,A+ -Stephanie Byrd,Male,8360,1938-01-20,A- -Jay Ray,Female,8361,1959-09-15,AB+ -Ricky Matthews,Female,8362,1949-05-08,O+ -Shannon English,Male,8363,1988-10-18,B- -Anthony Stein,Female,8364,1957-10-17,O+ -Kevin Tate,Male,8365,1979-03-30,A+ -David Rice,Male,8366,1978-11-29,AB- -Tracy Dalton,Male,8367,1991-12-01,A- -Shawn Nguyen,Female,8368,2000-04-21,A- -Danny Wright,Female,8369,1983-10-30,A- -Ricky Daniels,Male,8370,1971-06-01,B- -Joseph Whitney,Female,8371,1972-09-30,AB+ -Traci Henry,Female,8372,1947-08-27,B+ -Margaret Mayo,Male,8373,1945-01-21,AB+ -Samantha Hicks,Male,8374,1947-03-06,A- -Mackenzie Ross,Male,8375,1933-07-23,AB+ -Dakota Howard,Male,8376,1990-10-15,AB- -Jason Mcdonald,Male,8377,1948-05-07,A- -Kelly Peterson,Female,8378,1943-09-04,O- -Angel Sweeney,Female,8379,1972-10-14,B- -Erin Terry,Male,8380,1950-07-04,AB- -Lisa Kelly,Female,8381,2001-06-28,B+ -Terry Irwin,Female,8382,1952-08-22,B- -Barry Williams,Female,8383,1937-10-02,B+ -Caitlin Carter,Male,8384,1961-10-07,A- -Thomas Kelly,Female,8385,1982-04-23,AB- -Karen Moore,Male,8386,1962-05-12,A- -Carrie Nguyen,Female,8387,1979-01-20,B+ -Angela Cohen,Female,8388,1997-12-08,B+ -Mary Love,Female,8389,1989-03-29,AB- -Isaac Hernandez,Female,8390,1935-06-20,A- -James Browning,Male,8391,1989-05-26,O- -Lauren Maddox,Female,8392,1961-10-24,B- -John Barrett,Female,8393,1975-08-14,AB- -Michael Gordon,Male,8394,1938-06-17,O- -Mr. Ryan Smith,Female,8395,1931-06-08,O+ -Patrick Robinson,Female,8396,1986-07-25,A- -Kevin Alvarez,Female,8397,1963-12-24,A+ -Isabel Wilson,Female,8398,1989-07-19,AB- -Jorge Day,Female,8400,1973-01-27,AB+ -Pamela Sawyer,Male,8401,1983-05-29,O- -Hannah Navarro,Male,8402,1952-05-12,O- -Crystal Avila,Female,8403,1944-03-18,AB- -Kelsey Hansen,Female,8404,1942-07-12,B+ -Dominique Morales,Male,8405,1951-02-27,O- -Erik Fletcher,Male,8406,1972-02-08,O+ -Melinda Hill,Male,8407,1934-12-03,O- -Jose Mora,Female,8408,1935-11-02,A+ -Tyler Nelson,Female,8409,1994-11-27,A+ -Tanya Rodgers,Male,8410,1970-10-18,B+ -Amy Wilson,Female,8411,1992-08-27,A- -Tonya Simpson,Female,8412,1977-02-02,A- -Joseph Rodriguez,Female,8413,1998-07-01,B+ -Crystal Cooper,Female,8415,1961-01-10,AB+ -Sheila Deleon,Female,8416,1948-04-02,O+ -Sheryl Crawford,Male,8417,1975-04-01,A+ -Luke Johnson,Male,8418,1964-03-02,B+ -Mary Powers,Female,8419,1933-11-11,AB- -Mathew Bennett,Female,8420,1964-09-04,B- -Deborah Leonard,Female,8421,1931-06-19,B- -Tammy Powell,Female,8422,2001-12-26,B- -Melanie Gonzalez,Male,8423,1939-03-19,A- -Scott Hines,Female,8424,1977-09-07,AB- -Angela Martinez,Female,8425,1939-02-25,O- -Thomas Brewer,Male,8426,2001-02-23,AB- -Donna Campbell,Female,8427,1991-07-09,O- -David Warren,Female,8428,1966-11-13,B- -Alyssa Richmond,Female,8429,1942-04-28,AB+ -Mark Tran,Female,8430,1933-03-18,AB+ -David Chan,Female,8431,1999-09-20,B+ -Mr. Glenn Hampton,Female,8432,1987-03-24,O- -Robert Waters,Male,8433,1951-12-04,B- -Steven Evans,Female,8434,1934-06-30,AB- -John Franco,Male,8435,1976-02-24,AB+ -Tammie Hansen,Female,8436,1982-11-28,O- -Aaron Oliver,Male,8437,1953-12-04,B+ -Matthew Burke,Female,8438,1942-12-10,AB- -Laura Smith,Female,8439,1962-04-12,B- -Matthew Stephenson,Male,8440,1995-11-10,O+ -Donald Decker,Male,8441,1960-03-01,B- -Anna Davenport,Female,8442,1985-01-19,A- -Christopher Williamson,Male,8443,1930-12-30,B- -Nathan Hodge,Female,8444,1958-05-12,B+ -Paul Williams,Female,8446,1939-01-23,AB- -Beth Jensen,Male,8447,1976-05-08,B+ -Angel Gill,Male,8448,1938-11-15,AB- -Brittany Rice,Male,8449,1948-04-01,A+ -Timothy Smith,Male,8450,1965-05-18,A+ -Michelle Mata,Male,8451,1935-04-21,AB- -William Peters,Male,8452,1968-03-30,AB- -Diana Maynard,Female,8453,1999-12-03,O+ -Melissa Willis,Male,8454,1960-08-28,O+ -Christy Steele,Female,8455,1962-11-07,B- -Thomas Camacho,Female,8456,1932-06-01,B+ -Laura Roberts,Female,8458,1985-05-16,A- -Rose Gonzalez,Female,8459,1948-12-15,B+ -Lisa Smith,Male,8460,1999-09-02,AB+ -Andre Clay,Male,8461,1987-06-26,B+ -Carlos Cooper,Female,8462,1967-07-14,A- -Mallory Carter,Female,8463,1999-08-28,O+ -Gail Garza,Female,8464,1944-04-01,B- -Jack Ware,Male,8465,1949-12-15,A- -Erin Williams,Female,8466,1938-10-09,B+ -Kimberly Tanner,Male,8467,1936-02-23,O- -Brandon Walker,Male,8468,1930-01-19,A+ -Ms. Emily Baxter,Female,8469,1976-08-12,A- -Sarah Davis,Male,8470,1938-06-11,AB+ -Mark Warren,Male,8471,1989-02-04,B- -James Watson,Female,8472,1953-05-01,A- -Mariah Rodriguez,Female,8473,1977-03-24,AB- -Eduardo Rasmussen,Female,8474,1932-02-13,B+ -Garrett Wagner,Female,8476,1942-12-16,O- -Michael Price,Female,8477,1984-06-28,A+ -Sara Mann,Female,8478,1948-08-09,O- -Luis Sullivan,Male,8479,1949-02-14,B- -Jesse Huber MD,Female,8480,1937-01-11,B+ -Shelby Sutton,Female,8481,1974-02-20,O+ -Amanda Brown,Female,8482,1934-08-02,A+ -George Bradley,Female,8483,1959-10-11,B+ -Shawn Fuller,Female,8484,1961-09-07,O- -Bianca Moore,Female,8485,1932-01-10,O+ -Karen Zuniga,Female,8486,1934-03-26,AB+ -Elizabeth Hebert,Male,8487,1955-07-16,B- -Gary Brown,Female,8488,1944-01-15,B- -Carol Davis,Male,8489,1993-11-17,A+ -Ryan Delgado,Male,8490,1992-12-25,O- -Eric Schroeder,Male,8491,1954-10-27,AB+ -Beverly Johnson,Male,8492,1987-05-01,AB- -Tyler Ellison,Male,8493,1958-09-23,A+ -Christina Willis,Female,8494,1990-04-25,B+ -Alicia Delacruz,Male,8495,1999-05-06,AB- -Jennifer Campbell,Female,8496,1967-08-24,A+ -Richard Lee,Male,8497,1994-05-13,O- -Miss Brianna Peterson,Female,8498,1954-10-07,AB+ -Megan Miles,Female,8499,1985-01-28,O- -Kristen Cook,Female,8500,1981-02-09,B- -Sarah Malone,Female,8501,1956-01-26,AB- -Amy Burton,Female,8502,1953-09-26,O+ -Joseph Gonzales,Female,8503,1960-11-22,A- -George Bryant,Male,8504,1949-02-28,B+ -Troy Gilmore,Male,8505,1966-10-19,B- -Larry Hernandez,Male,8506,1964-10-06,B- -Rebecca Harris,Male,8507,1967-08-08,AB- -Savannah Reed,Male,8508,1989-09-05,B+ -Jennifer Chapman,Female,8509,1933-06-23,A+ -Destiny Watson,Female,8510,1951-07-18,B- -Mary Crawford,Male,8511,1963-11-17,A- -Julie Becker,Female,8512,1981-12-26,AB+ -Courtney Clark,Female,8513,1946-04-28,B- -John May,Female,8514,1973-01-29,AB+ -Thomas Gonzalez,Female,8515,1956-06-14,O- -Bobby Odom,Male,8516,1953-06-18,B+ -Melinda Dunn,Male,8517,1950-09-10,A+ -Jessica Mckenzie,Female,8518,1979-06-17,AB+ -Philip Martin,Male,8519,1953-02-02,B- -Zachary Thompson,Female,8520,1972-11-09,A+ -Daniel Kennedy,Female,8521,1954-12-12,A- -Margaret Russell,Male,8522,1945-07-23,A+ -Melissa Mendoza,Female,8523,1972-05-19,AB+ -Kaitlyn Werner,Male,8524,1971-03-14,B+ -Ellen Sanchez,Female,8525,1952-02-19,AB+ -Robert Hardy,Female,8526,1989-07-21,O+ -Steven Willis,Female,8527,1975-01-18,O+ -Charles Mitchell,Male,8528,1985-08-08,A+ -Brian Huynh,Male,8529,1946-12-23,AB- -Cathy Lee,Male,8530,1958-02-21,B+ -Russell Mata,Male,8531,1935-07-01,AB- -Lisa Burch,Male,8532,1999-06-24,O+ -Ryan Stewart,Female,8533,1973-04-07,B- -Jessica Boyle,Male,8534,1966-06-30,O- -Angela Zhang,Female,8535,1997-02-01,A+ -Jenna Jensen,Female,8536,1937-08-11,O- -Amanda Lane,Male,8537,1988-04-30,O+ -Kyle Lynch Jr.,Male,8539,1932-01-26,AB+ -Dana Barrett,Female,8540,1947-10-14,A- -Nicole Adkins,Male,8541,1957-11-22,A+ -Jason Clay,Female,8542,1991-02-09,O+ -Victor Davidson,Female,8543,1956-01-18,B+ -Paul Blair,Male,8544,1981-03-28,B- -Mark Hanson,Female,8545,1990-06-24,A- -Linda Robertson,Male,8546,1997-08-02,A+ -Carolyn Martin,Male,8547,1977-08-22,A+ -Nicole Oconnor,Female,8548,1950-02-12,B+ -Andrew Ponce,Female,8549,1969-01-05,AB- -Felicia Hamilton,Female,8550,1970-09-27,AB+ -Todd Warren,Female,8551,1968-06-27,A+ -Justin Hancock,Male,8552,1963-01-05,AB+ -Catherine Eaton,Female,8554,1997-05-09,O+ -Roger Fuller,Male,8556,1943-07-10,B- -Cody Watts,Female,8557,1982-08-18,A- -Stephanie Jackson,Female,8558,1932-01-08,A- -Regina Robinson,Female,8559,1946-12-23,B- -Kenneth Morgan,Male,8560,1952-12-02,A+ -Felicia Webb,Male,8561,1975-06-29,A+ -Tara Holmes,Male,8562,1980-02-09,O+ -Jonathan Gibson,Male,8563,1953-05-14,AB- -Andrew Miller,Male,8564,1991-01-23,AB- -Todd Collier,Female,8565,1937-03-08,AB- -April Villegas,Male,8566,1953-09-03,AB+ -Whitney Cochran,Male,8567,1967-01-30,AB- -Rebecca Edwards,Male,8568,1992-05-20,B- -Brenda Shepard,Male,8569,1965-02-03,A- -Tami Gonzales,Female,8570,1994-03-22,A- -Jessica Noble,Female,8571,1981-02-02,AB+ -David Kelley,Female,8572,1995-02-06,O+ -Gary Lopez,Male,8573,1998-12-01,B- -Steven Jones,Male,8574,1985-06-19,A- -Drew Jarvis,Male,8575,1987-04-06,B- -Christopher Villanueva,Female,8576,1994-06-22,A- -Crystal Barnes,Male,8577,1942-04-25,O- -Herbert Collier,Female,8578,1951-09-21,O+ -Jason Melendez,Male,8579,1980-09-14,O+ -Zachary Gallagher,Male,8580,1948-06-02,B+ -Carolyn Fisher,Male,8581,1963-04-14,O- -Angela Harvey,Male,8582,1979-02-22,AB+ -Christine Richmond,Female,8583,1975-09-14,A- -Brenda Bowman,Female,8584,1998-03-23,B+ -David Walker,Male,8585,1953-08-15,A- -Richard Harris,Male,8586,1952-11-29,A- -Wendy Rojas,Female,8587,1975-03-28,AB- -Vanessa Johnson,Male,8588,1975-05-22,AB- -Jamie Martin DVM,Male,8589,1983-10-11,AB- -Michelle Martinez,Male,8590,1972-08-25,AB- -Jacob Warner,Male,8591,1983-09-19,AB- -Tony Young,Female,8592,1966-11-20,O- -Kenneth Gutierrez,Male,8593,1932-07-31,O+ -Corey Garrison,Male,8594,1942-08-26,AB+ -Tracy Love,Female,8595,1990-07-09,B- -Jenna Pierce,Female,8596,1974-05-05,AB- -Joseph Jones Jr.,Male,8597,1960-07-16,O- -Kevin Haley,Male,8598,1947-05-25,B+ -Louis Knight,Female,8599,1988-06-06,B+ -Michael Vega,Male,8600,1955-01-15,A- -Tracey Bell,Female,8601,1955-12-30,AB+ -Michael Chambers,Female,8602,1967-02-18,B+ -Jonathan Franklin,Female,8603,1984-02-12,AB+ -Robert Howell,Female,8604,1990-11-05,AB+ -Lance Blankenship,Female,8605,1937-11-20,O- -Preston Long,Male,8606,1988-03-28,B- -Stephanie Robbins,Male,8607,1931-06-30,AB- -Gregory Oliver,Male,8608,1968-09-10,AB+ -Garrett Acosta,Male,8609,1966-06-05,O- -Phillip Alvarez,Female,8610,1935-04-12,A- -Aaron Miller,Male,8611,1986-03-24,O+ -Daniel Williamson,Male,8612,1974-11-14,A- -Allison Mora,Female,8613,1961-12-17,O- -Tammy Osborne,Male,8614,1990-01-03,O- -Daniel Reyes,Female,8615,1972-02-02,O- -Andrew Lutz,Female,8616,2001-01-06,AB+ -Julie Chang,Male,8617,2002-04-09,O- -William Thomas,Male,8618,1989-08-01,O+ -Zachary Garrett,Female,8619,1991-12-04,AB+ -Jessica Russell,Female,8620,1937-04-17,A- -Caitlin Copeland,Female,8622,1971-02-28,O+ -Zachary Smith,Female,8623,1955-12-01,B+ -Michael Joseph,Male,8624,1939-02-09,A+ -Allison Brown,Male,8625,1940-01-08,A- -Michael Jackson,Male,8626,1977-12-15,O- -Miguel Anderson,Male,8628,1943-01-16,AB- -Michael Silva,Female,8629,1993-04-21,AB- -Kevin Mills,Male,8630,1959-08-25,AB+ -Matthew Dickson,Male,8631,1970-07-30,AB- -Michelle Cunningham,Male,8632,1960-09-21,A- -Joseph Harris,Male,8633,1960-09-11,AB+ -William Patel,Female,8634,1967-02-25,A- -Rebekah Simmons,Female,8636,1943-12-11,O- -Jennifer Reid,Male,8637,1946-06-28,B- -Barbara Jones,Female,8638,1964-05-31,B- -Michael Martinez,Male,8640,1983-07-05,O+ -Dylan Allen,Male,8641,1967-01-02,O- -Vanessa Jones DDS,Male,8642,1946-11-12,AB- -Edward Cooper,Female,8644,1994-11-23,O- -Stephen Mitchell,Male,8645,1966-03-16,A+ -Richard Moore,Female,8646,1953-02-14,B- -Justin Estrada,Male,8647,1989-05-22,AB- -Kendra Carroll,Male,8648,1998-03-09,A- -George Taylor,Female,8649,1960-03-06,A- -Ashley Rosario,Female,8650,1938-05-03,B- -Scott Woods,Male,8651,1956-04-26,O- -Jennifer Harris,Male,8652,1945-06-07,AB- -Richard Williams,Male,8653,1961-09-28,O+ -Robert Wong,Female,8654,1974-04-19,A- -Alejandra Hall,Female,8655,1937-12-02,O- -Kelly Fowler,Male,8656,1989-05-03,O+ -Evelyn Phillips,Female,8657,1945-11-30,B+ -Toni Lopez,Female,8658,1931-10-17,AB- -Kevin Carter,Male,8659,1989-11-12,B- -Christopher Mcclure,Male,8660,1976-12-08,B+ -James Robertson,Female,8661,1993-06-05,A+ -Joseph Smith,Female,8662,1934-12-04,B+ -Sharon Brown,Female,8663,1944-02-16,AB+ -Emily Johnson,Male,8664,1961-10-23,B- -Leslie Morris,Male,8665,1953-02-15,O+ -Thomas Webb,Female,8666,1989-04-07,O- -Emily Ramsey,Female,8667,1940-06-20,B+ -Jennifer Reed,Male,8668,1974-01-29,A- -Dawn Lane,Male,8669,1979-12-30,AB- -Kathryn Walters,Female,8670,1991-09-16,B+ -Karen Pruitt,Male,8671,1951-04-28,B- -Melissa Moore,Female,8672,1960-08-27,A- -Eric Jenkins,Male,8673,1987-03-23,A- -Carol Johns,Male,8674,1985-01-30,A+ -John Holland,Male,8675,2000-09-10,AB- -John Mcguire,Male,8676,1991-03-18,B+ -Jennifer Fry,Male,8677,1993-01-13,O+ -Frank Rogers,Female,8678,1989-07-10,AB- -Amanda Young,Female,8679,1947-06-21,B+ -Oscar Wright,Male,8680,1977-08-14,AB- -Robert Lindsey,Female,8681,1986-09-02,O- -Brenda Khan,Female,8682,1956-07-25,AB+ -David Blanchard,Female,8683,2002-08-26,B+ -Amy Anderson,Female,8684,1981-09-22,A- -Nichole Munoz,Male,8685,1987-11-20,O+ -Darius Hodge,Male,8686,1937-05-06,B+ -Nathan Patel,Male,8687,1994-11-16,B+ -Karen Torres,Male,8688,1932-09-16,O- -Amanda Henry,Female,8689,1964-02-28,A- -Debra Sanchez,Male,8690,1953-02-15,AB+ -Garrett Patterson,Female,8691,1942-11-25,O- -Arthur Davis,Female,8692,1947-09-28,AB+ -Mason Hill,Female,8693,1993-12-04,AB+ -Barbara Mora,Male,8694,1966-01-13,AB+ -Michael Brown,Female,8695,1970-01-26,O- -Hannah Alexander,Male,8696,1952-02-10,AB- -Billy Obrien,Male,8697,1987-01-18,B+ -Richard Chang,Female,8698,1997-12-26,AB+ -Sydney Lopez,Male,8699,1932-10-04,AB- -Terrance Ramirez,Male,8700,1992-08-23,B+ -Adam Lyons,Female,8701,2002-02-03,A- -Sean Davis,Male,8702,1951-01-19,B+ -Carly Morgan,Male,8703,1959-06-21,A- -Alexander White,Female,8704,1940-09-13,O+ -Chad Walters,Female,8705,1982-07-14,A+ -Kara Calderon,Female,8706,1962-09-27,AB- -Kevin Howell,Female,8707,1941-12-28,B+ -Gregory Garner,Male,8708,1975-02-16,A- -Joan Kennedy,Female,8709,1997-10-28,A+ -Courtney Martinez,Male,8710,1932-05-27,AB+ -Jo Gillespie,Male,8711,1972-09-02,A+ -Nathan Gentry,Female,8712,1979-12-22,A+ -Alex Hester,Female,8713,1982-02-26,AB+ -Jason Sanders,Male,8714,1978-08-29,AB- -Ann Fisher,Male,8715,1981-06-21,B+ -Abigail Mack,Male,8716,1998-11-05,AB+ -David Clark,Male,8717,1937-03-22,O+ -Christian Mccoy,Female,8718,1949-10-30,B- -Jamie Lowe,Female,8719,1955-05-07,B+ -Jerry Cox,Male,8720,1953-08-01,O- -Joseph Wood,Male,8721,1937-11-23,AB+ -Jessica Holland,Female,8722,1933-04-19,AB+ -Jennifer Miller,Female,8723,1976-05-07,A+ -Shawn Norris,Female,8724,1962-05-24,O+ -Mark Miller,Female,8725,1972-05-04,A- -Melinda Reyes,Female,8726,1978-03-17,A- -Jeffrey Holmes,Female,8727,1983-07-18,A+ -Charles Martinez,Female,8728,1999-05-22,AB- -Jordan Austin,Male,8729,1992-07-08,B+ -Jeffrey Koch,Female,8730,1968-04-25,AB+ -Christopher Quinn,Male,8732,1947-11-08,B+ -Gregory Shaw,Female,8733,1931-10-17,B+ -Mason Terry,Male,8734,1993-07-14,AB+ -Lisa Wood,Female,8735,1981-07-22,A+ -Savannah Johnson,Female,8736,1990-12-28,B+ -Marvin Hays,Male,8737,1953-01-12,AB+ -Casey Day,Male,8738,1940-01-15,AB- -Gary Tapia,Male,8739,1941-09-17,B+ -Cody Pollard,Male,8740,1986-11-29,B- -Samuel Herman,Female,8741,1981-11-22,O- -Michelle Thomas,Female,8742,1945-02-06,O- -Douglas Hernandez,Male,8743,1955-03-16,O- -John Lee,Male,8744,2002-11-26,B- -Robert Lawrence,Male,8745,1971-08-12,AB+ -Brianna Parker,Male,8746,1940-11-29,A+ -Andrea Gonzales,Male,8747,1965-12-18,A- -Breanna Poole,Male,8748,1952-05-12,O+ -Jeffrey Ortiz,Male,8749,1950-05-24,AB+ -Shannon Kaufman,Female,8750,1986-08-29,B- -Bradley Cisneros,Female,8751,1983-02-15,B+ -Brent Taylor,Male,8752,1940-01-30,AB- -Nicole Barker,Female,8753,2001-03-28,B- -Steven Morgan,Female,8754,1986-05-07,B+ -Laura Cohen,Male,8755,1976-06-04,A- -Robert Solomon,Female,8756,1956-01-29,O- -Jason White,Female,8757,1943-01-06,AB+ -Dale Frederick,Female,8758,1949-05-23,A- -Jennifer Marshall,Female,8759,1940-12-16,O- -Stephen Sanchez,Female,8760,1945-05-31,O+ -Ana Stein,Female,8761,1963-08-14,B+ -Isaac Parker,Female,8762,1953-01-17,B+ -Stephanie Gibbs,Male,8763,1986-05-11,AB- -Kent Graves,Male,8764,1935-06-21,O- -Michelle Holmes,Female,8765,1954-07-17,O+ -Destiny Mora,Female,8766,1973-03-20,B+ -Tammy Hernandez,Male,8767,1995-03-07,B- -Sarah Lynch,Female,8768,1942-05-22,O- -Samuel Crosby,Female,8769,1998-06-22,O- -Brian Lopez,Male,8770,1939-05-01,A+ -Christopher Yates,Male,8771,1948-06-06,AB- -Catherine Sanders,Male,8773,1951-05-06,AB- -Linda Baldwin,Female,8774,1961-01-10,A- -Ms. Melissa Bowman,Male,8775,1999-08-28,B- -Summer Nicholson,Male,8776,1982-07-04,A+ -Tammy Hall,Male,8777,1994-12-09,A- -Wesley Green,Female,8778,1937-12-21,O+ -Regina Sharp,Male,8779,1996-08-18,A- -John Henderson,Female,8780,1981-06-21,O+ -Amanda Gray,Male,8781,1975-07-18,B- -Daniel Ross,Male,8782,1971-08-08,B+ -Carolyn Nixon,Female,8783,1943-07-23,AB- -Michelle Martinez,Female,8784,1952-03-04,B+ -Latasha Cross,Female,8785,1989-05-04,O+ -Stephanie Lee,Female,8786,1974-02-16,B- -Joseph Bass,Male,8787,1952-03-08,B+ -Jason Howell,Male,8788,1994-09-23,A- -Daniel Hall,Male,8789,1945-03-28,O+ -Donald Jones,Female,8790,1992-06-25,AB+ -Mr. Christopher Diaz,Male,8791,1999-10-20,O- -Nicole George,Male,8792,1933-03-19,A- -James Garcia,Female,8794,1953-08-12,AB- -Wendy Smith,Female,8795,1969-05-30,B+ -Brandi Bennett,Male,8796,1966-04-18,A- -William Reeves,Female,8797,1932-04-15,AB+ -Christian Alvarado,Female,8798,1981-01-19,B- -Mrs. Carolyn Barnes MD,Female,8799,1999-09-29,B- -William Foster,Female,8800,1962-05-17,A- -Stacy Howard,Female,8801,1942-07-04,AB+ -Rhonda Bryant,Male,8802,1940-06-12,B+ -Natasha Williams,Female,8803,1975-07-14,A- -Nicholas Cunningham,Male,8804,1936-08-26,O- -Joshua Hall,Female,8805,1955-02-21,O- -Bianca Duffy,Female,8806,1954-12-19,A+ -Erin Meadows,Male,8807,1961-11-04,O+ -Keith Sullivan,Male,8808,1989-05-02,A+ -Brian Bridges,Male,8809,1937-02-20,B+ -Jonathan Hall,Male,8810,2000-03-24,O- -Kevin Abbott,Male,8811,1946-03-28,AB+ -Willie Baker,Female,8813,1941-01-05,O+ -Rebecca Young,Female,8814,1962-10-31,B+ -Christina Williams,Male,8815,1987-12-16,AB+ -Janice Vega,Female,8816,1948-02-13,B+ -Robert Eaton,Female,8817,1938-08-18,A+ -Katrina Reynolds,Female,8818,1945-04-12,B- -Lucas Lamb,Female,8819,1949-04-25,AB+ -Eric Johnson,Female,8821,1995-12-16,A+ -Katrina Sanders,Female,8822,1950-11-11,A+ -Ryan Carr,Female,8823,1973-04-28,A+ -Brittany Morales,Male,8824,1966-04-09,B- -Justin Vega,Male,8825,1942-07-10,B- -Jill Mason,Female,8826,1971-12-31,A- -Frederick Williams,Male,8827,1939-07-24,B- -Robert Gonzalez,Female,8828,1931-12-08,O+ -Paul Mendez,Male,8830,1973-01-23,B- -Whitney Williams,Female,8831,1949-02-27,B- -Tanya Navarro PhD,Male,8832,1944-04-30,B- -Daniel Crosby,Female,8833,1999-05-08,B+ -Johnny Combs,Male,8834,1945-10-04,AB+ -Cynthia Patton,Male,8835,1993-11-30,B- -Brenda Jackson,Male,8836,1998-11-23,O+ -Brent Preston,Female,8838,1978-07-06,B+ -Robert Ramirez,Male,8839,1990-02-27,A+ -Jordan Reyes,Female,8840,1979-12-01,AB+ -Joshua Hutchinson,Female,8842,1948-10-04,O- -Shannon Sanchez,Female,8843,1963-03-15,B+ -Juan Pope,Female,8844,1994-08-08,B- -Keith Lopez,Male,8845,1951-07-15,B+ -Kevin Alvarez,Male,8846,1963-03-07,A- -Jacob Carter,Female,8847,1939-01-31,A- -James Moore,Female,8848,1963-06-09,B+ -Tyrone Adkins,Female,8849,1961-01-25,A+ -Patrick Jackson,Female,8850,1958-06-13,A+ -Heather Wiggins,Female,8851,1993-07-04,AB+ -Andrea Macias MD,Male,8852,1970-09-11,A- -Bonnie Bowman,Female,8853,1975-04-23,O- -Tanya Flores,Male,8854,1949-05-01,AB- -Larry Cox,Female,8855,2002-10-04,A- -Stephanie Alvarez,Female,8856,1972-06-13,B+ -Tiffany Johnson,Female,8857,1938-05-16,A- -Dr. Ryan Meyer,Male,8858,2002-12-29,O+ -Charles Baker,Male,8859,1942-02-15,AB- -Charles Hayes,Male,8860,1931-02-07,A+ -Travis Evans,Male,8861,1953-07-24,AB- -Kerry Singleton,Female,8862,1997-05-29,A- -Joshua Lopez,Male,8863,1973-02-25,A+ -Michelle Brown,Female,8864,1992-03-29,AB- -Theresa Perkins,Female,8865,1986-03-29,A+ -Ryan Blair,Male,8866,1932-05-17,A+ -Kristina Taylor,Female,8867,1967-09-23,AB+ -Brandon Williamson,Male,8868,1971-06-30,O- -Valerie Charles,Male,8869,1952-06-24,A+ -Jonathan Hansen,Female,8870,1930-12-31,O+ -Aaron Franklin,Male,8871,1995-04-21,A- -James Martinez,Male,8872,1972-01-27,A- -James Marshall,Female,8873,1947-12-29,O+ -Suzanne Contreras,Male,8874,1976-06-11,B- -Steve Rodriguez,Female,8875,1995-11-14,A+ -Sharon Gordon,Female,8876,1998-10-12,B+ -Miss Bonnie Davis,Female,8877,1968-05-18,A+ -Matthew Marks,Female,8878,1947-09-17,A+ -Ethan Allen,Male,8879,1941-05-13,B+ -Bradley Hansen,Female,8880,1965-10-09,AB- -Anita Donaldson,Male,8881,1983-03-07,A+ -Tiffany Long,Male,8882,1941-04-30,A+ -Bonnie Anderson,Female,8883,1963-07-03,O+ -Kyle Roth,Male,8884,1976-02-05,O- -Theresa Navarro,Female,8885,1963-04-11,O- -Christopher Patrick,Female,8886,1992-10-03,B- -Reginald Watts,Female,8887,1967-11-16,O+ -Madison Smith,Male,8888,1933-10-13,A+ -Logan Davis,Female,8889,1952-04-29,O- -Erin Gomez,Male,8890,1934-01-07,AB+ -Jon Barnett,Female,8891,1966-10-18,AB+ -Lisa Perkins,Male,8892,1982-05-10,AB+ -Destiny Stephens,Female,8893,1995-08-04,A+ -David Williams,Male,8894,2000-08-13,A+ -Herbert Day,Male,8895,1993-05-01,B+ -Christina Young,Male,8896,1977-04-08,B- -Alison Love,Male,8897,1962-11-15,A- -Jon Rhodes,Female,8898,1938-08-16,B- -Jennifer Hall,Male,8899,1997-07-08,B- -Calvin Spence,Female,8900,1951-08-11,AB- -William Buchanan,Male,8901,1986-03-16,AB+ -Daniel Graham,Female,8902,1974-03-07,A+ -Michael Ortega,Female,8903,1933-03-14,AB+ -Steven Gutierrez,Male,8904,1963-10-31,B- -Cindy Perez,Male,8905,1938-07-27,A+ -Michelle Kemp,Female,8906,1971-02-27,O+ -Lindsey Hill,Male,8907,1984-11-02,B+ -Mary Lowery,Male,8908,1936-12-01,O- -Sherri Larson,Male,8909,1960-04-12,O- -Michael Joyce,Female,8910,1939-08-18,B- -Bridget Rodriguez,Female,8911,1984-01-29,A- -Tyler Oneal,Female,8913,1994-12-13,AB+ -Andrew Mcgrath,Male,8914,1958-06-09,O+ -Brandon Quinn,Female,8915,1939-09-26,A+ -Michael Ray,Female,8916,1973-11-03,A- -Robert Porter,Female,8917,1968-10-05,AB+ -Dillon Hunter,Male,8918,1943-12-30,B- -Carrie Hood,Female,8919,1948-06-27,AB+ -Jennifer Adams,Male,8920,1976-01-29,B- -Brenda Pena,Male,8921,1947-06-05,AB- -Paige Davis,Female,8922,1939-12-06,O- -Robin Tucker,Female,8923,1985-11-08,A- -Robert Forbes,Female,8924,1940-08-11,O- -Rebecca Summers,Female,8925,1945-01-19,AB+ -Matthew Vincent,Female,8926,1973-10-01,O+ -Jeremy Smith,Female,8927,1961-07-26,A+ -Scott Robertson,Female,8928,1991-12-09,B- -Amanda Thompson,Male,8929,1975-07-29,A+ -Michelle Torres,Female,8930,2002-05-07,O- -Mark Cummings,Male,8931,1988-07-11,B+ -Jessica Gregory,Male,8932,1966-08-22,O+ -Marissa Alvarez,Female,8933,1941-01-08,O+ -Shawn Ward,Male,8934,1958-08-20,A+ -Robert Palmer,Female,8935,1967-11-27,O- -Christy Cummings,Male,8936,1997-07-15,B+ -Oscar Mason,Male,8937,1986-06-02,A+ -Kimberly Hampton,Female,8938,1941-06-07,AB+ -Allison Jones,Male,8939,1955-02-13,O+ -Debra Mejia,Male,8940,1939-06-06,O+ -John Arnold,Female,8941,1988-07-30,AB+ -Erin Garcia,Male,8942,1959-05-14,O- -Angela Roberts,Female,8943,1931-11-25,O+ -Natalie Rojas,Male,8944,1952-11-08,A- -Scott Reed DDS,Male,8945,1962-04-03,B+ -Neil Martinez,Male,8946,1979-10-27,AB- -Jason Riley,Female,8947,1967-11-24,AB- -Amy Santana,Female,8948,1969-01-10,AB- -Thomas Mckenzie,Male,8949,1968-05-22,B- -Russell Peters,Male,8950,1966-08-08,A- -Robert Freeman,Female,8951,1945-09-03,B- -Sarah Johnson,Male,8952,1933-11-08,O- -John Fleming,Male,8953,1951-12-29,AB+ -Ashley Rojas,Female,8954,2000-08-13,A+ -Blake Davis,Female,8956,1969-11-24,A- -Andrew Duran,Female,8957,1978-09-20,B+ -Catherine Cabrera,Male,8958,1984-06-07,O- -Trevor Brown,Female,8959,1986-10-30,A+ -Lisa Burns,Male,8960,1950-03-31,O- -Michael Dickerson,Female,8961,1976-05-14,B- -Walter Ramirez,Female,8962,1961-09-21,AB- -Rachel Rodriguez MD,Female,8963,2000-07-04,AB+ -Brandon Mcknight,Male,8965,1965-05-23,B- -Stephanie Simpson,Female,8966,1986-09-20,AB+ -Tamara Chandler,Male,8967,1932-09-24,A- -Michelle Webb,Female,8969,1986-01-07,A+ -Briana Byrd,Female,8970,1969-05-26,O- -Dylan Maynard,Female,8971,1946-09-13,O+ -Sharon Lewis,Female,8972,1990-01-25,O+ -Joseph Jacobs,Male,8973,1985-12-14,AB+ -Joyce Williams,Female,8974,1989-05-18,AB- -Ethan Howard,Female,8975,1997-01-31,AB- -Timothy Trevino,Female,8976,1991-07-26,AB+ -Anne Lowe,Female,8977,1966-12-27,B- -Miss Holly Freeman,Male,8978,1945-01-12,O+ -Jonathan Wagner,Male,8979,1998-04-22,B- -Kathleen Johnson,Male,8980,1945-05-18,A+ -Christine Smith,Male,8981,1973-09-10,O+ -Anita Moore,Male,8983,1936-02-27,A+ -Mrs. Kimberly Walker,Female,8984,1977-03-07,O- -Justin Moore,Female,8985,1959-06-06,B- -Richard Abbott,Female,8986,1958-10-15,AB+ -Stephanie Dillon MD,Female,8987,1992-04-03,O+ -Christina Lynch,Female,8989,1953-10-22,B- -Wanda Patterson,Male,8990,1952-02-05,AB+ -Ryan Hobbs,Female,8991,1954-05-09,O- -Kevin Jones,Female,8992,1984-10-13,O+ -Edward Vasquez,Male,8993,1975-09-20,A+ -Benjamin Parrish,Female,8994,1971-05-29,O- -John Young,Female,8995,1936-07-04,AB- -Robert Lopez,Female,8996,2000-02-19,AB+ -Stephanie Chung,Female,8997,1941-12-27,B+ -Nicole Richards,Male,8998,1960-08-13,O+ -Dr. Jacob Hart,Male,8999,1997-12-28,O+ -Alexander Steele,Male,9001,1931-07-29,A- -Andre White,Female,9002,1966-07-01,A- -Patrick Vargas,Male,9003,2001-07-15,O- -John Cole,Male,9004,1990-02-24,O+ -Brandi Young,Male,9005,1989-11-23,AB+ -Justin Stanley,Male,9006,1954-07-03,O- -Kristin Braun,Female,9007,1982-07-21,A+ -Jeffery Kelley,Male,9008,1997-02-16,O- -Tamara Grant,Female,9010,2000-04-23,O- -Sheila Perez,Female,9011,1945-07-11,B+ -Sarah Dorsey,Male,9012,1995-12-25,A+ -Johnny Hodges,Female,9013,1947-12-25,AB- -Hannah Foley,Female,9014,1964-10-25,A- -Lisa Richardson,Male,9015,1984-04-30,AB+ -Megan Diaz,Male,9016,1946-10-01,AB- -Monica Brooks,Female,9017,1985-10-15,AB- -Tonya Pineda,Female,9018,1951-06-17,AB- -Tyler Black,Female,9019,1975-06-01,A- -Angel Davis,Male,9020,1969-10-14,B- -Scott Smith,Female,9021,1982-06-16,A- -Bobby Keller,Male,9022,1980-04-24,AB- -Jesse Weaver,Female,9023,1980-12-31,B- -Elizabeth Allen,Female,9024,1953-04-08,A+ -Melanie Taylor,Female,9025,1979-06-24,A- -Julie Hartman,Male,9027,1941-04-02,AB+ -Chelsea Sanchez,Male,9028,1979-12-14,AB- -Ann Davis,Male,9029,2002-08-28,O+ -Amy Day,Female,9031,1989-01-11,A+ -Annette Chapman,Male,9032,1976-11-01,B- -Amber Myers,Male,9033,1999-06-03,A- -Christina Hayes,Male,9034,1967-01-08,AB+ -Gregory Acosta,Female,9035,1953-11-16,O- -Sydney Hernandez,Male,9036,1943-05-26,AB+ -Aaron Hayes,Male,9037,1975-10-19,AB+ -Michael Kelly,Male,9038,1989-08-21,AB- -Dr. Jordan Gutierrez II,Male,9039,1952-12-31,AB- -Nathaniel Crawford,Male,9040,1987-10-29,A- -Bryan Willis,Male,9041,1984-03-08,A- -Mr. David Gibbs Jr.,Female,9042,2000-11-16,B+ -Kelli Good,Female,9043,1969-12-28,B- -Danielle Cantrell,Female,9044,1957-10-05,B+ -Daniel Rose,Female,9045,1977-05-17,A- -Sally Hudson,Female,9046,1990-10-16,B- -Cathy Long,Female,9047,1935-08-07,AB- -Martha Galvan,Male,9048,1976-01-02,AB- -Derek Martin,Male,9049,1979-08-25,O+ -Miss Morgan Collier PhD,Male,9050,1995-01-22,O+ -Mrs. Michelle Hill,Male,9051,1977-11-13,A+ -Tina Hess,Male,9052,1939-04-16,AB- -Anthony Beasley,Female,9053,1982-06-13,O- -Timothy Sullivan,Female,9054,1959-03-22,O+ -Keith Michael,Female,9055,1969-07-19,B- -Paula Wright,Male,9056,1948-07-29,AB+ -Dr. Kimberly Jones,Male,9057,1979-02-02,A- -Dylan Hart,Female,9058,1932-12-06,A- -Tammy Sanchez,Female,9059,1992-09-18,A+ -David Cobb,Male,9060,1935-01-25,O+ -Stephanie Watson,Female,9061,1988-09-10,AB+ -Chelsea Miller,Female,9062,1963-12-04,AB+ -Michael Sullivan,Male,9063,1938-01-18,O+ -Justin Quinn,Male,9064,1957-08-22,O- -William Diaz,Female,9065,1974-08-19,O- -Daniel Lee,Male,9066,1949-09-12,A+ -Ronald Johnson,Female,9067,1946-01-08,B+ -James Garza,Female,9069,1993-02-16,O- -Shawna Dunn,Male,9070,1974-11-04,A+ -Sarah Fitzpatrick,Female,9071,1931-11-10,B+ -James Perkins,Male,9072,1932-09-15,B+ -Linda Fox,Male,9073,2001-09-08,B- -Loretta Day,Male,9074,1934-02-11,B+ -Calvin Martin,Male,9075,1979-10-04,O+ -Angel Mitchell,Female,9076,1989-04-26,B+ -Timothy Torres,Male,9077,1974-05-08,AB+ -Ryan Mata,Female,9078,1988-08-15,A+ -Amanda Vincent,Female,9079,1978-10-05,A- -Brandon Norman,Female,9080,1973-06-11,O- -Blake Martin,Male,9081,1969-01-22,A- -Miss Amanda Walker,Female,9082,1948-03-21,A+ -Justin Ramirez,Male,9083,1936-09-06,AB- -Devin Vazquez,Female,9084,1958-01-08,A+ -Peter Matthews,Male,9085,1993-08-18,O- -Lori White,Male,9086,1950-03-04,AB- -Samantha Bishop DVM,Male,9087,2000-10-14,AB- -Thomas Martinez,Female,9088,1966-12-08,B+ -Joshua Harris,Female,9090,1937-02-07,O- -Denise White,Male,9091,1987-09-12,AB- -Chloe Wilson,Female,9092,1981-07-12,O+ -Rachael Williams,Female,9093,1945-02-08,AB+ -Daniel Knox,Female,9094,1955-03-30,A- -Angela Paul,Female,9095,1947-04-12,O+ -Jordan Mclaughlin,Female,9096,1939-09-10,O+ -Nicole Sandoval,Female,9097,1970-05-15,O- -Laura Lewis,Male,9098,1984-05-24,B+ -Jordan Porter,Male,9099,1995-01-15,O- -Susan Clarke,Female,9100,1980-12-29,A- -Meredith Simpson,Male,9101,1947-06-19,AB+ -Kenneth Long,Male,9102,1982-06-06,A+ -Tony Ramos,Female,9103,1955-08-23,O+ -Renee Moore,Male,9104,1961-04-10,AB- -Michael Conway,Male,9105,1943-06-13,AB+ -Scott Terry,Female,9106,1931-02-08,O+ -Phyllis Barker,Male,9107,1966-02-01,A+ -Dr. Kelly Krueger DVM,Male,9108,1984-02-13,B+ -Thomas Robinson,Female,9109,1941-05-26,AB- -Edwin Harris,Female,9110,1995-10-01,O+ -Amy Foster,Female,9111,1975-02-05,B- -Joshua Petersen,Male,9113,1969-04-02,A- -Nancy Lozano,Male,9114,2000-06-16,AB+ -Beth Fields,Male,9115,1990-10-13,A- -Mr. Christopher Hill MD,Male,9116,1944-12-23,O- -Heather Patterson,Male,9117,1970-12-10,O+ -Melissa Johnson,Male,9118,1947-03-09,AB- -Samantha Bell,Female,9119,1945-09-18,AB- -Elizabeth Peterson,Male,9120,1986-07-23,AB+ -Alexis Wheeler,Female,9121,2001-01-25,AB+ -Meghan Robinson,Male,9122,1947-11-11,A- -Lori Williams,Female,9123,1988-07-22,AB- -Mary Howard,Female,9124,1996-11-12,AB- -Sierra Williams,Female,9125,1971-01-19,AB- -Travis Carter,Female,9126,1965-03-31,O+ -Brandon Smith,Female,9127,1992-12-11,AB- -Thomas Mccarthy,Female,9128,1966-09-28,O- -Andrew Williams,Female,9129,1969-08-01,AB- -Chad Ruiz,Male,9130,1935-08-27,O- -Brenda Dyer,Female,9131,1944-07-21,O+ -Kristen Miranda,Male,9132,1958-12-06,AB+ -Kelly Madden,Female,9133,1930-11-14,B+ -Carlos Potts,Female,9134,1978-12-21,O- -Sydney Williams,Female,9135,1946-10-14,O+ -Amber Willis,Female,9136,1950-04-25,B+ -Derek Arnold,Male,9137,1935-08-05,B+ -Wesley Parker,Female,9138,1942-08-04,AB- -Carmen Atkins MD,Female,9139,1957-12-19,O+ -Mark Alvarez,Male,9140,1930-04-29,B+ -Sierra Rosario,Male,9141,1931-12-11,AB- -Richard Martin,Male,9142,1973-06-01,A- -Maria Hale,Male,9143,1984-08-06,O+ -Sara Hall,Male,9144,1964-07-02,B+ -Natasha Brown,Male,9145,1938-11-25,AB+ -Charles Scott,Male,9146,1952-01-27,O- -Trevor Blankenship,Male,9147,1953-07-28,A- -Veronica Solis,Male,9148,1937-02-16,AB+ -Thomas Pope,Male,9149,1962-12-25,B- -Felicia Reynolds,Male,9150,1977-11-15,AB- -Rebecca Adams,Female,9151,1986-12-18,B+ -Ronald Moss,Female,9152,1951-07-07,O- -Danielle Barnes,Female,9153,1961-10-25,AB+ -Michaela Jimenez,Male,9154,1952-05-22,O- -Jill Brandt,Male,9155,1991-07-06,B- -Brandon Wheeler,Male,9156,1993-02-01,A+ -David Cruz,Male,9157,1981-01-18,AB- -Tammy Yoder,Male,9158,1996-10-26,AB- -Luke Young,Male,9159,1962-05-19,O+ -William Harris,Male,9160,1968-01-12,B+ -Brooke Anderson,Male,9161,1976-04-01,AB- -Karen Hansen,Male,9162,1981-05-16,AB- -Dean Wilkins,Male,9164,1999-03-03,AB+ -Michelle Estrada DDS,Male,9165,1987-11-14,A- -Kevin Meyers,Male,9166,1967-11-13,AB- -Richard May,Female,9167,1955-12-20,AB- -Stacy Thomas,Male,9168,1945-01-17,B+ -Michael Roberts,Female,9169,1960-11-06,B- -Julie Jackson,Female,9170,1983-08-24,A- -Anna Graves,Female,9171,1950-04-04,B- -James Allen,Male,9172,1948-06-18,B+ -Kiara Roberts,Female,9173,1990-04-28,O- -James Johnson,Female,9174,1944-02-28,O- -Joseph Price,Male,9175,1973-10-27,AB- -Laurie Young,Male,9176,1996-06-17,AB- -Bruce Macias,Female,9177,1975-09-30,O+ -Shane Sanchez,Female,9178,2002-09-29,O- -Derek Taylor,Female,9179,1965-08-09,AB+ -Melanie Buckley,Male,9180,1960-01-06,AB- -Holly Haynes,Male,9181,1959-07-03,AB+ -Ronald Hernandez,Male,9182,1939-09-28,AB- -John Mcclure,Female,9183,1939-10-28,B+ -Theresa Pope,Male,9184,1975-04-10,AB+ -Darrell Burgess,Female,9185,1932-08-12,A+ -Gina Peters,Female,9186,1967-10-08,AB+ -Gregory Ray,Female,9187,1986-10-12,A- -Jose Harrison,Female,9188,1994-06-18,O- -Mark Miller,Male,9189,2000-07-19,AB- -Susan Morris,Male,9190,1931-11-19,O- -Nathan Mitchell,Female,9191,1953-04-11,A- -Dr. Gerald Summers,Female,9192,1971-06-13,A- -Mariah Cameron,Female,9194,1956-07-17,AB+ -Jason Franklin,Male,9195,1938-07-25,B- -Karen Richardson,Female,9196,1993-05-17,B- -Rebekah Kennedy,Male,9197,1964-12-08,A- -Allen Young,Female,9198,1961-08-25,B- -Ashley Kline,Male,9199,1970-07-06,AB- -Meagan Mitchell,Male,9200,1939-04-19,O+ -Nancy Jones,Male,9201,1999-07-07,A+ -Richard Escobar DDS,Female,9203,1932-04-25,AB+ -Samantha Hampton,Male,9204,1933-03-10,O+ -Candice Taylor,Male,9205,1965-06-20,B- -Russell Taylor,Male,9206,1946-03-02,AB+ -Rodney Barnes,Male,9207,1967-08-06,O+ -Amanda Grant,Male,9208,2002-02-15,O- -Sarah Hayes,Female,9209,1989-07-14,B- -Elijah Evans,Male,9210,1930-12-21,B+ -Heather Roberts,Female,9211,1979-12-26,O+ -Kathryn Brown,Female,9213,1980-05-26,B+ -Jordan Long,Male,9215,1937-09-18,AB- -Manuel Ford,Female,9216,1940-06-29,O- -Gregory Villanueva,Male,9217,1964-02-19,B- -Jesse Adams,Female,9218,1952-08-10,A+ -Barbara Woods,Female,9219,1965-11-20,A- -Heather Powers,Male,9220,1964-02-10,B- -Kimberly Reed,Male,9221,1959-05-02,B+ -Andrew Hernandez,Male,9222,1937-01-25,AB- -Anthony Fernandez,Male,9223,1956-03-27,A+ -Cameron Gonzalez,Female,9224,2000-05-19,A+ -Bradley Stewart,Female,9225,1981-08-31,A+ -John James,Male,9226,1999-07-28,AB+ -Justin Johnson,Female,9227,1953-01-18,AB+ -Paige Jackson,Male,9228,1981-07-19,B+ -Shelby Kim,Female,9229,1999-04-12,A- -Arthur Ross,Female,9230,1969-06-24,A+ -Angelica Dudley,Female,9232,1962-05-07,A- -Nathan Lee,Male,9233,1932-11-02,O- -Margaret Lara,Male,9234,1957-06-12,A+ -Carlos Phillips,Male,9235,1959-12-07,O+ -Brian Moore,Female,9236,1998-08-20,A+ -Justin Alexander,Male,9237,1950-05-11,B+ -Tracy Walton,Female,9238,1934-03-29,AB+ -Courtney Morris,Female,9239,2000-06-01,AB+ -Marcus Smith,Male,9240,1943-11-14,O+ -Beth Fuentes,Female,9241,1992-08-23,O+ -Tim Chandler,Male,9242,1991-10-15,B- -Zachary Cantrell,Male,9243,1985-09-10,O- -David Elliott,Female,9244,1939-05-01,O- -Dr. John Fischer,Female,9245,1931-10-02,B+ -Melissa Atkins,Female,9246,1930-06-22,B+ -Sandra Compton,Male,9247,1945-07-07,B+ -Justin Kemp,Female,9248,1941-12-03,B+ -Cesar Obrien,Female,9249,1985-09-12,B+ -Sarah Hernandez MD,Male,9250,1998-09-13,B+ -Christina Miller,Female,9251,1998-09-19,O- -Daniel Kennedy,Male,9252,1957-09-05,AB- -Tara Knight,Male,9253,1937-11-26,AB+ -William Park,Male,9254,1935-12-05,O- -Jonathan Rich,Female,9256,2002-07-27,B+ -Brian Hernandez,Female,9257,1940-10-20,B- -Brandi Goodman,Female,9258,1989-03-11,B- -Mr. Michael Hernandez,Female,9259,1958-06-24,O- -Kevin Hall,Female,9260,1951-03-18,O+ -Ryan Wright,Female,9261,1962-10-15,B- -Joshua Villa,Male,9262,1981-12-13,A- -David Carlson,Female,9263,1951-03-26,O+ -Danny Parrish,Female,9264,1972-09-13,A- -Jeanne Davis,Female,9266,1988-05-14,AB+ -John Potter,Male,9267,1986-01-07,AB- -Nicole Smith,Male,9268,1944-03-13,B- -Carl Stone,Male,9269,1932-12-29,O+ -Ashley Moore,Female,9270,1940-08-16,B+ -Troy Alexander,Female,9271,1959-04-05,A- -Michael Ruiz,Female,9272,1992-10-25,O- -Jacqueline Cook,Female,9273,1959-06-29,A- -James Williams,Male,9274,1959-03-30,A- -Steven Wilson,Male,9275,1937-08-17,AB+ -Ian Brooks,Male,9276,1991-06-19,A+ -Christopher Wade,Male,9277,1970-07-09,A+ -Mrs. Sandra Wood,Male,9278,1974-07-29,O- -Justin Mitchell,Female,9279,1947-11-27,AB+ -Kathryn Hughes,Female,9280,1979-03-03,AB+ -April Smith,Male,9281,1973-11-07,B+ -Ashley Huff,Female,9282,1990-05-26,AB+ -John Mcconnell,Male,9283,1970-05-01,AB+ -Christian Adams,Male,9284,1958-12-05,A+ -James Huffman,Male,9285,1952-01-26,O+ -Daniel Johnson,Male,9286,1940-12-04,AB+ -Crystal Moody,Male,9287,1989-02-14,O+ -William Moore,Male,9288,1988-02-15,A- -Kim Lewis,Male,9289,2000-04-12,A- -Kelly Sanchez,Female,9290,1978-02-11,AB+ -Robert Acosta,Male,9291,1982-03-22,B- -Tabitha Sanders,Female,9292,1941-03-19,AB- -Timothy Garcia,Male,9293,1969-11-01,B- -Jason Bailey,Male,9294,1979-12-29,A- -Edward Forbes,Female,9295,1996-02-16,AB- -Keith Nguyen,Male,9296,1984-03-08,B- -Samantha Gonzalez,Female,9297,1957-04-28,AB+ -Jesus Davis,Male,9298,1985-08-16,O+ -Steven Wolfe,Female,9299,2001-09-08,AB- -William Fry,Female,9300,1997-06-02,A+ -Eric Watson,Male,9301,1944-10-22,O- -Jeffery Williams,Male,9302,1985-06-06,AB- -Ashley Adams,Female,9303,1968-02-28,AB- -Sarah Weeks,Female,9305,1995-02-19,A+ -Terry Keller,Female,9306,1937-10-04,AB+ -Todd Ross,Male,9307,1944-06-21,B- -Kristy Valencia,Female,9308,1956-04-03,B- -Albert Marquez,Male,9309,1970-04-09,A- -Lindsay Robertson,Female,9310,1968-08-25,O+ -Laura Le,Male,9311,1950-12-07,AB+ -Caroline Lopez,Female,9312,1962-11-27,A+ -Deborah Casey,Male,9313,1999-07-25,AB+ -Scott Graves,Female,9314,1959-10-25,AB+ -Cory Benson,Female,9315,1943-01-30,B- -David Hart,Male,9316,1973-10-16,A+ -Tammy Arias,Female,9317,1937-06-28,B+ -Madison Aguilar,Female,9318,1967-04-08,O- -Jacqueline Gonzalez,Female,9320,1997-07-05,AB- -Brandon Moore,Male,9321,1997-07-10,B- -Jeffrey Hodges,Male,9323,1947-06-09,A+ -Thomas Jensen,Male,9324,2002-12-08,O+ -Julie Lee,Female,9325,1977-02-08,AB- -Charles Lewis,Male,9326,1995-06-18,AB- -Erin Mcgee,Female,9327,1930-06-12,B+ -Scott James,Female,9329,1951-04-18,B+ -Alejandro Pratt,Female,9330,1970-08-28,B- -Emily Jacobson,Male,9331,1980-02-24,A- -Katie Saunders,Female,9332,1939-09-06,O+ -Tyler Aguilar,Female,9333,1991-03-02,B- -Cynthia Warren,Male,9334,1984-04-17,AB+ -Gloria Kelly,Female,9335,1966-09-12,A- -Matthew Guzman,Female,9336,1969-09-29,A+ -Edward Miller,Female,9337,1982-07-01,B+ -Jose Finley,Female,9338,1982-04-09,O+ -William Vincent,Male,9339,1951-10-17,AB- -Larry Hall,Male,9340,1940-10-08,B- -Cynthia Bradley,Male,9341,1939-04-09,B+ -Mr. Aaron Boone,Male,9342,1993-01-10,AB- -Clayton Garcia,Female,9343,1932-07-11,O+ -Francisco Stephens,Male,9344,1997-01-02,B+ -Juan Hill,Female,9345,1958-05-21,B+ -James Barrett,Female,9346,1967-08-12,AB- -Michael Sparks,Female,9347,2001-08-14,B- -Anthony Mack,Female,9348,1931-07-19,A- -Destiny Cook,Male,9349,1983-10-12,B- -Russell Anthony,Male,9350,1959-07-17,O- -Kara Hatfield,Female,9351,1936-11-05,B+ -Juan Murphy,Male,9352,1987-05-12,AB- -Elizabeth Mercer,Male,9353,1999-12-28,O- -Sherry Nguyen,Female,9354,1948-11-03,A- -Phillip Smith,Female,9355,1939-12-16,O- -Kristina Brown,Female,9356,1991-05-15,AB- -Derek Munoz,Female,9357,1930-08-12,O+ -Jane Wilson,Female,9358,1947-03-30,AB+ -Diana Evans,Female,9359,1970-10-13,A- -Anthony Thompson,Female,9360,1930-12-17,B- -Lisa Williams,Female,9361,1994-11-19,A+ -Leslie Washington,Female,9362,1980-02-20,A- -Jamie Jones,Female,9363,1996-01-22,O- -Mary Bailey,Male,9364,1998-03-29,O+ -Jared Santos,Female,9365,1942-12-16,AB- -Matthew Reid,Female,9366,1932-10-14,O+ -Ronald Mills,Female,9367,1980-12-14,O+ -Colton Leblanc DDS,Male,9369,1994-08-03,AB- -Charles Stout,Male,9371,1971-09-12,A+ -Matthew Hansen,Female,9372,1949-08-19,AB- -Chad Baker,Male,9373,1966-06-04,A+ -Daniel Williams,Male,9374,1946-12-30,AB- -Hannah Sawyer,Female,9375,1963-09-21,O- -Brian Pollard,Female,9376,1936-08-16,A+ -Megan Davis,Female,9377,1947-02-01,O- -Dawn Harrison,Female,9378,1935-03-09,A- -Joshua Ramos,Male,9380,1967-08-28,A+ -Susan Martinez,Male,9381,1944-07-28,A+ -Abigail Wilson,Male,9382,1960-10-02,AB- -Brian Thomas,Male,9383,2002-12-13,A+ -Teresa Buchanan,Male,9384,1995-12-28,O- -Jason Davidson,Female,9385,1993-09-09,B+ -Natalie Davis,Female,9386,1977-12-09,A- -Erik Taylor,Female,9387,1938-07-15,B+ -Janice Torres MD,Male,9388,1941-05-24,AB- -Shane Singleton,Male,9389,1972-07-02,B- -Laura West,Female,9390,1941-01-25,A- -Sabrina Berry,Female,9391,1942-02-20,B+ -Kaitlyn Jimenez,Female,9392,1968-05-17,A- -Alan Warren,Male,9393,1998-07-05,B+ -Robert Faulkner,Female,9394,1937-04-12,O- -Bruce Perez,Female,9395,1959-11-15,B+ -Robert Edwards,Male,9396,1984-05-24,A- -Amber Adams,Female,9397,1938-01-23,B- -Sean Cobb,Male,9398,1949-09-28,O+ -Jesse Huerta,Male,9399,1995-10-24,AB- -Janice Blair,Female,9400,1954-01-22,O+ -Theresa Gross,Male,9401,1935-06-10,AB- -Frank Dickson,Female,9402,1959-12-17,A- -Dustin Mullins,Female,9403,1977-10-19,AB- -Victor Paul,Male,9404,1963-04-19,B+ -Danny Nichols,Male,9405,1986-08-24,O- -Anna Golden,Male,9406,1938-03-27,B- -Deanna Gonzales,Male,9407,1932-08-27,AB- -Steven Ward,Female,9408,1954-01-07,B- -Austin Johnson,Male,9409,1937-09-25,AB- -Jennifer Gibson,Male,9411,1933-04-26,B- -Nicholas Miller,Male,9412,1930-08-18,O+ -Joseph Morales,Female,9414,1986-08-03,O- -Erin Norris,Male,9415,1973-03-10,AB- -Jared Mitchell,Female,9416,1969-04-11,AB+ -James Jones,Female,9417,1938-09-21,B- -Jacob Welch,Female,9418,1971-02-06,B- -Elizabeth Morgan,Female,9419,1976-03-25,B+ -Carrie Lowe,Male,9420,1930-02-18,AB+ -Mary Stuart,Male,9422,1984-08-15,O- -Christopher Ho,Female,9423,1971-07-18,B- -Matthew Jacobs,Female,9424,1983-03-23,O- -Jose Alvarez,Male,9425,1999-03-04,B- -Melinda Miller,Male,9426,1975-12-01,A- -Steven Hebert,Male,9427,1932-08-27,A+ -Samantha Woodard,Female,9429,2000-01-15,A- -Anna Nelson,Male,9430,1969-11-05,B- -Heidi White,Female,9431,1945-12-08,A+ -Charles Fleming,Male,9432,1969-02-17,AB- -Margaret Potter,Male,9433,1938-05-11,O- -Mason Collins,Female,9435,1961-10-14,B- -Kristine Crane,Male,9436,1995-02-10,B+ -Ryan Salazar,Male,9437,1936-04-21,O+ -Mrs. Ashley Pearson DDS,Female,9438,1936-04-02,B+ -Noah Jordan,Male,9439,1972-02-15,O+ -Mark Gardner,Male,9440,1956-10-30,AB+ -Amanda Daniels,Male,9441,1972-10-07,O+ -David Lewis,Male,9442,1986-10-24,A+ -Andrea Hardin,Male,9443,1930-05-03,O+ -Tammy Ware,Female,9444,1993-06-22,O+ -Jose Mendoza,Male,9445,1955-12-08,O+ -Douglas Moore,Male,9446,1940-03-16,B- -Cody Chang,Female,9447,1967-08-07,AB+ -Richard Soto,Female,9448,1997-12-29,O- -Sean Clayton,Female,9449,1999-11-18,AB+ -Mark Robinson,Male,9450,1943-07-30,B+ -Joanne Alvarez,Male,9451,1931-06-09,A+ -Robert Mack,Male,9452,1954-11-10,B- -Don Zamora,Male,9453,1952-12-30,AB- -Robert Bean,Female,9454,1975-04-07,B- -Mr. Jeremy Clark,Male,9455,1996-10-06,A- -Jennifer Gomez,Female,9456,1976-01-21,O+ -Sean Ross,Female,9457,1958-06-17,B+ -Andrew Fisher,Female,9458,1940-04-07,O+ -Samuel Higgins,Female,9459,1961-01-31,A+ -Gina Clark,Male,9460,1968-05-10,AB- -Kelly Burch,Female,9461,1997-04-09,B+ -Tina Townsend,Female,9462,1987-01-19,A- -Brenda Miller,Female,9463,1961-04-25,B- -Jason Jackson,Female,9464,1944-08-11,AB- -Wendy Turner,Male,9465,1942-06-18,O- -Bryan Randolph,Female,9466,1937-09-24,AB+ -Stephanie Golden,Female,9467,1990-07-17,B- -Kathryn Lin,Female,9468,1965-05-13,AB- -David Green,Male,9469,1971-07-12,O- -Cynthia Carr,Female,9470,1953-10-04,O- -Melody Cook,Male,9471,1970-09-16,A- -George Tate,Female,9472,1952-12-22,A- -Catherine Fowler,Male,9473,1964-08-28,AB+ -Larry Massey,Female,9474,1980-04-14,O- -Jamie Rodriguez,Male,9475,1994-01-05,B+ -Kayla Moore,Male,9476,1956-06-16,A+ -Mrs. Sophia Wilson,Male,9477,1936-04-30,O- -Dr. Robert Rogers,Male,9479,1949-10-13,AB- -Diane Richardson,Male,9481,1961-08-31,A- -Melissa Day,Male,9483,1958-02-13,A+ -Eric Hill,Male,9484,2001-06-14,B+ -Amanda Mendoza,Male,9485,1967-02-16,A- -Richard Simpson,Male,9486,1976-07-06,B+ -Jason Perkins,Female,9487,1997-03-29,A- -Scott Romero,Male,9488,1973-09-17,A- -Ryan Mckay,Male,9489,1945-11-03,O- -Dennis Horton,Female,9490,2001-03-02,O+ -Tara Miller,Female,9491,1987-06-12,O- -Dr. Diane Barron,Male,9492,1996-02-07,A- -Linda Cabrera,Female,9493,1963-01-15,A+ -Alicia Rios,Male,9494,1995-06-25,O- -Jared Green,Male,9495,1953-12-06,A- -Amy Hall,Male,9496,1967-05-20,A- -Glen Rowe,Male,9497,1977-02-25,O- -Joseph Hernandez,Male,9498,1940-06-12,O- -Tammy Adams,Female,9499,1977-03-06,A+ -Sandra Chavez,Male,9500,1942-11-23,B+ -John Jones,Female,9501,1942-05-05,O- -Mr. Matthew Moore,Female,9502,1948-01-02,AB+ -Charles Bowen,Male,9503,1943-01-26,AB- -Jorge Hale,Male,9504,1964-01-29,AB+ -Amy Pierce,Male,9505,1987-02-03,A+ -Corey Reyes,Male,9506,1958-08-26,O+ -Steven Walters,Male,9508,1973-06-08,AB+ -Matthew Williamson,Male,9509,1989-01-27,B+ -Justin Allen,Female,9510,1939-02-03,A- -Darrell Johnson,Male,9511,1959-06-08,AB- -Alexandra Jones,Male,9512,1942-11-12,B- -Brandon Gaines,Female,9513,1986-08-30,AB- -Rhonda Allen,Female,9514,2002-10-02,AB+ -Janice Wilson,Male,9515,1984-11-30,B- -Thomas Holmes,Male,9516,1979-02-21,A+ -Lauren Wilson,Female,9517,1979-11-24,B+ -Heather Glenn,Male,9518,1946-08-03,AB- -Brian Hughes,Male,9519,1994-05-20,O+ -Kara Mcbride,Male,9520,1931-12-28,B- -Zoe Moore,Male,9521,2000-09-10,B- -Emily Fields,Female,9522,1948-05-03,AB- -Steven Castillo,Female,9523,1962-08-11,AB+ -Andrew Bradford,Male,9524,1955-05-07,B- -Charles Smith,Male,9525,1965-06-29,A+ -Tyler Ramirez,Female,9526,1975-08-19,AB- -Eric Mills,Female,9527,1932-12-17,A+ -Jennifer Diaz,Female,9528,1985-06-30,AB- -Jennifer Merritt,Female,9529,1982-09-30,A+ -Ashley Reyes,Female,9530,1959-07-04,AB+ -Bradley Johnson,Female,9531,1968-11-13,AB- -Kenneth Guerrero,Female,9532,1982-12-28,B+ -Cheryl Watts,Male,9533,1955-08-02,A- -Paul Tapia,Male,9534,1973-09-10,O+ -Justin Wells,Female,9535,1993-12-25,AB+ -Charles Hernandez,Male,9536,1962-01-02,A+ -Mr. Thomas Sanchez,Female,9537,1977-06-14,B+ -Jeffrey Cox,Male,9538,1943-01-13,AB- -Dr. Victoria Brown,Male,9540,2001-12-27,AB+ -Brandon Thompson,Female,9542,1966-10-15,A+ -Joshua Pratt,Female,9543,1930-03-08,O- -William Everett,Male,9544,1999-01-11,O- -Ashley Nichols,Male,9545,1998-02-22,B- -Robert King,Female,9546,1931-07-19,O+ -Shawn Mitchell,Female,9547,2001-09-02,O- -Matthew Brooks,Male,9548,1999-07-19,A- -Emily Mullins,Male,9549,1966-09-02,A+ -Mitchell Hooper,Male,9550,1940-01-19,AB+ -David Terry,Male,9551,2000-02-04,AB- -Allison Stanley,Female,9552,1936-03-01,AB+ -Justin Price,Female,9553,1965-06-15,B- -Candace Ward,Female,9554,1932-03-15,B+ -Chelsea Gray,Female,9555,1987-07-16,AB+ -Taylor Schmitt,Male,9556,1956-03-28,O- -Bobby Powers,Male,9557,1978-03-29,AB+ -Cynthia Johnson,Female,9558,1993-04-04,O- -Peter Reed,Female,9559,1963-06-21,O- -Carol Howard MD,Male,9560,1993-10-07,O+ -Katherine Cherry,Male,9561,1946-06-22,B- -Amanda Leon,Male,9562,1965-09-10,A- -Richard Green,Female,9564,1984-07-29,A- -Michael Peters,Male,9565,1963-12-06,A+ -Louis Ross,Male,9566,1951-09-26,A- -Kyle Brown,Male,9568,1941-05-04,O- -Nicholas Hoffman,Male,9569,1993-12-06,AB- -Debra Turner,Male,9570,1956-02-20,B- -Micheal Newman,Female,9573,1944-08-10,A+ -Amy Quinn,Female,9574,1943-11-26,A- -Kristy Clark,Female,9575,1966-04-09,A- -Robin Roth,Female,9576,1945-05-13,AB- -Daniel Hartman,Female,9577,2002-04-25,AB+ -David Andrews DVM,Male,9578,1952-02-24,B- -Alexandra Lopez,Female,9579,1937-12-02,AB- -Jesse Guerrero,Female,9580,1945-04-09,A- -Tiffany Murray,Male,9581,1984-10-06,B- -Justin Phillips,Female,9582,1979-02-16,B- -John Zimmerman,Male,9583,1948-04-19,A- -Tanner Johnson,Male,9584,1934-02-16,AB+ -Mark Nolan,Female,9585,1974-09-22,AB+ -Marie Wilson,Female,9586,1935-08-26,A- -Dawn Benson,Female,9587,1984-10-30,B- -Michael Watkins,Female,9588,1935-06-24,AB- -Heidi Hawkins,Female,9589,1972-08-14,O+ -Matthew Pacheco,Female,9591,1933-07-18,O- -Tiffany Hernandez,Male,9592,1971-05-02,AB+ -Denise Clark,Female,9593,1941-02-17,A- -Daniel Mason,Female,9595,1968-07-30,B+ -James Richard,Female,9596,1996-10-19,O+ -Chelsea Huff,Male,9597,2002-02-01,AB+ -Jeffery Norman,Male,9598,1979-04-01,B+ -Nicholas Bowman,Female,9599,1978-06-24,B- -Joshua Horton,Female,9600,1991-03-02,A- -Madison Gentry,Female,9601,1981-07-17,O+ -Joel Lawson,Female,9602,1977-11-12,A- -Gabriel Pierce MD,Female,9603,1988-09-30,AB- -Nancy Scott,Male,9604,2001-05-29,AB- -Arthur Lara,Male,9605,1955-07-07,A+ -Carol Duncan,Male,9608,1953-03-29,O- -Charles Harvey,Male,9609,1960-10-11,O- -Gabriella Ware,Female,9610,1958-07-10,AB+ -Patrick Camacho,Male,9612,1972-08-22,O- -Allen Nelson,Female,9613,1971-11-24,A- -Russell Davis,Female,9614,1970-02-10,A- -Jack Hancock,Female,9615,1966-07-21,A+ -Hunter Sandoval,Male,9616,1985-03-24,B+ -Larry Luna,Male,9617,1935-09-28,AB- -Bruce Morales,Male,9618,1962-04-24,B+ -Mark Clark,Female,9619,1980-11-26,B+ -Joseph Garner,Male,9620,1991-04-03,O+ -Mary Pacheco,Female,9621,1975-05-04,O+ -Douglas Perez,Male,9622,1949-08-18,AB- -Dennis Brown,Female,9624,1966-05-20,B- -Rodney Perez,Female,9625,1991-04-29,AB- -Eric Robertson Jr.,Female,9626,1959-04-13,O+ -Jennifer James,Male,9627,1963-05-19,B+ -Erik Lucas,Female,9628,1979-06-04,AB+ -Benjamin Miller,Male,9629,1959-05-26,A+ -Patrick Cook,Male,9630,1999-02-19,B+ -Jill Eaton,Male,9633,1979-11-07,AB- -Erik Miranda,Male,9634,1944-02-04,B- -Michelle Erickson,Male,9635,1978-07-28,B+ -Amy May,Male,9636,1983-04-09,AB+ -Jennifer Delacruz,Male,9637,1983-10-13,AB- -Edgar Mitchell,Female,9638,1946-12-22,AB+ -Cody Moran,Female,9639,1931-07-01,B+ -Amy Weaver,Female,9641,1944-04-28,AB- -Amanda Pratt,Male,9642,1951-10-23,AB+ -Ms. Jessica Carney PhD,Female,9643,1980-07-24,A- -Jasmine Forbes,Female,9644,1935-08-03,O- -Anthony Ward,Female,9645,1987-04-10,AB+ -David Moore,Male,9647,1934-10-19,A- -James Irwin,Female,9648,2001-09-16,B+ -Catherine Kline,Female,9649,1935-01-24,O- -Michael Knight,Female,9650,1937-03-27,O+ -Jeffrey Maxwell,Male,9651,1934-05-20,O- -Martin Miller,Female,9652,1968-03-13,AB+ -Nathan Gray,Female,9653,1986-11-29,A+ -Jennifer Morales,Male,9654,1962-04-20,A+ -Mark Patterson,Male,9655,1985-04-05,O+ -Maria Johnson,Male,9656,1976-07-20,AB+ -Shane Colon,Female,9657,1933-02-06,O- -Patricia Murray,Male,9658,1945-01-13,A+ -Alison Cline,Female,9659,1945-11-13,AB- -Vickie Rubio,Female,9660,1958-11-01,B- -George Smith,Female,9661,1959-12-06,AB+ -Lisa Henderson,Female,9662,1950-11-25,A- -Denise Zavala,Female,9663,1978-12-06,A- -Joshua Moran,Female,9664,1996-05-06,AB- -Jack Anderson,Female,9665,1943-09-19,AB- -Michael Shelton,Male,9666,2001-07-20,AB+ -Yesenia Marks,Female,9667,1935-10-15,B- -Deborah Valentine,Male,9668,1932-11-10,A+ -Jennifer Hartman,Female,9669,1968-02-14,B- -Lisa Frey,Male,9670,1936-08-28,O+ -Carl Torres,Male,9671,1996-09-14,O- -Michelle Zuniga,Female,9672,1968-02-17,O- -Brandon Lopez,Female,9673,1934-05-02,AB- -Andrew Turner,Female,9674,1969-05-10,A+ -Erika Kidd,Female,9675,1933-08-01,B- -Emily Owens,Male,9676,1988-04-27,AB- -Melinda Martinez,Male,9677,1954-01-28,AB+ -Tammy Walker,Female,9678,1934-06-09,AB- -Belinda Stevens,Female,9679,1995-05-27,AB+ -Cheryl Simpson,Male,9680,1943-01-19,AB+ -Tina Haynes,Female,9681,1989-07-16,O+ -Kendra Romero,Male,9682,1944-03-20,O+ -Kaitlyn Griffin,Male,9683,1948-02-18,AB+ -Teresa Davis,Female,9684,1946-09-07,B+ -Karen Henry,Female,9685,1993-03-19,A+ -Traci Melendez,Male,9686,1975-02-18,O+ -Dan Potter,Male,9687,1993-01-31,O+ -Christopher Church,Male,9688,1990-12-11,O- -Megan Phillips,Female,9689,1986-07-21,AB- -Dawn Hernandez,Female,9690,1930-08-26,O- -Miguel Weaver,Male,9691,1994-08-23,A+ -Robert Newton,Male,9692,1996-11-06,O+ -Matthew Dougherty,Female,9693,1989-02-22,A- -Wanda Rivera,Male,9694,1985-11-17,B+ -Lindsey Cross,Female,9695,1960-06-02,O+ -Michelle Peterson,Male,9696,1946-08-18,B- -Jessica Ibarra,Male,9697,1936-12-17,A+ -Lindsey James,Male,9698,1971-11-04,A- -Eric Taylor,Female,9700,1957-11-30,AB- -Hannah Marshall,Male,9701,1934-03-18,AB- -Lauren Delacruz,Male,9703,1976-12-03,A- -Erin Sullivan,Male,9704,1961-08-26,AB- -Kristina Lane,Female,9705,1966-10-13,B+ -Mrs. Christina Hodges MD,Female,9706,1950-04-02,A- -Jillian Price,Female,9707,1996-04-11,A+ -Jessica Gentry,Male,9708,1989-12-08,A- -Lindsay Lin,Female,9709,1986-06-15,A- -Alyssa Hernandez,Male,9710,1976-05-03,B- -Michael Davis,Male,9711,1989-12-11,B- -Rhonda Adams,Female,9712,1998-01-09,O- -Linda Monroe,Female,9713,1996-07-23,A+ -Amanda Stewart,Female,9714,1944-01-19,A+ -Eric Garrison,Female,9715,1953-10-24,B- -Scott Randall,Female,9716,1977-12-13,AB+ -Matthew Hart,Female,9717,1958-02-14,AB+ -Charles Hall,Female,9718,1938-08-12,O- -Sylvia Hill,Male,9719,1965-11-13,B+ -Kristi Jones,Male,9720,1998-04-11,AB+ -Angela Thomas,Male,9721,1985-01-16,AB+ -Brandy Maynard,Male,9722,2001-04-10,AB+ -Erica Rhodes,Female,9723,1941-02-19,B+ -Justin Martinez,Female,9724,1941-06-27,O+ -Jeffrey Scott,Male,9725,2001-11-21,O- -Katherine Jimenez,Male,9726,1955-04-24,B- -Jesse Gonzalez,Male,9727,1949-12-08,AB+ -Jonathan Moore,Male,9728,1936-11-14,AB- -Stephanie Hart,Female,9729,1988-08-04,A- -Stephanie Wallace,Female,9730,1972-06-11,O+ -Daniel Travis,Female,9731,1947-11-21,B+ -Michelle James,Male,9732,1987-10-20,B+ -Roberto Archer,Female,9733,1976-09-21,B+ -Michael Lara,Male,9734,1970-03-02,AB+ -Stephanie Garza MD,Male,9736,1940-10-07,A- -Jenny Watson,Male,9737,1969-12-17,A- -Kirk Martin,Male,9738,1965-09-15,O+ -Veronica Taylor,Male,9739,1945-03-23,O- -Laura Stokes,Female,9740,1940-12-30,B+ -Anthony Johnson,Female,9741,1994-12-14,AB- -Debra Hall,Male,9742,1931-12-21,AB- -Julie Williams,Female,9743,1930-03-16,AB- -Catherine Garrett,Male,9744,2000-10-29,B+ -Priscilla Farrell,Male,9745,2002-07-20,AB+ -Jerry Gibson,Female,9746,1986-03-29,O+ -William Smith DVM,Male,9747,1966-01-13,B+ -Charles Davidson,Female,9749,1998-02-28,AB- -Stephanie Landry,Male,9750,1935-11-20,A- -Jerry Reyes,Male,9751,2001-04-06,B+ -Megan Alexander,Male,9752,1968-06-03,A- -Jamie Dyer,Male,9753,2001-07-18,A+ -Jeffrey Gregory,Female,9754,1993-03-28,B+ -Kaylee Macdonald,Male,9755,1941-07-09,A+ -Ashley Rivera,Female,9756,1994-05-30,O+ -Regina Rios,Female,9757,1998-07-19,B+ -Audrey Park,Female,9758,1971-03-10,AB+ -Dalton Cooley,Female,9759,1954-11-09,AB+ -William Franco,Female,9760,1962-02-07,O- -Stacey Perez,Male,9761,1940-10-11,O- -William Valencia,Male,9762,1955-06-26,AB- -Jasmine Brooks,Male,9763,1977-10-20,B- -Mark Shaw,Female,9765,1985-06-21,A- -Dylan Hawkins,Female,9766,1942-08-21,O- -Tasha Valentine,Female,9767,1949-11-22,AB+ -Steven Ramirez,Female,9768,1992-04-28,A- -James Gutierrez,Male,9769,1957-09-12,B- -Jay Whitehead,Male,9770,1973-01-28,O- -Crystal Maxwell,Male,9771,1968-01-14,O+ -Anna Mccarthy,Female,9772,1999-10-28,A+ -Shawn Rodriguez,Male,9773,1942-09-27,O- -Susan Adams,Female,9774,1993-06-15,B+ -John Hall,Female,9775,1958-09-04,O- -Alexa Jensen,Male,9776,1955-04-27,B+ -Hayden Lopez,Female,9777,1995-04-10,O+ -David Hurley,Male,9778,1987-08-28,AB+ -Sara Burns,Female,9779,1976-05-04,AB- -Samantha Mcguire,Female,9780,1935-12-02,O+ -James Cole,Female,9781,1981-01-08,AB- -Jorge Chavez,Male,9782,2000-03-02,O- -Danielle Steele,Male,9783,1987-05-15,AB+ -Jerry Williams,Male,9784,1982-05-16,B- -Collin Ballard,Female,9785,1969-12-10,O- -Tracy Garza,Male,9786,1963-01-09,O+ -Theresa Fletcher,Female,9787,1946-07-17,B- -Nicole Foster,Male,9788,1964-09-12,A+ -Lorraine Scott,Male,9789,1987-08-29,B- -Ian Miranda,Male,9790,1934-04-10,O+ -Lauren Beard,Female,9792,1962-09-24,A- -Brett Stark,Male,9793,1978-01-17,B- -Jessica Warner MD,Male,9794,1971-04-14,O+ -Jeremy Nelson,Female,9796,1944-11-02,A- -Laura Perez,Female,9797,1937-06-15,O- -Mrs. Kimberly Weber,Female,9798,1958-11-20,A- -Eric Parks,Female,9799,1976-02-23,AB+ -Jonathan Anderson,Male,9800,2001-03-01,A+ -Stephanie Thompson,Male,9801,1934-01-08,A- -Stacey Hernandez,Female,9802,1996-07-22,AB+ -Lisa Wagner,Male,9803,1932-03-19,AB+ -George Barnes,Male,9805,1997-10-03,AB+ -Natalie Strong,Female,9807,1948-05-25,A- -Angel Scott,Male,9808,1974-10-20,O+ -David Cole,Female,9809,1958-12-31,B+ -Thomas Underwood,Female,9810,1943-11-22,O+ -Justin Williams,Female,9811,1951-12-09,A+ -Brian Daniel,Female,9812,1979-05-13,O+ -Janet Daniel,Male,9813,1968-01-14,AB- -Darrell Valenzuela,Female,9814,1952-08-02,O+ -Daniel Lewis,Male,9815,1977-12-13,O+ -Chelsea Moore,Male,9816,1971-06-22,O+ -Samantha Stephens,Male,9817,1978-07-25,O- -Jerry Brown,Male,9818,1932-02-07,A+ -Ronald Miller,Female,9819,1940-08-31,AB- -Lori Finley,Male,9820,1999-02-26,O+ -Nina Delacruz,Male,9821,1984-04-25,B+ -Bethany Murphy,Female,9822,1957-12-05,A+ -Micheal Gardner,Female,9823,1950-01-25,B- -Carrie Brown,Female,9825,1971-12-24,O- -Dillon Barton,Male,9826,1970-01-12,A- -Nancy Walker,Male,9827,1961-01-12,B+ -Robert Olsen,Female,9828,1979-10-05,O+ -Adam Miller,Male,9829,2001-05-01,B+ -John Chen,Female,9830,1932-06-04,AB- -Benjamin Garcia,Male,9831,1951-03-06,O- -Paul Morgan,Male,9832,1940-09-11,AB- -Antonio Smith,Male,9833,1942-04-20,A- -Marc White,Female,9834,1956-08-22,A- -Amber Irwin,Female,9835,1935-09-05,B+ -Kayla Hickman,Female,9836,1975-09-18,O- -Tammy Rodriguez,Female,9837,1947-03-02,B- -Pamela Mcclure,Female,9838,1989-06-01,B+ -Christine Atkinson,Female,9839,1977-01-28,A+ -Jason Shepard,Male,9840,1948-09-24,O- -Randy Terrell,Female,9841,1959-12-30,AB+ -Stephanie Summers,Female,9842,1935-07-26,A- -Tracy Harrison,Male,9843,1956-07-22,B- -Cynthia Moore,Male,9845,1964-11-15,B+ -Kimberly Rivas,Female,9846,1959-06-20,A- -Kayla Nelson,Male,9847,2002-06-22,AB+ -Christine Raymond,Female,9848,1949-07-09,B- -Jennifer Davis,Female,9849,1982-04-07,A- -Nathaniel Pearson,Male,9850,1954-01-23,AB+ -Jason Allen,Female,9851,1935-11-18,AB+ -Edwin Moore,Male,9852,1931-09-08,A- -James Vang,Female,9854,1932-08-05,B+ -Kimberly Ross,Male,9856,1945-07-18,A- -Shelly Evans,Female,9857,1987-08-05,AB- -Ashley Gray,Female,9858,1951-07-16,O- -Tammy Franco,Male,9859,1935-07-07,O- -Edward Lopez,Female,9860,1984-12-24,B- -Sydney Olson,Male,9861,1976-03-14,A+ -Christopher Tucker,Male,9862,1986-10-08,A- -Laura Nunez,Female,9863,1981-07-04,B+ -Melissa Rojas,Female,9864,1943-08-28,AB- -Casey Shaw,Male,9865,1953-11-29,O- -James Fowler,Female,9866,1955-12-15,O- -Dr. Michael Mann,Female,9867,1956-11-25,B+ -Christy Moran,Female,9868,1988-04-30,AB- -Brandon Lee,Female,9869,1938-01-05,O+ -Raymond Roth,Male,9870,2000-12-27,AB- -Olivia Wright,Female,9872,1949-12-09,B+ -Chad Nguyen,Male,9873,1972-10-22,O- -Anthony Crawford,Male,9874,1973-05-22,A+ -Mr. Terry Herrera,Male,9875,1986-11-03,O+ -Teresa Kaiser,Female,9876,1955-12-26,B+ -Audrey Horne,Male,9879,1988-03-09,B+ -Brenda Maynard,Male,9880,1949-02-16,AB+ -Ethan Craig,Female,9881,1948-10-15,AB- -Jamie Williams,Female,9882,1963-04-17,AB+ -Jamie Daniel,Male,9883,1942-02-10,O+ -Matthew Norris,Female,9884,1958-08-12,O+ -James Ochoa,Female,9886,1993-09-01,O+ -Mark Reeves,Male,9887,1952-05-04,B- -Samantha James,Male,9888,1935-09-05,AB- -Jeremy Rodriguez,Male,9890,1991-10-02,B+ -Kevin Carpenter,Male,9892,1976-10-11,A- -Tyler Williams,Female,9893,1957-09-07,A+ -James Schmidt,Female,9894,1997-01-26,A+ -Joseph Hall,Female,9896,1948-09-08,B+ -Jonathan Collins,Male,9897,1959-03-02,AB+ -Albert Galvan,Male,9898,1964-02-06,B+ -Samuel Garza,Female,9899,1996-05-25,AB+ -Melissa Greer,Female,9901,1986-07-14,A- -Tina Wiley,Female,9902,1951-10-26,AB+ -Arthur Murphy,Male,9903,1997-02-28,AB- -Anthony Warner,Female,9904,1964-04-08,O- -Paul Henry,Female,9905,1969-02-15,AB+ -Jane Rich,Female,9906,1951-04-17,O+ -Douglas Acosta,Female,9907,1953-06-07,AB+ -Michelle Young,Male,9908,1953-11-15,O+ -Jonathan Perry,Male,9909,1943-05-19,B- -Heather Stewart,Female,9910,1985-08-19,O- -Laura Mullen,Female,9912,1942-08-25,O- -Paula Chang,Male,9913,1989-01-26,A- -Jeffrey Soto,Male,9914,1968-03-18,AB- -Samuel Lawson,Male,9915,1958-04-29,B+ -Erin Davis,Male,9916,1948-10-28,AB- -Justin Morales,Male,9917,1957-08-27,A+ -Jenna Harrison,Male,9918,1951-07-06,B- -Jamie Brown,Female,9919,1944-10-15,A- -Benjamin Stone,Male,9920,1938-04-11,AB- -John Randolph,Male,9921,1961-12-19,O+ -John Ramirez,Male,9922,1959-11-17,B- -Todd Evans,Female,9923,1945-09-17,O- -Eric Allen,Male,9925,1971-06-01,B+ -Matthew Willis,Male,9926,1991-03-30,B+ -Megan Walker,Male,9927,1934-11-06,O+ -Amy Tyler,Male,9928,1963-09-10,A- -Mariah Cox,Male,9929,1957-04-18,A- -Earl Christensen,Female,9930,1963-12-18,B- -Jessica Johnson,Male,9931,1954-08-12,O- -Logan Espinoza,Female,9932,1938-10-21,AB- -Angela Wade,Male,9933,1962-10-20,O+ -Cynthia Pena,Female,9934,1948-04-30,O+ -Karen Rodriguez,Male,9935,1983-01-03,O- -Alicia Love MD,Female,9936,1985-02-02,O+ -Yvonne Lopez,Female,9937,2001-12-21,B+ -Christine Murphy,Female,9938,1976-12-01,AB- -Becky Roberts,Female,9939,1959-03-11,AB- -Matthew Jackson,Male,9940,1933-10-24,AB- -Amanda Hall,Female,9941,1948-08-03,O- -Marisa Jennings,Male,9942,1969-05-21,AB+ -Jacqueline Peterson,Male,9943,1976-09-17,AB+ -Victoria Lee,Male,9944,1930-04-16,A- -Benjamin Mcintyre,Female,9945,1961-06-06,A- -Jennifer Russell,Female,9946,1987-11-15,B+ -Jamie Thompson,Male,9947,1935-05-01,O+ -Alec Olson,Female,9948,1945-03-07,AB- -Dustin Garcia,Male,9949,1977-11-09,O+ -Patricia Foley,Male,9950,1966-05-07,O- -Katrina Beck,Male,9951,1949-02-15,O+ -Omar Bailey,Female,9952,1934-11-18,A+ -Thomas Lloyd,Male,9953,1987-04-17,AB+ -David Woods,Male,9954,1983-10-11,O+ -Lindsay Gill,Male,9955,1947-01-05,O+ -Anthony Mathews,Female,9956,2002-10-03,B- -Alicia Peters,Female,9957,1969-08-29,B+ -Samuel Wilkins,Female,9958,1972-09-22,O+ -Oscar Burton,Female,9959,1943-05-02,A+ -Leslie Wood,Female,9960,1979-02-18,AB+ -Joseph Wilson,Female,9961,1985-10-29,B- -Jenny Ho,Male,9962,1957-01-06,B+ -Adrienne Goodman,Male,9963,2000-05-11,O- -Darren Jones,Female,9964,1940-11-25,A- -Dawn Shah MD,Male,9965,1955-12-29,O- -Jane Cole,Male,9966,1945-07-23,AB+ -Alejandro Smith,Male,9967,1945-10-31,A- -Emma Mccann,Female,9968,1977-06-10,O- -Darius Smith,Female,9969,1987-04-26,B+ -Steven Day,Female,9970,1955-01-07,A+ -Gregory Torres,Female,9971,1976-07-02,O+ -Sharon Sanchez,Male,9972,1965-08-17,AB+ -Thomas Weaver,Female,9973,1992-04-25,A- -Nathaniel Hudson,Female,9974,2001-03-02,B- -Brett Frazier,Female,9975,1934-03-05,O+ -Colton Weaver,Female,9976,1985-03-03,O- -James Calhoun,Male,9977,1975-07-18,O- -Melissa Campbell,Female,9978,2001-07-07,B- -Jacob Wade,Female,9979,1930-03-20,A+ -Danielle Salinas,Female,9980,1938-07-21,B+ -Catherine Carrillo,Male,9981,1999-09-29,B+ -Danielle White,Female,9982,1949-05-05,B- -Mark Gross,Male,9983,1965-10-12,AB+ -Erica Crawford,Male,9984,1953-01-17,B- -Amanda Baker,Male,9985,1966-08-02,O- -Richard Mack,Male,9986,1933-04-24,A+ -Bobby Pierce,Female,9987,1944-02-10,A+ -Julie Johnson,Female,9988,1943-05-31,AB- -Amy Lucas,Female,9989,1980-10-27,B- -Tracy Johnson,Male,9990,1959-10-07,AB+ -John Holder,Female,9991,1950-11-02,O- -Jorge Obrien,Male,9994,1960-04-30,O+ -James Hood,Male,9995,1973-03-27,B+ -Stephanie Evans,Female,9996,1999-03-19,B+ -Christopher Martinez,Male,9997,1936-12-19,B+ -Amanda Duke,Male,9998,1945-02-13,A+ -Eric King,Male,9999,1936-06-28,B+ diff --git a/langchain-rag-app/source_code_step_2/data/payers.csv b/langchain-rag-app/source_code_step_2/data/payers.csv deleted file mode 100644 index 104cc0ac0b..0000000000 --- a/langchain-rag-app/source_code_step_2/data/payers.csv +++ /dev/null @@ -1,6 +0,0 @@ -payer_name,payer_id -Medicaid,0 -UnitedHealthcare,1 -Aetna,2 -Cigna,3 -Blue Cross,4 diff --git a/langchain-rag-app/source_code_step_2/data/physicians.csv b/langchain-rag-app/source_code_step_2/data/physicians.csv deleted file mode 100644 index 511760ceb7..0000000000 --- a/langchain-rag-app/source_code_step_2/data/physicians.csv +++ /dev/null @@ -1,501 +0,0 @@ -physician_name,physician_id,physician_dob,physician_grad_year,medical_school,salary -Joseph Johnson,0,1970-02-22,2000-02-22,Johns Hopkins University School of Medicine,309534.15507605654 -Jason Williams,1,1982-12-22,2012-12-22,Mayo Clinic Alix School of Medicine,281114.5035585275 -Jesse Gordon,2,1959-06-03,1989-06-03,David Geffen School of Medicine at UCLA,305845.5846360554 -Heather Smith,3,1965-06-15,1995-06-15,NYU Grossman Medical School,295239.7666886809 -Kayla Hunter DDS,4,1978-10-19,2008-10-19,David Geffen School of Medicine at UCLA,298751.35520122456 -Christopher Jordan,5,1989-11-04,2019-11-04,NYU Grossman Medical School,316681.6994348657 -Elaine Medina,6,1957-12-24,1987-12-24,Baylor College of Medicine,283743.02626834356 -Donna Mcintyre,7,1987-03-12,2017-03-12,Perelman School of Medicine (University of Pennsylvania),319166.7313781032 -Richard Tucker,8,1983-04-02,2013-04-02,Perelman School of Medicine (University of Pennsylvania),347019.2359991686 -Kimberly Oliver,9,1989-06-02,2019-06-02,Stanford University School of Medicine,310293.2724885527 -Christopher Williamson,10,1974-01-22,2004-01-22,"University of California, San Francisco School of Medicine",276537.12944182596 -Cory Campbell,11,1988-11-08,2018-11-08,Stanford University School of Medicine,281549.4596598061 -Cathy Church,12,1951-12-30,1981-12-30,NYU Grossman Medical School,292552.1129764465 -Kristopher Wiley Jr.,13,1951-11-30,1981-11-30,Yale School of Medicine,282153.29108791304 -Denise Chavez,14,1969-09-04,1999-09-04,Columbia University Vagelos College of Physicians and Surgeons,270264.5907116985 -Jason Merritt,15,1989-09-25,2019-09-25,Johns Hopkins University School of Medicine,304632.2183088508 -Jacqueline Mcneil DVM,16,1988-02-14,2018-02-14,Columbia University Vagelos College of Physicians and Surgeons,293364.08004822605 -Veronica Moore,17,1970-04-06,2000-04-06,University of Chicago Pritzker School of Medicine,305691.62650674174 -Steven Watson,18,1961-06-03,1991-06-03,Columbia University Vagelos College of Physicians and Surgeons,335591.62236645864 -Ryan Brown,19,1961-12-09,1991-12-09,Harvard Medical School,292909.4149822692 -Ashley Pena,20,1956-11-07,1986-11-07,Columbia University Vagelos College of Physicians and Surgeons,264437.3998595907 -Erin Grimes,21,1965-01-08,1995-01-08,Stanford University School of Medicine,288033.2252323935 -Kimberly Johnson,22,1972-10-27,2002-10-27,Mayo Clinic Alix School of Medicine,323112.75651349925 -Tyler Lopez,23,1962-04-19,1992-04-19,University of Texas Southwestern Medical School,320303.1081215087 -Karen Clark,24,1980-06-22,2010-06-22,Mayo Clinic Alix School of Medicine,315559.189428407 -Abigail Fuller,25,1970-12-13,2000-12-13,Perelman School of Medicine (University of Pennsylvania),281258.7983051369 -Ryan Vasquez,26,1953-03-13,1983-03-13,University of Texas Southwestern Medical School,322557.07854098093 -Lisa Wilkinson,27,1952-11-28,1982-11-28,University of Michigan Medical School,329306.972341112 -Jason Little,28,1980-08-05,2010-08-05,Johns Hopkins University School of Medicine,279137.3511033007 -Heather Smith,29,1962-12-13,1992-12-13,Johns Hopkins University School of Medicine,298752.89707372425 -Denise Perez,30,1975-08-06,2005-08-06,Harvard Medical School,360612.05891046335 -Joseph Roman,31,1964-08-09,1994-08-09,Yale School of Medicine,277803.7717060984 -Elizabeth Beck,32,1974-06-08,2004-06-08,Stanford University School of Medicine,248847.39992268826 -Deborah Wright,33,1961-11-09,1991-11-09,Perelman School of Medicine (University of Pennsylvania),341487.13303394394 -Renee Hicks,34,1968-08-15,1998-08-15,Baylor College of Medicine,334098.1431511368 -Keith Reed,35,1963-04-09,1993-04-09,University of Chicago Pritzker School of Medicine,286290.98029267724 -Beverly Jordan,36,1968-06-06,1998-06-06,Yale School of Medicine,296610.2465439574 -Ronald Hernandez Jr.,37,1992-01-29,2022-01-29,Johns Hopkins University School of Medicine,263251.94849433145 -Colleen Ward,38,1956-12-14,1986-12-14,Mayo Clinic Alix School of Medicine,302668.5681782911 -Lauren Rojas,39,1969-04-27,1999-04-27,Columbia University Vagelos College of Physicians and Surgeons,334977.411461142 -Logan Diaz,40,1981-07-13,2011-07-13,Columbia University Vagelos College of Physicians and Surgeons,283721.85474725167 -Joshua Jenkins,41,1981-06-20,2011-06-20,University of Michigan Medical School,326313.0593635888 -Joyce Brown,42,1954-03-23,1984-03-23,Perelman School of Medicine (University of Pennsylvania),313911.715721713 -Christina Richards,43,1988-03-26,2018-03-26,Stanford University School of Medicine,317334.50672643416 -Ryan Curry,44,1967-04-15,1997-04-15,Stanford University School of Medicine,285470.72458240896 -Lauren Williams,45,1987-10-21,2017-10-21,"University of California, San Francisco School of Medicine",289361.27451199514 -Nathan Fischer,46,1976-03-25,2006-03-25,NYU Grossman Medical School,244596.82696585794 -Tanya Sharp,47,1973-10-18,2003-10-18,Washington University in St. Louis School of Medicine,282999.91762469686 -Amber Thomas,48,1970-07-09,2000-07-09,Johns Hopkins University School of Medicine,334904.5637409378 -Alan Watkins,49,1961-10-22,1991-10-22,Stanford University School of Medicine,272120.0341769318 -Derek Phillips,50,1953-08-17,1983-08-17,University of Michigan Medical School,276590.95038429287 -Patricia Quinn,51,1958-08-08,1988-08-08,Mayo Clinic Alix School of Medicine,319205.6947112137 -Brian Rivera,52,1954-12-16,1984-12-16,Perelman School of Medicine (University of Pennsylvania),312083.0487597928 -Raymond Berry,53,1968-01-15,1998-01-15,University of Chicago Pritzker School of Medicine,320695.89749388903 -Sabrina Rodriguez,54,1964-07-07,1994-07-07,"University of California, San Francisco School of Medicine",265103.3837972879 -Tonya Warner,55,1992-05-25,2022-05-25,University of Michigan Medical School,376921.7384790104 -Lori Burns,56,1982-01-27,2012-01-27,David Geffen School of Medicine at UCLA,263527.3987749825 -Michael Olson,57,1963-01-01,1993-01-01,Harvard Medical School,304627.41941202205 -Jesse Hall,58,1975-11-01,2005-11-01,University of Chicago Pritzker School of Medicine,295240.3351239424 -Jonathan Lucas,59,1960-02-27,1990-02-27,NYU Grossman Medical School,264400.7544790486 -Jenna Taylor,60,1985-11-29,2015-11-29,David Geffen School of Medicine at UCLA,288893.7173156025 -Denise Murray,61,1976-03-21,2006-03-21,Baylor College of Medicine,300699.2280265761 -Stephanie Vargas,62,1977-10-16,2007-10-16,NYU Grossman Medical School,280500.8036440959 -Gabrielle Pitts,63,1967-11-18,1997-11-18,Columbia University Vagelos College of Physicians and Surgeons,328116.7086460455 -Breanna Cruz,64,1977-11-23,2007-11-23,Harvard Medical School,295151.22763612587 -Dean Hart,65,1990-03-15,2020-03-15,Johns Hopkins University School of Medicine,259761.7598694514 -Kim Gray,66,1951-05-20,1981-05-20,Mayo Clinic Alix School of Medicine,257216.2340199211 -Jonathan Decker,67,1953-04-29,1983-04-29,Harvard Medical School,318184.9527183437 -Scott Barton,68,1954-03-12,1984-03-12,NYU Grossman Medical School,255396.8765189899 -Terry Leon,69,1952-04-03,1982-04-03,Washington University in St. Louis School of Medicine,309492.78219147254 -Gerald Smith,70,1963-10-09,1993-10-09,David Geffen School of Medicine at UCLA,313339.6555700088 -Jennifer Baldwin MD,71,1986-10-07,2016-10-07,Johns Hopkins University School of Medicine,270139.3390822795 -Amy Smith,72,1955-10-07,1985-10-07,University of Texas Southwestern Medical School,326722.14251324674 -Carmen Larsen,73,1959-12-07,1989-12-07,Washington University in St. Louis School of Medicine,248466.19128715104 -Robert Pratt,74,1985-07-08,2015-07-08,Columbia University Vagelos College of Physicians and Surgeons,308893.76801995677 -David Lopez,75,1955-01-27,1985-01-27,Washington University in St. Louis School of Medicine,298774.2619921197 -Miguel Davidson,76,1963-06-12,1993-06-12,"University of California, San Francisco School of Medicine",296430.0607280732 -Zachary Campbell,77,1980-02-16,2010-02-16,"University of California, San Francisco School of Medicine",264663.1007105828 -Dr. Parker Joseph,78,1987-11-26,2017-11-26,Baylor College of Medicine,271889.3398680022 -Catherine Haynes,79,1982-01-17,2012-01-17,NYU Grossman Medical School,348564.06075061794 -John Johnson,80,1993-02-25,2023-02-25,Perelman School of Medicine (University of Pennsylvania),336454.65026615263 -Casey Reyes,81,1966-12-13,1996-12-13,University of Chicago Pritzker School of Medicine,322262.53765571397 -Rebecca Wallace,82,1965-06-16,1995-06-16,University of Chicago Pritzker School of Medicine,328195.44310589065 -Kayla Lawson,83,1976-04-02,2006-04-02,University of Texas Southwestern Medical School,325380.40634013806 -Zachary Turner,84,1982-05-22,2012-05-22,University of Texas Southwestern Medical School,290299.31363141374 -Jesus Snyder,85,1972-01-19,2002-01-19,Johns Hopkins University School of Medicine,301428.10655443056 -Kyle Nichols,86,1959-02-13,1989-02-13,Columbia University Vagelos College of Physicians and Surgeons,255824.74865876973 -Nancy Nichols,87,1973-09-19,2003-09-19,Stanford University School of Medicine,297309.13119577424 -Andrew King,88,1969-06-24,1999-06-24,Baylor College of Medicine,335502.4274861756 -Bryan Jones,89,1986-06-24,2016-06-24,"University of California, San Francisco School of Medicine",280178.78255228593 -Jordan Sparks,90,1953-09-15,1983-09-15,Johns Hopkins University School of Medicine,330694.2361406168 -Madison Hardin,91,1980-01-19,2010-01-19,Stanford University School of Medicine,302747.5721608129 -Doris Rodriguez,92,1980-03-07,2010-03-07,University of Chicago Pritzker School of Medicine,258438.84402990804 -Jose Carroll,93,1951-10-30,1981-10-30,Perelman School of Medicine (University of Pennsylvania),266780.41459961067 -Johnny White MD,94,1975-07-26,2005-07-26,Washington University in St. Louis School of Medicine,327579.08609123266 -Karen Collier,95,1987-05-26,2017-05-26,"University of California, San Francisco School of Medicine",316575.7225577516 -Julie Zimmerman,96,1960-03-08,1990-03-08,Johns Hopkins University School of Medicine,303052.92218962876 -Timothy Martinez,97,1970-06-28,2000-06-28,Harvard Medical School,291779.0455725616 -Jennifer Walker,98,1951-06-24,1981-06-24,Stanford University School of Medicine,306317.03932885756 -Joel Copeland,99,1963-08-05,1993-08-05,Washington University in St. Louis School of Medicine,326408.88747759745 -Lisa Brewer,100,1963-03-29,1993-03-29,"University of California, San Francisco School of Medicine",344275.5984146185 -Edward Miller,101,1966-07-18,1996-07-18,University of Chicago Pritzker School of Medicine,345710.52598321816 -Leslie Williams,102,1990-08-16,2020-08-16,University of Michigan Medical School,311158.79702275497 -Miss Maria King,103,1970-01-08,2000-01-08,Columbia University Vagelos College of Physicians and Surgeons,294842.04928906437 -Kristin Phillips,104,1964-07-26,1994-07-26,Stanford University School of Medicine,304387.44023456564 -Maria Thompson,105,1986-03-09,2016-03-09,University of Chicago Pritzker School of Medicine,315663.61071765237 -Mark Vang,106,1957-08-11,1987-08-11,"University of California, San Francisco School of Medicine",315542.0083153527 -Elizabeth Henderson,107,1954-05-01,1984-05-01,Stanford University School of Medicine,339239.5991142031 -Troy Wilson,108,1984-09-16,2014-09-16,Baylor College of Medicine,363472.6716574996 -Candice Manning,109,1965-08-23,1995-08-23,Washington University in St. Louis School of Medicine,293842.3611115774 -Deborah Sampson,110,1963-02-26,1993-02-26,Yale School of Medicine,364676.5472647339 -Joshua Martinez,111,1977-10-02,2007-10-02,"University of California, San Francisco School of Medicine",335167.1774027518 -Ronald Taylor,112,1950-01-10,1980-01-10,Baylor College of Medicine,296975.31029444374 -Rebecca Mckinney,113,1964-01-12,1994-01-12,David Geffen School of Medicine at UCLA,344956.9451659524 -Crystal Wallace,114,1952-10-12,1982-10-12,Johns Hopkins University School of Medicine,350569.44904257497 -Katrina Torres,115,1956-01-03,1986-01-03,University of Michigan Medical School,286191.1366741846 -Michael Watson,116,1973-01-15,2003-01-15,University of Texas Southwestern Medical School,351966.45757456945 -Natalie Browning,117,1987-02-06,2017-02-06,Washington University in St. Louis School of Medicine,332252.4846310789 -Todd Mccormick,118,1989-09-25,2019-09-25,Stanford University School of Medicine,371056.77383937576 -Christopher Zhang,119,1961-05-21,1991-05-21,Columbia University Vagelos College of Physicians and Surgeons,287278.84254001506 -Maurice Lane,120,1969-01-31,1999-01-31,University of Chicago Pritzker School of Medicine,289397.1976879201 -Emily Lucas,121,1968-12-30,1998-12-30,University of Texas Southwestern Medical School,239200.1361076998 -Matthew Marks,122,1987-09-16,2017-09-16,Harvard Medical School,317135.81761703885 -Linda Morris,123,1978-04-28,2008-04-28,University of Chicago Pritzker School of Medicine,311257.53766856156 -Christy Huff,124,1969-11-23,1999-11-23,Stanford University School of Medicine,283110.18985393 -Anthony Lynch,125,1973-10-29,2003-10-29,University of Michigan Medical School,297544.4780553583 -Jessica Rodriguez,126,1951-01-20,1981-01-20,NYU Grossman Medical School,260663.36969474654 -Rick Herrera,127,1951-02-09,1981-02-09,University of Chicago Pritzker School of Medicine,335953.34858495055 -Kathleen Evans,128,1972-05-20,2002-05-20,NYU Grossman Medical School,285309.0157641507 -Dustin Perez,129,1991-07-03,2021-07-03,Johns Hopkins University School of Medicine,392821.47046862857 -Charles Kim,130,1984-12-11,2014-12-11,University of Michigan Medical School,294731.960978669 -Justin Anderson,131,1976-12-30,2006-12-30,"University of California, San Francisco School of Medicine",277211.4347685507 -Louis Sullivan,132,1966-05-26,1996-05-26,Baylor College of Medicine,287630.6064379541 -Samuel Hill,133,1991-05-12,2021-05-12,Harvard Medical School,257641.17070367245 -Rhonda Diaz,134,1959-12-16,1989-12-16,Mayo Clinic Alix School of Medicine,314468.1567210883 -Melissa Garrett,135,1979-11-21,2009-11-21,Stanford University School of Medicine,287403.0090066263 -Alexis Hutchinson,136,1963-03-03,1993-03-03,Perelman School of Medicine (University of Pennsylvania),333937.5837119321 -Samantha Barrett,137,1986-11-04,2016-11-04,Mayo Clinic Alix School of Medicine,291757.57514476747 -Melissa Paul,138,1992-04-14,2022-04-14,University of Chicago Pritzker School of Medicine,341533.2633505694 -Angelica Houston,139,1966-06-03,1996-06-03,University of Texas Southwestern Medical School,322723.67247951124 -Joseph Jones,140,1955-08-11,1985-08-11,Stanford University School of Medicine,300857.9033015503 -Miguel Stout,141,1983-10-13,2013-10-13,Baylor College of Medicine,347406.97762052465 -Andrew James,142,1962-06-11,1992-06-11,David Geffen School of Medicine at UCLA,328568.8038311163 -Russell Morris,143,1963-08-17,1993-08-17,Baylor College of Medicine,388386.38479989674 -David Hicks,144,1984-12-23,2014-12-23,Perelman School of Medicine (University of Pennsylvania),287716.34265065385 -Michael Miranda,145,1977-06-03,2007-06-03,Harvard Medical School,302298.4831637538 -Shawn Ellis,146,1959-05-13,1989-05-13,Baylor College of Medicine,347061.2703303279 -Lauren Williams,147,1989-07-05,2019-07-05,Columbia University Vagelos College of Physicians and Surgeons,253693.86564494664 -Jennifer Mccall,148,1969-10-27,1999-10-27,David Geffen School of Medicine at UCLA,339508.3068969769 -Erik Guerrero,149,1989-09-02,2019-09-02,Mayo Clinic Alix School of Medicine,313179.08273044415 -Kerry Hart,150,1978-05-11,2008-05-11,"University of California, San Francisco School of Medicine",273353.67733658256 -Kyle Campbell,151,1961-12-12,1991-12-12,Johns Hopkins University School of Medicine,259108.81024346635 -Tamara Potter,152,1977-11-11,2007-11-11,Columbia University Vagelos College of Physicians and Surgeons,279825.3158060915 -Tracy Garza,153,1973-01-27,2003-01-27,Yale School of Medicine,231455.41283023285 -Mr. Justin Bryant,154,1973-06-29,2003-06-29,David Geffen School of Medicine at UCLA,285313.8166892549 -Richard Miller,155,1963-04-21,1993-04-21,"University of California, San Francisco School of Medicine",318676.6900002775 -Melissa Conway,156,1977-06-28,2007-06-28,"University of California, San Francisco School of Medicine",285710.9807709352 -Jessica Cain,157,1991-10-07,2021-10-07,Stanford University School of Medicine,341649.38104301423 -Christopher Stanley,158,1981-05-28,2011-05-28,David Geffen School of Medicine at UCLA,349798.4280817586 -Roger Craig,159,1953-06-06,1983-06-06,Harvard Medical School,338269.33447877323 -Yvonne Jacobs,160,1969-02-26,1999-02-26,University of Chicago Pritzker School of Medicine,306919.22730793094 -Teresa Frost,161,1983-05-01,2013-05-01,Perelman School of Medicine (University of Pennsylvania),230259.62182540592 -Andrew Bates,162,1962-10-18,1992-10-18,Yale School of Medicine,278889.0752390218 -Eric Marquez,163,1993-03-17,2023-03-17,Perelman School of Medicine (University of Pennsylvania),295738.8441967684 -Michael Bates,164,1985-09-25,2015-09-25,Mayo Clinic Alix School of Medicine,273183.9705148557 -Jessica Anderson,165,1968-11-03,1998-11-03,Mayo Clinic Alix School of Medicine,295814.8357354029 -William Bailey,166,1969-01-10,1999-01-10,Perelman School of Medicine (University of Pennsylvania),348302.02406080137 -Johnny Morgan,167,1976-01-26,2006-01-26,Baylor College of Medicine,250626.70411454045 -Rachel Oneill,168,1971-12-14,2001-12-14,Harvard Medical School,354350.7616835708 -Crystal Cruz,169,1969-01-02,1999-01-02,NYU Grossman Medical School,326541.79265262414 -Tiffany Hodges,170,1977-12-14,2007-12-14,Baylor College of Medicine,308046.5042483309 -Sarah Gardner,171,1976-02-24,2006-02-24,University of Texas Southwestern Medical School,278591.5033277771 -Benjamin Stevens,172,1962-09-12,1992-09-12,Baylor College of Medicine,273781.4896352572 -Tony Mason,173,1963-04-17,1993-04-17,Johns Hopkins University School of Medicine,251213.4685623378 -Courtney Walton,174,1978-04-04,2008-04-04,Washington University in St. Louis School of Medicine,351502.9644094316 -Catherine Howard,175,1963-05-25,1993-05-25,University of Chicago Pritzker School of Medicine,346128.34680222126 -Scott Scott,176,1969-04-14,1999-04-14,Johns Hopkins University School of Medicine,257811.46114250153 -April Shea,177,1961-05-27,1991-05-27,Stanford University School of Medicine,283421.16015281394 -Derrick Krause,178,1971-09-29,2001-09-29,Washington University in St. Louis School of Medicine,312994.3430769573 -Elizabeth White,179,1989-05-24,2019-05-24,Washington University in St. Louis School of Medicine,291014.7258548338 -Patrick Williams,180,1965-04-01,1995-04-01,David Geffen School of Medicine at UCLA,242439.75728904546 -Kelsey Dillon,181,1961-10-10,1991-10-10,Harvard Medical School,280266.8171833294 -Jamie Fisher,182,1967-03-02,1997-03-02,Harvard Medical School,358531.0289406006 -Tamara Potter,183,1960-06-15,1990-06-15,Washington University in St. Louis School of Medicine,282300.6422875667 -Beth Hall,184,1982-11-24,2012-11-24,University of Texas Southwestern Medical School,295095.9798989338 -Derek Edwards,185,1983-07-01,2013-07-01,Baylor College of Medicine,265644.6772789386 -Tara Payne,186,1967-02-15,1997-02-15,David Geffen School of Medicine at UCLA,317632.8895585124 -Carla Miller,187,1970-02-15,2000-02-15,University of Chicago Pritzker School of Medicine,303454.5539707375 -Angela Vance,188,1991-07-28,2021-07-28,Washington University in St. Louis School of Medicine,277739.40775329067 -Jon Prince,189,1967-01-30,1997-01-30,Columbia University Vagelos College of Physicians and Surgeons,260860.33812577726 -Sally Jones,190,1966-09-04,1996-09-04,Mayo Clinic Alix School of Medicine,342136.3012203263 -Sean Best,191,1981-11-11,2011-11-11,Mayo Clinic Alix School of Medicine,251833.6978007676 -Lisa Esparza,192,1984-08-17,2014-08-17,Johns Hopkins University School of Medicine,315114.4708676867 -Kelly Scott MD,193,1977-02-19,2007-02-19,Stanford University School of Medicine,235383.6226586528 -Steven Rivera,194,1973-03-13,2003-03-13,University of Michigan Medical School,321216.35049037146 -John Novak,195,1958-12-11,1988-12-11,University of Michigan Medical School,329108.9666178018 -Connie Tucker,196,1951-10-29,1981-10-29,Mayo Clinic Alix School of Medicine,332843.5113491974 -Barbara Warner,197,1961-06-20,1991-06-20,NYU Grossman Medical School,295163.745942904 -Laura Garrett,198,1977-10-27,2007-10-27,"University of California, San Francisco School of Medicine",347520.1081669109 -Sarah Brewer,199,1980-12-23,2010-12-23,Johns Hopkins University School of Medicine,369233.750849882 -Kevin Warner,200,1985-04-18,2015-04-18,University of Michigan Medical School,290351.3059186211 -Heather Anderson,201,1963-01-30,1993-01-30,Mayo Clinic Alix School of Medicine,286469.8490961022 -Kyle Vasquez,202,1960-09-05,1990-09-05,Stanford University School of Medicine,304475.31781034806 -Robert Chen,203,1987-07-22,2017-07-22,University of Michigan Medical School,285669.5956231738 -Karen Klein,204,1969-02-11,1999-02-11,Baylor College of Medicine,281283.8941196964 -James Mckinney,205,1967-06-17,1997-06-17,Baylor College of Medicine,283897.8437927547 -Joe Mendoza,206,1977-10-26,2007-10-26,Harvard Medical School,351472.6802401873 -Sarah Lane,207,1988-09-02,2018-09-02,University of Texas Southwestern Medical School,323156.459851063 -Erica George,208,1994-07-31,2024-07-31,Harvard Medical School,285571.61618225725 -Katie Huber,209,1978-09-19,2008-09-19,University of Chicago Pritzker School of Medicine,226346.24922833144 -Steven Smith,210,1964-05-07,1994-05-07,Washington University in St. Louis School of Medicine,253666.06519180597 -Allison Steele,211,1978-08-15,2008-08-15,Columbia University Vagelos College of Physicians and Surgeons,315102.87247805635 -Erika Ingram,212,1978-09-09,2008-09-09,Harvard Medical School,236353.32175833549 -Ann Joseph,213,1983-12-08,2013-12-08,Yale School of Medicine,308789.80582355865 -Amy Daniels,214,1962-02-19,1992-02-19,University of Michigan Medical School,268033.08825404925 -Meagan Herrera,215,1987-02-24,2017-02-24,NYU Grossman Medical School,302754.1732374202 -David Lopez,216,1988-10-26,2018-10-26,David Geffen School of Medicine at UCLA,301915.6890400243 -Terry Short,217,1950-10-30,1980-10-30,Mayo Clinic Alix School of Medicine,303617.6980167213 -Patricia Stewart,218,1950-02-25,1980-02-25,David Geffen School of Medicine at UCLA,288167.3445876444 -Robert Davis,219,1985-08-18,2015-08-18,Yale School of Medicine,287181.43123176805 -Joy Yoder,220,1973-11-13,2003-11-13,Stanford University School of Medicine,278376.28743190685 -Julie Walker,221,1972-04-25,2002-04-25,Harvard Medical School,314516.7695172567 -Destiny Lloyd,222,1955-10-27,1985-10-27,Columbia University Vagelos College of Physicians and Surgeons,324155.7802434284 -Karen Smith,223,1981-06-06,2011-06-06,Stanford University School of Medicine,263430.8243239162 -Mary Mahoney,224,1993-02-09,2023-02-09,"University of California, San Francisco School of Medicine",298451.1458312319 -Kathy Smith,225,1968-08-23,1998-08-23,"University of California, San Francisco School of Medicine",305897.4622046321 -Kathryn Johnson,226,1962-08-27,1992-08-27,David Geffen School of Medicine at UCLA,305513.13403869123 -Chad Peterson,227,1991-03-01,2021-03-01,Washington University in St. Louis School of Medicine,305003.08858789556 -April Bailey,228,1987-04-20,2017-04-20,Johns Hopkins University School of Medicine,287938.9556896433 -Alisha Figueroa,229,1964-01-14,1994-01-14,Washington University in St. Louis School of Medicine,308370.9127638762 -Julia Hoffman,230,1964-01-10,1994-01-10,University of Michigan Medical School,318540.8613295086 -Virginia Robinson,231,1966-01-27,1996-01-27,Yale School of Medicine,304231.09967467695 -Dennis Edwards,232,1954-03-12,1984-03-12,Baylor College of Medicine,315178.19509601174 -William Hart,233,1972-05-17,2002-05-17,University of Chicago Pritzker School of Medicine,329710.60233112524 -Karen Klein,234,1971-01-04,2001-01-04,Washington University in St. Louis School of Medicine,244471.78926314195 -Ashley Jackson,235,1968-11-04,1998-11-04,University of Texas Southwestern Medical School,328303.915255961 -Danielle Herring,236,1955-03-22,1985-03-22,University of Chicago Pritzker School of Medicine,310272.83295663825 -Frederick Ellis,237,1958-06-14,1988-06-14,Yale School of Medicine,266651.2401678382 -Thomas Middleton,238,1986-12-21,2016-12-21,University of Chicago Pritzker School of Medicine,324074.12646959064 -Michael Robinson,239,1972-04-27,2002-04-27,Columbia University Vagelos College of Physicians and Surgeons,288050.3728192811 -David Foster,240,1965-09-29,1995-09-29,Harvard Medical School,292141.0069104434 -Samantha Mendez,241,1984-12-20,2014-12-20,Columbia University Vagelos College of Physicians and Surgeons,284769.6065260301 -Isabel Mason,242,1978-02-10,2008-02-10,University of Chicago Pritzker School of Medicine,309071.96532714675 -Leah Meadows,243,1952-11-28,1982-11-28,Stanford University School of Medicine,276439.40572463843 -Rebecca Hernandez,244,1967-01-21,1997-01-21,"University of California, San Francisco School of Medicine",327044.23889843357 -Victor Dean,245,1991-06-22,2021-06-22,University of Chicago Pritzker School of Medicine,295834.1223841598 -Miranda Meza,246,1962-09-07,1992-09-07,Columbia University Vagelos College of Physicians and Surgeons,289073.92549536185 -Toni Caldwell,247,1967-03-21,1997-03-21,NYU Grossman Medical School,322586.2703284191 -Joseph Gonzales,248,1959-11-06,1989-11-06,Yale School of Medicine,290413.29713042756 -Tammy Hart,249,1981-06-02,2011-06-02,Stanford University School of Medicine,328445.304760869 -Vicki Thornton,250,1966-11-21,1996-11-21,Columbia University Vagelos College of Physicians and Surgeons,329387.78852522594 -William Soto,251,1976-10-26,2006-10-26,Washington University in St. Louis School of Medicine,259955.88485343067 -Michael Bennett,252,1970-09-14,2000-09-14,Mayo Clinic Alix School of Medicine,333277.8060666877 -Joshua Brewer,253,1972-08-11,2002-08-11,David Geffen School of Medicine at UCLA,256138.92085494343 -Debra Crawford,254,1967-06-12,1997-06-12,Johns Hopkins University School of Medicine,335147.4158064753 -Natalie Mitchell,255,1989-05-05,2019-05-05,Baylor College of Medicine,360850.71576690715 -Timothy Riley,256,1985-05-07,2015-05-07,Columbia University Vagelos College of Physicians and Surgeons,326245.03314807394 -Kyle Campbell,257,1971-10-01,2001-10-01,University of Texas Southwestern Medical School,235290.5806590098 -Joseph Santiago,258,1983-05-27,2013-05-27,Johns Hopkins University School of Medicine,331906.9715815806 -Christine Perkins,259,1993-01-23,2023-01-23,Yale School of Medicine,367383.86897808034 -Kristine Watson,260,1968-06-13,1998-06-13,NYU Grossman Medical School,290909.0507700591 -Isaac Walker,261,1993-07-27,2023-07-27,Perelman School of Medicine (University of Pennsylvania),298958.9003991033 -Sean Williams,262,1956-10-08,1986-10-08,Columbia University Vagelos College of Physicians and Surgeons,264345.398342207 -Elizabeth Meyer,263,1992-12-05,2022-12-05,Mayo Clinic Alix School of Medicine,309362.3825645901 -John Henderson,264,1954-10-28,1984-10-28,Johns Hopkins University School of Medicine,338075.31547629385 -Tara Harris,265,1977-11-02,2007-11-02,Baylor College of Medicine,320932.1138444836 -Michael Delgado,266,1978-11-24,2008-11-24,University of Chicago Pritzker School of Medicine,394259.00931863394 -Michael Watson,267,1989-02-02,2019-02-02,Columbia University Vagelos College of Physicians and Surgeons,300990.8112889739 -Michael Gibbs,268,1960-06-09,1990-06-09,Harvard Medical School,251079.7989775421 -Angela Stein,269,1954-05-25,1984-05-25,NYU Grossman Medical School,305129.1291470466 -James Cooper,270,1965-05-24,1995-05-24,Yale School of Medicine,227506.4470436253 -Jennifer Quinn,271,1968-07-12,1998-07-12,David Geffen School of Medicine at UCLA,284006.8822540646 -Lance Gonzalez,272,1981-10-18,2011-10-18,Mayo Clinic Alix School of Medicine,348731.46175800636 -Jamie Wiley,273,1978-12-29,2008-12-29,University of Michigan Medical School,309754.00945895317 -Jeremy Arnold,274,1988-02-09,2018-02-09,University of Michigan Medical School,305382.50438493805 -Valerie Smith,275,1985-09-20,2015-09-20,University of Texas Southwestern Medical School,354623.4113014607 -Katherine Jones,276,1957-02-03,1987-02-03,Johns Hopkins University School of Medicine,291882.0032500989 -Steven Watson,277,1961-11-03,1991-11-03,Mayo Clinic Alix School of Medicine,337854.6123880233 -Daniel Martinez,278,1979-07-15,2009-07-15,Stanford University School of Medicine,303879.2092549902 -Julia Lam,279,1974-12-12,2004-12-12,Baylor College of Medicine,311401.4239037708 -Willie Gutierrez,280,1964-08-17,1994-08-17,David Geffen School of Medicine at UCLA,263480.8543241096 -Stephen Johnson,281,1994-11-15,2024-11-15,University of Chicago Pritzker School of Medicine,285538.5961551535 -Timothy Gibson,282,1973-09-16,2003-09-16,Columbia University Vagelos College of Physicians and Surgeons,258074.4530146838 -Edgar Harris,283,1988-06-13,2018-06-13,Columbia University Vagelos College of Physicians and Surgeons,297142.64765323966 -Erin Ramirez,284,1974-03-13,2004-03-13,University of Michigan Medical School,311712.070317488 -Robert Haynes,285,1950-04-28,1980-04-28,Columbia University Vagelos College of Physicians and Surgeons,266698.8568472564 -Anthony Miller,286,1988-02-08,2018-02-08,Yale School of Medicine,361475.3676805447 -Ryan Craig,287,1989-03-06,2019-03-06,David Geffen School of Medicine at UCLA,308343.18057275884 -Austin Alvarado,288,1986-03-27,2016-03-27,Harvard Medical School,301733.86756755656 -Sheri Howard,289,1965-03-23,1995-03-23,Perelman School of Medicine (University of Pennsylvania),323089.73254036874 -Ashley Le,290,1952-04-26,1982-04-26,University of Texas Southwestern Medical School,275132.15757402236 -Antonio Stark,291,1979-12-29,2009-12-29,"University of California, San Francisco School of Medicine",304904.3243750236 -Brandy Anderson,292,1987-07-09,2017-07-09,Washington University in St. Louis School of Medicine,278494.01338927227 -Jonathan Obrien DDS,293,1992-02-15,2022-02-15,University of Texas Southwestern Medical School,346760.3973026695 -Adrienne Johnson,294,1987-08-21,2017-08-21,Johns Hopkins University School of Medicine,268240.81951808755 -David Carter,295,1967-09-18,1997-09-18,Harvard Medical School,301894.96377921524 -Amber Parker MD,296,1975-07-22,2005-07-22,University of Texas Southwestern Medical School,309879.4735545533 -Amanda Rogers,297,1985-02-05,2015-02-05,University of Chicago Pritzker School of Medicine,311844.77233223105 -John Williams,298,1961-07-10,1991-07-10,University of Michigan Medical School,282562.944807515 -Anthony Lowery,299,1967-03-16,1997-03-16,NYU Grossman Medical School,273134.71793564706 -Vicki Foster,300,1955-08-11,1985-08-11,Johns Hopkins University School of Medicine,282996.144808617 -Mr. Adrian Pittman II,301,1967-01-25,1997-01-25,Columbia University Vagelos College of Physicians and Surgeons,315849.76302630844 -Mark Martin,302,1985-06-07,2015-06-07,Mayo Clinic Alix School of Medicine,295684.6268726411 -Matthew Ward,303,1984-07-08,2014-07-08,University of Chicago Pritzker School of Medicine,323886.26425357565 -James Jackson,304,1976-09-26,2006-09-26,Johns Hopkins University School of Medicine,314310.1115818522 -Barbara Warner,305,1955-01-03,1985-01-03,NYU Grossman Medical School,231692.61905701176 -Lacey Gomez,306,1955-04-02,1985-04-02,Baylor College of Medicine,307424.93390511634 -Jamie Marks,307,1969-02-18,1999-02-18,Columbia University Vagelos College of Physicians and Surgeons,367513.6430344881 -Melissa Brown,308,1989-12-16,2019-12-16,University of Texas Southwestern Medical School,339758.0715311499 -Leah Meadows,309,1985-07-13,2015-07-13,University of Texas Southwestern Medical School,312660.3948212091 -Ryan Kirk,310,1950-01-10,1980-01-10,Johns Hopkins University School of Medicine,268218.2360859017 -Paula Hall,311,1977-01-04,2007-01-04,Mayo Clinic Alix School of Medicine,314326.6114837694 -Krystal Webb,312,1956-01-29,1986-01-29,Baylor College of Medicine,322192.4981963478 -Mark Nichols,313,1969-04-12,1999-04-12,Columbia University Vagelos College of Physicians and Surgeons,292387.59957517247 -Michael Hodges,314,1964-06-23,1994-06-23,NYU Grossman Medical School,309502.2617641331 -Michelle Williams,315,1954-06-08,1984-06-08,Perelman School of Medicine (University of Pennsylvania),345289.8737518812 -Cody Olson,316,1973-04-22,2003-04-22,University of Texas Southwestern Medical School,274281.7674077482 -Veronica Moore,317,1953-09-04,1983-09-04,NYU Grossman Medical School,268251.0118512262 -Ryan Thomas,318,1978-12-08,2008-12-08,Harvard Medical School,320780.97977982636 -Daniel Morgan II,319,1988-12-18,2018-12-18,University of Texas Southwestern Medical School,313726.2790859424 -Carol Sanchez,320,1959-07-23,1989-07-23,NYU Grossman Medical School,330865.1488623844 -Carolyn Clark,321,1975-06-29,2005-06-29,Stanford University School of Medicine,317093.8143571131 -Cheryl Smith,322,1971-11-11,2001-11-11,University of Michigan Medical School,282967.3481047742 -Teresa Brown,323,1983-06-16,2013-06-16,Washington University in St. Louis School of Medicine,312965.77954396216 -Matthew Wyatt,324,1950-08-24,1980-08-24,David Geffen School of Medicine at UCLA,265736.2037011148 -William Mclaughlin,325,1977-10-27,2007-10-27,University of Michigan Medical School,292490.4386480102 -Mary Owens,326,1955-03-24,1985-03-24,Yale School of Medicine,315083.97692899214 -Christine Rogers,327,1973-06-16,2003-06-16,Washington University in St. Louis School of Medicine,289184.5734982833 -Greg Clark,328,1959-09-01,1989-09-01,University of Chicago Pritzker School of Medicine,374041.5654668948 -Dorothy Palmer,329,1964-05-23,1994-05-23,NYU Grossman Medical School,243234.47253529 -Luis Powell MD,330,1972-05-07,2002-05-07,Washington University in St. Louis School of Medicine,283575.28929003567 -Teresa Scott,331,1964-10-29,1994-10-29,Yale School of Medicine,271866.6049839027 -Erin Oliver,332,1959-04-15,1989-04-15,Columbia University Vagelos College of Physicians and Surgeons,278989.5357762614 -Mark Woods,333,1980-07-19,2010-07-19,Perelman School of Medicine (University of Pennsylvania),280710.0532955736 -Nicole Holland,334,1966-04-18,1996-04-18,Stanford University School of Medicine,260207.3793942302 -Wesley Davidson,335,1971-12-04,2001-12-04,Harvard Medical School,322581.0644571788 -Tanya Mccarty,336,1974-10-26,2004-10-26,NYU Grossman Medical School,283587.141078387 -Gary Swanson,337,1992-07-03,2022-07-03,Harvard Medical School,304907.20006765967 -Brittany Harris,338,1950-03-19,1980-03-19,Mayo Clinic Alix School of Medicine,286955.22714269266 -Kenneth Glass,339,1970-09-30,2000-09-30,University of Texas Southwestern Medical School,279273.5876314137 -Jacqueline Johnson,340,1988-06-30,2018-06-30,NYU Grossman Medical School,350168.3770826055 -Jason Martinez,341,1978-11-05,2008-11-05,David Geffen School of Medicine at UCLA,327687.9654662822 -Anthony Phillips,342,1976-01-15,2006-01-15,NYU Grossman Medical School,243953.98800134566 -Abigail Cummings,343,1969-01-04,1999-01-04,Johns Hopkins University School of Medicine,240775.87654992339 -Christina Miller,344,1982-09-24,2012-09-24,Perelman School of Medicine (University of Pennsylvania),331278.2650690946 -Lisa Anderson,345,1971-05-15,2001-05-15,Johns Hopkins University School of Medicine,284404.39825353737 -Jessica Wallace,346,1967-12-23,1997-12-23,NYU Grossman Medical School,250527.52998197332 -Kathy Watkins,347,1966-05-21,1996-05-21,Stanford University School of Medicine,331372.05397621024 -Jeffrey Williams,348,1962-10-15,1992-10-15,Washington University in St. Louis School of Medicine,305073.7215029727 -Lindsay Martinez,349,1975-02-23,2005-02-23,Harvard Medical School,307547.1325449696 -Kevin Hodges,350,1956-01-02,1986-01-02,Stanford University School of Medicine,324286.1781601772 -Robert Clements,351,1953-06-02,1983-06-02,NYU Grossman Medical School,260700.6852515282 -Samuel Martinez,352,1980-10-16,2010-10-16,Yale School of Medicine,251054.97535847506 -Amy Rios,353,1985-01-07,2015-01-07,Washington University in St. Louis School of Medicine,347428.62884709606 -Joanne Hernandez,354,1960-02-05,1990-02-05,Yale School of Medicine,256884.99717773122 -Nathan Parker,355,1961-01-01,1991-01-01,Harvard Medical School,263332.86608773307 -James Sparks,356,1980-12-11,2010-12-11,Washington University in St. Louis School of Medicine,269326.938613627 -Jennifer Johnson,357,1955-05-25,1985-05-25,David Geffen School of Medicine at UCLA,362398.37771071563 -Ashley Goodwin,358,1972-12-20,2002-12-20,Perelman School of Medicine (University of Pennsylvania),314801.4990123457 -Shannon Lam,359,1992-02-04,2022-02-04,University of Michigan Medical School,328962.2392330614 -Chase Mcpherson Jr.,360,1965-11-06,1995-11-06,Baylor College of Medicine,305885.02636736183 -Matthew Nelson,361,1964-10-22,1994-10-22,University of Chicago Pritzker School of Medicine,281943.383663963 -Dawn Haley,362,1975-11-12,2005-11-12,Stanford University School of Medicine,318938.738497805 -Karl Bruce,363,1952-07-11,1982-07-11,University of Texas Southwestern Medical School,253301.5208760959 -Molly Dean,364,1951-02-24,1981-02-24,Stanford University School of Medicine,267141.4964371052 -Michael Harris,365,1979-07-17,2009-07-17,Baylor College of Medicine,321989.25537784444 -Miss Valerie George,366,1953-01-25,1983-01-25,University of Michigan Medical School,259282.3430751966 -Chelsey Davis,367,1980-10-30,2010-10-30,"University of California, San Francisco School of Medicine",294327.5559251438 -Scott Rivera,368,1956-05-25,1986-05-25,Columbia University Vagelos College of Physicians and Surgeons,295694.62966933765 -Andrew Miller,369,1964-09-17,1994-09-17,David Geffen School of Medicine at UCLA,284140.13989988517 -David Perez,370,1956-02-22,1986-02-22,Yale School of Medicine,241466.44575453427 -Louis Chambers,371,1962-08-18,1992-08-18,NYU Grossman Medical School,281132.13326433924 -Richard Richmond,372,1988-03-08,2018-03-08,David Geffen School of Medicine at UCLA,275250.94869202544 -Elaine Page DVM,373,1980-05-27,2010-05-27,Baylor College of Medicine,304843.19589863095 -Laura Brown,374,1986-10-08,2016-10-08,NYU Grossman Medical School,303314.71616098407 -Michael Berger,375,1967-06-12,1997-06-12,University of Texas Southwestern Medical School,311338.84379810625 -Gabriela Garcia,376,1967-05-31,1997-05-31,Johns Hopkins University School of Medicine,279720.41181076807 -Dustin Griffin,377,1971-07-13,2001-07-13,Washington University in St. Louis School of Medicine,315683.3385139768 -Jo Beard,378,1958-11-03,1988-11-03,Columbia University Vagelos College of Physicians and Surgeons,253319.79801678951 -Jennifer Murray,379,1989-05-18,2019-05-18,Perelman School of Medicine (University of Pennsylvania),245342.85802042938 -Christopher Murphy,380,1957-12-01,1987-12-01,Perelman School of Medicine (University of Pennsylvania),229932.81827500116 -Nicole King,381,1960-04-14,1990-04-14,Baylor College of Medicine,285021.08281284006 -Alex Anderson,382,1993-03-06,2023-03-06,David Geffen School of Medicine at UCLA,277401.0532698433 -Robert Thomas,383,1957-04-28,1987-04-28,Perelman School of Medicine (University of Pennsylvania),323679.468355638 -Antonio Campbell,384,1968-11-20,1998-11-20,University of Texas Southwestern Medical School,280540.1223885339 -Jennifer Evans,385,1977-10-13,2007-10-13,Yale School of Medicine,308201.290438328 -Emily Anderson DDS,386,1952-03-04,1982-03-04,"University of California, San Francisco School of Medicine",324398.8972974923 -Jessica Matthews,387,1955-10-18,1985-10-18,Stanford University School of Medicine,279410.42773052654 -Steven Henry,388,1965-10-28,1995-10-28,Mayo Clinic Alix School of Medicine,308941.5663032153 -Jonathan Baker,389,1983-09-03,2013-09-03,University of Texas Southwestern Medical School,330057.82646865584 -Alyssa Watts,390,1988-10-01,2018-10-01,NYU Grossman Medical School,262855.116755833 -Edgar Harris,391,1980-06-03,2010-06-03,University of Chicago Pritzker School of Medicine,300745.5701473393 -Rebecca Hernandez,392,1979-07-17,2009-07-17,Baylor College of Medicine,279538.9685040206 -Nicole Keith,393,1981-03-16,2011-03-16,Johns Hopkins University School of Medicine,264765.3035252058 -Brent Brewer,394,1985-08-04,2015-08-04,Washington University in St. Louis School of Medicine,253906.44778529313 -Aaron Johnson,395,1952-03-25,1982-03-25,University of Chicago Pritzker School of Medicine,264280.54283463897 -Linda Johnson,396,1978-11-11,2008-11-11,Washington University in St. Louis School of Medicine,301800.8701725604 -Amy Daniels,397,1956-09-09,1986-09-09,Harvard Medical School,251674.66633314762 -Shaun Little,398,1978-08-19,2008-08-19,University of Chicago Pritzker School of Medicine,283478.1892773409 -Richard Garcia,399,1978-06-03,2008-06-03,Mayo Clinic Alix School of Medicine,324395.83220558695 -Michael Morales,400,1971-04-24,2001-04-24,David Geffen School of Medicine at UCLA,313470.3289025681 -Amanda James,401,1981-05-31,2011-05-31,"University of California, San Francisco School of Medicine",284084.7713118553 -Robin Rose,402,1991-12-20,2021-12-20,Stanford University School of Medicine,350690.7124007617 -Brittany Harris,403,1952-04-07,1982-04-07,Stanford University School of Medicine,356791.0924173498 -Monique Hall,404,1969-07-27,1999-07-27,"University of California, San Francisco School of Medicine",300783.6729461918 -Christopher Webster,405,1962-03-10,1992-03-10,Yale School of Medicine,225943.71252347075 -Logan Hansen,406,1992-01-04,2022-01-04,Columbia University Vagelos College of Physicians and Surgeons,326593.4459104878 -Donna Williams,407,1987-05-02,2017-05-02,Harvard Medical School,231180.70979899244 -Mr. Andrew Keller,408,1966-04-26,1996-04-26,Washington University in St. Louis School of Medicine,344284.383321602 -Lori Jackson,409,1950-05-07,1980-05-07,Mayo Clinic Alix School of Medicine,332507.547022269 -Richard Aguilar,410,1974-01-30,2004-01-30,Perelman School of Medicine (University of Pennsylvania),353226.37512414064 -Mario Kelly II,411,1981-11-15,2011-11-15,University of Chicago Pritzker School of Medicine,307807.9667510318 -Christina Anderson,412,1969-09-14,1999-09-14,Harvard Medical School,289158.42698454484 -Tina Wall,413,1981-08-25,2011-08-25,University of Texas Southwestern Medical School,286496.9659892933 -James Allen,414,1959-03-23,1989-03-23,Baylor College of Medicine,283612.1948690731 -Heidi Melton,415,1960-05-25,1990-05-25,University of Chicago Pritzker School of Medicine,329432.0596102411 -Andre Johnson,416,1991-05-20,2021-05-20,Mayo Clinic Alix School of Medicine,321368.1446851763 -Gary Baldwin,417,1987-07-24,2017-07-24,Johns Hopkins University School of Medicine,303606.76900302636 -Matthew Perez,418,1954-11-28,1984-11-28,Johns Hopkins University School of Medicine,278334.56076219084 -Jasmine Perkins,419,1980-04-06,2010-04-06,NYU Grossman Medical School,378876.37893900817 -Laura Hamilton,420,1959-07-09,1989-07-09,Harvard Medical School,327371.2384188861 -Kathleen Mitchell,421,1959-05-11,1989-05-11,David Geffen School of Medicine at UCLA,252068.64240679774 -Sandra Porter,422,1954-07-04,1984-07-04,Mayo Clinic Alix School of Medicine,284512.3195218862 -Cristina Ortega,423,1990-05-26,2020-05-26,Mayo Clinic Alix School of Medicine,327953.28292226116 -Kelly Massey,424,1958-05-31,1988-05-31,"University of California, San Francisco School of Medicine",276013.83236301946 -Renee Young,425,1955-01-29,1985-01-29,University of Texas Southwestern Medical School,310546.4387647767 -Vicki Foster,426,1962-10-07,1992-10-07,David Geffen School of Medicine at UCLA,328523.88901008444 -Jason Johnston,427,1967-11-02,1997-11-02,University of Texas Southwestern Medical School,198347.15752030822 -Alexis Nolan,428,1957-06-01,1987-06-01,Yale School of Medicine,296758.86900632246 -Brittany Mullen,429,1982-01-07,2012-01-07,Washington University in St. Louis School of Medicine,297936.27460695367 -Megan Guzman,430,1976-01-29,2006-01-29,Washington University in St. Louis School of Medicine,287637.8263294863 -Aaron Graves,431,1967-09-05,1997-09-05,Perelman School of Medicine (University of Pennsylvania),309050.8540483812 -Robert Schmidt,432,1961-07-14,1991-07-14,NYU Grossman Medical School,319725.58822487626 -Stephanie Ward,433,1986-03-17,2016-03-17,Stanford University School of Medicine,304261.5283297383 -Sara Lopez,434,1971-10-28,2001-10-28,Johns Hopkins University School of Medicine,288785.17817851703 -Miranda Hunt,435,1954-06-14,1984-06-14,Baylor College of Medicine,318978.6389935281 -Pamela Hendrix,436,1978-03-29,2008-03-29,Washington University in St. Louis School of Medicine,301471.6022782307 -Nathan Davis,437,1971-10-31,2001-10-31,David Geffen School of Medicine at UCLA,293078.98760413565 -Rhonda Wall,438,1973-06-26,2003-06-26,Mayo Clinic Alix School of Medicine,260631.6184398324 -Amy Payne,439,1972-02-05,2002-02-05,Baylor College of Medicine,253120.35644201766 -Jared Diaz,440,1973-09-23,2003-09-23,University of Michigan Medical School,260063.1062185779 -Ashley Torres,441,1959-11-10,1989-11-10,University of Texas Southwestern Medical School,308349.8718366065 -Joseph Jackson,442,1968-07-28,1998-07-28,Washington University in St. Louis School of Medicine,297627.63757180946 -Julie Long,443,1986-03-19,2016-03-19,Mayo Clinic Alix School of Medicine,255591.4770537761 -Ryan Gutierrez,444,1975-01-16,2005-01-16,Washington University in St. Louis School of Medicine,319377.5347738143 -Nathan Smith,445,1963-08-12,1993-08-12,Johns Hopkins University School of Medicine,341229.28539537283 -Amy Bryant,446,1986-12-08,2016-12-08,University of Michigan Medical School,282045.1914985099 -Joshua Guerrero,447,1985-06-17,2015-06-17,University of Chicago Pritzker School of Medicine,247770.54427894877 -Geoffrey Jacobson,448,1983-09-17,2013-09-17,Washington University in St. Louis School of Medicine,278726.2084529426 -Alyssa Thomas,449,1955-06-14,1985-06-14,Yale School of Medicine,325633.81880384084 -Lisa Wallace,450,1964-07-05,1994-07-05,David Geffen School of Medicine at UCLA,316455.8957560432 -Gerald Green,451,1985-08-02,2015-08-02,Washington University in St. Louis School of Medicine,272327.0194196556 -Christopher Esparza,452,1986-11-20,2016-11-20,Stanford University School of Medicine,345635.1641329423 -Rhonda Wolf,453,1961-12-29,1991-12-29,Baylor College of Medicine,340448.401977792 -Hannah Roberts,454,1963-01-10,1993-01-10,Baylor College of Medicine,278009.81810170074 -Ashley Young,455,1978-06-18,2008-06-18,Johns Hopkins University School of Medicine,277701.299911051 -Tasha Griffin,456,1994-06-20,2024-06-20,David Geffen School of Medicine at UCLA,282215.1618786153 -Mary Medina,457,1965-04-20,1995-04-20,University of Michigan Medical School,284780.01673834363 -Taylor Williams PhD,458,1963-07-16,1993-07-16,Yale School of Medicine,328516.14023785334 -Trevor Cook,459,1986-09-04,2016-09-04,"University of California, San Francisco School of Medicine",312759.8718142978 -Marissa Shepherd,460,1961-08-14,1991-08-14,David Geffen School of Medicine at UCLA,326312.3630805176 -Thomas Harrell,461,1977-02-24,2007-02-24,Baylor College of Medicine,320206.954295601 -Marc Romero,462,1977-05-03,2007-05-03,Stanford University School of Medicine,351435.81204581197 -David Fisher,463,1954-10-26,1984-10-26,University of Chicago Pritzker School of Medicine,268218.4336857258 -Ronald Chen,464,1975-02-20,2005-02-20,Johns Hopkins University School of Medicine,311410.7559115175 -Christie Kelly,465,1956-10-18,1986-10-18,"University of California, San Francisco School of Medicine",234785.36231295907 -Paige Morris,466,1952-08-09,1982-08-09,Stanford University School of Medicine,260491.33277709424 -Timothy Wilson,467,1955-09-11,1985-09-11,University of Michigan Medical School,297754.3984219546 -Bryan Smith,468,1957-06-10,1987-06-10,University of Texas Southwestern Medical School,312546.19838263607 -James Brown,469,1976-07-15,2006-07-15,University of Michigan Medical School,296945.5277391129 -Alexander Jimenez,470,1970-01-07,2000-01-07,Stanford University School of Medicine,282984.2274356196 -Vickie Collins,471,1952-02-08,1982-02-08,University of Texas Southwestern Medical School,288317.46367520886 -Ryan Jarvis,472,1965-01-12,1995-01-12,Harvard Medical School,341083.2292927231 -Alexander Rodriguez,473,1992-07-13,2022-07-13,Johns Hopkins University School of Medicine,288479.0346635958 -George Lee,474,1968-03-12,1998-03-12,David Geffen School of Medicine at UCLA,352477.2486613058 -Renee Brown,475,1964-04-29,1994-04-29,University of Texas Southwestern Medical School,323820.512206234 -Terry Chan,476,1981-06-12,2011-06-12,NYU Grossman Medical School,313726.1203844469 -Ivan Doyle,477,1965-11-15,1995-11-15,University of Texas Southwestern Medical School,264192.09269037016 -Drew Sanchez,478,1983-10-17,2013-10-17,Mayo Clinic Alix School of Medicine,328057.1448419888 -Richard Carter,479,1972-01-04,2002-01-04,University of Chicago Pritzker School of Medicine,285186.882667545 -Daniel Mack,480,1993-10-24,2023-10-24,Mayo Clinic Alix School of Medicine,264166.807259829 -Larry Campbell,481,1985-10-31,2015-10-31,David Geffen School of Medicine at UCLA,315385.3083923813 -Jennifer Roberts,482,1963-05-06,1993-05-06,David Geffen School of Medicine at UCLA,258361.6181830038 -Alan Johnson,483,1954-01-21,1984-01-21,Johns Hopkins University School of Medicine,277132.75613611256 -Victoria Chavez,484,1977-08-20,2007-08-20,David Geffen School of Medicine at UCLA,299696.52265593264 -Kevin Walls,485,1989-06-27,2019-06-27,Baylor College of Medicine,366552.6427234418 -Janet Williams,486,1970-12-05,2000-12-05,University of Texas Southwestern Medical School,279392.52732622536 -Carla Dougherty,487,1993-01-03,2023-01-03,University of Texas Southwestern Medical School,286253.50442098273 -Sara Newman,488,1980-11-10,2010-11-10,Harvard Medical School,321970.35163264937 -Shelby Mathews,489,1984-07-01,2014-07-01,"University of California, San Francisco School of Medicine",262851.1293487186 -Shawn Bryant,490,1980-02-11,2010-02-11,David Geffen School of Medicine at UCLA,313284.1914306275 -Heather Fisher,491,1989-02-20,2019-02-20,Mayo Clinic Alix School of Medicine,336177.80422849767 -Shelley Cobb,492,1979-04-01,2009-04-01,David Geffen School of Medicine at UCLA,290787.153458667 -Amy Watson,493,1994-11-06,2024-11-06,University of Michigan Medical School,330784.62844190595 -Eric Patton,494,1973-04-29,2003-04-29,Harvard Medical School,308743.49769635417 -James Johnson,495,1959-01-14,1989-01-14,Baylor College of Medicine,278079.5410858866 -Andrew Wallace,496,1968-05-28,1998-05-28,Baylor College of Medicine,294065.8594231048 -Phillip Weaver,497,1969-10-06,1999-10-06,Washington University in St. Louis School of Medicine,288607.27980059275 -Craig Brooks,498,1958-05-13,1988-05-13,University of Texas Southwestern Medical School,297370.8522655057 -Bernard Miller,499,1987-03-03,2017-03-03,Baylor College of Medicine,304581.5369765948 diff --git a/langchain-rag-app/source_code_step_2/data/reviews.csv b/langchain-rag-app/source_code_step_2/data/reviews.csv deleted file mode 100644 index fd685fc27f..0000000000 --- a/langchain-rag-app/source_code_step_2/data/reviews.csv +++ /dev/null @@ -1,1006 +0,0 @@ -review_id,visit_id,review,physician_name,hospital_name,patient_name -0,6997,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Laura Brown,Wallace-Hamilton,Christy Johnson -9,8138,"The hospital's commitment to patient education impressed me. The medical team took the time to explain my diagnosis and treatment options, empowering me to make informed decisions about my health.",Steven Watson,Wallace-Hamilton,Anna Frazier -11,680,The hospital's commitment to patient safety was evident throughout my stay. The stringent hygiene protocols and vigilant staff instilled confidence in the quality of care provided.,Chase Mcpherson Jr.,Wallace-Hamilton,Abigail Mitchell -892,9846,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Jason Martinez,Wallace-Hamilton,Kimberly Rivas -822,7397,"The medical team at the hospital was exceptional, and the facilities were state-of-the-art. The only downside was the noise level in the shared rooms, affecting my rest.",Chelsey Davis,Wallace-Hamilton,Catherine Yang -434,9946,"While the medical care was excellent, the wait times for tests and results were quite frustrating. Improvement in this area would greatly enhance the overall experience.",Ashley Le,Wallace-Hamilton,Jennifer Russell -169,4902,"The medical team was attentive, and the facilities were clean. Unfortunately, the noise levels in the hallway were disruptive, affecting the overall peacefulness of the environment.",Tanya Mccarty,Wallace-Hamilton,Henry Hays -93,5297,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Amy Watson,Wallace-Hamilton,Rachel Carter -97,3267,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Jennifer Mccall,Wallace-Hamilton,Cody Ibarra -146,3332,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -604,3332,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -597,2955,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Terry Short,Wallace-Hamilton,Michael Smith -807,2955,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Terry Short,Wallace-Hamilton,Michael Smith -913,7962,"While the hospital had state-of-the-art equipment, the staff's lack of coordination resulted in delays and confusion regarding my treatment.",Robert Chen,Wallace-Hamilton,Chelsea Mitchell -136,1496,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Sara Lopez,Wallace-Hamilton,Carol Byrd -922,9374,"I was pleased with the level of care I received at the hospital. The only downside was the confusing layout, making it easy to get lost in the corridors.",Troy Wilson,Wallace-Hamilton,Daniel Williams -744,7721,"The nursing staff was caring, and the hospital had a calming ambiance. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Jennifer Evans,Wallace-Hamilton,Kim Powers -205,8663,"I appreciate the hospital's commitment to patient safety, and the cleanliness standards were commendable. However, the lack of entertainment options for patients during recovery was a downside.",Christopher Murphy,Wallace-Hamilton,Sharon Brown -224,6400,"I had a mixed experience at the hospital. The medical team was attentive, but the lack of communication about the potential risks of a procedure was concerning. The facilities, however, were modern and clean.",Tanya Sharp,Wallace-Hamilton,John Bartlett -228,7954,"I had a positive experience with the hospital's medical team, who provided excellent care. Nevertheless, the administrative processes, especially the check-in and discharge, could be more streamlined.",Yvonne Jacobs,Wallace-Hamilton,Rebecca Wilkerson -236,9106,"My stay at the hospital was great. The nurses were friendly and efficient, and the doctors were knowledgeable and thorough in their examinations.",John Henderson,Wallace-Hamilton,Scott Terry -266,5374,"The hospital's facilities were modern and well-maintained. However, the lack of communication about changes in my treatment plan created unnecessary stress.",James Johnson,Wallace-Hamilton,Michele Jones -294,8882,"The hospital staff was caring and attentive. However, the lack of communication between different departments led to some confusion about my treatment plan.",Mr. Andrew Keller,Wallace-Hamilton,Tiffany Long -873,6168,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Mr. Andrew Keller,Wallace-Hamilton,Stacy Villa -301,1974,"The hospital staff was efficient, and the facilities were clean. However, the lack of personalized attention and communication left me feeling a bit neglected.",Christopher Esparza,Wallace-Hamilton,Kevin Cox -390,8306,"The hospital staff was accommodating to my needs, but the noise levels in the hallway were disruptive and affected my ability to rest.",Victoria Chavez,Wallace-Hamilton,David Kim -799,4305,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Mark Vang,Wallace-Hamilton,Daniel Carter -867,99,"I had a mixed experience at the hospital. The medical attention was top-notch, but the wait times for tests were frustratingly long. The cafeteria food was surprisingly tasty, though.",Brian Rivera,Wallace-Hamilton,Christopher Juarez -633,2477,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Wallace-Hamilton,Matthew Watkins -767,7323,"The hospital facilities were outdated, and the lack of modern equipment was noticeable. However, the medical staff was dedicated and provided good care.",Karl Bruce,Wallace-Hamilton,Dalton Oconnell -525,8152,"Unfortunately, my hospital experience was subpar. The nursing staff seemed overwhelmed, and the facilities were outdated. Communication regarding my treatment plan was lacking, leaving me feeling uneasy.",George Lee,Wallace-Hamilton,Tracy Murray -933,952,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Raymond Berry,Wallace-Hamilton,William Garza -931,4575,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jennifer Roberts,Wallace-Hamilton,Cynthia Welch -733,1950,"The doctors were knowledgeable and took the time to answer my questions. The outdated medical equipment, however, was a concern.",Crystal Cruz,Wallace-Hamilton,Kelly Stevens -840,2472,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Miss Valerie George,Wallace-Hamilton,Lynn Smith -751,672,"The doctors were skilled, and the hospital had a clean environment. The constant interruptions during the night, however, affected my ability to rest.",Karen Smith,Wallace-Hamilton,Jesse Tucker -756,5717,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Heidi Melton,Wallace-Hamilton,Jason Mcdowell -856,2331,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Steven Smith,Wallace-Hamilton,Jesse Marquez -1001,3240,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Ronald Hernandez Jr.,Wallace-Hamilton,Jacob Smith -1,761,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Vicki Foster,"Bell, Mcknight and Willis",Loretta Schmitt -658,7151,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Robert Davis,"Bell, Mcknight and Willis",Richard Parker -585,4525,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Robert Pratt,"Bell, Mcknight and Willis",Kristin Evans -821,5920,"I am grateful for the care I received from the hospital staff. They were attentive and explained everything thoroughly. However, the billing process was confusing.",Erika Ingram,"Bell, Mcknight and Willis",Dr. Barbara Foster -954,1077,"Unfortunately, my experience at the hospital was less than satisfactory. The communication among the staff was poor, and it led to confusion about my treatment plan.",Mark Martin,"Bell, Mcknight and Willis",Daniel Harris -76,9171,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Logan Hansen,"Bell, Mcknight and Willis",Anna Graves -693,5246,"My overall experience was positive, thanks to the skilled medical team and their prompt response to my needs. The only downside was the limited parking space, causing inconvenience for visitors.",Tara Harris,"Bell, Mcknight and Willis",Kathleen Chambers -463,3607,The hospital's commitment to patient satisfaction was evident. They actively sought feedback and made adjustments to improve the overall experience.,Terry Leon,"Bell, Mcknight and Willis",Melissa Jefferson -132,1564,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Antonio Campbell,"Bell, Mcknight and Willis",John Atkinson -439,7131,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,"Bell, Mcknight and Willis",Regina Waters -686,6970,"The hospital's commitment to patient education was commendable. The medical staff took the time to explain my condition and treatment plan thoroughly, empowering me to actively participate in my recovery.",Tamara Potter,"Bell, Mcknight and Willis",Amy Dunlap -974,5714,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Danielle Herring,"Bell, Mcknight and Willis",Aaron Owen -700,8728,I was disappointed with the lack of privacy in the shared hospital rooms. The constant noise and lack of personal space made it challenging to rest and recover peacefully.,Troy Wilson,"Bell, Mcknight and Willis",Charles Martinez -380,4544,"I had a mixed experience. The medical care was excellent, but the noise levels in the ward were disruptive, making it challenging to rest.",Courtney Walton,"Bell, Mcknight and Willis",Ricky Burns -218,3173,"The hospital's facilities were modern and well-equipped, creating a comfortable environment. However, the lack of communication about potential side effects of medications was a concern during my stay.",Michael Bates,"Bell, Mcknight and Willis",Stephen Jones -847,1544,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Bernard Miller,Cunningham and Sons,Stephen Jones -223,5436,"The hospital's medical team was knowledgeable and caring, ensuring a smooth recovery process. However, the limited options for vegetarian meals in the cafeteria were disappointing.",William Bailey,"Bell, Mcknight and Willis",Michaela Smith -551,849,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Bryan Jones,"Bell, Mcknight and Willis",Linda Collins -249,6791,"The hospital facilities were top-notch, and the medical team was highly skilled. Unfortunately, the cafeteria food left much to be desired in terms of taste and variety.",John Novak,"Bell, Mcknight and Willis",William Davis -335,1263,"The hospital's facilities were top-notch, and the rooms were comfortable. However, the bureaucratic red tape made simple tasks, like scheduling appointments, unnecessarily complicated.",Michelle Williams,"Bell, Mcknight and Willis",John York -353,2124,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Thomas Harrell,"Bell, Mcknight and Willis",John Adams -393,4431,"The medical team was compassionate, and the hospital provided a comfortable environment. Unfortunately, the TV in my room was malfunctioning.",James Jackson,"Bell, Mcknight and Willis",Jon Steele -962,9376,The hospital staff went above and beyond to accommodate my needs. I appreciate their dedication to patient care.,Sean Best,"Bell, Mcknight and Willis",Brian Pollard -341,5275,"The hospital staff was attentive and caring, ensuring my comfort during the stay. Yet, the billing process was confusing, and I received multiple invoices with different amounts.",Tracy Garza,"Bell, Mcknight and Willis",Sean Harris -753,7086,"The medical care was outstanding, and the hospital had a welcoming atmosphere. Unfortunately, the cafeteria food was subpar and lacked variety.",Karl Bruce,"Bell, Mcknight and Willis",Kevin Cruz -988,700,"The hospital's commitment to providing affordable healthcare services to all was evident. However, the long wait times in the emergency room were a drawback.",Robert Thomas,"Bell, Mcknight and Willis",Cindy Lowe -568,8556,"My experience at the hospital was overall positive. The staff was attentive, and the modern facilities contributed to a comfortable stay.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -673,8556,"The hospital staff went above and beyond to make me feel comfortable during my stay. The modern facilities and state-of-the-art equipment were reassuring, and I felt well taken care of.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -623,6837,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Phillip Weaver,"Bell, Mcknight and Willis",James Fox -666,3619,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Ashley Pena,"Bell, Mcknight and Willis",Tonya Perkins -999,9810,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Dorothy Palmer,"Bell, Mcknight and Willis",Thomas Underwood -844,3514,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Vicki Foster,Burch-White,Jose Mullen -156,9406,"The medical team demonstrated expertise and empathy. Despite the high-quality care, the outdated decor and uncomfortable beds made the stay less pleasant than it could have been.",Jesse Gordon,Burch-White,Anna Golden -321,1618,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Robert Pratt,Burch-White,Christine Chavez -556,1068,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Jenna Taylor,Burch-White,Danielle Andrews -51,8031,The hospital's commitment to patient safety was evident in their strict adherence to infection control measures. I felt reassured knowing that my well-being was a top priority for the medical team.,Scott Rivera,Burch-White,David Sawyer -55,7308,The hospital's billing process was confusing and left me with unexpected expenses. Transparent and clear billing practices are essential to avoid financial stress for patients already dealing with health issues.,Kelly Scott MD,Burch-White,Brianna Johnson -571,1186,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",Kelly Scott MD,Burch-White,Nancy Lee -107,7953,"The hospital provided top-notch medical care, and the facilities were modern and clean. The entire staff, from doctors to janitors, contributed to a positive and comfortable environment.",Sara Lopez,Burch-White,Jose Johnson -402,1029,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Mr. Justin Bryant,Burch-White,Rachel Vaughan -620,2441,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Kimberly Oliver,Burch-White,Nicole Mcdonald -211,5247,"The hospital provided comprehensive care, and the nursing staff was exceptional. Yet, the delayed response to calls for assistance was a minor inconvenience during my stay.",Courtney Walton,Burch-White,Taylor Smith -610,9372,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Marc Romero,Burch-White,Matthew Hansen -225,2142,"The hospital provided excellent care, and the nursing staff was compassionate. On the downside, the lack of coordination between shifts resulted in some confusion about my treatment plan.",Kayla Lawson,Burch-White,Dawn Nielsen -870,3976,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Kayla Lawson,Burch-White,Karen Walker -768,9212,"The hospital staff was caring and understanding, which made my stay more bearable. The facilities, though, could use some improvement.",Erin Oliver,Burch-White,Joshua Cook -478,3666,"I am grateful for the incredible care I received at the hospital. The medical team was skilled, and the cleanliness of the facilities exceeded my expectations.",Alex Anderson,Burch-White,Elizabeth Mata -272,9685,"I appreciate the hospital's commitment to cleanliness and hygiene. However, the lack of communication about changes in my treatment plan created unnecessary stress.",Joshua Brewer,Burch-White,Karen Henry -884,3927,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Kevin Warner,Burch-White,Anna Green -282,6611,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",Jasmine Perkins,Burch-White,Brian Montgomery -310,616,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Vicki Foster,Burch-White,George Allison -322,5533,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Rebecca Mckinney,Burch-White,Laura Cruz -339,7078,"The hospital's cleanliness standards were exceptional, and the nursing staff provided excellent care. However, the parking situation was inconvenient, and finding a spot was always a hassle.",Gabriela Garcia,Burch-White,Mr. Gregory Pitts -713,9853,"I had a mixed experience. While the doctors were competent, the waiting times were quite long. The facility was clean and organized.",Molly Dean,Burch-White,Brian Johnson -373,2240,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were clean and comfortable.",Lauren Williams,Burch-White,Elizabeth Green DDS -656,2586,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Steven Watson,Burch-White,Nathan Bailey DDS -619,3042,"The nursing staff was top-notch, and the cleanliness of the hospital was impressive. On the downside, the Wi-Fi was unreliable and frustrating.",Jonathan Lucas,Burch-White,Keith Smith -572,9262,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Amy Daniels,Burch-White,Joshua Villa -705,8421,"The medical staff's expertise and dedication to patient care were evident throughout my stay. However, the outdated hospital equipment raised concerns about the institution's commitment to staying current with medical advancements.",Kelly Massey,Burch-White,Deborah Leonard -584,4426,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Jonathan Decker,Burch-White,Allen Jackson -663,8243,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Kyle Campbell,Burch-White,Julia Combs -876,197,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Robert Haynes,Burch-White,Heidi Parker -787,3350,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alan Watkins,Burch-White,Jason Eaton -945,1961,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Ronald Hernandez Jr.,Burch-White,Jesus Myers -964,371,"The hospital had a warm and welcoming environment. The support from the nursing staff was exceptional, making my stay more pleasant.",Rick Herrera,Burch-White,Jordan Nelson -2,5067,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Kathy Smith,Mcneil-Ali,Gordon Thompson -124,1331,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Matthew Marks,Mcneil-Ali,Anthony Butler -983,3460,"The hospital's dedication to community outreach and health education was impressive. However, the outdated magazines in the waiting area could use an upgrade.",Joy Yoder,Mcneil-Ali,Oscar Allen -82,6933,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Ashley Goodwin,Mcneil-Ali,Dennis Gray -299,7073,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Mr. Adrian Pittman II,Mcneil-Ali,Manuel Black -481,7424,"The hospital staff was courteous, and the rooms were clean and comfortable. Unfortunately, the noise level at night was quite disruptive, affecting my sleep.",Amy Daniels,Mcneil-Ali,Anthony Miller -682,6863,"I appreciated the hospital's efforts to create a patient-friendly atmosphere. The recreational activities and support groups provided a sense of community, making the hospital feel less clinical and more comforting.",Tina Wall,Mcneil-Ali,Gregory Bentley -494,1004,"I had a positive experience at the hospital. The staff was friendly, and the medical care was top-notch. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Isaac Walker,Mcneil-Ali,Paul Davidson -774,6702,"The hospital had a welcoming environment, and the staff was accommodating. The medical care was satisfactory, but the facilities could use some modernization.",Mary Owens,Mcneil-Ali,Holly Carter -163,583,"The hospital staff was responsive and caring. Yet, the outdated magazines in the waiting area and the lack of entertainment options made the long waits more tedious.",Kimberly Oliver,Mcneil-Ali,Amber Carter -816,5427,"My stay at the hospital was excellent. The medical team was compassionate, and the facility was clean and well-maintained.",James Cooper,Mcneil-Ali,Erin Mclean -973,1663,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Perez,Mcneil-Ali,Joseph Frazier -523,4622,"I encountered both positives and negatives during my hospital stay. The medical care was satisfactory, but the administrative processes were confusing and led to unnecessary stress.",Kevin Warner,Mcneil-Ali,Anna Wilkerson -291,9046,"The hospital staff was professional, and the facilities were well-maintained. Unfortunately, the billing process was confusing, and it took a long time to sort out the financial aspects of my stay.",James Allen,Mcneil-Ali,Sally Hudson -827,5858,The hospital facilities were modern and well-equipped. The only drawback was the lack of communication regarding the daily schedule and procedures.,Kathleen Evans,Mcneil-Ali,James Warner -660,9563,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",David Lopez,Mcneil-Ali,John Silva -769,9563,"I had a positive experience overall. The medical team was knowledgeable, and the facilities were well-maintained. However, the food options were limited and not very appetizing.",David Lopez,Mcneil-Ali,John Silva -801,4792,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michelle Williams,Brown-Golden,John Silva -596,1088,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Tracy Garza,Mcneil-Ali,Brandon Thornton -612,1123,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Michael Miranda,Mcneil-Ali,Brian Charles -532,3341,"I appreciated the efforts of the hospital staff in ensuring my well-being. The medical care was satisfactory, but the facilities could use some updating for a more modern and comfortable experience.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -683,3341,"The hospital's dedication to innovation was evident in the advanced technology used for diagnostics. My treatment felt personalized, and I left with confidence in the medical team's expertise.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -886,1809,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Jason Merritt,Mcneil-Ali,Jeffrey Nelson -407,968,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Dean Hart,Mcneil-Ali,Jonathan Herring -416,9621,"The hospital had a comfortable environment, and the medical team was thorough in their examinations. Unfortunately, the Wi-Fi was slow and unreliable.",Sarah Brewer,Mcneil-Ali,Mary Pacheco -428,1915,"My stay at the hospital was fantastic. The medical team was compassionate, and the room had a beautiful view. I couldn't have asked for better care.",Jennifer Walker,Mcneil-Ali,Rachel Bray -462,5215,"I had a positive experience at the hospital overall. The medical team was attentive, and the support staff made every effort to ensure my comfort.",Brittany Harris,Mcneil-Ali,Lorraine Key -719,5931,"The medical care was excellent, and the amenities were good. Unfortunately, the lack of communication between departments caused some issues with my treatment plan.",Renee Young,Mcneil-Ali,Benjamin King -605,6008,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Steven Rivera,Mcneil-Ali,Edward Reed -872,6008,"The medical team was attentive and answered all my questions. However, the lack of personalized attention from the support staff left me feeling overlooked during my stay.",Steven Rivera,Mcneil-Ali,Edward Reed -812,6599,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Candice Manning,Mcneil-Ali,Mike Garcia -587,3413,"The hospital staff was responsive and caring. However, the lack of privacy in the shared rooms was a drawback.",Raymond Berry,Mcneil-Ali,Stacy Moody -621,8512,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Lisa Esparza,Mcneil-Ali,Julie Becker -649,3036,"I had a generally positive experience at the hospital. The medical care was excellent, but the noise from other patients was disruptive.",Jonathan Baker,Mcneil-Ali,Rachel Schroeder -960,5083,"The administrative staff at the hospital were efficient, and the check-in process was smooth. However, the billing department made errors that took weeks to rectify.",Destiny Lloyd,Mcneil-Ali,Douglas Yates -858,4010,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Pamela Hendrix,Mcneil-Ali,Michael Myers -887,3448,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Heather Anderson,Mcneil-Ali,Thomas Klein -940,4812,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Willie Gutierrez,Mcneil-Ali,Scott Wong -235,8678,"The hospital provided exceptional care, and the nursing staff was compassionate. However, the lack of communication about potential side effects of medications was a concern during my stay.",Kathy Smith,"Malone, Thompson and Mejia",Frank Rogers -7,4107,"The nurses were exceptional in providing personalized care. Unfortunately, the outdated facilities were a drawback, and the hospital could benefit from modernizing its infrastructure.",Heather Fisher,"Malone, Thompson and Mejia",Ellen Mccoy -788,4114,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Chase Mcpherson Jr.,"Malone, Thompson and Mejia",Kristi Cox -14,4985,"The hospital's staff demonstrated professionalism and empathy, making my stay more bearable. The cafeteria, though, lacked variety in food options, affecting the overall patient experience.",Christina Anderson,"Malone, Thompson and Mejia",Randy Anthony -728,4785,"The medical staff was professional and caring. The lack of privacy in the shared rooms, however, made the stay less comfortable.",Laura Hamilton,"Malone, Thompson and Mejia",Ronald James -40,8654,"The hospital's technology and equipment were state-of-the-art, contributing to an accurate diagnosis and effective treatment. The investment in modern medical technology positively impacted my recovery.",Joanne Hernandez,"Malone, Thompson and Mejia",Robert Wong -98,5875,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Kathy Watkins,"Malone, Thompson and Mejia",Rebecca Buchanan -734,4975,"The nursing staff was attentive and caring. The lack of a comfortable waiting area for family members, though, was disappointing.",Cathy Church,"Malone, Thompson and Mejia",Jeremy Johnson -289,5266,"The hospital provided excellent care, and the communication between the medical team and me was clear. However, the food options were limited and not very appetizing.",Megan Guzman,Vaughn PLC,Jeremy Johnson -154,6491,"The level of care I received from the nurses exceeded my expectations. However, the billing process afterward was confusing, and it took multiple calls to resolve the issues.",Tamara Potter,"Malone, Thompson and Mejia",Mark Morgan -594,6232,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Julie Walker,"Malone, Thompson and Mejia",Christopher Nguyen MD -784,6194,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",John Henderson,"Malone, Thompson and Mejia",Dr. Brittany Hill -598,7330,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",David Fisher,"Malone, Thompson and Mejia",Angela Osborn -292,5279,"The hospital staff went above and beyond to make me comfortable. The facilities were modern and clean, and the medical care exceeded my expectations.",Thomas Harrell,"Malone, Thompson and Mejia",Stephanie Blake -916,5090,"The hospital's emergency services were prompt and efficient. However, the follow-up care was not as thorough as I expected, leaving me with unanswered questions.",Jason Johnston,"Malone, Thompson and Mejia",Jordan Finley -328,3561,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Sean Best,"Malone, Thompson and Mejia",Pamela Martinez -675,359,"Kudos to the efficient and friendly nursing staff who made my recovery journey much smoother. The hospital's commitment to patient care is evident, and I left feeling grateful for the positive experience.",Ryan Gutierrez,"Malone, Thompson and Mejia",Mrs. Kristine Hall MD -641,7046,"The hospital staff was compassionate and caring, but the lack of clear signage made it challenging to navigate the large facility.",Catherine Howard,"Malone, Thompson and Mejia",Katelyn Ryan -896,4957,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Jason Merritt,"Malone, Thompson and Mejia",Autumn Cardenas -902,1782,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Amanda James,"Malone, Thompson and Mejia",Larry Mitchell -715,4213,"The hospital had a welcoming atmosphere, and the rooms were comfortable. However, the billing process was confusing and frustrating.",Tammy Hart,"Malone, Thompson and Mejia",Tracy Hill -564,9525,"The medical team was efficient and professional. However, the billing process was confusing and took a long time to resolve.",Jamie Wiley,"Malone, Thompson and Mejia",Charles Smith -625,4736,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Toni Caldwell,"Malone, Thompson and Mejia",Rebecca Delgado -1004,3573,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Krystal Webb,"Malone, Thompson and Mejia",Jose Wilson -828,9769,"The medical staff was efficient, and the hospital rooms were clean and comfortable. On the downside, the cafeteria food was bland, and the menu was repetitive.",Kristopher Wiley Jr.,"Malone, Thompson and Mejia",James Gutierrez -845,9444,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Crystal Cruz,"Malone, Thompson and Mejia",Tammy Ware -797,323,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Angelica Houston,"Malone, Thompson and Mejia",Jacqueline Sanchez -949,3392,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Matthew Nelson,"Malone, Thompson and Mejia",Susan Watkins -269,9429,"The hospital provided excellent medical care, and the nursing staff was attentive and supportive. However, the lack of communication about the expected recovery timeline was a drawback.",Kathy Smith,"Jones, Brown and Murray",Samantha Woodard -15,4723,"I had an excellent experience with the dedicated nursing staff. Unfortunately, the outdated entertainment options for patients made the recovery period more tedious than necessary.",Christine Perkins,"Jones, Brown and Murray",Cheryl Lynch -17,1061,"The hospital's commitment to community outreach and education impressed me. However, the lack of adequate parking facilities added unnecessary stress to my visits.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -317,1061,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -477,8671,"The hospital staff was outstanding. They were empathetic, caring, and made me feel at ease. However, the wait times were a bit too long, causing some frustration.",Alexis Nolan,"Jones, Brown and Murray",Karen Pruitt -41,8264,I was disappointed by the lack of follow-up care after my discharge. It left me feeling unsupported in my recovery journey. Comprehensive post-discharge care is vital for patients' overall well-being.,Sandra Porter,"Jones, Brown and Murray",Dustin Myers -644,7674,"The hospital provided exceptional care, but the billing process was confusing and frustrating. Clearer communication about costs would have been appreciated.",Sandra Porter,"Jones, Brown and Murray",Catherine Walsh -50,8664,"The hospital's facilities were outdated and in need of renovation. The environment did not feel conducive to healing, and modernization is essential to provide a comfortable and welcoming space for patients.",Chelsey Davis,"Jones, Brown and Murray",Emily Johnson -252,5219,"The nursing staff was exceptional, providing both medical expertise and emotional support. Unfortunately, the hospital's Wi-Fi connectivity was unreliable and frustrating.",Andrew Bates,"Jones, Brown and Murray",Lindsay Johnson -77,4563,"The hospital staff were accommodating and supportive, making my stay as comfortable as possible. The attention to detail and personalized care contributed to a positive experience.",Stephanie Vargas,"Jones, Brown and Murray",Bobby Hurst -642,4994,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of amenities for families made it difficult for my loved ones.",Alexander Jimenez,"Jones, Brown and Murray",Tara Murray -152,7133,"I encountered a mix of experiences during my stay. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays and disorganization.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -183,7133,"The hospital provided quality care, and the staff was accommodating. On the downside, the limited visitation hours made it challenging for family members to spend time with me.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -563,5223,"The hospital had a warm and welcoming atmosphere. The only downside was the noise, which made it difficult to rest at times.",Ronald Taylor,"Jones, Brown and Murray",Christine Jones -158,8765,"The facilities were clean, and the nurses were attentive to my needs. Unfortunately, the Wi-Fi was unreliable, making it challenging to stay connected with loved ones during my stay.",Michael Delgado,"Jones, Brown and Murray",Michelle Holmes -232,3758,"The hospital's medical team was attentive and thorough, ensuring a successful recovery. However, the limited availability of certain medical specialists was a drawback to an otherwise positive experience.",Ashley Young,"Jones, Brown and Murray",Jeffrey Bell -239,4232,I was disappointed with the lack of communication from the medical team. It felt like I was constantly in the dark about my treatment plan and prognosis.,Ivan Doyle,"Jones, Brown and Murray",Mason Phelps -549,6443,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Katherine Jones,"Jones, Brown and Murray",Jesse Cochran -298,8013,"I am grateful for the compassionate care I received during my hospital stay. The medical team was knowledgeable, and the facilities were comfortable.",Joe Mendoza,"Jones, Brown and Murray",Sheryl Hudson -312,9243,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Allison Steele,"Jones, Brown and Murray",Zachary Cantrell -857,950,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Michael Watson,"Jones, Brown and Murray",Christopher Barron -761,1683,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Austin Alvarado,"Jones, Brown and Murray",Richard Gonzalez -396,4845,"I had a satisfactory experience. The medical care was good, but the parking situation at the hospital was inconvenient for both patients and visitors.",Jason Merritt,"Jones, Brown and Murray",Gregory Adams -452,1506,"The hospital's commitment to a holistic approach to healing was evident. They offered complementary therapies like art and music, contributing positively to my recovery.",Ryan Craig,"Jones, Brown and Murray",Lauren Williamson -466,4064,"The hospital had a friendly and supportive nursing staff. On the downside, the lack of clear communication about post-discharge care instructions was a bit concerning.",Andre Johnson,"Jones, Brown and Murray",Nicholas Stewart -474,9793,"The hospital provided excellent care, and the nursing staff was compassionate. However, the limited visiting hours made it difficult for my family to offer consistent support.",Renee Young,"Jones, Brown and Murray",Brett Stark -714,6816,"The nurses were amazing, providing excellent care. Unfortunately, the food options were limited and not very appetizing.",Matthew Perez,"Jones, Brown and Murray",Lauren Johnson -678,9840,"The hospital's commitment to patient safety was evident in their strict adherence to hygiene protocols. I felt secure throughout my stay, and the staff's dedication to cleanliness did not go unnoticed.",Kristopher Wiley Jr.,"Jones, Brown and Murray",Jason Shepard -971,2384,I appreciated the hospital's emphasis on patient education. The doctors took the time to explain my condition and treatment options in a way that was easy to understand.,Derek Edwards,"Jones, Brown and Murray",Joshua Berry -848,1427,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Gary Baldwin,"Jones, Brown and Murray",Virginia Morgan -984,3919,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Gary Baldwin,"Jones, Brown and Murray",Stephanie Powers -868,2294,"The hospital had state-of-the-art equipment, and the medical staff was highly professional. However, the lack of parking space and confusing signage made navigating the facility a challenge.",Sarah Lane,"Jones, Brown and Murray",Michael Spears -975,7060,"The hospital's dedication to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Katrina Torres,"Jones, Brown and Murray",Michael Gray -379,4988,"The cleanliness of the hospital impressed me, and the medical staff took the time to explain procedures thoroughly.",Kathy Smith,"Burke, Griffin and Cooper",Justin Peterson -227,1604,"The hospital's facilities were clean and well-maintained, creating a comfortable environment for recovery. However, the limited options for dietary restrictions made it challenging to find suitable meals.",Ashley Goodwin,"Burke, Griffin and Cooper",Victor Thomas -12,9911,"I encountered a few hiccups in the billing process, which caused unnecessary stress during an already challenging time. Improved transparency and communication regarding financial matters are essential.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -717,9911,"The hospital environment was calming, and the support staff was helpful. On the downside, the Wi-Fi connection was unreliable.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -811,9911,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -1000,730,"The hospital's dedication to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Thomas Middleton,"Burke, Griffin and Cooper",Erik Wood -25,1827,"The hospital's commitment to diversity and inclusion was evident in their culturally sensitive approach to patient care. However, the administrative delays in processing paperwork created unnecessary stress during my admission.",Mr. Adrian Pittman II,"Burke, Griffin and Cooper",Stanley Crane -34,1134,"The medical team at the hospital demonstrated exceptional professionalism. They took the time to explain my treatment plan thoroughly, and I felt confident in their expertise. A commendable level of care.",Rebecca Wallace,"Burke, Griffin and Cooper",Luke Lowery -39,5070,"I had a mixed experience at the hospital. While some nurses were exceptional, others seemed disinterested in providing quality care. Consistency in the level of care is crucial for patient satisfaction.",Jenna Taylor,"Burke, Griffin and Cooper",Peter Bishop -186,4840,"The hospital staff was friendly and professional, providing excellent medical care. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",April Bailey,"Burke, Griffin and Cooper",Jonathon Perez -56,8058,I was disappointed with the lack of coordination among the different departments at the hospital. It resulted in unnecessary delays in my treatment and a less-than-optimal overall experience.,Renee Brown,"Burke, Griffin and Cooper",Robert Williams -593,2785,"The hospital's medical team was efficient and professional. However, the lack of communication about my treatment plan was frustrating.",Matthew Perez,Shea LLC,Robert Williams -631,6535,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Amy Daniels,"Burke, Griffin and Cooper",Tamara Smith -329,7204,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Tanya Mccarty,"Burke, Griffin and Cooper",Mark Fisher -103,6940,"The hospital staff was incredibly supportive during my stay. They made sure I felt comfortable and well-cared for, which made a significant difference in my recovery.",Lisa Wilkinson,"Burke, Griffin and Cooper",Catherine Anderson -541,9263,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Alexander Jimenez,"Burke, Griffin and Cooper",David Carlson -143,5602,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Ryan Thomas,"Burke, Griffin and Cooper",Beth Perry -202,6847,"I was impressed by the hospital's state-of-the-art equipment and technology. However, the lack of communication about the treatment plan was a bit frustrating at times.",Sabrina Rodriguez,"Burke, Griffin and Cooper",Evelyn Bowman -177,3401,"The hospital staff was professional and caring, providing excellent medical care. However, the cafeteria food was subpar, and the options were limited.",Patricia Stewart,"Burke, Griffin and Cooper",Alex Patel -346,3431,"The medical team was thorough and efficient in their care. However, the lack of available amenities for families made it challenging for my loved ones during the extended hospital stay.",Patricia Stewart,"Burke, Griffin and Cooper",Melissa Weaver -421,3942,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Burke, Griffin and Cooper",Jason Bailey -829,7313,"I had a mixed experience at the hospital. The doctors were skilled, but the administrative processes were confusing, leading to frustration and delays.",James Cooper,"Burke, Griffin and Cooper",James Nunez -201,174,"The hospital's medical team was outstanding, providing thorough explanations and personalized care. On the downside, the cafeteria food left much to be desired in terms of taste and variety.",Julie Walker,"Burke, Griffin and Cooper",Michael Morgan -881,9736,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Joseph Jackson,"Burke, Griffin and Cooper",Stephanie Garza MD -371,4453,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -771,4453,"I was disappointed with the cleanliness of the hospital. The staff was friendly, but the lack of hygiene was a concern for me.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -251,1467,"The hospital's cleanliness and hygiene standards were impressive. However, the communication between different departments could be more streamlined for better coordination.",Joseph Jones,"Burke, Griffin and Cooper",Sarah Sanders -261,8074,"The hospital's medical team was skilled, and the facilities were modern. However, the administrative processes were confusing, leading to delays in my treatment.",Sheri Howard,"Burke, Griffin and Cooper",Kimberly Cruz -323,6418,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Michael Watson,"Burke, Griffin and Cooper",Matthew Little -331,1505,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable, and the support staff was friendly. The food, however, left much to be desired.",Charles Kim,"Burke, Griffin and Cooper",Brandy Cross -342,5479,"The hospital's infrastructure was modern and well-maintained. However, the lack of coordination between different departments led to delays in my treatment.",Zachary Campbell,"Burke, Griffin and Cooper",Timothy Martinez -465,7492,"The hospital staff was accommodating, and the facilities were well-maintained. Unfortunately, the limited TV channels in the patient rooms made leisure time less enjoyable.",Karl Bruce,"Burke, Griffin and Cooper",Kyle Rivera -486,7341,"The hospital staff was compassionate, and the doctors were thorough in their examinations. On the downside, the waiting area was crowded, making it uncomfortable for patients and their families.",Jonathan Lucas,"Burke, Griffin and Cooper",Jill Knight -498,4774,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were slow and disorganized, leading to some frustration.",Gary Swanson,"Burke, Griffin and Cooper",Zachary Williams -950,3712,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jonathan Obrien DDS,"Burke, Griffin and Cooper",Melanie Richardson -688,5683,The hospital's state-of-the-art equipment and modern facilities were reassuring. The medical team's expertise and dedication to patient care made my stay as comfortable as possible.,Ryan Jarvis,"Burke, Griffin and Cooper",James Jones -655,9,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -889,9,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -731,2881,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Richard Garcia,"Burke, Griffin and Cooper",Valerie Simpson -958,5418,"I had a mixed experience at the hospital. While the medical care was top-notch, the waiting times were frustratingly long.",Derek Phillips,"Burke, Griffin and Cooper",Mark Sanders -383,6747,"The hospital had a friendly and supportive environment. Unfortunately, the discharge process was slow and took longer than expected.",Kathy Smith,"Wheeler, Bryant and Johns",Robert Turner -786,3839,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Teresa Frost,"Wheeler, Bryant and Johns",Darryl Martin -13,2185,"The hospital's state-of-the-art technology greatly contributed to the accuracy of my diagnosis. However, the lack of emotional support from the medical team made the overall experience less comforting.",Lauren Williams,"Wheeler, Bryant and Johns",Thomas Erickson -790,5488,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Christina Anderson,"Wheeler, Bryant and Johns",Kimberly Perry -735,6764,"The hospital had a clean and organized environment. The constant beeping of machines in the ward, however, was disruptive to my rest.",Natalie Mitchell,"Wheeler, Bryant and Johns",Michael Bennett -737,6019,"The hospital had a welcoming atmosphere, and the medical staff was efficient. The limited menu options in the cafeteria, however, were a downside.",Victor Dean,"Wheeler, Bryant and Johns",Alex Maynard -616,3288,"The hospital staff was compassionate and understanding. However, the food options were limited and not very appetizing.",Tasha Griffin,"Wheeler, Bryant and Johns",Tyler Jackson -170,1652,"The nursing staff was caring, making my hospital stay more bearable. However, the outdated TV in the room and limited channel options made leisure time less enjoyable.",Renee Brown,"Wheeler, Bryant and Johns",Christina George -148,5124,"The nursing staff was compassionate and attentive. However, the lack of communication between shifts caused some confusion about my treatment plan.",Elaine Page DVM,"Wheeler, Bryant and Johns",Lynn Koch -471,1860,"The hospital's commitment to patient safety was evident. However, the lack of clear signage made it challenging to find specific departments within the facility.",Aaron Graves,"Wheeler, Bryant and Johns",Peggy Moody -120,4804,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Lisa Brewer,"Wheeler, Bryant and Johns",Hannah Cruz -91,9652,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Michael Bennett,"Wheeler, Bryant and Johns",Martin Miller -112,918,"My hospital stay was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Kimberly Johnson,"Wheeler, Bryant and Johns",Marissa Dixon -122,7490,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Isaac Walker,"Wheeler, Bryant and Johns",Mr. Dustin Thomas -241,6881,"I appreciate the hospital's efforts in ensuring a safe and clean environment. The hygiene protocols were strictly followed, which gave me peace of mind.",Danielle Herring,"Wheeler, Bryant and Johns",Michael Caldwell -368,6157,"The nursing staff was compassionate and attentive, ensuring my needs were met. Unfortunately, the administrative processes were a bit convoluted, causing confusion and delays in my treatment.",Jennifer Evans,"Wheeler, Bryant and Johns",Brian Duncan -214,9505,"The medical team at the hospital was efficient and caring, ensuring a smooth recovery process. However, the lack of privacy in shared patient rooms was a drawback to an otherwise positive stay.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -397,9505,"The hospital had a welcoming atmosphere, and the medical team was thorough in their examinations. However, the wait times for appointments were long.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -533,1043,"The hospital staff was accommodating and understanding of my needs. However, the cleanliness of the facilities was questionable, and that detracted from an otherwise positive experience.",Joseph Johnson,"Wheeler, Bryant and Johns",David Wilson -268,4175,"The hospital's medical team was dedicated and caring, providing personalized attention. However, the administrative delays in processing paperwork were frustrating.",Logan Diaz,"Wheeler, Bryant and Johns",Courtney Moore -418,6723,"The cleanliness and hygiene standards at the hospital were commendable. However, the lack of variety in the hospital menu made meals repetitive.",Lisa Anderson,"Wheeler, Bryant and Johns",Chad Pruitt -779,9942,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Andre Johnson,"Wheeler, Bryant and Johns",Marisa Jennings -503,3150,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of clear communication about the treatment plan was a bit frustrating.",William Soto,"Wheeler, Bryant and Johns",Gary Smith -566,8543,"The hospital provided excellent care, but the lack of communication between the departments led to some misunderstandings.",Johnny Morgan,"Wheeler, Bryant and Johns",Victor Davidson -934,1910,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Raymond Berry,"Wheeler, Bryant and Johns",Stephanie Pratt -738,3181,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Edgar Harris,"Wheeler, Bryant and Johns",Holly Sanford -854,9269,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Amy Payne,"Wheeler, Bryant and Johns",Carl Stone -915,2303,"The hospital had a comforting ambiance, and the nursing staff was exceptional. Unfortunately, the outdated entertainment options made the stay a bit dull.",Amber Parker MD,"Wheeler, Bryant and Johns",Malik Serrano -3,4858,"Unfortunately, my stay was marred by a lack of cleanliness in the facilities. It's essential for the hospital to maintain a hygienic environment to prevent infections and ensure patient well-being.",Teresa Frost,Vaughn PLC,Donald Sparks -16,6120,"The hospital's commitment to holistic care was evident in the inclusion of alternative therapies. However, the limited availability of these services hindered my access to complementary treatments.",Robert Davis,Vaughn PLC,Melissa Davis -759,9905,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Robert Davis,Vaughn PLC,Paul Henry -506,2629,"I had a mixed experience at the hospital. The medical care was exceptional, but the noise level in the ward was higher than expected, affecting my rest.",Jesse Gordon,Vaughn PLC,Justin Robertson -762,2974,"My stay at the hospital was excellent. The medical team was professional, and the facilities were clean and comfortable.",Monique Hall,Vaughn PLC,Gregory Baker -324,508,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Elizabeth Henderson,Vaughn PLC,Monica Hampton -71,7675,"The hospital staff were professional and caring. They took the time to explain my treatment plan and address any concerns I had, making me feel confident in the care I was receiving.",Rebecca Hernandez,Vaughn PLC,Jacob Gibson -355,7974,"The hospital's medical team was thorough in their examinations and treatments. However, the lack of a proper explanation of the billing process left me feeling confused and frustrated.",Benjamin Stevens,Vaughn PLC,Mitchell Hampton -78,4535,"My stay at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Craig Brooks,Vaughn PLC,Andrea Chavez -113,7127,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Connie Tucker,Vaughn PLC,Reginald Miller -128,7150,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Nathan Davis,Vaughn PLC,Rodney Clark -233,232,"I appreciate the hospital's dedication to patient well-being, and the facilities were modern and well-equipped. However, the administrative processes, particularly the billing, were confusing and time-consuming.",Ronald Taylor,Vaughn PLC,Matthew Russell -664,7198,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Lance Gonzalez,Vaughn PLC,Edward Sheppard -835,9650,"I had a positive experience with the medical team. The hospital rooms were comfortable, but the cafeteria food options were limited, and the quality was mediocre.",Miranda Hunt,Vaughn PLC,Michael Knight -406,1481,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Cristina Ortega,Vaughn PLC,Matthew Barton -810,7433,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Danielle Herring,Vaughn PLC,Beth Williams -775,6072,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of personal attention from the staff was disappointing.",Amy Smith,Vaughn PLC,Michael Lindsey -180,755,"The medical team was knowledgeable, and the facilities were clean. However, the lack of privacy curtains in the shared rooms affected my sense of personal space.",Carol Sanchez,Vaughn PLC,Karen Butler -187,9428,"The nursing staff was attentive and caring, making my hospital stay more comfortable. However, the lack of a bedside table made it challenging to keep personal items organized.",Vickie Collins,Vaughn PLC,Heather Smith -624,1210,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Erin Oliver,Vaughn PLC,Brendan Cross -823,107,"The hospital staff was friendly and professional. The cleanliness and hygiene standards were impressive. However, the discharge process felt rushed and disorganized.",Logan Diaz,Vaughn PLC,Allison White -441,2238,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. However, the administrative staff seemed overwhelmed, leading to delays in paperwork.",Jesus Snyder,Vaughn PLC,Angela Gomez -495,3777,"The hospital staff was caring and attentive. The facilities were clean, and the medical care was excellent. However, the noise level in the ward was higher than expected, affecting my rest.",Michael Watson,Vaughn PLC,Mrs. Kelly Berry DVM -333,7583,"I appreciate the hospital's effort to maintain a clean environment. The janitorial staff did an excellent job. On the downside, the waiting times for tests were longer than expected.",Christopher Webster,Vaughn PLC,Lorraine Scott -608,3870,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Gabriela Garcia,Vaughn PLC,Erica Walker -360,9276,"I appreciate the hospital's commitment to patient well-being. However, the lack of a designated quiet area for relaxation and meditation made it difficult to find moments of peace during my stay.",Lori Burns,Vaughn PLC,Ian Brooks -865,5659,"The hospital staff was friendly and efficient. The cleanliness and hygiene were impressive. Unfortunately, the Wi-Fi was unreliable, making it difficult to stay connected with loved ones.",Lauren Williams,Vaughn PLC,Michael Cook -377,4,I am grateful for the attentive care I received during my stay. The hospital environment was calm and conducive to healing.,Mark Vang,Vaughn PLC,Mrs. Brandy Flowers -424,6978,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",Amy Bryant,Vaughn PLC,Paige Young -484,364,"The hospital staff was friendly and attentive. The facilities were clean, and the medical care was top-notch. However, the cafeteria food was subpar, and more diverse options would be appreciated.",Matthew Ward,Vaughn PLC,Douglas Myers -639,5729,"The hospital provided great care, but the lack of communication between different departments led to some confusion about my treatment plan.",Matthew Perez,Vaughn PLC,Hector Barajas -711,3086,"My stay at the hospital was outstanding. The medical team was skilled, and the facilities were top-notch. I felt well taken care of.",Jamie Marks,Vaughn PLC,Bryan Newton -258,81,"I had a mixed experience at the hospital. The medical care was adequate, but the lack of privacy in the shared rooms made it challenging to rest and recover.",Teresa Frost,Rose Inc,Douglas Crawford -130,4786,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Michael Morales,Rose Inc,Olivia Walsh -599,726,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Joy Yoder,Rose Inc,Thomas Rodriguez -27,9062,"The hospital's commitment to patient privacy and confidentiality was reassuring. However, the lack of communication about the potential side effects of prescribed medications left me feeling uninformed about my treatment plan.",Doris Rodriguez,Rose Inc,Chelsea Miller -651,6746,"The hospital staff was compassionate and understanding, but the lack of clear communication about my treatment plan was frustrating.",Victor Dean,Rose Inc,Scott Murillo -697,6964,The hospital's commitment to community outreach and health education was admirable. It reflected a genuine desire to improve the overall well-being of the community beyond just treating illnesses.,Rebecca Wallace,Rose Inc,Gloria Taylor -712,1120,"The hospital staff was friendly and compassionate. However, the noise level in the ward made it challenging to rest properly.",Nicole Keith,Rose Inc,Anthony Steele -990,5456,"The hospital's commitment to continuous improvement was evident in the ongoing renovations. However, the construction noise during my stay was bothersome.",Chelsey Davis,Rose Inc,Tracy Coleman -681,6915,"The medical team was fantastic, providing top-notch care. However, the lack of communication between shifts led to misunderstandings about my treatment plan. Coordination needs improvement.",Shelley Cobb,Rose Inc,Chloe Scott -64,3983,"I had a mixed experience at the hospital. While the medical care was satisfactory, the administrative process was confusing, and it took a long time to get answers to my questions.",Amy Daniels,Rose Inc,Doris Bray -420,6895,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Amy Daniels,Rose Inc,John Lewis -65,886,"The hospital staff were friendly and empathetic. They made me feel heard and supported, which greatly contributed to my overall positive experience during a challenging time.",Elaine Page DVM,Rose Inc,Robert Trevino -479,2975,"The hospital atmosphere was welcoming, and the nurses were always available to address my concerns. However, the billing process was confusing, and it took a while to sort out.",Andrew Bates,Rose Inc,Amy Soto -115,6629,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alexander Jimenez,Rose Inc,Kathy Campbell -141,9908,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Robert Clements,Rose Inc,Michelle Young -164,5152,"The medical team was knowledgeable, and the facilities were clean. Unfortunately, the loud announcements over the intercom were disruptive and made it challenging to rest.",Lance Gonzalez,Rose Inc,Matthew Williams -948,1785,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Leslie Williams,Castaneda-Hardy,Matthew Williams -179,4416,"I appreciate the dedication of the hospital staff in ensuring my well-being. Nonetheless, the lack of variety in the hospital menu made the dining experience monotonous.",Erin Ramirez,Rose Inc,April Bridges -736,118,"The medical team was thorough, and the facilities were modern. Unfortunately, the lack of communication about my treatment plan was frustrating.",Vickie Collins,Rose Inc,Martha Franklin -555,4964,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Rhonda Diaz,Rose Inc,Kevin King MD -220,8531,"I appreciate the hospital's commitment to patient well-being, and the medical staff was attentive. However, the administrative processes, especially the discharge paperwork, were time-consuming and confusing.",Jo Beard,Rose Inc,Russell Mata -559,2421,"My stay at the hospital was excellent. The medical team was responsive, and the facilities were clean and comfortable.",Kayla Lawson,Rose Inc,Jennifer Davidson -755,5775,"The doctors were knowledgeable, and the hospital had a clean environment. The lack of privacy in the shared rooms, however, was a drawback.",Yvonne Jacobs,Rose Inc,Cassandra Chan -250,9873,"I felt like a priority at the hospital, thanks to the attentive medical staff. However, the lack of communication about the potential side effects of my medication was concerning.",Dustin Griffin,Rose Inc,Chad Nguyen -255,8276,"The hospital's medical team was knowledgeable and efficient, but the lack of clear communication about my treatment plan left me feeling anxious and uncertain.",Kyle Campbell,Rose Inc,Breanna Nielsen -414,3056,"The nursing staff at the hospital was compassionate and supportive. However, the billing process was confusing and took a while to resolve.",April Shea,Rose Inc,Tamara Suarez -279,7844,"I had a positive experience overall at the hospital. The nursing staff was caring and attentive, and the facilities were modern and well-equipped.",Tara Payne,Rose Inc,Bridget King -306,3129,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",Victoria Chavez,Rose Inc,Gary Robinson -903,3200,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jason Johnston,Rose Inc,Melissa Malone -577,6289,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Edgar Harris,Rose Inc,Megan Allison -457,4724,"The hospital's commitment to cleanliness was evident. However, the lack of greenery and natural light in the patient rooms made the environment feel a bit sterile.",Karen Klein,Rose Inc,Brendan Garrett -838,6450,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of coordination between departments led to delays in my treatment.",Sara Newman,Rose Inc,Ashley Vincent -825,5980,"The hospital provided excellent care, and the doctors were thorough in their examinations. However, the parking situation was inconvenient, and the fees added up quickly.",Eric Patton,Rose Inc,Shane Drake -704,8255,I appreciated the hospital's emphasis on preventive care and wellness. The educational materials provided valuable insights into maintaining a healthy lifestyle beyond just treating illnesses.,Mary Medina,Rose Inc,Daniel Barrett -745,5250,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Kristin Phillips,Rose Inc,Ryan Espinoza -891,5725,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Andrew Miller,Rose Inc,Allison Woods -925,9446,"The hospital's facilities were impressive, and the medical staff was professional. However, the lack of communication about my discharge plan caused some anxiety.",Joshua Guerrero,Rose Inc,Douglas Moore -364,6471,"The nursing staff provided excellent care, and the medical facilities were modern and well-equipped. However, the lack of coordination between different departments led to delays in my treatment plan.",Teresa Frost,Taylor and Sons,David Johnson -470,8814,"The hospital staff was compassionate, and the facilities were modern. However, the lack of Wi-Fi in the patient rooms made it challenging to stay connected with loved ones.",Robert Davis,Taylor and Sons,Rebecca Young -32,1695,"I cannot thank the hospital staff enough for their kindness and dedication. The doctors were knowledgeable, and the nurses made sure I felt supported every step of the way. A truly positive experience.",Shawn Bryant,Taylor and Sons,Cameron Ross -38,8701,The hospital staff displayed genuine empathy and compassion. It made a significant difference in my overall experience. I felt like more than just a patient; I felt cared for as an individual.,Ryan Curry,Taylor and Sons,Adam Lyons -45,9499,My experience at the hospital was overshadowed by the unavailability of essential medications. This oversight significantly impacted my recovery and raised concerns about the hospital's pharmacy management.,Dustin Perez,Taylor and Sons,Tammy Adams -147,9499,"My stay at the hospital was a breeze. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout.",Dustin Perez,Taylor and Sons,Tammy Adams -60,9657,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Elizabeth Henderson,Taylor and Sons,Shane Colon -62,5353,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Mark Martin,Taylor and Sons,Tanya Robinson -536,7640,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Maria Thompson,Taylor and Sons,Samantha Murray -560,9335,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the waiting times were a bit frustrating.",Shawn Ellis,Taylor and Sons,Gloria Kelly -951,1760,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Logan Hansen,Taylor and Sons,Andrea King -109,4728,"The hospital staff was attentive and compassionate, making my stay more bearable. However, the long wait times for certain procedures were a significant drawback to my overall experience.",Christie Kelly,Taylor and Sons,Tricia Wells -172,1157,"The hospital staff was friendly and caring, creating a positive atmosphere. However, the lack of proper signage made it challenging to navigate the large hospital building.",Lindsay Martinez,Taylor and Sons,Chelsea Henderson -131,5704,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Elaine Medina,Taylor and Sons,Daniel Palmer -138,4318,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Lisa Wallace,Taylor and Sons,Shelby Brown -188,5469,"I received quality care from the medical team, and the facilities were clean. However, the lack of a designated relaxation space for patients was a missed opportunity.",Robert Clements,Taylor and Sons,Kristine Wilson -589,6323,"The hospital provided top-notch medical care, and the facilities were modern and comfortable. However, the parking situation was inconvenient.",Elizabeth Meyer,Taylor and Sons,Denise Tanner -161,7224,"The hospital staff was friendly and accommodating, but the lack of transparency in billing was frustrating. Clearer communication about costs would have improved the overall experience.",Melissa Conway,Taylor and Sons,James Johnson -165,7782,"The nursing staff was fantastic, providing emotional support during a challenging time. However, the lack of aftercare information and resources was a downside.",Linda Morris,Taylor and Sons,Dr. Christian Lee -888,8978,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Courtney Walton,Taylor and Sons,Miss Holly Freeman -288,198,"I had a positive experience overall. The medical staff was competent, and the facilities were clean. The only downside was the noisy environment, which made it challenging to rest.",Nathan Smith,Taylor and Sons,Lori Anderson -561,4619,"The hospital staff was compassionate, but the outdated facilities made the overall experience less pleasant.",Michelle Williams,Taylor and Sons,Thomas Long -607,4584,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Katherine Jones,Taylor and Sons,Charles Anderson -320,8133,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",David Lopez,Taylor and Sons,Mr. Matthew Murray -325,5116,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Melissa Paul,Taylor and Sons,Sarah Calhoun -352,4457,"The hospital's medical team was dedicated to providing quality care. Unfortunately, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Madison Hardin,Taylor and Sons,Jonathan Bryant -690,4457,"The hospital's focus on holistic care, including mental health support, was a pleasant surprise. The counseling services provided added a valuable dimension to my recovery journey.",Madison Hardin,Taylor and Sons,Jonathan Bryant -427,4855,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Anthony Phillips,Taylor and Sons,Lindsay Oneill -963,821,My hospital experience was marred by the unavailability of essential medications. This created unnecessary stress during my recovery.,Jared Diaz,Taylor and Sons,Laura Schmidt -443,9105,"I appreciated the personalized care I received from the hospital staff. They took the time to explain procedures and answer my questions, making me feel well-informed.",Carolyn Clark,Taylor and Sons,Michael Conway -454,2181,"The hospital staff was friendly and attentive, creating a positive atmosphere. However, the lack of clear signage made it challenging to navigate the hospital's expansive layout.",Patrick Williams,Taylor and Sons,Misty Palmer -665,3853,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Taylor and Sons,Sandra Robinson -475,369,"My stay at the hospital was fantastic. The doctors were knowledgeable, and the nurses were very kind and supportive. The facilities were top-notch, making my recovery comfortable.",Steven Rivera,Taylor and Sons,Eric Price -550,6966,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",William Soto,Taylor and Sons,Shane Franklin -535,1930,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Kathryn Johnson,Taylor and Sons,Felicia Patterson MD -548,4522,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Tammy Hart,Taylor and Sons,Lindsay Evans -569,7243,"I had a challenging experience at the hospital. The medical care was satisfactory, but the administrative process was a nightmare.",Jessica Matthews,Taylor and Sons,Julie Patel -699,219,The hospital's commitment to sustainability and eco-friendly practices was evident. It was refreshing to see an institution in the healthcare sector taking steps to reduce its environmental impact.,Mary Mahoney,Taylor and Sons,Thomas Lopez -864,7999,"I can't express my gratitude enough for the excellent care I received. The medical team was exceptional, but the noise from the construction outside my room was unbearable.",Abigail Fuller,Taylor and Sons,Amy Townsend -653,6185,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Donna Mcintyre,Taylor and Sons,Jessica Brown -882,1628,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Tamara Potter,Taylor and Sons,Christopher Bray -574,7162,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Teresa Frost,Walton LLC,Kelsey Mills -469,3085,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were confusing, leading to delays in my treatment.",Joy Yoder,Walton LLC,Luke Lee -546,7801,"The hospital staff was understanding and accommodating, contributing to a positive experience during my stay. However, the outdated facilities could use some improvement for a more modern and comfortable environment.",Ashley Goodwin,Walton LLC,Teresa Zimmerman -36,3263,"I was pleasantly surprised by the quality of food provided at the hospital. It exceeded my expectations, and the dietary staff accommodated my special requests. A positive aspect of my stay.",Todd Mccormick,Walton LLC,Shannon Long -46,5926,"The hospital's physical therapy team was outstanding. They tailored my exercises to my needs, monitored my progress closely, and played a crucial role in expediting my recovery. Highly commendable.",Renee Hicks,Walton LLC,Jonathan Sanford -49,9630,"I experienced a delay in receiving test results, causing anxiety during an already stressful time. Timely communication of results is crucial for patients' peace of mind and overall well-being.",Gerald Smith,Walton LLC,Patrick Cook -89,1810,"The hospital staff were friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable and efficient, contributing to a smooth recovery.",Shelley Cobb,Walton LLC,Larry Herrera -215,1774,"I had a satisfactory experience at the hospital, with the medical team addressing my concerns promptly. Yet, the limited options for dietary restrictions made it challenging to find suitable meals.",Amy Daniels,Walton LLC,Christopher Robinson -70,6140,"My experience at the hospital was a rollercoaster. The medical care was excellent, but the lack of coordination among different departments led to confusion and delays in my treatment.",Kelsey Dillon,Walton LLC,Ryan Jenkins -83,4946,"The hospital staff were accommodating, and the medical team provided excellent care. However, there were issues with the billing process that added unnecessary stress to my overall experience.",Richard Carter,Walton LLC,Rodney Zimmerman -450,5994,"The hospital had a comforting environment, and the medical team was proactive in addressing my concerns. However, the limited visiting hours were a drawback for family support.",Natalie Browning,Walton LLC,Nathan Jackson -400,5638,"The hospital staff was kind and attentive. However, the outdated hospital gowns made me feel uncomfortable during my stay.",Linda Morris,Walton LLC,Henry Wagner -173,3285,"The medical team was attentive, and the facilities were clean. Unfortunately, the lack of natural light in the rooms made the environment feel a bit dreary.",Cristina Ortega,Walton LLC,Kevin Daniel -741,3284,"The nursing staff was compassionate, and the hospital had a modern feel. The slow response time for requests, though, was a drawback.",James Cooper,Walton LLC,Matthew Davis -676,7976,"The hospital's atmosphere was warm and welcoming, but the outdated infrastructure was a letdown. The facility could benefit from some renovations to match the quality of care provided.",Joseph Jones,Walton LLC,Patrick Nelson -685,3873,"My stay was overshadowed by the lack of transparency in billing. Unexpected charges left me frustrated, and the financial aspect of the hospital's services needs to be more straightforward.",Megan Guzman,Walton LLC,Mrs. Karen Garza -425,2476,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Ryan Gutierrez,Walton LLC,Andrew Flores -348,6691,"The hospital's commitment to patient comfort was commendable, with spacious rooms and modern amenities. Nevertheless, the cafeteria hours were limited, and late-night snacks were hard to come by.",Casey Reyes,Walton LLC,Christina Barajas -362,5169,"The medical team at the hospital was professional and thorough in their care. Unfortunately, the lack of parking spaces for visitors made it inconvenient for my family during their visits.",Molly Dean,Walton LLC,Elizabeth Johnson -451,754,I was impressed by the hospital's commitment to patient education. The doctors took the time to explain my condition and treatment options in detail.,Melissa Garrett,Boyd PLC,Elizabeth Johnson -423,3215,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Louis Sullivan,Walton LLC,Alan Fields -614,5326,"My stay at the hospital was fantastic. The nurses were kind and attentive, and the facilities were clean and comfortable.",Patrick Williams,Walton LLC,Mariah Dalton -456,3693,I had a challenging experience at the hospital due to a mix-up in scheduling appointments. This caused delays in my treatment and added unnecessary stress to my recovery.,Kayla Hunter DDS,Walton LLC,Daniel Moreno -670,3693,"Unfortunately, my experience was marred by a lack of communication among the medical staff. It seemed like they were not on the same page, leading to some confusion about my treatment plan.",Kayla Hunter DDS,Walton LLC,Daniel Moreno -531,7407,"My hospital stay was comfortable, thanks to the attentive nursing staff and clean facilities. However, the lack of coordination between different departments created some communication gaps in my treatment.",Kyle Nichols,Walton LLC,Heather Austin -853,3439,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Kathryn Johnson,Walton LLC,Patrick Rodriguez -539,6244,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Aaron Johnson,Walton LLC,Phyllis Bell -966,1003,The hospital had a well-organized system in place for patient care. The medical team collaborated efficiently to provide comprehensive treatment.,Scott Barton,Walton LLC,Jonathan Moore -820,1162,"The hospital environment was welcoming, and the rooms were comfortable. Unfortunately, the food options were limited, and the quality was subpar.",Johnny White MD,Walton LLC,Kimberly Taylor -941,4353,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Julie Long,Walton LLC,Wendy Davis -4,5410,The hospital staff went above and beyond to make me feel comfortable and informed about my treatment. The positive attitude of the medical team greatly contributed to my overall well-being.,Matthew Marks,Little-Spencer,Kayla Hughes -725,3950,"The medical care was excellent, and the cleanliness was impressive. However, the receptionist at the front desk was unhelpful and unfriendly.",Michael Morales,Little-Spencer,John Jordan -326,1690,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Shawn Bryant,Little-Spencer,Greg Webster -247,4182,"I had a mixed experience. The medical care was satisfactory, but the administrative delays in processing paperwork added unnecessary stress to my stay.",Sandra Porter,Little-Spencer,Valerie Willis -48,6822,"The hospital's support staff, including janitorial and administrative personnel, were friendly and helpful. Their positive attitude contributed to a more pleasant overall experience during my stay.",April Bailey,Little-Spencer,Nicole Lane -73,7696,"I had a frustrating experience at the hospital. The communication between the medical staff and me was unclear, leading to misunderstandings about my treatment plan. Improvement is needed in this area.",Maria Thompson,Little-Spencer,Terri Smith -74,8367,"The hospital provided exceptional care, and the nursing staff was attentive and kind. The well-organized approach to my treatment contributed to a positive overall experience.",Shawn Ellis,Little-Spencer,Tracy Dalton -372,3552,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Craig Brooks,Little-Spencer,Patrick Swanson -534,949,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Barbara Warner,Little-Spencer,Daniel Branch -818,949,"The hospital provided top-notch medical care. The nurses were friendly and efficient, making my recovery process smoother.",Barbara Warner,Little-Spencer,Daniel Branch -554,1374,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Trevor Cook,Little-Spencer,Justin Lewis -222,1749,"My overall experience at the hospital was positive, thanks to the dedicated medical team. Nevertheless, the outdated decor in the patient rooms could use a refresh for a more pleasant atmosphere.",Jesse Hall,Little-Spencer,Jake Matthews -106,2466,"My stay at the hospital was challenging. The medical care was adequate, but the lack of attention from the nursing staff left me feeling a bit neglected and frustrated.",Robert Chen,Little-Spencer,Christopher Taylor -327,7382,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Jackson,"Jones, Taylor and Garcia",Christopher Taylor -108,9732,"I had a mix of positive and negative experiences at the hospital. While the medical care was good, the administrative processes were confusing, leading to unnecessary stress.",James Sparks,Little-Spencer,Michelle James -914,9732,"The hospital's medical team was outstanding, but the billing process was a nightmare. It took multiple calls to resolve an overcharge issue on my bill.",James Sparks,Little-Spencer,Michelle James -540,4408,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",James Sparks,Little-Spencer,Carmen Horne -126,764,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Terry Leon,Little-Spencer,Brenda James -732,7499,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Carla Miller,Little-Spencer,Timothy Taylor -203,1724,"The hospital staff was efficient and courteous, making my stay comfortable. Yet, the noise levels in the patient rooms were high, impacting the overall experience.",Joseph Jackson,Little-Spencer,Jaime Santiago -316,5787,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Joseph Jackson,Little-Spencer,Tamara Hart -219,1642,"The medical team at the hospital was knowledgeable and thorough, ensuring a successful recovery. On the other hand, the limited recreational activities for patients made the stay less enjoyable.",Timothy Martinez,Little-Spencer,Jennifer Mejia -286,5578,"I am grateful for the excellent care I received during my stay. The doctors were knowledgeable, and the nurses were kind and attentive.",William Bailey,Little-Spencer,Dave Bass -229,7917,"The nursing staff at the hospital was exceptional, providing personalized care. However, the lack of communication about the post-discharge care plan was a point of concern for me.",Miranda Meza,Little-Spencer,Tonya Gentry -622,7917,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Miranda Meza,Little-Spencer,Tonya Gentry -259,1969,"The hospital's medical staff was exceptional, providing personalized care. However, the lack of communication about the potential side effects of my medication was concerning.",Beverly Jordan,Little-Spencer,Jacob Gallagher -643,5815,"The hospital staff was attentive, and the cleanliness was commendable. Unfortunately, the cafeteria food left much to be desired.",Tara Payne,Little-Spencer,Christy Gregory -997,876,"The hospital's commitment to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Mr. Andrew Keller,Little-Spencer,Daniel Murray -859,8999,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",James Mckinney,Little-Spencer,Dr. Jacob Hart -793,7173,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Charles Kim,Little-Spencer,Kyle Byrd -877,3901,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jared Diaz,Little-Spencer,Mr. Bobby Johnson -464,953,"The medical team at the hospital was exceptional. However, the lack of accessible charging outlets in the patient rooms made it difficult to keep electronic devices charged.",Ashley Jackson,Little-Spencer,Bernard Gibbs -978,7644,"The hospital's commitment to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Jonathan Decker,Little-Spencer,Kevin Ferguson -654,1638,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Krystal Webb,Little-Spencer,Arthur James -637,4511,"The hospital's medical team was top-notch, but the outdated entertainment options in the rooms could use an upgrade.",Jacqueline Mcneil DVM,Little-Spencer,Stephanie Dixon -781,6658,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Destiny Lloyd,Little-Spencer,Emily Hodges -862,7237,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",Barbara Warner,Little-Spencer,Tony Woods -985,78,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Sally Jones,Little-Spencer,David Sanchez -307,268,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Matthew Marks,Brown-Golden,Ashley Armstrong -338,7312,"I was impressed with the professionalism of the medical staff. The only downside was the lack of variety in the hospital menu, which made dining options monotonous.",Julia Lam,Brown-Golden,Jennifer Cochran -403,7312,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Julia Lam,Brown-Golden,Jennifer Cochran -10,1504,"My overall experience was positive, thanks to the attentive nursing staff. However, the noisy environment in the shared rooms affected my ability to rest and recover peacefully.",Ashley Goodwin,Brown-Golden,Anna Morrison -160,5209,"The hospital environment was calming, and the medical team was thorough in their assessments. On the downside, the cafeteria food left much to be desired, with limited healthy options.",Andrew King,Brown-Golden,Mathew Reilly -502,8912,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Renee Brown,Brown-Golden,Kristin Garcia -671,1454,"The nursing team was exceptional, providing compassionate care throughout my stay. The hospital's environment was comforting, and the amenities offered helped make my recovery more bearable.",Tanya Mccarty,Brown-Golden,Allison Hill -129,8609,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Rebecca Hernandez,Brown-Golden,Garrett Acosta -72,6581,"My hospital stay was a positive one. The medical team was efficient, and the facilities were clean and well-maintained. The overall atmosphere contributed to a smooth and comfortable recovery.",Jennifer Johnson,Brown-Golden,Brian Chen -86,7797,"The hospital provided exceptional care, and the medical team was thorough in their approach. The facilities were modern and clean, contributing to a positive overall experience.",Lisa Brewer,Brown-Golden,Ariana Hansen -104,2206,"My experience at the hospital was a bit of a letdown. The facilities were outdated, and the communication between the medical staff and me was not as clear as I would have liked.",Brent Brewer,Brown-Golden,Thomas Torres MD -231,5213,"My stay at the hospital was marked by the efficient and caring nature of the nursing staff. However, the lack of communication about the potential side effects of medications was concerning.",Cheryl Smith,Brown-Golden,Tiffany Stewart -453,6551,"The medical team at the hospital was skilled and efficient. Unfortunately, the outdated entertainment options in the patient rooms made the recovery period less enjoyable.",Elizabeth Meyer,Brown-Golden,John Jensen -334,134,"The nursing staff was exceptional, providing personalized care. However, the lack of communication between departments led to some confusion regarding my treatment plan.",Christine Rogers,Brown-Golden,John Edwards -162,3452,"I received prompt and effective medical care during my stay. However, the constant beeping of machines in the ward was bothersome and made it difficult to get quality rest.",Carla Miller,Brown-Golden,Heather Lewis -706,7684,The hospital's dedication to patient comfort was evident in the well-designed private rooms and comfortable furnishings. It made my recovery more bearable and contributed to an overall positive experience.,Mary Owens,Brown-Golden,Jasmine Patel DDS -530,5268,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Stephen Johnson,Brown-Golden,Brooke Robinson -199,2647,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Marc Romero,Brown-Golden,Travis Kelly DVM -207,3969,"My stay at the hospital was marked by the caring nature of the nursing staff. On the flip side, the limited visiting hours made it challenging for my family to spend time with me.",Joel Copeland,Brown-Golden,Charles Alvarez -901,2551,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Melissa Garrett,Brown-Golden,Michael Rodriguez -953,5441,"My stay at the hospital was excellent. The doctors were knowledgeable, and the nurses were compassionate. I felt well taken care of.",Rachel Oneill,Brown-Golden,Kristin Jones -278,9041,"The hospital's medical team was efficient and knowledgeable, providing excellent care. However, the lack of communication about the potential side effects of my medication was concerning.",Jeffrey Williams,Brown-Golden,Bryan Willis -927,2614,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",James Jackson,Brown-Golden,Miranda Frey -332,2725,"The medical team was outstanding - compassionate, understanding, and highly skilled. Unfortunately, the noise level in the shared rooms made it difficult to get a good night's sleep.",Sean Williams,Brown-Golden,Ashley Solis -419,8315,"I appreciate the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Abigail Cummings,Brown-Golden,Elizabeth Robertson -365,513,"The hospital's facilities were clean and modern, creating a comfortable environment. On the downside, the lack of Wi-Fi in the rooms made it challenging to stay connected and entertained.",Molly Dean,Brown-Golden,Jeremy Whitney -363,3842,"The hospital's commitment to patient care was evident, with a responsive medical team. However, the lack of variety in the cafeteria menu made dining options repetitive and uninspiring.",Edward Miller,Brown-Golden,Matthew Carter -576,1612,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Ashley Torres,Brown-Golden,Nathaniel Nichols -500,9862,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only downside was the limited entertainment options in the patient rooms.",Jonathan Obrien DDS,Brown-Golden,Christopher Tucker -583,3957,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Katie Huber,Brown-Golden,Mikayla Hood -707,4533,"I encountered some issues with the nursing staff's communication. It seemed like there was a lack of coordination, leading to confusion about my medication schedule and treatment plan.",Joseph Gonzales,Brown-Golden,Makayla Reynolds -937,7581,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Eric Marquez,Brown-Golden,Amanda Gonzales -885,6709,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Adrienne Johnson,Brown-Golden,John May -5,5953,"I had a mixed experience during my stay. While the medical care was satisfactory, the administrative process felt disorganized and resulted in unnecessary delays in my treatment.",Michael Morales,Castaneda-Hardy,Megan Short -28,166,"The hospital's dedication to staff training and development was evident in the professionalism of the medical team. Still, the limited availability of support services for mental health was a notable gap in their holistic approach.",Derrick Krause,Castaneda-Hardy,David Casey -37,3585,"The hospital's administrative processes need improvement. I faced challenges with billing and paperwork, causing unnecessary stress during an already difficult time. Streamlining these processes is essential.",Keith Reed,Castaneda-Hardy,Robert Black -153,8988,"The hospital facilities were state-of-the-art, and the medical team was efficient. Unfortunately, the noise levels in the ward were disruptive, affecting my ability to rest.",Keith Reed,Castaneda-Hardy,Anthony Young -609,5025,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Nicole Keith,Castaneda-Hardy,Stacey Cohen -59,7774,"The hospital's nursing staff were a mixed bag. While some were compassionate and attentive, others seemed disinterested and inattentive. Consistent training and expectations are necessary for quality patient care.",Colleen Ward,Castaneda-Hardy,Sarah Thomas -196,4073,"I am grateful for the excellent care I received during my stay. The nursing staff was attentive, and the hospital's commitment to patient well-being was evident in every aspect of their service.",Richard Carter,Castaneda-Hardy,Ms. Gina Ross -437,6371,"The hospital had state-of-the-art equipment, and the medical team was highly skilled. Unfortunately, the billing process was confusing, and I received multiple incorrect invoices.",Richard Carter,Castaneda-Hardy,Carol Warner -92,4928,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Jennifer Quinn,Castaneda-Hardy,Amy Nichols -182,5534,"I received excellent medical care during my stay, and the nursing staff was attentive. Unfortunately, the lack of clear communication about the discharge process caused some anxiety.",Jennifer Quinn,Castaneda-Hardy,Victoria Arroyo -116,8941,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Miss Maria King,Castaneda-Hardy,John Arnold -119,5771,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Cathy Church,Castaneda-Hardy,Jacob Rodriguez -149,1480,"I appreciate the efforts of the hospital staff in providing quality care. The cleanliness and hygiene standards were commendable, contributing to a comfortable environment.",Russell Morris,Castaneda-Hardy,Spencer Good -159,5256,"I am grateful for the dedicated nurses who provided exceptional care. However, the administrative processes were bureaucratic, causing unnecessary delays in scheduling tests.",Amy Rios,Castaneda-Hardy,Alexander Henderson -168,3467,"The hospital provided excellent care, and the staff was compassionate. However, the lack of greenery or outdoor spaces for patients to relax was a downside.",Sabrina Rodriguez,Castaneda-Hardy,Willie Brewer -409,7582,"I appreciate the excellent medical care I received. Still, the noise levels in the hallway outside my room were disruptive and affected my rest.",Jennifer Evans,Castaneda-Hardy,Sarah Love -194,3912,"I had a mixed experience at the hospital. While the doctors were knowledgeable and caring, the wait times were quite long, and the administrative staff seemed disorganized.",James Cooper,Castaneda-Hardy,Richard Morrow -206,9253,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Denise Perez,Castaneda-Hardy,Tara Knight -440,6624,The hospital's commitment to patient well-being was evident. The support groups and counseling services offered were beneficial during my recovery.,Jessica Anderson,Castaneda-Hardy,Emily Harrington -237,1829,"I had a frustrating experience at the hospital. The waiting times were ridiculously long, and the staff seemed overwhelmed and disorganized.",Jason Little,Castaneda-Hardy,Richard Cole -260,2676,"I appreciate the hospital's efforts in maintaining a clean and safe environment. However, the lengthy wait times for routine tests were frustrating and inconvenient.",James Brown,Castaneda-Hardy,Matthew Hall -262,4115,"The hospital provided excellent medical care, and the nursing staff was attentive. Unfortunately, the cafeteria food options were limited and not very appetizing.",Timothy Riley,Castaneda-Hardy,Carlos Ruiz -270,4585,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uncertain.",David Fisher,Castaneda-Hardy,Kenneth Rios -274,1092,"I had a positive experience overall at the hospital. The medical staff was compassionate, and the facilities were clean and well-maintained.",David Perez,Castaneda-Hardy,Autumn Proctor -357,9058,"The nursing staff provided excellent care and support during my stay. However, the outdated TV sets in the rooms and limited channel selection left much to be desired in terms of entertainment.",Thomas Harrell,Castaneda-Hardy,Dylan Hart -929,63,"The hospital provided excellent care, but the billing department's lack of transparency was frustrating and led to unexpected financial stress.",Jason Johnston,Castaneda-Hardy,Amanda Stein DVM -319,3107,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Jesus Snyder,Castaneda-Hardy,Jessica Estes DVM -347,8571,"The hospital's medical staff provided excellent care, and the facilities were clean and well-maintained. Unfortunately, the lack of a proper bedside manner from one of the doctors was disappointing.",Breanna Cruz,Castaneda-Hardy,Jessica Noble -804,2524,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",William Hart,Castaneda-Hardy,Lisa Baker -537,4830,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",Michael Miranda,Castaneda-Hardy,Carlos Graham -667,6690,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Bryan Smith,Castaneda-Hardy,Dan Nash -657,8864,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Virginia Robinson,Castaneda-Hardy,Michelle Brown -851,6707,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the lack of coordination between departments led to delays in my treatment.",Richard Garcia,Castaneda-Hardy,Audrey Howard -806,5549,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Timothy Gibson,Castaneda-Hardy,Allen Gibson -791,269,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michael Morales,Pugh-Rogers,Jacob Meyers -369,7259,"The hospital's commitment to cleanliness and hygiene was commendable, with well-maintained facilities. On the downside, the lack of vegetarian options in the cafeteria limited my meal choices.",Heather Fisher,Pugh-Rogers,Nicholas Cook -8,5259,"I appreciate the dedication of the hospital staff, but the lack of coordination among different departments led to confusion about my treatment plan. Streamlining communication is crucial for patient satisfaction.",Joy Yoder,Pugh-Rogers,Nicole Anderson -21,8517,"I appreciate the hospital's commitment to continuous improvement, as seen in their responsive feedback system. However, the lack of emotional support during my recovery was a notable gap in the overall care.",Ann Joseph,Pugh-Rogers,Melinda Dunn -632,3421,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Robert Pratt,Pugh-Rogers,Nicole Bradley -980,3421,"The hospital's commitment to diversity and inclusion was evident in its staff. However, the lack of translation services for non-English speakers created challenges for some patients.",Robert Pratt,Pugh-Rogers,Nicole Bradley -35,1367,I had a difficult time at the hospital due to the noise level in the shared rooms. It impacted my ability to rest and recover. Consideration for patients' need for rest is crucial in a hospital setting.,Mr. Adrian Pittman II,Pugh-Rogers,Tyler Sanders DVM -760,8307,"The nursing staff was caring, and the hospital had a modern feel. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Doris Rodriguez,Pugh-Rogers,James Murray -431,6184,"The facilities were clean, and the medical team was efficient. However, the constant beeping of machines in the ward was quite annoying and made it difficult to rest.",Joanne Hernandez,Pugh-Rogers,Shane Joseph III -826,3302,"The nursing staff was exceptional, providing personalized care. Unfortunately, the outdated entertainment options in the rooms left much to be desired.",Erika Ingram,Pugh-Rogers,Rickey Payne -47,7429,I encountered some issues with the scheduling of tests and procedures at the hospital. The lack of coordination resulted in unnecessary delays and added stress to an already challenging situation.,Jason Martinez,Pugh-Rogers,Joseph Brown -524,7429,"The hospital staff was exceptional in providing care and support. The facility was clean, and the medical team ensured I understood my treatment plan thoroughly. Overall, a positive experience.",Jason Martinez,Pugh-Rogers,Joseph Brown -832,9279,"The hospital staff was caring and attentive, making me feel well-supported during my stay. Unfortunately, the waiting times for tests were longer than expected.",Ashley Le,Pugh-Rogers,Justin Mitchell -570,3998,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Stephanie Vargas,Pugh-Rogers,Cassandra Myers -944,2450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Lindsay Martinez,Pugh-Rogers,Michael Kelly -505,5325,"The hospital staff was friendly and made my stay comfortable. The medical care was excellent, but the administrative processes were a bit confusing, leading to some frustration.",Alexander Jimenez,Pugh-Rogers,Joshua Simpson -386,6801,"The hospital was clean, and the staff was friendly. However, the waiting times for test results were longer than I anticipated.",Antonio Campbell,Pugh-Rogers,Kyle Arnold -157,7274,"The hospital staff went above and beyond to make me feel comfortable. Nevertheless, the lack of privacy in the shared rooms was a drawback, hindering my recovery.",Mary Owens,Pugh-Rogers,Dylan Smith -468,5402,"The hospital had a comprehensive approach to mental health, offering counseling services. However, the limited outdoor spaces for patients to relax were a missed opportunity.",Kimberly Oliver,Pugh-Rogers,Deanna Deleon -253,9591,"The hospital had a warm and welcoming atmosphere, but the billing process was confusing and took an excessive amount of time to resolve.",Sabrina Rodriguez,Pugh-Rogers,Matthew Pacheco -411,1441,"The medical team at the hospital was knowledgeable and caring. Unfortunately, the cafeteria food did not meet my dietary preferences.",James Cooper,Pugh-Rogers,Maria Williams -628,5159,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",Sheri Howard,Pugh-Rogers,Robert Cooper -763,586,"I was impressed with the level of care I received. The doctors took the time to explain everything thoroughly, and the nurses were compassionate.",Joel Copeland,"Smith, Edwards and Obrien",Robert Cooper -687,6305,"I had a positive experience overall. The medical staff was attentive, and the cleanliness of the facility was impressive. However, the cafeteria food left much to be desired, impacting the overall satisfaction of my stay.",Michelle Williams,Pugh-Rogers,Traci Carpenter -287,3066,"The hospital environment was sterile and cold. The medical care was satisfactory, but the lack of a warm and welcoming atmosphere made the experience less pleasant.",Greg Clark,Pugh-Rogers,Thomas Cabrera -300,9363,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -426,9363,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -586,9363,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -408,459,"The hospital had a clean and well-maintained environment. However, the lack of family-friendly spaces in the waiting area was a downside.",Catherine Howard,Pugh-Rogers,Richard Johnson -458,2471,"The medical team at the hospital was compassionate and attentive. The only downside was the limited options in the hospital cafeteria, making it difficult to find healthy choices.",Richard Miller,Pugh-Rogers,Mark Griffin -472,8840,"I had a positive experience at the hospital. The medical team was thorough, and the support staff went out of their way to make my stay as comfortable as possible.",Robert Thomas,Pugh-Rogers,Jordan Reyes -482,5421,"I had a mixed experience. The medical care was excellent, but the communication between the staff and patients could be improved. Clearer instructions would have been helpful.",Sara Newman,Pugh-Rogers,Dawn Barry -709,4397,"My experience was soured by the lack of parking availability. The inconvenience of finding parking spaces, especially during peak hours, added unnecessary stress to my hospital visit.",Shaun Little,Pugh-Rogers,Mark Solomon -724,1193,"The hospital had a warm and inviting ambiance. Unfortunately, the lack of coordination between departments led to confusion about my treatment plan.",Anthony Lowery,Pugh-Rogers,Jacqueline Adams -898,8351,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Hannah Roberts,Pugh-Rogers,Thomas Garcia -6,416,"The hospital's emergency response team was quick and efficient when I was admitted. However, the follow-up care left much to be desired, with long waits for routine check-ups and consultations.",Julia Lam,Lewis-Nelson,Heather Turner -99,8385,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Julia Lam,Lewis-Nelson,Thomas Kelly -24,7628,"The cleanliness and hygiene standards at the hospital were exceptional, contributing to a sense of safety. However, the lack of family-friendly accommodations limited the support system available during my stay.",Robert Pratt,Lewis-Nelson,James Lynch -31,4342,"My experience at the hospital was less than satisfactory. The wait times were unbearable, and the lack of communication from the staff was frustrating. Improvement is definitely needed in their efficiency.",Laura Hamilton,Lewis-Nelson,Alexander Sellers -461,7793,"The hospital had a warm and inviting atmosphere. The only drawback was the noise levels in the shared rooms, making it challenging to rest and recover.",Kelly Scott MD,Lewis-Nelson,Michelle Walls -575,3197,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -615,3197,"I had a mixed experience at the hospital. While the medical care was excellent, the waiting times were frustratingly long.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -296,4326,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Stephanie Vargas,Lewis-Nelson,Linda Allen -144,9762,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Christine Rogers,Lewis-Nelson,William Valencia -635,482,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Amy Rios,Lewis-Nelson,Micheal Duran -996,7556,I encountered some issues with the billing department at the hospital. It took multiple calls to resolve the errors in my invoice.,Erin Ramirez,Lewis-Nelson,Sara House -190,5214,"I appreciate the excellent care I received from the medical team. Unfortunately, the outdated entertainment options in the room made the recovery period less enjoyable.",Timothy Wilson,Lewis-Nelson,Joseph Schneider -344,5414,"The hospital's commitment to patient well-being was evident, with a responsive medical team. On the downside, the TV channels in the rooms were limited, and the entertainment options were lacking.",Andrew James,Lewis-Nelson,Ashley Greene -204,5979,"The hospital's medical team was knowledgeable and attentive, but the billing process was confusing and required multiple follow-ups to resolve discrepancies.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -234,5979,"The medical team at the hospital was knowledgeable and caring, making my stay comfortable. On the other hand, the lack of coordination between departments led to some delays in my treatment plan.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -285,8608,"The hospital staff was friendly and compassionate. However, the wait times were quite long, and it was frustrating to spend so much time waiting for tests and consultations.",Alexis Hutchinson,Lewis-Nelson,Gregory Oliver -796,9193,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Mark Vang,Lewis-Nelson,Thomas Roberts -723,6720,The doctors were attentive and explained things clearly. The noise from other patients made it difficult to get a good night's sleep.,Miguel Davidson,Lewis-Nelson,Kayla Gardner -455,9730,"The hospital's commitment to patient privacy was commendable. The staff ensured confidentiality, creating a safe space for open communication about health concerns.",Brian Rivera,Lewis-Nelson,Stephanie Wallace -878,5975,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Renee Young,Lewis-Nelson,Linda Neal -485,7292,"I had a positive experience overall. The medical team was efficient, and the facilities were well-maintained. The only downside was the lack of information provided about the treatment plan.",David Carter,Lewis-Nelson,Eric Schwartz -669,4461,My stay at the hospital was remarkable. The doctors were not only knowledgeable but also took the time to explain everything in detail. The cleanliness and organization of the facility were impressive.,Jennifer Roberts,Lewis-Nelson,William Grant -684,4486,"The staff's empathy and kindness were a silver lining during a challenging time. Despite the hospital's aging infrastructure, the genuine care provided by the nurses and doctors made the overall experience positive.",Eric Marquez,Lewis-Nelson,Joshua Duncan -819,1766,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays in paperwork.",Angela Stein,Lewis-Nelson,Joshua Fitzgerald -861,5,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Jennifer Baldwin MD,Lewis-Nelson,Patrick Parker -860,5018,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Heather Fisher,Boyd PLC,Samantha Morgan -178,615,"The nursing staff was empathetic and supportive throughout my stay. Unfortunately, the lack of communication about changes to my treatment plan was a source of frustration.",Derrick Krause,Boyd PLC,Luis Cooper -513,615,"I had a mixed experience at the hospital. The medical care was exceptional, but the communication between different departments was lacking, leading to some confusion.",Derrick Krause,Boyd PLC,Luis Cooper -42,7264,"The hospital's environment was welcoming, and the volunteers went out of their way to make patients feel comfortable. A friendly and supportive atmosphere that contributed positively to my overall experience.",Robin Rose,Boyd PLC,Anthony Thomas -54,3636,"I had a positive experience with the hospital's rehabilitation services. The therapists were knowledgeable, and the rehabilitation plan was tailored to my specific needs. A crucial aspect of my recovery.",Monique Hall,Boyd PLC,Jessica Ross -381,776,"The hospital staff was accommodating and made sure I felt comfortable. However, the billing process was confusing and took a while to resolve.",Anthony Lynch,Boyd PLC,Annette Mitchell -843,776,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Anthony Lynch,Boyd PLC,Annette Mitchell -378,4892,"The hospital had state-of-the-art equipment, but the lack of communication between the medical team and patients was frustrating.",Mark Martin,Boyd PLC,Erica Roberts -176,1456,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Scott Scott,Boyd PLC,Victoria Mathews -90,2434,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Trevor Cook,Boyd PLC,Christopher Carson -117,6659,"My stay at the hospital was a mix of highs and lows. The medical care was competent, but the lack of communication about changes in my treatment plan left me feeling uneasy.",Drew Sanchez,Boyd PLC,Anthony Wood -558,6659,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",Drew Sanchez,Boyd PLC,Anthony Wood -668,6659,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Drew Sanchez,Boyd PLC,Anthony Wood -125,7637,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amanda Rogers,Boyd PLC,Alexandria Jones -133,7328,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Christy Huff,Boyd PLC,Jon Williamson -422,1498,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Ryan Thomas,Boyd PLC,Michael Delgado -167,3015,"I appreciated the personalized care from the doctors, but the constant changing of nurses during shifts led to inconsistent communication about my treatment plan.",Larry Campbell,Boyd PLC,Seth Smith -490,5675,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Joseph Jackson,Boyd PLC,Debra Lee -679,7180,"I encountered some issues with the administrative staff, who seemed disorganized and overwhelmed. This affected the overall efficiency of the hospital, and improvements in this area are essential.",Joel Copeland,Pearson LLC,Debra Lee -545,4017,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",John Henderson,Boyd PLC,Maria Cisneros -238,9507,"The hospital staff went above and beyond to make me feel comfortable during my stay. The facilities were clean, and the food was surprisingly good.",Erin Oliver,Boyd PLC,Christopher Gonzalez -557,6005,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Nathan Smith,Boyd PLC,Donna Singleton -528,4173,"The hospital staff was friendly and caring, making my stay pleasant. However, the administrative processes were slow and disorganized, causing unnecessary delays and frustration.",Beverly Jordan,Boyd PLC,Dr. Janet Ramos -293,7784,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative staff was unhelpful and seemed disinterested in addressing my concerns.",Donna Williams,Boyd PLC,Michael Gutierrez -932,532,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Michael Watson,Boyd PLC,Heather Walters -783,4911,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Edward Miller,Boyd PLC,Sarah Lopez -909,8406,"The nursing staff was incredibly compassionate and attentive, but the administrative staff seemed overwhelmed and disorganized.",Sarah Brewer,Boyd PLC,Erik Fletcher -627,7329,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Krystal Webb,Boyd PLC,Eric Moore -634,7231,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Abigail Fuller,Boyd PLC,Lisa Ramirez -680,1310,"The hospital's serene environment and friendly staff positively impacted my recovery. The bright and airy rooms, coupled with the caring nurses, made my stay as pleasant as it could be under the circumstances.",Bernard Miller,Boyd PLC,Donna Weaver -846,1310,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",Bernard Miller,Boyd PLC,Donna Weaver -578,2639,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Joy Yoder,Garcia Ltd,Dylan Brown -508,5605,"My overall experience was positive. The hospital staff was friendly, and the medical care was exceptional. The only drawback was the limited variety in the hospital menu.",Chase Mcpherson Jr.,Garcia Ltd,Robert Decker -834,3899,"The hospital provided good care overall. The nurses were compassionate, but the administrative processes were confusing and added unnecessary stress.",Mark Nichols,Garcia Ltd,Jo Ramirez -33,7503,My stay at the hospital was marred by a lack of cleanliness in my room. It was evident that the facilities were not properly maintained. Disappointing given the importance of hygiene in a healthcare setting.,Victor Dean,Garcia Ltd,Stacy Lindsey -746,3985,"The hospital had a modern and clean environment, and the medical staff was attentive. The slow response time for basic requests, however, was frustrating.",Rebecca Wallace,Garcia Ltd,Cathy Chavez -538,4977,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Ryan Curry,Garcia Ltd,Regina Vargas -226,4415,"My experience at the hospital was positive overall. The medical team was thorough and caring, but the lack of transparency about the billing process was a point of frustration.",Scott Rivera,Garcia Ltd,Monica Romero -991,5856,"I appreciated the hospital's efforts to create a child-friendly environment in the pediatric ward. The play area, though, could use more interactive and educational toys.",Renee Brown,Garcia Ltd,John Avery -739,5123,"The medical care was top-notch, and the hospital had a calm ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Jennifer Johnson,Garcia Ltd,Dr. Christopher Rogers -691,630,"The nursing staff was exceptional, providing attentive and personalized care. However, the administrative processes were confusing, and the lack of clear communication about my treatment plan left me anxious.",Craig Brooks,Garcia Ltd,Sherry Williams -79,6024,"I had a positive experience at the hospital. The medical staff was competent and caring, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Aaron Graves,Garcia Ltd,Jessica Rogers -354,6360,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Tina Wall,Garcia Ltd,Christopher Brown -716,6598,"I received prompt attention from the medical staff, and the technology used for diagnosis was impressive. The cleanliness, however, left much to be desired.",Brent Brewer,Garcia Ltd,Allison Elliott -121,7157,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Cheryl Smith,Garcia Ltd,Michael Johnson -582,7157,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Cheryl Smith,Garcia Ltd,Michael Johnson -145,2432,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,Garcia Ltd,Susan Ward -893,1990,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Amy Rios,Garcia Ltd,Dr. Charles Burton MD -175,7007,"The hospital provided quality care, and the nursing staff was attentive. However, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Amy Smith,Garcia Ltd,Stacy Jennings -789,3581,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Joseph Jackson,Garcia Ltd,David Crawford -240,2817,"The hospital environment was welcoming, and the support staff was always ready to assist. However, the billing process was confusing and stressful.",William Bailey,Garcia Ltd,Eric Williams -935,9450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Logan Diaz,Garcia Ltd,Mark Robinson -358,5687,"The hospital's medical team was knowledgeable and efficient in their care. Unfortunately, the frequent interruptions for routine checks made it challenging to get a good night's sleep.",Erik Guerrero,Garcia Ltd,Ryan Dodson -432,9805,"My time at the hospital was challenging, but the nursing staff made all the difference. Their kindness and patience truly made the experience more bearable.",Steven Watson,Garcia Ltd,George Barnes -476,8120,"I had a mixed experience at the hospital. The medical care was excellent, but the food quality left much to be desired. It's crucial to consider both aspects for a holistic view.",Candice Manning,Garcia Ltd,Christina Andrews -938,6267,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Candice Manning,Garcia Ltd,Tammy Benson DVM -519,4046,"I had a mixed experience at the hospital. The nursing staff was kind and caring, but there were delays in getting test results, causing some anxiety. The facility, however, was top-notch.",Terry Chan,Garcia Ltd,Jimmy Johnson -906,5658,"The hospital staff was exceptional, and I received excellent care. However, the lack of communication between departments led to some confusion about my treatment plan.",George Lee,Garcia Ltd,Matthew Montgomery -748,3520,"The nursing staff was compassionate, and the hospital facilities were top-notch. The limited visiting hours, though, made it challenging for my family to be present.",Michael Robinson,Garcia Ltd,Mario Stone -907,205,"I was impressed by the cleanliness and organization of the hospital. The medical team was efficient and caring, making my recovery smoother.",Timothy Gibson,Garcia Ltd,Rachel Williams -921,8944,"The medical staff was attentive and caring, providing quality care. Unfortunately, the noise from construction outside my room was disruptive and affected my rest.",Timothy Gibson,Garcia Ltd,Natalie Rojas -852,3226,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of clear communication about the post-discharge care plan was a concern.",Steven Smith,Garcia Ltd,Amber Stout -981,2127,"I appreciated the hospital's efforts to create a comfortable environment for patients. However, the noise from construction in the adjacent building was disruptive.",Taylor Williams PhD,Garcia Ltd,Tasha Dunn -85,55,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of communication between the staff and me made me feel isolated and frustrated.",Andrew King,"Rush, Owens and Johnson",Frank Reid -398,8800,"I appreciated the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Andrew King,"Rush, Owens and Johnson",William Foster -895,1840,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Thomas Middleton,"Rush, Owens and Johnson",Thomas Jacobs -943,9081,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Dustin Perez,"Rush, Owens and Johnson",Blake Martin -611,5881,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -782,5881,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -171,6286,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were confusing and resulted in billing errors that took weeks to resolve.",Robert Chen,"Rush, Owens and Johnson",Gregory Salazar -375,5366,"The nursing staff at the hospital was exceptional, providing compassionate care. However, the food options were limited and not great.",James Sparks,"Rush, Owens and Johnson",Jesus Griffin -213,6249,"The hospital's facilities were modern and well-maintained, contributing to a positive overall experience. Unfortunately, the billing process was confusing and required extensive clarification.",Veronica Moore,"Rush, Owens and Johnson",Heather Ferguson -343,2532,"The nursing staff was compassionate, and the medical facilities were up to par. Nonetheless, the cafeteria food left much to be desired, and I found myself ordering from outside frequently.",Robert Clements,"Rush, Owens and Johnson",Phyllis Waters -273,5700,"The hospital's medical staff was skilled and caring, providing excellent care. Unfortunately, the noise levels in the shared rooms made it challenging to rest and recover.",Geoffrey Jacobson,"Rush, Owens and Johnson",Timothy Avila -501,6523,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Russell Morris,"Rush, Owens and Johnson",John Martinez -833,6067,"The medical care I received was excellent, and the facilities were clean. However, the lack of communication between shifts caused confusion about my treatment plan.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -976,6067,"The hospital's location was convenient, and the shuttle service for patients was a thoughtful touch. However, the noise from construction nearby disrupted my rest.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -613,3089,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Linda Morris,"Rush, Owens and Johnson",Kaitlin Miller -617,9533,"I appreciate the professionalism of the doctors, but the lack of communication about my treatment plan left me feeling anxious.",Amy Smith,"Rush, Owens and Johnson",Cheryl Watts -193,177,"My stay at the hospital was exceptional. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout my time there.",Andrew James,"Rush, Owens and Johnson",Scott Nicholson -473,6462,"The hospital had a welcoming atmosphere, and the medical team was attentive. On the downside, the noise levels in the hallway made it challenging to rest during the night.",Andrew James,"Rush, Owens and Johnson",Matthew Walsh -600,827,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Rush, Owens and Johnson",Carolyn Nguyen DVM -210,579,"I had a positive experience with the hospital's medical staff, who went above and beyond to ensure my comfort. The only drawback was the limited availability of certain medical specialists.",Julie Walker,"Rush, Owens and Johnson",Leslie Kennedy -412,3377,"I had a positive overall experience at the hospital. The medical staff was attentive, and the facilities were well-maintained.",Melissa Garrett,"Rush, Owens and Johnson",James Villanueva -815,7948,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Jason Little,"Rush, Owens and Johnson",Melissa Barnes -243,2874,"I had a positive experience with the skilled and compassionate healthcare professionals. However, the outdated facilities could use some modernization.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -309,2874,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -401,2561,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Fisher,"Rush, Owens and Johnson",Christopher Collins -809,3058,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",James Allen,"Rush, Owens and Johnson",Jacqueline Cooper -520,3379,"The hospital staff went above and beyond to ensure my comfort and well-being. The doctors were thorough in explaining my condition, making me feel informed and at ease throughout my stay.",Marissa Shepherd,"Rush, Owens and Johnson",Timothy Hill -918,5640,"The hospital staff went above and beyond to make me feel comfortable. On the downside, the parking situation was chaotic, and finding a spot was a daily struggle.",Carmen Larsen,"Rush, Owens and Johnson",Gene Anderson -435,4134,"I am grateful for the exceptional care I received at the hospital. The nurses were not only skilled but also empathetic, making a significant impact on my recovery.",Jared Diaz,"Rush, Owens and Johnson",Angie Murphy -496,1401,"I am grateful for the care I received at the hospital. The medical team was compassionate, and the facilities were well-maintained. The only downside was the limited visiting hours.",Candice Manning,"Rush, Owens and Johnson",Tonya Ferguson -773,6383,"I encountered some communication issues during my stay. The medical staff seemed disorganized, and it led to confusion about my treatment plan.",Jacqueline Johnson,"Rush, Owens and Johnson",Jessica Mays -677,1787,"I had mixed feelings about my stay. While the medical team was skilled and attentive, the lack of follow-up after discharge left me feeling a bit neglected. A simple check-in would have been appreciated.",Christopher Stanley,"Rush, Owens and Johnson",Shaun Tran -917,3104,"I encountered both positive and negative aspects during my hospital stay. The medical care was excellent, but the facility could benefit from more patient-friendly amenities.",Kristopher Wiley Jr.,"Rush, Owens and Johnson",Jeffrey Wilkerson -752,9328,"The nursing staff was caring, and the hospital had a modern feel. The lack of clear communication about my treatment plan, however, was frustrating.",Julia Hoffman,"Rush, Owens and Johnson",David Jones -67,9399,"The hospital's medical team was exceptional, providing thorough and personalized care. The modern facilities and state-of-the-art equipment added to the overall positive atmosphere.",Christina Anderson,"Smith, Edwards and Obrien",Jesse Huerta -30,2721,"The hospital staff went above and beyond to ensure my comfort. The nurses were attentive, and the facility was clean and well-maintained. I felt well taken care of throughout my stay.",Keith Reed,"Smith, Edwards and Obrien",Tracy Davidson -61,6591,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Anthony Lynch,"Smith, Edwards and Obrien",David Simpson -313,167,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",Stephanie Vargas,"Smith, Edwards and Obrien",Joseph Bailey -449,8972,"My experience at the hospital was bittersweet. The medical care was excellent, but the lack of parking spaces made it inconvenient for visitors, causing unnecessary stress.",Aaron Graves,"Smith, Edwards and Obrien",Sharon Lewis -84,1841,"My experience at the hospital was positive overall. The medical team was competent, and the facilities were modern and well-equipped. The nursing staff was attentive and compassionate.",Tara Harris,"Smith, Edwards and Obrien",Garrett Gomez -650,5387,"The hospital's medical team was knowledgeable and supportive, but the lack of vegetarian options in the cafeteria was disappointing.",Jesse Hall,"Smith, Edwards and Obrien",Andrew Cantrell -111,3540,"I am grateful for the outstanding care I received at the hospital. The medical team was thorough in explaining my condition, and the facilities were well-maintained.",Lindsay Martinez,"Smith, Edwards and Obrien",Jacqueline Wilson -1003,4133,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Geoffrey Jacobson,"Smith, Edwards and Obrien",David Martinez -777,2150,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jennifer Murray,"Smith, Edwards and Obrien",Matthew Stokes -155,5542,"I had a positive experience overall. The hospital staff, from doctors to janitors, was friendly and helpful. The only drawback was the limited parking space, causing inconvenience for visitors.",Ronald Taylor,"Smith, Edwards and Obrien",Laura Gonzalez -674,341,The billing process at the hospital was a nightmare. Hidden fees and unclear charges made it difficult to understand the final cost of my treatment. This aspect needs significant improvement.,Ashley Young,"Smith, Edwards and Obrien",Robert Ho -766,6492,"I had a mixed experience. The medical care was good, but the noise level in the ward was disruptive, making it challenging to rest properly.",Bryan Jones,"Smith, Edwards and Obrien",Matthew Cannon -947,3729,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Alex Anderson,"Smith, Edwards and Obrien",Crystal Johnson -275,4179,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were confusing, causing delays in my treatment.",Katherine Jones,"Smith, Edwards and Obrien",Beverly Monroe -330,3707,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",David Lopez,"Smith, Edwards and Obrien",Larry Mitchell Jr. -361,5607,"The nursing staff was compassionate and attentive, ensuring my comfort. Nevertheless, the outdated decor in the patient rooms created a somewhat dreary atmosphere.",Edgar Harris,"Smith, Edwards and Obrien",Katie Santos -526,4655,"I am grateful for the attentive care I received at the hospital. The medical staff was prompt and efficient, and the facility was well-maintained. A positive experience overall.",Dean Hart,"Smith, Edwards and Obrien",Marcus Charles -430,2228,The hospital staff went above and beyond to make me comfortable during my stay. They even organized daily activities to keep patients engaged. Impressive service!,Nancy Nichols,"Smith, Edwards and Obrien",Martin Gilbert -871,749,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Kayla Hunter DDS,"Smith, Edwards and Obrien",Jennifer Wang -459,5408,"The hospital had an efficient and caring nursing staff. On the flip side, the lack of communication about the expected wait times for tests was a bit frustrating.",Deborah Sampson,"Smith, Edwards and Obrien",Danielle Lee -993,308,"The hospital's commitment to patient-centered care was evident. However, the outdated magazines in the waiting area could use an upgrade.",Ryan Jarvis,"Smith, Edwards and Obrien",Erin Porter -721,6662,"The nursing staff was caring and responsive to my needs. The outdated decor and furniture in the rooms, however, made the stay less comfortable.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -924,6662,"I had a positive experience with the hospital's medical team, who were knowledgeable and compassionate. However, the outdated decor in the rooms could use an upgrade.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -961,8520,"The hospital's facilities were outdated, and the lack of modern equipment was concerning. The medical care, though, was satisfactory.",Jeremy Arnold,"Smith, Edwards and Obrien",Zachary Thompson -979,2934,"I had an overall positive experience at the hospital. The medical team was thorough, and the rehabilitation services were beneficial to my recovery.",Elizabeth White,"Smith, Edwards and Obrien",Scott Morrison -874,9245,"The hospital staff was courteous, and the cleanliness standards were impressive. Unfortunately, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Christina Anderson,Shea LLC,Dr. John Fischer -43,2353,"The hospital staff lacked proper communication among themselves, leading to confusion about my treatment plan. Clear and cohesive communication is essential for patient care and overall satisfaction.",Erika Ingram,Shea LLC,Dennis Fitzgerald -875,8780,"I received excellent care at the hospital, and the medical team was proactive in addressing my concerns. Nevertheless, the outdated decor in the patient rooms could use a refresh.",Dustin Perez,Shea LLC,John Henderson -514,6910,"The hospital staff was compassionate, and the medical care was excellent. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Jason Martinez,Shea LLC,Andrea Byrd -567,9854,"The nursing staff was exceptional, and the hospital's cleanliness was impressive. However, the food quality could be improved.",Meagan Herrera,Shea LLC,James Vang -66,7387,"My stay at the hospital was disappointing. The cleanliness of the facilities was subpar, and the lack of attention from the nursing staff made me feel neglected and frustrated.",Tanya Mccarty,Shea LLC,Elizabeth Clark -880,5924,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Craig Brooks,Shea LLC,Megan Kline -81,8535,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Scott Scott,Shea LLC,Angela Zhang -94,6448,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Jesse Hall,Shea LLC,Tammy Flores -890,230,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Dennis Edwards,Shea LLC,Wanda Moore MD -366,5837,"The medical team was efficient and knowledgeable, ensuring my recovery was on track. Nevertheless, the constant beeping of machines in the shared rooms became a source of irritation.",Robert Clements,Shea LLC,Sarah Long -142,2864,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Elizabeth Meyer,Shea LLC,Danielle Shannon -150,9687,"While the medical care was excellent, the wait times for tests and results were quite long. It added unnecessary stress to an already challenging situation.",Jennifer Murray,Shea LLC,Dan Potter -267,6666,"I had a positive experience overall at the hospital. The medical staff was compassionate and knowledgeable, and the facilities were clean and comfortable.",Tamara Potter,Shea LLC,Amanda Cook -522,2509,"My stay at the hospital was nothing short of excellent. The medical team was not only professional but also compassionate. The facility was well-equipped, and the overall atmosphere was positive.",Tamara Potter,Shea LLC,Miss Denise Webster DVM -905,9361,"I had a mixed experience at the hospital. While the medical care was top-notch, the wait times were frustratingly long, and the facilities felt outdated.",Kimberly Oliver,Shea LLC,Lisa Williams -184,6230,"The medical team was efficient, and the facilities were modern. Unfortunately, the lack of Wi-Fi in the rooms made it difficult to stay connected with work and loved ones.",Jennifer Evans,Shea LLC,Brian Brock -208,2256,"The medical team at the hospital was knowledgeable and thorough. Nevertheless, the lack of transparency regarding the treatment plan and options was a point of concern for me.",Jessica Anderson,Shea LLC,Cindy Dixon -281,933,"The hospital's medical staff was dedicated and caring, providing personalized attention. However, the lack of communication about changes in my treatment plan was frustrating.",Nathan Smith,Shea LLC,April Eaton -374,2834,"I had a rough time at the hospital. The wait times were long, and the staff seemed overwhelmed and disorganized.",John Novak,Shea LLC,Charles Fields -264,852,"The hospital's medical team was thorough and efficient, providing excellent care. However, the uncomfortable beds made it challenging to get a good night's sleep.",Michelle Williams,Shea LLC,Christopher Adams -863,8509,"My stay at the hospital was surprisingly pleasant. The doctors were knowledgeable, and the nurses went above and beyond to make me comfortable. However, the food was quite bland.",Jason Johnston,Shea LLC,Jennifer Chapman -692,7719,I appreciated the hospital's efforts to create a positive environment. The cheerful decor and the availability of recreational activities helped alleviate the stress of being in a medical setting.,James Jackson,Shea LLC,Kerry Pittman -603,1881,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Abigail Cummings,Shea LLC,Clinton Gutierrez DDS -370,9901,"The medical team at the hospital was dedicated and thorough in their care. However, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Austin Alvarado,Shea LLC,Melissa Greer -394,8125,"I received top-notch medical care, but the lack of clear communication about my treatment plan left me feeling uncertain about my recovery.",Nathan Fischer,Shea LLC,Erik Robinson -710,2540,The hospital's commitment to patient safety was evident in the strict adherence to infection control measures. I felt reassured about my well-being throughout my stay.,Ryan Kirk,Shea LLC,Andrea Poole -969,9567,"The nursing staff was incredibly kind and attentive, making my hospital stay more bearable. Unfortunately, the lack of parking spaces was a major inconvenience.",Sara Newman,Shea LLC,Christopher Williams -696,3128,"My stay was marked by a lack of attention from the nursing staff. While the medical care was satisfactory, the nurses seemed overworked, leading to delays in responding to my requests.",Gary Swanson,Shea LLC,Nicole Shea -808,7973,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",George Lee,Shea LLC,Barbara Schwartz -544,8791,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Jacqueline Johnson,Shea LLC,Mr. Christopher Diaz -754,5928,"The hospital facilities were impressive, and the medical staff was efficient. The outdated technology for patient records, however, caused delays in my treatment.",Kelly Massey,Shea LLC,Nicole Brewer -590,8496,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were clean and well-equipped.",Joseph Gonzales,Shea LLC,Jennifer Campbell -722,9494,"The hospital was well-maintained, and the medical team was thorough. The cafeteria food, on the other hand, was subpar at best.",Julie Zimmerman,Shea LLC,Alicia Rios -727,9494,"The nursing staff was compassionate, and the hospital grounds were well-maintained. However, the outdated TV in the room was a letdown.",Julie Zimmerman,Shea LLC,Alicia Rios -928,7296,"The hospital's medical team was competent, and the facilities were clean. On the downside, the cafeteria food left much to be desired in terms of variety and taste.",Robert Davis,"Jones, Taylor and Garcia",Austin Webb -747,5957,"The doctors were knowledgeable, and the hospital had a welcoming atmosphere. The lack of Wi-Fi in the rooms, however, was inconvenient.",Alyssa Thomas,"Jones, Taylor and Garcia",Ariel Estrada -795,7946,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",William Mclaughlin,"Jones, Taylor and Garcia",Lindsay Sosa -986,2414,"The hospital's involvement in medical research and clinical trials was a key factor in choosing it for my treatment. The cafeteria food, however, was disappointing.",Veronica Moore,"Jones, Taylor and Garcia",Regina Dorsey -629,4149,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Amber Thomas,"Jones, Taylor and Garcia",William Wood -290,6743,"I was disappointed with my hospital stay. The medical care was average at best, and the staff seemed overwhelmed and disorganized.",Lisa Wallace,"Jones, Taylor and Garcia",Mark Maxwell -139,946,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Natalie Browning,"Jones, Taylor and Garcia",Joshua Sullivan -595,451,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jennifer Evans,"Jones, Taylor and Garcia",Charles Wade -912,2376,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Chad Peterson,"Jones, Taylor and Garcia",Priscilla Tate -189,9920,"The hospital provided top-notch medical care, and the staff was attentive. However, the noisy construction outside the window disrupted my ability to rest peacefully.",Stephen Johnson,"Jones, Taylor and Garcia",Benjamin Stone -499,1917,"The hospital staff was friendly and accommodating. The facilities were modern, and the medical care was top-notch. However, the discharge instructions were a bit unclear.",Dustin Griffin,"Jones, Taylor and Garcia",Lisa Irwin -295,7443,"The hospital provided top-notch medical care, and the facilities were state-of-the-art. Unfortunately, the waiting area was crowded, and the noise level was disruptive.",Jose Carroll,"Jones, Taylor and Garcia",Timothy Rodriguez -850,6481,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about the treatment plan was a drawback.",Joe Mendoza,"Jones, Taylor and Garcia",Ronnie Padilla -304,947,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joseph Santiago,"Jones, Taylor and Garcia",Jennifer Hoover -318,3039,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joyce Brown,"Jones, Taylor and Garcia",Tina Ibarra -512,4174,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the lack of clear communication about the treatment plan was a bit frustrating.",James Jackson,"Jones, Taylor and Garcia",Lisa Bush -438,2570,"The hospital provided top-notch care, and the rehabilitation services were outstanding. On the downside, the noise levels in the hallway made it difficult to rest at times.",Sean Best,"Jones, Taylor and Garcia",Jennifer Cooper -489,8730,"The hospital staff was attentive, and the medical care was exceptional. However, the billing process was confusing, and it took several calls to clarify the charges.",Tracy Garza,"Jones, Taylor and Garcia",Jeffrey Koch -384,3838,"The medical team was knowledgeable and caring, but the lack of parking spaces made it inconvenient for visitors.",Michael Gibbs,"Jones, Taylor and Garcia",Matthew White -388,6516,"The hospital had a modern infrastructure, but the communication between departments seemed lacking, leading to confusion about my treatment plan.",Alexander Rodriguez,"Jones, Taylor and Garcia",Daniel Klein -488,6887,"My stay at the hospital was comfortable. The nursing staff was attentive, and the rooms were clean. The only drawback was the limited variety in the hospital menu.",Jon Prince,"Jones, Taylor and Garcia",Jeremy Willis -497,4745,"The hospital staff was professional, and the medical care was exceptional. However, the lack of parking space made it challenging for visitors to find convenient spots.",David Foster,"Jones, Taylor and Garcia",Abigail Grant -542,7064,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Daniel Mack,"Jones, Taylor and Garcia",Teresa Hernandez -553,6777,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",Kelly Massey,"Jones, Taylor and Garcia",Adrienne Jackson DVM -785,2593,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Brittany Harris,"Jones, Taylor and Garcia",Ryan Jacobs -923,6111,"The hospital staff was friendly and accommodating, but the waiting times for tests and consultations were longer than expected.",Christopher Jordan,"Jones, Taylor and Garcia",Dylan Alvarez -972,4296,The hospital's commitment to patient safety was evident. The strict adherence to hygiene protocols gave me confidence in the cleanliness of the facilities.,Jessica Rodriguez,"Jones, Taylor and Garcia",Joshua Myers -18,4239,"The medical team's expertise and commitment to patient well-being were commendable. Yet, the bureaucratic hurdles in scheduling follow-up appointments need to be addressed for a smoother patient experience.",Thomas Middleton,Schultz-Powers,Yolanda Smith -277,4239,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of personalized attention left me feeling like just another patient in the system.",Thomas Middleton,Schultz-Powers,Yolanda Smith -192,3219,"The hospital facilities were clean and well-maintained, and the medical team was attentive. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",Mark Nichols,Schultz-Powers,Jessica Carrillo -26,2479,"The hospital's focus on preventive care and wellness programs was commendable. Unfortunately, the outdated patient information system caused confusion among the medical staff, affecting the continuity of care.",Mark Woods,Schultz-Powers,Karen Bishop -695,8460,I was impressed by the hospital's dedication to continuous improvement. The feedback mechanisms in place showed a genuine interest in enhancing the patient experience.,Rebecca Wallace,Schultz-Powers,Lisa Smith -53,1411,"The hospital's nursing staff were exceptional in their care and attention. They made a significant positive impact on my overall experience, providing comfort and support throughout my stay.",Tasha Griffin,Schultz-Powers,Brian Wilson -254,3893,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew Bates,Schultz-Powers,Joanna Schmidt -88,5138,"I'm thankful for the compassionate care I received at the hospital. The medical team was attentive and thorough, making a significant difference in my recovery process.",John Williams,Schultz-Powers,Samantha Wilson -110,7906,"My time at the hospital was both challenging and rewarding. The medical team was competent, but the lack of coordination among staff caused delays in my treatment.",William Mclaughlin,Schultz-Powers,John Richmond MD -114,448,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Mr. Justin Bryant,Schultz-Powers,Mike Winters -946,1117,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Cathy Church,Schultz-Powers,Melvin Miller -445,4295,"The hospital had an excellent emergency response team. They handled a sudden complication with speed and efficiency, potentially saving my life. Grateful for their expertise.",Amber Thomas,Schultz-Powers,Julie Dunlap -283,1511,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were top-notch. I felt well taken care of.",Jennifer Murray,Schultz-Powers,Kevin Duke -391,1511,"I had a positive experience overall. The hospital had a friendly atmosphere, and the medical team was knowledgeable and attentive.",Jennifer Murray,Schultz-Powers,Kevin Duke -527,6993,"My stay at the hospital was a rollercoaster. The medical care was satisfactory, but the noise levels were high, affecting my ability to rest and recover. Improvement in the environment is needed.",Tamara Potter,Schultz-Powers,Lisa Lowery -672,6993,"I was disappointed with the long wait times in the emergency room. It felt like hours before I received any attention, and the staff seemed overwhelmed with the number of patients.",Tamara Potter,Schultz-Powers,Lisa Lowery -942,1959,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Linda Morris,Schultz-Powers,James Thompson -792,561,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Erin Ramirez,Schultz-Powers,Martin Hines -181,7964,"The hospital staff was attentive and compassionate. However, the lack of comfortable seating in the waiting areas made the long waits for appointments less bearable.",Troy Wilson,Schultz-Powers,Scott Hall -185,4919,"I appreciate the caring attitude of the hospital staff. However, the lack of updated reading materials in the waiting area made the time pass slowly during appointments.",Chad Peterson,Schultz-Powers,Michael Wilson -776,468,"The hospital staff was attentive and caring. I felt well-supported throughout my stay, and the facilities were up to standard.",Michelle Williams,Schultz-Powers,Catherine Wallace -271,3678,"The hospital's medical team was thorough and efficient, and the facilities were modern. However, the administrative processes were confusing and time-consuming.",Rachel Oneill,Schultz-Powers,Darren Roberts -467,3803,The hospital's dedication to pain management was commendable. The medical team actively worked to ensure my comfort during the recovery process.,Joseph Santiago,Schultz-Powers,Nicole Roberts -404,1725,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",James Jackson,Schultz-Powers,Pamela Medina -869,5241,"I appreciate the compassion shown by the nursing staff, but the administrative staff seemed disorganized. It took multiple attempts to get my billing inquiries resolved.",Tracy Garza,Schultz-Powers,Jordan Bass -602,114,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Abigail Cummings,Schultz-Powers,Susan Mills -830,8066,"The nursing staff was attentive, and the hospital had a positive atmosphere. However, the lack of privacy in the shared rooms was a downside to an otherwise pleasant stay.",Michael Gibbs,Schultz-Powers,Christine Hurley -444,9484,"The hospital had a great team of doctors, but the communication between shifts was lacking. This sometimes resulted in confusion regarding my treatment plan.",Catherine Howard,Schultz-Powers,Eric Hill -955,7931,I was pleasantly surprised by the cleanliness of the hospital facilities. The janitorial staff did an outstanding job maintaining a hygienic environment.,Jason Merritt,Schultz-Powers,Bethany Farrell -442,9800,"The hospital staff was accommodating, and the rooms were comfortable. However, the lack of variety in the menu made the dining experience monotonous during my stay.",Maurice Lane,Schultz-Powers,Jonathan Anderson -509,8648,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Miguel Stout,Schultz-Powers,Kendra Carroll -920,7798,"The hospital's cleanliness and hygiene standards were commendable. However, the limited visiting hours made it challenging for my family to spend time with me.",Richard Miller,Schultz-Powers,Brooke Alvarez -491,2250,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Andre Johnson,Schultz-Powers,William Lawson -648,7482,"The hospital staff was attentive and caring. However, the outdated decor in the rooms detracted from the overall experience.",David Foster,Schultz-Powers,Dr. Ryan Lee -765,590,The hospital staff was friendly and efficient. I appreciated the prompt service and the clean environment.,Tammy Hart,Schultz-Powers,Karen Fox -659,7161,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Eric Patton,Schultz-Powers,Christopher Oconnell -899,1203,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Angelica Houston,Schultz-Powers,John Smith -952,8213,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Heather Smith,Schultz-Powers,Heidi Douglas -750,5941,"The hospital provided excellent care, and the nursing staff was attentive. The lack of private bathrooms in the rooms, though, was inconvenient.",Thomas Middleton,Brown Inc,Veronica Price -957,7423,The medical team at the hospital was exceptional. They were thorough in their examinations and took the time to explain everything in detail.,Natalie Mitchell,Brown Inc,Justin Smith -22,9179,"The hospital's efficient triage system ensured timely care for my emergency situation. Yet, the limited availability of interpreters posed challenges in effective communication with non-English-speaking patients.",Mark Nichols,Brown Inc,Derek Taylor -758,8976,"The doctors were efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Jesse Gordon,Brown Inc,Timothy Trevino -29,2467,"The hospital's commitment to philanthropy and community engagement was commendable. However, the limited resources for patient education materials hindered my ability to fully understand my condition and treatment options.",Andrew Wallace,Brown Inc,Anthony Dorsey -315,2690,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Ashley Le,Brown Inc,Tracy Sanford -814,6783,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Ashley Le,Brown Inc,Jessica Martinez -764,3884,"Unfortunately, my experience at the hospital was subpar. The staff seemed overworked, and I had to wait for an extended period before receiving any attention.",Renee Brown,Brown Inc,Pamela Lewis -702,5222,My experience was marred by the disorganization in the billing department. Confusing statements and delayed responses to my inquiries left me frustrated with the financial aspect of my treatment.,Aaron Graves,Brown Inc,Melissa Brown -80,8410,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Barbara Warner,Brown Inc,Tanya Rodgers -87,2311,"My time at the hospital was frustrating due to long wait times and a lack of communication about my treatment plan. The medical care itself was satisfactory, but improvements are needed in these areas.",Cory Campbell,Brown Inc,Joshua Ferguson -770,5264,"The hospital provided top-notch care. The medical team was efficient, and the facilities were state-of-the-art.",Jennifer Mccall,Brown Inc,Stephen Hernandez -303,3153,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Dennis Edwards,Brown Inc,Jackson Williams -511,1220,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",Cathy Church,Brown Inc,Blake Daniels -565,1220,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Cathy Church,Brown Inc,Blake Daniels -127,2517,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Kerry Hart,Brown Inc,Miguel Lewis -209,9984,"The hospital's facilities were clean and well-maintained, creating a comfortable environment. However, the communication between shifts regarding patient care could be improved for a seamless experience.",Leah Meadows,Brown Inc,Erica Crawford -135,6610,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amber Thomas,Brown Inc,Manuel Moore -778,2334,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Robert Clements,Brown Inc,Frances Bell -939,5671,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Robert Clements,Brown Inc,Wanda Jackson -552,2281,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Christine Rogers,Brown Inc,Joseph Long -216,8155,"The hospital's medical staff was attentive and caring, making my stay comfortable. However, the lack of follow-up communication after discharge left me feeling a bit disconnected from the overall care.",Joseph Johnson,Brown Inc,Austin Burke -389,4146,"I received excellent care from the medical team, but the administrative staff seemed overwhelmed, resulting in delays and paperwork errors.",Joseph Jones,Brown Inc,Anthony Gonzales -297,7439,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Mckinney,Brown Inc,Amanda Weeks -703,964,The hospital's commitment to diversity and inclusion was evident in its multicultural staff. It added a welcoming touch to the overall environment and made me feel valued as a patient.,Joe Mendoza,Brown Inc,Gail Harris -308,9607,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Kathleen Evans,Brown Inc,Robert Cruz -367,5985,"The hospital staff was friendly and accommodating, creating a positive atmosphere. However, the lack of a proper system for patient feedback made it challenging to express concerns and suggestions.",William Hart,Brown Inc,Brenda Johnson -720,7809,"The hospital had a modern feel, and the staff was attentive. However, the bureaucratic procedures for check-in and discharge were cumbersome.",Michael Miranda,Brown Inc,Beverly Johnson -385,6686,"I had a positive overall experience. The nursing staff was attentive, but the food quality did not meet my expectations.",Lauren Rojas,Brown Inc,Heather Palmer -708,6247,The hospital's commitment to research and innovation was impressive. The participation in clinical trials showcased a forward-thinking approach to providing cutting-edge medical treatments.,Daniel Martinez,Brown Inc,David Pittman -417,518,"I had a positive experience overall. The hospital staff was friendly, and the medical team provided excellent care. However, the noise levels in the shared rooms were disruptive.",Ryan Kirk,Brown Inc,Keith Chambers -729,4319,"The hospital had a calm and soothing atmosphere, and the doctors were attentive. Unfortunately, the long wait times in the ER were frustrating.",Steven Rivera,Brown Inc,Robert Cook -480,728,"My overall experience was positive. The doctors were attentive, and the rehabilitation services helped me recover faster. The only downside was the lack of parking space.",Luis Powell MD,Brown Inc,Terry Lawson -547,6518,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Erica George,Brown Inc,Michael Miles -831,3189,"I appreciate the professionalism of the medical team. The hospital was well-maintained, but the parking facilities were limited, causing inconvenience for visitors.",Mary Mahoney,Brown Inc,Amanda Lee -581,8769,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Linda Johnson,Brown Inc,Samuel Crosby -817,8769,"I appreciate the effort of the hospital staff in ensuring my comfort during my stay. However, the waiting times were a bit long, and the communication could be improved.",Linda Johnson,Brown Inc,Samuel Crosby -606,1651,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Bryan Smith,Brown Inc,Anthony Hunt -803,818,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Eric Marquez,Brown Inc,Paul Brooks -897,1440,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Barbara Warner,Brown Inc,Colton Rose -998,7563,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jeremy Arnold,Brown Inc,Elizabeth Reynolds -19,3098,"The hospital's commitment to environmental sustainability was apparent, with eco-friendly practices in place. However, the communication between shifts regarding my treatment plan was inconsistent and confusing.",Natalie Mitchell,Pearson LLC,Cody Green DDS -200,7550,"The nursing staff at the hospital was exceptional. They provided personalized care and were always ready to address any concerns. However, the wait times for tests were longer than expected.",Gerald Smith,Pearson LLC,Christopher Kelly -69,7650,"I'm thankful for the compassionate care I received at the hospital. The nurses were kind and attentive, making a significant difference in my recovery process.",Andrew Bates,Pearson LLC,Sheila Gonzales -101,8216,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Kyle Vasquez,Pearson LLC,Matthew Wyatt -102,2812,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Terry Short,Pearson LLC,Andrea Taylor -245,2021,"My overall experience was positive, thanks to the dedicated and caring nursing staff. However, the administrative process for scheduling tests was cumbersome.",Kimberly Johnson,Pearson LLC,Joshua Crawford -968,2093,"The hospital facilities were modern, and the technology used for diagnostics was impressive. However, the cafeteria food left much to be desired.",Elaine Medina,Pearson LLC,Joseph Avila -191,4605,"The nursing staff was attentive and caring, contributing to a positive hospital experience. However, the lack of clear communication about the daily schedule was a drawback.",Rhonda Diaz,Pearson LLC,Caitlin Park -849,5301,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",James Cooper,Pearson LLC,Holly Clark -959,5465,"The hospital had a calming atmosphere, and the rooms were well-designed for patient comfort. Unfortunately, the noise level in the hallway was disruptive at times.",James Cooper,Pearson LLC,Robert Mcguire -302,956,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Julie Walker,Pearson LLC,Elizabeth Anderson -910,3239,"I appreciate the efforts of the hospital staff in providing quality care. However, the food options were limited, and the cafeteria hours were inconvenient.",Samantha Barrett,Pearson LLC,Phillip Jones -573,2849,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Christopher Murphy,Pearson LLC,Jerry Ochoa -630,9250,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Timothy Martinez,Pearson LLC,Sarah Hernandez MD -276,4414,"The hospital's environment was welcoming, and the medical team was thorough in their examinations. However, the lack of communication about changes in my treatment plan was a drawback.",Kevin Warner,Pearson LLC,Katherine Alexander -908,8136,"The hospital had a warm and welcoming atmosphere. The only downside was the noise level at night, which made it challenging to rest properly.",Kathleen Evans,Pearson LLC,Donald Alexander -336,7456,"The medical team was efficient and prompt in addressing my needs. Unfortunately, the Wi-Fi in the hospital was unreliable, making it challenging to stay connected with loved ones during my stay.",Ryan Gutierrez,Pearson LLC,Joseph Smith -839,2222,"The medical team at the hospital was knowledgeable and supportive. Unfortunately, the limited visiting hours and strict policies made it challenging for family members.",Austin Alvarado,Pearson LLC,Susan Riddle -446,2562,"The hospital's cleanliness and hygiene standards were commendable. However, the constant interruptions for routine checks made it challenging to get a good night's sleep.",Miguel Stout,Pearson LLC,Monique Foster -936,6665,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Patrick Williams,Pearson LLC,Todd Taylor -460,5065,"The hospital provided excellent care, and the medical team was knowledgeable. However, the outdated magazines in the waiting area could use an upgrade.",Stephanie Ward,Pearson LLC,Christopher Day -694,4228,The hospital's commitment to patient-centric care was evident. The staff's friendliness and the comfortable rooms contributed to a positive atmosphere during my stay.,Gary Swanson,Pearson LLC,Nathaniel Parker -518,3865,"My time at the hospital was fantastic. The medical team was not only knowledgeable but also empathetic. The facility was clean and well-maintained, making my stay comfortable.",Samuel Hill,Pearson LLC,George Houston -640,6825,"The hospital's facilities were state-of-the-art, and the medical staff was knowledgeable. However, the noise from construction nearby was bothersome.",Ryan Jarvis,Pearson LLC,Douglas Hickman -652,225,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Michael Hodges,Pearson LLC,David Reed -726,7404,"The hospital had state-of-the-art equipment, and the medical team was knowledgeable. The outdated magazines in the waiting area, though, were a disappointment.",Rebecca Hernandez,Pearson LLC,Hannah Rogers -965,1973,I encountered some issues with the scheduling of tests at the hospital. It resulted in delays in my diagnosis and treatment.,Edgar Harris,Pearson LLC,Kelsey Lawson DVM -743,3858,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Angela Vance,Pearson LLC,Laura Taylor -20,6229,"The hospital's emphasis on patient comfort was evident in the well-designed rooms. Still, the frequent changes in nursing staff created a sense of inconsistency in the quality of care provided.",Alexis Nolan,Huynh PLC,Stephanie Murray -626,8388,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Mark Woods,Huynh PLC,Angela Cohen -100,5969,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Tina Wall,Huynh PLC,Ryan Powers DDS -345,5673,"The hospital staff was friendly and accommodating, but the constant disruptions due to maintenance work made it challenging to rest and recover.",William Mclaughlin,Huynh PLC,Jeremy Martin -405,9102,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Connie Tucker,Huynh PLC,Kenneth Long -866,8700,"The hospital environment was welcoming, and the room had a beautiful view. On the downside, the lack of communication between the departments led to some confusion about my treatment plan.",Christopher Murphy,Huynh PLC,Terrance Ramirez -221,2691,"The nursing staff at the hospital was compassionate and attentive, providing excellent care. However, the lack of coordination between departments led to some delays in my treatment plan.",Melissa Garrett,Huynh PLC,Timothy Rose -492,2683,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",James Johnson,Huynh PLC,Sabrina Williams -311,4758,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jason Johnston,Huynh PLC,Amanda Wilson -350,2665,"I appreciate the hospital's effort to create a positive environment. However, the constant beeping of machines in the shared rooms became a source of annoyance during my stay.",Michael Watson,Huynh PLC,Charles Holt -718,9461,"I had a positive experience overall. The doctors were knowledgeable, and the rehabilitation services were beneficial. The parking situation, though, was a hassle.",Ashley Torres,Huynh PLC,Kelly Burch -413,7145,"The hospital provided efficient medical care, but the lack of clear signage in the hallways made it challenging to navigate the facility.",Amy Bryant,Huynh PLC,Charles Chase -562,5863,"I received top-notch care at the hospital. The nurses were friendly and attentive, and the food was surprisingly good.",Kathleen Mitchell,Huynh PLC,Haley Bright -592,9521,"I received excellent care from the hospital staff. The facilities were modern and well-equipped, but the wait times for tests were longer than expected.",Kyle Campbell,Huynh PLC,Zoe Moore -645,2506,"I had a positive experience at the hospital. The medical team was thorough, and the facilities were well-maintained.",Beth Hall,Huynh PLC,Kevin Bryan -23,2301,"The hospital's commitment to research and innovation was apparent, with access to cutting-edge treatments. Nevertheless, the extended wait times for routine procedures were a notable drawback.",Jesse Gordon,Richardson-Powell,Jermaine Reyes -636,4639,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Robert Pratt,Richardson-Powell,Jessica Davis -740,2556,"The doctors were knowledgeable, and the hospital had a clean environment. The outdated and uncomfortable beds, however, affected my overall comfort.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -900,2556,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -212,6821,"I am grateful for the compassionate care I received from the hospital's medical team. However, the lack of a dedicated patient advocate made it challenging to address specific concerns promptly.",Sandra Porter,Richardson-Powell,Charles Vaughn -58,3543,"I had a challenging experience at the hospital due to the lack of privacy in shared rooms. Privacy is essential for patients, and improvements in this area would significantly enhance the overall patient experience.",Shelley Cobb,Richardson-Powell,Ashley Wallace -137,2948,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Lisa Brewer,Richardson-Powell,Christina Moore -956,7009,"The hospital staff was friendly and attentive, making me feel comfortable during my stay. However, the food options were limited and not very appetizing.",Kyle Vasquez,Richardson-Powell,Charles Davis -399,8122,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Sara Lopez,Richardson-Powell,Jenna Rodriguez -123,6756,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Veronica Moore,Richardson-Powell,Derek Edwards -140,6374,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Jamie Fisher,Richardson-Powell,Jeffrey Brown -662,1962,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Christine Rogers,Richardson-Powell,Scott Mills -904,9220,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable and kind, and the nurses made me feel comfortable throughout.",Christine Rogers,Richardson-Powell,Heather Powers -151,5272,"The hospital has a welcoming atmosphere, and the support from the nurses was outstanding. On the downside, the food options were limited and not very appetizing.",Carla Miller,Richardson-Powell,Charles Mitchell -257,5272,"The hospital's environment was comfortable, and the medical team was thorough in their examinations. However, the noise levels in the shared rooms were disruptive to my rest.",Carla Miller,Richardson-Powell,Charles Mitchell -824,4315,"I had a positive experience overall. The nurses were kind and responsive, but there were some communication gaps between the different departments.",Carla Miller,Richardson-Powell,Angela Williams -647,2675,"The medical care at the hospital was outstanding, but the lack of a comfortable waiting area for families was a drawback.",Cristina Ortega,Richardson-Powell,Michael Powell -543,5008,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Andrew James,Richardson-Powell,Mary White -433,7164,"The hospital had a warm and welcoming atmosphere. The doctors were knowledgeable, and the support staff was always ready to assist. A positive environment for recovery.",Denise Perez,Richardson-Powell,Tracy Oliver -242,7141,"The medical care was excellent, but the noise levels in the hospital were unbearable. It was challenging to rest and recover in such a chaotic environment.",Bryan Jones,Richardson-Powell,Alyssa Delgado -516,7141,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Bryan Jones,Richardson-Powell,Alyssa Delgado -256,2300,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Alex Anderson,Richardson-Powell,Harry Pennington MD -265,8171,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",April Shea,Richardson-Powell,Alfred Hernandez -356,4178,"The hospital's commitment to cleanliness and hygiene was evident, creating a comfortable environment. On the downside, the lack of vegetarian options in the cafeteria made meal choices limited.",Abigail Cummings,Richardson-Powell,Scott Long -387,7772,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. The only downside was the limited menu for patients.",Catherine Howard,Richardson-Powell,Daniel Braun -646,823,"The hospital staff was friendly and helpful, but the lack of Wi-Fi in the rooms made it challenging to stay connected with loved ones.",Nathan Fischer,Richardson-Powell,Kristen Johnson -395,733,"The hospital staff was attentive and caring. However, the outdated magazines in the waiting area could use an update.",Carmen Larsen,Richardson-Powell,Jason Alvarado -415,3767,"I appreciate the caring and attentive medical staff at the hospital. However, the lack of recreational activities for patients made my stay monotonous.",Daniel Martinez,Richardson-Powell,Sarah Burton -805,6207,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Lisa Anderson,Richardson-Powell,Joel Robertson -504,3469,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the cafeteria food left much to be desired.",Michael Berger,Richardson-Powell,Kaitlin Khan -507,4645,"The hospital staff was attentive, and the medical care was excellent. However, the lack of parking space made it challenging for visitors to find convenient spots.",Amy Daniels,Richardson-Powell,Betty Burke -517,7878,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Louis Chambers,Richardson-Powell,Linda Jones -521,631,"I had a challenging time at the hospital. The medical care was adequate, but the lack of communication between the staff and me left me feeling frustrated and confused about my treatment plan.",Samantha Mendez,Richardson-Powell,Kurt Gordon -591,8971,"The nursing staff was compassionate and attentive, and the hospital's commitment to patient well-being was evident. However, the administrative processes were a bit confusing.",Kathryn Johnson,Richardson-Powell,Dylan Maynard -601,4702,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Joseph Roman,Richardson-Powell,Caleb Coleman -977,6052,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Jacqueline Mcneil DVM,Richardson-Powell,Eric Duncan -967,846,I had a frustrating experience dealing with the hospital's insurance coordination. It added unnecessary complications to an already challenging situation.,Emily Lucas,Richardson-Powell,Jeffrey Carter -930,7331,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Jennifer Roberts,Richardson-Powell,Dominique Howard -730,4529,"The nursing staff provided excellent care, and the hospital was clean. The limited visiting hours, however, were inconvenient for my family.",Shaun Little,Richardson-Powell,Jesse Young -800,4794,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Rhonda Wall,Richardson-Powell,Christopher Fernandez -855,8265,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Rebecca Hernandez,Richardson-Powell,Jennifer Hale -780,6965,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Derek Edwards,Richardson-Powell,Ashley Nelson -798,6525,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Karen Klein,Richardson-Powell,Olivia Mccarthy -448,5558,The hospital staff showed genuine concern for patients' well-being. The daily check-ins and follow-ups were reassuring and demonstrated a high level of care.,Mark Woods,Cunningham and Sons,Samuel Knight -246,1031,"The hospital's medical team was efficient and knowledgeable, but the lack of personalized attention made me feel like just another patient in the system.",Jenna Taylor,Cunningham and Sons,Kathleen Conner -52,2860,"I encountered issues with the scheduling of appointments and consultations, leading to frustration and inconvenience. Improving the efficiency of the appointment system is crucial for patient satisfaction.",Ashley Le,Cunningham and Sons,Brian Rodriguez -57,911,The hospital's commitment to patient-centered care was evident in the personalized attention I received from the medical team. They took the time to address my concerns and involve me in decision-making.,Ronald Chen,Cunningham and Sons,Daniel Evans -63,140,"The hospital provided excellent care, and the medical team went above and beyond to ensure my comfort. I felt well-informed about my treatment plan throughout my stay.",Meagan Herrera,Cunningham and Sons,Tim Mercer -75,778,"My time at the hospital was challenging due to a lack of coordination among the staff. The left hand didn't seem to know what the right hand was doing, causing unnecessary stress during my stay.",Benjamin Stevens,Cunningham and Sons,Steven Davis -493,2513,"My experience at the hospital was a mix of highs and lows. The medical care was excellent, but the communication between different departments was lacking, leading to some confusion.",Logan Hansen,Cunningham and Sons,Ronald Wright -529,6917,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Craig Brooks,Cunningham and Sons,Lauren Dominguez -217,2626,"I had a positive experience with the hospital's nursing staff, who provided exceptional care. The only downside was the limited availability of certain diagnostic tests on-site.",Alyssa Thomas,Cunningham and Sons,John Parks -618,7847,"The hospital's environment was peaceful, and the rooms were well-maintained. Unfortunately, the billing process was confusing and stressful.",Jennifer Mccall,Cunningham and Sons,Cheryl Moss -837,6608,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the noise level in the corridors and shared spaces was disruptive.",Lisa Wilkinson,Cunningham and Sons,Jordan Berg -340,9596,"The hospital's medical team demonstrated expertise and empathy. Unfortunately, the noise level from construction nearby made it challenging to rest and recover.",Miss Maria King,Cunningham and Sons,James Richard -118,6547,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Dennis Edwards,Cunningham and Sons,Steven Gray -349,5305,"The medical team at the hospital was attentive and knowledgeable, making my stay comfortable. On the downside, the parking fees added an unexpected financial burden to my overall experience.",Antonio Campbell,Cunningham and Sons,Michele Scott -134,6070,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Leah Meadows,Cunningham and Sons,Linda Barker -588,9178,"I received excellent care from the hospital's medical team. The facilities were clean and well-maintained, but the food options were limited.",Amy Rios,Cunningham and Sons,Shane Sanchez -166,1339,"The hospital's medical team was thorough and attentive, ensuring my comfort. Nevertheless, the limited visiting hours were restrictive and made it challenging for family support.",Miranda Hunt,Cunningham and Sons,Margaret Casey -174,7307,"I appreciate the excellent care I received from the medical team. On the downside, the lack of patient education about medications and post-discharge care was a drawback.",Danielle Herring,Cunningham and Sons,Tabitha Sloan -351,7778,"The nursing staff was exceptional in their care, and the hospital's facilities were state-of-the-art. Despite this, the lack of clear communication about the treatment plan created confusion and anxiety.",Carol Sanchez,Cunningham and Sons,Karen Ross -995,2195,"The hospital's commitment to medical education and training was apparent. However, the limited visitation hours made it challenging for my family to be present.",Chad Peterson,Cunningham and Sons,Justin Jackson -244,9857,"The hospital staff was compassionate and understanding, providing emotional support during a difficult time. The only drawback was the limited visiting hours.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -392,9857,"The cleanliness and hygiene standards at the hospital were commendable. However, the cafeteria food left much to be desired.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -197,9924,"My experience at the hospital was disappointing. The communication between the medical team and the administrative staff was lacking, leading to confusion and frustration.",Courtney Walton,Cunningham and Sons,William Thompson -305,9924,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Courtney Walton,Cunningham and Sons,William Thompson -198,7795,"The hospital had a welcoming atmosphere, and the medical professionals were compassionate. Unfortunately, the outdated facilities were a downside to an otherwise positive experience.",Denise Chavez,Cunningham and Sons,Abigail Nixon -1002,6870,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Joseph Johnson,Cunningham and Sons,Erica Mcneil -919,5143,"I had a satisfactory experience at the hospital. The medical team was competent, but the lack of communication about the treatment plan left me feeling uncertain.",Miranda Meza,Cunningham and Sons,Jacob Pierce -842,5973,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Christopher Williamson,Cunningham and Sons,Scott Perez -263,2584,"I had a positive experience at the hospital, thanks to the caring and knowledgeable medical staff. However, the lack of coordination between different departments was a drawback.",Justin Anderson,Cunningham and Sons,Edward Mcpherson -515,350,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only drawback was the limited entertainment options in the patient rooms.",Jeffrey Williams,Cunningham and Sons,Gabriel Mccormick -410,4908,"The hospital staff was friendly and attentive, making my stay comfortable. However, the lack of updated information about my treatment plan was concerning.",Mr. Andrew Keller,Cunningham and Sons,Lori Woodard -841,5077,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Jesus Snyder,Cunningham and Sons,Andrea Morgan -580,3881,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Charles Kim,Cunningham and Sons,Edward Jones -883,1711,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Charles Kim,Cunningham and Sons,Matthew Ford -376,2766,"The hospital staff was friendly, and the room had a beautiful view. Unfortunately, the Wi-Fi was unreliable, making it hard to stay connected.",Michael Miranda,Cunningham and Sons,Benjamin Anderson -429,6321,"I had a mixed experience at the hospital. While the doctors were skilled and professional, the cafeteria food left much to be desired. A bit disappointing overall.",Amanda James,Cunningham and Sons,Donald Harris -698,9737,"The medical team was exceptional, providing thorough and compassionate care. However, the outdated decor and furnishings of the hospital rooms diminished the overall experience.",Scott Barton,Cunningham and Sons,Jenny Watson -701,681,"The hospital's dedication to patient well-being was evident in the diverse range of support services offered. From nutrition counseling to physical therapy, the comprehensive approach to care was commendable.",Robert Haynes,Cunningham and Sons,Jackie Arellano -757,7447,"The medical care was top-notch, and the hospital had a calming ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Karen Clark,Cunningham and Sons,John Oneill -926,4496,"The hospital's nursing staff was exceptional, providing personalized care. Unfortunately, the administrative processes were slow and bureaucratic.",Angelica Houston,Cunningham and Sons,Elizabeth Huff -992,719,"The hospital staff demonstrated professionalism and empathy. Unfortunately, the lack of coordination among the nursing shifts affected the consistency of care.",Joshua Jenkins,Cunningham and Sons,Travis Jordan -105,8871,"I can't thank the hospital staff enough for their exceptional care. The doctors were thorough, and the nurses went above and beyond to ensure I had everything I needed.",Rebecca Wallace,Jordan Inc,Aaron Franklin -337,7892,"The hospital's commitment to patient care was evident in the dedication of the staff. Nevertheless, the outdated decor and furniture in the rooms could use a refresh.",Rebecca Wallace,Jordan Inc,Kenneth Martin -911,4926,"The hospital facilities were modern and well-maintained. The only drawback was the lack of personal attention from the doctors, who seemed rushed during consultations.",Todd Mccormick,Jordan Inc,Gary Cook -44,6763,The hospital's commitment to patient education was evident in the thorough explanations provided by the medical team. I left with a clear understanding of my condition and how to manage it moving forward.,Nicole Keith,Jordan Inc,Andrew Morris -894,6763,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Nicole Keith,Jordan Inc,Andrew Morris -68,906,"I encountered a few issues during my hospital stay. While the medical care was competent, the wait times for tests and procedures were longer than expected, causing some frustration.",Monique Hall,Jordan Inc,Alec Hess -772,6913,"The hospital staff went above and beyond to make me feel comfortable. The atmosphere was warm, and the medical care was exceptional.",Andrew Bates,Jordan Inc,Elizabeth Rivera -836,7723,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about post-discharge care was a drawback.",Kelsey Dillon,Jordan Inc,Kimberly Cohen -987,6617,I encountered some issues with the scheduling of appointments at the hospital. The delays in getting test results were frustrating and prolonged my anxiety.,Lisa Brewer,Jordan Inc,William Barber -95,348,"The hospital staff were accommodating and supportive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Joshua Martinez,Jordan Inc,Nathan Elliott -96,5575,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Alyssa Thomas,Jordan Inc,Jessica Lyons -359,6318,"The hospital staff was attentive, and the medical facilities were well-maintained. Nonetheless, the lack of a proper system for patient feedback left me feeling unheard and undervalued.",Miss Maria King,Jordan Inc,Mikayla Baker -661,905,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Antonio Campbell,Jordan Inc,David Copeland -280,3155,"The hospital's facilities were top-notch, and the medical team was highly skilled. However, the administrative processes were confusing and time-consuming.",Miranda Hunt,Jordan Inc,Bailey Rich -982,2608,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Andrew James,Jordan Inc,Brian Schwartz -195,8830,"The hospital staff was friendly and accommodating. However, the cleanliness of the facilities left much to be desired. It could use some improvement in that aspect.",Paige Morris,Jordan Inc,Paul Mendez -230,6320,"The hospital's commitment to patient safety was evident, and the medical staff was knowledgeable. On the downside, the lack of entertainment options for patients during recovery was a drawback.",Alisha Figueroa,Jordan Inc,Rhonda King -248,5987,"The hospital staff was kind and attentive, making me feel well-cared-for. However, the outdated entertainment options in the patient rooms could be improved.",Christopher Williamson,Jordan Inc,Edward Rodriguez -284,3146,"I had a mixed experience at the hospital. While the medical care was good, the cleanliness of the facilities left something to be desired.",John Novak,Jordan Inc,Jeffrey Bradford -802,1465,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Timothy Riley,Jordan Inc,Mallory Jones -314,873,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",David Perez,Jordan Inc,Shannon Williams -994,8393,I had a positive experience with the hospital's pain management team. They were responsive to my needs and helped me cope during a challenging time.,Edward Miller,Jordan Inc,John Barrett -989,1892,I had a positive experience with the hospital's physical therapy department. The therapists were knowledgeable and dedicated to my recovery.,Lauren Williams,Jordan Inc,Nathan Miranda MD -382,9080,"I appreciate the hospital's efforts to create a warm atmosphere, but the outdated decor and furniture in the rooms could use an upgrade.",Ashley Torres,Jordan Inc,Brandon Norman -436,5561,"The hospital staff was attentive, and the rooms were kept clean. However, the lack of Wi-Fi in the patient rooms was inconvenient in this digital age.",Michael Berger,Jordan Inc,Amy Coleman -447,8365,"The medical team was proficient, and the technology used for diagnostics was impressive. On the downside, the waiting area was overcrowded, leading to extended wait times.",Miguel Davidson,Jordan Inc,Kevin Tate -483,9673,"The hospital provided exceptional care during my stay. The staff went above and beyond to ensure my comfort. However, the Wi-Fi was unreliable, making it challenging to stay connected.",Matthew Ward,Jordan Inc,Brandon Lopez -749,1702,"The medical team was thorough, and the hospital had a calming ambiance. The outdated magazines in the waiting area, however, were a disappointment.",David Carter,Jordan Inc,Michael Herrera -813,1702,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",David Carter,Jordan Inc,Michael Herrera -638,3477,"I had a positive experience at the hospital. The nursing staff was attentive, and the medical care exceeded my expectations.",Jonathan Lucas,Jordan Inc,Jessica Wolf -487,643,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Crystal Wallace,Jordan Inc,John Rios -510,643,"I had a positive experience at the hospital. The nursing staff was caring, and the facilities were modern and well-equipped. However, the cafeteria food left much to be desired.",Crystal Wallace,Jordan Inc,John Rios -794,8572,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Samuel Hill,Jordan Inc,David Kelley -579,4972,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Mary Mahoney,Jordan Inc,Anthony Burton -689,1828,"My stay was marked by a lack of communication between departments. It felt like each department operated independently, leading to delays in my treatment and discharge process.",Bernard Miller,Jordan Inc,Cameron Bailey -879,1828,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Bernard Miller,Jordan Inc,Cameron Bailey -742,9286,"The medical team was efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Miss Valerie George,Jordan Inc,Daniel Johnson -970,2009,"The hospital staff, from doctors to janitors, showed dedication to their work. However, the administrative processes need streamlining for a smoother patient experience.",Sally Jones,Jordan Inc,Gerald Hernandez diff --git a/langchain-rag-app/source_code_step_2/data/visits.csv b/langchain-rag-app/source_code_step_2/data/visits.csv deleted file mode 100644 index b27b0e80bc..0000000000 --- a/langchain-rag-app/source_code_step_2/data/visits.csv +++ /dev/null @@ -1,9999 +0,0 @@ -patient_id,date_of_admission,billing_amount,room_number,admission_type,discharge_date,test_results,visit_id,physician_id,payer_id,hospital_id,chief_complaint,treatment_description,primary_diagnosis,visit_status -0,2022-11-17,37490.98336352819,146,Elective,2022-12-01,Inconclusive,0,102,1,0,,,,DISCHARGED -1,2023-06-01,47304.06484547511,404,Emergency,,Normal,1,435,4,5,,,,OPEN -2,2019-01-09,36874.89699661277,292,Emergency,2019-02-08,Normal,2,348,2,6,,,,DISCHARGED -3,2020-05-02,23303.322092196904,480,Urgent,2020-05-03,Abnormal,3,270,4,15,,,,DISCHARGED -4,2021-07-09,18086.34418356388,477,Urgent,2021-08-02,Normal,4,106,2,29,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5,2020-08-20,22522.363384853263,180,Urgent,2020-08-23,Abnormal,5,71,1,26,,,,DISCHARGED -6,2021-03-22,39593.4357611308,161,Urgent,2021-04-15,Abnormal,6,188,2,14,,,,DISCHARGED -7,2019-05-16,13546.817249364824,384,Elective,2019-06-02,Normal,7,20,1,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -8,2020-12-17,24903.03726973869,215,Elective,2020-12-22,Abnormal,8,102,1,29,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -9,2022-12-15,22788.23602637677,310,Urgent,2022-12-16,Normal,9,121,3,1,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -10,2021-04-13,40325.071393983046,306,Emergency,2021-05-11,Abnormal,10,466,1,25,,,,DISCHARGED -11,2019-06-09,6185.903529552847,126,Emergency,2019-06-26,Inconclusive,11,214,2,24,,,,DISCHARGED -12,2021-11-29,4835.945649525413,444,Elective,2021-12-14,Inconclusive,12,330,3,22,,,,DISCHARGED -12,2022-07-07,2252.6827208169525,338,Elective,2022-08-02,Abnormal,7992,458,3,15,,,,DISCHARGED -12,2021-11-28,27633.45013875761,212,Emergency,2021-12-23,Abnormal,8815,87,1,16,,,,DISCHARGED -13,2021-07-29,13669.377744164887,492,Elective,2021-08-14,Normal,13,372,4,23,,,,DISCHARGED -14,2021-06-05,10342.836123527371,120,Emergency,2021-06-25,Inconclusive,14,99,4,14,,,,DISCHARGED -15,2021-08-07,27174.942906232496,492,Emergency,2021-08-14,Inconclusive,15,359,3,2,,,,DISCHARGED -16,2019-11-15,17394.994264453202,315,Elective,2019-12-04,Inconclusive,16,151,1,3,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -17,2022-03-08,45213.53762641964,475,Elective,2022-03-16,Inconclusive,17,130,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -18,2022-06-19,4262.91157816964,125,Elective,2022-06-29,Inconclusive,18,149,1,4,,,,DISCHARGED -19,2019-07-10,16609.311817449878,366,Emergency,2019-08-07,Inconclusive,19,308,1,16,,,,DISCHARGED -20,2023-02-25,32263.62215656245,238,Emergency,2023-03-27,Normal,20,257,3,5,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -20,2019-06-21,39952.38485585516,145,Elective,2019-07-13,Inconclusive,1280,343,3,9,,,,DISCHARGED -21,2022-12-12,42610.70456262938,364,Urgent,2022-12-26,Abnormal,21,491,0,21,,,,DISCHARGED -22,2022-10-09,16701.34713196211,130,Emergency,2022-11-01,Abnormal,22,413,4,17,,,,DISCHARGED -23,2019-01-10,22331.28015619921,120,Urgent,2019-01-31,Abnormal,23,293,4,26,,,,DISCHARGED -23,2022-11-03,20142.76467342658,440,Elective,2022-12-02,Abnormal,5767,385,4,9,,,,DISCHARGED -23,2019-02-28,38012.81444261646,315,Elective,2019-03-28,Abnormal,7305,191,2,5,,,,DISCHARGED -24,2022-08-05,41319.500315655176,293,Urgent,2022-09-03,Normal,24,443,1,23,,,,DISCHARGED -25,2021-05-27,37766.52123735682,292,Urgent,2021-06-23,Abnormal,25,276,3,5,,,,DISCHARGED -26,2021-07-12,35834.356603177686,379,Elective,2021-07-29,Abnormal,26,160,4,19,,,,DISCHARGED -27,2021-05-25,12680.730521058496,298,Emergency,2021-06-08,Abnormal,27,459,0,14,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -28,2019-05-14,12935.41324986354,392,Elective,2019-06-11,Abnormal,28,313,4,3,,,,DISCHARGED -29,2022-12-02,18393.421751093483,162,Emergency,2022-12-18,Inconclusive,29,21,1,24,,,,DISCHARGED -30,2021-11-09,22356.082268250702,456,Emergency,2021-11-28,Abnormal,30,252,1,15,,,,DISCHARGED -31,2023-07-09,21001.27487283218,197,Emergency,,Normal,31,235,3,21,,,,OPEN -32,2021-02-06,9007.96786622078,247,Urgent,2021-03-03,Abnormal,32,344,2,23,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -32,2022-10-01,5706.438141736805,492,Emergency,2022-10-28,Abnormal,449,48,3,7,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -33,2021-01-29,39031.362644016815,228,Elective,2021-02-23,Abnormal,33,474,4,6,,,,DISCHARGED -34,2019-12-01,24609.37462680727,137,Emergency,2019-12-18,Abnormal,34,58,0,18,,,,DISCHARGED -35,2019-11-12,5098.663127547211,192,Emergency,2019-11-24,Abnormal,35,169,3,25,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -35,2021-07-08,31178.81992005491,143,Elective,2021-07-28,Normal,3727,475,2,16,,,,DISCHARGED -36,2022-09-06,1000.1808370217516,258,Emergency,2022-09-18,Abnormal,36,187,3,20,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -37,2021-03-19,24913.55265165257,219,Elective,2021-03-20,Normal,37,463,1,12,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -38,2021-02-24,24274.14160062449,364,Elective,2021-03-21,Normal,38,270,4,14,,,,DISCHARGED -39,2021-06-30,16171.94855563634,414,Emergency,2021-07-14,Inconclusive,39,189,4,25,,,,DISCHARGED -40,2019-03-25,39329.11430902151,110,Urgent,2019-04-08,Inconclusive,40,445,4,25,,,,DISCHARGED -41,2021-08-15,22519.33617812455,465,Emergency,2021-09-06,Inconclusive,41,174,4,1,,,,DISCHARGED -42,2023-03-03,1996.3107212810503,469,Urgent,2023-03-05,Inconclusive,42,445,4,27,,,,DISCHARGED -43,2021-08-07,5470.20968689125,182,Emergency,2021-08-09,Inconclusive,43,50,4,9,,,,DISCHARGED -44,2019-06-06,16036.109990023424,119,Emergency,2019-06-30,Normal,44,363,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -45,2019-10-13,10803.730343659594,388,Emergency,2019-10-29,Inconclusive,45,54,2,17,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -45,2021-10-05,9881.807963117068,433,Emergency,2021-10-30,Abnormal,6773,243,4,29,,,,DISCHARGED -46,2022-10-20,38872.64522272379,412,Elective,2022-11-04,Abnormal,46,319,2,22,,,,DISCHARGED -46,2023-03-30,7264.670968184325,212,Emergency,2023-04-22,Inconclusive,7173,130,4,10,,,,DISCHARGED -47,2019-06-26,34132.623000118074,182,Emergency,2019-07-24,Normal,47,484,3,12,,,,DISCHARGED -48,2020-04-03,25948.507189184053,359,Emergency,2020-04-06,Normal,48,306,4,18,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -49,2021-02-18,46461.82252356185,186,Urgent,2021-03-06,Abnormal,49,134,1,28,,,,DISCHARGED -50,2019-06-14,10705.098399640798,437,Emergency,2019-07-13,Inconclusive,50,20,0,23,,,,DISCHARGED -51,2022-11-26,49576.87403288612,132,Elective,2022-12-08,Abnormal,51,328,3,24,,,,DISCHARGED -52,2023-08-25,8005.828337056341,271,Urgent,2023-09-12,Inconclusive,52,166,3,29,,,,DISCHARGED -53,2022-03-29,41295.399748056494,361,Emergency,2022-04-02,Normal,53,273,1,28,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -54,2021-07-04,20080.29764490514,303,Emergency,2021-07-29,Normal,54,387,4,23,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -55,2019-11-04,1888.0021112903448,317,Emergency,2019-11-19,Inconclusive,55,88,0,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -56,2021-12-28,44935.26969698472,439,Emergency,2022-01-09,Abnormal,56,315,3,4,,,,DISCHARGED -57,2022-10-27,10724.033246931533,153,Urgent,2022-11-18,Normal,57,13,0,2,,,,DISCHARGED -58,2023-04-06,14691.25004225776,438,Elective,2023-04-22,Inconclusive,58,241,3,18,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -58,2022-04-26,4927.534646772167,421,Elective,2022-05-18,Abnormal,1239,264,4,22,,,,DISCHARGED -58,2019-08-19,49228.707833991495,271,Emergency,2019-08-26,Inconclusive,1845,345,3,12,,,,DISCHARGED -58,2019-09-03,39154.24733174383,271,Urgent,2019-09-23,Abnormal,4802,52,3,4,,,,DISCHARGED -59,2020-01-19,47508.00017915965,120,Urgent,2020-01-24,Inconclusive,59,385,2,11,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -59,2020-09-29,15488.364529936747,195,Emergency,2020-10-02,Abnormal,9480,339,4,13,,,,DISCHARGED -60,2020-02-29,2628.94781998456,380,Emergency,2020-03-12,Normal,60,91,1,5,,,,DISCHARGED -61,2021-04-29,13794.720442081489,194,Urgent,2021-05-06,Inconclusive,61,366,1,29,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -61,2021-09-21,26987.12137071019,375,Elective,2021-09-26,Normal,3425,443,4,21,,,,DISCHARGED -62,2021-02-07,9991.074445541251,199,Emergency,2021-03-06,Normal,62,454,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -63,2023-10-28,18904.738199568317,404,Urgent,,Inconclusive,63,427,4,16,,,,OPEN -64,2020-08-08,44423.095535829976,301,Elective,2020-08-29,Normal,64,263,1,7,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -64,2020-03-30,48195.51281350375,220,Elective,2020-04-08,Abnormal,3882,430,2,25,,,,DISCHARGED -65,2023-07-09,22749.28413876537,223,Elective,2023-07-30,Inconclusive,65,34,1,12,,,,DISCHARGED -66,2021-06-13,21965.07965627856,410,Emergency,2021-06-23,Abnormal,66,205,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -67,2022-11-23,8311.397389222286,205,Urgent,2022-11-29,Abnormal,67,80,4,4,,,,DISCHARGED -68,2020-12-31,43547.77222226695,134,Urgent,2021-01-06,Abnormal,68,419,0,28,,,,DISCHARGED -69,2020-02-20,24509.041814010277,407,Urgent,2020-02-27,Inconclusive,69,49,0,21,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -69,2019-06-14,36026.53829069928,148,Emergency,2019-06-18,Inconclusive,5545,359,4,21,,,,DISCHARGED -70,2020-12-30,1997.332761270466,188,Urgent,2021-01-18,Normal,70,387,2,16,,,,DISCHARGED -71,2020-03-28,6575.139467900149,213,Emergency,2020-04-03,Abnormal,71,1,1,2,,,,DISCHARGED -72,2020-05-07,37421.29665993603,405,Emergency,2020-06-04,Abnormal,72,389,2,27,,,,DISCHARGED -73,2022-04-24,4679.119038677208,358,Elective,2022-05-22,Normal,73,53,0,5,,,,DISCHARGED -74,2021-07-30,22787.2792441943,147,Urgent,2021-08-27,Abnormal,74,105,4,13,,,,DISCHARGED -75,2023-08-12,33925.02014329144,115,Elective,2023-08-29,Normal,75,259,4,14,,,,DISCHARGED -76,2021-07-07,42685.19000354352,436,Emergency,2021-07-16,Abnormal,76,309,2,13,,,,DISCHARGED -77,2020-08-24,9029.126290619311,263,Emergency,2020-09-05,Normal,77,476,2,10,,,,DISCHARGED -78,2019-07-27,6777.229313799993,493,Emergency,2019-08-08,Inconclusive,78,190,1,10,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -78,2021-10-05,18232.7682106744,422,Urgent,2021-10-20,Abnormal,2603,401,3,8,,,,DISCHARGED -79,2023-08-19,28792.631974631822,460,Emergency,2023-09-07,Inconclusive,79,217,3,5,,,,DISCHARGED -80,2021-01-15,22081.278260597264,356,Emergency,2021-01-26,Abnormal,80,43,1,14,,,,DISCHARGED -81,2023-08-16,26440.396725683902,142,Elective,2023-09-15,Abnormal,81,161,3,11,,,,DISCHARGED -82,2019-10-22,46144.93971840711,392,Emergency,2019-11-10,Normal,82,201,0,28,,,,DISCHARGED -83,2018-12-28,5319.542762776323,139,Elective,2019-01-27,Abnormal,83,445,3,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -84,2019-01-12,44047.14424188422,482,Elective,2019-02-11,Normal,84,483,1,0,,,,DISCHARGED -84,2022-06-04,17592.873248294633,330,Elective,2022-07-02,Normal,7745,269,3,24,,,,DISCHARGED -85,2019-06-30,47452.441876165394,141,Urgent,2019-07-20,Abnormal,85,350,4,15,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -86,2020-12-12,34056.929869869935,397,Emergency,2020-12-29,Normal,86,303,2,19,,,,DISCHARGED -87,2019-10-21,17241.1163626356,347,Urgent,2019-10-22,Abnormal,87,270,0,14,,,,DISCHARGED -88,2021-02-10,18898.603555373968,245,Elective,2021-02-21,Inconclusive,88,455,4,1,,,,DISCHARGED -89,2020-08-15,35869.40641203239,143,Elective,2020-08-29,Normal,89,461,4,16,,,,DISCHARGED -90,2022-03-17,23559.596143840925,405,Emergency,2022-04-09,Inconclusive,90,214,1,2,,,,DISCHARGED -91,2021-10-23,23777.795524651938,142,Elective,2021-11-21,Abnormal,91,251,2,2,,,,DISCHARGED -92,2021-09-22,16931.636008434823,108,Emergency,2021-10-22,Normal,92,189,2,4,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -93,2021-03-28,13073.28802256408,268,Emergency,2021-04-06,Normal,93,295,0,16,,,,DISCHARGED -94,2018-11-18,5092.74967506549,182,Urgent,2018-12-08,Inconclusive,94,212,1,22,,,,DISCHARGED -95,2020-02-26,22577.60260775006,119,Elective,2020-03-18,Abnormal,95,207,0,28,,,,DISCHARGED -96,2020-12-10,11057.975641406209,176,Emergency,2021-01-09,Abnormal,96,236,3,16,,,,DISCHARGED -97,2022-10-15,1923.9067941825535,462,Elective,2022-10-19,Abnormal,97,337,4,19,,,,DISCHARGED -98,2023-07-03,33776.79958830402,484,Urgent,2023-07-19,Inconclusive,98,366,0,5,,,,DISCHARGED -99,2023-04-23,38450.62746287311,329,Urgent,2023-05-01,Normal,99,52,4,0,,,,DISCHARGED -100,2020-10-05,48379.06255904229,335,Urgent,2020-11-03,Inconclusive,100,279,1,6,,,,DISCHARGED -101,2021-09-12,40340.5304226113,201,Emergency,2021-09-27,Inconclusive,101,409,3,25,,,,DISCHARGED -102,2022-10-31,18161.75197765212,309,Emergency,2022-11-29,Inconclusive,102,216,1,14,,,,DISCHARGED -103,2020-12-28,23517.461851862125,389,Urgent,2021-01-14,Normal,103,251,3,6,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -104,2019-08-25,24116.59972560668,217,Urgent,2019-09-23,Inconclusive,104,187,3,18,,,,DISCHARGED -105,2020-02-16,8895.137287821723,137,Elective,2020-02-27,Abnormal,105,379,4,19,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -106,2022-06-14,48995.04883877174,299,Emergency,2022-07-13,Inconclusive,106,492,1,21,,,,DISCHARGED -107,2021-08-16,17835.950541843562,275,Urgent,2021-09-01,Normal,107,40,1,29,,,,DISCHARGED -108,2023-03-02,36379.94714743435,181,Emergency,2023-03-27,Abnormal,108,156,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -109,2021-01-22,23684.915547098724,401,Emergency,2021-02-19,Abnormal,109,14,1,22,,,,DISCHARGED -110,2023-05-25,20312.769821444414,263,Elective,2023-06-15,Inconclusive,110,300,0,13,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -111,2020-11-11,47999.806126673175,214,Elective,2020-11-14,Normal,111,64,2,12,,,,DISCHARGED -112,2019-12-05,41814.42446823161,267,Emergency,2019-12-13,Inconclusive,112,344,2,19,,,,DISCHARGED -113,2021-05-31,25436.99471967156,211,Urgent,2021-06-01,Inconclusive,113,326,2,25,,,,DISCHARGED -113,2023-05-19,40484.25712271965,462,Elective,2023-05-20,Normal,4400,8,1,26,,,,DISCHARGED -114,2020-03-08,22139.971997018227,247,Elective,2020-04-06,Normal,114,343,1,24,,,,DISCHARGED -115,2019-06-21,39666.240550571936,482,Elective,2019-07-20,Inconclusive,115,128,0,8,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -116,2022-03-27,26051.414457974857,184,Emergency,2022-04-07,Inconclusive,116,491,3,8,,,,DISCHARGED -117,2019-09-13,19279.260214819587,140,Emergency,2019-09-16,Abnormal,117,135,0,15,,,,DISCHARGED -118,2022-03-23,32007.35285877332,416,Elective,2022-04-04,Inconclusive,118,471,2,11,,,,DISCHARGED -119,2020-06-19,36823.92825999236,179,Elective,2020-07-04,Normal,119,62,0,9,,,,DISCHARGED -120,2021-07-09,36946.000267329895,115,Urgent,2021-07-10,Normal,120,138,3,5,,,,DISCHARGED -121,2020-01-14,3345.703488808345,292,Elective,2020-02-05,Inconclusive,121,498,1,17,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -122,2022-11-01,21591.836167692487,289,Elective,2022-11-24,Abnormal,122,80,0,1,,,,DISCHARGED -123,2021-08-24,13080.66532485659,293,Elective,2021-09-06,Abnormal,123,391,2,26,,,,DISCHARGED -124,2023-04-28,31008.47930812416,350,Urgent,2023-05-04,Abnormal,124,162,2,19,,,,DISCHARGED -125,2021-11-14,31546.52020237202,104,Urgent,2021-11-26,Abnormal,125,418,1,8,,,,DISCHARGED -126,2020-07-16,9824.265046284614,238,Emergency,2020-08-05,Abnormal,126,288,0,18,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -127,2022-04-28,44419.985424088765,220,Elective,2022-05-20,Normal,127,378,3,5,,,,DISCHARGED -128,2023-08-03,13759.843812407513,464,Urgent,,Inconclusive,128,260,1,1,,,,OPEN -129,2022-04-30,22862.208504756825,215,Urgent,2022-05-11,Normal,129,489,0,14,,,,DISCHARGED -130,2020-10-20,40372.11674045899,419,Urgent,2020-10-23,Normal,130,230,4,16,,,,DISCHARGED -131,2020-08-07,37867.019332053904,445,Emergency,2020-08-28,Normal,131,40,2,15,,,,DISCHARGED -132,2022-12-01,42968.27269849119,401,Emergency,2022-12-04,Normal,132,27,3,27,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -133,2019-03-04,23907.335315170323,247,Elective,2019-03-24,Inconclusive,133,134,3,20,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -133,2019-11-27,15299.234835051224,481,Emergency,2019-12-08,Abnormal,5468,200,3,7,,,,DISCHARGED -134,2020-05-31,17415.97576710672,398,Emergency,2020-06-18,Normal,134,327,2,9,,,,DISCHARGED -134,2023-02-04,10042.06121892342,198,Emergency,,Normal,8968,267,0,9,,,,OPEN -135,2020-07-29,49219.20954307443,146,Elective,2020-08-20,Inconclusive,135,417,1,17,,,,DISCHARGED -136,2023-04-18,6171.457067712023,153,Emergency,,Abnormal,136,32,0,9,,,,OPEN -137,2020-08-20,31644.800997890783,336,Emergency,2020-08-22,Normal,137,47,1,8,,,,DISCHARGED -138,2023-07-09,44535.25303619564,413,Emergency,2023-07-17,Normal,138,406,3,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -139,2023-08-19,10591.269644030772,115,Emergency,2023-08-27,Inconclusive,139,61,0,23,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -140,2021-05-09,43535.60904445826,145,Emergency,2021-05-24,Normal,140,215,3,18,,,,DISCHARGED -141,2019-04-21,41058.23387378459,148,Urgent,2019-05-09,Abnormal,141,292,4,0,,,,DISCHARGED -142,2021-06-23,7154.956699857513,432,Emergency,2021-07-03,Inconclusive,142,98,3,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -143,2022-04-30,46131.07031578395,430,Emergency,2022-05-18,Normal,143,171,3,23,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -144,2021-04-01,16487.676785652297,406,Elective,2021-05-01,Abnormal,144,359,1,2,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -145,2023-04-27,31583.5527912602,214,Emergency,,Abnormal,145,213,4,9,,,,OPEN -146,2021-08-20,29289.6526009692,295,Elective,2021-08-28,Abnormal,146,474,3,11,,,,DISCHARGED -147,2019-12-04,27022.82692689431,175,Urgent,2019-12-19,Normal,147,34,3,17,,,,DISCHARGED -148,2020-08-20,13962.427775097512,409,Urgent,2020-09-14,Inconclusive,148,448,4,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -149,2021-12-16,18991.073222521736,424,Emergency,2021-12-26,Normal,149,226,4,19,,,,DISCHARGED -150,2019-06-25,8851.608731170869,168,Elective,2019-06-29,Inconclusive,150,100,0,5,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -151,2020-04-02,31670.263275760328,136,Emergency,2020-04-22,Inconclusive,151,430,1,20,,,,DISCHARGED -152,2020-03-17,25129.17595189029,459,Emergency,2020-04-06,Inconclusive,152,461,4,1,,,,DISCHARGED -153,2022-07-31,6787.533990371548,110,Urgent,2022-08-20,Inconclusive,153,130,4,9,,,,DISCHARGED -154,2022-04-09,5974.970205241097,238,Emergency,2022-04-13,Inconclusive,154,256,2,1,,,,DISCHARGED -155,2022-03-31,18200.75799706072,261,Elective,2022-04-06,Abnormal,155,4,4,29,,,,DISCHARGED -156,2019-11-27,10753.757615365406,145,Urgent,2019-12-14,Normal,156,217,1,8,,,,DISCHARGED -157,2022-03-02,28004.34153668766,261,Elective,2022-03-25,Abnormal,157,254,3,26,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -158,2022-07-13,41890.24643937346,257,Emergency,2022-07-26,Inconclusive,158,397,3,9,,,,DISCHARGED -159,2020-04-28,23961.069814057933,170,Elective,2020-05-24,Inconclusive,159,358,3,1,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -160,2021-10-21,42051.09409357057,219,Emergency,2021-11-09,Abnormal,160,282,3,7,,,,DISCHARGED -161,2023-04-02,32613.241610463538,186,Elective,2023-04-25,Abnormal,161,392,2,23,,,,DISCHARGED -162,2023-05-19,36745.210455298446,451,Elective,,Abnormal,162,206,4,16,,,,OPEN -163,2020-02-02,21341.238842723888,372,Emergency,2020-02-18,Normal,163,14,3,16,,,,DISCHARGED -164,2022-02-18,26060.673368682383,202,Emergency,2022-02-23,Abnormal,164,345,0,28,,,,DISCHARGED -164,2023-03-13,37318.52253084823,372,Urgent,,Normal,186,41,3,3,,,,OPEN -164,2020-02-02,38972.20553391844,312,Emergency,2020-02-11,Normal,6871,379,4,17,,,,DISCHARGED -165,2020-04-29,23968.31691825013,245,Elective,2020-05-18,Normal,165,460,3,11,,,,DISCHARGED -166,2022-02-01,25926.948542070604,394,Elective,2022-02-15,Normal,166,178,2,16,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -167,2023-10-08,13981.11261300321,372,Elective,2023-10-27,Abnormal,167,62,1,8,,,,DISCHARGED -168,2023-05-24,21470.41773819721,264,Elective,2023-05-27,Inconclusive,168,351,1,28,,,,DISCHARGED -169,2018-12-23,45391.284642001214,398,Urgent,2019-01-13,Normal,169,230,4,18,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -170,2020-03-04,20926.29797947113,279,Emergency,2020-04-01,Abnormal,170,240,1,13,,,,DISCHARGED -171,2019-08-24,14029.206950528902,260,Emergency,2019-09-05,Abnormal,171,51,1,13,,,,DISCHARGED -172,2020-12-04,47034.49402476752,499,Emergency,2020-12-12,Normal,172,95,0,29,,,,DISCHARGED -173,2019-05-18,48782.85631566246,452,Emergency,2019-05-31,Normal,173,387,4,16,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -174,2022-09-23,40262.31151423387,365,Urgent,2022-10-19,Inconclusive,174,221,4,1,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -174,2019-09-27,12540.246991303611,386,Emergency,2019-10-14,Inconclusive,1365,484,1,7,,,,DISCHARGED -174,2021-01-28,10914.944587775164,260,Urgent,2021-02-13,Inconclusive,6775,406,1,4,,,,DISCHARGED -175,2022-12-18,17902.64639380951,267,Urgent,2023-01-05,Inconclusive,175,230,1,26,,,,DISCHARGED -176,2020-05-13,15773.901182914306,340,Emergency,2020-06-03,Inconclusive,176,236,2,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -177,2020-11-03,31155.40427129732,360,Emergency,2020-11-07,Inconclusive,177,142,3,21,,,,DISCHARGED -178,2020-03-25,7140.773832777042,290,Urgent,2020-04-10,Normal,178,170,2,28,,,,DISCHARGED -179,2023-05-02,21901.826644158733,103,Urgent,2023-05-27,Inconclusive,179,28,4,15,,,,DISCHARGED -180,2022-12-07,36744.03787993472,187,Urgent,2022-12-22,Abnormal,180,35,0,15,,,,DISCHARGED -180,2019-07-14,8754.548885920169,452,Urgent,2019-08-11,Inconclusive,5771,12,3,16,,,,DISCHARGED -181,2020-05-26,37006.72482949869,378,Elective,2020-06-05,Inconclusive,181,159,0,21,,,,DISCHARGED -182,2022-06-27,42431.39127028394,334,Elective,2022-07-02,Normal,182,326,4,26,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -182,2019-11-12,4825.244065937908,340,Elective,2019-11-29,Normal,7627,186,4,6,,,,DISCHARGED -183,2020-07-10,14578.913011822762,470,Urgent,2020-08-04,Normal,183,242,0,19,,,,DISCHARGED -183,2019-08-30,14027.139384365915,486,Urgent,2019-09-15,Abnormal,8295,85,0,7,,,,DISCHARGED -184,2021-12-12,30845.782022184423,252,Elective,2021-12-18,Inconclusive,184,283,0,7,,,,DISCHARGED -185,2023-06-01,14876.215477845824,162,Emergency,,Abnormal,185,65,4,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -187,2019-07-15,5727.338103033213,450,Elective,2019-07-31,Abnormal,187,169,1,10,,,,DISCHARGED -188,2022-11-17,38068.85215268489,106,Emergency,2022-11-26,Abnormal,188,44,0,14,,,,DISCHARGED -189,2019-01-23,21198.65472662128,259,Urgent,2019-02-02,Abnormal,189,61,3,17,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -190,2022-03-25,35415.68222692115,344,Urgent,2022-04-04,Normal,190,440,4,5,,,,DISCHARGED -191,2022-10-25,3673.0429478707465,489,Urgent,2022-10-28,Normal,191,133,2,21,,,,DISCHARGED -192,2018-11-21,1608.691792689302,153,Urgent,2018-11-29,Abnormal,192,283,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -193,2022-09-30,24357.6078664628,276,Urgent,2022-10-05,Abnormal,193,27,3,14,,,,DISCHARGED -194,2022-02-24,28710.513951078006,134,Elective,2022-02-26,Abnormal,194,107,1,27,,,,DISCHARGED -195,2019-12-30,7942.853285893594,155,Emergency,2020-01-26,Abnormal,195,43,0,22,,,,DISCHARGED -196,2018-11-09,3623.40823141465,361,Urgent,2018-11-19,Abnormal,196,339,4,5,,,,DISCHARGED -197,2021-06-02,5516.704185371408,155,Urgent,2021-06-14,Abnormal,197,285,0,17,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -198,2021-11-12,1452.0538192226131,120,Emergency,2021-11-28,Abnormal,198,445,4,23,,,,DISCHARGED -199,2019-10-30,19630.673492911475,455,Urgent,2019-11-13,Inconclusive,199,330,2,19,,,,DISCHARGED -200,2023-09-18,7061.842439551254,425,Urgent,,Abnormal,200,127,0,8,,,,OPEN -201,2019-07-21,48659.59883179092,108,Urgent,2019-08-10,Normal,201,347,3,7,,,,DISCHARGED -202,2021-02-13,4357.928046957646,361,Emergency,2021-03-02,Abnormal,202,472,1,13,,,,DISCHARGED -203,2020-02-12,17166.802113751983,181,Elective,2020-03-06,Abnormal,203,230,3,18,,,,DISCHARGED -203,2020-11-16,48634.28489530816,352,Elective,2020-12-06,Normal,2326,189,1,18,,,,DISCHARGED -203,2021-03-06,31829.563417226123,192,Emergency,2021-03-25,Normal,3189,224,0,7,,,,DISCHARGED -203,2019-06-14,41920.04967706079,152,Elective,2019-07-08,Normal,6757,384,0,1,,,,DISCHARGED -204,2023-07-11,34595.32839489074,205,Elective,,Abnormal,204,376,1,24,,,,OPEN -205,2023-01-17,4871.013184133684,400,Elective,,Abnormal,205,282,2,3,,,,OPEN -206,2022-08-12,24714.11476217247,127,Emergency,2022-08-28,Inconclusive,206,445,4,5,,,,DISCHARGED -207,2021-03-28,25146.966653393283,148,Emergency,2021-04-04,Normal,207,120,3,2,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -208,2019-05-14,1523.106019881822,333,Elective,2019-05-15,Normal,208,115,3,2,,,,DISCHARGED -209,2021-03-29,42208.79874931622,162,Elective,2021-04-25,Inconclusive,209,460,3,18,,,,DISCHARGED -210,2019-05-12,17656.0383962488,119,Urgent,2019-05-25,Normal,210,232,0,10,,,,DISCHARGED -211,2021-05-24,19286.481815291507,456,Elective,2021-06-21,Normal,211,258,3,28,,,,DISCHARGED -212,2022-08-28,12580.88842813392,443,Elective,2022-09-20,Normal,212,358,4,9,,,,DISCHARGED -213,2022-07-26,24153.70930246234,129,Urgent,2022-08-21,Normal,213,197,4,11,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -214,2020-06-28,33771.61714774528,292,Elective,2020-07-23,Normal,214,455,1,13,,,,DISCHARGED -215,2021-05-06,35774.256988922985,164,Emergency,2021-05-30,Inconclusive,215,410,0,29,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -216,2018-11-10,26660.61244403476,486,Elective,2018-11-14,Abnormal,216,136,4,29,,,,DISCHARGED -217,2021-10-29,12586.402694767605,440,Elective,2021-11-12,Inconclusive,217,317,2,27,,,,DISCHARGED -218,2021-02-23,36936.78774160133,275,Elective,2021-03-06,Abnormal,218,164,0,17,,,,DISCHARGED -219,2020-01-06,3973.849432100773,265,Urgent,2020-01-10,Abnormal,219,224,0,23,,,,DISCHARGED -220,2022-08-11,7377.715552608968,459,Elective,2022-08-23,Normal,220,306,4,8,,,,DISCHARGED -221,2019-11-15,41708.40918418684,193,Urgent,2019-12-12,Normal,221,233,2,14,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -222,2021-11-27,39323.85130398303,309,Emergency,2021-12-11,Inconclusive,222,171,1,23,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -223,2019-03-19,45969.61025007398,222,Emergency,2019-04-18,Normal,223,151,4,25,,,,DISCHARGED -224,2020-10-17,37374.02613608901,488,Emergency,2020-11-14,Abnormal,224,462,2,2,,,,DISCHARGED -225,2023-05-17,39086.98787283012,472,Emergency,,Normal,225,314,0,22,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -226,2020-10-05,40530.70254051108,391,Urgent,2020-10-16,Normal,226,373,2,10,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -227,2021-11-07,11571.570777611638,295,Elective,2021-11-22,Inconclusive,227,159,0,9,,,,DISCHARGED -228,2018-11-05,44256.64930794812,186,Urgent,2018-11-18,Normal,228,95,4,17,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -229,2019-12-06,11113.373663116638,162,Urgent,2019-12-17,Abnormal,229,471,4,3,,,,DISCHARGED -230,2021-03-20,19660.006933679557,179,Elective,2021-04-03,Inconclusive,230,232,3,27,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -231,2020-01-03,45434.40973278368,230,Urgent,2020-01-30,Abnormal,231,179,3,12,,,,DISCHARGED -232,2019-02-28,49035.20692704052,460,Urgent,2019-03-26,Inconclusive,232,112,3,29,,,,DISCHARGED -233,2023-06-25,43321.06324132443,322,Elective,2023-06-28,Normal,233,317,4,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -234,2022-01-03,44033.88631580622,272,Emergency,2022-01-12,Abnormal,234,496,1,5,,,,DISCHARGED -235,2021-08-20,36912.186705469736,452,Emergency,2021-09-01,Normal,235,441,4,26,,,,DISCHARGED -236,2021-02-03,23391.79405275708,301,Urgent,2021-03-05,Inconclusive,236,51,2,20,,,,DISCHARGED -237,2022-04-09,12547.100881090744,154,Elective,2022-05-05,Normal,237,267,4,12,,,,DISCHARGED -238,2020-02-02,28792.05062080646,416,Emergency,2020-02-15,Abnormal,238,294,4,24,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -239,2022-07-30,48047.65258952828,414,Urgent,2022-08-13,Inconclusive,239,385,0,25,,,,DISCHARGED -240,2021-04-11,18782.95572717789,236,Elective,2021-04-21,Abnormal,240,386,0,19,,,,DISCHARGED -241,2023-07-06,3866.337052231231,375,Emergency,,Abnormal,241,112,0,4,,,,OPEN -242,2021-05-08,23016.760104322355,141,Urgent,2021-05-26,Normal,242,100,4,19,,,,DISCHARGED -243,2022-06-17,10159.670834409591,221,Urgent,2022-07-04,Inconclusive,243,112,1,13,,,,DISCHARGED -244,2021-12-29,2212.477918683048,244,Emergency,2022-01-18,Normal,244,439,2,12,,,,DISCHARGED -245,2020-08-14,34789.57595578117,201,Emergency,2020-08-30,Inconclusive,245,80,2,13,,,,DISCHARGED -246,2022-07-20,49488.20077925565,287,Urgent,2022-07-27,Normal,246,186,1,7,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -247,2021-01-11,30304.65384984076,129,Urgent,2021-01-29,Inconclusive,247,112,1,15,,,,DISCHARGED -248,2023-10-28,24559.75928726179,179,Emergency,2023-11-02,Abnormal,248,1,2,12,,,,DISCHARGED -249,2020-12-04,13318.195486021532,181,Elective,2020-12-30,Abnormal,249,129,3,23,,,,DISCHARGED -250,2023-03-16,30570.902071926805,243,Elective,2023-04-14,Normal,250,219,0,14,,,,DISCHARGED -251,2020-03-24,12831.046557387592,370,Elective,2020-03-28,Inconclusive,251,53,0,18,,,,DISCHARGED -252,2021-10-22,2684.4017211574974,147,Elective,2021-11-04,Inconclusive,252,342,2,0,,,,DISCHARGED -253,2021-04-17,43535.02257204043,237,Elective,2021-05-16,Inconclusive,253,484,1,21,,,,DISCHARGED -254,2020-07-20,41414.986529871,292,Urgent,2020-08-09,Abnormal,254,223,3,1,,,,DISCHARGED -254,2020-10-01,27011.078263229403,357,Urgent,2020-10-17,Inconclusive,1492,224,2,17,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -255,2022-04-28,16085.737509110111,465,Elective,2022-05-25,Normal,255,384,0,18,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -256,2021-03-24,15847.440245823502,264,Urgent,2021-04-12,Inconclusive,256,402,4,7,,,,DISCHARGED -256,2020-10-27,24033.86381194272,215,Urgent,2020-10-31,Normal,9268,125,1,2,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -257,2021-04-14,33811.6857725144,234,Elective,2021-04-28,Abnormal,257,129,4,22,,,,DISCHARGED -258,2022-11-22,31911.129134091283,458,Urgent,2022-12-09,Normal,258,52,2,25,,,,DISCHARGED -259,2021-09-30,15801.842288402857,226,Urgent,2021-10-28,Abnormal,259,171,0,13,,,,DISCHARGED -260,2020-12-09,22815.891209293797,478,Urgent,2020-12-17,Abnormal,260,217,3,25,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -261,2023-03-29,26525.99380537169,204,Urgent,2023-04-22,Abnormal,261,159,4,8,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -262,2019-03-08,22985.616664913257,366,Urgent,2019-03-25,Inconclusive,262,197,3,28,,,,DISCHARGED -263,2023-08-24,39573.52145151389,196,Emergency,2023-09-21,Inconclusive,263,415,0,7,,,,DISCHARGED -264,2021-12-23,37246.81915431043,294,Elective,2022-01-07,Normal,264,246,4,16,,,,DISCHARGED -264,2022-09-04,18258.38213425475,476,Elective,2022-09-11,Inconclusive,7455,323,3,22,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -265,2022-12-08,49359.79206170607,462,Emergency,2022-12-16,Abnormal,265,438,3,22,,,,DISCHARGED -266,2022-07-10,42621.44964684069,297,Urgent,2022-07-28,Inconclusive,266,202,4,23,,,,DISCHARGED -267,2021-03-27,23660.216628296115,280,Elective,2021-04-07,Normal,267,183,0,15,,,,DISCHARGED -268,2021-12-23,35791.956328527325,238,Urgent,2022-01-10,Inconclusive,268,122,3,9,,,,DISCHARGED -269,2022-08-08,43882.56194900586,374,Elective,2022-08-14,Abnormal,269,400,2,20,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -270,2022-05-23,22979.213540298944,216,Emergency,2022-06-11,Abnormal,270,254,4,9,,,,DISCHARGED -271,2021-09-19,37360.639585599776,135,Elective,2021-09-29,Normal,271,293,1,24,,,,DISCHARGED -272,2022-05-16,40757.910944602416,303,Urgent,2022-06-09,Inconclusive,272,279,1,24,,,,DISCHARGED -273,2023-01-27,23331.281203322746,225,Elective,,Abnormal,273,324,0,23,,,,OPEN -274,2020-12-14,6628.356138570429,152,Elective,2020-12-16,Abnormal,274,371,2,5,,,,DISCHARGED -275,2020-09-26,12470.76959830422,444,Emergency,2020-10-18,Abnormal,275,97,3,21,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -276,2022-02-24,7364.750960595123,270,Urgent,2022-03-05,Inconclusive,276,197,1,16,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -277,2022-06-02,1939.3191021634184,454,Elective,2022-06-18,Normal,277,469,0,28,,,,DISCHARGED -277,2022-12-31,36463.28133462362,220,Urgent,2023-01-25,Inconclusive,2408,394,2,15,,,,DISCHARGED -278,2020-01-30,4002.824156525608,425,Urgent,2020-02-01,Inconclusive,278,239,2,14,,,,DISCHARGED -279,2022-06-08,28394.39906646661,442,Emergency,2022-07-08,Normal,279,143,0,21,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -280,2023-09-01,47295.55751295883,189,Emergency,2023-09-07,Normal,280,96,0,13,,,,DISCHARGED -281,2022-06-16,13749.968280129424,487,Emergency,2022-06-24,Normal,281,200,3,3,,,,DISCHARGED -282,2019-02-13,42550.621840623455,119,Urgent,2019-02-23,Abnormal,282,123,0,3,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -283,2020-08-27,42182.74976501221,356,Elective,2020-09-17,Normal,283,186,3,29,,,,DISCHARGED -284,2018-12-15,5901.145156327686,104,Urgent,2018-12-19,Inconclusive,284,325,3,1,,,,DISCHARGED -285,2018-12-10,10333.001823102266,184,Urgent,2018-12-22,Inconclusive,285,463,4,28,,,,DISCHARGED -286,2021-11-06,7164.88617166191,130,Urgent,2021-11-25,Normal,286,348,2,10,,,,DISCHARGED -287,2020-07-18,15622.693687190786,485,Elective,2020-07-22,Abnormal,287,258,2,29,,,,DISCHARGED -287,2019-02-10,3167.4111565989388,201,Emergency,2019-02-25,Abnormal,5585,147,2,3,,,,DISCHARGED -288,2020-05-31,20699.813436150755,218,Elective,2020-06-17,Inconclusive,288,251,4,20,,,,DISCHARGED -289,2019-01-27,25420.21123802783,445,Urgent,2019-02-08,Abnormal,289,442,3,28,,,,DISCHARGED -290,2018-12-15,17531.212779067297,111,Emergency,2018-12-28,Inconclusive,290,419,3,27,,,,DISCHARGED -291,2019-04-12,17743.96851930109,119,Emergency,2019-04-25,Abnormal,291,402,0,20,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -292,2020-10-31,45477.90913864933,482,Emergency,2020-11-27,Normal,292,345,4,15,,,,DISCHARGED -293,2023-04-16,26633.450415065217,105,Emergency,2023-05-08,Inconclusive,293,450,0,20,,,,DISCHARGED -294,2022-11-09,41995.872277153765,362,Urgent,2022-11-20,Normal,294,146,4,3,,,,DISCHARGED -295,2019-04-12,29696.19164140571,425,Elective,2019-05-08,Normal,295,147,0,0,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -295,2022-11-06,49234.3216039978,302,Urgent,2022-11-28,Inconclusive,7747,351,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -296,2021-03-02,10033.766921269436,347,Urgent,2021-03-07,Abnormal,296,198,2,25,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -297,2019-09-19,41417.84433902557,230,Elective,2019-10-18,Abnormal,297,307,2,23,,,,DISCHARGED -298,2020-03-06,16592.012152966505,223,Emergency,2020-03-22,Abnormal,298,488,3,18,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -299,2021-08-18,7858.398730971636,199,Emergency,2021-09-09,Abnormal,299,416,1,1,,,,DISCHARGED -300,2021-10-02,8487.438712109812,497,Elective,2021-10-15,Inconclusive,300,423,2,8,,,,DISCHARGED -301,2021-09-19,32142.99757357748,420,Elective,2021-09-28,Normal,301,127,3,22,,,,DISCHARGED -301,2021-12-15,17594.974880421043,464,Urgent,2021-12-26,Normal,5445,38,1,24,,,,DISCHARGED -302,2019-07-03,43311.75941534955,432,Emergency,2019-07-21,Normal,302,337,2,12,,,,DISCHARGED -303,2020-01-02,26419.324812573923,483,Emergency,2020-01-30,Inconclusive,303,359,0,17,,,,DISCHARGED -304,2019-04-27,11548.830510952335,162,Elective,2019-05-16,Normal,304,128,4,15,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -305,2018-11-14,27593.64508218064,161,Elective,2018-12-01,Abnormal,305,266,1,15,,,,DISCHARGED -306,2023-07-02,8129.35849870258,436,Emergency,,Abnormal,306,475,3,24,,,,OPEN -307,2021-12-10,44941.23044388389,485,Emergency,2021-12-12,Inconclusive,307,440,1,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -308,2019-04-25,18364.414653784555,288,Elective,2019-05-20,Abnormal,308,472,3,8,,,,DISCHARGED -309,2019-11-12,42007.24435061608,440,Emergency,2019-12-07,Normal,309,433,1,10,,,,DISCHARGED -310,2022-06-24,34747.27007791632,133,Emergency,2022-07-03,Inconclusive,310,150,3,24,,,,DISCHARGED -311,2023-06-14,4740.109026437096,425,Emergency,,Abnormal,311,414,2,25,,,,OPEN -312,2019-09-11,31600.77207749116,237,Emergency,2019-09-21,Normal,312,477,0,28,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -312,2023-10-30,49872.58407396083,210,Urgent,2023-11-19,Abnormal,2030,297,2,25,,,,DISCHARGED -313,2020-03-15,25429.83077727948,104,Elective,2020-04-11,Abnormal,313,98,0,3,,,,DISCHARGED -313,2018-12-29,13718.963947484735,429,Urgent,2019-01-10,Inconclusive,3144,262,2,9,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -314,2023-07-10,44724.88270722428,114,Emergency,2023-08-04,Abnormal,314,251,2,2,,,,DISCHARGED -315,2023-09-06,29673.008474633425,253,Urgent,2023-09-30,Abnormal,315,143,1,5,,,,DISCHARGED -316,2022-12-25,46868.40818401109,244,Urgent,2022-12-31,Normal,316,345,4,2,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -317,2021-10-24,14496.083089014775,458,Elective,2021-11-12,Inconclusive,317,111,3,26,,,,DISCHARGED -318,2020-03-19,36496.77564422509,286,Elective,2020-04-05,Normal,318,499,3,8,,,,DISCHARGED -318,2023-04-26,10949.732176868753,199,Urgent,2023-05-11,Abnormal,4102,59,3,2,,,,DISCHARGED -319,2021-01-10,6850.97280044338,270,Elective,2021-01-20,Inconclusive,319,368,0,17,,,,DISCHARGED -319,2022-06-25,25098.403979328043,380,Emergency,2022-07-06,Normal,4879,1,3,7,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -320,2021-08-28,1256.479071739218,265,Urgent,2021-09-22,Abnormal,320,384,3,21,,,,DISCHARGED -321,2021-05-06,9731.395318301362,109,Elective,2021-05-13,Inconclusive,321,303,1,7,,,,DISCHARGED -322,2023-07-06,11610.39348971673,390,Urgent,,Abnormal,322,253,2,14,,,,OPEN -323,2023-02-22,21859.77342142722,207,Urgent,2023-03-18,Normal,323,139,3,12,,,,DISCHARGED -324,2020-09-19,26442.358750239266,442,Emergency,2020-10-18,Abnormal,324,452,4,6,,,,DISCHARGED -325,2019-08-20,12287.139440438472,384,Elective,2019-09-07,Inconclusive,325,36,3,18,,,,DISCHARGED -326,2020-05-09,40449.84643340579,411,Emergency,2020-06-05,Normal,326,159,0,7,,,,DISCHARGED -327,2018-11-25,35939.431931536754,324,Emergency,2018-12-17,Normal,327,8,0,9,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -327,2023-09-05,38471.19575373122,245,Elective,2023-09-09,Abnormal,7987,232,0,16,,,,DISCHARGED -328,2021-11-12,14230.466490795783,357,Elective,2021-11-28,Normal,328,98,3,0,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -329,2022-08-27,3380.7723809302533,153,Elective,2022-09-13,Inconclusive,329,146,1,12,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -330,2020-06-07,37081.46098786112,283,Emergency,2020-06-11,Inconclusive,330,303,4,28,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -331,2020-03-15,22268.034662054877,315,Urgent,2020-04-04,Inconclusive,331,207,3,25,,,,DISCHARGED -331,2022-09-07,24034.51877562933,192,Urgent,2022-09-12,Inconclusive,7077,130,1,12,,,,DISCHARGED -332,2023-07-28,37744.299585288834,471,Elective,2023-07-29,Abnormal,332,403,1,23,,,,DISCHARGED -333,2023-06-29,33399.46560693334,274,Urgent,,Abnormal,333,151,3,15,,,,OPEN -334,2022-05-21,34173.02524058562,353,Elective,2022-06-04,Abnormal,334,53,3,28,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -335,2020-09-15,45825.97889539125,311,Urgent,2020-09-25,Normal,335,119,1,8,,,,DISCHARGED -336,2022-10-29,30203.557649485752,490,Emergency,2022-11-20,Inconclusive,336,160,1,9,,,,DISCHARGED -337,2020-01-23,24305.53370218853,135,Urgent,2020-01-28,Inconclusive,337,407,1,5,,,,DISCHARGED -338,2022-03-29,45444.29373533064,368,Elective,2022-04-21,Abnormal,338,115,3,4,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -339,2021-02-04,2534.7004700955627,284,Elective,2021-02-22,Inconclusive,339,74,1,1,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -340,2019-02-07,27676.337232617487,242,Urgent,2019-02-22,Normal,340,112,0,10,,,,DISCHARGED -341,2018-12-08,5674.214337465009,209,Urgent,2018-12-15,Abnormal,341,455,3,8,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -342,2019-12-11,43475.28509858285,404,Elective,2019-12-13,Abnormal,342,419,0,5,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -343,2019-07-30,7237.040594808773,442,Emergency,2019-08-28,Normal,343,421,2,7,,,,DISCHARGED -344,2021-10-08,45537.19439445536,110,Urgent,2021-11-01,Normal,344,103,3,8,,,,DISCHARGED -345,2021-10-02,37113.07025273272,226,Elective,2021-10-07,Inconclusive,345,339,2,8,,,,DISCHARGED -346,2023-03-29,30730.893293449484,400,Urgent,,Inconclusive,346,253,1,7,,,,OPEN -347,2022-02-06,22773.131100555293,433,Emergency,2022-02-21,Normal,347,226,1,11,,,,DISCHARGED -348,2021-11-25,31303.64786842636,116,Elective,2021-12-24,Abnormal,348,111,4,25,,,,DISCHARGED -348,2021-04-15,8270.489262945997,362,Elective,2021-05-09,Normal,9482,472,1,7,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -349,2020-01-02,37527.711514253766,247,Urgent,2020-01-27,Inconclusive,349,98,2,2,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -349,2021-07-26,12372.907407008051,196,Emergency,2021-07-29,Normal,3087,152,1,12,,,,DISCHARGED -350,2022-06-07,29986.11627858563,439,Emergency,2022-06-10,Inconclusive,350,348,3,18,,,,DISCHARGED -351,2023-06-10,23360.65861318663,460,Elective,,Inconclusive,351,401,1,1,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",OPEN -352,2022-04-15,27065.747046561937,275,Elective,2022-05-12,Normal,352,383,4,16,,,,DISCHARGED -353,2019-07-29,34465.82487563732,361,Emergency,2019-08-27,Inconclusive,353,365,1,15,,,,DISCHARGED -354,2019-02-02,36439.07844953238,303,Emergency,2019-02-05,Abnormal,354,337,2,3,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -355,2023-05-19,46161.70793060004,278,Elective,2023-06-13,Abnormal,355,193,2,17,,,,DISCHARGED -356,2022-10-14,48192.6486063671,490,Urgent,2022-11-03,Inconclusive,356,309,1,13,,,,DISCHARGED -357,2022-07-24,5061.5932847128415,249,Emergency,2022-07-28,Normal,357,162,2,29,,,,DISCHARGED -358,2020-09-14,11784.94142268194,176,Elective,2020-09-27,Abnormal,358,207,2,1,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -359,2019-09-26,6442.96821664964,498,Urgent,2019-10-02,Inconclusive,359,444,4,12,,,,DISCHARGED -360,2019-06-13,13591.04308748773,240,Emergency,2019-07-02,Inconclusive,360,168,3,26,,,,DISCHARGED -361,2023-08-26,19710.535332992906,107,Emergency,2023-09-16,Inconclusive,361,483,4,26,,,,DISCHARGED -362,2021-11-15,20846.38332202797,407,Elective,2021-11-21,Normal,362,160,0,20,,,,DISCHARGED -362,2022-09-18,16965.96207064319,320,Elective,2022-10-06,Inconclusive,5565,67,4,19,,,,DISCHARGED -362,2019-05-08,34732.26290846109,155,Urgent,2019-06-05,Normal,7564,288,1,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -362,2023-05-23,6711.307078454929,236,Elective,2023-05-24,Normal,9878,397,3,14,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -363,2018-12-05,24261.16168217426,383,Urgent,2018-12-16,Normal,363,276,1,24,,,,DISCHARGED -364,2019-08-01,43495.23034505423,493,Urgent,2019-08-23,Abnormal,364,303,0,29,,,,DISCHARGED -365,2023-06-26,34698.50261708388,338,Urgent,,Inconclusive,365,403,3,19,,,,OPEN -366,2020-06-14,18524.74395050052,115,Elective,2020-06-28,Normal,366,383,2,4,,,,DISCHARGED -367,2021-05-27,17061.046663657253,357,Urgent,2021-06-12,Abnormal,367,391,4,6,,,,DISCHARGED -368,2023-04-25,3535.011881247826,130,Elective,,Abnormal,368,134,1,17,,,,OPEN -369,2020-11-24,31359.518931029103,262,Urgent,2020-12-17,Abnormal,369,194,0,23,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -370,2021-05-20,37419.01662386105,496,Elective,2021-06-08,Inconclusive,370,400,2,10,,,,DISCHARGED -371,2021-06-03,22697.41582654181,447,Emergency,2021-06-20,Inconclusive,371,127,4,17,,,,DISCHARGED -372,2019-10-12,20649.3872071603,246,Urgent,2019-10-17,Abnormal,372,32,2,26,,,,DISCHARGED -373,2019-02-10,29737.635840160445,275,Elective,2019-02-16,Abnormal,373,175,4,25,,,,DISCHARGED -374,2023-07-04,44019.07744764769,111,Urgent,2023-07-15,Inconclusive,374,459,3,4,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -375,2020-05-30,21864.01000742826,406,Elective,2020-06-15,Inconclusive,375,442,2,12,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -376,2022-02-10,15469.681276723895,305,Elective,2022-03-06,Abnormal,376,370,2,27,,,,DISCHARGED -377,2023-09-02,27667.126598927283,252,Urgent,,Abnormal,377,469,2,17,,,,OPEN -378,2022-04-17,26172.07906359765,155,Emergency,2022-05-04,Inconclusive,378,374,3,1,,,,DISCHARGED -379,2020-08-25,44643.05436145811,152,Elective,2020-09-06,Inconclusive,379,21,0,19,,,,DISCHARGED -380,2021-05-24,39533.37820142007,315,Urgent,2021-06-13,Normal,380,237,4,3,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -381,2022-01-20,29878.881332256024,479,Elective,2022-01-22,Abnormal,381,157,2,12,,,,DISCHARGED -382,2023-07-04,34386.58635397911,462,Elective,2023-07-26,Normal,382,37,3,23,,,,DISCHARGED -383,2023-08-01,44655.69907542223,363,Emergency,2023-08-16,Inconclusive,383,229,0,28,,,,DISCHARGED -384,2021-05-07,29272.274469788208,153,Emergency,2021-05-19,Inconclusive,384,364,4,15,,,,DISCHARGED -385,2020-12-05,24181.19275845464,394,Emergency,2020-12-18,Abnormal,385,50,3,5,,,,DISCHARGED -386,2020-10-16,18089.133069620937,239,Emergency,2020-11-02,Normal,386,437,4,25,,,,DISCHARGED -387,2021-03-30,2485.616432157961,145,Emergency,2021-04-17,Normal,387,263,2,7,,,,DISCHARGED -388,2023-06-13,16118.166535916958,192,Urgent,2023-07-11,Abnormal,388,282,0,15,,,,DISCHARGED -389,2023-03-11,21025.566735250803,142,Urgent,2023-04-01,Abnormal,389,26,3,12,,,,DISCHARGED -390,2022-03-07,22624.00546071185,158,Emergency,2022-03-09,Normal,390,225,0,22,,,,DISCHARGED -391,2023-09-10,4098.8542028788615,168,Elective,2023-09-18,Inconclusive,391,276,2,28,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -392,2022-06-12,19955.344980387046,379,Emergency,2022-06-13,Inconclusive,392,285,0,25,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -393,2019-11-21,10179.756432705788,126,Emergency,2019-12-09,Abnormal,393,96,0,3,,,,DISCHARGED -394,2022-10-31,17185.194410454264,369,Emergency,2022-11-26,Normal,394,283,1,1,,,,DISCHARGED -395,2023-04-11,5411.414545512917,270,Elective,,Normal,395,366,0,8,,,,OPEN -395,2022-12-24,11866.015881332352,335,Emergency,2023-01-06,Abnormal,1051,447,4,17,,,,DISCHARGED -396,2022-08-29,35307.19747887386,229,Urgent,2022-09-07,Abnormal,396,480,3,16,,,,DISCHARGED -397,2022-01-26,10492.799553848816,497,Emergency,2022-02-06,Normal,397,452,1,7,,,,DISCHARGED -398,2019-02-17,13271.716783215192,425,Elective,2019-02-27,Inconclusive,398,316,3,25,,,,DISCHARGED -399,2019-02-23,7219.466253041419,483,Urgent,2019-03-06,Normal,399,303,3,14,,,,DISCHARGED -400,2020-01-09,6098.460276413218,372,Urgent,2020-01-17,Normal,400,146,2,8,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -401,2021-08-20,29285.344053736582,162,Emergency,2021-09-15,Abnormal,401,3,2,16,,,,DISCHARGED -402,2023-03-17,35490.26267380252,403,Urgent,,Abnormal,402,34,1,22,,,,OPEN -403,2021-02-14,28835.35019006271,205,Emergency,2021-02-24,Abnormal,403,191,2,1,,,,DISCHARGED -404,2020-01-29,11300.527273565993,497,Urgent,2020-02-15,Abnormal,404,48,2,5,,,,DISCHARGED -405,2022-12-07,15988.782443956656,353,Emergency,2022-12-29,Inconclusive,405,16,2,28,,,,DISCHARGED -406,2021-06-17,30137.59626994503,196,Emergency,2021-07-04,Normal,406,171,3,26,,,,DISCHARGED -407,2022-03-05,10045.003229310056,349,Urgent,2022-04-03,Normal,407,219,1,4,,,,DISCHARGED -408,2020-10-22,48716.28910714937,476,Emergency,2020-11-19,Normal,408,157,3,16,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -409,2022-04-27,47881.28110741898,144,Urgent,2022-05-12,Abnormal,409,476,4,1,,,,DISCHARGED -410,2023-07-08,31587.212506815024,406,Urgent,2023-07-17,Abnormal,410,45,3,17,,,,DISCHARGED -411,2019-07-06,19425.9678150406,257,Emergency,2019-07-25,Normal,411,372,4,9,,,,DISCHARGED -412,2023-09-03,38734.81354183516,259,Elective,,Abnormal,412,5,0,9,,,,OPEN -413,2019-03-07,39757.64872636877,330,Elective,2019-03-20,Normal,413,98,0,5,,,,DISCHARGED -414,2019-06-24,9199.668301340776,291,Elective,2019-07-09,Abnormal,414,379,4,26,,,,DISCHARGED -414,2022-08-21,11786.019631084911,210,Elective,2022-08-28,Abnormal,3866,232,4,11,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -415,2022-10-17,22111.45567806985,334,Emergency,2022-11-09,Abnormal,415,36,3,16,,,,DISCHARGED -416,2023-09-16,11391.122160265388,180,Urgent,2023-09-27,Inconclusive,416,279,4,26,,,,DISCHARGED -417,2021-03-09,33952.609194823075,407,Emergency,2021-04-08,Inconclusive,417,348,1,12,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -418,2022-12-17,39875.2158788523,230,Elective,2023-01-11,Inconclusive,418,496,0,19,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -418,2019-08-01,34302.73469258127,452,Urgent,2019-08-07,Normal,6495,301,0,27,,,,DISCHARGED -419,2020-10-29,46133.54164833743,325,Elective,2020-11-08,Inconclusive,419,180,4,15,,,,DISCHARGED -420,2020-02-13,19528.40176294773,268,Elective,2020-02-20,Inconclusive,420,94,2,9,,,,DISCHARGED -421,2023-03-10,45925.07177264269,224,Elective,,Abnormal,421,98,2,26,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -421,2019-09-14,46700.05126801022,272,Elective,2019-10-03,Inconclusive,3580,187,4,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -422,2023-10-11,18272.82553900976,359,Emergency,2023-10-27,Abnormal,422,480,1,1,,,,DISCHARGED -423,2022-10-31,32052.22463067412,213,Emergency,2022-11-16,Abnormal,423,115,2,1,,,,DISCHARGED -424,2019-02-09,18605.860442632416,433,Emergency,2019-02-25,Normal,424,190,4,22,,,,DISCHARGED -425,2022-03-06,45565.74980582937,340,Elective,2022-03-29,Inconclusive,425,252,1,6,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -426,2022-02-27,49213.851670692,406,Elective,2022-03-21,Inconclusive,426,468,1,5,,,,DISCHARGED -427,2019-12-12,41767.21232826044,286,Emergency,2019-12-16,Inconclusive,427,415,3,0,,,,DISCHARGED -428,2022-01-27,28158.32776555694,374,Urgent,2022-02-15,Abnormal,428,470,1,11,,,,DISCHARGED -429,2022-04-14,23888.35667902367,336,Urgent,2022-04-19,Abnormal,429,160,2,12,,,,DISCHARGED -430,2023-04-29,3991.755828825399,252,Elective,2023-05-18,Abnormal,430,255,2,11,,,,DISCHARGED -431,2023-09-04,22314.393944570365,386,Elective,2023-09-17,Abnormal,431,322,4,18,,,,DISCHARGED -432,2019-07-26,49619.86254685744,428,Elective,2019-08-25,Abnormal,432,127,4,8,,,,DISCHARGED -433,2021-06-24,47695.93306826968,439,Emergency,2021-07-11,Inconclusive,433,17,1,9,,,,DISCHARGED -434,2022-08-19,4377.60198677737,265,Elective,2022-09-09,Abnormal,434,280,0,16,,,,DISCHARGED -435,2020-11-09,33919.88146222602,153,Elective,2020-11-17,Abnormal,435,489,3,17,,,,DISCHARGED -436,2021-01-19,26017.318073241207,264,Urgent,2021-02-14,Inconclusive,436,222,0,7,,,,DISCHARGED -437,2020-08-05,24371.732446723752,234,Emergency,2020-08-13,Normal,437,53,1,6,,,,DISCHARGED -437,2020-09-23,31717.16699091609,398,Urgent,2020-10-19,Abnormal,2180,57,1,8,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -438,2022-04-02,12723.420482916645,174,Elective,2022-04-09,Inconclusive,438,322,0,9,,,,DISCHARGED -439,2023-02-05,4433.950956325497,445,Emergency,2023-02-18,Abnormal,439,359,3,11,,,,DISCHARGED -440,2019-09-29,6849.015274052991,110,Urgent,2019-10-24,Inconclusive,440,173,0,14,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -441,2021-02-07,17219.17249139119,101,Urgent,2021-02-21,Abnormal,441,279,4,14,,,,DISCHARGED -442,2020-06-21,13137.632496612798,145,Urgent,2020-07-20,Abnormal,442,113,2,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -443,2022-07-06,49528.92118252973,382,Elective,2022-07-13,Inconclusive,443,287,4,3,,,,DISCHARGED -444,2021-05-05,39734.99511709112,496,Emergency,2021-05-14,Abnormal,444,430,2,3,,,,DISCHARGED -444,2020-07-01,38587.5803444483,150,Emergency,2020-07-17,Normal,3315,341,1,22,,,,DISCHARGED -445,2020-08-26,1926.8812784193387,485,Urgent,2020-09-19,Normal,445,150,3,0,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -446,2023-07-29,26531.698294090373,375,Elective,2023-08-10,Abnormal,446,449,0,25,,,,DISCHARGED -447,2020-07-15,32573.7247492396,435,Urgent,2020-08-14,Normal,447,126,3,11,,,,DISCHARGED -448,2019-07-02,9880.393141552431,235,Emergency,2019-07-18,Normal,448,154,0,24,,,,DISCHARGED -450,2019-11-15,28473.03123070652,353,Urgent,2019-11-25,Abnormal,450,489,4,1,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -451,2023-10-24,41787.1881271981,474,Urgent,,Abnormal,451,385,4,14,,,,OPEN -452,2022-07-02,42419.10894481873,443,Urgent,2022-07-22,Abnormal,452,473,0,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -453,2020-07-30,1769.47942259644,344,Urgent,2020-08-04,Abnormal,453,272,3,6,,,,DISCHARGED -454,2019-05-28,22938.061375785877,363,Elective,2019-06-12,Normal,454,103,0,5,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -455,2020-03-28,29149.76226273954,301,Emergency,2020-04-11,Abnormal,455,416,1,11,,,,DISCHARGED -456,2021-12-13,35725.015997528026,246,Elective,2021-12-22,Abnormal,456,392,4,18,,,,DISCHARGED -457,2023-07-03,45968.66601088508,242,Elective,,Abnormal,457,298,1,0,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",OPEN -458,2022-07-31,47633.19611828846,467,Elective,2022-08-10,Inconclusive,458,245,4,27,,,,DISCHARGED -459,2022-03-24,11837.391382902972,439,Emergency,2022-04-13,Inconclusive,459,175,4,20,,,,DISCHARGED -459,2022-07-02,33329.166580649966,374,Emergency,2022-07-17,Abnormal,4961,38,2,25,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -460,2023-06-10,34295.81941924599,435,Urgent,2023-07-10,Normal,460,476,1,13,,,,DISCHARGED -461,2019-02-15,41665.42359867156,146,Elective,2019-03-11,Inconclusive,461,169,1,3,,,,DISCHARGED -462,2021-06-08,31726.59716065663,118,Elective,2021-07-04,Abnormal,462,246,2,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -463,2022-06-02,12798.354436372836,206,Elective,2022-06-15,Inconclusive,463,25,3,0,,,,DISCHARGED -464,2022-11-07,13364.28478214961,233,Emergency,2022-11-21,Normal,464,354,1,0,,,,DISCHARGED -465,2019-10-07,9198.071177894664,158,Elective,2019-10-29,Inconclusive,465,305,0,20,,,,DISCHARGED -466,2020-09-26,45218.39685568974,269,Elective,2020-10-05,Inconclusive,466,408,2,5,,,,DISCHARGED -466,2019-11-26,4117.6167256256,451,Emergency,2019-12-01,Inconclusive,7860,407,1,4,,,,DISCHARGED -467,2022-08-25,7813.239088644965,422,Emergency,2022-08-27,Abnormal,467,12,3,1,,,,DISCHARGED -468,2020-09-07,14722.06486979564,441,Urgent,2020-09-21,Inconclusive,468,315,1,24,,,,DISCHARGED -469,2020-08-06,28414.392830500576,136,Elective,2020-08-30,Normal,469,390,4,20,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -470,2019-11-07,23600.111033537287,289,Emergency,2019-11-10,Normal,470,312,0,26,,,,DISCHARGED -471,2020-02-16,22065.281396557828,320,Elective,2020-03-07,Abnormal,471,35,2,26,,,,DISCHARGED -472,2021-12-21,28830.35043862421,173,Elective,2021-12-25,Abnormal,472,172,4,4,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -473,2022-07-16,11169.299479570573,269,Urgent,2022-08-02,Abnormal,473,19,3,25,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -474,2023-10-30,37904.3953340171,359,Elective,2023-11-08,Abnormal,474,320,4,8,,,,DISCHARGED -475,2023-01-24,17370.67402887645,334,Emergency,2023-02-18,Abnormal,475,263,4,18,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -476,2023-10-16,42494.658488975496,180,Urgent,2023-10-29,Abnormal,476,493,3,20,,,,DISCHARGED -476,2020-12-26,19166.455614682505,220,Urgent,2020-12-28,Normal,6663,399,4,14,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -477,2023-05-24,3717.532768174956,412,Elective,2023-06-12,Normal,477,141,2,12,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -478,2021-07-14,5181.797329471285,277,Urgent,2021-07-21,Normal,478,459,1,11,,,,DISCHARGED -479,2019-10-31,38384.83383994121,423,Elective,2019-11-29,Inconclusive,479,370,4,4,,,,DISCHARGED -480,2019-11-11,1872.6240696749564,249,Emergency,2019-12-04,Normal,480,470,2,1,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -480,2023-09-10,11877.554813326786,290,Emergency,,Normal,5414,142,1,26,,,,OPEN -481,2021-08-27,26642.91852973562,265,Emergency,2021-09-06,Inconclusive,481,91,1,3,,,,DISCHARGED -482,2019-11-16,12517.38311628151,112,Elective,2019-11-17,Abnormal,482,353,4,26,,,,DISCHARGED -483,2018-11-25,2095.1559258625894,433,Elective,2018-12-18,Abnormal,483,321,2,26,,,,DISCHARGED -484,2019-08-10,1733.3650274449624,139,Urgent,2019-08-16,Abnormal,484,287,4,17,,,,DISCHARGED -484,2020-04-10,30453.29256083368,481,Emergency,2020-05-10,Inconclusive,934,214,3,20,,,,DISCHARGED -485,2023-07-15,47022.68531585785,304,Urgent,2023-08-03,Abnormal,485,446,1,9,,,,DISCHARGED -486,2022-03-04,37784.19228834623,120,Urgent,2022-03-12,Inconclusive,486,341,4,12,,,,DISCHARGED -487,2021-08-17,48166.4649733162,215,Emergency,2021-09-04,Inconclusive,487,50,1,11,,,,DISCHARGED -488,2021-02-17,8771.405136422072,478,Emergency,2021-03-03,Abnormal,488,152,2,1,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -489,2019-02-27,29401.01362275602,450,Elective,2019-03-22,Normal,489,185,0,25,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -490,2022-06-05,25768.14923325117,105,Emergency,2022-06-25,Normal,490,62,4,14,,,,DISCHARGED -491,2021-12-07,24931.510709500853,129,Urgent,2021-12-25,Normal,491,189,4,13,,,,DISCHARGED -492,2021-12-22,25403.265432304517,436,Urgent,2022-01-15,Normal,492,124,1,24,,,,DISCHARGED -493,2022-08-21,4872.52203867796,300,Emergency,2022-08-23,Normal,493,149,2,9,,,,DISCHARGED -494,2021-03-07,16579.523111324743,181,Elective,2021-03-14,Abnormal,494,313,3,21,,,,DISCHARGED -495,2019-07-31,36267.53004591016,359,Elective,2019-08-08,Inconclusive,495,57,2,7,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -496,2019-04-17,14630.921981044075,243,Elective,2019-04-19,Inconclusive,496,341,4,24,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -497,2021-03-06,20948.868408245267,451,Elective,2021-03-08,Inconclusive,497,304,3,14,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,DISCHARGED -498,2019-06-25,16520.40104282614,454,Emergency,2019-07-06,Abnormal,498,179,2,12,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -499,2021-02-08,40894.21213974231,324,Urgent,2021-03-03,Abnormal,499,169,0,7,,,,DISCHARGED -500,2022-11-29,21763.63091730142,413,Elective,2022-12-20,Abnormal,500,325,1,20,,,,DISCHARGED -500,2022-03-12,3091.861153836057,351,Emergency,2022-04-07,Normal,1441,270,2,20,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -501,2019-08-20,19095.93781532436,233,Urgent,2019-09-06,Abnormal,501,53,2,21,,,,DISCHARGED -502,2023-04-12,36653.518666295786,279,Urgent,2023-05-10,Normal,502,490,0,13,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -503,2021-10-30,7425.021655104772,257,Elective,2021-11-14,Normal,503,443,4,0,,,,DISCHARGED -504,2022-05-31,7971.315646371439,227,Elective,2022-06-24,Inconclusive,504,100,1,12,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -505,2020-06-28,39914.27607055036,458,Urgent,2020-07-09,Inconclusive,505,480,2,26,,,,DISCHARGED -506,2020-10-10,7114.390324960495,209,Urgent,2020-10-14,Normal,506,263,3,7,,,,DISCHARGED -506,2019-05-12,40593.27133069669,202,Elective,2019-05-24,Inconclusive,4062,52,2,17,,,,DISCHARGED -506,2021-01-10,8802.237166078168,260,Emergency,2021-02-05,Normal,9089,59,1,21,,,,DISCHARGED -507,2019-11-17,35155.664221050734,148,Urgent,2019-11-18,Abnormal,507,491,2,29,,,,DISCHARGED -508,2019-06-05,2940.4267013198146,121,Elective,2019-06-23,Inconclusive,508,107,0,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -509,2021-09-25,20832.681283156555,461,Emergency,2021-10-21,Inconclusive,509,4,2,8,,,,DISCHARGED -510,2022-07-03,26790.38571886688,228,Urgent,2022-07-12,Normal,510,102,2,12,,,,DISCHARGED -511,2020-06-30,7075.04249268287,216,Elective,2020-07-25,Inconclusive,511,195,3,2,,,,DISCHARGED -512,2021-10-06,41813.39958512251,302,Urgent,2021-10-21,Abnormal,512,261,0,17,,,,DISCHARGED -513,2019-08-16,26925.89517815298,266,Elective,2019-09-12,Inconclusive,513,364,0,9,,,,DISCHARGED -514,2019-04-11,34710.04305373714,115,Emergency,2019-04-12,Inconclusive,514,479,2,4,,,,DISCHARGED -515,2022-05-10,24406.045621389712,417,Emergency,2022-05-27,Abnormal,515,371,3,26,,,,DISCHARGED -516,2020-03-13,32681.888295183657,450,Urgent,2020-04-01,Normal,516,349,2,24,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -516,2022-05-12,38857.2600632808,441,Emergency,2022-06-01,Inconclusive,9884,46,2,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -517,2022-04-30,6070.790387328666,283,Urgent,2022-05-09,Inconclusive,517,354,1,29,,,,DISCHARGED -518,2022-12-27,8144.499917205368,369,Emergency,2023-01-11,Normal,518,310,1,7,,,,DISCHARGED -519,2019-04-18,33700.44951446174,227,Urgent,2019-05-12,Inconclusive,519,423,3,23,,,,DISCHARGED -520,2018-12-13,23147.662039422623,121,Emergency,2018-12-16,Inconclusive,520,307,4,6,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -521,2021-05-20,4779.894357051111,382,Urgent,2021-05-29,Abnormal,521,143,1,20,,,,DISCHARGED -522,2021-08-12,35536.83539932699,231,Elective,2021-08-22,Normal,522,268,4,17,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -523,2022-03-21,9548.401159450852,384,Emergency,2022-04-19,Normal,523,369,0,13,,,,DISCHARGED -524,2021-08-03,37589.305795129854,171,Urgent,2021-08-17,Normal,524,123,1,14,,,,DISCHARGED -525,2021-04-18,11480.50809386221,150,Elective,2021-05-06,Normal,525,105,1,9,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -526,2021-10-29,48934.26926430396,224,Elective,2021-11-09,Abnormal,526,157,3,25,,,,DISCHARGED -527,2021-06-08,41867.42276599655,292,Elective,2021-06-13,Normal,527,146,4,20,,,,DISCHARGED -527,2021-08-07,18030.99760957841,188,Urgent,2021-08-11,Inconclusive,5471,144,1,11,,,,DISCHARGED -528,2020-09-07,30326.548123541277,464,Urgent,2020-10-02,Abnormal,528,119,1,6,,,,DISCHARGED -528,2023-05-02,9069.588120614291,251,Emergency,,Inconclusive,7124,318,3,27,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -528,2019-05-14,19162.047514277485,109,Emergency,2019-05-28,Inconclusive,8772,274,3,27,,,,DISCHARGED -529,2019-02-15,15650.89136366234,323,Emergency,2019-03-13,Abnormal,529,91,4,6,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -529,2020-12-28,22369.397932161075,312,Urgent,2021-01-11,Abnormal,3782,57,0,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -529,2023-02-05,22591.60146174062,334,Emergency,2023-02-24,Abnormal,5193,438,0,12,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -529,2023-08-28,47327.88276694965,438,Elective,2023-09-26,Abnormal,6700,345,2,14,,,,DISCHARGED -530,2023-07-07,23674.450003124257,457,Emergency,2023-07-08,Normal,530,228,1,17,,,,DISCHARGED -531,2020-02-26,4327.007176437091,443,Urgent,2020-03-07,Abnormal,531,473,4,6,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -532,2021-03-15,29642.72166436872,349,Urgent,2021-03-28,Abnormal,532,116,1,5,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -533,2019-06-30,23708.64705040193,358,Emergency,2019-07-23,Abnormal,533,317,4,22,,,,DISCHARGED -534,2019-05-01,25553.108423598303,449,Urgent,2019-05-18,Abnormal,534,278,4,10,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -535,2021-09-20,2843.9567706199905,223,Emergency,2021-10-12,Inconclusive,535,126,4,7,,,,DISCHARGED -536,2023-08-02,17514.335725622943,418,Emergency,2023-09-01,Normal,536,392,1,19,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -536,2020-06-01,38987.91525101814,489,Emergency,2020-06-04,Normal,3997,395,3,0,,,,DISCHARGED -536,2022-02-27,2615.279110410856,361,Emergency,2022-03-20,Normal,9607,128,1,7,,,,DISCHARGED -537,2020-01-30,13176.78745609465,220,Urgent,2020-02-01,Abnormal,537,57,4,7,,,,DISCHARGED -537,2019-04-12,12524.607133670266,167,Urgent,2019-04-17,Inconclusive,4875,121,2,18,,,,DISCHARGED -538,2019-04-26,26984.7214350776,370,Urgent,2019-05-17,Normal,538,0,0,2,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -539,2022-08-08,6972.148003460449,270,Urgent,2022-09-02,Inconclusive,539,238,4,4,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -540,2022-06-16,23127.21955713945,489,Emergency,2022-07-06,Abnormal,540,289,2,29,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -541,2022-02-10,49053.356073379015,383,Emergency,2022-02-26,Normal,541,95,3,2,,,,DISCHARGED -542,2021-02-18,26673.32884194635,151,Elective,2021-02-25,Abnormal,542,125,4,14,,,,DISCHARGED -543,2019-10-22,26730.533030935014,475,Elective,2019-11-14,Normal,543,117,2,13,,,,DISCHARGED -544,2018-12-30,1273.5634892546543,193,Emergency,2019-01-09,Inconclusive,544,47,4,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -544,2019-03-11,6584.543834592671,271,Elective,2019-03-14,Inconclusive,858,88,1,14,,,,DISCHARGED -545,2019-10-07,9530.447755726893,130,Emergency,2019-10-17,Normal,545,487,2,23,,,,DISCHARGED -546,2021-03-12,41468.33201755068,486,Urgent,2021-03-13,Inconclusive,546,236,1,16,,,,DISCHARGED -547,2018-11-29,29471.338578563355,195,Emergency,2018-12-29,Normal,547,372,1,17,,,,DISCHARGED -548,2023-07-28,13566.273821021534,370,Urgent,2023-08-02,Inconclusive,548,384,2,1,,,,DISCHARGED -549,2020-01-06,44848.3132673048,394,Emergency,2020-01-12,Normal,549,271,0,11,,,,DISCHARGED -549,2019-07-12,34345.70828955726,449,Emergency,2019-08-04,Abnormal,9072,188,2,15,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -550,2021-03-17,45032.998617150966,332,Urgent,2021-04-02,Normal,550,486,0,3,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -551,2022-11-05,35815.45584647932,183,Emergency,2022-12-04,Normal,551,191,4,24,,,,DISCHARGED -552,2019-06-24,19532.53278723472,482,Urgent,2019-07-12,Abnormal,552,446,4,1,,,,DISCHARGED -553,2019-12-04,45970.0253982044,349,Urgent,2019-12-31,Abnormal,553,68,2,27,,,,DISCHARGED -554,2021-02-03,31603.464289996395,129,Urgent,2021-03-03,Inconclusive,554,277,4,13,,,,DISCHARGED -555,2022-04-20,46859.300809502565,101,Urgent,2022-05-05,Normal,555,348,3,10,,,,DISCHARGED -555,2020-11-07,34600.54375101597,413,Emergency,2020-11-23,Abnormal,1650,246,1,12,,,,DISCHARGED -555,2021-08-19,11018.936252881129,239,Emergency,2021-09-08,Abnormal,4177,450,1,27,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -556,2021-11-28,12442.5573858006,437,Urgent,2021-12-12,Normal,556,75,0,24,,,,DISCHARGED -557,2021-12-11,30663.060917614795,350,Elective,2021-12-18,Abnormal,557,153,4,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -558,2019-04-08,46515.22909192982,309,Emergency,2019-05-04,Inconclusive,558,143,0,9,,,,DISCHARGED -559,2023-02-09,11124.064664015672,114,Urgent,2023-02-22,Inconclusive,559,434,1,23,,,,DISCHARGED -559,2020-06-22,29305.80150045741,409,Urgent,2020-07-07,Normal,8306,484,1,0,,,,DISCHARGED -560,2021-06-30,47627.27783828069,394,Urgent,2021-07-09,Inconclusive,560,85,4,28,,,,DISCHARGED -560,2022-06-17,29711.44848855328,171,Elective,2022-07-12,Abnormal,642,184,3,20,,,,DISCHARGED -561,2020-04-11,31263.33812260269,359,Urgent,2020-04-21,Abnormal,561,284,3,24,,,,DISCHARGED -562,2022-02-03,28352.41473171589,469,Emergency,2022-02-20,Inconclusive,562,461,4,27,,,,DISCHARGED -563,2022-05-12,42655.64205587303,366,Emergency,2022-06-05,Normal,563,219,4,3,,,,DISCHARGED -564,2020-06-23,22269.55697399366,158,Emergency,2020-07-08,Abnormal,564,68,0,17,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -565,2021-05-08,42727.06257920989,424,Emergency,2021-05-16,Inconclusive,565,46,4,5,,,,DISCHARGED -566,2019-06-05,33632.929738282095,359,Elective,2019-06-27,Inconclusive,566,496,3,1,,,,DISCHARGED -567,2021-05-13,35921.24997513281,312,Elective,2021-05-20,Normal,567,93,4,2,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -567,2023-09-22,39038.30212916092,301,Emergency,2023-09-30,Abnormal,7463,237,0,13,,,,DISCHARGED -568,2019-04-10,29057.33788783523,292,Urgent,2019-04-16,Inconclusive,568,445,0,7,,,,DISCHARGED -568,2020-08-08,48015.68909005,437,Elective,2020-08-27,Abnormal,4633,499,0,15,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -569,2020-02-23,11798.272635112471,120,Urgent,2020-02-29,Normal,569,452,0,18,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -570,2019-02-05,29004.148319391294,172,Elective,2019-02-09,Abnormal,570,203,2,17,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -571,2022-08-03,35302.0542529773,285,Elective,2022-08-30,Inconclusive,571,399,4,5,,,,DISCHARGED -572,2023-06-01,40930.33670034296,269,Elective,,Abnormal,572,217,1,13,,,,OPEN -573,2020-10-13,18198.873724591896,353,Urgent,2020-11-04,Abnormal,573,473,4,2,,,,DISCHARGED -574,2020-02-04,2169.8000252912543,250,Emergency,2020-02-17,Abnormal,574,431,2,15,,,,DISCHARGED -575,2023-09-04,22325.85848784263,494,Emergency,,Normal,575,340,0,0,,,,OPEN -576,2020-07-17,39300.53214001592,148,Urgent,2020-07-22,Normal,576,38,2,11,,,,DISCHARGED -576,2022-01-10,7061.616018176291,403,Emergency,2022-01-26,Inconclusive,5017,99,3,29,,,,DISCHARGED -577,2021-09-09,48637.890352783135,489,Urgent,2021-09-30,Inconclusive,577,288,3,13,,,,DISCHARGED -578,2019-10-21,11455.638278335364,299,Elective,2019-11-07,Abnormal,578,253,4,18,,,,DISCHARGED -579,2023-08-14,29736.48579821002,333,Urgent,,Normal,579,221,4,21,,,,OPEN -580,2023-09-19,31546.04034452285,118,Emergency,2023-09-23,Inconclusive,580,356,1,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -581,2023-03-11,29531.96894938637,194,Urgent,2023-04-07,Abnormal,581,22,1,8,,,,DISCHARGED -582,2020-11-08,27793.874151156982,354,Elective,2020-12-07,Abnormal,582,249,3,6,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -583,2022-12-21,25651.524166615734,210,Urgent,2022-12-27,Abnormal,583,9,0,13,,,,DISCHARGED -584,2019-06-20,2633.7930984837817,459,Urgent,2019-07-11,Abnormal,584,245,2,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -585,2019-10-18,36200.574823271,150,Elective,2019-11-07,Inconclusive,585,324,1,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -586,2022-09-17,27740.621895862027,419,Elective,2022-09-25,Abnormal,586,99,1,8,,,,DISCHARGED -586,2020-10-26,17265.95313814678,173,Urgent,2020-11-10,Inconclusive,5159,289,0,20,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -587,2023-06-17,10942.246708037756,308,Urgent,2023-07-05,Normal,587,179,0,6,,,,DISCHARGED -588,2022-09-27,1580.5238993603143,385,Emergency,2022-10-05,Normal,588,222,4,8,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -589,2021-08-22,4430.935757891534,283,Urgent,2021-09-12,Abnormal,589,393,2,3,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -590,2020-05-22,47716.54155932406,150,Elective,2020-05-29,Abnormal,590,249,0,24,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -591,2023-07-15,6907.865086316721,298,Emergency,,Normal,591,146,1,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,OPEN -592,2023-04-26,37718.965979142384,349,Urgent,2023-05-09,Inconclusive,592,441,1,11,,,,DISCHARGED -593,2020-08-16,20190.8093362639,287,Emergency,2020-09-01,Normal,593,95,3,5,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -594,2019-09-27,8957.21032146065,486,Elective,2019-10-18,Inconclusive,594,256,0,17,,,,DISCHARGED -595,2022-10-02,1621.74136483954,124,Elective,2022-10-30,Abnormal,595,324,4,7,,,,DISCHARGED -596,2018-12-17,14870.627251261443,493,Elective,2019-01-12,Inconclusive,596,492,2,20,,,,DISCHARGED -597,2022-10-06,17325.665238130157,356,Elective,2022-10-07,Inconclusive,597,3,4,14,,,,DISCHARGED -598,2020-08-14,17171.201075165605,471,Emergency,2020-09-07,Normal,598,15,1,2,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -599,2019-09-04,1720.1186557995557,197,Elective,2019-09-14,Normal,599,279,4,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -599,2023-07-21,25090.970740519588,255,Elective,2023-08-17,Normal,9871,335,1,23,,,,DISCHARGED -599,2021-01-02,42473.727572099335,459,Emergency,2021-01-18,Abnormal,9885,246,1,22,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -600,2021-12-22,43169.871554592566,190,Urgent,2021-12-30,Abnormal,600,257,1,8,,,,DISCHARGED -601,2021-02-28,21815.834706117395,497,Urgent,2021-03-15,Normal,601,496,1,7,,,,DISCHARGED -602,2022-12-28,15723.024459754026,104,Emergency,2023-01-26,Normal,602,475,1,26,,,,DISCHARGED -603,2019-08-17,25943.140950768706,386,Urgent,2019-08-30,Normal,603,383,3,3,,,,DISCHARGED -604,2021-08-25,43137.28068250206,291,Urgent,2021-08-30,Normal,604,159,4,1,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -605,2019-04-29,20480.127366492598,194,Emergency,2019-05-04,Normal,605,474,3,13,,,,DISCHARGED -606,2022-11-08,41749.141427979725,358,Urgent,2022-11-17,Abnormal,606,339,3,28,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -607,2021-08-31,25944.58736990828,163,Urgent,2021-09-29,Abnormal,607,151,0,1,,,,DISCHARGED -608,2021-04-18,7898.41039505423,152,Emergency,2021-05-03,Inconclusive,608,395,0,1,,,,DISCHARGED -609,2018-12-01,26652.02629964267,339,Emergency,2018-12-02,Inconclusive,609,177,0,29,,,,DISCHARGED -610,2018-11-20,22964.513025846525,142,Urgent,2018-12-07,Normal,610,162,2,26,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -611,2022-10-30,40088.25191410642,445,Emergency,2022-11-24,Abnormal,611,379,0,27,,,,DISCHARGED -612,2020-06-18,21643.0988673552,441,Urgent,2020-07-18,Inconclusive,612,32,4,21,,,,DISCHARGED -613,2020-09-25,45847.121454257394,303,Elective,2020-10-04,Abnormal,613,416,3,6,,,,DISCHARGED -614,2020-02-01,21787.94821260656,221,Emergency,2020-02-25,Normal,614,444,4,11,,,,DISCHARGED -615,2019-07-14,1308.4505111228175,203,Urgent,2019-07-15,Abnormal,615,178,0,5,,,,DISCHARGED -616,2022-08-12,16653.861241303515,233,Elective,2022-09-08,Abnormal,616,426,2,17,,,,DISCHARGED -617,2021-03-07,4890.952697087665,355,Emergency,2021-04-05,Abnormal,617,100,2,3,,,,DISCHARGED -617,2019-11-03,5822.149830631723,346,Emergency,2019-11-08,Inconclusive,6584,267,3,18,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -618,2021-09-05,3672.3107384173054,287,Urgent,2021-09-13,Inconclusive,618,322,4,26,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -619,2022-07-02,2754.2413838719704,496,Urgent,2022-07-25,Abnormal,619,64,1,12,,,,DISCHARGED -620,2022-03-04,7375.7026775905215,469,Urgent,2022-03-20,Normal,620,416,4,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -621,2018-12-21,17774.51346033581,315,Emergency,2018-12-28,Normal,621,167,0,20,,,,DISCHARGED -622,2022-06-01,37817.35473895176,245,Urgent,2022-06-29,Abnormal,622,329,1,22,,,,DISCHARGED -623,2022-10-29,35327.49680593469,187,Elective,2022-11-05,Abnormal,623,42,2,29,,,,DISCHARGED -624,2020-02-24,7515.106726165153,118,Urgent,2020-03-18,Abnormal,624,43,3,24,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -625,2022-12-25,26191.855680458164,250,Elective,2022-12-30,Inconclusive,625,284,3,26,,,,DISCHARGED -626,2020-09-15,40368.63078527363,467,Emergency,2020-09-28,Abnormal,626,396,2,1,,,,DISCHARGED -627,2021-10-12,12318.402603786715,444,Elective,2021-10-23,Abnormal,627,11,0,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -627,2021-12-27,33140.021561048576,393,Urgent,2022-01-20,Normal,4993,94,2,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -627,2021-07-17,40729.93029548378,246,Urgent,2021-07-19,Abnormal,9855,301,0,8,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -628,2019-12-22,25682.58667785405,500,Elective,2020-01-03,Abnormal,628,385,1,25,,,,DISCHARGED -629,2023-07-03,1166.7713188498326,212,Elective,2023-08-02,Abnormal,629,252,2,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -630,2022-11-24,26137.14802036306,405,Urgent,2022-12-18,Normal,630,498,0,3,,,,DISCHARGED -631,2022-10-18,30496.5510232852,270,Elective,2022-11-08,Abnormal,631,241,1,15,,,,DISCHARGED -632,2020-02-01,22805.877722145397,226,Urgent,2020-02-22,Abnormal,632,34,2,18,,,,DISCHARGED -633,2019-05-07,49270.072507326775,133,Elective,2019-05-13,Abnormal,633,214,3,9,,,,DISCHARGED -634,2020-03-26,4858.182480607207,261,Urgent,2020-04-03,Abnormal,634,336,2,5,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -635,2019-03-09,9221.570265611015,415,Elective,2019-03-16,Abnormal,635,89,4,15,,,,DISCHARGED -636,2021-06-06,7277.398359386279,450,Emergency,2021-06-24,Abnormal,636,263,2,9,,,,DISCHARGED -637,2023-03-29,46231.732510155394,153,Emergency,2023-04-26,Normal,637,92,4,12,,,,DISCHARGED -638,2019-10-16,4159.8516752477735,240,Elective,2019-11-15,Inconclusive,638,409,1,8,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -639,2022-02-27,39008.29088176689,231,Emergency,2022-03-23,Abnormal,639,457,2,6,,,,DISCHARGED -640,2020-06-13,5859.633336178047,136,Emergency,2020-06-24,Abnormal,640,89,1,3,,,,DISCHARGED -641,2018-11-07,11504.243525500084,304,Emergency,2018-11-17,Abnormal,641,417,1,18,,,,DISCHARGED -643,2022-07-11,12779.4190671751,139,Urgent,2022-07-15,Normal,643,114,0,25,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -644,2021-07-14,37031.667951122414,464,Elective,2021-07-24,Normal,644,104,1,3,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -645,2019-03-22,35296.60739748208,478,Elective,2019-04-12,Inconclusive,645,390,1,18,,,,DISCHARGED -646,2020-11-29,13251.93066792951,272,Urgent,2020-12-11,Normal,646,195,2,27,,,,DISCHARGED -646,2022-04-12,36688.41362234406,493,Urgent,2022-05-02,Inconclusive,5599,313,2,18,,,,DISCHARGED -647,2019-06-18,10398.841431365803,263,Elective,2019-07-14,Abnormal,647,113,3,11,,,,DISCHARGED -648,2018-11-21,35824.27718337132,147,Emergency,2018-12-17,Abnormal,648,492,0,29,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -649,2021-10-29,25646.982769784863,384,Emergency,2021-11-04,Normal,649,74,1,12,,,,DISCHARGED -650,2023-08-11,38797.57016070035,443,Emergency,,Inconclusive,650,412,0,24,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",OPEN -650,2021-11-27,42999.48515017059,478,Emergency,2021-12-27,Inconclusive,5021,375,4,3,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -651,2022-09-23,39298.31397906687,499,Emergency,2022-09-29,Normal,651,419,1,24,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -652,2022-01-31,13906.86947145366,254,Urgent,2022-02-21,Abnormal,652,216,0,27,,,,DISCHARGED -653,2018-12-05,3240.3099231891383,310,Urgent,2018-12-12,Inconclusive,653,276,3,9,,,,DISCHARGED -654,2020-11-12,18890.599993942385,323,Emergency,2020-12-11,Inconclusive,654,248,3,20,,,,DISCHARGED -655,2021-10-21,1832.966602057094,308,Urgent,2021-11-14,Abnormal,655,163,1,6,,,,DISCHARGED -656,2021-10-10,9781.227877151165,145,Elective,2021-10-14,Abnormal,656,393,4,29,,,,DISCHARGED -657,2020-08-26,3484.9172789396234,287,Elective,2020-09-21,Normal,657,356,3,4,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -658,2021-07-07,28319.6755694606,223,Elective,2021-07-21,Normal,658,456,3,16,,,,DISCHARGED -659,2021-08-19,22706.167498746145,253,Emergency,2021-08-22,Abnormal,659,407,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -660,2020-01-11,8941.46951865727,155,Emergency,2020-01-17,Abnormal,660,191,0,10,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -661,2020-08-23,6537.146944177454,213,Urgent,2020-09-12,Inconclusive,661,226,3,14,,,,DISCHARGED -662,2021-01-04,2089.9212968616207,287,Emergency,2021-01-15,Inconclusive,662,176,2,20,,,,DISCHARGED -663,2021-06-25,6786.999888529623,451,Elective,2021-07-22,Inconclusive,663,98,3,21,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -664,2020-07-28,7135.088456734516,413,Emergency,2020-08-11,Normal,664,495,0,6,,,,DISCHARGED -665,2019-06-01,38992.27217140143,471,Elective,2019-06-15,Normal,665,35,0,17,,,,DISCHARGED -666,2019-05-01,24341.76247166152,288,Elective,2019-05-04,Normal,666,465,1,25,,,,DISCHARGED -667,2022-10-24,38397.633513422974,381,Emergency,2022-10-27,Normal,667,496,2,24,,,,DISCHARGED -667,2020-12-10,3818.595075203345,221,Emergency,2021-01-05,Normal,3686,486,0,5,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -668,2020-10-31,19815.01793877015,225,Emergency,2020-11-11,Inconclusive,668,95,4,17,,,,DISCHARGED -669,2021-10-23,43750.163335970974,131,Urgent,2021-11-10,Inconclusive,669,151,2,15,,,,DISCHARGED -670,2022-05-05,32288.973244691417,191,Elective,2022-05-25,Inconclusive,670,150,2,1,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -671,2020-11-20,21005.63444737728,425,Emergency,2020-12-12,Normal,671,189,4,18,,,,DISCHARGED -672,2019-06-16,34855.727260136984,233,Urgent,2019-07-05,Normal,672,223,3,0,,,,DISCHARGED -673,2022-08-06,26510.62830691177,135,Urgent,2022-09-04,Inconclusive,673,36,4,24,,,,DISCHARGED -674,2021-07-07,12042.408939254816,385,Elective,2021-07-08,Inconclusive,674,267,4,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -675,2020-04-04,41216.67692224184,178,Urgent,2020-04-28,Abnormal,675,368,3,25,,,,DISCHARGED -676,2019-06-07,6752.416370961948,405,Urgent,2019-06-11,Normal,676,182,3,10,,,,DISCHARGED -676,2018-12-17,12802.501487818598,397,Urgent,2018-12-22,Abnormal,6093,12,3,19,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -677,2023-03-09,24865.147652104934,411,Emergency,2023-03-22,Inconclusive,677,278,3,4,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -678,2021-06-01,44480.89614627855,423,Elective,2021-06-29,Normal,678,216,3,15,,,,DISCHARGED -679,2020-03-05,35699.31152905354,329,Urgent,2020-03-18,Normal,679,354,4,22,,,,DISCHARGED -680,2020-10-03,23327.64271375108,121,Emergency,2020-10-18,Normal,680,360,1,0,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -681,2023-01-15,48488.17808785007,213,Emergency,2023-01-23,Abnormal,681,285,1,18,,,,DISCHARGED -682,2021-02-10,44147.79354614219,315,Emergency,2021-03-09,Normal,682,272,0,13,,,,DISCHARGED -683,2023-02-19,43699.09339220958,460,Emergency,2023-03-06,Abnormal,683,368,1,2,,,,DISCHARGED -684,2019-12-04,34573.60212639306,366,Elective,2019-12-12,Abnormal,684,61,1,1,,,,DISCHARGED -685,2019-09-13,25726.29888730881,493,Emergency,2019-09-20,Inconclusive,685,83,4,23,,,,DISCHARGED -685,2021-07-16,37424.896712974136,357,Emergency,2021-07-22,Inconclusive,8664,367,3,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -686,2023-03-23,28751.33243401702,326,Emergency,2023-04-18,Normal,686,216,3,16,,,,DISCHARGED -687,2022-09-27,26553.981812972223,268,Elective,2022-10-27,Abnormal,687,341,4,27,,,,DISCHARGED -688,2019-08-02,34730.2311812142,441,Emergency,2019-08-25,Inconclusive,688,396,1,17,,,,DISCHARGED -689,2020-06-22,33563.15886344288,310,Elective,2020-07-13,Inconclusive,689,186,4,0,,,,DISCHARGED -690,2021-03-28,40482.86091982188,173,Elective,2021-04-13,Inconclusive,690,18,0,14,,,,DISCHARGED -691,2020-08-21,10100.077988372932,229,Elective,2020-08-31,Normal,691,176,3,21,,,,DISCHARGED -692,2023-01-29,2397.2433727984144,193,Urgent,,Normal,692,99,2,8,,,,OPEN -692,2019-12-27,7843.407417399141,494,Emergency,2020-01-01,Abnormal,7451,395,0,26,,,,DISCHARGED -692,2023-08-24,13046.980253989215,350,Elective,,Abnormal,7456,444,0,22,,,,OPEN -692,2020-01-09,3621.536449748656,392,Emergency,2020-01-26,Abnormal,8662,232,4,4,,,,DISCHARGED -693,2020-01-02,6264.5528465513535,483,Emergency,2020-01-24,Inconclusive,693,402,1,27,,,,DISCHARGED -694,2019-10-26,26193.20859270649,324,Urgent,2019-10-28,Inconclusive,694,75,3,12,,,,DISCHARGED -695,2023-04-05,26875.03408023667,103,Urgent,,Inconclusive,695,264,2,18,,,,OPEN -696,2023-06-04,20789.857274019647,179,Elective,2023-06-17,Inconclusive,696,454,0,27,,,,DISCHARGED -697,2021-01-10,44300.24972189319,334,Emergency,2021-01-21,Normal,697,283,2,27,,,,DISCHARGED -698,2022-09-18,8515.07868571556,189,Emergency,2022-09-21,Inconclusive,698,205,1,23,,,,DISCHARGED -699,2022-09-27,32934.47275227343,357,Elective,2022-10-26,Abnormal,699,222,1,9,,,,DISCHARGED -700,2020-07-05,43134.404352418045,138,Urgent,2020-07-27,Abnormal,700,383,2,19,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -701,2022-05-27,26655.77099731245,405,Emergency,2022-06-18,Abnormal,701,51,3,24,,,,DISCHARGED -702,2020-02-09,30328.08155057094,381,Urgent,2020-02-12,Normal,702,338,1,20,,,,DISCHARGED -703,2023-09-19,48960.84096432827,241,Urgent,2023-10-05,Inconclusive,703,366,2,13,,,,DISCHARGED -704,2020-01-24,29381.57959955362,478,Emergency,2020-02-05,Abnormal,704,143,0,21,,,,DISCHARGED -705,2022-02-18,42307.77965279135,306,Elective,2022-02-24,Normal,705,372,2,20,,,,DISCHARGED -706,2021-06-23,27564.35972719125,244,Elective,2021-06-26,Inconclusive,706,68,2,25,,,,DISCHARGED -707,2021-11-26,20131.64987884304,478,Emergency,2021-12-01,Abnormal,707,98,4,11,,,,DISCHARGED -708,2020-08-05,10643.351924430925,444,Urgent,2020-08-14,Abnormal,708,395,1,10,,,,DISCHARGED -709,2021-10-28,39053.62294380567,481,Elective,2021-11-04,Abnormal,709,24,3,22,,,,DISCHARGED -710,2022-11-03,19760.56870428288,347,Elective,2022-11-09,Abnormal,710,435,3,6,,,,DISCHARGED -710,2022-06-29,3304.226375100389,313,Urgent,2022-07-28,Abnormal,2800,378,4,16,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -711,2022-03-26,27726.72587782294,313,Elective,2022-04-23,Abnormal,711,468,3,17,,,,DISCHARGED -712,2019-07-08,34328.250210011785,313,Emergency,2019-07-18,Abnormal,712,483,2,6,,,,DISCHARGED -713,2023-01-02,7452.926275865916,161,Urgent,,Abnormal,713,52,4,23,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",OPEN -713,2022-01-29,9762.152487460102,378,Elective,2022-02-11,Abnormal,1084,150,0,19,,,,DISCHARGED -714,2019-03-08,35381.34910117897,460,Elective,2019-03-24,Normal,714,143,1,5,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -715,2023-09-30,29898.894423810558,164,Elective,2023-10-02,Abnormal,715,56,1,10,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -716,2021-09-11,22542.047911364465,350,Elective,2021-10-11,Inconclusive,716,38,1,11,,,,DISCHARGED -717,2020-01-10,36610.928816561405,445,Urgent,2020-01-25,Normal,717,108,2,25,,,,DISCHARGED -718,2023-04-03,19789.25254162127,413,Urgent,2023-04-07,Normal,718,180,0,15,,,,DISCHARGED -719,2021-12-17,16479.89691558537,156,Elective,2021-12-27,Normal,719,41,4,18,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -720,2021-09-02,2023.521819580016,499,Emergency,2021-09-27,Abnormal,720,185,4,22,,,,DISCHARGED -721,2021-03-06,8596.554415684222,498,Emergency,2021-03-31,Inconclusive,721,422,1,26,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -722,2021-09-01,17282.783447122092,210,Urgent,2021-09-11,Inconclusive,722,397,0,18,,,,DISCHARGED -723,2019-10-18,45839.002243320174,175,Elective,2019-10-22,Abnormal,723,222,0,10,,,,DISCHARGED -724,2019-04-10,43865.89991922462,360,Urgent,2019-05-09,Normal,724,121,0,15,,,,DISCHARGED -725,2021-02-06,5290.39706178965,362,Emergency,2021-02-13,Inconclusive,725,132,3,22,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -725,2023-09-14,10031.63094138683,148,Emergency,,Inconclusive,8012,162,3,27,,,,OPEN -725,2018-12-27,45268.70600762127,329,Elective,2019-01-25,Inconclusive,8257,214,1,26,,,,DISCHARGED -726,2019-02-10,41850.87495762621,180,Urgent,2019-02-13,Normal,726,220,0,11,,,,DISCHARGED -727,2023-09-16,26642.36763976629,402,Emergency,2023-10-14,Abnormal,727,234,0,26,,,,DISCHARGED -728,2019-07-07,9976.235732053396,272,Elective,2019-07-23,Normal,728,330,4,7,,,,DISCHARGED -729,2020-03-09,22780.126968153894,155,Urgent,2020-03-26,Abnormal,729,145,4,2,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -730,2023-04-11,19037.819963447117,203,Urgent,2023-05-09,Abnormal,730,238,1,1,,,,DISCHARGED -731,2023-05-18,5936.85442788524,248,Emergency,2023-05-19,Inconclusive,731,75,0,27,,,,DISCHARGED -732,2021-09-11,33209.18551542296,331,Elective,2021-10-03,Abnormal,732,8,1,5,,,,DISCHARGED -733,2020-06-27,25489.361897336825,430,Emergency,2020-07-09,Normal,733,73,4,15,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -734,2020-12-07,49974.80659196992,390,Emergency,2020-12-28,Normal,734,441,4,19,,,,DISCHARGED -735,2021-10-09,21078.494919886787,154,Elective,2021-11-08,Abnormal,735,491,3,23,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -736,2023-03-07,33335.113067909144,341,Emergency,,Inconclusive,736,400,1,28,,,,OPEN -737,2021-08-29,42294.9053217139,401,Urgent,2021-08-30,Inconclusive,737,252,1,14,,,,DISCHARGED -738,2019-03-09,20485.05305682624,312,Urgent,2019-03-28,Normal,738,229,0,13,,,,DISCHARGED -739,2018-11-28,24362.3739604404,424,Urgent,2018-12-02,Abnormal,739,6,0,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -740,2023-06-04,30219.840568138978,248,Urgent,,Normal,740,173,3,19,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",OPEN -741,2020-12-15,16043.149171051742,231,Urgent,2020-12-31,Normal,741,140,2,17,,,,DISCHARGED -742,2021-02-28,47901.75283538637,336,Elective,2021-03-02,Inconclusive,742,167,2,13,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -743,2022-08-07,46411.59805250819,299,Elective,2022-09-02,Abnormal,743,169,2,17,,,,DISCHARGED -744,2019-04-18,5412.689044818573,495,Urgent,2019-05-06,Inconclusive,744,392,1,1,,,,DISCHARGED -745,2020-02-10,39094.68030580683,180,Emergency,2020-02-27,Abnormal,745,433,1,0,,,,DISCHARGED -746,2022-06-13,38597.00167876915,136,Urgent,2022-06-15,Abnormal,746,282,4,19,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -747,2020-03-09,28429.30705666029,211,Elective,2020-04-07,Inconclusive,747,121,1,1,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -748,2021-08-11,44226.342901836,338,Elective,2021-09-09,Normal,748,193,1,8,,,,DISCHARGED -749,2023-03-14,24428.30168772113,470,Elective,,Abnormal,749,4,1,8,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",OPEN -750,2023-05-10,19925.36121455757,381,Emergency,2023-06-03,Inconclusive,750,28,3,15,,,,DISCHARGED -751,2023-06-08,20592.203163869275,230,Elective,2023-06-30,Inconclusive,751,164,1,10,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -752,2020-12-04,9812.179824131505,262,Urgent,2020-12-13,Abnormal,752,421,0,26,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -753,2019-11-28,19972.934865547548,139,Emergency,2019-12-12,Normal,753,338,0,22,,,,DISCHARGED -754,2022-08-15,41120.09899603738,208,Emergency,2022-08-30,Inconclusive,754,135,4,5,,,,DISCHARGED -754,2021-05-02,16581.515286624075,131,Urgent,2021-05-20,Abnormal,3396,495,3,11,,,,DISCHARGED -754,2022-07-10,49951.26176069349,476,Emergency,2022-08-06,Inconclusive,5169,364,0,2,,,,DISCHARGED -755,2023-10-12,11287.415506639492,447,Urgent,2023-10-21,Abnormal,755,320,3,29,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -756,2023-01-26,31740.491338369888,174,Emergency,,Inconclusive,756,341,3,11,,,,OPEN -757,2022-06-07,13376.239619834629,240,Elective,2022-06-29,Normal,757,499,4,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -758,2022-03-14,27639.326063183085,162,Elective,2022-03-27,Abnormal,758,144,3,22,,,,DISCHARGED -759,2019-08-16,19180.35768120774,469,Elective,2019-09-10,Normal,759,326,1,0,,,,DISCHARGED -760,2021-08-08,40812.4540565021,374,Elective,2021-08-22,Normal,760,216,3,8,,,,DISCHARGED -761,2022-02-15,17426.341356949,341,Elective,2022-03-10,Inconclusive,761,300,4,19,,,,DISCHARGED -762,2020-03-03,44982.00041483668,299,Emergency,2020-03-18,Abnormal,762,131,4,21,,,,DISCHARGED -763,2018-11-30,47650.80969466829,364,Elective,2018-12-15,Abnormal,763,291,4,5,,,,DISCHARGED -764,2020-02-16,6103.389063833198,369,Elective,2020-03-11,Normal,764,69,0,10,,,,DISCHARGED -765,2019-01-23,24921.315633679584,235,Emergency,2019-02-11,Normal,765,251,1,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -766,2018-12-13,1032.2630866161535,377,Urgent,2018-12-14,Normal,766,414,0,3,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -767,2019-09-15,42103.26303322263,366,Urgent,2019-10-07,Normal,767,274,2,28,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -768,2021-12-13,24954.7311360958,343,Urgent,2022-01-08,Normal,768,444,1,26,,,,DISCHARGED -769,2021-04-19,9326.034946567304,144,Elective,2021-05-09,Inconclusive,769,363,3,9,,,,DISCHARGED -769,2021-07-07,5276.557815435547,266,Urgent,2021-08-01,Inconclusive,8198,181,4,18,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -770,2021-05-27,25362.31419278356,148,Urgent,2021-06-26,Inconclusive,770,166,2,28,,,,DISCHARGED -771,2019-08-24,44336.26915459241,401,Urgent,2019-09-07,Inconclusive,771,90,1,5,,,,DISCHARGED -772,2022-03-12,5538.761874127573,277,Emergency,2022-03-27,Normal,772,201,0,0,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -773,2022-10-19,16280.90909814606,199,Urgent,2022-10-31,Inconclusive,773,345,4,7,,,,DISCHARGED -774,2022-02-08,8508.149556513565,183,Urgent,2022-02-10,Normal,774,18,0,7,,,,DISCHARGED -775,2020-01-03,10230.631506124004,481,Urgent,2020-01-30,Normal,775,38,1,24,,,,DISCHARGED -776,2019-02-11,41051.670280796825,329,Emergency,2019-02-21,Normal,776,125,1,5,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -777,2019-07-04,23274.304046522768,427,Urgent,2019-07-23,Inconclusive,777,450,2,16,,,,DISCHARGED -778,2023-04-13,37722.50942761079,257,Emergency,2023-05-06,Abnormal,778,172,3,18,,,,DISCHARGED -778,2022-01-05,48627.34760569774,300,Urgent,2022-01-10,Normal,784,140,0,0,,,,DISCHARGED -779,2020-04-20,47030.328586837946,467,Emergency,2020-05-10,Abnormal,779,241,2,14,,,,DISCHARGED -780,2023-01-31,32654.99224589677,289,Elective,,Abnormal,780,219,4,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",OPEN -781,2019-04-04,29497.37402678459,244,Elective,2019-04-26,Normal,781,125,3,20,,,,DISCHARGED -782,2019-05-18,27302.715218910147,375,Emergency,2019-05-29,Abnormal,782,57,2,2,,,,DISCHARGED -783,2020-11-24,47704.5817939048,296,Urgent,2020-11-29,Inconclusive,783,147,0,29,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -785,2019-04-17,35343.11175166781,189,Emergency,2019-05-03,Abnormal,785,475,1,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -786,2019-12-01,41082.61487121857,359,Elective,2019-12-07,Normal,786,455,4,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -787,2021-11-05,34712.191114828,104,Elective,2021-11-11,Abnormal,787,316,0,8,,,,DISCHARGED -788,2019-08-25,23918.812512706263,165,Elective,2019-09-20,Abnormal,788,382,3,26,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -789,2022-06-26,8749.923730892473,295,Emergency,2022-07-12,Inconclusive,789,360,3,15,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -790,2020-07-17,25970.86613875968,235,Elective,2020-07-25,Inconclusive,790,422,1,23,,,,DISCHARGED -791,2019-07-14,20536.00918132653,119,Urgent,2019-08-13,Normal,791,0,1,12,,,,DISCHARGED -792,2020-12-26,17232.967197593738,143,Urgent,2021-01-08,Inconclusive,792,386,4,18,,,,DISCHARGED -793,2023-08-05,22420.439275320496,200,Urgent,,Inconclusive,793,460,4,26,,,,OPEN -794,2022-01-24,43237.62811458214,472,Elective,2022-02-05,Normal,794,347,1,17,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -795,2023-01-29,11296.566023574776,123,Elective,2023-02-11,Abnormal,795,189,1,20,,,,DISCHARGED -796,2019-01-01,8476.740871912792,262,Urgent,2019-01-24,Normal,796,190,3,11,,,,DISCHARGED -797,2021-12-15,36408.22625238741,135,Elective,2022-01-10,Inconclusive,797,368,1,27,,,,DISCHARGED -798,2022-02-28,19484.05123974328,242,Elective,2022-03-29,Inconclusive,798,408,2,28,,,,DISCHARGED -799,2020-11-19,13608.178967324164,304,Emergency,2020-12-15,Inconclusive,799,311,0,11,,,,DISCHARGED -800,2021-07-17,25004.26860951412,416,Emergency,2021-07-18,Inconclusive,800,416,1,0,,,,DISCHARGED -801,2021-01-29,37667.41225733959,468,Emergency,2021-02-15,Inconclusive,801,421,4,19,,,,DISCHARGED -802,2019-02-16,16236.094943725762,273,Urgent,2019-03-18,Normal,802,116,2,7,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -803,2022-03-14,41603.68076690758,396,Elective,2022-04-11,Normal,803,133,4,16,,,,DISCHARGED -804,2021-05-24,30732.69838336576,292,Elective,2021-06-19,Inconclusive,804,57,2,20,,,,DISCHARGED -805,2019-07-08,29222.32718305689,355,Emergency,2019-07-26,Inconclusive,805,43,1,27,,,,DISCHARGED -806,2020-06-25,39541.66394307452,351,Emergency,2020-07-11,Normal,806,172,0,19,,,,DISCHARGED -807,2019-05-02,44595.209917483306,240,Emergency,2019-05-17,Normal,807,159,4,21,,,,DISCHARGED -808,2020-05-12,11167.18406266578,395,Emergency,2020-06-07,Inconclusive,808,172,2,6,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -809,2020-09-26,42381.33687268156,194,Elective,2020-10-05,Normal,809,316,3,8,,,,DISCHARGED -810,2022-03-21,11523.996974043888,319,Urgent,2022-03-27,Normal,810,302,1,16,,,,DISCHARGED -811,2022-03-12,38730.91328230767,130,Elective,2022-03-24,Normal,811,148,0,26,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -812,2020-03-02,16887.30253383948,340,Urgent,2020-03-20,Inconclusive,812,79,1,9,,,,DISCHARGED -813,2022-03-03,34572.735332712386,393,Urgent,2022-03-16,Abnormal,813,373,3,3,,,,DISCHARGED -814,2023-07-06,47900.18864530278,440,Urgent,,Normal,814,212,0,21,,,,OPEN -815,2019-09-05,24048.26659662773,370,Emergency,2019-09-11,Normal,815,202,3,25,,,,DISCHARGED -816,2023-07-29,41011.11902185864,268,Elective,,Inconclusive,816,251,1,6,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",OPEN -817,2020-06-19,9100.186853541489,303,Elective,2020-07-05,Inconclusive,817,228,2,6,,,,DISCHARGED -818,2023-06-21,35435.875071456,363,Emergency,2023-07-16,Inconclusive,818,163,1,7,,,,DISCHARGED -819,2023-05-09,28265.168342965186,119,Urgent,2023-06-06,Normal,819,226,1,29,,,,DISCHARGED -820,2019-08-24,1318.430280551725,129,Emergency,2019-09-05,Inconclusive,820,146,1,25,,,,DISCHARGED -820,2020-12-10,28266.4288766217,165,Emergency,2020-12-22,Abnormal,7244,19,4,23,,,,DISCHARGED -821,2022-09-21,43949.34658226591,278,Emergency,2022-09-30,Inconclusive,821,440,3,23,,,,DISCHARGED -822,2021-03-12,17245.167346985596,290,Emergency,2021-03-18,Abnormal,822,401,3,7,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -823,2023-03-16,19562.89780892543,326,Emergency,,Inconclusive,823,46,3,15,,,,OPEN -824,2021-01-24,32220.03922731605,201,Emergency,2021-02-04,Normal,824,232,4,11,,,,DISCHARGED -825,2023-07-25,33854.29689630168,461,Elective,,Abnormal,825,304,2,14,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -826,2019-06-04,45936.95113416006,244,Elective,2019-06-18,Normal,826,13,1,7,,,,DISCHARGED -827,2022-06-05,33301.630993388186,464,Urgent,2022-06-18,Abnormal,827,142,2,21,,,,DISCHARGED -828,2021-03-28,2634.757862571336,210,Urgent,2021-04-08,Normal,828,414,4,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -829,2023-09-19,43274.06974916167,268,Elective,2023-10-14,Normal,829,0,3,2,,,,DISCHARGED -830,2020-02-06,1606.2851913733862,491,Elective,2020-02-16,Inconclusive,830,372,1,21,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -831,2019-06-24,44358.02707896767,108,Emergency,2019-07-15,Inconclusive,831,53,0,20,,,,DISCHARGED -832,2023-07-21,25817.69518494261,163,Emergency,2023-07-22,Abnormal,832,373,0,15,,,,DISCHARGED -833,2018-11-03,43952.390215232524,343,Urgent,2018-11-13,Inconclusive,833,258,2,14,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -834,2023-04-10,23210.81233488537,443,Urgent,2023-04-25,Abnormal,834,143,3,23,,,,DISCHARGED -835,2021-10-22,47469.083166671415,355,Elective,2021-11-18,Inconclusive,835,470,0,3,,,,DISCHARGED -836,2019-02-24,8945.823548135064,146,Urgent,2019-03-23,Abnormal,836,440,2,19,,,,DISCHARGED -837,2019-04-01,45779.07518868438,232,Urgent,2019-04-24,Normal,837,458,4,28,,,,DISCHARGED -838,2021-12-14,14964.071601818474,376,Elective,2022-01-10,Inconclusive,838,11,2,15,,,,DISCHARGED -838,2022-07-29,25037.67180078681,231,Elective,2022-08-20,Normal,9322,329,2,9,,,,DISCHARGED -839,2022-03-16,32000.19585303313,292,Emergency,2022-03-31,Normal,839,223,2,10,,,,DISCHARGED -840,2023-01-29,18696.998297113296,266,Emergency,,Normal,840,271,1,25,,,,OPEN -841,2023-07-06,13108.510887048702,209,Elective,,Abnormal,841,455,2,28,,,,OPEN -842,2019-08-23,17892.930585551392,230,Elective,2019-09-15,Inconclusive,842,357,2,4,,,,DISCHARGED -843,2023-01-08,32942.42402901524,395,Elective,2023-01-23,Normal,843,459,1,10,,,,DISCHARGED -843,2023-06-03,21495.738111991657,310,Emergency,,Abnormal,8227,407,1,28,,,,OPEN -843,2020-02-29,21584.28724643771,249,Emergency,2020-03-04,Normal,8643,155,4,12,,,,DISCHARGED -844,2022-11-26,43613.48843229857,315,Emergency,2022-12-04,Inconclusive,844,372,3,14,,,,DISCHARGED -845,2023-02-20,19989.16791824609,449,Urgent,2023-03-14,Abnormal,845,7,0,5,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -846,2022-04-05,45853.988019674616,401,Urgent,2022-04-21,Normal,846,121,0,15,,,,DISCHARGED -847,2019-01-21,20230.445508408902,473,Elective,2019-02-06,Normal,847,347,2,14,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -848,2022-12-31,33070.80494268545,265,Elective,2023-01-18,Normal,848,163,4,10,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -849,2020-09-01,26105.14343227611,185,Emergency,2020-09-11,Normal,849,89,2,19,,,,DISCHARGED -850,2020-12-30,19835.730466945995,289,Elective,2021-01-03,Normal,850,135,0,1,,,,DISCHARGED -851,2019-08-09,36906.24048364317,417,Urgent,2019-08-28,Abnormal,851,185,1,27,,,,DISCHARGED -852,2022-04-30,30810.30608675105,429,Emergency,2022-05-25,Normal,852,315,3,27,,,,DISCHARGED -853,2019-10-04,9766.823867104662,133,Emergency,2019-10-12,Abnormal,853,177,4,29,,,,DISCHARGED -854,2019-05-18,36594.910736133126,453,Elective,2019-05-27,Normal,854,27,1,1,,,,DISCHARGED -855,2021-11-05,30615.00910167529,332,Emergency,2021-12-05,Inconclusive,855,219,3,11,,,,DISCHARGED -856,2020-04-08,42871.49405310083,374,Elective,2020-05-01,Normal,856,356,4,15,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -857,2022-05-19,43266.509988288686,435,Elective,2022-06-06,Abnormal,857,40,4,18,,,,DISCHARGED -859,2023-05-03,14317.380703337723,186,Urgent,2023-05-23,Normal,859,227,0,1,,,,DISCHARGED -860,2023-09-09,43128.45216346048,495,Emergency,2023-10-01,Normal,860,191,1,16,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -861,2019-09-18,43281.86685234736,452,Urgent,2019-10-05,Abnormal,861,410,4,13,,,,DISCHARGED -862,2021-03-12,22223.745822063414,118,Emergency,2021-03-29,Inconclusive,862,446,4,23,,,,DISCHARGED -863,2021-06-06,16817.144711016495,228,Emergency,2021-07-06,Abnormal,863,144,3,27,,,,DISCHARGED -863,2018-11-21,20367.622838115523,287,Urgent,2018-12-04,Inconclusive,1257,200,0,15,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -863,2020-04-07,2378.1039321950675,473,Emergency,2020-04-13,Inconclusive,1497,416,2,4,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -863,2022-02-24,12041.40099992239,117,Elective,2022-03-22,Abnormal,3367,211,0,9,,,,DISCHARGED -864,2021-09-05,34122.433884829334,120,Emergency,2021-09-19,Normal,864,460,2,16,,,,DISCHARGED -865,2022-07-07,25511.207481400503,348,Elective,2022-08-05,Inconclusive,865,219,1,12,,,,DISCHARGED -866,2020-09-05,37736.47265419371,232,Urgent,2020-10-01,Inconclusive,866,239,1,15,,,,DISCHARGED -867,2019-02-16,32010.07869799625,258,Urgent,2019-03-06,Inconclusive,867,412,4,8,,,,DISCHARGED -868,2022-04-07,42041.61274595943,455,Urgent,2022-04-14,Normal,868,396,1,23,,,,DISCHARGED -869,2023-06-22,37221.71893792978,382,Urgent,2023-07-15,Inconclusive,869,45,4,3,,,,DISCHARGED -869,2020-11-25,19218.478593176973,262,Urgent,2020-12-05,Normal,961,34,0,23,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -870,2021-04-23,25159.923894608342,233,Elective,2021-05-22,Abnormal,870,252,1,28,,,,DISCHARGED -871,2020-04-06,27165.33484701917,215,Emergency,2020-04-26,Normal,871,389,0,27,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -872,2023-03-31,49401.13272733071,263,Emergency,2023-04-02,Inconclusive,872,81,0,28,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -873,2021-07-04,24982.046872796636,475,Urgent,2021-07-10,Normal,873,370,1,25,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -874,2023-09-24,4861.598349460129,483,Emergency,2023-10-14,Normal,874,255,0,15,,,,DISCHARGED -875,2019-01-14,39645.26780450172,277,Emergency,2019-02-07,Normal,875,196,1,22,,,,DISCHARGED -875,2020-10-06,7811.272407607505,424,Urgent,2020-10-20,Abnormal,3345,302,1,26,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -876,2021-03-13,10776.4006344024,430,Emergency,2021-04-07,Normal,876,408,1,10,,,,DISCHARGED -877,2022-12-02,15731.156626312792,340,Emergency,2022-12-07,Normal,877,449,2,6,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -878,2019-10-02,38598.05972204022,120,Emergency,2019-10-10,Inconclusive,878,9,0,16,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -879,2023-06-03,41324.84835503696,132,Urgent,2023-06-07,Normal,879,311,3,21,,,,DISCHARGED -880,2021-11-25,24578.1849883086,437,Emergency,2021-12-16,Normal,880,285,1,12,,,,DISCHARGED -880,2021-12-21,38942.641928085446,322,Emergency,2022-01-03,Inconclusive,5393,241,0,3,,,,DISCHARGED -881,2020-05-05,36750.88798882281,457,Elective,2020-06-03,Inconclusive,881,250,4,13,,,,DISCHARGED -882,2023-10-02,9305.999962141696,332,Elective,,Normal,882,364,1,9,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,OPEN -883,2018-11-14,39472.19375652928,337,Elective,2018-11-25,Inconclusive,883,4,1,9,,,,DISCHARGED -884,2021-07-01,21707.77774066421,380,Urgent,2021-07-27,Abnormal,884,118,3,9,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -885,2021-06-15,23549.230665817217,398,Urgent,2021-07-06,Abnormal,885,288,2,26,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -886,2023-08-18,17745.867166260814,312,Emergency,2023-08-20,Inconclusive,886,373,2,11,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -887,2019-11-01,36443.7655273581,497,Emergency,2019-11-06,Normal,887,64,1,1,,,,DISCHARGED -888,2021-04-17,30101.679007294177,269,Urgent,2021-05-03,Inconclusive,888,145,0,25,,,,DISCHARGED -889,2019-06-26,25974.55282800295,317,Elective,2019-07-05,Inconclusive,889,223,4,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -890,2023-10-10,8381.32835687946,175,Urgent,2023-10-26,Normal,890,238,4,8,,,,DISCHARGED -891,2022-01-04,1897.45540969458,247,Elective,2022-01-21,Normal,891,176,0,28,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -892,2019-04-29,10160.57927857945,236,Emergency,2019-05-24,Inconclusive,892,266,1,4,,,,DISCHARGED -893,2020-04-30,16774.2745145328,255,Emergency,2020-05-14,Inconclusive,893,340,4,7,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -894,2022-11-02,20293.670726972658,247,Urgent,2022-11-19,Abnormal,894,281,2,20,,,,DISCHARGED -895,2019-10-05,5223.958945218635,143,Emergency,2019-10-25,Abnormal,895,62,0,13,,,,DISCHARGED -895,2019-11-28,25172.36391680856,299,Urgent,2019-12-25,Inconclusive,8812,216,3,6,,,,DISCHARGED -896,2021-09-30,39148.113565753534,417,Urgent,2021-10-05,Inconclusive,896,341,1,6,,,,DISCHARGED -897,2021-08-28,31040.18118413378,291,Urgent,2021-09-01,Normal,897,314,0,8,,,,DISCHARGED -898,2020-01-02,18793.673611654864,184,Urgent,2020-01-09,Normal,898,282,4,2,,,,DISCHARGED -899,2020-09-25,26851.736552517534,233,Urgent,2020-10-21,Inconclusive,899,176,1,13,,,,DISCHARGED -900,2020-08-09,16011.956739589308,253,Emergency,2020-08-23,Inconclusive,900,460,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -901,2022-01-19,30711.59869089186,370,Elective,2022-02-17,Abnormal,901,416,1,17,,,,DISCHARGED -902,2020-02-03,39174.53901940646,434,Urgent,2020-02-28,Abnormal,902,97,1,11,,,,DISCHARGED -903,2019-12-14,47813.995206288746,382,Elective,2019-12-29,Inconclusive,903,104,2,21,,,,DISCHARGED -904,2023-01-28,32125.16340235134,170,Urgent,2023-02-21,Abnormal,904,98,2,13,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -905,2022-05-23,5244.507979694919,463,Elective,2022-06-13,Inconclusive,905,384,1,25,,,,DISCHARGED -906,2023-07-16,35954.78656801338,470,Urgent,,Normal,906,404,2,25,,,,OPEN -907,2019-12-30,33571.51657135808,178,Urgent,2020-01-07,Inconclusive,907,495,0,27,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -908,2019-09-20,27603.99620970626,139,Urgent,2019-10-19,Inconclusive,908,310,2,12,,,,DISCHARGED -909,2023-09-05,38216.1304996964,394,Emergency,,Inconclusive,909,5,2,13,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",OPEN -910,2021-10-12,14083.523234672955,443,Urgent,2021-11-03,Inconclusive,910,475,1,8,,,,DISCHARGED -911,2020-06-19,4865.551837410914,386,Elective,2020-06-28,Normal,911,464,0,18,,,,DISCHARGED -912,2023-09-04,41477.44480839696,102,Elective,2023-09-21,Normal,912,196,3,25,,,,DISCHARGED -913,2021-10-23,35830.27002097727,383,Emergency,2021-10-27,Abnormal,913,350,3,1,,,,DISCHARGED -914,2018-11-01,29563.97141899037,232,Urgent,2018-11-05,Normal,914,132,4,10,,,,DISCHARGED -915,2020-08-27,22616.997534497696,195,Emergency,2020-09-21,Abnormal,915,357,2,16,,,,DISCHARGED -916,2019-07-09,32362.671074725786,290,Emergency,2019-07-13,Normal,916,258,2,1,,,,DISCHARGED -917,2020-01-13,10669.98505124486,317,Urgent,2020-02-08,Abnormal,917,436,0,18,,,,DISCHARGED -918,2019-04-05,2936.565609257423,172,Emergency,2019-04-23,Abnormal,918,22,3,6,,,,DISCHARGED -919,2021-03-25,21498.0280853457,193,Emergency,2021-04-18,Abnormal,919,484,4,17,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -919,2021-06-28,38306.006058053696,338,Emergency,2021-07-14,Abnormal,5133,52,0,12,,,,DISCHARGED -920,2020-11-20,42322.8899013448,148,Urgent,2020-11-26,Inconclusive,920,164,2,4,,,,DISCHARGED -921,2023-03-27,3345.578641233508,467,Emergency,2023-04-13,Abnormal,921,201,3,17,,,,DISCHARGED -922,2019-12-05,49142.72430759861,230,Elective,2020-01-04,Inconclusive,922,457,4,22,,,,DISCHARGED -923,2022-01-24,10571.488648119745,316,Emergency,2022-02-04,Inconclusive,923,82,1,25,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -924,2019-09-03,45454.86612459802,146,Emergency,2019-09-14,Inconclusive,924,144,3,23,,,,DISCHARGED -925,2022-10-13,22547.49600417364,491,Emergency,2022-10-21,Inconclusive,925,84,4,23,,,,DISCHARGED -926,2020-01-18,28481.45552991867,216,Urgent,2020-02-17,Inconclusive,926,77,0,28,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -926,2019-08-18,48559.37637880373,160,Emergency,2019-08-19,Inconclusive,9844,456,1,15,,,,DISCHARGED -927,2019-03-05,22508.974337063948,453,Emergency,2019-03-07,Normal,927,365,4,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -928,2019-11-01,5767.5005933531065,126,Emergency,2019-11-04,Normal,928,0,4,7,,,,DISCHARGED -929,2023-07-10,19068.02251914365,269,Elective,2023-07-12,Abnormal,929,50,2,25,,,,DISCHARGED -930,2020-08-12,7878.617814509283,145,Emergency,2020-08-27,Normal,930,172,3,14,,,,DISCHARGED -931,2019-06-20,25286.452650626565,360,Emergency,2019-06-28,Normal,931,204,2,24,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -932,2019-09-14,46304.035954818726,230,Elective,2019-09-25,Normal,932,259,1,0,,,,DISCHARGED -933,2021-11-12,3552.858736293684,345,Elective,2021-11-30,Inconclusive,933,445,4,27,,,,DISCHARGED -935,2021-12-01,47788.8009909394,354,Urgent,2021-12-13,Normal,935,448,2,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -935,2019-12-21,11346.018564147746,315,Emergency,2020-01-10,Abnormal,2538,368,3,29,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -936,2023-02-05,11876.302287752913,399,Urgent,2023-02-11,Abnormal,936,487,1,14,,,,DISCHARGED -937,2021-03-20,40247.68976367777,401,Urgent,2021-03-24,Inconclusive,937,287,0,13,,,,DISCHARGED -938,2022-10-26,47776.28688258328,247,Emergency,2022-11-06,Normal,938,33,2,13,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -939,2021-12-03,28830.111661622268,293,Urgent,2021-12-27,Normal,939,347,1,9,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -940,2020-04-16,32979.14624516548,313,Elective,2020-05-06,Abnormal,940,94,0,1,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -941,2020-03-31,25359.56450450433,468,Emergency,2020-04-13,Inconclusive,941,71,2,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -941,2022-06-05,25953.25397070174,119,Urgent,2022-06-14,Abnormal,7095,38,1,5,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -942,2023-04-21,6651.500496220246,124,Urgent,2023-05-11,Normal,942,153,1,29,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -943,2022-07-25,43965.77871435453,470,Urgent,2022-08-14,Abnormal,943,249,2,16,,,,DISCHARGED -944,2022-04-29,9964.062953370332,375,Emergency,2022-04-30,Normal,944,161,1,4,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -945,2019-10-16,37502.40471040786,449,Emergency,2019-11-03,Abnormal,945,437,4,4,,,,DISCHARGED -946,2021-09-30,28440.88139197424,500,Elective,2021-10-26,Inconclusive,946,117,2,14,,,,DISCHARGED -947,2020-01-11,18225.08407736348,422,Urgent,2020-01-26,Abnormal,947,258,1,14,,,,DISCHARGED -948,2023-08-18,47902.6238348975,314,Emergency,,Normal,948,378,0,19,,,,OPEN -949,2022-08-21,11762.22363373898,237,Elective,2022-09-13,Abnormal,949,305,0,10,,,,DISCHARGED -950,2021-11-25,11272.087766056598,349,Urgent,2021-12-04,Normal,950,267,4,4,,,,DISCHARGED -951,2018-12-21,26589.43327035366,443,Emergency,2018-12-26,Normal,951,448,2,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -952,2021-03-29,44765.71675128714,437,Elective,2021-04-02,Abnormal,952,53,1,0,,,,DISCHARGED -953,2021-06-09,30217.25113277229,295,Emergency,2021-06-28,Normal,953,235,1,10,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -954,2021-11-25,12617.485301244877,408,Emergency,2021-12-18,Abnormal,954,388,0,10,,,,DISCHARGED -955,2020-12-06,42052.52487859687,308,Elective,2021-01-05,Normal,955,477,4,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -956,2020-12-22,49125.15774544177,430,Elective,2021-01-02,Inconclusive,956,221,0,22,,,,DISCHARGED -956,2021-05-17,22623.172376866787,484,Urgent,2021-05-20,Inconclusive,3188,250,0,7,,,,DISCHARGED -957,2020-04-01,17704.741580046102,127,Emergency,2020-04-22,Abnormal,957,312,4,1,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -958,2022-08-25,39459.43626937456,188,Emergency,2022-09-17,Abnormal,958,400,2,14,,,,DISCHARGED -959,2021-06-01,6897.100320164001,164,Emergency,2021-06-24,Abnormal,959,111,1,22,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -960,2021-10-23,33283.28469600307,257,Elective,2021-11-06,Normal,960,254,2,21,,,,DISCHARGED -962,2019-06-15,14267.909879475064,159,Urgent,2019-07-04,Normal,962,302,3,8,,,,DISCHARGED -963,2019-03-19,11289.8475918743,481,Urgent,2019-04-03,Normal,963,406,3,14,,,,DISCHARGED -964,2022-09-30,49565.02133019294,125,Urgent,2022-10-18,Abnormal,964,206,3,7,,,,DISCHARGED -965,2020-10-22,9932.191489694784,135,Emergency,2020-11-07,Inconclusive,965,228,4,29,,,,DISCHARGED -966,2020-10-17,2737.6761092319102,370,Urgent,2020-10-23,Normal,966,340,0,15,,,,DISCHARGED -967,2023-05-18,39737.3294795954,144,Emergency,2023-06-03,Abnormal,967,397,2,26,Frequent headaches and light sensitivity,"Identify triggers and recommend lifestyle changes, prescribe pain relievers, and explore preventive medications.","G43.9 - Migraine, unspecified",DISCHARGED -968,2019-07-13,32465.12851802168,500,Urgent,2019-07-26,Normal,968,65,1,13,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -969,2023-08-01,49666.60565020357,251,Emergency,2023-08-11,Abnormal,969,74,3,14,,,,DISCHARGED -970,2021-10-12,3975.074524601444,310,Emergency,2021-11-03,Normal,970,434,2,19,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -971,2022-09-29,35582.755821957675,473,Emergency,2022-10-26,Abnormal,971,102,3,29,,,,DISCHARGED -971,2023-06-17,43440.69354324734,158,Elective,2023-06-22,Normal,5309,421,3,12,,,,DISCHARGED -972,2023-07-03,22722.00032027516,232,Elective,,Inconclusive,972,191,1,8,,,,OPEN -973,2021-07-19,37662.66962013407,308,Urgent,2021-08-01,Abnormal,973,251,4,0,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -974,2021-04-10,10035.332962985063,489,Emergency,2021-04-27,Normal,974,225,0,26,,,,DISCHARGED -975,2020-07-12,26153.389223171765,199,Elective,2020-07-26,Normal,975,293,4,5,,,,DISCHARGED -976,2022-01-31,3882.070120919608,284,Elective,2022-02-02,Abnormal,976,305,2,7,,,,DISCHARGED -977,2020-03-07,39221.77786876479,304,Elective,2020-03-20,Abnormal,977,97,4,26,,,,DISCHARGED -978,2023-09-28,20707.31963302498,261,Elective,2023-10-08,Normal,978,337,2,26,,,,DISCHARGED -979,2020-02-02,47443.9975967796,210,Elective,2020-02-26,Normal,979,285,2,19,,,,DISCHARGED -980,2022-08-15,34241.75892783715,262,Urgent,2022-09-02,Normal,980,334,0,17,,,,DISCHARGED -981,2018-11-17,31097.836432076627,285,Emergency,2018-12-08,Abnormal,981,346,1,26,,,,DISCHARGED -982,2018-12-04,18290.27653676672,141,Urgent,2018-12-15,Abnormal,982,434,0,17,,,,DISCHARGED -983,2020-10-12,42685.20052126965,333,Urgent,2020-10-22,Normal,983,446,4,25,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -984,2021-11-11,16471.376988443008,413,Urgent,2021-12-04,Normal,984,481,2,16,,,,DISCHARGED -985,2019-10-25,6982.392907502469,157,Emergency,2019-11-08,Abnormal,985,307,3,20,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -986,2021-10-07,13650.48758976079,465,Emergency,2021-11-03,Inconclusive,986,248,3,15,,,,DISCHARGED -987,2019-06-04,37771.75899331921,169,Elective,2019-06-12,Normal,987,165,2,12,,,,DISCHARGED -988,2019-03-02,44947.469977418456,155,Urgent,2019-03-17,Abnormal,988,480,0,21,,,,DISCHARGED -989,2019-10-13,49910.077615104696,152,Elective,2019-10-24,Inconclusive,989,471,1,3,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -990,2021-01-09,36183.54547596295,343,Urgent,2021-01-24,Inconclusive,990,334,0,3,,,,DISCHARGED -990,2020-03-24,25848.39479521417,428,Elective,2020-04-17,Abnormal,6426,29,2,20,,,,DISCHARGED -991,2020-11-22,12248.576952205853,178,Urgent,2020-11-27,Inconclusive,991,246,2,13,,,,DISCHARGED -992,2019-04-12,6852.501054774294,159,Elective,2019-04-22,Normal,992,105,1,4,,,,DISCHARGED -993,2019-07-24,13393.83069877322,387,Urgent,2019-08-19,Normal,993,50,4,15,,,,DISCHARGED -994,2020-02-04,47549.05086457916,418,Emergency,2020-02-06,Inconclusive,994,80,4,13,,,,DISCHARGED -995,2020-02-02,21293.018508273275,487,Urgent,2020-02-22,Abnormal,995,132,1,29,,,,DISCHARGED -996,2023-04-22,46888.66110954936,266,Urgent,2023-05-20,Normal,996,284,4,13,,,,DISCHARGED -997,2019-10-08,46323.269465520345,142,Emergency,2019-10-18,Abnormal,997,387,3,13,,,,DISCHARGED -998,2021-01-12,47792.23068731463,338,Urgent,2021-02-02,Abnormal,998,137,4,24,,,,DISCHARGED -999,2022-06-14,16530.72821577357,147,Elective,2022-06-27,Inconclusive,999,183,4,23,,,,DISCHARGED -1000,2022-10-31,16003.554363360294,448,Urgent,2022-11-04,Inconclusive,1000,400,4,24,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -1001,2021-03-01,38471.52971748169,123,Urgent,2021-03-16,Normal,1001,329,3,28,,,,DISCHARGED -1002,2020-07-17,19121.37769183429,391,Urgent,2020-08-08,Normal,1002,272,4,13,,,,DISCHARGED -1002,2021-04-17,46258.71307876149,373,Urgent,2021-04-27,Normal,7788,339,3,18,,,,DISCHARGED -1002,2019-12-29,24471.780221569203,453,Urgent,2020-01-13,Inconclusive,7956,471,1,29,,,,DISCHARGED -1003,2020-08-16,17214.85030012984,249,Emergency,2020-09-07,Inconclusive,1003,68,0,2,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1003,2022-11-07,39549.44744884395,185,Urgent,2022-11-11,Inconclusive,9728,33,1,16,,,,DISCHARGED -1004,2021-06-13,30395.38016403744,323,Elective,2021-06-16,Normal,1004,261,0,13,,,,DISCHARGED -1005,2023-03-24,12583.37724666549,138,Urgent,,Normal,1005,52,1,9,,,,OPEN -1005,2021-04-02,24645.5888707156,362,Urgent,2021-04-11,Normal,9741,449,0,12,,,,DISCHARGED -1006,2019-11-04,29672.584690197866,344,Emergency,2019-12-03,Abnormal,1006,204,0,21,,,,DISCHARGED -1007,2022-03-19,29093.794921313485,456,Urgent,2022-04-09,Normal,1007,125,2,3,,,,DISCHARGED -1008,2021-10-01,5327.951953059953,106,Elective,2021-10-03,Abnormal,1008,234,0,10,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1009,2019-11-19,30883.54910563144,179,Urgent,2019-11-20,Inconclusive,1009,42,0,14,,,,DISCHARGED -1010,2020-02-29,44183.98783342684,442,Emergency,2020-03-29,Inconclusive,1010,239,2,14,,,,DISCHARGED -1011,2019-09-06,32279.41242028469,204,Urgent,2019-10-02,Normal,1011,458,4,29,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1012,2019-03-08,14443.89639254573,464,Urgent,2019-03-11,Inconclusive,1012,370,4,23,,,,DISCHARGED -1013,2019-03-03,46044.10392192208,283,Elective,2019-03-28,Normal,1013,110,2,1,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1014,2020-08-10,38551.13450179261,230,Elective,2020-08-21,Inconclusive,1014,248,3,10,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1015,2023-05-10,37858.7038223006,469,Urgent,2023-05-30,Normal,1015,150,0,1,,,,DISCHARGED -1016,2022-04-01,15579.67656848146,462,Urgent,2022-04-06,Inconclusive,1016,182,0,22,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1017,2022-08-14,1427.2402451149244,331,Elective,2022-08-23,Inconclusive,1017,335,2,28,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1018,2023-08-11,13150.658308907794,451,Elective,2023-08-14,Normal,1018,94,2,4,,,,DISCHARGED -1019,2022-11-26,12276.789807472896,156,Urgent,2022-12-14,Inconclusive,1019,458,3,12,,,,DISCHARGED -1020,2023-08-21,13066.624159091592,174,Emergency,,Normal,1020,373,4,0,,,,OPEN -1021,2023-01-24,45391.450019714095,368,Urgent,,Normal,1021,399,1,6,,,,OPEN -1022,2023-02-06,13280.426895480943,462,Elective,2023-02-17,Abnormal,1022,7,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -1023,2021-09-20,18317.992713206717,467,Urgent,2021-10-14,Abnormal,1023,387,0,9,,,,DISCHARGED -1024,2023-06-03,44578.6597471159,253,Urgent,2023-06-26,Normal,1024,359,2,5,,,,DISCHARGED -1025,2023-01-01,29716.842497167323,230,Elective,,Normal,1025,387,3,19,,,,OPEN -1026,2020-11-20,44421.37049001882,153,Urgent,2020-11-21,Abnormal,1026,183,4,11,,,,DISCHARGED -1027,2023-06-12,20528.41951121232,400,Urgent,,Normal,1027,280,3,12,,,,OPEN -1028,2021-10-02,25161.661687536573,136,Emergency,2021-10-23,Abnormal,1028,194,4,23,,,,DISCHARGED -1028,2020-01-23,27722.667560162197,299,Elective,2020-02-09,Abnormal,5837,351,0,27,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1028,2019-05-04,8364.857568959138,375,Elective,2019-05-14,Inconclusive,6053,194,1,10,,,,DISCHARGED -1029,2019-01-20,20452.85316313485,431,Emergency,2019-02-16,Normal,1029,154,3,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -1030,2019-08-30,4091.350555563202,257,Emergency,2019-09-11,Abnormal,1030,92,3,1,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -1030,2023-07-21,14486.055387009932,281,Urgent,,Normal,4099,159,1,15,,,,OPEN -1030,2018-12-03,37918.21675397432,112,Urgent,2018-12-13,Normal,9281,433,3,1,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1031,2023-01-25,38877.33284293997,366,Urgent,,Normal,1031,60,3,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -1032,2019-01-01,24469.18264098984,222,Elective,2019-01-27,Normal,1032,121,4,5,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -1033,2021-08-24,1776.283726777765,482,Elective,2021-09-06,Abnormal,1033,50,4,0,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -1034,2021-01-22,10664.308196736294,440,Emergency,2021-02-19,Normal,1034,402,1,10,,,,DISCHARGED -1035,2022-07-17,2226.816011507629,223,Emergency,2022-08-13,Abnormal,1035,276,0,17,,,,DISCHARGED -1036,2021-10-17,44774.41192264778,404,Elective,2021-11-06,Normal,1036,4,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1037,2021-09-01,23738.851128162096,468,Urgent,2021-09-05,Abnormal,1037,465,0,17,,,,DISCHARGED -1038,2019-01-22,36909.15835854595,262,Emergency,2019-01-29,Inconclusive,1038,91,1,29,,,,DISCHARGED -1039,2019-04-07,9804.144829260367,157,Elective,2019-05-05,Normal,1039,169,1,27,,,,DISCHARGED -1039,2021-10-16,17558.771795464298,290,Urgent,2021-10-17,Abnormal,3293,316,4,0,,,,DISCHARGED -1040,2023-07-22,11277.168487143856,395,Elective,2023-07-26,Inconclusive,1040,21,3,18,,,,DISCHARGED -1041,2020-02-11,38109.40028920199,344,Emergency,2020-02-13,Normal,1041,404,2,15,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1042,2022-03-16,37537.0934864418,115,Emergency,2022-04-01,Abnormal,1042,325,1,25,,,,DISCHARGED -1043,2022-10-01,32755.08364614499,498,Emergency,2022-10-05,Normal,1043,0,3,6,,,,DISCHARGED -1044,2023-10-09,12639.613943913071,129,Urgent,,Inconclusive,1044,132,0,14,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -1045,2019-09-21,9533.901075690825,385,Elective,2019-09-23,Inconclusive,1045,232,4,28,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1046,2021-09-16,32026.06579071749,480,Elective,2021-10-06,Abnormal,1046,11,0,0,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -1047,2019-11-15,45667.404262042925,187,Emergency,2019-11-27,Inconclusive,1047,345,1,22,,,,DISCHARGED -1048,2020-05-19,49828.86971328996,451,Urgent,2020-06-09,Normal,1048,45,1,20,,,,DISCHARGED -1049,2023-08-14,29466.305618018185,104,Urgent,2023-08-20,Normal,1049,33,0,8,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1050,2021-08-16,13253.460095166196,106,Elective,2021-09-12,Normal,1050,432,1,1,,,,DISCHARGED -1052,2022-06-20,13725.585572467988,218,Emergency,2022-06-28,Normal,1052,77,3,16,,,,DISCHARGED -1053,2020-12-30,47970.554912473664,389,Urgent,2021-01-25,Abnormal,1053,217,1,24,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1054,2020-09-28,16874.34385786162,149,Emergency,2020-10-10,Inconclusive,1054,300,4,23,,,,DISCHARGED -1055,2022-11-23,3980.950877472487,472,Emergency,2022-12-19,Abnormal,1055,410,3,9,,,,DISCHARGED -1056,2023-06-13,30279.07586104645,419,Urgent,,Abnormal,1056,72,2,5,,,,OPEN -1057,2021-11-21,48363.46949168556,317,Emergency,2021-11-25,Abnormal,1057,281,1,4,,,,DISCHARGED -1058,2021-08-30,9142.466559530152,437,Emergency,2021-09-04,Abnormal,1058,248,1,7,,,,DISCHARGED -1059,2021-06-15,25761.41803889061,282,Urgent,2021-06-26,Abnormal,1059,46,4,7,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1060,2019-02-26,10540.626324518766,319,Urgent,2019-02-27,Abnormal,1060,120,4,29,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1061,2023-07-22,30243.63012895959,449,Elective,2023-08-08,Normal,1061,213,0,4,,,,DISCHARGED -1062,2023-05-04,8156.690305870477,410,Urgent,,Abnormal,1062,238,0,11,,,,OPEN -1063,2021-12-25,24424.22559421633,264,Emergency,2022-01-17,Abnormal,1063,55,0,6,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -1064,2018-12-22,35172.5191017441,343,Urgent,2019-01-02,Abnormal,1064,349,4,12,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1065,2023-02-10,41657.17672978149,347,Urgent,2023-03-01,Inconclusive,1065,106,0,12,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1066,2020-08-17,44920.1547233997,467,Elective,2020-09-14,Abnormal,1066,318,0,16,,,,DISCHARGED -1067,2020-03-11,32077.001406178097,198,Elective,2020-04-06,Inconclusive,1067,47,2,3,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1068,2019-09-26,25381.415091573832,396,Elective,2019-10-20,Abnormal,1068,60,0,17,,,,DISCHARGED -1068,2021-07-19,28628.99097100425,407,Urgent,2021-07-26,Abnormal,3705,336,1,9,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1069,2021-11-04,46898.20096350798,445,Elective,2021-11-23,Inconclusive,1069,25,4,2,,,,DISCHARGED -1070,2020-02-07,46575.69231142742,249,Emergency,2020-03-02,Normal,1070,291,3,11,,,,DISCHARGED -1071,2020-03-28,43951.99192963962,151,Urgent,2020-03-29,Inconclusive,1071,256,2,0,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -1071,2022-08-09,23904.01991837312,299,Urgent,2022-08-31,Normal,2080,7,4,26,,,,DISCHARGED -1072,2022-02-10,46193.03652568125,290,Elective,2022-02-16,Abnormal,1072,112,4,10,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -1073,2022-01-06,37450.27203193296,348,Elective,2022-01-26,Normal,1073,354,1,17,,,,DISCHARGED -1074,2019-03-06,14720.929669349263,462,Emergency,2019-03-14,Inconclusive,1074,252,0,12,,,,DISCHARGED -1075,2023-04-18,8632.347576091594,482,Emergency,,Abnormal,1075,179,1,16,,,,OPEN -1076,2020-07-24,36803.18173741968,182,Urgent,2020-07-31,Abnormal,1076,206,0,7,,,,DISCHARGED -1077,2020-10-01,47733.26472412944,369,Emergency,2020-10-14,Normal,1077,302,0,19,,,,DISCHARGED -1077,2020-04-03,22908.642678849417,292,Urgent,2020-04-14,Normal,2343,126,4,18,,,,DISCHARGED -1077,2022-02-12,29685.310988178346,418,Urgent,2022-02-13,Inconclusive,9571,55,0,16,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -1078,2019-07-11,25099.690427998063,176,Elective,2019-08-02,Abnormal,1078,213,2,1,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1079,2023-10-19,12447.996620982372,202,Elective,,Inconclusive,1079,13,2,2,,,,OPEN -1080,2019-05-16,49267.52595702954,344,Emergency,2019-06-03,Abnormal,1080,473,2,2,,,,DISCHARGED -1081,2023-05-22,27719.14087727544,452,Urgent,,Abnormal,1081,27,4,5,,,,OPEN -1082,2022-03-15,33080.820074953386,455,Urgent,2022-03-19,Normal,1082,470,1,9,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -1083,2019-05-27,48609.473182639726,283,Emergency,2019-06-08,Normal,1083,77,3,23,,,,DISCHARGED -1085,2019-06-13,23958.47661600233,129,Emergency,2019-06-20,Abnormal,1085,215,0,21,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -1086,2020-01-07,19382.086973287744,134,Urgent,2020-01-28,Inconclusive,1086,385,3,17,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1087,2022-11-04,14226.518027129663,472,Elective,2022-11-13,Inconclusive,1087,364,1,17,,,,DISCHARGED -1088,2022-11-03,26674.5612548506,317,Urgent,2022-11-19,Abnormal,1088,153,1,13,,,,DISCHARGED -1089,2023-04-16,31470.56944624252,392,Elective,2023-05-08,Abnormal,1089,13,4,15,,,,DISCHARGED -1090,2021-06-04,45081.410725158734,287,Elective,2021-06-15,Inconclusive,1090,186,2,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1091,2019-08-28,40959.45695498407,313,Emergency,2019-09-14,Abnormal,1091,311,2,0,,,,DISCHARGED -1092,2022-11-28,24230.372278766685,307,Urgent,2022-12-11,Inconclusive,1092,370,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -1093,2018-11-05,16694.51505391854,281,Emergency,2018-12-03,Abnormal,1093,6,4,22,,,,DISCHARGED -1094,2021-05-10,31626.636262441792,149,Elective,2021-05-24,Normal,1094,2,4,24,,,,DISCHARGED -1095,2020-12-25,12335.809240705576,125,Emergency,2021-01-24,Abnormal,1095,110,0,4,,,,DISCHARGED -1096,2020-10-05,2987.5399188342394,382,Emergency,2020-10-17,Inconclusive,1096,406,2,26,,,,DISCHARGED -1097,2018-12-05,20832.09607910485,255,Urgent,2018-12-06,Inconclusive,1097,237,1,0,,,,DISCHARGED -1098,2019-01-02,39624.18294525288,396,Urgent,2019-01-07,Inconclusive,1098,362,3,20,,,,DISCHARGED -1099,2021-11-12,36578.7696378829,110,Elective,2021-11-18,Inconclusive,1099,238,2,26,,,,DISCHARGED -1099,2020-06-07,36414.4418703498,308,Elective,2020-07-01,Normal,2992,492,0,16,,,,DISCHARGED -1099,2020-01-19,41992.04300672076,363,Emergency,2020-01-26,Inconclusive,8021,273,4,9,,,,DISCHARGED -1099,2021-10-29,28768.908112164,410,Elective,2021-11-01,Inconclusive,9009,293,1,11,,,,DISCHARGED -1100,2023-04-10,34658.16021565173,138,Elective,2023-04-17,Abnormal,1100,226,2,24,,,,DISCHARGED -1101,2019-03-24,7244.795094079022,373,Urgent,2019-04-10,Inconclusive,1101,370,3,19,,,,DISCHARGED -1102,2021-12-09,39957.22771485021,364,Elective,2021-12-23,Inconclusive,1102,14,0,24,,,,DISCHARGED -1103,2023-07-10,21935.7261253434,422,Emergency,,Inconclusive,1103,191,0,1,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -1104,2021-01-12,49745.81197663535,301,Elective,2021-02-08,Normal,1104,472,2,22,,,,DISCHARGED -1105,2023-01-15,31022.66273851671,383,Urgent,2023-01-21,Inconclusive,1105,118,3,15,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1105,2021-03-06,11184.769841216035,394,Emergency,2021-03-28,Inconclusive,4982,484,0,14,,,,DISCHARGED -1106,2021-11-22,2501.263990397233,207,Elective,2021-11-25,Abnormal,1106,27,1,27,,,,DISCHARGED -1107,2021-01-30,7624.264538383552,188,Elective,2021-02-02,Abnormal,1107,201,0,12,,,,DISCHARGED -1108,2022-08-13,21308.016492603358,154,Elective,2022-08-20,Inconclusive,1108,38,3,17,,,,DISCHARGED -1109,2021-01-16,29610.20697209234,173,Emergency,2021-01-19,Normal,1109,440,4,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1110,2020-03-13,12858.329680820654,358,Elective,2020-03-19,Inconclusive,1110,272,4,19,,,,DISCHARGED -1111,2020-03-03,29766.39782791405,371,Elective,2020-03-09,Inconclusive,1111,230,2,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1112,2021-01-12,46610.82527232745,426,Urgent,2021-02-02,Inconclusive,1112,85,3,13,,,,DISCHARGED -1113,2021-07-30,32756.384594698724,358,Elective,2021-08-24,Inconclusive,1113,473,0,17,,,,DISCHARGED -1114,2020-05-14,12185.838007240294,491,Elective,2020-05-27,Normal,1114,125,0,1,,,,DISCHARGED -1115,2019-08-29,11914.798281312733,494,Elective,2019-09-07,Abnormal,1115,299,4,1,,,,DISCHARGED -1115,2023-09-01,29792.12675672413,205,Urgent,2023-09-29,Inconclusive,8445,24,4,2,,,,DISCHARGED -1116,2020-02-10,29644.047440000428,177,Urgent,2020-03-11,Inconclusive,1116,144,1,4,,,,DISCHARGED -1117,2022-03-18,25598.76277485741,358,Emergency,2022-04-04,Normal,1117,12,4,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1118,2019-01-17,18241.188379800034,289,Emergency,2019-02-06,Normal,1118,211,1,15,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1119,2020-02-07,9714.900553776992,192,Elective,2020-02-27,Inconclusive,1119,24,0,21,,,,DISCHARGED -1119,2021-04-02,16013.55212148886,411,Elective,2021-04-05,Normal,6296,67,1,14,,,,DISCHARGED -1120,2019-10-01,21455.183704736453,181,Elective,2019-10-30,Normal,1120,393,1,11,,,,DISCHARGED -1120,2023-06-04,25989.15288712472,219,Elective,2023-06-08,Abnormal,6509,66,2,29,,,,DISCHARGED -1121,2022-11-22,35612.34900248359,108,Emergency,2022-12-22,Abnormal,1121,232,4,8,,,,DISCHARGED -1122,2018-12-22,2747.307506827188,471,Urgent,2019-01-02,Abnormal,1122,108,1,25,,,,DISCHARGED -1123,2020-04-24,31326.014175631877,495,Elective,2020-04-29,Normal,1123,145,0,13,,,,DISCHARGED -1124,2019-01-13,16580.587544365553,277,Urgent,2019-01-28,Abnormal,1124,110,3,28,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -1125,2023-01-04,47289.62818797012,222,Elective,2023-01-25,Abnormal,1125,227,1,20,,,,DISCHARGED -1126,2021-12-15,48662.63619695368,445,Urgent,2022-01-14,Inconclusive,1126,110,4,15,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1127,2021-09-20,15534.477911539512,151,Elective,2021-10-14,Normal,1127,469,2,10,,,,DISCHARGED -1128,2019-03-23,40822.83972098153,158,Emergency,2019-03-28,Abnormal,1128,33,0,5,,,,DISCHARGED -1129,2019-01-29,13911.047059608863,284,Emergency,2019-02-27,Inconclusive,1129,110,2,9,,,,DISCHARGED -1130,2022-07-27,14043.472437604536,271,Urgent,2022-07-28,Abnormal,1130,263,3,27,,,,DISCHARGED -1131,2023-04-14,33590.344357905844,479,Elective,2023-05-13,Abnormal,1131,423,1,7,,,,DISCHARGED -1132,2022-10-01,1431.34717755332,320,Emergency,2022-10-24,Normal,1132,368,1,15,,,,DISCHARGED -1133,2019-05-14,11831.63541715834,260,Elective,2019-06-01,Abnormal,1133,235,4,2,,,,DISCHARGED -1134,2023-02-09,17234.199011547676,225,Urgent,2023-02-11,Normal,1134,82,1,1,,,,DISCHARGED -1135,2019-05-02,25703.085582405663,253,Emergency,2019-05-14,Normal,1135,41,0,15,,,,DISCHARGED -1136,2022-07-28,8755.079539022758,221,Urgent,2022-07-29,Normal,1136,424,3,18,,,,DISCHARGED -1137,2022-02-05,32719.902818172577,460,Elective,2022-02-27,Normal,1137,100,2,29,,,,DISCHARGED -1138,2022-06-21,37487.55650359803,224,Elective,2022-07-19,Inconclusive,1138,5,3,8,,,,DISCHARGED -1139,2022-05-30,14141.449775284633,306,Elective,2022-06-19,Inconclusive,1139,179,1,15,,,,DISCHARGED -1140,2020-03-18,4218.245750381788,414,Elective,2020-04-08,Abnormal,1140,281,2,21,,,,DISCHARGED -1141,2023-05-16,49113.45390922478,350,Emergency,2023-06-14,Inconclusive,1141,319,4,25,,,,DISCHARGED -1142,2021-06-02,45128.64225953589,157,Elective,2021-06-18,Abnormal,1142,225,3,27,,,,DISCHARGED -1142,2018-12-17,38191.59485354582,461,Urgent,2019-01-04,Abnormal,3581,442,2,3,,,,DISCHARGED -1143,2020-09-18,4217.629177861016,312,Urgent,2020-10-12,Inconclusive,1143,439,2,9,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1144,2019-05-05,17346.7018010093,130,Urgent,2019-05-26,Inconclusive,1144,314,2,18,,,,DISCHARGED -1145,2023-01-23,2504.6657409856825,345,Emergency,2023-02-06,Inconclusive,1145,364,0,12,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -1146,2021-06-06,36225.04466984435,456,Urgent,2021-06-10,Normal,1146,453,3,17,,,,DISCHARGED -1147,2021-10-04,18013.00440749451,393,Urgent,2021-10-25,Abnormal,1147,228,2,14,,,,DISCHARGED -1148,2018-12-01,1776.0583134019848,119,Elective,2018-12-18,Normal,1148,376,3,29,,,,DISCHARGED -1149,2020-06-19,20608.23506557948,358,Urgent,2020-07-10,Abnormal,1149,288,2,3,,,,DISCHARGED -1150,2023-02-02,4057.9869338217113,436,Emergency,2023-02-23,Normal,1150,436,4,8,,,,DISCHARGED -1151,2022-08-09,33228.59669417098,326,Emergency,2022-08-27,Inconclusive,1151,149,4,3,,,,DISCHARGED -1152,2019-10-03,33962.70062173823,493,Urgent,2019-10-04,Normal,1152,276,4,28,,,,DISCHARGED -1153,2021-09-24,22699.013322843228,133,Urgent,2021-10-11,Abnormal,1153,197,1,15,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -1154,2023-10-15,30355.58692744464,465,Urgent,2023-10-25,Inconclusive,1154,69,2,27,,,,DISCHARGED -1155,2022-06-27,44116.83924275791,352,Urgent,2022-07-16,Normal,1155,111,1,20,,,,DISCHARGED -1156,2023-04-24,3801.621321126084,207,Emergency,,Abnormal,1156,3,3,14,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -1157,2018-11-20,20679.393198854417,462,Emergency,2018-11-27,Abnormal,1157,349,1,23,,,,DISCHARGED -1158,2020-03-30,15819.015810341827,336,Elective,2020-04-28,Normal,1158,330,3,1,,,,DISCHARGED -1159,2021-04-28,4586.164218134851,138,Emergency,2021-05-01,Abnormal,1159,445,3,27,,,,DISCHARGED -1160,2022-05-17,19260.10883332154,384,Urgent,2022-05-20,Inconclusive,1160,317,3,26,,,,DISCHARGED -1161,2023-07-03,31763.598391234664,390,Elective,,Normal,1161,349,1,13,,,,OPEN -1162,2019-01-20,26004.681469192798,144,Emergency,2019-02-03,Normal,1162,94,2,2,,,,DISCHARGED -1162,2023-08-26,25423.86355443825,194,Emergency,2023-09-15,Normal,4235,151,1,21,,,,DISCHARGED -1163,2021-04-04,20701.251937371657,424,Emergency,2021-04-07,Normal,1163,310,2,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1164,2019-07-09,43953.82009825218,344,Elective,2019-07-24,Normal,1164,136,2,22,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1165,2019-05-18,41091.16086805388,236,Emergency,2019-05-28,Abnormal,1165,246,3,3,,,,DISCHARGED -1166,2019-03-30,15338.723337240062,294,Elective,2019-04-15,Normal,1166,386,1,29,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1167,2023-06-24,33664.1720915906,406,Urgent,,Abnormal,1167,242,2,0,,,,OPEN -1168,2021-11-23,42956.34212029266,373,Elective,2021-12-10,Inconclusive,1168,30,4,22,,,,DISCHARGED -1168,2021-03-06,17879.64869722793,188,Elective,2021-03-09,Normal,6204,39,2,27,,,,DISCHARGED -1169,2020-03-04,43394.57614947869,158,Urgent,2020-03-23,Normal,1169,228,4,8,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1169,2022-02-09,26631.29428026452,406,Elective,2022-02-17,Inconclusive,8988,35,1,16,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -1170,2022-06-30,14654.938259882,446,Elective,2022-07-30,Normal,1170,407,1,13,,,,DISCHARGED -1171,2022-02-05,48526.46284013904,124,Emergency,2022-02-25,Normal,1171,222,1,16,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1172,2019-01-25,8209.733596227736,306,Urgent,2019-02-24,Inconclusive,1172,5,2,0,,,,DISCHARGED -1173,2022-09-28,38661.43020213124,393,Urgent,2022-10-08,Inconclusive,1173,321,0,9,,,,DISCHARGED -1174,2020-11-23,21983.59675363703,408,Emergency,2020-12-19,Abnormal,1174,467,2,22,,,,DISCHARGED -1175,2020-05-26,7438.198774811782,421,Urgent,2020-06-01,Normal,1175,219,2,15,,,,DISCHARGED -1176,2023-05-04,43050.38925496119,159,Elective,2023-05-27,Normal,1176,74,3,26,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -1177,2021-05-25,40800.26104034731,182,Urgent,2021-05-30,Inconclusive,1177,3,3,24,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1178,2023-06-29,23788.44155249145,171,Emergency,2023-07-08,Inconclusive,1178,334,2,18,,,,DISCHARGED -1179,2020-07-02,2329.716838181408,301,Elective,2020-07-14,Abnormal,1179,133,4,23,,,,DISCHARGED -1180,2019-06-05,18322.625425350245,371,Urgent,2019-06-10,Inconclusive,1180,117,3,24,,,,DISCHARGED -1181,2022-02-04,14597.652841025869,385,Emergency,2022-02-23,Normal,1181,368,2,2,,,,DISCHARGED -1182,2022-09-23,13170.475125703775,109,Elective,2022-10-12,Inconclusive,1182,93,0,27,,,,DISCHARGED -1183,2019-06-30,16353.425227300277,385,Elective,2019-07-12,Normal,1183,485,4,11,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -1184,2020-02-29,10161.065595707933,315,Emergency,2020-03-02,Abnormal,1184,434,1,2,,,,DISCHARGED -1184,2020-11-05,15045.975502391975,476,Emergency,2020-12-03,Normal,9030,61,2,14,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1185,2019-01-14,34922.38297085735,214,Elective,2019-02-11,Inconclusive,1185,440,2,16,,,,DISCHARGED -1186,2019-08-17,40388.82742198076,488,Elective,2019-08-31,Abnormal,1186,193,4,17,,,,DISCHARGED -1187,2021-05-17,29050.357961553014,204,Elective,2021-05-21,Normal,1187,334,3,6,,,,DISCHARGED -1188,2023-01-06,18485.08744282802,414,Elective,2023-01-12,Normal,1188,202,3,18,,,,DISCHARGED -1189,2020-05-08,40928.72103454187,220,Urgent,2020-05-21,Inconclusive,1189,391,3,6,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -1190,2023-10-27,16145.513989435149,206,Emergency,,Abnormal,1190,25,1,4,,,,OPEN -1191,2020-03-21,18997.964142483488,490,Elective,2020-04-18,Abnormal,1191,434,4,25,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1192,2020-08-25,33666.10151448994,399,Emergency,2020-09-03,Normal,1192,172,4,7,,,,DISCHARGED -1193,2021-11-19,21273.63857138902,394,Urgent,2021-12-06,Normal,1193,299,3,20,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -1194,2018-11-16,30593.594112356463,307,Elective,2018-11-25,Abnormal,1194,132,3,15,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -1195,2023-10-18,36081.012362831054,268,Emergency,2023-11-16,Normal,1195,325,0,15,,,,DISCHARGED -1196,2020-04-12,48155.10651485851,231,Urgent,2020-04-24,Normal,1196,409,0,18,,,,DISCHARGED -1197,2021-04-24,6082.668147055431,251,Emergency,2021-05-01,Inconclusive,1197,117,2,24,,,,DISCHARGED -1198,2023-03-14,18848.72342535029,386,Urgent,,Inconclusive,1198,323,2,14,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -1199,2020-03-08,33087.17146681565,470,Elective,2020-03-29,Abnormal,1199,274,4,6,,,,DISCHARGED -1199,2023-03-25,33622.46196643783,390,Urgent,2023-03-26,Inconclusive,7488,211,4,4,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1200,2022-01-08,23371.83356117796,119,Urgent,2022-01-23,Normal,1200,224,1,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1201,2022-05-08,30979.10331267826,330,Urgent,2022-05-17,Inconclusive,1201,19,1,10,,,,DISCHARGED -1202,2021-12-06,22143.025098365524,478,Emergency,2021-12-14,Abnormal,1202,112,0,9,,,,DISCHARGED -1203,2021-12-30,29935.023949114915,212,Emergency,2022-01-13,Normal,1203,139,2,24,,,,DISCHARGED -1203,2022-12-14,45342.83358565388,123,Elective,2023-01-12,Abnormal,1676,46,0,20,,,,DISCHARGED -1203,2018-12-24,26840.033335812244,381,Urgent,2019-01-05,Abnormal,2855,0,0,22,,,,DISCHARGED -1203,2021-06-25,17690.804342238753,165,Emergency,2021-07-05,Normal,8553,89,2,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -1204,2021-05-18,24397.050394984235,267,Urgent,2021-06-14,Normal,1204,141,1,8,,,,DISCHARGED -1205,2022-06-08,12449.000455630903,414,Elective,2022-07-07,Inconclusive,1205,319,2,0,,,,DISCHARGED -1206,2021-01-15,1104.5444222297997,226,Elective,2021-02-13,Abnormal,1206,37,3,19,,,,DISCHARGED -1207,2019-11-12,20771.09576182276,245,Urgent,2019-11-29,Inconclusive,1207,292,3,0,,,,DISCHARGED -1207,2018-12-10,28783.157593200434,171,Emergency,2018-12-21,Abnormal,2282,381,3,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1208,2020-05-22,47923.56136113807,126,Emergency,2020-06-02,Normal,1208,138,4,2,,,,DISCHARGED -1209,2019-07-27,16408.96691858919,278,Elective,2019-08-16,Normal,1209,355,1,1,,,,DISCHARGED -1210,2022-08-08,49690.697911435294,421,Emergency,2022-08-15,Normal,1210,332,1,29,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -1211,2020-05-01,4296.00837447991,182,Emergency,2020-05-13,Abnormal,1211,490,4,3,,,,DISCHARGED -1212,2021-08-02,13061.152620069335,425,Elective,2021-08-20,Inconclusive,1212,258,0,26,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1213,2022-06-29,22714.291173502483,206,Urgent,2022-07-11,Abnormal,1213,160,3,18,,,,DISCHARGED -1213,2022-03-06,44814.38625120392,433,Emergency,2022-04-02,Inconclusive,4593,389,3,10,,,,DISCHARGED -1213,2021-07-13,45312.51788790039,430,Emergency,2021-08-04,Abnormal,9478,177,0,4,,,,DISCHARGED -1214,2019-11-18,26194.244322673203,307,Emergency,2019-12-08,Normal,1214,9,2,28,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -1215,2021-03-07,21357.20858686988,321,Elective,2021-03-08,Abnormal,1215,260,2,23,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -1216,2022-07-22,23936.09270790532,377,Emergency,2022-08-13,Inconclusive,1216,406,1,9,,,,DISCHARGED -1217,2023-09-23,32406.750771743336,320,Elective,2023-10-14,Inconclusive,1217,137,4,23,,,,DISCHARGED -1218,2021-05-07,14524.707446284056,116,Elective,2021-06-03,Inconclusive,1218,171,1,26,,,,DISCHARGED -1219,2020-02-16,26047.705097458056,124,Emergency,2020-02-22,Normal,1219,385,2,22,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1220,2022-04-07,37384.843343099536,177,Urgent,2022-04-13,Abnormal,1220,12,0,7,,,,DISCHARGED -1221,2022-08-07,1521.590578414325,267,Urgent,2022-08-21,Normal,1221,167,1,12,,,,DISCHARGED -1222,2020-02-12,1185.2138790636018,175,Emergency,2020-03-02,Inconclusive,1222,129,3,28,,,,DISCHARGED -1223,2022-09-23,35550.2218680213,289,Elective,2022-10-20,Normal,1223,83,3,4,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -1224,2022-05-30,27851.777932834848,433,Emergency,2022-06-28,Inconclusive,1224,320,0,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1225,2021-11-16,35849.42724682361,135,Urgent,2021-11-30,Normal,1225,318,2,25,,,,DISCHARGED -1226,2022-09-26,18595.633277089997,383,Urgent,2022-10-16,Abnormal,1226,100,3,26,,,,DISCHARGED -1227,2023-05-23,43709.13461108844,200,Urgent,2023-06-12,Normal,1227,328,3,11,,,,DISCHARGED -1228,2019-08-07,36820.77074553299,400,Urgent,2019-08-23,Abnormal,1228,272,4,26,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1229,2021-04-22,12593.553327817548,234,Elective,2021-05-09,Normal,1229,264,1,12,,,,DISCHARGED -1230,2020-10-13,42545.92068919371,311,Emergency,2020-11-09,Abnormal,1230,458,2,21,,,,DISCHARGED -1231,2021-03-22,11561.811843317191,468,Urgent,2021-03-28,Inconclusive,1231,398,1,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -1232,2019-10-21,16971.83619790432,229,Urgent,2019-11-01,Inconclusive,1232,407,2,14,,,,DISCHARGED -1233,2023-10-25,28280.36006787648,439,Emergency,2023-11-17,Inconclusive,1233,37,3,12,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -1233,2021-10-28,39519.36419704959,486,Emergency,2021-10-29,Inconclusive,5862,418,4,0,,,,DISCHARGED -1234,2021-05-21,49898.23155845238,339,Elective,2021-05-28,Normal,1234,93,1,21,,,,DISCHARGED -1235,2020-06-02,10592.25566233709,255,Elective,2020-06-24,Inconclusive,1235,94,3,5,,,,DISCHARGED -1236,2019-08-08,18826.741718490663,409,Elective,2019-08-22,Inconclusive,1236,304,2,10,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1237,2023-10-17,18193.27476480426,183,Elective,2023-10-27,Inconclusive,1237,68,1,12,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -1238,2021-05-04,15446.76075706385,418,Emergency,2021-05-25,Inconclusive,1238,317,1,20,,,,DISCHARGED -1240,2022-07-13,7629.581899678145,437,Elective,2022-08-12,Abnormal,1240,443,3,19,,,,DISCHARGED -1241,2022-10-19,13676.34886679554,193,Elective,2022-10-27,Normal,1241,235,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1241,2020-02-12,9794.33798335858,310,Emergency,2020-02-14,Normal,2677,433,4,10,,,,DISCHARGED -1242,2019-01-31,16330.95706627832,274,Urgent,2019-02-08,Abnormal,1242,333,4,25,,,,DISCHARGED -1243,2021-01-15,36324.42753075232,358,Emergency,2021-02-12,Inconclusive,1243,372,3,10,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1244,2021-06-05,39832.71072190877,181,Elective,2021-06-06,Abnormal,1244,375,2,7,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1245,2023-02-17,42520.49073184942,486,Elective,,Normal,1245,458,3,21,,,,OPEN -1246,2023-03-06,47225.56689242021,283,Urgent,,Inconclusive,1246,136,4,2,,,,OPEN -1247,2021-08-09,2813.0521460089017,185,Urgent,2021-08-21,Abnormal,1247,417,0,27,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -1248,2018-11-14,3380.081744533818,223,Emergency,2018-12-09,Abnormal,1248,75,0,18,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1248,2021-06-07,7380.28809480587,474,Urgent,2021-06-19,Normal,5027,482,1,11,,,,DISCHARGED -1249,2020-08-08,3680.684870384705,252,Elective,2020-08-22,Normal,1249,34,1,5,,,,DISCHARGED -1250,2022-09-17,22505.27524413041,399,Emergency,2022-10-06,Abnormal,1250,0,0,27,,,,DISCHARGED -1251,2022-11-01,44542.30167895572,226,Elective,2022-11-30,Abnormal,1251,295,4,22,,,,DISCHARGED -1252,2022-12-09,10786.778256915602,256,Urgent,2022-12-18,Inconclusive,1252,319,1,7,,,,DISCHARGED -1253,2022-02-17,23021.113540007093,364,Emergency,2022-03-02,Inconclusive,1253,405,3,4,,,,DISCHARGED -1254,2019-07-14,39452.70869998484,208,Urgent,2019-07-21,Normal,1254,59,3,9,,,,DISCHARGED -1255,2019-09-24,45411.31237886845,257,Urgent,2019-10-03,Abnormal,1255,319,4,21,,,,DISCHARGED -1256,2018-11-19,12472.402228018342,459,Emergency,2018-11-29,Normal,1256,348,1,15,,,,DISCHARGED -1258,2020-12-23,30726.948945926037,189,Emergency,2021-01-03,Inconclusive,1258,327,3,11,,,,DISCHARGED -1259,2023-10-14,40386.51935783964,415,Elective,2023-10-29,Normal,1259,266,1,16,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -1260,2019-05-22,28785.336133155757,295,Urgent,2019-06-13,Inconclusive,1260,360,1,5,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1261,2020-04-19,41556.09406666805,143,Urgent,2020-04-25,Normal,1261,228,3,8,,,,DISCHARGED -1262,2021-01-31,12068.35929733992,174,Urgent,2021-03-01,Abnormal,1262,269,0,9,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -1263,2022-01-31,24954.6035244282,112,Urgent,2022-02-05,Abnormal,1263,315,3,19,,,,DISCHARGED -1264,2021-02-10,29575.060941490698,248,Emergency,2021-02-25,Inconclusive,1264,285,4,13,,,,DISCHARGED -1265,2021-04-17,44756.11246332132,377,Emergency,2021-04-22,Abnormal,1265,290,2,13,,,,DISCHARGED -1266,2021-03-08,20416.930256632604,201,Urgent,2021-03-31,Inconclusive,1266,212,3,25,,,,DISCHARGED -1267,2020-10-29,7658.078012170146,154,Urgent,2020-11-18,Inconclusive,1267,164,1,28,,,,DISCHARGED -1268,2023-06-16,3475.838524777997,187,Elective,2023-06-17,Inconclusive,1268,4,1,16,,,,DISCHARGED -1269,2022-12-01,36147.16225697457,150,Elective,2022-12-07,Normal,1269,338,3,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1270,2022-03-11,6564.677593833786,159,Emergency,2022-04-03,Inconclusive,1270,378,2,26,,,,DISCHARGED -1271,2021-06-01,42030.47334133956,329,Urgent,2021-06-18,Inconclusive,1271,77,3,24,,,,DISCHARGED -1272,2023-01-16,4614.166449747308,456,Urgent,2023-02-05,Normal,1272,409,2,15,,,,DISCHARGED -1273,2020-09-12,14948.727919776426,145,Elective,2020-09-16,Normal,1273,61,2,3,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1274,2019-12-13,12937.336655226634,206,Emergency,2019-12-21,Inconclusive,1274,131,4,1,,,,DISCHARGED -1275,2020-11-16,12684.631588335356,341,Emergency,2020-12-06,Normal,1275,88,1,15,,,,DISCHARGED -1275,2019-04-01,34809.32560140672,499,Elective,2019-04-04,Abnormal,2882,236,1,0,,,,DISCHARGED -1276,2023-04-08,4426.441900370795,400,Emergency,2023-04-27,Normal,1276,41,2,2,,,,DISCHARGED -1277,2020-04-26,27763.51164659517,285,Elective,2020-05-20,Inconclusive,1277,88,1,22,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -1278,2022-04-28,23163.8125463224,312,Emergency,2022-04-30,Normal,1278,401,0,10,,,,DISCHARGED -1279,2021-03-27,46220.425450589,230,Elective,2021-04-20,Normal,1279,295,2,15,,,,DISCHARGED -1281,2020-04-25,13816.96822453083,308,Urgent,2020-05-14,Abnormal,1281,327,1,25,,,,DISCHARGED -1281,2019-12-31,30416.09488723861,184,Emergency,2020-01-05,Normal,1289,294,0,17,,,,DISCHARGED -1281,2022-06-26,44132.98157271498,466,Elective,2022-07-02,Inconclusive,6404,103,4,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -1282,2020-12-28,32779.85373503364,219,Elective,2021-01-08,Normal,1282,13,1,8,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -1282,2021-11-24,29191.81853669066,340,Elective,2021-12-09,Inconclusive,5519,287,0,11,,,,DISCHARGED -1283,2018-11-28,20205.83968806844,167,Emergency,2018-12-19,Normal,1283,178,3,28,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1284,2020-10-04,12900.760488393376,184,Emergency,2020-10-18,Inconclusive,1284,124,3,26,,,,DISCHARGED -1285,2020-06-22,30861.775957667694,402,Urgent,2020-06-27,Normal,1285,421,0,17,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -1285,2022-10-05,32177.77606626569,428,Elective,2022-10-24,Abnormal,3708,352,2,4,,,,DISCHARGED -1286,2023-05-12,49450.89339700137,405,Emergency,,Normal,1286,22,2,23,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",OPEN -1287,2022-08-08,5427.744304314314,333,Emergency,2022-08-17,Inconclusive,1287,62,1,28,,,,DISCHARGED -1288,2021-12-09,37926.04072482408,229,Elective,2022-01-05,Abnormal,1288,142,3,28,,,,DISCHARGED -1290,2021-04-28,25082.84787911366,244,Urgent,2021-05-02,Abnormal,1290,480,2,27,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1291,2023-05-19,18473.76612752954,311,Elective,2023-05-24,Normal,1291,152,2,25,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -1292,2022-10-18,4336.557614920836,266,Emergency,2022-10-23,Inconclusive,1292,144,3,7,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -1293,2018-11-09,18763.54096410252,116,Urgent,2018-11-10,Normal,1293,224,4,2,,,,DISCHARGED -1294,2019-05-07,26175.373784489304,296,Emergency,2019-05-08,Normal,1294,494,2,1,,,,DISCHARGED -1294,2019-11-12,1020.337790368703,308,Elective,2019-11-24,Abnormal,4866,449,0,24,,,,DISCHARGED -1295,2022-02-18,27744.82871129207,230,Emergency,2022-02-26,Abnormal,1295,461,1,18,,,,DISCHARGED -1296,2022-03-01,32114.2051477691,151,Elective,2022-03-31,Inconclusive,1296,308,2,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1297,2020-01-03,17802.893119476135,234,Urgent,2020-01-21,Normal,1297,103,2,1,,,,DISCHARGED -1298,2022-07-23,34186.35420136755,122,Urgent,2022-08-03,Inconclusive,1298,103,4,18,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -1299,2022-04-27,14251.922318501358,250,Emergency,2022-05-25,Abnormal,1299,434,0,0,,,,DISCHARGED -1300,2022-05-24,24898.83671104919,304,Emergency,2022-06-12,Inconclusive,1300,38,1,29,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -1301,2021-10-06,1837.0960878260496,164,Elective,2021-11-03,Normal,1301,434,2,26,,,,DISCHARGED -1302,2019-07-31,8319.88193476987,428,Urgent,2019-08-06,Inconclusive,1302,197,1,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -1303,2019-07-13,48030.108538739965,209,Urgent,2019-08-09,Inconclusive,1303,133,3,12,,,,DISCHARGED -1304,2022-08-31,18949.34708044389,375,Urgent,2022-09-19,Abnormal,1304,66,2,22,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -1305,2022-07-30,33793.81315855958,140,Emergency,2022-08-26,Normal,1305,390,2,19,,,,DISCHARGED -1306,2019-08-09,7841.799282829665,450,Urgent,2019-08-29,Abnormal,1306,178,3,16,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1307,2019-04-27,34655.80214795067,462,Urgent,2019-05-27,Abnormal,1307,455,4,2,,,,DISCHARGED -1308,2019-11-17,34967.32611078716,492,Elective,2019-11-26,Normal,1308,41,2,8,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -1309,2019-05-15,35017.44604976795,474,Emergency,2019-06-03,Inconclusive,1309,447,1,4,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1310,2023-07-06,6765.461424476579,122,Elective,2023-07-21,Abnormal,1310,499,0,5,,,,DISCHARGED -1311,2023-04-01,36441.78294344234,411,Urgent,2023-04-26,Normal,1311,14,1,3,,,,DISCHARGED -1311,2022-09-27,39055.06447916271,337,Elective,2022-10-11,Inconclusive,4876,110,4,16,,,,DISCHARGED -1312,2022-11-01,8747.39959765486,151,Emergency,2022-11-08,Inconclusive,1312,156,0,29,,,,DISCHARGED -1313,2023-09-15,12449.34885065373,360,Emergency,2023-10-11,Normal,1313,288,1,20,,,,DISCHARGED -1314,2021-07-14,46983.283342800525,379,Elective,2021-07-18,Inconclusive,1314,499,1,20,,,,DISCHARGED -1315,2020-05-06,47059.5432872028,332,Emergency,2020-05-24,Abnormal,1315,477,3,20,,,,DISCHARGED -1316,2023-02-17,9526.488495913578,317,Urgent,2023-03-16,Inconclusive,1316,230,4,15,,,,DISCHARGED -1317,2020-02-15,42765.054657454704,140,Urgent,2020-03-03,Normal,1317,410,3,15,,,,DISCHARGED -1318,2021-10-07,1297.337603370916,297,Urgent,2021-10-25,Inconclusive,1318,419,0,21,,,,DISCHARGED -1318,2019-12-27,5694.385456881819,101,Emergency,2020-01-06,Inconclusive,8837,156,3,10,,,,DISCHARGED -1319,2019-09-17,30754.00902981249,461,Urgent,2019-10-14,Abnormal,1319,37,4,1,,,,DISCHARGED -1320,2021-10-26,30102.211581868505,112,Emergency,2021-11-13,Normal,1320,440,2,16,,,,DISCHARGED -1321,2022-09-21,27788.64223060028,314,Urgent,2022-10-01,Normal,1321,96,2,14,,,,DISCHARGED -1322,2021-05-15,13263.73829565018,470,Elective,2021-05-18,Normal,1322,484,0,17,,,,DISCHARGED -1323,2022-02-12,5645.578310371213,179,Emergency,2022-03-07,Normal,1323,410,2,28,,,,DISCHARGED -1324,2019-06-29,42292.83341927076,480,Emergency,2019-07-23,Abnormal,1324,438,3,9,,,,DISCHARGED -1324,2022-10-22,25039.32458007894,387,Urgent,2022-11-14,Normal,2952,288,0,5,,,,DISCHARGED -1325,2021-05-24,31035.355260224784,492,Emergency,2021-06-06,Inconclusive,1325,253,4,20,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -1326,2022-06-12,6372.419173600877,385,Elective,2022-06-27,Normal,1326,195,0,15,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1327,2023-10-24,21361.96180425918,333,Urgent,,Abnormal,1327,85,0,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -1328,2018-11-25,40094.83617804797,216,Urgent,2018-12-13,Inconclusive,1328,321,1,11,,,,DISCHARGED -1329,2022-10-14,13784.807039715315,476,Urgent,2022-11-10,Inconclusive,1329,9,1,27,,,,DISCHARGED -1330,2019-05-23,4668.921063194623,116,Emergency,2019-06-08,Normal,1330,4,0,5,,,,DISCHARGED -1331,2023-09-01,14835.440745608956,436,Elective,2023-09-06,Abnormal,1331,122,2,13,,,,DISCHARGED -1331,2020-03-16,6843.934455712214,141,Emergency,2020-03-17,Normal,2816,329,1,25,,,,DISCHARGED -1332,2023-04-02,10685.946269722144,342,Urgent,2023-04-16,Normal,1332,352,4,22,,,,DISCHARGED -1333,2022-01-07,10883.97184434871,239,Urgent,2022-01-16,Abnormal,1333,117,3,15,,,,DISCHARGED -1334,2021-04-23,24593.80209908757,185,Elective,2021-04-28,Inconclusive,1334,293,1,24,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -1335,2022-01-06,44259.74180523009,256,Emergency,2022-01-13,Normal,1335,396,0,6,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -1336,2018-12-30,21804.132185126196,180,Emergency,2019-01-19,Abnormal,1336,158,2,1,,,,DISCHARGED -1337,2019-09-07,7079.1786056247065,140,Elective,2019-10-07,Abnormal,1337,302,3,5,,,,DISCHARGED -1337,2020-12-03,10659.663346045125,134,Emergency,2020-12-20,Abnormal,6436,227,1,8,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1337,2019-09-13,18409.45073823073,291,Elective,2019-09-25,Normal,8457,364,2,6,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -1338,2021-08-14,15092.169812163856,196,Emergency,2021-09-12,Abnormal,1338,215,2,1,,,,DISCHARGED -1339,2021-05-15,37275.94576375411,251,Elective,2021-06-11,Abnormal,1339,435,2,18,,,,DISCHARGED -1340,2019-01-02,15412.399249958517,219,Elective,2019-01-11,Inconclusive,1340,183,0,7,,,,DISCHARGED -1341,2021-04-25,41714.72931861722,199,Emergency,2021-04-29,Normal,1341,14,4,10,,,,DISCHARGED -1341,2019-12-03,42261.106845215625,210,Elective,2020-01-02,Normal,1691,156,2,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1342,2023-10-24,35536.80934367094,255,Elective,2023-11-03,Normal,1342,135,3,3,,,,DISCHARGED -1343,2020-06-01,27514.05218284695,470,Elective,2020-06-14,Abnormal,1343,260,1,15,,,,DISCHARGED -1344,2021-01-18,29342.925787595734,431,Emergency,2021-01-23,Abnormal,1344,156,3,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -1345,2023-06-29,9702.677381655449,448,Elective,2023-07-02,Abnormal,1345,46,0,17,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1346,2022-10-22,9775.692599447482,132,Elective,2022-10-30,Normal,1346,323,0,12,,,,DISCHARGED -1347,2023-01-29,13393.255800566814,400,Emergency,2023-02-04,Normal,1347,331,3,26,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1348,2020-04-01,20614.09441339475,145,Emergency,2020-04-04,Abnormal,1348,172,4,4,,,,DISCHARGED -1348,2020-08-10,17683.872010708623,158,Elective,2020-08-16,Abnormal,8277,129,0,26,,,,DISCHARGED -1349,2019-11-21,30419.75223392837,483,Emergency,2019-12-06,Abnormal,1349,410,0,1,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -1350,2022-04-17,49853.76511681912,357,Urgent,2022-05-16,Abnormal,1350,94,3,10,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -1351,2023-05-18,33738.62525044173,416,Emergency,,Abnormal,1351,114,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",OPEN -1352,2020-05-07,40942.005631729386,113,Urgent,2020-05-14,Inconclusive,1352,242,4,12,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1353,2022-02-21,48270.69141645253,453,Emergency,2022-03-14,Inconclusive,1353,419,4,29,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -1354,2023-02-17,16292.432929931489,134,Emergency,2023-02-19,Normal,1354,291,4,4,,,,DISCHARGED -1355,2020-04-09,26386.82263435522,158,Emergency,2020-04-22,Normal,1355,281,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1356,2020-05-03,32862.3870842997,470,Urgent,2020-05-27,Inconclusive,1356,298,4,13,,,,DISCHARGED -1356,2019-05-22,28071.47714454473,319,Emergency,2019-05-28,Normal,6990,282,4,12,,,,DISCHARGED -1357,2020-12-26,40100.42931606188,147,Elective,2021-01-25,Abnormal,1357,68,1,6,,,,DISCHARGED -1357,2020-05-05,41931.183707035794,178,Emergency,2020-05-06,Inconclusive,9160,147,2,7,,,,DISCHARGED -1358,2023-05-05,2079.178611168977,335,Urgent,2023-05-29,Normal,1358,10,0,17,,,,DISCHARGED -1359,2019-11-02,30348.487459544685,157,Elective,2019-11-28,Abnormal,1359,253,4,6,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1360,2023-03-09,42072.0237379467,298,Emergency,2023-03-18,Normal,1360,329,0,19,,,,DISCHARGED -1360,2021-05-27,25006.88674513295,476,Elective,2021-06-15,Normal,9413,359,3,16,,,,DISCHARGED -1361,2022-11-24,17528.85649141689,488,Urgent,2022-12-17,Normal,1361,37,0,15,,,,DISCHARGED -1362,2023-02-12,28564.792331379434,370,Urgent,,Abnormal,1362,133,1,10,,,,OPEN -1362,2019-06-21,30193.36847627906,156,Urgent,2019-07-05,Abnormal,5131,199,0,18,,,,DISCHARGED -1363,2020-12-16,32097.859166555794,213,Urgent,2020-12-17,Inconclusive,1363,22,0,26,,,,DISCHARGED -1364,2019-03-17,15945.961367968866,247,Urgent,2019-03-26,Abnormal,1364,302,0,27,,,,DISCHARGED -1366,2020-06-04,14618.054341992476,220,Elective,2020-06-10,Abnormal,1366,345,2,0,,,,DISCHARGED -1367,2019-09-01,39707.08205512446,227,Urgent,2019-09-10,Normal,1367,301,2,20,,,,DISCHARGED -1368,2022-12-06,38582.84223966761,366,Emergency,2022-12-28,Normal,1368,362,3,28,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1369,2020-11-18,48273.44967462655,220,Emergency,2020-11-23,Abnormal,1369,395,1,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -1369,2019-10-21,30414.234531776783,449,Urgent,2019-10-28,Inconclusive,2955,217,0,0,,,,DISCHARGED -1369,2020-05-29,4691.08529498244,482,Emergency,2020-06-09,Abnormal,4936,140,0,29,,,,DISCHARGED -1369,2021-05-23,39115.84611259714,450,Urgent,2021-06-11,Inconclusive,8259,103,0,8,,,,DISCHARGED -1370,2021-01-15,2254.6992373283547,411,Elective,2021-02-12,Inconclusive,1370,445,0,18,,,,DISCHARGED -1371,2021-11-19,14018.183322932537,119,Emergency,2021-12-17,Abnormal,1371,209,2,20,,,,DISCHARGED -1372,2022-06-01,17975.293295405925,309,Urgent,2022-06-08,Abnormal,1372,472,3,8,,,,DISCHARGED -1372,2019-08-08,46106.06030651323,420,Emergency,2019-08-09,Normal,3012,480,4,20,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1372,2019-06-17,18676.714498391782,468,Emergency,2019-07-01,Normal,3617,110,1,24,,,,DISCHARGED -1373,2021-04-10,19107.62806985715,336,Elective,2021-04-14,Normal,1373,103,0,9,,,,DISCHARGED -1373,2018-11-28,11888.154593877976,402,Elective,2018-12-04,Normal,4619,315,3,23,,,,DISCHARGED -1373,2020-09-11,35901.92354336211,178,Emergency,2020-10-05,Inconclusive,7079,170,4,22,,,,DISCHARGED -1374,2022-01-31,44696.84341738928,409,Urgent,2022-02-23,Normal,1374,459,3,10,,,,DISCHARGED -1375,2021-04-14,16826.908105432085,444,Elective,2021-04-25,Abnormal,1375,491,2,0,,,,DISCHARGED -1376,2023-10-13,25260.59018586082,377,Emergency,,Normal,1376,355,4,19,,,,OPEN -1377,2023-03-07,43176.1713041612,122,Urgent,2023-03-23,Inconclusive,1377,495,3,24,,,,DISCHARGED -1378,2023-08-18,4953.799293288754,219,Elective,2023-09-12,Inconclusive,1378,323,2,25,,,,DISCHARGED -1379,2022-12-03,11125.163396528716,144,Emergency,2022-12-11,Abnormal,1379,132,3,7,,,,DISCHARGED -1379,2023-08-06,31385.14586292253,386,Urgent,2023-08-18,Abnormal,9631,375,3,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1380,2022-03-15,12716.043597710464,181,Elective,2022-03-16,Abnormal,1380,292,4,11,,,,DISCHARGED -1381,2022-08-21,15835.854309550064,130,Urgent,2022-08-31,Abnormal,1381,327,2,0,,,,DISCHARGED -1382,2021-01-12,41279.31592714954,442,Urgent,2021-01-20,Inconclusive,1382,126,0,9,,,,DISCHARGED -1383,2020-04-11,2839.861412218511,165,Elective,2020-04-24,Normal,1383,105,1,3,,,,DISCHARGED -1384,2019-01-20,2117.911193018509,314,Elective,2019-02-02,Normal,1384,496,4,14,,,,DISCHARGED -1385,2023-03-12,43647.08174336824,457,Urgent,2023-04-09,Inconclusive,1385,91,2,18,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -1385,2020-03-31,23455.934726748477,309,Urgent,2020-04-20,Normal,6751,286,3,5,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1386,2022-04-10,25357.52536212509,241,Elective,2022-04-16,Abnormal,1386,377,2,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -1387,2021-10-08,28462.868455274573,259,Urgent,2021-11-02,Normal,1387,392,1,4,,,,DISCHARGED -1388,2021-09-24,1606.5171857414905,310,Emergency,2021-10-14,Normal,1388,50,1,4,,,,DISCHARGED -1389,2022-01-09,4310.323262295909,334,Emergency,2022-02-03,Inconclusive,1389,28,0,17,,,,DISCHARGED -1390,2020-09-13,34728.988387154386,195,Urgent,2020-10-06,Abnormal,1390,461,0,27,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1391,2020-03-06,44858.631528777136,371,Elective,2020-03-16,Inconclusive,1391,295,1,2,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1392,2020-11-28,1741.1202167185404,129,Emergency,2020-12-07,Normal,1392,296,4,26,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1393,2020-04-16,39550.62926049432,403,Elective,2020-05-15,Inconclusive,1393,213,4,21,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1394,2019-09-05,11827.366098753697,246,Emergency,2019-09-29,Abnormal,1394,266,3,1,,,,DISCHARGED -1395,2018-11-04,2665.3704556912858,266,Elective,2018-11-30,Abnormal,1395,406,0,3,,,,DISCHARGED -1396,2020-03-26,42047.04277967537,316,Elective,2020-04-11,Normal,1396,256,3,17,,,,DISCHARGED -1397,2019-08-03,2441.8910180895077,225,Emergency,2019-08-05,Abnormal,1397,301,0,8,Frequent hiccups,"Identify the underlying cause, prescribe medications if necessary, and recommend lifestyle changes.",R11 - Nausea and vomiting,DISCHARGED -1398,2020-09-27,39439.2358950029,256,Emergency,2020-10-16,Abnormal,1398,100,1,18,,,,DISCHARGED -1399,2019-04-14,9817.682605035849,292,Urgent,2019-04-26,Inconclusive,1399,404,4,25,,,,DISCHARGED -1400,2018-11-02,2012.02631439907,105,Elective,2018-12-01,Inconclusive,1400,345,4,9,,,,DISCHARGED -1401,2019-11-03,22991.51524053853,496,Elective,2019-11-07,Normal,1401,109,1,21,,,,DISCHARGED -1402,2023-10-26,30187.40550164447,247,Emergency,,Normal,1402,419,3,14,,,,OPEN -1403,2019-05-04,47165.29916522435,417,Emergency,2019-06-02,Inconclusive,1403,181,3,0,,,,DISCHARGED -1403,2022-07-25,32270.15203671778,284,Urgent,2022-08-14,Normal,1979,470,2,28,,,,DISCHARGED -1403,2019-10-16,31132.66929952767,248,Emergency,2019-11-13,Inconclusive,7935,312,0,10,,,,DISCHARGED -1404,2023-10-18,21076.97085530908,462,Urgent,2023-11-14,Normal,1404,0,3,13,,,,DISCHARGED -1405,2019-05-19,38584.13621471236,493,Elective,2019-05-29,Abnormal,1405,318,1,9,,,,DISCHARGED -1406,2022-04-16,47519.370031681705,169,Elective,2022-05-11,Abnormal,1406,437,3,18,,,,DISCHARGED -1407,2021-01-02,15437.549708269484,331,Elective,2021-01-27,Normal,1407,54,4,23,,,,DISCHARGED -1408,2023-08-13,36346.61752846077,312,Urgent,,Abnormal,1408,370,0,20,,,,OPEN -1408,2022-03-01,20042.38385555324,251,Elective,2022-03-31,Normal,2675,423,2,15,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1409,2020-09-29,5253.616012329089,261,Emergency,2020-10-15,Abnormal,1409,398,0,7,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -1410,2022-01-11,19484.01734967431,425,Urgent,2022-01-16,Abnormal,1410,148,4,1,,,,DISCHARGED -1410,2019-10-12,49573.399903411984,177,Urgent,2019-10-27,Normal,2634,430,4,22,,,,DISCHARGED -1411,2019-06-21,17698.27973352936,484,Emergency,2019-07-12,Normal,1411,456,4,24,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1412,2019-11-03,31901.68206656949,153,Elective,2019-11-24,Inconclusive,1412,308,4,6,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1412,2022-01-11,31842.627595819275,457,Elective,2022-02-09,Abnormal,9237,136,1,18,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1413,2019-03-22,4771.650508572607,360,Elective,2019-03-25,Abnormal,1413,201,2,6,,,,DISCHARGED -1413,2020-11-11,46930.69946037082,484,Emergency,2020-11-15,Abnormal,8235,435,4,14,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1414,2023-08-24,34753.239049473814,282,Elective,2023-09-16,Normal,1414,312,4,7,,,,DISCHARGED -1415,2019-04-24,45302.70126572699,446,Emergency,2019-04-26,Normal,1415,116,3,13,,,,DISCHARGED -1416,2019-08-19,26665.901699254176,287,Emergency,2019-08-27,Abnormal,1416,153,2,0,,,,DISCHARGED -1417,2020-12-06,45499.04021381226,113,Elective,2020-12-13,Abnormal,1417,424,0,28,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -1418,2022-07-21,31427.659167171816,255,Urgent,2022-08-16,Abnormal,1418,290,2,12,,,,DISCHARGED -1419,2020-05-08,26649.65348563137,465,Emergency,2020-06-07,Normal,1419,62,2,2,,,,DISCHARGED -1419,2018-11-08,38150.36697658243,366,Emergency,2018-12-08,Abnormal,9360,243,2,20,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1420,2022-09-24,18092.40030006162,407,Elective,2022-10-12,Inconclusive,1420,24,4,27,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1421,2021-01-04,12784.843889181002,243,Elective,2021-01-17,Abnormal,1421,89,4,5,,,,DISCHARGED -1422,2023-08-30,9661.473049903942,437,Urgent,,Abnormal,1422,74,1,18,,,,OPEN -1423,2021-03-10,7765.808456352994,349,Elective,2021-03-12,Abnormal,1423,293,0,14,,,,DISCHARGED -1424,2022-08-06,25955.496274861285,295,Emergency,2022-08-22,Abnormal,1424,385,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1425,2023-10-10,39456.79757345628,302,Elective,,Abnormal,1425,390,2,20,,,,OPEN -1426,2023-06-11,43070.47038936852,215,Elective,2023-06-27,Inconclusive,1426,209,0,2,,,,DISCHARGED -1426,2021-10-20,12469.12414019698,323,Emergency,2021-11-03,Inconclusive,5658,474,0,3,,,,DISCHARGED -1427,2021-03-20,22444.633462416918,377,Urgent,2021-03-21,Inconclusive,1427,417,1,4,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1428,2022-12-31,36233.19537438693,222,Elective,2023-01-10,Inconclusive,1428,346,3,17,,,,DISCHARGED -1428,2019-03-07,23440.663892346656,461,Emergency,2019-03-17,Inconclusive,9735,16,2,25,,,,DISCHARGED -1429,2023-03-20,21741.70650863805,355,Elective,2023-03-30,Abnormal,1429,127,3,24,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -1430,2019-08-17,32477.750363689145,485,Emergency,2019-09-14,Inconclusive,1430,426,1,9,,,,DISCHARGED -1431,2022-02-09,45335.88699464429,242,Elective,2022-03-05,Abnormal,1431,442,4,7,,,,DISCHARGED -1432,2023-01-23,15451.5159912924,499,Urgent,2023-01-31,Normal,1432,363,0,11,,,,DISCHARGED -1433,2022-03-14,2371.4185014294544,228,Elective,2022-03-30,Inconclusive,1433,250,2,21,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1434,2020-09-23,18301.32584245176,448,Elective,2020-10-22,Inconclusive,1434,178,4,25,,,,DISCHARGED -1435,2022-08-21,22734.364435997264,316,Emergency,2022-09-16,Normal,1435,181,1,26,,,,DISCHARGED -1436,2023-03-06,44027.39730508172,477,Emergency,2023-03-20,Normal,1436,151,3,2,,,,DISCHARGED -1437,2022-05-09,49071.6153727576,169,Urgent,2022-05-10,Normal,1437,24,0,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1438,2020-10-27,14571.144107607395,428,Urgent,2020-10-29,Abnormal,1438,454,2,17,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1439,2021-10-07,26424.20607939292,114,Emergency,2021-10-29,Normal,1439,179,4,22,,,,DISCHARGED -1440,2019-11-15,14923.14708562106,472,Urgent,2019-12-05,Normal,1440,197,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1442,2023-10-11,29485.75542112056,213,Elective,2023-10-14,Abnormal,1442,343,0,25,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -1443,2021-12-01,10791.325616137889,317,Emergency,2021-12-02,Abnormal,1443,160,3,0,,,,DISCHARGED -1443,2023-08-20,42274.32778501501,235,Elective,2023-09-13,Inconclusive,2714,176,1,13,,,,DISCHARGED -1444,2021-10-16,30317.09975741035,488,Urgent,2021-11-06,Normal,1444,284,3,21,,,,DISCHARGED -1445,2020-07-12,29767.975467313696,478,Urgent,2020-08-06,Abnormal,1445,62,3,22,,,,DISCHARGED -1446,2019-12-03,4721.403200353537,284,Emergency,2019-12-05,Normal,1446,490,3,12,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1447,2023-02-02,18062.52811261929,181,Emergency,2023-02-05,Inconclusive,1447,149,0,24,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -1448,2023-06-08,4916.296358886948,397,Emergency,2023-07-06,Abnormal,1448,153,0,11,,,,DISCHARGED -1449,2022-10-13,42499.60908630285,281,Elective,2022-11-04,Abnormal,1449,155,1,2,,,,DISCHARGED -1450,2019-01-30,27664.075375883356,111,Urgent,2019-02-25,Normal,1450,369,3,17,,,,DISCHARGED -1451,2019-12-20,43877.65177032784,486,Urgent,2019-12-25,Normal,1451,468,0,20,,,,DISCHARGED -1452,2021-09-06,15696.96699355709,314,Emergency,2021-09-30,Abnormal,1452,48,1,12,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -1453,2020-10-28,28548.355248954325,187,Urgent,2020-10-31,Normal,1453,454,1,14,,,,DISCHARGED -1454,2020-10-11,24120.18404388413,286,Elective,2020-10-16,Inconclusive,1454,336,3,9,,,,DISCHARGED -1454,2021-11-29,9889.490744950002,473,Emergency,2021-12-06,Abnormal,2600,83,2,0,,,,DISCHARGED -1455,2022-09-26,7474.711087373894,325,Urgent,2022-10-13,Abnormal,1455,360,3,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -1456,2021-02-05,24634.73033601485,206,Emergency,2021-02-10,Normal,1456,176,2,5,,,,DISCHARGED -1457,2020-10-28,44104.56514798776,282,Elective,2020-11-21,Inconclusive,1457,147,1,8,,,,DISCHARGED -1458,2021-08-11,14390.020913011787,494,Urgent,2021-09-06,Inconclusive,1458,117,0,9,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1459,2020-11-24,20067.42030581381,131,Elective,2020-12-12,Normal,1459,341,4,14,,,,DISCHARGED -1460,2023-08-23,24156.82001598274,208,Emergency,2023-09-19,Inconclusive,1460,475,1,8,,,,DISCHARGED -1461,2019-08-31,45354.73409867554,181,Emergency,2019-09-02,Abnormal,1461,62,0,22,,,,DISCHARGED -1461,2019-07-15,22135.735416199044,356,Elective,2019-08-10,Abnormal,5216,188,1,13,,,,DISCHARGED -1462,2019-09-07,33576.844385190285,406,Emergency,2019-09-14,Abnormal,1462,359,3,10,,,,DISCHARGED -1463,2021-02-04,36094.08668049679,163,Elective,2021-02-11,Inconclusive,1463,48,2,6,,,,DISCHARGED -1464,2022-04-21,5114.73256005197,485,Urgent,2022-05-03,Abnormal,1464,326,1,23,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1465,2023-04-03,15417.000001193475,423,Urgent,2023-04-10,Normal,1465,256,0,25,,,,DISCHARGED -1466,2022-07-09,14966.189831628875,131,Emergency,2022-08-06,Inconclusive,1466,223,3,29,,,,DISCHARGED -1467,2023-10-02,18283.993899372657,298,Elective,2023-10-06,Inconclusive,1467,140,4,1,,,,DISCHARGED -1468,2019-10-06,30304.375081587805,474,Elective,2019-10-19,Abnormal,1468,477,3,13,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1469,2021-10-13,29356.275590938763,171,Elective,2021-10-25,Normal,1469,214,2,5,,,,DISCHARGED -1470,2020-12-01,34472.084194001654,422,Urgent,2020-12-16,Normal,1470,434,3,4,,,,DISCHARGED -1471,2021-08-17,38743.88147789532,355,Urgent,2021-08-20,Normal,1471,378,4,4,,,,DISCHARGED -1472,2020-05-17,5110.232728208756,349,Urgent,2020-05-22,Inconclusive,1472,439,0,28,,,,DISCHARGED -1472,2021-06-30,14044.392060190456,217,Emergency,2021-07-27,Abnormal,5563,210,1,18,,,,DISCHARGED -1472,2021-07-08,29210.176374035756,126,Emergency,2021-07-15,Abnormal,9026,317,2,18,,,,DISCHARGED -1473,2021-08-15,7536.747469676526,470,Urgent,2021-08-22,Normal,1473,31,4,5,,,,DISCHARGED -1474,2021-12-06,17944.24264921578,430,Emergency,2021-12-16,Normal,1474,157,2,27,,,,DISCHARGED -1475,2021-07-04,47384.05104293734,178,Urgent,2021-07-29,Abnormal,1475,284,3,25,,,,DISCHARGED -1476,2020-09-06,47527.2226044018,272,Urgent,2020-09-27,Abnormal,1476,304,2,28,,,,DISCHARGED -1477,2022-03-28,44490.20985706157,228,Urgent,2022-04-26,Abnormal,1477,428,4,9,,,,DISCHARGED -1478,2022-05-31,48098.55655167212,466,Elective,2022-06-07,Normal,1478,476,1,22,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1479,2023-04-13,33333.405400636926,148,Elective,2023-04-27,Inconclusive,1479,285,1,13,,,,DISCHARGED -1480,2019-04-11,1599.8748640537535,223,Elective,2019-04-23,Inconclusive,1480,143,2,16,,,,DISCHARGED -1481,2019-01-27,30291.16313443074,106,Urgent,2019-02-16,Abnormal,1481,423,0,29,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1482,2021-11-11,24458.10656430833,320,Emergency,2021-12-04,Normal,1482,18,2,2,,,,DISCHARGED -1483,2020-05-11,29896.74820134905,157,Elective,2020-05-15,Abnormal,1483,17,3,27,,,,DISCHARGED -1484,2022-02-02,41940.65611297242,253,Elective,2022-02-28,Normal,1484,256,1,0,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1485,2023-05-31,28835.0472876612,421,Urgent,2023-06-10,Abnormal,1485,77,1,9,,,,DISCHARGED -1486,2020-06-04,6150.015684868643,458,Elective,2020-06-29,Abnormal,1486,370,1,2,,,,DISCHARGED -1487,2023-06-19,26457.314733062405,154,Elective,2023-07-15,Normal,1487,174,0,4,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1488,2022-05-20,7198.770967286122,497,Urgent,2022-05-29,Abnormal,1488,497,0,24,,,,DISCHARGED -1489,2019-12-25,45306.601749417714,402,Urgent,2020-01-19,Inconclusive,1489,193,4,18,,,,DISCHARGED -1490,2019-01-13,17738.069851981614,297,Urgent,2019-01-29,Abnormal,1490,475,2,9,,,,DISCHARGED -1491,2020-05-24,24742.714097824395,258,Urgent,2020-05-28,Inconclusive,1491,112,2,29,,,,DISCHARGED -1493,2020-10-01,49141.0230566944,161,Urgent,2020-10-27,Abnormal,1493,113,3,25,,,,DISCHARGED -1494,2019-03-31,3396.323894291608,144,Emergency,2019-04-11,Inconclusive,1494,221,1,24,,,,DISCHARGED -1495,2021-11-30,49974.16045847918,441,Emergency,2021-12-16,Abnormal,1495,165,0,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1496,2019-07-05,44847.52526813831,137,Urgent,2019-07-11,Normal,1496,434,3,0,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1498,2020-09-30,20086.904045989628,139,Elective,2020-10-03,Normal,1498,318,3,5,,,,DISCHARGED -1499,2022-04-19,13391.602986508997,308,Urgent,2022-05-15,Inconclusive,1499,131,0,8,,,,DISCHARGED -1500,2019-09-04,29167.79216874884,164,Urgent,2019-09-07,Abnormal,1500,384,2,27,,,,DISCHARGED -1501,2019-05-24,37176.7800806692,121,Elective,2019-06-19,Abnormal,1501,263,1,4,,,,DISCHARGED -1502,2021-12-01,18137.14824526985,351,Urgent,2021-12-12,Normal,1502,412,2,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1503,2023-04-11,48554.94871358728,249,Urgent,2023-04-15,Inconclusive,1503,54,3,13,,,,DISCHARGED -1504,2020-08-03,5483.7073453562025,346,Urgent,2020-08-08,Normal,1504,358,1,9,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1505,2019-05-28,46026.91105722429,422,Elective,2019-06-21,Abnormal,1505,130,4,1,,,,DISCHARGED -1506,2020-06-25,42941.61067262114,500,Urgent,2020-07-09,Inconclusive,1506,287,3,4,,,,DISCHARGED -1507,2023-06-23,6718.587381240304,292,Urgent,2023-07-14,Normal,1507,265,2,0,,,,DISCHARGED -1508,2019-06-22,5001.402102076398,147,Elective,2019-07-07,Abnormal,1508,457,2,24,,,,DISCHARGED -1508,2021-06-01,5780.596079973189,414,Elective,2021-06-15,Normal,2759,466,2,9,,,,DISCHARGED -1509,2019-03-25,49877.89864721778,283,Emergency,2019-04-23,Normal,1509,365,0,28,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1510,2019-10-12,44074.03564553098,301,Elective,2019-10-18,Inconclusive,1510,161,3,25,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1511,2021-08-09,5471.482228615109,363,Elective,2021-08-20,Inconclusive,1511,379,1,24,,,,DISCHARGED -1512,2019-07-13,33067.77166015609,263,Elective,2019-08-09,Inconclusive,1512,480,2,21,,,,DISCHARGED -1513,2021-01-17,34596.27497179083,241,Elective,2021-01-31,Inconclusive,1513,86,2,26,,,,DISCHARGED -1513,2022-02-17,21420.41760462032,265,Elective,2022-03-06,Normal,3011,54,0,8,,,,DISCHARGED -1513,2021-04-26,18677.676500513757,366,Elective,2021-05-23,Normal,5961,475,1,29,,,,DISCHARGED -1514,2023-02-24,46542.01178268709,106,Elective,2023-03-22,Abnormal,1514,287,3,2,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1515,2020-07-27,13318.406346446598,379,Urgent,2020-08-03,Inconclusive,1515,177,4,14,,,,DISCHARGED -1516,2020-09-15,29869.756045200484,265,Urgent,2020-09-21,Inconclusive,1516,390,0,3,,,,DISCHARGED -1517,2022-06-09,18176.316545724745,416,Elective,2022-06-16,Normal,1517,348,3,12,,,,DISCHARGED -1518,2021-11-19,43000.54119978862,101,Emergency,2021-12-05,Abnormal,1518,7,4,5,,,,DISCHARGED -1519,2019-08-07,41312.72078255848,222,Urgent,2019-08-11,Abnormal,1519,320,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -1520,2019-04-21,7079.09301546943,345,Urgent,2019-05-11,Abnormal,1520,312,2,16,,,,DISCHARGED -1521,2022-01-17,30326.74369682075,372,Urgent,2022-02-14,Abnormal,1521,246,1,22,,,,DISCHARGED -1521,2022-08-30,46952.67115575456,249,Emergency,2022-09-10,Abnormal,2114,322,4,4,,,,DISCHARGED -1521,2020-12-15,11192.328207796692,114,Emergency,2020-12-18,Normal,9428,471,2,29,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -1522,2020-08-09,35316.192399242354,498,Emergency,2020-08-18,Inconclusive,1522,470,2,14,,,,DISCHARGED -1523,2020-03-04,8511.769699943969,387,Elective,2020-03-20,Normal,1523,442,1,7,,,,DISCHARGED -1524,2022-10-19,36495.692531056055,319,Urgent,2022-11-10,Abnormal,1524,254,3,24,,,,DISCHARGED -1525,2019-12-30,49484.04094772212,336,Elective,2020-01-23,Abnormal,1525,327,2,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1526,2021-01-15,6717.731122851445,471,Urgent,2021-02-05,Abnormal,1526,53,0,23,,,,DISCHARGED -1526,2023-10-11,3414.1350419937626,243,Elective,2023-10-23,Normal,1777,248,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -1527,2020-04-10,13829.91480382067,474,Urgent,2020-04-22,Normal,1527,238,3,0,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1528,2020-08-20,32230.718790583487,435,Emergency,2020-08-30,Inconclusive,1528,228,4,0,,,,DISCHARGED -1529,2021-04-06,29074.919762426194,198,Elective,2021-04-12,Normal,1529,66,1,6,,,,DISCHARGED -1529,2022-05-10,8473.007721982092,179,Urgent,2022-05-27,Normal,6859,50,0,21,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1530,2021-03-09,4247.833298255256,488,Urgent,2021-03-10,Abnormal,1530,96,0,4,,,,DISCHARGED -1531,2021-05-30,20566.599437552028,381,Elective,2021-06-03,Normal,1531,91,3,13,,,,DISCHARGED -1532,2020-10-02,44047.51836034425,299,Emergency,2020-10-06,Normal,1532,494,4,14,,,,DISCHARGED -1533,2023-08-26,27599.383578136498,286,Urgent,2023-09-03,Inconclusive,1533,263,4,20,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1534,2019-03-04,48209.00770432499,232,Elective,2019-03-31,Abnormal,1534,417,3,29,,,,DISCHARGED -1534,2020-05-18,14433.475723397838,235,Urgent,2020-06-07,Inconclusive,2659,290,0,24,,,,DISCHARGED -1535,2020-09-26,14709.21819915168,201,Elective,2020-10-02,Abnormal,1535,95,1,16,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1536,2021-10-14,16246.589848734411,237,Elective,2021-10-19,Inconclusive,1536,87,0,23,,,,DISCHARGED -1537,2019-02-04,44113.84667491173,167,Emergency,2019-02-14,Normal,1537,77,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1538,2021-04-11,24403.631086452955,444,Urgent,2021-04-15,Inconclusive,1538,287,0,6,,,,DISCHARGED -1539,2022-07-10,22076.602536944843,460,Emergency,2022-08-01,Inconclusive,1539,119,1,21,,,,DISCHARGED -1540,2021-11-08,4535.095021149562,426,Elective,2021-11-21,Inconclusive,1540,301,2,25,,,,DISCHARGED -1541,2021-12-31,30952.25860746648,227,Emergency,2022-01-05,Inconclusive,1541,490,0,17,,,,DISCHARGED -1542,2018-11-02,24441.2028671702,355,Urgent,2018-11-23,Inconclusive,1542,399,3,27,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1543,2022-07-26,13329.44088048892,255,Emergency,2022-08-17,Inconclusive,1543,451,2,28,,,,DISCHARGED -1544,2023-02-07,17970.747199969097,484,Elective,2023-02-10,Normal,1544,499,3,18,,,,DISCHARGED -1544,2020-03-18,48533.68532838184,241,Elective,2020-04-14,Abnormal,3173,164,3,19,,,,DISCHARGED -1545,2022-05-27,31080.43363296485,136,Emergency,2022-05-30,Normal,1545,181,3,6,,,,DISCHARGED -1546,2019-06-05,9819.675917973173,133,Urgent,2019-06-30,Normal,1546,468,0,7,,,,DISCHARGED -1547,2023-10-07,39156.5539168982,379,Elective,2023-10-16,Inconclusive,1547,397,4,12,,,,DISCHARGED -1548,2020-07-29,39561.77312013998,189,Emergency,2020-08-08,Abnormal,1548,222,2,26,,,,DISCHARGED -1549,2021-01-09,10841.461394664037,447,Elective,2021-01-18,Normal,1549,310,1,17,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1550,2022-12-25,40821.40976421033,105,Elective,2022-12-31,Abnormal,1550,431,4,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -1551,2022-02-01,19119.443166478944,499,Elective,2022-03-02,Normal,1551,465,0,10,,,,DISCHARGED -1552,2020-01-04,23204.4704391058,258,Urgent,2020-01-16,Inconclusive,1552,6,3,8,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1553,2021-06-27,21941.00828878537,223,Emergency,2021-07-07,Inconclusive,1553,329,1,22,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -1554,2018-12-18,13172.351914492096,382,Emergency,2019-01-02,Normal,1554,262,2,0,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -1555,2021-11-26,28491.10773226692,278,Elective,2021-12-01,Abnormal,1555,160,4,21,,,,DISCHARGED -1556,2021-03-07,20362.240661541942,331,Elective,2021-03-17,Abnormal,1556,150,4,7,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1557,2023-08-05,1659.8865598222835,218,Elective,2023-08-20,Abnormal,1557,84,1,20,,,,DISCHARGED -1558,2023-07-16,39075.600712803,296,Emergency,2023-08-13,Abnormal,1558,146,0,11,,,,DISCHARGED -1559,2021-07-27,16999.53176991475,379,Urgent,2021-08-08,Normal,1559,111,2,1,,,,DISCHARGED -1560,2020-01-08,5460.202691148909,486,Emergency,2020-01-10,Inconclusive,1560,380,1,14,,,,DISCHARGED -1561,2022-06-20,46635.08420770996,250,Emergency,2022-07-11,Inconclusive,1561,402,3,20,,,,DISCHARGED -1561,2021-05-06,22422.542811681844,428,Emergency,2021-05-13,Abnormal,5566,35,2,23,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1561,2023-02-20,40146.70724141927,448,Emergency,2023-03-22,Abnormal,7083,284,4,17,,,,DISCHARGED -1561,2020-03-22,36636.92126992474,184,Emergency,2020-04-19,Abnormal,7570,187,1,16,,,,DISCHARGED -1562,2023-08-19,43362.62942467006,440,Elective,2023-08-21,Normal,1562,81,4,14,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -1563,2021-11-04,18562.037225599644,268,Urgent,2021-12-03,Normal,1563,1,4,19,,,,DISCHARGED -1564,2021-01-29,4610.07353428681,155,Elective,2021-02-15,Inconclusive,1564,384,4,19,,,,DISCHARGED -1565,2022-05-01,11120.327138856614,141,Urgent,2022-05-21,Inconclusive,1565,302,0,8,,,,DISCHARGED -1566,2020-06-07,14214.74078190503,447,Elective,2020-07-04,Inconclusive,1566,196,4,2,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1567,2021-03-17,3988.9770316574472,232,Emergency,2021-04-02,Inconclusive,1567,403,3,19,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1567,2021-02-23,27596.398901714227,426,Emergency,2021-03-24,Abnormal,5973,10,3,18,,,,DISCHARGED -1568,2019-10-15,19055.30829084292,177,Urgent,2019-10-28,Abnormal,1568,233,2,17,,,,DISCHARGED -1569,2021-07-21,3962.3585451220542,151,Emergency,2021-08-04,Inconclusive,1569,385,4,19,,,,DISCHARGED -1570,2022-02-02,7792.850186638831,361,Elective,2022-03-04,Abnormal,1570,194,4,29,,,,DISCHARGED -1571,2021-12-10,14718.8206639204,288,Elective,2022-01-04,Abnormal,1571,470,1,7,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -1572,2020-01-20,20367.02596402093,189,Emergency,2020-02-12,Abnormal,1572,118,0,0,,,,DISCHARGED -1573,2020-07-14,10183.27104472155,473,Urgent,2020-07-20,Abnormal,1573,395,2,23,,,,DISCHARGED -1574,2020-03-25,40537.16596847549,414,Elective,2020-03-30,Abnormal,1574,19,4,23,,,,DISCHARGED -1575,2021-10-27,32676.253443271053,357,Emergency,2021-11-10,Abnormal,1575,260,1,14,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1576,2020-05-19,39659.26128947385,459,Emergency,2020-06-03,Inconclusive,1576,292,0,18,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1577,2020-12-17,8071.724988758223,248,Emergency,2021-01-07,Abnormal,1577,421,2,29,,,,DISCHARGED -1578,2022-04-30,44305.12563629532,257,Urgent,2022-05-23,Abnormal,1578,255,2,25,,,,DISCHARGED -1579,2020-10-31,37522.7936316438,500,Elective,2020-11-09,Abnormal,1579,221,4,9,,,,DISCHARGED -1580,2021-08-19,26124.181564033926,243,Elective,2021-09-01,Inconclusive,1580,392,2,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1581,2021-08-26,49201.887875779714,335,Urgent,2021-09-25,Abnormal,1581,225,1,27,,,,DISCHARGED -1582,2019-06-14,34813.197208903104,323,Urgent,2019-06-21,Abnormal,1582,52,2,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1583,2020-11-23,16905.648702683087,121,Elective,2020-12-11,Normal,1583,427,3,28,,,,DISCHARGED -1584,2018-11-27,49405.83723633517,282,Urgent,2018-12-23,Abnormal,1584,354,1,12,,,,DISCHARGED -1585,2019-11-15,8408.061478502012,202,Urgent,2019-11-22,Inconclusive,1585,499,0,3,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -1586,2023-02-14,40698.308204961126,483,Urgent,2023-03-09,Inconclusive,1586,341,0,12,,,,DISCHARGED -1587,2022-08-09,9059.383911757295,286,Emergency,2022-08-18,Abnormal,1587,363,4,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1588,2020-08-04,32550.981092199014,230,Urgent,2020-08-31,Inconclusive,1588,279,4,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1589,2020-01-01,25062.904694820525,303,Emergency,2020-01-07,Inconclusive,1589,80,3,0,,,,DISCHARGED -1590,2019-06-19,45419.86480615151,368,Emergency,2019-07-09,Abnormal,1590,201,0,4,,,,DISCHARGED -1590,2022-06-04,39064.003103802985,459,Elective,2022-07-03,Normal,6065,157,0,27,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1591,2020-12-06,44771.85624926054,130,Urgent,2020-12-26,Normal,1591,119,0,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -1592,2023-08-28,13357.176322480962,446,Elective,,Abnormal,1592,58,0,16,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1593,2022-11-07,30030.42019546245,339,Emergency,2022-11-28,Normal,1593,493,2,17,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -1593,2019-06-13,42187.0691878531,127,Emergency,2019-06-21,Abnormal,2140,214,1,6,,,,DISCHARGED -1593,2019-08-06,27363.455929256776,305,Urgent,2019-08-20,Normal,5666,127,1,15,,,,DISCHARGED -1594,2022-03-19,28582.90276413069,247,Elective,2022-03-23,Inconclusive,1594,223,3,7,,,,DISCHARGED -1595,2020-01-07,4661.97592514057,489,Elective,2020-01-14,Abnormal,1595,208,2,11,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1596,2022-05-07,49898.20827675171,140,Emergency,2022-06-05,Normal,1596,369,0,13,,,,DISCHARGED -1596,2021-12-12,14276.452978951447,322,Elective,2021-12-28,Abnormal,2820,114,0,18,,,,DISCHARGED -1597,2021-04-17,10594.497573444967,222,Elective,2021-04-25,Abnormal,1597,208,4,10,,,,DISCHARGED -1598,2021-12-25,7799.003444567236,203,Urgent,2022-01-06,Abnormal,1598,13,4,11,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1599,2019-09-14,43533.68721416263,239,Elective,2019-09-30,Abnormal,1599,8,3,12,,,,DISCHARGED -1600,2023-05-11,44350.5286952169,261,Elective,2023-05-28,Inconclusive,1600,39,0,7,,,,DISCHARGED -1601,2021-03-11,41913.25053234611,173,Urgent,2021-03-19,Abnormal,1601,449,3,0,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -1602,2021-10-29,34623.58127952162,428,Emergency,2021-11-14,Abnormal,1602,236,2,8,,,,DISCHARGED -1603,2022-04-06,47618.35565392174,159,Elective,2022-05-06,Abnormal,1603,280,1,27,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1604,2023-08-20,3730.572416681823,206,Urgent,,Normal,1604,358,0,1,,,,OPEN -1605,2023-04-11,8337.67786285797,480,Urgent,2023-04-30,Normal,1605,200,2,13,,,,DISCHARGED -1606,2023-03-24,16449.288806209093,354,Urgent,2023-04-06,Inconclusive,1606,245,0,12,,,,DISCHARGED -1607,2022-11-21,43756.01489579732,226,Urgent,2022-12-14,Normal,1607,277,4,15,,,,DISCHARGED -1608,2022-12-20,49028.82867743158,335,Urgent,2022-12-24,Abnormal,1608,234,3,1,,,,DISCHARGED -1609,2018-12-28,34385.611931837746,469,Elective,2019-01-03,Abnormal,1609,493,4,3,,,,DISCHARGED -1610,2020-07-24,40304.11805818253,449,Elective,2020-08-20,Inconclusive,1610,3,1,11,,,,DISCHARGED -1611,2019-07-06,31352.567947138643,388,Urgent,2019-07-28,Abnormal,1611,153,4,15,,,,DISCHARGED -1612,2019-10-06,21616.487340415264,187,Urgent,2019-11-03,Normal,1612,441,0,9,,,,DISCHARGED -1613,2022-04-18,11546.685093469854,337,Emergency,2022-05-12,Inconclusive,1613,28,4,2,,,,DISCHARGED -1614,2022-09-17,9990.811232952174,243,Urgent,2022-09-18,Inconclusive,1614,108,0,3,,,,DISCHARGED -1615,2019-09-20,14838.197617728732,101,Urgent,2019-09-25,Normal,1615,97,1,5,,,,DISCHARGED -1616,2022-02-04,6600.128643976353,132,Emergency,2022-02-07,Abnormal,1616,214,4,22,,,,DISCHARGED -1617,2023-08-24,13939.455633533002,475,Urgent,2023-09-20,Inconclusive,1617,292,3,4,,,,DISCHARGED -1618,2020-06-17,22622.770977671207,238,Urgent,2020-06-26,Abnormal,1618,74,3,17,,,,DISCHARGED -1618,2022-12-29,32144.19291591066,465,Urgent,2023-01-28,Normal,4240,325,3,2,,,,DISCHARGED -1619,2022-11-11,9732.832837619077,237,Urgent,2022-12-01,Normal,1619,145,4,9,,,,DISCHARGED -1619,2023-10-16,7004.712221292044,179,Emergency,2023-11-05,Normal,8015,127,4,10,,,,DISCHARGED -1620,2022-06-07,46651.11799627453,234,Emergency,2022-06-30,Abnormal,1620,340,4,18,,,,DISCHARGED -1621,2019-02-10,28587.75781766353,253,Elective,2019-02-23,Abnormal,1621,41,0,13,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1622,2022-03-27,17210.356394974835,440,Urgent,2022-04-06,Normal,1622,355,1,20,,,,DISCHARGED -1623,2019-11-16,48063.48989423363,121,Urgent,2019-11-26,Inconclusive,1623,40,3,27,,,,DISCHARGED -1624,2021-03-19,17960.330687829704,478,Urgent,2021-04-06,Abnormal,1624,421,0,10,,,,DISCHARGED -1625,2022-10-21,21001.131138557284,164,Emergency,2022-11-18,Abnormal,1625,33,3,27,,,,DISCHARGED -1626,2022-01-23,39720.17072696117,204,Emergency,2022-02-18,Normal,1626,16,0,20,,,,DISCHARGED -1627,2023-08-08,44924.82665964953,108,Urgent,,Abnormal,1627,164,4,3,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1628,2021-10-01,9929.680402414138,373,Urgent,2021-10-08,Normal,1628,152,3,23,,,,DISCHARGED -1629,2019-06-18,38008.59422479103,220,Emergency,2019-06-24,Abnormal,1629,485,4,21,,,,DISCHARGED -1630,2023-02-10,30444.0359381278,287,Emergency,,Normal,1630,377,3,5,,,,OPEN -1631,2019-07-28,6109.029245576259,401,Elective,2019-08-03,Normal,1631,75,2,16,,,,DISCHARGED -1632,2020-06-23,9032.24588452845,458,Emergency,2020-06-25,Normal,1632,86,0,21,,,,DISCHARGED -1633,2020-02-18,30737.58690067896,286,Urgent,2020-03-06,Inconclusive,1633,116,2,18,,,,DISCHARGED -1634,2021-01-16,19428.59802448125,468,Emergency,2021-02-10,Normal,1634,361,0,12,,,,DISCHARGED -1635,2020-10-11,33636.86245968776,444,Urgent,2020-11-08,Inconclusive,1635,341,1,21,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1636,2021-04-12,29244.57786835185,184,Elective,2021-05-01,Abnormal,1636,468,3,9,,,,DISCHARGED -1637,2023-02-17,33066.425715574056,173,Emergency,2023-03-10,Normal,1637,26,1,28,,,,DISCHARGED -1638,2023-02-13,11767.73144327441,251,Elective,2023-03-07,Inconclusive,1638,312,1,10,,,,DISCHARGED -1639,2020-12-01,42020.81237998765,425,Elective,2020-12-21,Normal,1639,286,0,28,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1640,2020-02-20,28249.404302956627,348,Elective,2020-03-12,Inconclusive,1640,133,2,5,,,,DISCHARGED -1640,2020-10-18,2127.119775493846,164,Emergency,2020-11-12,Abnormal,3431,218,4,1,,,,DISCHARGED -1641,2023-02-06,7111.758125266638,174,Elective,,Abnormal,1641,167,0,0,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,OPEN -1642,2019-07-06,22635.866617515952,292,Urgent,2019-07-14,Inconclusive,1642,97,4,10,,,,DISCHARGED -1643,2023-05-15,13340.210052651226,351,Elective,2023-06-03,Inconclusive,1643,267,1,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -1644,2023-05-21,33533.5820435409,477,Emergency,2023-06-04,Abnormal,1644,236,4,2,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1645,2022-03-31,40549.54544932743,463,Emergency,2022-04-02,Abnormal,1645,308,2,4,,,,DISCHARGED -1646,2021-05-14,31284.744541393306,382,Elective,2021-05-20,Inconclusive,1646,454,0,14,,,,DISCHARGED -1647,2020-08-01,9763.439082978002,396,Urgent,2020-08-02,Inconclusive,1647,393,2,14,,,,DISCHARGED -1648,2019-10-03,40844.41203928748,226,Urgent,2019-10-06,Inconclusive,1648,172,2,3,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1649,2023-09-03,21921.308292920243,267,Emergency,2023-09-29,Normal,1649,400,0,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1649,2023-06-04,15803.855756430356,320,Elective,,Inconclusive,7318,409,2,3,,,,OPEN -1651,2020-11-08,15821.832530223495,437,Emergency,2020-12-05,Inconclusive,1651,468,3,7,,,,DISCHARGED -1652,2019-06-26,39582.886674268826,162,Emergency,2019-07-09,Normal,1652,475,3,6,,,,DISCHARGED -1653,2018-12-31,3325.889943715688,110,Urgent,2019-01-23,Normal,1653,189,3,25,,,,DISCHARGED -1654,2023-02-08,1539.4352789185646,262,Urgent,2023-02-09,Abnormal,1654,121,4,24,,,,DISCHARGED -1655,2018-12-09,15901.473686414514,179,Emergency,2018-12-20,Abnormal,1655,45,2,16,,,,DISCHARGED -1656,2023-10-05,6407.487406102353,413,Urgent,2023-11-01,Abnormal,1656,63,0,14,,,,DISCHARGED -1657,2023-03-23,30413.431082880103,474,Urgent,2023-04-04,Abnormal,1657,129,0,4,,,,DISCHARGED -1658,2022-02-08,28154.494737076755,433,Urgent,2022-02-13,Abnormal,1658,309,4,12,,,,DISCHARGED -1658,2022-10-08,11190.70399174364,168,Emergency,2022-10-27,Inconclusive,8450,362,0,3,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1659,2021-06-06,48143.46994562864,384,Urgent,2021-07-04,Abnormal,1659,192,3,21,,,,DISCHARGED -1660,2020-10-11,35948.56128447213,339,Urgent,2020-11-09,Normal,1660,306,2,16,,,,DISCHARGED -1661,2022-09-23,5079.581673657241,435,Urgent,2022-10-20,Normal,1661,180,0,21,,,,DISCHARGED -1662,2022-02-16,32616.817755984383,136,Elective,2022-02-25,Inconclusive,1662,291,0,16,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -1663,2022-05-14,8653.46498716628,262,Emergency,2022-05-20,Inconclusive,1663,370,1,13,,,,DISCHARGED -1664,2020-02-15,31203.922135856315,189,Elective,2020-03-12,Normal,1664,281,1,13,,,,DISCHARGED -1665,2023-03-17,48876.96397776978,267,Elective,,Abnormal,1665,28,1,16,,,,OPEN -1666,2023-06-06,22267.19192755914,168,Urgent,,Inconclusive,1666,148,2,7,,,,OPEN -1667,2020-11-04,32824.66280310961,157,Elective,2020-12-03,Normal,1667,266,3,1,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1667,2021-04-10,44641.18763242762,331,Elective,2021-04-21,Normal,7988,295,3,25,,,,DISCHARGED -1668,2022-06-07,36296.85633357853,415,Emergency,2022-06-20,Normal,1668,10,3,12,,,,DISCHARGED -1669,2020-02-21,25760.993504867,350,Urgent,2020-03-10,Inconclusive,1669,163,2,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1670,2021-01-17,3361.70180983459,142,Urgent,2021-01-22,Normal,1670,112,2,21,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1671,2021-05-22,46730.33343528532,312,Elective,2021-06-20,Inconclusive,1671,186,1,15,,,,DISCHARGED -1671,2022-02-16,4980.572045257291,499,Elective,2022-03-13,Normal,4731,294,0,29,,,,DISCHARGED -1671,2019-04-15,4426.005007154834,262,Urgent,2019-04-30,Abnormal,9764,231,4,15,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1672,2020-12-16,4001.108014179361,200,Emergency,2021-01-07,Abnormal,1672,226,4,5,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1673,2023-04-20,30930.41716660681,490,Urgent,2023-05-01,Normal,1673,309,0,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -1674,2020-01-13,23598.86083668433,115,Urgent,2020-01-22,Inconclusive,1674,97,1,23,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -1675,2019-11-18,5052.2292107646335,312,Emergency,2019-12-12,Abnormal,1675,54,0,3,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -1677,2023-07-03,43031.03142926738,120,Urgent,,Inconclusive,1677,110,0,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -1678,2022-11-20,42300.672082277386,405,Elective,2022-11-30,Normal,1678,151,4,5,,,,DISCHARGED -1679,2019-10-06,43144.08589750818,235,Emergency,2019-10-28,Abnormal,1679,245,1,3,,,,DISCHARGED -1680,2020-05-16,21697.23315609584,122,Emergency,2020-06-01,Abnormal,1680,405,2,17,,,,DISCHARGED -1681,2018-12-03,19067.614144283914,222,Urgent,2018-12-15,Abnormal,1681,68,4,5,,,,DISCHARGED -1682,2019-04-12,4578.992476601186,199,Emergency,2019-04-25,Normal,1682,311,2,25,,,,DISCHARGED -1683,2020-12-09,2684.244773265752,379,Elective,2020-12-12,Abnormal,1683,288,1,4,,,,DISCHARGED -1684,2019-01-16,5296.7476449354535,495,Emergency,2019-01-24,Inconclusive,1684,249,0,26,,,,DISCHARGED -1685,2021-02-18,27219.886327918648,229,Urgent,2021-03-16,Abnormal,1685,35,3,8,,,,DISCHARGED -1685,2020-09-27,27049.019366713183,212,Elective,2020-10-12,Normal,8611,238,3,10,,,,DISCHARGED -1686,2023-10-22,17485.032450769977,199,Emergency,,Inconclusive,1686,147,1,5,,,,OPEN -1687,2020-09-01,40419.15509498384,471,Emergency,2020-09-02,Abnormal,1687,466,3,29,,,,DISCHARGED -1688,2021-05-12,23695.64148451712,295,Urgent,2021-06-05,Normal,1688,226,2,15,,,,DISCHARGED -1689,2019-10-19,22819.965042485725,172,Urgent,2019-11-04,Abnormal,1689,243,3,18,,,,DISCHARGED -1690,2022-10-11,26331.99711885888,177,Elective,2022-10-22,Abnormal,1690,490,1,10,,,,DISCHARGED -1692,2022-06-19,40026.5742483302,231,Urgent,2022-07-19,Inconclusive,1692,336,1,20,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -1693,2021-05-20,28808.713152131677,461,Elective,2021-06-19,Inconclusive,1693,445,2,14,,,,DISCHARGED -1694,2020-07-18,33327.360290063094,453,Elective,2020-07-24,Abnormal,1694,364,3,25,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1695,2021-11-21,49668.60364698613,430,Emergency,2021-12-11,Normal,1695,490,3,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -1696,2023-09-06,46838.34345875178,180,Elective,2023-10-02,Abnormal,1696,481,0,8,,,,DISCHARGED -1697,2023-07-05,6192.463358169395,404,Urgent,2023-07-15,Abnormal,1697,200,4,23,,,,DISCHARGED -1698,2023-10-17,9109.467333036298,119,Emergency,2023-11-06,Abnormal,1698,153,1,18,,,,DISCHARGED -1699,2019-07-30,11746.0548177155,429,Emergency,2019-08-10,Normal,1699,449,0,24,,,,DISCHARGED -1700,2019-08-02,49627.27990683305,151,Urgent,2019-08-26,Normal,1700,72,1,18,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1701,2022-02-26,33058.53436262671,457,Elective,2022-03-18,Normal,1701,200,0,23,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -1702,2022-10-21,46028.33662326605,170,Urgent,2022-11-13,Abnormal,1702,295,4,25,,,,DISCHARGED -1703,2021-08-31,12728.619152147832,105,Urgent,2021-09-19,Inconclusive,1703,16,0,8,,,,DISCHARGED -1703,2023-03-11,44477.16899635639,162,Emergency,2023-04-03,Normal,8136,128,1,22,,,,DISCHARGED -1704,2023-05-02,1585.6029307854085,272,Emergency,2023-06-01,Inconclusive,1704,216,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1705,2019-05-14,33284.41190849319,322,Elective,2019-05-31,Normal,1705,60,1,9,,,,DISCHARGED -1706,2022-01-30,23552.031014676013,440,Urgent,2022-02-15,Normal,1706,426,2,8,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1707,2023-04-07,41482.60068515046,172,Urgent,2023-04-12,Normal,1707,103,2,18,,,,DISCHARGED -1708,2022-05-28,16679.02069074319,496,Urgent,2022-06-17,Abnormal,1708,41,2,14,,,,DISCHARGED -1709,2023-05-19,22822.99016277693,476,Emergency,2023-06-16,Inconclusive,1709,24,2,18,,,,DISCHARGED -1710,2020-01-08,28339.711203225117,302,Emergency,2020-01-10,Inconclusive,1710,38,4,1,,,,DISCHARGED -1710,2019-11-17,11818.093252196604,214,Urgent,2019-11-24,Abnormal,3753,290,3,9,,,,DISCHARGED -1711,2021-09-07,43572.41576362039,299,Urgent,2021-09-13,Normal,1711,130,3,18,,,,DISCHARGED -1712,2022-12-08,20289.62379154284,494,Urgent,2023-01-06,Normal,1712,497,1,16,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1713,2021-02-17,23931.500144936585,294,Urgent,2021-03-07,Normal,1713,228,0,19,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1714,2020-03-29,31946.37749623787,211,Elective,2020-04-06,Normal,1714,107,1,23,,,,DISCHARGED -1715,2022-10-15,39535.03588260112,182,Elective,2022-10-31,Normal,1715,171,1,20,,,,DISCHARGED -1716,2022-04-01,49155.40764559618,184,Urgent,2022-04-21,Inconclusive,1716,434,1,1,,,,DISCHARGED -1717,2021-05-16,3128.3358006571398,481,Elective,2021-05-31,Abnormal,1717,477,1,18,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1718,2019-02-26,19607.48740318562,174,Urgent,2019-02-27,Abnormal,1718,101,3,16,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -1719,2020-04-07,39106.76178026233,263,Elective,2020-04-08,Abnormal,1719,353,0,17,,,,DISCHARGED -1720,2021-12-14,42165.45122652554,382,Elective,2021-12-20,Inconclusive,1720,11,1,16,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -1721,2023-04-21,17490.76997039526,239,Emergency,2023-05-08,Abnormal,1721,274,3,1,,,,DISCHARGED -1722,2020-12-24,30681.39829776015,179,Emergency,2021-01-15,Inconclusive,1722,100,1,18,,,,DISCHARGED -1723,2021-05-18,19508.68023534052,408,Emergency,2021-05-21,Abnormal,1723,43,2,0,,,,DISCHARGED -1724,2019-09-28,33708.3837467538,120,Urgent,2019-10-08,Abnormal,1724,442,1,10,,,,DISCHARGED -1725,2020-02-25,41605.48316912713,440,Urgent,2020-03-11,Inconclusive,1725,304,1,24,,,,DISCHARGED -1725,2019-01-01,5545.337874746683,495,Urgent,2019-01-31,Normal,4534,444,4,9,,,,DISCHARGED -1726,2022-04-13,42895.64382232488,308,Elective,2022-04-26,Abnormal,1726,16,2,4,,,,DISCHARGED -1727,2022-04-30,32287.266485462696,405,Emergency,2022-05-27,Normal,1727,329,0,15,,,,DISCHARGED -1728,2020-11-14,20089.26616869234,288,Emergency,2020-12-12,Abnormal,1728,56,1,23,,,,DISCHARGED -1729,2019-07-26,49014.336975744256,387,Emergency,2019-08-02,Inconclusive,1729,310,0,4,,,,DISCHARGED -1730,2022-10-20,13087.863934527351,193,Emergency,2022-11-12,Abnormal,1730,496,2,23,,,,DISCHARGED -1731,2020-02-02,25850.433904634367,155,Urgent,2020-02-17,Inconclusive,1731,302,1,22,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1732,2021-04-09,37095.79224097199,199,Emergency,2021-04-11,Abnormal,1732,11,4,11,,,,DISCHARGED -1733,2021-08-04,41069.89692189269,474,Elective,2021-08-14,Abnormal,1733,317,3,3,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1734,2022-04-11,9736.793113344374,202,Urgent,2022-04-18,Abnormal,1734,79,4,22,,,,DISCHARGED -1735,2020-01-30,47967.04292224845,136,Urgent,2020-02-01,Normal,1735,215,4,5,,,,DISCHARGED -1736,2021-02-06,25917.92370801676,278,Emergency,2021-02-11,Abnormal,1736,338,3,18,,,,DISCHARGED -1737,2019-08-13,16520.248829823708,491,Urgent,2019-09-03,Abnormal,1737,263,3,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -1738,2020-12-11,29055.40372254097,238,Elective,2020-12-26,Normal,1738,478,3,11,,,,DISCHARGED -1739,2019-03-05,8741.897068889895,341,Elective,2019-03-28,Abnormal,1739,148,1,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1740,2020-07-31,44432.74777932138,189,Elective,2020-08-24,Inconclusive,1740,80,0,14,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1740,2022-01-31,46231.48230771744,167,Elective,2022-03-01,Normal,7027,214,0,15,,,,DISCHARGED -1741,2021-04-14,14289.055290364904,344,Urgent,2021-04-25,Abnormal,1741,484,3,12,,,,DISCHARGED -1742,2021-01-29,32855.941966081904,247,Elective,2021-02-23,Normal,1742,373,4,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1743,2022-07-03,24956.22097763945,489,Emergency,2022-07-16,Abnormal,1743,463,2,29,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -1744,2020-10-27,49672.33501232845,422,Elective,2020-10-30,Normal,1744,197,3,20,,,,DISCHARGED -1744,2021-02-13,49544.01210865921,133,Elective,2021-03-14,Abnormal,5591,199,4,23,,,,DISCHARGED -1745,2019-10-10,19952.60298426153,335,Urgent,2019-11-05,Normal,1745,24,4,6,,,,DISCHARGED -1746,2023-04-28,14412.032243801204,225,Urgent,2023-05-20,Abnormal,1746,465,1,24,,,,DISCHARGED -1746,2022-07-22,41801.92684003736,239,Urgent,2022-08-17,Normal,6051,88,1,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1747,2020-04-13,33590.01511294825,275,Emergency,2020-05-08,Inconclusive,1747,267,0,19,,,,DISCHARGED -1748,2021-03-08,49930.03160105285,236,Elective,2021-03-15,Inconclusive,1748,142,0,3,,,,DISCHARGED -1749,2018-12-19,15662.350217555424,486,Urgent,2019-01-06,Abnormal,1749,58,2,10,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1750,2023-06-07,31285.156892657167,432,Elective,2023-06-09,Inconclusive,1750,409,2,7,,,,DISCHARGED -1751,2022-04-29,22959.82683395974,262,Urgent,2022-05-20,Inconclusive,1751,488,2,5,,,,DISCHARGED -1752,2020-07-10,44726.75416710159,385,Urgent,2020-07-23,Abnormal,1752,364,2,24,,,,DISCHARGED -1753,2019-08-23,12445.396520202778,132,Elective,2019-08-27,Abnormal,1753,25,4,29,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1754,2023-03-10,24735.61941327937,222,Urgent,2023-03-29,Abnormal,1754,46,4,9,,,,DISCHARGED -1755,2022-07-25,18401.776355382084,381,Urgent,2022-08-05,Inconclusive,1755,287,0,29,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -1756,2022-02-08,22792.62736010912,452,Urgent,2022-03-04,Normal,1756,265,1,6,,,,DISCHARGED -1757,2023-08-17,23703.43028844692,299,Emergency,2023-08-31,Abnormal,1757,15,1,6,,,,DISCHARGED -1758,2020-07-31,18613.166209777763,261,Emergency,2020-08-02,Normal,1758,198,3,3,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1759,2023-01-09,47477.9076836322,428,Urgent,,Abnormal,1759,400,4,2,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,OPEN -1760,2019-07-02,24239.16822315615,108,Urgent,2019-07-20,Normal,1760,406,2,23,,,,DISCHARGED -1761,2022-06-13,37559.36514392631,205,Elective,2022-06-25,Abnormal,1761,281,2,6,,,,DISCHARGED -1762,2021-05-09,12050.859518625664,326,Emergency,2021-05-12,Inconclusive,1762,468,3,3,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1763,2021-03-16,36518.67081941626,348,Emergency,2021-03-29,Abnormal,1763,85,1,12,,,,DISCHARGED -1764,2023-10-23,19298.38207896289,349,Elective,2023-11-21,Abnormal,1764,249,2,19,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -1765,2019-12-13,2605.136395514628,146,Elective,2019-12-26,Abnormal,1765,390,1,16,,,,DISCHARGED -1766,2021-06-12,44045.00829624264,184,Elective,2021-06-22,Inconclusive,1766,269,3,26,,,,DISCHARGED -1767,2023-03-13,10187.720543271913,463,Elective,2023-04-09,Normal,1767,334,1,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1767,2021-03-13,36544.75046404455,311,Elective,2021-03-17,Normal,4218,116,1,16,,,,DISCHARGED -1768,2020-04-24,11766.05827492471,377,Urgent,2020-05-05,Abnormal,1768,6,1,25,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1769,2019-12-24,47630.10051566829,141,Urgent,2020-01-03,Normal,1769,136,2,25,,,,DISCHARGED -1770,2022-06-27,15887.717804693268,234,Urgent,2022-07-12,Abnormal,1770,370,0,3,,,,DISCHARGED -1770,2019-05-08,48466.61597695912,129,Urgent,2019-06-03,Inconclusive,7521,175,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -1771,2019-07-19,4918.746364425382,413,Emergency,2019-08-11,Normal,1771,327,1,29,,,,DISCHARGED -1772,2022-06-17,38030.58842549773,300,Elective,2022-07-10,Normal,1772,497,1,2,,,,DISCHARGED -1773,2020-10-23,45926.57863866224,383,Elective,2020-11-12,Abnormal,1773,314,1,10,,,,DISCHARGED -1774,2022-04-26,17586.22313133439,464,Emergency,2022-05-24,Normal,1774,214,0,2,,,,DISCHARGED -1774,2021-02-15,42636.21118049487,185,Elective,2021-02-25,Inconclusive,8086,476,3,11,,,,DISCHARGED -1775,2021-01-20,8883.185798579063,111,Emergency,2021-02-19,Abnormal,1775,81,2,0,,,,DISCHARGED -1776,2021-12-05,35807.01215756193,419,Urgent,2021-12-27,Inconclusive,1776,222,0,3,,,,DISCHARGED -1778,2023-08-28,13668.24552120096,221,Emergency,,Normal,1778,477,1,13,,,,OPEN -1779,2023-07-06,45716.32803350753,260,Emergency,2023-07-24,Normal,1779,371,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1780,2021-09-26,45528.0743677317,442,Urgent,2021-10-08,Abnormal,1780,422,0,13,,,,DISCHARGED -1781,2023-04-27,23860.374485493845,284,Emergency,,Abnormal,1781,482,0,12,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -1782,2022-05-25,38729.127161801,230,Urgent,2022-06-02,Abnormal,1782,401,3,12,,,,DISCHARGED -1783,2023-04-02,40983.25246829903,260,Emergency,,Normal,1783,442,4,23,,,,OPEN -1784,2020-08-20,25637.02724477805,389,Emergency,2020-09-02,Abnormal,1784,489,2,14,,,,DISCHARGED -1785,2023-03-23,8831.530945090177,462,Elective,,Abnormal,1785,102,3,16,,,,OPEN -1785,2019-11-13,43570.11250217532,468,Emergency,2019-12-05,Inconclusive,5152,272,3,11,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -1786,2021-12-23,43208.57344830517,296,Urgent,2022-01-03,Abnormal,1786,13,4,29,,,,DISCHARGED -1787,2023-04-25,44382.55840928534,251,Elective,2023-05-16,Inconclusive,1787,158,3,21,,,,DISCHARGED -1788,2019-09-01,44916.09826864657,353,Urgent,2019-09-28,Inconclusive,1788,151,0,22,,,,DISCHARGED -1789,2021-04-12,49104.60691172034,332,Emergency,2021-05-05,Inconclusive,1789,482,0,25,,,,DISCHARGED -1790,2020-11-09,39509.626037714654,471,Emergency,2020-11-14,Abnormal,1790,107,1,13,,,,DISCHARGED -1791,2021-06-03,7531.642746334843,470,Emergency,2021-06-19,Abnormal,1791,187,3,11,,,,DISCHARGED -1792,2019-12-27,6588.512196506966,132,Urgent,2020-01-16,Abnormal,1792,300,1,17,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1793,2022-11-21,2295.1865231349657,353,Emergency,2022-12-20,Inconclusive,1793,97,2,3,,,,DISCHARGED -1794,2020-06-19,18566.443042045958,399,Emergency,2020-06-24,Inconclusive,1794,130,0,26,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1795,2022-09-26,37641.013848260205,253,Elective,2022-10-21,Inconclusive,1795,292,2,13,,,,DISCHARGED -1796,2021-02-23,31396.935064698115,481,Elective,2021-03-06,Inconclusive,1796,170,4,18,,,,DISCHARGED -1797,2023-01-06,19899.698202309253,450,Emergency,2023-01-16,Abnormal,1797,423,0,28,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -1798,2019-02-25,15752.505577282309,431,Elective,2019-03-03,Normal,1798,473,2,12,,,,DISCHARGED -1798,2019-05-01,17471.81601389419,401,Elective,2019-05-20,Normal,1988,182,4,24,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -1799,2022-04-28,7140.174881829507,271,Emergency,2022-05-23,Normal,1799,470,2,29,,,,DISCHARGED -1800,2019-11-29,34353.53541581946,433,Urgent,2019-12-22,Normal,1800,363,4,22,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1801,2018-11-05,34521.47185557458,178,Elective,2018-12-04,Inconclusive,1801,38,4,17,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1801,2021-05-26,31408.13641635991,187,Urgent,2021-05-31,Abnormal,4620,14,0,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1801,2022-02-16,6786.236349478734,472,Emergency,2022-03-11,Abnormal,5315,375,1,27,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -1802,2021-12-16,22897.344520048595,184,Elective,2022-01-05,Inconclusive,1802,496,4,5,,,,DISCHARGED -1803,2023-01-05,2554.6947434757785,366,Emergency,,Abnormal,1803,3,4,8,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",OPEN -1804,2023-08-21,9753.597653821844,375,Elective,2023-09-12,Normal,1804,348,0,11,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -1805,2019-09-13,47419.87576436537,326,Elective,2019-10-05,Inconclusive,1805,469,1,18,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1806,2022-09-19,38071.57683517128,337,Elective,2022-10-17,Abnormal,1806,408,3,13,,,,DISCHARGED -1807,2019-07-17,5532.607821408728,270,Emergency,2019-07-31,Normal,1807,396,3,14,,,,DISCHARGED -1807,2021-08-20,17436.021757767616,277,Urgent,2021-09-16,Inconclusive,3032,209,1,10,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1808,2018-12-09,4700.425956265227,276,Emergency,2019-01-08,Inconclusive,1808,160,2,5,,,,DISCHARGED -1809,2022-06-19,29103.992572609222,435,Emergency,2022-06-21,Abnormal,1809,15,0,13,,,,DISCHARGED -1810,2021-05-01,11777.147357721204,315,Urgent,2021-05-27,Inconclusive,1810,492,1,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -1811,2021-09-21,32646.69447758125,161,Emergency,2021-09-30,Inconclusive,1811,425,3,18,,,,DISCHARGED -1812,2021-06-22,35611.2194280443,226,Emergency,2021-07-04,Inconclusive,1812,107,4,19,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1813,2021-09-28,35022.835383073776,187,Elective,2021-10-26,Abnormal,1813,381,3,24,,,,DISCHARGED -1813,2019-07-23,32166.612051579497,379,Urgent,2019-08-03,Inconclusive,2987,449,4,10,,,,DISCHARGED -1813,2023-04-05,10586.566650090606,324,Elective,2023-04-14,Normal,5167,310,0,28,,,,DISCHARGED -1814,2020-12-03,46675.02746064535,447,Elective,2020-12-24,Inconclusive,1814,226,4,23,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1815,2023-03-03,46339.13594657636,199,Elective,2023-03-16,Inconclusive,1815,169,1,16,,,,DISCHARGED -1816,2022-11-06,48879.34401722974,139,Urgent,2022-11-26,Abnormal,1816,33,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -1817,2020-01-16,9606.90312498718,127,Emergency,2020-01-23,Normal,1817,413,2,27,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -1818,2021-03-22,49142.04233175327,163,Emergency,2021-04-17,Inconclusive,1818,250,1,26,,,,DISCHARGED -1818,2020-01-02,6005.408027048361,411,Elective,2020-01-30,Normal,3084,246,0,16,,,,DISCHARGED -1819,2022-10-15,40451.95928616724,497,Emergency,2022-11-04,Inconclusive,1819,268,1,22,,,,DISCHARGED -1820,2021-07-11,20185.63560666859,431,Elective,2021-07-31,Inconclusive,1820,140,2,2,,,,DISCHARGED -1821,2021-10-11,12387.11981438794,151,Urgent,2021-10-24,Abnormal,1821,273,0,13,,,,DISCHARGED -1822,2023-10-16,39747.99908426908,156,Elective,,Abnormal,1822,415,3,26,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",OPEN -1823,2020-04-30,10645.75325129062,399,Emergency,2020-05-26,Inconclusive,1823,95,2,6,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1824,2022-07-21,15742.940946263932,347,Emergency,2022-07-30,Inconclusive,1824,226,0,24,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -1825,2020-02-14,40433.10369339495,122,Elective,2020-02-27,Inconclusive,1825,378,4,18,,,,DISCHARGED -1826,2020-01-27,14557.977822890807,106,Emergency,2020-02-03,Abnormal,1826,38,1,2,,,,DISCHARGED -1827,2021-04-20,19844.044740370973,278,Emergency,2021-05-12,Abnormal,1827,301,0,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1828,2022-11-15,38074.05939662491,355,Elective,2022-11-17,Abnormal,1828,499,1,25,,,,DISCHARGED -1829,2019-07-04,15488.79306105153,432,Elective,2019-08-03,Abnormal,1829,28,4,16,,,,DISCHARGED -1830,2019-03-09,31240.501992157708,426,Emergency,2019-04-05,Inconclusive,1830,445,0,8,,,,DISCHARGED -1831,2023-04-17,17959.755087190377,365,Urgent,2023-04-25,Abnormal,1831,496,3,21,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1832,2022-05-02,39247.26840902522,496,Elective,2022-06-01,Abnormal,1832,476,2,5,,,,DISCHARGED -1833,2020-06-02,37119.01527783798,305,Elective,2020-06-19,Abnormal,1833,317,0,23,,,,DISCHARGED -1834,2022-02-28,46994.167365844194,451,Emergency,2022-03-10,Abnormal,1834,244,4,26,,,,DISCHARGED -1835,2019-09-25,19894.73879602928,208,Urgent,2019-10-03,Normal,1835,235,0,20,,,,DISCHARGED -1836,2019-04-13,16339.485108133296,346,Urgent,2019-05-09,Normal,1836,184,1,8,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -1837,2021-08-18,8722.9907593805,253,Emergency,2021-09-04,Normal,1837,271,0,26,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -1838,2021-06-03,32316.35635606747,303,Urgent,2021-06-06,Abnormal,1838,439,3,4,,,,DISCHARGED -1839,2023-06-02,4348.041193289953,388,Urgent,,Normal,1839,235,0,1,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",OPEN -1840,2019-02-16,17002.03878733363,449,Emergency,2019-03-06,Inconclusive,1840,238,2,21,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -1840,2019-09-08,31484.254282814152,497,Urgent,2019-09-14,Abnormal,3773,376,0,14,,,,DISCHARGED -1841,2023-04-13,46295.82039528607,498,Urgent,,Normal,1841,265,1,8,,,,OPEN -1842,2023-07-20,40410.80646270186,238,Urgent,2023-08-15,Normal,1842,413,0,18,,,,DISCHARGED -1842,2023-03-08,19327.59177761065,476,Urgent,2023-03-09,Normal,5646,408,3,9,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1843,2022-03-24,4284.597728195915,213,Urgent,2022-04-04,Abnormal,1843,358,4,3,,,,DISCHARGED -1844,2023-03-27,20774.565915105068,482,Urgent,2023-04-03,Abnormal,1844,339,0,9,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -1846,2019-12-15,46711.698029371306,394,Elective,2020-01-12,Normal,1846,388,0,26,,,,DISCHARGED -1847,2021-10-23,33509.58365506775,400,Urgent,2021-10-31,Abnormal,1847,64,2,7,,,,DISCHARGED -1848,2023-09-28,10338.40689083627,322,Elective,2023-10-26,Inconclusive,1848,477,3,21,,,,DISCHARGED -1848,2018-11-02,22533.32023233502,147,Elective,2018-11-20,Normal,1919,176,4,12,,,,DISCHARGED -1849,2021-10-30,8601.427725112477,121,Urgent,2021-11-03,Inconclusive,1849,2,1,6,,,,DISCHARGED -1850,2020-06-03,40317.75495926055,141,Urgent,2020-06-07,Abnormal,1850,428,0,6,,,,DISCHARGED -1851,2019-09-19,36394.03514975964,437,Urgent,2019-09-30,Inconclusive,1851,141,4,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -1852,2020-06-07,2943.0267782070614,195,Emergency,2020-06-13,Inconclusive,1852,375,1,14,,,,DISCHARGED -1853,2023-04-02,33696.09719762407,156,Emergency,,Inconclusive,1853,157,3,11,,,,OPEN -1854,2023-02-25,13441.01963869145,348,Emergency,2023-03-09,Abnormal,1854,497,3,15,,,,DISCHARGED -1855,2023-01-23,25622.162798918784,332,Urgent,2023-02-05,Abnormal,1855,323,4,5,,,,DISCHARGED -1856,2020-06-14,9920.695809958854,351,Elective,2020-07-07,Normal,1856,145,1,27,,,,DISCHARGED -1857,2021-02-07,28425.22694268,479,Elective,2021-02-19,Inconclusive,1857,445,3,8,,,,DISCHARGED -1858,2018-11-25,24452.80579696671,291,Elective,2018-12-21,Normal,1858,292,4,2,,,,DISCHARGED -1859,2020-08-04,47317.310855331016,453,Emergency,2020-08-08,Normal,1859,152,3,7,,,,DISCHARGED -1860,2019-04-24,22999.625918643214,121,Elective,2019-05-22,Normal,1860,431,3,6,,,,DISCHARGED -1861,2023-02-16,28562.1130136861,382,Elective,2023-02-26,Inconclusive,1861,192,3,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -1862,2022-02-20,49559.84190109701,288,Urgent,2022-03-05,Inconclusive,1862,436,2,25,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1863,2020-01-07,11008.533386828947,266,Emergency,2020-01-28,Inconclusive,1863,493,1,12,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1864,2019-07-01,44139.10380111014,397,Urgent,2019-07-08,Abnormal,1864,462,4,18,,,,DISCHARGED -1864,2020-11-19,46178.69739013859,167,Emergency,2020-11-30,Normal,7770,72,4,29,,,,DISCHARGED -1865,2023-01-11,7105.675175599059,467,Emergency,,Normal,1865,398,1,6,,,,OPEN -1866,2023-02-25,41242.35173047311,154,Urgent,,Inconclusive,1866,304,1,9,,,,OPEN -1867,2023-10-15,3072.338808929336,231,Urgent,2023-10-19,Normal,1867,376,1,24,,,,DISCHARGED -1868,2021-11-01,16417.387415955425,280,Elective,2021-11-30,Normal,1868,343,1,11,,,,DISCHARGED -1868,2019-03-15,39242.05464486015,156,Elective,2019-04-01,Normal,4641,451,0,25,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -1869,2021-06-23,20359.316840134477,254,Urgent,2021-06-30,Abnormal,1869,139,4,2,,,,DISCHARGED -1870,2022-07-28,4630.373225070944,287,Elective,2022-08-07,Abnormal,1870,186,0,25,,,,DISCHARGED -1871,2020-07-23,20754.495290162788,427,Emergency,2020-08-22,Normal,1871,292,3,24,,,,DISCHARGED -1872,2019-09-15,28695.928883616696,142,Elective,2019-10-15,Inconclusive,1872,60,3,28,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -1873,2019-07-19,43919.10652521338,106,Emergency,2019-07-24,Inconclusive,1873,484,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1874,2019-03-10,27564.73570021476,162,Urgent,2019-04-02,Normal,1874,426,3,11,,,,DISCHARGED -1875,2022-03-10,9731.910735275478,349,Elective,2022-03-12,Inconclusive,1875,379,1,18,,,,DISCHARGED -1876,2021-06-18,7843.536505201325,127,Urgent,2021-06-20,Normal,1876,197,0,14,,,,DISCHARGED -1877,2021-06-09,31934.68531826172,393,Emergency,2021-06-29,Abnormal,1877,294,1,7,,,,DISCHARGED -1878,2021-05-18,48910.62014398547,105,Elective,2021-06-07,Abnormal,1878,439,3,11,,,,DISCHARGED -1879,2019-09-14,41199.28111607103,140,Elective,2019-10-01,Normal,1879,318,0,19,,,,DISCHARGED -1880,2019-08-18,26881.39320250615,482,Elective,2019-08-26,Inconclusive,1880,301,1,5,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -1881,2019-06-18,19397.21079566613,278,Elective,2019-06-20,Abnormal,1881,343,4,27,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1882,2023-09-29,41082.13669718514,484,Elective,2023-10-13,Abnormal,1882,10,1,9,,,,DISCHARGED -1883,2019-07-28,18696.09480430217,163,Emergency,2019-07-29,Inconclusive,1883,61,3,1,,,,DISCHARGED -1884,2019-07-08,6663.714835225604,484,Emergency,2019-08-03,Normal,1884,332,0,23,,,,DISCHARGED -1885,2020-08-27,28977.6463860359,181,Elective,2020-09-16,Abnormal,1885,225,4,12,,,,DISCHARGED -1886,2020-05-06,17769.120841650492,191,Emergency,2020-05-31,Inconclusive,1886,152,0,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1887,2022-12-27,42385.43544997359,398,Emergency,2023-01-13,Normal,1887,198,4,6,,,,DISCHARGED -1888,2023-06-15,45793.97348687594,370,Elective,2023-07-04,Normal,1888,51,0,7,,,,DISCHARGED -1889,2019-07-14,12326.52289143118,492,Elective,2019-07-22,Inconclusive,1889,259,3,22,,,,DISCHARGED -1890,2021-02-01,44194.43935454828,310,Elective,2021-02-09,Normal,1890,58,4,15,,,,DISCHARGED -1891,2020-01-22,1708.0346828317952,157,Elective,2020-02-14,Abnormal,1891,71,2,10,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1892,2019-07-11,32186.121115637376,381,Elective,2019-08-10,Abnormal,1892,147,0,25,,,,DISCHARGED -1893,2020-05-29,29718.08361296356,424,Urgent,2020-06-10,Normal,1893,348,0,3,,,,DISCHARGED -1894,2021-06-19,19433.579581121485,345,Emergency,2021-06-22,Abnormal,1894,62,1,16,,,,DISCHARGED -1895,2019-04-12,27781.642165398494,141,Elective,2019-04-18,Abnormal,1895,309,4,15,,,,DISCHARGED -1896,2020-09-16,45518.72508291688,408,Emergency,2020-10-05,Normal,1896,372,2,18,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1897,2021-12-27,14969.634638600914,463,Elective,2022-01-08,Inconclusive,1897,242,3,22,,,,DISCHARGED -1898,2023-08-12,11847.724675739692,473,Emergency,,Inconclusive,1898,492,1,26,,,,OPEN -1899,2019-09-27,1376.2348507610157,498,Emergency,2019-10-25,Normal,1899,365,2,10,,,,DISCHARGED -1900,2022-04-27,11580.471042970674,460,Emergency,2022-05-26,Inconclusive,1900,329,4,6,,,,DISCHARGED -1900,2022-03-25,8071.719887739294,397,Urgent,2022-04-19,Abnormal,9193,106,2,26,,,,DISCHARGED -1901,2018-12-31,21757.650788310628,171,Elective,2019-01-16,Normal,1901,225,0,12,,,,DISCHARGED -1901,2021-03-15,24380.98707844641,354,Urgent,2021-03-24,Abnormal,7949,312,0,18,,,,DISCHARGED -1902,2019-02-21,23058.760460206624,413,Urgent,2019-03-18,Inconclusive,1902,217,1,16,,,,DISCHARGED -1903,2021-02-28,39792.83306932154,329,Elective,2021-03-01,Abnormal,1903,424,4,25,,,,DISCHARGED -1904,2021-11-22,35540.05493652951,482,Urgent,2021-12-04,Normal,1904,240,4,24,,,,DISCHARGED -1905,2019-09-02,29942.22167699223,214,Emergency,2019-09-08,Abnormal,1905,258,2,27,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -1906,2020-06-04,9854.047808583182,473,Emergency,2020-07-01,Normal,1906,375,1,21,,,,DISCHARGED -1907,2019-12-24,36121.9405302333,144,Emergency,2020-01-04,Inconclusive,1907,261,4,12,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -1908,2019-11-28,33913.757284865686,153,Urgent,2019-12-27,Normal,1908,4,0,28,,,,DISCHARGED -1909,2023-05-17,27543.518758783204,199,Emergency,,Normal,1909,260,2,11,,,,OPEN -1910,2020-11-07,1535.7776483752568,113,Elective,2020-11-25,Inconclusive,1910,53,3,6,,,,DISCHARGED -1911,2020-08-19,12551.33538683973,428,Emergency,2020-08-30,Inconclusive,1911,46,0,0,,,,DISCHARGED -1912,2020-12-17,47502.03291856158,300,Urgent,2020-12-28,Normal,1912,214,1,0,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1913,2023-02-18,11116.763831547913,234,Elective,,Abnormal,1913,176,4,19,,,,OPEN -1914,2020-07-23,18089.911803438685,344,Urgent,2020-08-10,Abnormal,1914,8,0,22,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1915,2018-11-17,10170.08559278319,206,Emergency,2018-11-20,Inconclusive,1915,98,3,13,,,,DISCHARGED -1916,2023-05-03,13252.430586321976,406,Emergency,,Abnormal,1916,19,3,26,,,,OPEN -1917,2021-09-17,41458.66099156509,211,Elective,2021-10-10,Inconclusive,1917,377,1,14,,,,DISCHARGED -1918,2023-08-12,36576.6201263894,222,Emergency,,Abnormal,1918,240,0,10,,,,OPEN -1920,2021-11-10,49140.93556123616,140,Emergency,2021-11-28,Inconclusive,1920,60,2,23,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1921,2022-08-05,25154.13254782006,386,Elective,2022-08-11,Normal,1921,378,0,25,,,,DISCHARGED -1921,2019-08-27,34689.41647819316,447,Urgent,2019-09-13,Abnormal,7638,489,3,8,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1922,2021-03-02,40011.51641921789,421,Urgent,2021-03-24,Normal,1922,418,1,16,,,,DISCHARGED -1923,2019-08-03,45713.36467994517,324,Urgent,2019-08-26,Normal,1923,177,1,3,,,,DISCHARGED -1924,2019-02-04,46673.20401727847,331,Emergency,2019-02-16,Abnormal,1924,337,2,19,,,,DISCHARGED -1925,2022-05-18,49467.41146821703,492,Emergency,2022-05-31,Inconclusive,1925,61,1,18,,,,DISCHARGED -1926,2019-01-30,42234.98979534442,258,Elective,2019-02-28,Abnormal,1926,144,1,6,,,,DISCHARGED -1927,2019-05-29,42561.29694819286,288,Emergency,2019-06-20,Inconclusive,1927,215,1,0,,,,DISCHARGED -1928,2022-08-03,21587.36159991745,246,Urgent,2022-08-16,Normal,1928,2,1,8,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -1929,2020-08-10,5184.076303545168,467,Emergency,2020-08-28,Normal,1929,159,1,12,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -1930,2020-11-07,42582.56961924691,171,Elective,2020-11-30,Abnormal,1930,226,3,23,,,,DISCHARGED -1931,2022-10-01,9350.316427765074,195,Urgent,2022-10-25,Inconclusive,1931,485,0,1,,,,DISCHARGED -1931,2021-05-09,19307.396751309218,117,Urgent,2021-06-06,Inconclusive,5425,268,4,1,,,,DISCHARGED -1931,2022-06-22,4712.908215969233,311,Elective,2022-07-09,Normal,5553,119,1,23,,,,DISCHARGED -1932,2022-04-08,28435.24023485244,498,Urgent,2022-04-20,Normal,1932,380,4,26,,,,DISCHARGED -1933,2020-06-18,29578.80018017523,103,Emergency,2020-07-03,Normal,1933,494,4,29,,,,DISCHARGED -1934,2023-08-24,10779.594504172885,224,Emergency,2023-09-15,Inconclusive,1934,88,3,14,,,,DISCHARGED -1934,2022-10-01,49066.3508760399,104,Urgent,2022-10-05,Inconclusive,7120,328,1,16,,,,DISCHARGED -1935,2018-12-31,30744.71202458943,213,Urgent,2019-01-16,Normal,1935,67,4,12,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1935,2023-08-10,12955.51857584719,423,Emergency,2023-08-30,Abnormal,7023,397,1,6,,,,DISCHARGED -1936,2023-09-01,48012.95577113939,140,Emergency,2023-09-03,Normal,1936,356,2,8,,,,DISCHARGED -1937,2021-10-17,19321.8685798229,176,Urgent,2021-10-27,Inconclusive,1937,97,2,11,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1938,2018-11-14,23469.70102115066,107,Elective,2018-11-30,Inconclusive,1938,266,2,2,,,,DISCHARGED -1939,2021-01-20,42667.44926077702,165,Urgent,2021-01-29,Abnormal,1939,104,4,22,,,,DISCHARGED -1940,2022-05-19,6844.30269955517,462,Emergency,2022-06-10,Inconclusive,1940,439,2,21,,,,DISCHARGED -1941,2020-12-15,4186.133942069935,208,Emergency,2020-12-17,Abnormal,1941,322,3,14,,,,DISCHARGED -1942,2021-05-28,44681.11732429371,330,Emergency,2021-06-04,Inconclusive,1942,122,3,6,,,,DISCHARGED -1943,2023-03-14,42797.493004043965,179,Emergency,2023-03-16,Inconclusive,1943,475,4,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1944,2022-05-10,48005.89190873987,312,Elective,2022-05-30,Abnormal,1944,28,1,25,,,,DISCHARGED -1945,2021-07-15,24522.665638630267,116,Elective,2021-07-29,Inconclusive,1945,136,0,0,,,,DISCHARGED -1946,2023-03-03,9934.100792799354,138,Emergency,,Abnormal,1946,194,1,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",OPEN -1947,2020-10-01,34720.03167714135,323,Elective,2020-10-29,Normal,1947,408,1,18,,,,DISCHARGED -1948,2021-10-31,17613.03226914178,230,Elective,2021-11-15,Inconclusive,1948,225,1,15,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1949,2018-11-07,11281.55527316713,192,Urgent,2018-11-15,Inconclusive,1949,331,1,9,,,,DISCHARGED -1950,2021-10-13,16824.263823389083,127,Urgent,2021-10-18,Normal,1950,169,0,0,,,,DISCHARGED -1951,2022-08-30,18360.45321422453,201,Elective,2022-09-23,Normal,1951,8,2,4,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1951,2023-08-31,17611.86285714769,191,Urgent,2023-09-28,Normal,2708,462,1,2,,,,DISCHARGED -1952,2020-07-09,2406.864973537379,329,Elective,2020-07-22,Inconclusive,1952,39,3,16,,,,DISCHARGED -1953,2018-12-09,9898.757583020364,176,Elective,2018-12-20,Normal,1953,24,4,17,,,,DISCHARGED -1954,2021-12-06,3428.4048839912057,128,Elective,2021-12-20,Abnormal,1954,260,4,25,,,,DISCHARGED -1955,2023-05-03,42042.27409647247,129,Urgent,2023-06-01,Inconclusive,1955,394,3,20,,,,DISCHARGED -1956,2023-03-06,7754.467222462754,163,Elective,2023-03-21,Inconclusive,1956,442,1,26,,,,DISCHARGED -1957,2023-06-18,45173.32323819144,131,Emergency,2023-06-27,Normal,1957,225,0,18,,,,DISCHARGED -1958,2023-10-17,14200.79791915669,217,Urgent,,Inconclusive,1958,471,2,21,,,,OPEN -1959,2020-03-28,37892.66794147765,305,Emergency,2020-04-03,Abnormal,1959,123,4,24,,,,DISCHARGED -1960,2021-06-16,42858.29550284436,360,Urgent,2021-07-12,Inconclusive,1960,462,2,21,,,,DISCHARGED -1961,2022-05-12,21138.61470352916,170,Urgent,2022-05-24,Normal,1961,37,0,17,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1962,2022-08-17,9588.89347540396,417,Emergency,2022-08-22,Inconclusive,1962,327,4,15,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1963,2020-04-25,4878.929466918511,386,Urgent,2020-05-18,Abnormal,1963,250,2,1,,,,DISCHARGED -1964,2023-08-19,38415.98461518616,168,Emergency,2023-09-16,Normal,1964,388,0,14,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1965,2021-06-18,29906.83494316573,340,Emergency,2021-06-29,Normal,1965,175,2,12,,,,DISCHARGED -1966,2022-06-08,28905.452630692063,360,Urgent,2022-06-09,Normal,1966,89,1,12,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1967,2021-09-09,34476.619431206105,183,Urgent,2021-09-12,Inconclusive,1967,401,0,15,,,,DISCHARGED -1968,2018-11-02,1566.8945187909271,319,Urgent,2018-11-11,Normal,1968,453,2,7,,,,DISCHARGED -1969,2023-03-12,35933.799906807515,473,Elective,,Abnormal,1969,36,1,10,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,OPEN -1970,2019-09-06,13793.893093478908,281,Elective,2019-09-30,Normal,1970,315,1,7,,,,DISCHARGED -1971,2019-09-25,34066.04478907022,126,Elective,2019-10-21,Abnormal,1971,175,0,21,,,,DISCHARGED -1972,2019-11-29,7688.95366865212,453,Emergency,2019-12-04,Normal,1972,460,3,9,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1973,2022-02-08,35929.75453249108,191,Elective,2022-02-11,Normal,1973,283,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1974,2019-12-01,2634.3452079374347,141,Urgent,2019-12-19,Abnormal,1974,452,0,0,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1975,2021-10-17,41769.83077168575,259,Elective,2021-11-07,Inconclusive,1975,460,1,11,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -1976,2021-06-08,36799.51692561363,496,Elective,2021-07-03,Normal,1976,80,1,8,,,,DISCHARGED -1977,2023-02-13,47961.68199869757,393,Urgent,2023-02-18,Inconclusive,1977,113,0,4,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1978,2022-04-28,35550.18738299962,162,Elective,2022-05-26,Inconclusive,1978,39,3,8,,,,DISCHARGED -1980,2021-11-17,22090.139286092104,337,Elective,2021-11-27,Abnormal,1980,300,4,15,,,,DISCHARGED -1981,2021-01-04,16385.282344828614,160,Elective,2021-01-21,Abnormal,1981,223,2,17,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1982,2021-01-20,9098.922491055697,240,Urgent,2021-02-17,Abnormal,1982,317,0,29,,,,DISCHARGED -1983,2021-11-01,27646.57878743372,173,Urgent,2021-11-22,Normal,1983,348,4,7,,,,DISCHARGED -1984,2018-12-27,4990.600989418026,418,Urgent,2019-01-10,Normal,1984,114,4,22,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1985,2020-09-04,32909.25647965637,249,Elective,2020-09-22,Inconclusive,1985,185,1,10,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -1986,2018-10-30,46316.393646287564,378,Elective,2018-11-10,Inconclusive,1986,322,2,29,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1987,2019-04-23,34730.572446504884,220,Elective,2019-04-26,Abnormal,1987,55,0,19,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1989,2022-09-23,5814.698960747643,176,Urgent,2022-10-18,Inconclusive,1989,39,1,18,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1990,2023-01-15,48900.028144822645,426,Elective,,Inconclusive,1990,353,1,3,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,OPEN -1991,2022-08-06,49387.20965576066,324,Emergency,2022-08-14,Inconclusive,1991,39,3,19,,,,DISCHARGED -1992,2020-07-20,47932.91760613315,287,Urgent,2020-07-29,Abnormal,1992,346,4,25,,,,DISCHARGED -1993,2021-08-21,14849.3602948883,127,Urgent,2021-08-24,Normal,1993,460,0,9,,,,DISCHARGED -1993,2018-11-17,32225.36731480178,398,Elective,2018-11-28,Abnormal,4151,236,0,23,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1993,2022-09-25,18024.03197837031,243,Elective,2022-09-28,Inconclusive,5911,288,0,12,,,,DISCHARGED -1993,2019-08-11,39647.521929729446,158,Urgent,2019-08-13,Normal,8208,261,1,28,,,,DISCHARGED -1994,2018-12-12,8999.511383111498,381,Urgent,2018-12-23,Normal,1994,215,3,19,,,,DISCHARGED -1995,2022-05-15,11937.70044994392,220,Elective,2022-06-12,Inconclusive,1995,146,2,13,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1996,2021-08-29,24318.936183062666,184,Elective,2021-09-25,Inconclusive,1996,335,1,20,,,,DISCHARGED -1996,2019-04-06,48588.4877518146,443,Urgent,2019-04-18,Normal,6616,167,2,1,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1997,2019-08-16,18255.99630654858,270,Urgent,2019-09-04,Abnormal,1997,91,3,28,,,,DISCHARGED -1998,2023-10-22,34897.339312040254,217,Emergency,2023-11-06,Normal,1998,352,4,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1999,2019-06-19,14839.536433999165,245,Elective,2019-07-15,Inconclusive,1999,58,0,6,,,,DISCHARGED -1999,2018-12-17,35469.8700217584,446,Emergency,2019-01-08,Normal,5841,58,2,18,,,,DISCHARGED -2000,2022-03-16,10407.995137039889,427,Elective,2022-03-24,Inconclusive,2000,303,1,29,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2001,2023-08-19,14823.582168557352,315,Emergency,2023-09-05,Normal,2001,168,2,29,,,,DISCHARGED -2002,2020-02-27,7505.183786862262,351,Urgent,2020-03-28,Normal,2002,268,4,16,,,,DISCHARGED -2003,2018-11-26,24259.419486427603,267,Urgent,2018-12-10,Abnormal,2003,362,0,15,,,,DISCHARGED -2004,2021-10-13,40297.07275956278,174,Elective,2021-10-19,Normal,2004,44,2,12,,,,DISCHARGED -2005,2021-09-03,36238.50343741295,314,Urgent,2021-09-15,Abnormal,2005,344,4,23,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -2006,2021-06-16,2700.555676511574,234,Elective,2021-06-29,Normal,2006,180,1,23,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2007,2020-12-28,31137.503276117357,262,Emergency,2021-01-03,Inconclusive,2007,169,3,21,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2008,2022-03-19,48876.89504731091,317,Elective,2022-03-25,Abnormal,2008,355,1,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -2009,2021-02-17,27650.223057620424,179,Urgent,2021-02-25,Inconclusive,2009,190,0,25,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -2010,2020-08-10,27246.935549930426,446,Elective,2020-09-04,Normal,2010,154,1,26,,,,DISCHARGED -2011,2021-10-17,8549.06438901529,321,Urgent,2021-11-10,Normal,2011,421,1,17,,,,DISCHARGED -2012,2019-01-03,41076.0628395771,358,Elective,2019-01-26,Inconclusive,2012,187,1,20,,,,DISCHARGED -2013,2019-05-29,42272.42958083964,355,Elective,2019-06-09,Normal,2013,6,1,11,,,,DISCHARGED -2014,2020-08-15,19975.2298527301,398,Urgent,2020-08-27,Abnormal,2014,132,0,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2015,2022-08-21,2719.602968915492,439,Elective,2022-09-12,Normal,2015,234,4,24,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2016,2022-02-01,40753.16388517093,356,Elective,2022-03-01,Normal,2016,44,2,0,,,,DISCHARGED -2017,2022-05-30,27626.17716229101,195,Emergency,2022-06-19,Abnormal,2017,313,3,14,,,,DISCHARGED -2018,2021-04-23,16246.593072989095,107,Elective,2021-04-28,Normal,2018,248,2,2,,,,DISCHARGED -2019,2019-04-04,45281.985279707456,114,Emergency,2019-05-02,Normal,2019,498,2,5,,,,DISCHARGED -2020,2021-12-19,9260.447952279146,483,Elective,2022-01-15,Normal,2020,30,3,13,,,,DISCHARGED -2021,2023-05-16,1071.456127337255,360,Emergency,2023-06-02,Abnormal,2021,22,0,22,,,,DISCHARGED -2022,2020-08-20,32388.093844520277,214,Elective,2020-09-10,Inconclusive,2022,425,3,5,,,,DISCHARGED -2023,2023-08-22,37191.461034564745,276,Emergency,,Inconclusive,2023,393,0,0,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -2024,2021-12-02,22831.381895438542,446,Urgent,2021-12-19,Normal,2024,159,2,19,,,,DISCHARGED -2025,2021-06-28,45513.53067008454,263,Emergency,2021-07-02,Inconclusive,2025,362,0,5,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2026,2019-05-01,13800.490493355994,205,Urgent,2019-05-22,Inconclusive,2026,436,4,7,,,,DISCHARGED -2026,2019-05-03,5905.662071404492,108,Urgent,2019-05-22,Abnormal,4090,157,3,25,,,,DISCHARGED -2027,2022-04-24,48673.839489838894,269,Emergency,2022-05-20,Inconclusive,2027,38,4,14,,,,DISCHARGED -2027,2019-10-31,24587.021678844783,415,Urgent,2019-11-23,Inconclusive,2550,414,2,13,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2028,2023-10-19,41322.48311537493,247,Emergency,,Abnormal,2028,81,3,15,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -2029,2023-08-21,23590.442974111906,240,Emergency,2023-09-15,Inconclusive,2029,355,2,19,,,,DISCHARGED -2031,2023-05-11,2314.8431806592434,158,Elective,2023-05-24,Normal,2031,257,4,22,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2032,2019-01-29,22780.579535368885,109,Elective,2019-02-21,Normal,2032,205,2,15,,,,DISCHARGED -2033,2019-01-19,11583.245672978226,370,Emergency,2019-02-17,Inconclusive,2033,76,3,26,,,,DISCHARGED -2034,2021-04-05,20276.82439225447,282,Urgent,2021-05-01,Inconclusive,2034,476,3,18,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2035,2022-08-19,16532.926665381274,450,Urgent,2022-08-23,Normal,2035,11,2,23,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2036,2019-04-22,10363.253008887945,183,Emergency,2019-05-21,Abnormal,2036,294,3,0,,,,DISCHARGED -2037,2020-01-11,38265.866503436126,103,Elective,2020-01-18,Inconclusive,2037,449,3,3,,,,DISCHARGED -2038,2019-09-19,20246.780500469053,269,Elective,2019-10-16,Abnormal,2038,223,2,23,,,,DISCHARGED -2039,2020-06-25,45306.20768750641,413,Elective,2020-07-10,Abnormal,2039,12,4,9,,,,DISCHARGED -2040,2023-03-31,41406.32685394251,447,Elective,2023-04-03,Abnormal,2040,45,3,19,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2041,2020-03-14,4275.88415481029,305,Elective,2020-04-03,Inconclusive,2041,154,3,17,,,,DISCHARGED -2042,2020-05-26,49758.882336384384,270,Urgent,2020-06-11,Normal,2042,112,3,1,,,,DISCHARGED -2043,2021-08-28,5540.501871673423,163,Elective,2021-09-03,Inconclusive,2043,232,3,3,,,,DISCHARGED -2043,2023-03-01,15615.09297550578,156,Urgent,2023-03-05,Normal,3294,16,2,14,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -2044,2020-11-21,23419.25780163656,203,Urgent,2020-12-18,Abnormal,2044,359,4,28,,,,DISCHARGED -2044,2021-06-14,15804.647106077038,303,Urgent,2021-06-17,Inconclusive,3490,222,4,3,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -2045,2019-03-21,31536.83911458599,320,Emergency,2019-04-10,Inconclusive,2045,353,0,15,,,,DISCHARGED -2046,2021-03-12,10827.12339915266,469,Urgent,2021-03-18,Abnormal,2046,187,3,14,,,,DISCHARGED -2047,2022-04-02,26351.518306921786,256,Elective,2022-04-14,Normal,2047,447,3,17,,,,DISCHARGED -2048,2022-06-27,5348.734302659625,457,Emergency,2022-07-05,Normal,2048,343,0,6,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2049,2020-12-28,48362.08001340964,101,Elective,2021-01-03,Abnormal,2049,364,4,14,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2050,2021-07-25,21854.0146281259,375,Emergency,2021-08-02,Abnormal,2050,162,1,21,,,,DISCHARGED -2051,2020-12-08,9925.67313429751,341,Urgent,2020-12-26,Normal,2051,495,1,10,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2052,2020-11-14,15959.371385755869,170,Urgent,2020-11-21,Abnormal,2052,325,4,18,,,,DISCHARGED -2053,2023-08-24,41368.118978286926,500,Elective,,Abnormal,2053,466,3,7,,,,OPEN -2054,2021-10-16,48541.850205770046,371,Elective,2021-11-15,Normal,2054,413,1,23,,,,DISCHARGED -2055,2023-03-14,8377.553044992927,419,Elective,2023-03-22,Normal,2055,454,2,0,,,,DISCHARGED -2056,2022-04-10,39921.51704733342,245,Urgent,2022-04-21,Inconclusive,2056,73,2,2,,,,DISCHARGED -2057,2022-05-24,14789.310597157544,261,Urgent,2022-05-31,Normal,2057,232,0,4,,,,DISCHARGED -2058,2020-11-06,45704.80291242897,158,Emergency,2020-11-13,Inconclusive,2058,223,4,17,,,,DISCHARGED -2059,2022-11-23,4393.604264030067,440,Emergency,2022-12-01,Inconclusive,2059,481,4,11,,,,DISCHARGED -2059,2020-06-14,2463.007275796864,234,Urgent,2020-07-08,Inconclusive,6407,318,1,11,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -2059,2021-07-14,5942.493531111142,479,Elective,2021-08-06,Abnormal,8232,411,3,20,,,,DISCHARGED -2060,2023-06-11,4592.647390434896,263,Emergency,2023-07-03,Inconclusive,2060,59,4,26,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2061,2019-09-20,47896.26204049533,266,Emergency,2019-10-03,Inconclusive,2061,334,1,25,,,,DISCHARGED -2062,2020-12-11,28348.199914675934,407,Emergency,2020-12-14,Normal,2062,221,1,18,,,,DISCHARGED -2063,2022-01-15,46165.750045048815,117,Elective,2022-02-09,Inconclusive,2063,36,4,8,,,,DISCHARGED -2064,2022-03-19,9903.23897126594,314,Elective,2022-04-16,Normal,2064,476,1,10,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2065,2021-06-15,13242.462452917662,295,Elective,2021-06-16,Inconclusive,2065,277,0,16,,,,DISCHARGED -2065,2021-02-21,35567.087908688714,442,Urgent,2021-03-23,Abnormal,7512,195,0,15,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2066,2022-10-09,48524.95848727584,214,Elective,2022-10-10,Normal,2066,403,4,3,,,,DISCHARGED -2067,2020-12-06,11168.75532876516,394,Emergency,2020-12-24,Normal,2067,351,3,9,,,,DISCHARGED -2068,2022-01-14,24677.399998237463,218,Urgent,2022-02-03,Normal,2068,483,0,21,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2069,2020-12-31,25973.43439934297,164,Emergency,2021-01-01,Inconclusive,2069,241,0,14,,,,DISCHARGED -2070,2018-12-04,32670.46186780801,316,Urgent,2018-12-11,Normal,2070,323,4,24,,,,DISCHARGED -2071,2021-01-16,2559.8303424174137,168,Elective,2021-01-24,Normal,2071,218,2,18,,,,DISCHARGED -2072,2023-06-08,30534.64537201438,354,Urgent,2023-06-18,Normal,2072,191,1,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2073,2021-03-06,16893.29456822989,248,Emergency,2021-04-05,Abnormal,2073,16,0,27,,,,DISCHARGED -2074,2023-02-10,46201.73209791707,207,Emergency,,Inconclusive,2074,11,2,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -2075,2022-09-25,16914.794113676413,162,Elective,2022-10-10,Inconclusive,2075,405,3,22,,,,DISCHARGED -2076,2021-08-04,47836.62063419884,229,Urgent,2021-08-16,Normal,2076,400,2,29,,,,DISCHARGED -2077,2019-12-26,38766.63318687199,236,Urgent,2020-01-24,Abnormal,2077,393,4,4,,,,DISCHARGED -2078,2022-12-09,46465.22968326172,449,Elective,2022-12-15,Abnormal,2078,373,3,10,,,,DISCHARGED -2078,2021-09-16,31926.505122881703,453,Urgent,2021-10-08,Inconclusive,3052,192,3,23,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2079,2022-10-22,48586.78122604569,206,Emergency,2022-10-30,Inconclusive,2079,21,2,4,,,,DISCHARGED -2081,2023-03-06,30149.34788755248,104,Emergency,2023-03-21,Inconclusive,2081,473,4,6,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2082,2020-01-11,23138.25897659856,427,Urgent,2020-02-02,Abnormal,2082,119,0,5,,,,DISCHARGED -2083,2021-05-15,3027.8217962428744,417,Emergency,2021-06-12,Inconclusive,2083,209,2,29,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2084,2020-09-28,41102.94377939528,305,Elective,2020-10-06,Inconclusive,2084,305,0,25,,,,DISCHARGED -2084,2020-11-26,34007.44060822871,342,Emergency,2020-12-16,Normal,6180,269,2,12,,,,DISCHARGED -2085,2022-09-17,42363.4239882424,452,Urgent,2022-10-13,Normal,2085,191,0,1,,,,DISCHARGED -2085,2021-01-18,6485.970306762875,271,Emergency,2021-02-02,Abnormal,9924,174,2,18,,,,DISCHARGED -2086,2020-04-18,25463.780987742743,499,Elective,2020-05-01,Normal,2086,284,3,10,,,,DISCHARGED -2087,2019-11-30,34282.97716556832,487,Elective,2019-12-26,Normal,2087,203,1,26,,,,DISCHARGED -2088,2018-11-03,33690.585342013335,357,Elective,2018-11-07,Abnormal,2088,163,3,19,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2089,2022-02-23,46771.21849161071,223,Elective,2022-03-10,Abnormal,2089,250,0,4,,,,DISCHARGED -2090,2023-01-11,28542.96933360632,255,Emergency,2023-01-26,Normal,2090,226,4,8,,,,DISCHARGED -2091,2022-01-12,24919.01818340537,356,Elective,2022-02-10,Abnormal,2091,435,3,5,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -2092,2019-11-29,44923.26265703136,442,Elective,2019-12-26,Abnormal,2092,380,1,16,,,,DISCHARGED -2092,2023-01-19,16601.87170171211,251,Elective,2023-01-24,Normal,7242,459,0,18,,,,DISCHARGED -2093,2022-05-12,46708.80823788788,142,Urgent,2022-05-26,Abnormal,2093,6,3,22,,,,DISCHARGED -2094,2021-05-27,37079.56782331316,298,Urgent,2021-06-10,Normal,2094,28,2,7,,,,DISCHARGED -2096,2020-07-24,10732.59435232566,456,Elective,2020-07-30,Inconclusive,2096,394,4,6,,,,DISCHARGED -2097,2019-05-23,44174.16773087699,199,Urgent,2019-06-15,Abnormal,2097,32,0,4,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2098,2022-12-13,37826.68147158112,374,Emergency,2022-12-14,Abnormal,2098,133,3,14,,,,DISCHARGED -2099,2019-11-26,45584.49829060876,162,Emergency,2019-12-04,Inconclusive,2099,366,0,9,,,,DISCHARGED -2100,2019-09-12,25856.356275460454,297,Elective,2019-10-06,Normal,2100,78,2,23,,,,DISCHARGED -2101,2023-09-26,38455.99547786433,196,Urgent,2023-09-29,Abnormal,2101,415,1,15,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2102,2023-07-09,40134.479606453664,392,Urgent,2023-08-03,Abnormal,2102,434,3,8,,,,DISCHARGED -2103,2020-07-31,12587.52217060346,106,Urgent,2020-08-15,Normal,2103,458,0,6,,,,DISCHARGED -2104,2019-04-28,7588.420163231811,429,Emergency,2019-05-03,Normal,2104,57,0,10,,,,DISCHARGED -2105,2021-12-06,26929.921355979764,437,Urgent,2021-12-28,Abnormal,2105,470,0,8,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -2106,2022-09-09,9327.259870044523,479,Emergency,2022-09-11,Abnormal,2106,25,1,16,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2107,2023-03-30,32596.973552053438,256,Urgent,,Normal,2107,481,0,29,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",OPEN -2108,2022-11-16,11989.362204519535,486,Urgent,2022-11-18,Normal,2108,429,4,8,,,,DISCHARGED -2109,2020-05-03,34827.815240902244,201,Urgent,2020-05-31,Normal,2109,225,4,2,,,,DISCHARGED -2109,2019-07-30,18790.112311173714,110,Elective,2019-08-28,Normal,2407,284,0,21,,,,DISCHARGED -2110,2019-11-11,32155.997682675246,397,Elective,2019-11-23,Normal,2110,3,4,7,,,,DISCHARGED -2111,2019-12-02,48837.91662444725,346,Emergency,2019-12-07,Normal,2111,464,3,18,,,,DISCHARGED -2112,2022-07-22,38033.32261578057,172,Elective,2022-07-28,Inconclusive,2112,98,4,19,,,,DISCHARGED -2113,2023-10-05,27077.69337474183,139,Urgent,2023-10-30,Normal,2113,396,0,15,,,,DISCHARGED -2115,2020-11-25,45613.74976944374,402,Elective,2020-12-13,Inconclusive,2115,488,2,6,,,,DISCHARGED -2115,2019-04-29,4162.294299482434,117,Emergency,2019-05-14,Inconclusive,3509,38,3,27,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -2115,2023-04-14,13481.843601490198,470,Elective,2023-05-07,Abnormal,6605,270,1,6,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2116,2021-03-17,14480.20800156411,108,Elective,2021-04-16,Normal,2116,374,0,19,,,,DISCHARGED -2117,2023-08-08,22610.05069166719,474,Urgent,2023-08-18,Normal,2117,284,1,24,,,,DISCHARGED -2118,2022-07-20,49041.83712488501,110,Emergency,2022-08-19,Abnormal,2118,156,2,12,,,,DISCHARGED -2119,2023-01-20,44784.72199270345,442,Emergency,,Normal,2119,74,1,2,,,,OPEN -2120,2023-10-13,7684.685521442606,248,Urgent,2023-11-04,Abnormal,2120,371,0,11,,,,DISCHARGED -2121,2021-02-04,34397.71731295817,242,Emergency,2021-02-07,Normal,2121,287,0,23,,,,DISCHARGED -2122,2020-03-20,44738.75152787779,289,Elective,2020-04-05,Normal,2122,129,2,7,,,,DISCHARGED -2123,2020-11-15,45539.99655393264,117,Elective,2020-12-09,Inconclusive,2123,174,0,12,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2124,2019-06-08,7219.30369394389,353,Urgent,2019-06-20,Inconclusive,2124,461,2,19,,,,DISCHARGED -2125,2023-07-23,5274.440716905491,117,Urgent,2023-07-26,Normal,2125,83,2,15,,,,DISCHARGED -2126,2022-08-15,19909.398010864497,154,Urgent,2022-08-22,Inconclusive,2126,21,0,6,,,,DISCHARGED -2127,2019-05-18,40530.53507937405,351,Emergency,2019-06-11,Inconclusive,2127,458,4,3,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -2128,2023-02-10,21243.07467193288,223,Urgent,2023-03-08,Inconclusive,2128,26,2,28,,,,DISCHARGED -2129,2023-07-07,3083.1600740083354,127,Emergency,2023-08-03,Inconclusive,2129,194,0,11,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2130,2021-02-13,32997.127608599854,105,Emergency,2021-02-24,Normal,2130,336,4,16,,,,DISCHARGED -2131,2023-09-16,48777.68007258824,493,Emergency,2023-10-09,Inconclusive,2131,381,2,0,,,,DISCHARGED -2132,2022-11-02,27821.708687409784,448,Elective,2022-11-12,Normal,2132,235,4,29,,,,DISCHARGED -2133,2019-04-15,41220.75412978184,489,Emergency,2019-05-09,Inconclusive,2133,439,3,16,,,,DISCHARGED -2134,2021-04-08,29606.4245184412,260,Emergency,2021-04-29,Normal,2134,91,3,1,,,,DISCHARGED -2135,2023-03-06,13657.607499957252,221,Emergency,2023-03-16,Normal,2135,476,4,5,,,,DISCHARGED -2136,2019-05-12,4358.754081952631,128,Elective,2019-05-26,Normal,2136,20,2,11,,,,DISCHARGED -2137,2023-02-21,8012.236285130733,137,Elective,2023-03-07,Normal,2137,302,0,25,,,,DISCHARGED -2138,2022-02-24,14246.813650252376,232,Urgent,2022-03-14,Inconclusive,2138,463,1,10,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2139,2019-05-04,47300.362049135685,335,Elective,2019-06-03,Normal,2139,356,0,20,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2141,2021-03-17,19438.067002583404,116,Urgent,2021-04-07,Inconclusive,2141,442,1,10,,,,DISCHARGED -2142,2019-05-05,41993.05395013485,136,Elective,2019-06-01,Inconclusive,2142,83,1,17,,,,DISCHARGED -2143,2022-06-16,36167.21869272584,123,Urgent,2022-07-12,Normal,2143,261,2,7,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -2144,2020-04-16,22361.41406399233,254,Emergency,2020-05-07,Normal,2144,146,4,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -2145,2020-09-06,48208.99674501512,263,Emergency,2020-09-25,Inconclusive,2145,440,0,6,,,,DISCHARGED -2146,2023-07-23,17525.474760021036,331,Emergency,2023-07-27,Abnormal,2146,452,4,27,,,,DISCHARGED -2147,2020-10-20,23795.476602545383,416,Urgent,2020-11-13,Normal,2147,386,3,13,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -2148,2022-10-25,37693.909176755216,320,Urgent,2022-11-20,Abnormal,2148,256,2,15,,,,DISCHARGED -2149,2021-01-18,4699.461084400098,122,Emergency,2021-02-03,Inconclusive,2149,57,2,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -2150,2019-06-18,18489.543619802986,106,Urgent,2019-07-15,Normal,2150,379,3,8,,,,DISCHARGED -2151,2022-01-15,16024.907097217285,488,Elective,2022-02-09,Inconclusive,2151,421,0,19,,,,DISCHARGED -2152,2023-04-03,28584.572382521823,260,Urgent,2023-04-17,Inconclusive,2152,14,3,28,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2153,2022-12-02,46986.42214523118,244,Elective,2022-12-11,Abnormal,2153,161,0,22,,,,DISCHARGED -2153,2021-08-30,14040.74378787196,224,Elective,2021-09-22,Inconclusive,2899,444,1,20,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2154,2019-04-15,27866.763666625666,325,Elective,2019-05-15,Abnormal,2154,162,2,15,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2155,2020-01-30,46989.64577927644,429,Emergency,2020-02-01,Normal,2155,319,0,20,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -2156,2021-06-27,10624.533398155232,434,Emergency,2021-07-25,Inconclusive,2156,496,4,18,,,,DISCHARGED -2157,2021-04-06,16327.105345642376,364,Elective,2021-04-27,Normal,2157,280,4,15,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2158,2019-03-09,9935.432220366523,286,Urgent,2019-03-11,Abnormal,2158,279,2,8,,,,DISCHARGED -2158,2020-08-10,41080.77719781172,303,Emergency,2020-08-24,Abnormal,6304,11,3,12,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2159,2020-08-15,8034.445956925054,454,Emergency,2020-08-31,Normal,2159,273,3,25,,,,DISCHARGED -2160,2022-12-03,29295.887722246087,125,Elective,2022-12-28,Abnormal,2160,270,0,4,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2161,2020-04-28,33877.32845187741,301,Urgent,2020-05-05,Inconclusive,2161,491,3,21,,,,DISCHARGED -2162,2021-10-25,41565.46945826818,217,Urgent,2021-11-13,Normal,2162,207,2,18,,,,DISCHARGED -2163,2019-07-15,20720.024952434516,152,Urgent,2019-08-04,Abnormal,2163,26,0,9,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -2164,2022-11-17,30051.834844619694,426,Emergency,2022-12-02,Inconclusive,2164,71,1,6,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2165,2021-03-01,48244.6217501954,470,Elective,2021-03-03,Normal,2165,59,3,8,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2166,2020-08-17,9701.398771828128,328,Elective,2020-08-29,Abnormal,2166,429,3,24,,,,DISCHARGED -2166,2021-07-15,27167.536177824102,389,Urgent,2021-07-19,Abnormal,9647,472,0,13,,,,DISCHARGED -2167,2020-05-31,16318.3748057804,481,Emergency,2020-06-11,Abnormal,2167,144,4,14,,,,DISCHARGED -2168,2023-09-06,31102.403444031337,287,Urgent,2023-09-10,Inconclusive,2168,92,3,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2169,2020-05-30,26491.544721336537,398,Elective,2020-06-05,Normal,2169,308,2,9,,,,DISCHARGED -2170,2019-07-30,45191.83947535334,130,Urgent,2019-08-17,Normal,2170,7,3,13,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2171,2023-02-24,7089.890882975364,451,Emergency,2023-03-20,Inconclusive,2171,78,1,25,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2172,2020-11-29,42689.62507377686,375,Emergency,2020-12-10,Abnormal,2172,26,3,20,,,,DISCHARGED -2173,2021-09-24,9328.425283767998,387,Emergency,2021-10-15,Abnormal,2173,173,4,22,,,,DISCHARGED -2174,2022-11-17,26071.391361872087,449,Urgent,2022-12-12,Inconclusive,2174,49,3,28,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2175,2022-05-30,48841.62507533279,108,Urgent,2022-06-19,Abnormal,2175,499,0,11,,,,DISCHARGED -2175,2020-11-20,34231.802301135336,270,Elective,2020-12-07,Normal,7474,198,3,27,,,,DISCHARGED -2176,2019-04-02,38039.931417765954,298,Emergency,2019-05-01,Abnormal,2176,386,4,28,,,,DISCHARGED -2177,2023-01-29,36420.171145492684,237,Urgent,2023-02-24,Inconclusive,2177,348,0,18,,,,DISCHARGED -2178,2020-10-14,33442.613173148435,139,Emergency,2020-11-08,Abnormal,2178,447,2,5,,,,DISCHARGED -2179,2020-01-07,37510.40832339441,495,Elective,2020-02-01,Inconclusive,2179,427,0,11,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2181,2020-01-05,3558.2116770570674,253,Emergency,2020-01-11,Abnormal,2181,180,1,23,,,,DISCHARGED -2182,2022-05-01,20375.112495147718,224,Urgent,2022-05-04,Abnormal,2182,23,0,12,,,,DISCHARGED -2183,2021-12-06,16435.53529602935,351,Emergency,2021-12-30,Abnormal,2183,315,2,7,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2183,2019-04-12,4497.485582304684,302,Emergency,2019-05-12,Inconclusive,6609,377,3,15,,,,DISCHARGED -2184,2021-09-01,19007.95482455334,336,Emergency,2021-09-26,Inconclusive,2184,386,0,1,,,,DISCHARGED -2184,2023-07-03,1604.5156094182737,217,Emergency,2023-08-01,Abnormal,5292,403,0,21,,,,DISCHARGED -2185,2023-03-16,21034.30127545525,254,Elective,,Abnormal,2185,45,0,6,,,,OPEN -2186,2021-03-04,6510.634653794687,367,Emergency,2021-03-25,Abnormal,2186,14,0,11,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2187,2021-09-07,21459.08895558849,348,Elective,2021-09-11,Abnormal,2187,152,2,6,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2188,2019-03-29,28419.730877250546,114,Urgent,2019-04-09,Inconclusive,2188,221,4,18,,,,DISCHARGED -2189,2020-05-28,39880.93402704448,498,Elective,2020-06-06,Abnormal,2189,205,4,13,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2190,2021-11-11,11147.440158012116,162,Elective,2021-12-04,Abnormal,2190,454,0,29,,,,DISCHARGED -2191,2022-07-27,6805.932821423738,199,Elective,2022-08-02,Abnormal,2191,272,2,8,,,,DISCHARGED -2192,2021-07-17,13055.20938644427,172,Urgent,2021-07-19,Inconclusive,2192,381,2,17,,,,DISCHARGED -2193,2022-04-14,29291.418771579654,234,Elective,2022-04-15,Inconclusive,2193,235,0,10,,,,DISCHARGED -2194,2020-10-21,8550.233798177182,188,Elective,2020-11-13,Normal,2194,339,1,15,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2195,2020-08-23,10829.294133240646,334,Emergency,2020-08-24,Inconclusive,2195,227,0,18,,,,DISCHARGED -2196,2023-02-10,13016.534179786677,272,Emergency,2023-03-11,Abnormal,2196,8,1,10,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2197,2020-04-29,48277.99264983504,463,Elective,2020-05-14,Abnormal,2197,165,0,17,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2198,2020-04-01,18012.555199870225,388,Emergency,2020-04-04,Abnormal,2198,431,1,10,,,,DISCHARGED -2199,2019-05-23,19935.255593786685,477,Urgent,2019-06-18,Abnormal,2199,443,1,24,,,,DISCHARGED -2200,2023-10-24,8622.922700028972,274,Emergency,2023-11-13,Normal,2200,318,0,3,,,,DISCHARGED -2201,2023-03-17,40845.32373768378,485,Elective,2023-04-03,Inconclusive,2201,213,1,17,,,,DISCHARGED -2202,2023-01-22,45676.41931605696,220,Urgent,2023-02-08,Inconclusive,2202,116,3,18,,,,DISCHARGED -2203,2022-02-27,45509.01703294312,177,Elective,2022-03-12,Abnormal,2203,385,4,12,,,,DISCHARGED -2204,2023-10-19,14182.60134285872,393,Urgent,,Normal,2204,343,2,3,,,,OPEN -2205,2021-03-11,31712.37366238892,290,Urgent,2021-04-07,Normal,2205,71,1,29,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2206,2022-12-31,5873.404176707509,406,Emergency,2023-01-05,Abnormal,2206,394,1,9,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2207,2020-04-16,41926.89350820833,122,Urgent,2020-05-08,Inconclusive,2207,63,2,28,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -2208,2023-10-25,28067.00809181435,227,Urgent,2023-11-02,Inconclusive,2208,204,1,21,,,,DISCHARGED -2209,2019-11-10,26891.8236745223,134,Elective,2019-11-19,Normal,2209,208,2,4,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -2210,2020-01-03,2618.0554336839377,499,Urgent,2020-01-11,Abnormal,2210,71,0,2,,,,DISCHARGED -2210,2019-02-17,13536.247320570566,401,Elective,2019-03-01,Abnormal,3817,276,3,15,,,,DISCHARGED -2210,2019-12-08,14748.686149267092,246,Elective,2019-12-31,Inconclusive,8639,273,3,25,,,,DISCHARGED -2211,2020-01-18,15533.986929155004,376,Emergency,2020-02-09,Normal,2211,477,4,7,,,,DISCHARGED -2212,2021-11-30,47487.60674557146,481,Emergency,2021-12-06,Normal,2212,319,1,23,,,,DISCHARGED -2213,2020-08-23,2232.198069361695,425,Emergency,2020-09-13,Abnormal,2213,337,4,6,,,,DISCHARGED -2214,2021-01-20,39010.29434319447,400,Elective,2021-02-18,Abnormal,2214,365,0,18,,,,DISCHARGED -2215,2023-07-23,35705.871387620224,305,Elective,2023-08-10,Normal,2215,494,3,13,,,,DISCHARGED -2216,2023-03-31,37633.68565942969,105,Urgent,2023-04-12,Abnormal,2216,94,0,14,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2217,2020-04-21,12504.283118633872,390,Urgent,2020-05-03,Normal,2217,165,0,16,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -2218,2021-03-19,22263.70051785285,192,Urgent,2021-03-23,Abnormal,2218,31,1,20,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2219,2018-12-05,19855.806653142357,338,Emergency,2018-12-29,Abnormal,2219,10,0,0,,,,DISCHARGED -2220,2021-02-06,49843.46711295076,240,Emergency,2021-03-03,Abnormal,2220,300,3,5,,,,DISCHARGED -2221,2018-12-27,39058.03104473268,386,Emergency,2019-01-09,Inconclusive,2221,216,4,26,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2222,2022-08-02,15477.941903278392,282,Elective,2022-08-06,Abnormal,2222,288,3,22,,,,DISCHARGED -2223,2023-05-12,29603.251983868628,455,Urgent,,Abnormal,2223,101,1,14,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,OPEN -2224,2020-11-30,46371.328836617104,123,Urgent,2020-12-16,Inconclusive,2224,424,3,11,,,,DISCHARGED -2224,2022-04-27,8335.993583094772,286,Urgent,2022-05-16,Inconclusive,9255,391,2,20,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -2225,2023-01-20,37770.92297524949,337,Emergency,,Normal,2225,266,4,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -2226,2019-10-16,49108.90302824396,257,Elective,2019-11-08,Inconclusive,2226,213,2,1,,,,DISCHARGED -2227,2021-01-17,36135.620638551576,112,Urgent,2021-02-09,Inconclusive,2227,178,2,4,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -2228,2021-11-27,21432.51922344282,180,Urgent,2021-12-15,Abnormal,2228,87,1,8,,,,DISCHARGED -2229,2023-07-08,43399.97889794341,129,Elective,2023-07-10,Normal,2229,40,0,19,,,,DISCHARGED -2230,2019-11-09,45798.93970582484,281,Urgent,2019-11-16,Normal,2230,400,2,13,,,,DISCHARGED -2231,2020-05-27,37530.24466016462,349,Urgent,2020-05-29,Abnormal,2231,75,3,17,,,,DISCHARGED -2232,2020-09-08,40272.61746946961,134,Elective,2020-10-03,Abnormal,2232,376,0,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -2233,2020-05-30,22963.611941278225,157,Emergency,2020-06-07,Inconclusive,2233,45,3,21,,,,DISCHARGED -2234,2022-08-12,6879.395005204989,447,Urgent,2022-08-16,Abnormal,2234,159,3,7,,,,DISCHARGED -2235,2021-08-10,16438.247326267134,188,Urgent,2021-09-03,Normal,2235,462,0,1,,,,DISCHARGED -2236,2021-06-10,48635.95469476706,184,Emergency,2021-06-15,Normal,2236,79,0,8,,,,DISCHARGED -2237,2022-04-11,32385.32845907817,207,Urgent,2022-04-16,Abnormal,2237,309,3,6,,,,DISCHARGED -2238,2019-12-13,30222.777507948547,269,Urgent,2019-12-27,Inconclusive,2238,85,1,29,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2239,2022-10-05,1004.4168971245352,102,Elective,2022-11-04,Abnormal,2239,91,4,28,,,,DISCHARGED -2240,2021-04-26,28086.62867948905,165,Emergency,2021-05-04,Normal,2240,147,4,17,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2241,2020-04-10,17634.373636304907,325,Elective,2020-04-14,Normal,2241,160,1,26,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2242,2020-02-21,10740.62405697596,490,Urgent,2020-02-28,Abnormal,2242,201,0,15,,,,DISCHARGED -2243,2022-04-05,26653.66414302477,175,Urgent,2022-04-07,Normal,2243,423,3,20,,,,DISCHARGED -2244,2021-04-22,14592.356305414123,316,Urgent,2021-05-20,Inconclusive,2244,415,4,4,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -2245,2022-12-27,18173.04510327892,245,Urgent,2023-01-24,Abnormal,2245,241,3,22,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -2245,2022-07-05,39230.21347524349,286,Urgent,2022-08-01,Inconclusive,5284,352,1,28,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2246,2019-12-19,46916.54683516452,477,Urgent,2019-12-21,Abnormal,2246,1,3,14,,,,DISCHARGED -2247,2023-08-18,10151.614679361466,240,Urgent,2023-08-20,Abnormal,2247,224,1,4,,,,DISCHARGED -2248,2021-11-30,13258.570331758508,348,Elective,2021-12-12,Normal,2248,288,0,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -2249,2021-06-19,4067.955799860332,390,Urgent,2021-06-30,Abnormal,2249,232,1,29,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2249,2023-04-08,16229.170609028886,320,Emergency,2023-04-28,Inconclusive,3379,460,1,21,,,,DISCHARGED -2249,2022-01-09,33857.486093274936,293,Urgent,2022-01-30,Abnormal,7263,413,4,13,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2250,2019-10-10,26557.291356562248,143,Urgent,2019-10-15,Inconclusive,2250,416,3,24,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -2251,2021-08-03,10088.441961099885,447,Urgent,2021-08-18,Inconclusive,2251,76,4,18,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2252,2021-09-19,49936.073748394425,423,Elective,2021-09-21,Abnormal,2252,115,2,2,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -2253,2021-12-29,13837.49574373598,300,Emergency,2022-01-11,Abnormal,2253,153,1,23,,,,DISCHARGED -2254,2021-12-23,36666.61381452589,210,Elective,2022-01-04,Abnormal,2254,405,2,9,,,,DISCHARGED -2255,2020-09-07,43299.943085823,499,Emergency,2020-09-18,Abnormal,2255,102,4,27,,,,DISCHARGED -2255,2021-11-16,13610.31855717903,415,Emergency,2021-11-30,Inconclusive,6292,193,3,5,,,,DISCHARGED -2256,2023-06-29,6207.834879564895,235,Elective,,Abnormal,2256,165,4,27,,,,OPEN -2257,2020-09-21,25083.79189395908,259,Urgent,2020-10-18,Inconclusive,2257,358,3,25,,,,DISCHARGED -2258,2021-08-12,27846.01598254566,477,Urgent,2021-08-15,Inconclusive,2258,89,3,2,,,,DISCHARGED -2259,2019-11-11,10204.894507932186,386,Emergency,2019-12-04,Normal,2259,173,0,1,,,,DISCHARGED -2259,2022-05-12,36353.37927751284,158,Elective,2022-06-02,Abnormal,7658,121,1,12,,,,DISCHARGED -2260,2020-04-12,21081.51233583161,422,Emergency,2020-04-30,Normal,2260,497,4,17,,,,DISCHARGED -2261,2019-07-07,3041.931672303549,427,Emergency,2019-08-04,Normal,2261,142,3,1,,,,DISCHARGED -2262,2019-05-25,44575.62574675339,390,Elective,2019-06-03,Normal,2262,481,4,14,,,,DISCHARGED -2263,2022-05-29,5738.5177622039255,197,Elective,2022-06-27,Abnormal,2263,105,4,4,,,,DISCHARGED -2264,2022-12-01,29155.229941151385,295,Elective,2022-12-23,Abnormal,2264,374,3,14,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2265,2020-09-30,14104.90520641113,246,Elective,2020-10-11,Inconclusive,2265,427,2,27,,,,DISCHARGED -2266,2023-04-06,13936.745716455896,182,Urgent,,Inconclusive,2266,304,1,20,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -2267,2019-11-09,36208.42347482683,311,Elective,2019-11-12,Normal,2267,359,1,16,,,,DISCHARGED -2268,2021-10-09,33695.97320850632,346,Urgent,2021-11-06,Normal,2268,458,0,1,,,,DISCHARGED -2269,2022-03-18,39605.76515552316,439,Urgent,2022-04-14,Normal,2269,316,0,17,,,,DISCHARGED -2270,2023-02-14,1663.0484002373282,197,Urgent,2023-03-07,Inconclusive,2270,450,0,14,,,,DISCHARGED -2271,2022-02-13,38618.586930833095,144,Elective,2022-03-09,Abnormal,2271,122,1,19,,,,DISCHARGED -2271,2023-04-22,36371.68331885953,333,Urgent,2023-04-25,Inconclusive,8982,389,2,22,,,,DISCHARGED -2272,2019-04-23,6345.96900233399,330,Urgent,2019-05-20,Normal,2272,8,1,2,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2273,2021-05-16,1469.3568232657483,262,Elective,2021-05-23,Abnormal,2273,261,1,4,,,,DISCHARGED -2274,2021-03-12,48786.20598923016,396,Emergency,2021-04-11,Inconclusive,2274,72,1,10,,,,DISCHARGED -2275,2023-01-28,32013.08394283032,347,Urgent,2023-02-09,Inconclusive,2275,358,1,8,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -2276,2022-11-22,33993.736166348615,466,Urgent,2022-12-06,Inconclusive,2276,222,2,4,,,,DISCHARGED -2276,2020-03-05,47211.79630226493,131,Urgent,2020-03-18,Inconclusive,6118,415,0,24,,,,DISCHARGED -2277,2021-01-01,19094.737388529287,365,Elective,2021-01-19,Abnormal,2277,40,4,0,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2278,2022-05-26,14345.93278636867,244,Elective,2022-06-03,Abnormal,2278,369,0,24,,,,DISCHARGED -2279,2020-08-30,2359.1499409367643,122,Emergency,2020-09-23,Inconclusive,2279,203,0,13,,,,DISCHARGED -2280,2022-08-05,36786.38483100933,329,Urgent,2022-08-21,Abnormal,2280,263,4,4,,,,DISCHARGED -2281,2023-01-16,6711.086768488117,448,Urgent,2023-02-11,Abnormal,2281,327,1,7,,,,DISCHARGED -2283,2021-11-21,2633.189003094448,160,Emergency,2021-12-02,Inconclusive,2283,177,2,20,,,,DISCHARGED -2284,2019-01-07,30208.612385383854,414,Emergency,2019-01-22,Normal,2284,347,2,13,,,,DISCHARGED -2285,2023-04-06,18223.34113885301,403,Elective,2023-04-22,Abnormal,2285,317,0,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2286,2020-11-22,16667.598315013645,386,Elective,2020-11-30,Inconclusive,2286,83,4,15,,,,DISCHARGED -2287,2023-08-01,3568.1713752587416,387,Elective,2023-08-03,Abnormal,2287,317,3,5,,,,DISCHARGED -2288,2019-04-24,39731.42706785454,239,Urgent,2019-05-10,Abnormal,2288,110,1,7,,,,DISCHARGED -2289,2022-05-21,20839.647840054804,255,Emergency,2022-06-18,Abnormal,2289,250,0,1,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2290,2022-02-01,19975.10973788638,169,Urgent,2022-02-20,Inconclusive,2290,382,2,18,,,,DISCHARGED -2291,2022-04-22,28882.73765923182,181,Emergency,2022-05-21,Inconclusive,2291,6,4,26,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -2292,2019-11-11,7373.567584956037,130,Urgent,2019-11-24,Normal,2292,458,4,8,,,,DISCHARGED -2293,2022-03-16,10959.395742733132,398,Urgent,2022-03-20,Normal,2293,83,0,4,,,,DISCHARGED -2294,2020-04-06,45917.33018818768,499,Urgent,2020-04-11,Inconclusive,2294,207,3,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -2295,2021-05-21,16075.748025604604,424,Emergency,2021-06-08,Abnormal,2295,387,2,24,,,,DISCHARGED -2296,2020-11-03,15263.9813639346,318,Elective,2020-11-27,Abnormal,2296,389,0,25,,,,DISCHARGED -2297,2023-01-25,10317.887835533937,365,Elective,,Inconclusive,2297,313,3,18,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",OPEN -2298,2022-04-27,16342.055683539633,165,Emergency,2022-05-08,Inconclusive,2298,21,4,29,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2299,2022-05-19,4712.685522762482,388,Emergency,2022-06-13,Inconclusive,2299,409,1,3,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2300,2020-05-16,43718.4297223795,219,Urgent,2020-05-28,Normal,2300,382,2,15,,,,DISCHARGED -2301,2019-02-16,25170.352557946007,228,Urgent,2019-03-11,Inconclusive,2301,2,2,15,,,,DISCHARGED -2302,2021-05-01,33119.394464649544,208,Elective,2021-05-29,Inconclusive,2302,126,3,15,,,,DISCHARGED -2303,2020-10-04,16200.410932547786,407,Elective,2020-10-10,Normal,2303,296,0,6,,,,DISCHARGED -2304,2021-08-10,25930.072373980896,490,Urgent,2021-08-30,Abnormal,2304,187,4,17,,,,DISCHARGED -2305,2023-07-06,2861.193169953277,367,Elective,2023-07-24,Abnormal,2305,361,3,23,,,,DISCHARGED -2306,2020-04-22,28932.177878259987,323,Urgent,2020-05-08,Normal,2306,13,1,20,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2307,2023-08-25,11428.0432828395,346,Urgent,2023-09-08,Inconclusive,2307,458,1,0,,,,DISCHARGED -2308,2022-07-06,16791.356543482056,316,Emergency,2022-07-11,Abnormal,2308,465,1,2,,,,DISCHARGED -2309,2022-12-23,30994.68289081718,396,Urgent,2023-01-16,Normal,2309,11,3,24,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2310,2021-04-30,44373.26861025433,427,Emergency,2021-05-10,Inconclusive,2310,86,4,20,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2311,2020-09-17,34201.51521616795,118,Emergency,2020-09-27,Normal,2311,11,2,7,,,,DISCHARGED -2312,2019-10-25,16806.53914284886,460,Emergency,2019-11-08,Abnormal,2312,396,0,0,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2313,2020-07-14,17930.808495119258,498,Emergency,2020-07-29,Abnormal,2313,24,2,29,,,,DISCHARGED -2314,2021-12-30,3884.099762499568,104,Urgent,2022-01-21,Inconclusive,2314,300,4,6,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2315,2021-09-08,46998.90423250482,321,Elective,2021-09-24,Abnormal,2315,242,2,6,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -2316,2023-05-11,48959.71386836236,405,Elective,,Inconclusive,2316,121,3,7,,,,OPEN -2317,2019-02-18,6572.955455675588,362,Emergency,2019-02-27,Inconclusive,2317,146,1,18,,,,DISCHARGED -2318,2020-11-11,18673.30199706926,281,Urgent,2020-11-24,Inconclusive,2318,54,4,16,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -2319,2022-07-11,35275.92374896492,140,Urgent,2022-07-17,Normal,2319,237,4,10,,,,DISCHARGED -2320,2023-06-15,1118.997432630481,283,Urgent,2023-06-24,Inconclusive,2320,355,2,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -2321,2021-08-26,28491.069181388608,143,Urgent,2021-09-04,Normal,2321,172,3,8,,,,DISCHARGED -2322,2020-10-11,41057.71919588235,374,Emergency,2020-11-03,Inconclusive,2322,391,2,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2323,2019-12-21,29357.987181561923,216,Elective,2020-01-14,Abnormal,2323,220,2,10,,,,DISCHARGED -2324,2021-08-05,11837.898342336484,396,Urgent,2021-08-17,Abnormal,2324,118,4,5,,,,DISCHARGED -2325,2018-11-15,12093.477203602828,383,Elective,2018-11-20,Abnormal,2325,308,2,8,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2327,2020-02-05,25694.422324704847,432,Emergency,2020-02-10,Inconclusive,2327,182,1,29,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -2328,2022-10-24,30641.502934203352,464,Emergency,2022-11-10,Normal,2328,287,2,17,,,,DISCHARGED -2328,2022-01-31,4355.584887515309,358,Urgent,2022-02-03,Abnormal,5179,306,1,19,,,,DISCHARGED -2328,2020-07-12,40922.66596426085,374,Emergency,2020-08-03,Abnormal,9889,299,4,1,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2329,2021-10-25,1150.0385412114915,210,Emergency,2021-10-31,Abnormal,2329,81,3,3,,,,DISCHARGED -2329,2020-06-19,43307.802870540574,270,Elective,2020-07-06,Inconclusive,7297,453,1,17,,,,DISCHARGED -2330,2023-03-15,47530.95681156473,409,Elective,2023-03-26,Abnormal,2330,401,3,27,,,,DISCHARGED -2331,2022-09-12,39608.70209810854,142,Urgent,2022-09-21,Abnormal,2331,210,3,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2332,2022-10-04,42851.17690394441,302,Emergency,2022-10-19,Inconclusive,2332,149,1,10,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -2333,2021-04-15,45730.30140913316,213,Urgent,2021-05-02,Normal,2333,36,4,2,,,,DISCHARGED -2334,2021-12-05,4571.611661079727,194,Urgent,2021-12-23,Inconclusive,2334,351,0,7,,,,DISCHARGED -2335,2019-10-09,25721.31443907016,476,Emergency,2019-10-30,Inconclusive,2335,311,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -2336,2020-09-09,30864.42954409565,307,Emergency,2020-10-03,Inconclusive,2336,360,3,19,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2336,2023-07-08,38285.36347317979,145,Emergency,2023-07-22,Abnormal,6027,58,4,20,,,,DISCHARGED -2337,2018-12-02,14701.08535879573,198,Elective,2018-12-21,Inconclusive,2337,130,4,21,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2338,2021-08-02,18208.46143394193,341,Elective,2021-08-13,Normal,2338,411,2,21,,,,DISCHARGED -2339,2020-10-14,43043.98520400591,429,Urgent,2020-10-26,Normal,2339,201,4,4,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2340,2023-05-17,11140.941341541358,424,Urgent,2023-05-24,Normal,2340,242,3,27,,,,DISCHARGED -2341,2019-02-15,5194.221904638795,218,Urgent,2019-02-22,Normal,2341,34,1,10,,,,DISCHARGED -2342,2022-07-25,45406.158712173776,474,Emergency,2022-08-04,Normal,2342,444,0,11,,,,DISCHARGED -2344,2019-07-22,43980.19100267912,261,Urgent,2019-07-25,Inconclusive,2344,92,2,21,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -2345,2021-07-31,49038.78501409282,101,Emergency,2021-08-19,Inconclusive,2345,437,1,8,,,,DISCHARGED -2346,2022-08-29,41605.84629859976,464,Urgent,2022-09-17,Normal,2346,446,0,20,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2347,2021-07-17,46472.464608285765,342,Emergency,2021-07-28,Abnormal,2347,206,0,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2348,2019-04-21,24875.20478551069,153,Emergency,2019-04-24,Inconclusive,2348,352,0,21,,,,DISCHARGED -2349,2022-10-08,40118.65938226198,266,Elective,2022-10-26,Abnormal,2349,390,1,19,,,,DISCHARGED -2350,2018-12-14,45298.38118329326,219,Emergency,2018-12-24,Normal,2350,331,2,28,,,,DISCHARGED -2351,2021-09-30,11573.046617163329,457,Elective,2021-10-27,Normal,2351,304,2,2,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2352,2019-04-06,9358.753378174602,292,Emergency,2019-04-14,Inconclusive,2352,349,0,12,,,,DISCHARGED -2353,2021-08-13,22397.464256220595,333,Emergency,2021-09-04,Inconclusive,2353,212,1,27,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -2354,2021-05-16,24258.90963660196,146,Elective,2021-05-27,Abnormal,2354,158,0,21,,,,DISCHARGED -2355,2018-12-08,23746.080450451056,386,Elective,2018-12-31,Abnormal,2355,441,4,10,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -2356,2023-05-12,26765.097634779537,210,Urgent,2023-05-20,Normal,2356,444,2,10,,,,DISCHARGED -2357,2020-07-12,38202.82923434137,390,Urgent,2020-08-08,Inconclusive,2357,23,3,20,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2358,2022-08-14,47777.21505946255,432,Emergency,2022-09-09,Normal,2358,403,0,19,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2359,2019-03-11,20929.38642144212,189,Emergency,2019-03-27,Inconclusive,2359,292,4,20,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2360,2022-04-27,46271.862132410766,331,Elective,2022-05-25,Normal,2360,3,2,6,,,,DISCHARGED -2361,2022-07-08,38515.42563814221,492,Urgent,2022-07-22,Inconclusive,2361,219,1,16,,,,DISCHARGED -2362,2019-12-15,35294.06997299388,435,Urgent,2019-12-23,Abnormal,2362,363,2,15,,,,DISCHARGED -2363,2021-10-10,14939.983172651551,124,Elective,2021-10-18,Inconclusive,2363,381,1,13,,,,DISCHARGED -2364,2019-07-20,26548.300531705896,346,Urgent,2019-08-15,Abnormal,2364,19,1,0,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2365,2019-11-05,33998.31629916556,150,Elective,2019-12-03,Inconclusive,2365,443,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2366,2022-04-18,17851.783001176973,495,Elective,2022-04-23,Abnormal,2366,151,0,12,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -2367,2022-08-30,31822.97412474739,373,Emergency,2022-09-09,Inconclusive,2367,49,2,0,,,,DISCHARGED -2368,2018-11-11,5650.422298570675,269,Emergency,2018-11-26,Inconclusive,2368,176,4,1,,,,DISCHARGED -2369,2020-10-13,44765.58716091066,115,Emergency,2020-10-24,Inconclusive,2369,434,2,8,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2370,2020-01-24,31154.085244403264,133,Emergency,2020-02-17,Inconclusive,2370,95,3,12,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -2371,2022-02-15,41189.99688014055,233,Elective,2022-02-20,Normal,2371,104,1,4,,,,DISCHARGED -2372,2022-06-12,24410.65050679472,172,Urgent,2022-06-16,Abnormal,2372,419,1,29,,,,DISCHARGED -2373,2019-04-28,4518.748954945522,286,Urgent,2019-05-25,Normal,2373,249,0,8,,,,DISCHARGED -2374,2020-10-14,2414.020915480637,218,Urgent,2020-10-20,Inconclusive,2374,116,4,12,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2375,2020-12-19,24941.410274328853,419,Urgent,2021-01-03,Abnormal,2375,353,0,4,,,,DISCHARGED -2376,2020-06-01,32562.70351950048,212,Emergency,2020-06-07,Normal,2376,227,3,14,,,,DISCHARGED -2377,2022-09-05,41347.98857123617,276,Urgent,2022-09-08,Inconclusive,2377,65,2,29,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -2378,2023-08-15,39553.32456079616,278,Elective,2023-08-25,Abnormal,2378,334,2,6,,,,DISCHARGED -2379,2022-07-18,19755.373031721934,402,Emergency,2022-07-29,Normal,2379,417,4,13,,,,DISCHARGED -2380,2020-05-02,37531.703847054814,183,Elective,2020-05-05,Inconclusive,2380,419,0,29,,,,DISCHARGED -2381,2021-07-05,19901.46012085634,154,Urgent,2021-08-01,Inconclusive,2381,261,0,15,,,,DISCHARGED -2381,2018-12-25,13286.217132280082,249,Elective,2019-01-22,Inconclusive,3726,294,3,5,,,,DISCHARGED -2381,2022-04-03,11936.684518157424,225,Elective,2022-04-17,Abnormal,9410,425,2,1,,,,DISCHARGED -2382,2019-12-12,15475.123417755798,317,Emergency,2019-12-17,Normal,2382,242,0,15,,,,DISCHARGED -2383,2021-05-23,4253.658485597198,230,Urgent,2021-06-12,Inconclusive,2383,370,4,18,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2384,2018-11-06,32160.31232827805,333,Elective,2018-11-21,Abnormal,2384,185,2,4,,,,DISCHARGED -2385,2021-12-20,30200.854989668474,171,Emergency,2022-01-06,Abnormal,2385,245,3,3,,,,DISCHARGED -2386,2020-08-06,43652.54938453201,322,Urgent,2020-08-29,Inconclusive,2386,124,4,13,,,,DISCHARGED -2387,2019-06-27,3695.774905599485,335,Urgent,2019-07-25,Abnormal,2387,267,1,26,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2388,2019-03-20,36441.792541175215,146,Emergency,2019-04-13,Normal,2388,130,3,5,,,,DISCHARGED -2389,2019-04-14,22599.918354897974,180,Emergency,2019-04-24,Abnormal,2389,236,4,7,,,,DISCHARGED -2390,2023-04-22,3841.4445514061263,265,Urgent,,Abnormal,2390,17,0,23,,,,OPEN -2391,2023-10-11,23239.465338603477,384,Elective,2023-10-24,Inconclusive,2391,39,1,2,,,,DISCHARGED -2392,2020-01-25,21155.17101002852,375,Emergency,2020-02-24,Inconclusive,2392,20,3,3,,,,DISCHARGED -2393,2022-06-30,28782.55631491791,237,Elective,2022-07-12,Normal,2393,398,0,0,,,,DISCHARGED -2394,2021-12-12,48724.403799461856,309,Elective,2021-12-25,Inconclusive,2394,224,1,1,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2395,2019-08-29,21231.60183244362,448,Emergency,2019-09-04,Normal,2395,354,2,12,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2396,2019-04-04,48265.43167528375,120,Urgent,2019-05-02,Abnormal,2396,281,0,8,,,,DISCHARGED -2397,2022-12-16,30971.332011789167,181,Emergency,2022-12-17,Abnormal,2397,7,4,11,,,,DISCHARGED -2398,2019-08-28,29508.544951269727,301,Elective,2019-09-13,Normal,2398,99,3,9,,,,DISCHARGED -2399,2021-04-03,35239.642723172175,139,Urgent,2021-04-09,Abnormal,2399,239,1,9,,,,DISCHARGED -2400,2023-08-16,18718.386094436544,175,Emergency,2023-09-02,Inconclusive,2400,477,0,17,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2400,2023-09-26,7060.340799098249,391,Urgent,2023-10-12,Inconclusive,3538,86,2,11,,,,DISCHARGED -2401,2022-03-14,5958.399674826673,329,Urgent,2022-03-26,Abnormal,2401,297,3,21,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2402,2020-10-23,26235.62790564147,348,Emergency,2020-11-13,Normal,2402,427,3,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2403,2022-01-22,15019.554181198337,431,Elective,2022-02-12,Normal,2403,13,0,15,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2404,2019-04-12,21708.336790396603,455,Emergency,2019-04-27,Abnormal,2404,333,2,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2405,2022-11-13,9746.567052411929,310,Emergency,2022-11-22,Abnormal,2405,1,1,5,,,,DISCHARGED -2406,2021-10-08,48205.951813282685,121,Elective,2021-10-25,Normal,2406,374,0,23,,,,DISCHARGED -2409,2022-12-27,31329.855277068917,155,Urgent,2023-01-17,Abnormal,2409,292,1,24,,,,DISCHARGED -2410,2021-08-04,47936.2800005293,395,Elective,2021-08-16,Abnormal,2410,324,3,23,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2411,2023-10-15,19260.66177930895,393,Elective,2023-10-22,Abnormal,2411,421,1,20,,,,DISCHARGED -2412,2022-07-10,47777.3761609721,185,Urgent,2022-07-14,Inconclusive,2412,492,2,23,,,,DISCHARGED -2413,2020-12-02,28971.34179109367,367,Emergency,2020-12-24,Normal,2413,40,4,9,,,,DISCHARGED -2414,2019-10-17,26390.525806142625,478,Elective,2019-11-13,Inconclusive,2414,317,2,14,,,,DISCHARGED -2415,2022-04-02,3907.408582108694,399,Elective,2022-04-28,Inconclusive,2415,315,1,25,,,,DISCHARGED -2416,2022-05-01,45860.2366883881,284,Urgent,2022-05-15,Normal,2416,380,0,8,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2417,2019-12-14,36706.498065552645,463,Emergency,2019-12-19,Abnormal,2417,110,3,29,,,,DISCHARGED -2418,2022-09-26,42697.14994896471,236,Elective,2022-10-05,Abnormal,2418,13,4,23,,,,DISCHARGED -2419,2020-02-23,40329.82331813814,189,Emergency,2020-03-01,Normal,2419,230,0,1,,,,DISCHARGED -2420,2021-11-07,19474.37857921707,275,Urgent,2021-12-06,Abnormal,2420,472,0,17,,,,DISCHARGED -2421,2022-06-16,41513.49610937837,259,Elective,2022-07-15,Normal,2421,83,2,11,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2421,2019-06-09,13969.259804359022,442,Emergency,2019-07-03,Normal,5518,129,1,2,,,,DISCHARGED -2422,2019-11-18,45186.29949207065,345,Emergency,2019-12-09,Inconclusive,2422,230,2,6,,,,DISCHARGED -2423,2022-10-13,41920.69500328894,369,Urgent,2022-11-07,Abnormal,2423,325,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2424,2019-06-07,8839.557139021788,257,Emergency,2019-06-09,Abnormal,2424,144,2,7,,,,DISCHARGED -2425,2018-11-21,45789.5706959931,123,Elective,2018-12-11,Abnormal,2425,378,0,24,,,,DISCHARGED -2426,2023-02-17,23437.707981805444,477,Elective,2023-03-12,Inconclusive,2426,344,3,5,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2427,2022-12-22,30037.19193716713,305,Emergency,2023-01-04,Inconclusive,2427,27,1,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -2428,2020-01-06,20629.109799307986,169,Emergency,2020-01-24,Normal,2428,65,4,13,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2429,2022-05-20,16590.439272803203,313,Urgent,2022-06-04,Abnormal,2429,162,4,15,,,,DISCHARGED -2430,2020-06-10,32071.67937736797,140,Elective,2020-07-02,Inconclusive,2430,228,0,27,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2431,2022-06-22,11013.209220994297,330,Emergency,2022-07-01,Inconclusive,2431,260,2,15,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2432,2019-03-18,16924.127913348588,205,Urgent,2019-03-24,Inconclusive,2432,448,2,3,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2433,2023-07-13,14742.926042628931,497,Elective,2023-07-28,Inconclusive,2433,423,0,28,,,,DISCHARGED -2434,2019-05-31,11245.848532158388,246,Elective,2019-06-19,Inconclusive,2434,459,4,5,,,,DISCHARGED -2434,2021-10-03,34128.92877588977,338,Emergency,2021-10-07,Inconclusive,3626,439,4,14,,,,DISCHARGED -2435,2019-06-18,5018.831061409541,356,Elective,2019-07-12,Inconclusive,2435,163,2,27,,,,DISCHARGED -2436,2019-09-26,2241.951751163587,178,Urgent,2019-10-08,Inconclusive,2436,300,1,21,,,,DISCHARGED -2437,2022-03-13,6371.920728262035,310,Urgent,2022-04-11,Normal,2437,406,3,7,,,,DISCHARGED -2438,2019-12-15,40145.24000138376,117,Emergency,2019-12-17,Normal,2438,302,1,0,,,,DISCHARGED -2439,2019-05-14,39839.63860765666,422,Emergency,2019-06-13,Abnormal,2439,286,4,12,,,,DISCHARGED -2440,2023-08-09,42673.708187137694,435,Elective,2023-09-07,Inconclusive,2440,394,1,26,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2441,2023-03-13,10830.14210525292,275,Elective,2023-04-08,Inconclusive,2441,9,3,17,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -2442,2019-02-12,21320.117258521143,165,Elective,2019-02-23,Normal,2442,194,1,17,,,,DISCHARGED -2443,2022-01-20,29603.05970719841,407,Elective,2022-02-06,Inconclusive,2443,117,1,12,,,,DISCHARGED -2444,2021-04-20,22130.223479035947,196,Elective,2021-05-06,Normal,2444,269,1,21,,,,DISCHARGED -2445,2022-06-24,20064.509542107084,174,Urgent,2022-07-19,Abnormal,2445,79,1,29,,,,DISCHARGED -2446,2019-07-07,7156.415792828478,485,Emergency,2019-07-24,Abnormal,2446,457,0,13,,,,DISCHARGED -2447,2022-10-06,5157.15398660283,256,Elective,2022-10-18,Inconclusive,2447,92,4,10,,,,DISCHARGED -2448,2021-03-31,5438.366580021159,258,Elective,2021-04-07,Abnormal,2448,265,3,6,,,,DISCHARGED -2449,2020-06-26,43897.651310667614,275,Urgent,2020-07-06,Abnormal,2449,331,4,17,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2450,2021-08-17,14013.744275075303,376,Urgent,2021-08-27,Abnormal,2450,349,0,20,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -2450,2019-04-22,16362.17600643445,360,Urgent,2019-05-14,Abnormal,9038,360,0,21,,,,DISCHARGED -2451,2020-09-17,39521.41561682892,327,Urgent,2020-10-16,Inconclusive,2451,256,0,3,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -2452,2022-01-10,3273.499068275321,385,Emergency,2022-02-07,Abnormal,2452,132,0,16,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2453,2023-01-02,28194.600073883343,333,Emergency,2023-01-09,Inconclusive,2453,275,1,18,,,,DISCHARGED -2454,2023-04-12,45984.47445143882,445,Emergency,,Inconclusive,2454,263,4,13,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",OPEN -2455,2019-03-06,5397.666347489107,374,Emergency,2019-03-28,Normal,2455,170,2,9,,,,DISCHARGED -2455,2021-04-06,35939.43169113827,467,Urgent,2021-04-30,Abnormal,9304,459,3,24,,,,DISCHARGED -2456,2021-07-17,6200.695529873992,458,Urgent,2021-08-07,Inconclusive,2456,0,0,28,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -2457,2019-09-08,16011.779350249855,120,Emergency,2019-09-17,Inconclusive,2457,312,4,5,,,,DISCHARGED -2458,2019-11-29,8161.201023922842,152,Urgent,2019-12-06,Inconclusive,2458,63,0,17,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -2459,2022-11-29,16188.837522892652,457,Urgent,2022-12-19,Inconclusive,2459,373,0,24,,,,DISCHARGED -2460,2022-08-20,11901.589746095648,276,Urgent,2022-09-15,Abnormal,2460,467,0,3,,,,DISCHARGED -2461,2021-06-20,15380.13437328461,419,Urgent,2021-06-28,Inconclusive,2461,283,0,10,,,,DISCHARGED -2461,2019-12-03,29806.891947953394,191,Urgent,2019-12-27,Normal,6354,120,0,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2462,2020-12-26,46700.03560980359,473,Elective,2021-01-07,Abnormal,2462,106,3,7,,,,DISCHARGED -2463,2022-04-29,37780.69359828156,259,Elective,2022-05-01,Abnormal,2463,420,4,9,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2464,2022-07-31,16219.584011911596,165,Urgent,2022-08-08,Inconclusive,2464,174,0,22,,,,DISCHARGED -2465,2022-11-18,8442.245213122707,221,Elective,2022-11-28,Normal,2465,484,0,27,,,,DISCHARGED -2466,2022-06-10,42220.478409769945,248,Urgent,2022-06-22,Inconclusive,2466,203,0,10,,,,DISCHARGED -2466,2021-11-22,18293.22504138837,311,Elective,2021-12-18,Inconclusive,5952,164,0,2,,,,DISCHARGED -2466,2023-09-03,22506.327469888354,153,Emergency,2023-09-16,Normal,7382,304,1,14,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2467,2019-05-02,27335.91992123,342,Elective,2019-05-25,Abnormal,2467,496,1,7,,,,DISCHARGED -2468,2020-12-23,2517.450463083744,379,Emergency,2021-01-21,Abnormal,2468,119,2,19,,,,DISCHARGED -2469,2019-01-11,45402.997497176286,341,Urgent,2019-01-20,Inconclusive,2469,43,0,17,,,,DISCHARGED -2470,2020-11-22,22476.741759452263,213,Urgent,2020-11-30,Inconclusive,2470,311,2,26,,,,DISCHARGED -2471,2019-12-24,22918.0911148914,475,Urgent,2020-01-19,Inconclusive,2471,155,3,20,,,,DISCHARGED -2472,2021-09-03,29395.418118566435,437,Emergency,2021-10-02,Inconclusive,2472,366,2,0,,,,DISCHARGED -2472,2022-11-04,13838.988236861156,158,Elective,2022-11-30,Abnormal,6303,206,4,28,,,,DISCHARGED -2473,2022-06-09,47399.457605142845,155,Emergency,2022-07-09,Normal,2473,389,1,23,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2474,2022-12-09,49003.46904928367,208,Urgent,2022-12-29,Abnormal,2474,107,1,29,,,,DISCHARGED -2475,2022-01-24,33718.96556538412,288,Elective,2022-02-19,Inconclusive,2475,250,0,7,,,,DISCHARGED -2476,2023-04-07,28229.15208168493,308,Elective,2023-05-05,Abnormal,2476,444,0,2,,,,DISCHARGED -2477,2019-03-09,24297.349844283555,389,Elective,2019-03-22,Abnormal,2477,403,3,0,,,,DISCHARGED -2478,2022-01-06,39336.78760601399,416,Elective,2022-01-31,Normal,2478,369,3,19,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -2479,2023-03-21,12470.10454188172,333,Elective,,Inconclusive,2479,333,4,24,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,OPEN -2480,2019-06-26,1333.1894640653377,493,Elective,2019-07-22,Normal,2480,129,0,15,,,,DISCHARGED -2481,2020-09-09,33872.49276820652,287,Emergency,2020-09-28,Abnormal,2481,456,0,8,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2482,2022-11-19,13891.42976370759,497,Emergency,2022-12-19,Inconclusive,2482,292,3,16,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2483,2018-11-09,38436.50156984787,186,Urgent,2018-12-02,Abnormal,2483,19,3,26,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2484,2020-10-21,34070.15288761023,208,Urgent,2020-11-01,Normal,2484,281,3,15,,,,DISCHARGED -2485,2019-09-02,1797.8955498038824,248,Urgent,2019-09-07,Normal,2485,284,1,22,,,,DISCHARGED -2485,2019-02-13,49611.00275801964,240,Elective,2019-03-09,Inconclusive,8116,0,2,5,,,,DISCHARGED -2486,2019-03-10,42331.91830144021,416,Urgent,2019-03-25,Abnormal,2486,118,2,29,,,,DISCHARGED -2487,2022-04-07,37053.19919361424,164,Emergency,2022-04-16,Inconclusive,2487,34,0,22,,,,DISCHARGED -2488,2021-08-07,36351.927384573646,183,Elective,2021-09-04,Inconclusive,2488,197,1,6,,,,DISCHARGED -2489,2019-10-04,16567.23352595263,141,Urgent,2019-10-20,Abnormal,2489,484,3,23,,,,DISCHARGED -2490,2022-06-03,30202.06210754691,312,Emergency,2022-06-30,Abnormal,2490,244,0,15,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2491,2023-10-12,33626.74015820449,207,Urgent,2023-11-07,Normal,2491,58,1,7,,,,DISCHARGED -2492,2019-06-05,3966.212163117587,433,Urgent,2019-06-24,Abnormal,2492,324,4,9,,,,DISCHARGED -2493,2022-01-30,5342.107255750262,376,Emergency,2022-02-25,Abnormal,2493,160,1,13,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2494,2022-07-25,36815.52831938813,401,Emergency,2022-08-23,Abnormal,2494,496,0,10,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -2495,2020-03-10,47964.57112290667,353,Elective,2020-03-23,Inconclusive,2495,178,2,1,,,,DISCHARGED -2496,2021-10-27,37411.45896100474,122,Urgent,2021-11-06,Normal,2496,205,3,11,,,,DISCHARGED -2497,2019-03-29,43465.7415969958,362,Elective,2019-04-10,Inconclusive,2497,11,4,27,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2498,2022-04-10,32981.51555712364,363,Urgent,2022-04-16,Normal,2498,489,1,27,,,,DISCHARGED -2499,2020-08-29,9245.538029929652,322,Elective,2020-09-16,Inconclusive,2499,275,0,19,,,,DISCHARGED -2500,2023-07-16,5105.853256042749,357,Emergency,2023-07-26,Abnormal,2500,180,0,19,,,,DISCHARGED -2501,2020-07-10,47869.53814099664,401,Urgent,2020-07-14,Inconclusive,2501,241,3,12,,,,DISCHARGED -2501,2022-04-17,9343.708181058417,470,Elective,2022-05-16,Normal,3213,215,0,14,,,,DISCHARGED -2501,2021-03-13,39161.047336248914,304,Elective,2021-03-27,Abnormal,4190,250,0,26,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2502,2019-08-26,16825.748562014633,124,Emergency,2019-09-22,Abnormal,2502,298,3,25,,,,DISCHARGED -2503,2021-10-01,10274.286916230649,276,Urgent,2021-10-18,Abnormal,2503,125,4,11,,,,DISCHARGED -2504,2018-11-25,17191.66553889664,376,Urgent,2018-11-29,Normal,2504,481,2,12,,,,DISCHARGED -2504,2023-05-15,8736.107586721815,370,Urgent,2023-05-19,Inconclusive,4554,216,2,7,,,,DISCHARGED -2504,2022-08-30,19213.05053111153,272,Elective,2022-09-24,Normal,7836,305,1,15,,,,DISCHARGED -2505,2020-11-01,45405.45615036273,417,Urgent,2020-11-25,Normal,2505,284,4,29,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -2506,2020-09-28,24065.96392060597,187,Urgent,2020-10-07,Abnormal,2506,184,1,28,,,,DISCHARGED -2507,2022-05-08,12117.904737790255,223,Urgent,2022-06-05,Abnormal,2507,38,2,28,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2508,2022-03-25,22918.081572843308,210,Urgent,2022-03-29,Abnormal,2508,222,3,2,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2509,2023-04-28,1280.5533033794738,453,Elective,2023-05-06,Normal,2509,183,0,27,,,,DISCHARGED -2510,2020-03-09,41518.73435076176,477,Elective,2020-03-25,Inconclusive,2510,494,2,28,,,,DISCHARGED -2511,2021-03-13,3184.197956562955,232,Emergency,2021-04-12,Abnormal,2511,426,4,12,,,,DISCHARGED -2512,2021-03-22,19444.70474129962,197,Emergency,2021-03-26,Inconclusive,2512,177,2,11,,,,DISCHARGED -2513,2020-10-09,19453.264438587303,122,Urgent,2020-10-20,Normal,2513,406,4,18,,,,DISCHARGED -2514,2023-01-18,47142.33250958913,111,Urgent,,Normal,2514,427,4,28,,,,OPEN -2515,2019-10-20,16045.514403996984,349,Urgent,2019-11-17,Abnormal,2515,293,4,1,,,,DISCHARGED -2516,2022-05-18,31303.77519176569,301,Emergency,2022-06-07,Inconclusive,2516,339,1,0,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2517,2021-08-14,13380.82012275722,276,Emergency,2021-08-20,Abnormal,2517,150,3,7,,,,DISCHARGED -2518,2020-05-29,46252.60201181317,298,Emergency,2020-06-13,Inconclusive,2518,383,2,29,,,,DISCHARGED -2519,2022-06-23,39677.64886553293,456,Elective,2022-07-20,Abnormal,2519,125,3,8,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2520,2019-12-02,35353.55407132734,285,Elective,2019-12-18,Abnormal,2520,300,0,24,,,,DISCHARGED -2521,2021-01-19,42439.58283142851,429,Elective,2021-01-29,Abnormal,2521,307,2,26,,,,DISCHARGED -2522,2021-12-04,19534.98898999367,189,Emergency,2021-12-21,Normal,2522,335,3,7,,,,DISCHARGED -2523,2019-03-23,19292.71224178668,436,Elective,2019-03-25,Inconclusive,2523,433,3,20,,,,DISCHARGED -2524,2020-02-27,40323.77260816338,229,Elective,2020-03-04,Inconclusive,2524,233,0,16,,,,DISCHARGED -2525,2021-09-27,37382.58099687849,405,Elective,2021-10-04,Normal,2525,379,4,8,,,,DISCHARGED -2526,2023-01-20,3943.2140265605167,370,Elective,2023-02-03,Abnormal,2526,374,2,5,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2526,2019-01-03,6196.06882368655,133,Elective,2019-02-01,Abnormal,4578,7,2,27,,,,DISCHARGED -2527,2020-07-29,46162.23254088883,452,Urgent,2020-08-18,Inconclusive,2527,497,0,14,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2528,2019-04-16,36618.12059934924,335,Urgent,2019-05-12,Abnormal,2528,340,4,22,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -2529,2020-02-14,35048.373020686005,109,Emergency,2020-03-08,Abnormal,2529,128,2,23,,,,DISCHARGED -2530,2022-05-22,2437.047667190419,233,Urgent,2022-05-29,Inconclusive,2530,263,2,12,,,,DISCHARGED -2531,2021-04-26,16773.726335059444,495,Elective,2021-05-09,Abnormal,2531,156,2,20,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -2532,2022-08-16,3750.387256178306,147,Elective,2022-08-21,Abnormal,2532,351,4,21,,,,DISCHARGED -2533,2021-11-09,33030.10172775421,128,Urgent,2021-12-04,Abnormal,2533,357,0,11,,,,DISCHARGED -2534,2021-12-12,7097.149276795404,277,Urgent,2021-12-16,Normal,2534,4,2,12,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -2535,2021-07-23,17078.678064416912,145,Emergency,2021-08-18,Normal,2535,494,3,6,,,,DISCHARGED -2536,2022-12-30,18488.790818903144,426,Urgent,2023-01-01,Normal,2536,85,4,22,,,,DISCHARGED -2536,2020-12-01,43694.59262070149,411,Emergency,2020-12-04,Normal,5247,174,1,17,,,,DISCHARGED -2537,2023-05-15,11996.354746497836,190,Elective,,Inconclusive,2537,289,0,13,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",OPEN -2539,2021-04-25,29311.23157184468,179,Urgent,2021-05-10,Abnormal,2539,192,3,10,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2540,2019-06-29,44225.21987041013,158,Elective,2019-07-19,Abnormal,2540,310,2,27,,,,DISCHARGED -2541,2020-02-14,8241.939392050404,290,Elective,2020-03-15,Inconclusive,2541,118,1,13,,,,DISCHARGED -2542,2020-02-21,47901.3316383337,389,Elective,2020-03-21,Inconclusive,2542,217,0,16,,,,DISCHARGED -2543,2023-05-05,23997.405126439808,127,Emergency,,Abnormal,2543,426,4,23,,,,OPEN -2544,2023-08-17,13121.031808802823,137,Emergency,2023-09-14,Inconclusive,2544,457,1,20,,,,DISCHARGED -2545,2022-04-18,16828.6060406219,152,Emergency,2022-05-05,Normal,2545,413,1,25,,,,DISCHARGED -2546,2018-11-16,34992.70272714538,365,Urgent,2018-11-24,Inconclusive,2546,113,3,1,,,,DISCHARGED -2547,2022-12-23,11818.71890906016,397,Emergency,2022-12-27,Abnormal,2547,465,0,18,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2548,2021-11-29,27985.709146391677,491,Urgent,2021-12-15,Abnormal,2548,144,3,15,,,,DISCHARGED -2549,2021-02-02,3487.9251836506346,136,Elective,2021-02-10,Abnormal,2549,25,3,21,,,,DISCHARGED -2551,2021-06-14,16729.618723782067,307,Urgent,2021-07-11,Abnormal,2551,135,2,9,,,,DISCHARGED -2551,2023-10-27,36780.69863519063,122,Emergency,,Inconclusive,4283,302,4,21,,,,OPEN -2552,2021-06-08,24137.80095281537,481,Elective,2021-07-01,Inconclusive,2552,231,1,7,,,,DISCHARGED -2552,2022-02-18,35069.38994550068,471,Urgent,2022-03-10,Normal,2917,368,0,20,,,,DISCHARGED -2552,2022-12-10,42792.80326171994,347,Elective,2023-01-07,Inconclusive,8069,75,4,4,,,,DISCHARGED -2553,2020-01-18,16508.91894696419,134,Urgent,2020-02-16,Abnormal,2553,474,4,6,,,,DISCHARGED -2554,2022-05-05,24310.931965028103,314,Elective,2022-05-09,Inconclusive,2554,327,0,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2555,2021-01-12,42424.75551118867,176,Urgent,2021-01-14,Normal,2555,344,4,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2556,2018-12-06,21512.8504555352,356,Emergency,2018-12-21,Normal,2556,301,2,15,,,,DISCHARGED -2557,2023-03-28,2325.240554341675,228,Urgent,2023-03-30,Abnormal,2557,451,4,29,,,,DISCHARGED -2558,2019-08-22,10898.879544198791,226,Elective,2019-09-09,Abnormal,2558,288,2,4,,,,DISCHARGED -2559,2019-04-22,29788.209360541117,280,Urgent,2019-05-16,Inconclusive,2559,0,1,15,,,,DISCHARGED -2559,2023-10-12,10950.748180557635,424,Elective,2023-10-17,Normal,4321,146,1,14,,,,DISCHARGED -2560,2019-12-05,10939.259060025885,142,Urgent,2019-12-09,Abnormal,2560,286,3,8,,,,DISCHARGED -2561,2023-10-20,5517.214581572903,129,Urgent,2023-10-22,Abnormal,2561,463,2,21,,,,DISCHARGED -2562,2021-09-15,22315.03437321993,294,Urgent,2021-10-05,Normal,2562,141,1,22,,,,DISCHARGED -2563,2023-02-27,8753.971870005033,272,Elective,,Inconclusive,2563,52,4,11,,,,OPEN -2564,2021-02-17,34523.12900685982,134,Urgent,2021-03-19,Inconclusive,2564,303,0,7,,,,DISCHARGED -2564,2018-10-30,42709.355599637136,204,Emergency,2018-11-22,Normal,5864,68,0,12,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -2565,2021-08-09,40510.29083835007,416,Urgent,2021-08-24,Abnormal,2565,360,2,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2566,2023-10-26,21561.346235408444,486,Urgent,,Normal,2566,89,3,13,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -2567,2022-04-09,18949.370091854224,212,Elective,2022-04-26,Normal,2567,445,4,15,,,,DISCHARGED -2568,2022-12-11,16753.26329814126,158,Elective,2022-12-31,Normal,2568,219,2,10,,,,DISCHARGED -2568,2019-10-06,45524.116371496086,282,Urgent,2019-10-09,Normal,7609,449,0,19,,,,DISCHARGED -2569,2021-01-05,27643.351260859155,366,Emergency,2021-02-03,Abnormal,2569,497,2,11,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2570,2022-10-10,37092.66802185113,113,Urgent,2022-10-31,Normal,2570,191,4,14,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2570,2021-04-05,17588.862554785428,416,Emergency,2021-04-08,Abnormal,4494,453,1,23,,,,DISCHARGED -2571,2020-03-26,19985.102277601043,466,Emergency,2020-04-05,Abnormal,2571,62,4,11,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2572,2023-08-02,24291.275911118257,354,Elective,2023-08-24,Normal,2572,72,1,25,,,,DISCHARGED -2573,2022-04-09,28287.58615407271,422,Elective,2022-04-21,Normal,2573,160,1,8,,,,DISCHARGED -2573,2020-06-23,42314.383839214206,139,Urgent,2020-07-21,Inconclusive,7761,168,1,0,,,,DISCHARGED -2574,2021-03-13,10535.29051168389,326,Emergency,2021-04-10,Abnormal,2574,88,2,2,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -2575,2019-12-31,22770.96299438292,181,Urgent,2020-01-05,Inconclusive,2575,175,0,11,,,,DISCHARGED -2575,2023-04-21,10428.656829988846,318,Urgent,2023-04-22,Inconclusive,9110,268,2,19,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -2576,2021-03-28,36414.60739840357,429,Elective,2021-04-12,Abnormal,2576,72,0,12,,,,DISCHARGED -2576,2022-09-06,25225.370249528787,339,Urgent,2022-09-12,Inconclusive,7951,244,4,22,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2577,2020-05-03,36337.22925933667,119,Elective,2020-05-25,Inconclusive,2577,76,3,5,,,,DISCHARGED -2578,2019-02-23,16890.898064171648,177,Elective,2019-03-05,Inconclusive,2578,158,4,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2579,2019-02-07,22940.532321347528,272,Urgent,2019-03-03,Normal,2579,488,2,9,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2580,2022-11-22,44172.58206463089,479,Elective,2022-12-12,Normal,2580,458,2,15,,,,DISCHARGED -2581,2020-01-14,34261.43004173457,170,Urgent,2020-02-06,Inconclusive,2581,323,0,26,,,,DISCHARGED -2582,2020-04-03,45874.633130404414,266,Urgent,2020-04-15,Abnormal,2582,97,2,0,,,,DISCHARGED -2583,2022-07-08,18203.36690870457,342,Emergency,2022-07-25,Abnormal,2583,380,1,15,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -2583,2023-06-29,33971.08328566391,403,Urgent,,Normal,3248,101,2,3,,,,OPEN -2583,2021-06-17,48520.13280392152,142,Elective,2021-07-01,Normal,6370,493,0,5,,,,DISCHARGED -2584,2020-04-15,2753.453007872876,371,Elective,2020-05-08,Abnormal,2584,131,0,18,,,,DISCHARGED -2585,2021-03-20,30290.43210670009,256,Emergency,2021-04-07,Inconclusive,2585,101,1,1,,,,DISCHARGED -2586,2019-12-23,12668.5311373092,452,Emergency,2019-12-26,Inconclusive,2586,18,0,17,,,,DISCHARGED -2587,2022-05-07,10269.930800726186,369,Elective,2022-05-26,Abnormal,2587,453,3,9,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -2588,2019-03-31,5449.098927619556,149,Urgent,2019-04-06,Inconclusive,2588,481,4,27,,,,DISCHARGED -2589,2022-09-13,23777.217496608027,376,Urgent,2022-09-16,Inconclusive,2589,81,2,27,,,,DISCHARGED -2590,2020-04-07,5205.633624565028,209,Emergency,2020-05-05,Normal,2590,396,3,3,,,,DISCHARGED -2591,2022-08-07,24656.194454012835,366,Urgent,2022-09-04,Normal,2591,488,2,28,,,,DISCHARGED -2592,2021-01-31,5124.0239662893255,166,Emergency,2021-02-27,Inconclusive,2592,278,3,0,,,,DISCHARGED -2593,2021-05-30,15802.581219986732,324,Elective,2021-06-01,Abnormal,2593,338,2,14,,,,DISCHARGED -2594,2019-04-14,20322.081075998063,314,Emergency,2019-05-13,Inconclusive,2594,364,1,9,,,,DISCHARGED -2595,2023-04-10,18404.55616353791,175,Urgent,2023-04-13,Inconclusive,2595,330,0,17,,,,DISCHARGED -2596,2019-01-16,27748.854813861133,174,Elective,2019-01-23,Normal,2596,128,0,15,,,,DISCHARGED -2597,2021-02-11,2128.746992472857,393,Urgent,2021-02-12,Abnormal,2597,343,1,12,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -2598,2019-06-14,1604.020084840759,450,Urgent,2019-07-01,Inconclusive,2598,309,3,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2599,2019-01-22,19175.262325931897,449,Elective,2019-02-20,Inconclusive,2599,454,4,14,,,,DISCHARGED -2601,2020-11-29,45875.76239815678,205,Emergency,2020-12-18,Abnormal,2601,88,3,1,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -2602,2023-09-17,29710.279562313823,438,Elective,2023-09-19,Normal,2602,212,0,19,,,,DISCHARGED -2604,2019-12-11,46757.77721032385,338,Elective,2019-12-30,Abnormal,2604,142,4,3,,,,DISCHARGED -2605,2020-12-30,17488.630668604463,447,Urgent,2021-01-15,Inconclusive,2605,64,2,0,,,,DISCHARGED -2606,2021-08-11,21378.161052862783,253,Emergency,2021-08-14,Abnormal,2606,75,4,6,,,,DISCHARGED -2607,2023-02-07,26156.21340416225,118,Urgent,2023-03-09,Inconclusive,2607,198,3,22,,,,DISCHARGED -2608,2021-06-06,41587.356487703895,159,Elective,2021-06-18,Normal,2608,142,1,25,,,,DISCHARGED -2609,2020-04-20,39700.12825686741,139,Emergency,2020-05-13,Inconclusive,2609,404,2,10,,,,DISCHARGED -2610,2020-03-17,21493.926930527858,461,Emergency,2020-03-27,Abnormal,2610,402,3,25,,,,DISCHARGED -2611,2019-06-05,31067.32279879445,256,Elective,2019-06-25,Abnormal,2611,315,2,9,,,,DISCHARGED -2611,2022-01-20,42627.36748949484,285,Emergency,2022-02-03,Inconclusive,7183,92,4,0,,,,DISCHARGED -2612,2020-05-07,31431.37795725211,229,Urgent,2020-05-14,Inconclusive,2612,472,0,10,,,,DISCHARGED -2613,2022-04-25,21130.38580866285,192,Elective,2022-05-13,Normal,2613,416,3,23,,,,DISCHARGED -2614,2022-01-20,46774.61327973702,276,Urgent,2022-02-10,Inconclusive,2614,304,1,9,,,,DISCHARGED -2615,2020-05-04,25326.805551241006,186,Emergency,2020-06-01,Inconclusive,2615,223,4,13,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2615,2022-07-15,24657.16436140522,228,Emergency,2022-08-01,Abnormal,9231,496,3,13,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2616,2021-05-25,16596.40959939637,473,Emergency,2021-06-15,Inconclusive,2616,290,1,6,,,,DISCHARGED -2617,2019-09-08,28388.89773724963,309,Urgent,2019-09-24,Inconclusive,2617,427,3,22,,,,DISCHARGED -2618,2023-10-26,45192.478435696845,177,Emergency,2023-11-24,Abnormal,2618,101,4,10,,,,DISCHARGED -2619,2018-12-11,16201.08187161045,259,Urgent,2018-12-14,Inconclusive,2619,473,3,21,,,,DISCHARGED -2620,2023-07-04,15586.469385382026,186,Urgent,,Abnormal,2620,266,2,27,,,,OPEN -2621,2021-04-20,16056.137654425404,316,Emergency,2021-05-08,Inconclusive,2621,354,4,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2622,2020-12-06,16966.697481629963,286,Emergency,2021-01-03,Normal,2622,455,3,26,,,,DISCHARGED -2623,2019-07-25,46543.059854375446,484,Emergency,2019-08-11,Abnormal,2623,109,0,23,,,,DISCHARGED -2624,2020-11-25,35825.549077410506,327,Elective,2020-12-18,Inconclusive,2624,461,3,1,,,,DISCHARGED -2625,2021-09-21,45997.69734643205,237,Urgent,2021-09-27,Abnormal,2625,329,2,6,,,,DISCHARGED -2626,2023-08-21,14412.417240606432,340,Elective,2023-09-18,Normal,2626,449,1,18,,,,DISCHARGED -2627,2020-04-04,34410.59339808295,347,Urgent,2020-04-21,Abnormal,2627,429,1,13,,,,DISCHARGED -2628,2019-08-23,31824.652031549685,290,Emergency,2019-09-01,Normal,2628,264,1,18,,,,DISCHARGED -2629,2022-03-27,32730.688123574422,362,Urgent,2022-04-02,Inconclusive,2629,2,0,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2630,2022-01-13,35907.47268697924,321,Urgent,2022-02-01,Normal,2630,84,2,6,,,,DISCHARGED -2631,2020-09-25,8968.205000066286,145,Emergency,2020-10-08,Inconclusive,2631,281,4,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -2632,2021-03-30,33589.54809361052,420,Elective,2021-04-07,Abnormal,2632,327,1,2,,,,DISCHARGED -2633,2019-06-07,40528.69758526562,336,Elective,2019-06-28,Abnormal,2633,303,2,14,,,,DISCHARGED -2635,2021-07-17,33646.086468719484,496,Emergency,2021-08-03,Abnormal,2635,449,3,4,,,,DISCHARGED -2636,2023-10-10,43858.15051704504,363,Urgent,2023-11-07,Abnormal,2636,453,0,7,,,,DISCHARGED -2637,2020-11-12,25148.143290112694,451,Urgent,2020-12-01,Abnormal,2637,411,2,13,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2638,2022-06-01,46143.49120340079,115,Urgent,2022-06-24,Normal,2638,116,2,28,,,,DISCHARGED -2639,2020-01-24,25816.652579251037,249,Urgent,2020-01-31,Normal,2639,220,4,3,,,,DISCHARGED -2640,2023-01-26,49627.900560233335,273,Elective,2023-02-08,Abnormal,2640,153,2,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2641,2023-01-29,27448.79884487662,228,Elective,2023-02-06,Normal,2641,152,4,6,,,,DISCHARGED -2642,2022-12-29,14624.18251822247,443,Urgent,2023-01-01,Inconclusive,2642,11,0,17,,,,DISCHARGED -2643,2019-06-02,31746.51382694793,496,Elective,2019-06-29,Inconclusive,2643,132,0,13,,,,DISCHARGED -2644,2019-09-29,45440.45113479933,326,Urgent,2019-10-25,Inconclusive,2644,481,3,7,,,,DISCHARGED -2645,2021-11-05,49595.45512501731,113,Urgent,2021-11-21,Inconclusive,2645,303,4,25,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2646,2023-09-09,38452.72163675825,220,Urgent,2023-09-24,Normal,2646,292,4,11,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2647,2021-09-05,9611.825597121388,173,Elective,2021-09-17,Normal,2647,462,1,9,,,,DISCHARGED -2648,2019-04-12,32849.11542128452,415,Urgent,2019-04-24,Abnormal,2648,299,1,13,,,,DISCHARGED -2649,2019-02-03,31484.94663382468,460,Emergency,2019-02-11,Abnormal,2649,227,3,8,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -2650,2019-05-28,44276.6527731187,449,Urgent,2019-06-11,Inconclusive,2650,270,0,5,,,,DISCHARGED -2651,2023-06-19,34589.838918051944,157,Emergency,2023-07-14,Normal,2651,42,1,29,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2652,2019-07-07,26250.001156473834,450,Elective,2019-07-22,Inconclusive,2652,431,2,4,,,,DISCHARGED -2653,2020-04-10,48554.75967562424,247,Urgent,2020-04-27,Abnormal,2653,342,0,0,,,,DISCHARGED -2654,2021-05-07,30495.81558397598,142,Urgent,2021-05-26,Inconclusive,2654,325,2,0,,,,DISCHARGED -2655,2022-04-11,19773.31086724356,162,Emergency,2022-04-26,Normal,2655,301,4,24,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2656,2022-06-04,49243.31736311424,155,Urgent,2022-06-25,Inconclusive,2656,497,0,29,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2657,2019-08-01,43853.46495822737,327,Urgent,2019-08-28,Normal,2657,363,3,19,,,,DISCHARGED -2658,2020-04-11,21565.64773420869,275,Elective,2020-04-19,Abnormal,2658,378,4,16,,,,DISCHARGED -2658,2020-12-17,44745.091652500014,491,Elective,2021-01-06,Normal,2814,426,4,10,,,,DISCHARGED -2660,2023-07-07,1224.7683293587252,171,Urgent,,Normal,2660,492,2,25,,,,OPEN -2661,2019-05-31,44698.51398555716,268,Urgent,2019-06-30,Inconclusive,2661,20,4,11,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2662,2020-09-28,3238.597219924224,237,Elective,2020-10-14,Inconclusive,2662,406,1,2,,,,DISCHARGED -2662,2020-12-06,14881.14401904717,235,Elective,2020-12-23,Normal,3178,106,0,5,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2663,2019-08-08,22812.18829110568,381,Emergency,2019-08-20,Inconclusive,2663,335,1,29,,,,DISCHARGED -2664,2022-10-05,40316.7266858093,265,Urgent,2022-10-07,Normal,2664,302,2,10,,,,DISCHARGED -2665,2022-12-29,11894.212185549626,488,Emergency,2022-12-31,Inconclusive,2665,116,2,28,,,,DISCHARGED -2666,2020-08-10,34615.82116266479,362,Emergency,2020-08-25,Normal,2666,123,0,12,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2666,2019-11-08,16623.73887826834,412,Emergency,2019-12-05,Inconclusive,4011,398,4,10,,,,DISCHARGED -2667,2019-01-24,36144.26068598602,391,Elective,2019-02-22,Normal,2667,280,3,7,,,,DISCHARGED -2668,2021-05-27,23415.35059970277,128,Urgent,2021-06-13,Inconclusive,2668,291,2,28,,,,DISCHARGED -2669,2020-04-14,1070.0152701252623,314,Elective,2020-04-27,Inconclusive,2669,202,0,9,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2670,2022-11-14,22466.57238432296,348,Elective,2022-12-02,Abnormal,2670,50,3,1,,,,DISCHARGED -2671,2020-11-26,6572.018221397711,350,Urgent,2020-12-18,Inconclusive,2671,270,4,23,,,,DISCHARGED -2672,2022-11-24,21391.50300648184,468,Elective,2022-12-20,Inconclusive,2672,323,2,13,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2673,2022-08-25,47684.128222771,486,Emergency,2022-09-06,Inconclusive,2673,276,0,28,,,,DISCHARGED -2674,2021-11-23,28475.719188407154,108,Elective,2021-12-23,Abnormal,2674,140,0,15,,,,DISCHARGED -2676,2019-02-08,47916.97137531408,386,Elective,2019-02-13,Normal,2676,469,0,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -2678,2020-07-07,9098.047006680728,132,Elective,2020-07-28,Normal,2678,274,2,10,,,,DISCHARGED -2679,2023-05-16,49886.80518133734,164,Elective,2023-06-08,Normal,2679,289,3,1,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -2680,2019-06-29,26016.39516799301,319,Elective,2019-07-11,Abnormal,2680,333,0,23,,,,DISCHARGED -2681,2021-08-04,20978.27301712258,156,Elective,2021-08-12,Normal,2681,380,4,22,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -2682,2019-09-24,3497.985735905508,239,Elective,2019-10-17,Inconclusive,2682,451,0,4,,,,DISCHARGED -2683,2021-11-28,9562.630856484042,146,Emergency,2021-12-15,Abnormal,2683,495,3,28,,,,DISCHARGED -2684,2020-04-28,48153.64845556705,266,Emergency,2020-05-22,Inconclusive,2684,372,2,15,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -2685,2023-05-10,37013.349524948026,212,Emergency,2023-05-15,Inconclusive,2685,51,0,15,,,,DISCHARGED -2686,2019-07-03,27567.010108749924,336,Urgent,2019-07-20,Normal,2686,493,0,25,,,,DISCHARGED -2687,2023-01-08,46810.65399466919,380,Emergency,,Normal,2687,26,4,1,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",OPEN -2687,2021-05-25,12396.767504893176,404,Elective,2021-06-17,Abnormal,8969,156,4,15,,,,DISCHARGED -2688,2021-09-14,19206.843543271243,192,Emergency,2021-09-29,Normal,2688,238,0,24,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2689,2019-01-29,2923.3523499111266,481,Emergency,2019-02-20,Normal,2689,155,0,4,,,,DISCHARGED -2690,2022-10-21,8223.075180072163,400,Elective,2022-11-06,Normal,2690,290,4,7,,,,DISCHARGED -2691,2023-05-29,7612.570071770008,400,Emergency,,Abnormal,2691,135,3,28,,,,OPEN -2692,2022-02-26,47341.359352970445,272,Elective,2022-03-13,Inconclusive,2692,143,1,19,,,,DISCHARGED -2693,2020-01-07,7379.19719874067,315,Emergency,2020-01-20,Abnormal,2693,105,1,13,,,,DISCHARGED -2694,2020-08-13,9273.07521282235,231,Elective,2020-08-22,Inconclusive,2694,419,0,24,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -2694,2021-06-06,25428.73608378493,208,Elective,2021-06-09,Abnormal,9791,157,4,9,,,,DISCHARGED -2695,2020-06-25,20768.155117512622,132,Elective,2020-07-14,Abnormal,2695,145,2,22,,,,DISCHARGED -2696,2022-02-14,48074.67424049616,347,Emergency,2022-02-26,Abnormal,2696,1,2,1,,,,DISCHARGED -2697,2019-11-30,39852.316817586485,485,Emergency,2019-12-24,Abnormal,2697,432,1,2,,,,DISCHARGED -2698,2021-03-18,46606.33580616222,307,Urgent,2021-03-27,Abnormal,2698,76,3,29,,,,DISCHARGED -2699,2021-07-05,48480.84076646032,477,Emergency,2021-07-27,Abnormal,2699,131,1,17,,,,DISCHARGED -2700,2020-08-07,41260.63255479157,278,Emergency,2020-08-10,Inconclusive,2700,89,0,20,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2701,2020-06-01,8830.276603596452,320,Emergency,2020-06-25,Inconclusive,2701,344,3,1,,,,DISCHARGED -2702,2020-12-07,29794.59655175787,428,Urgent,2021-01-06,Abnormal,2702,349,2,20,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2703,2021-03-07,10887.125155561322,207,Urgent,2021-03-10,Normal,2703,458,4,28,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2704,2021-04-21,35504.50843479947,122,Emergency,2021-04-24,Normal,2704,262,4,8,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -2705,2021-08-31,6505.01598313251,365,Elective,2021-09-17,Abnormal,2705,350,0,1,,,,DISCHARGED -2706,2020-08-30,15358.605407396972,221,Emergency,2020-09-21,Normal,2706,107,1,24,,,,DISCHARGED -2707,2019-01-21,31421.56568458885,246,Urgent,2019-01-23,Normal,2707,73,0,6,,,,DISCHARGED -2709,2022-01-27,6464.030538793739,381,Elective,2022-02-20,Normal,2709,38,4,6,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2710,2022-04-23,43791.44016415779,313,Emergency,2022-05-22,Normal,2710,396,2,13,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -2711,2020-08-12,9003.212102835145,261,Urgent,2020-09-01,Normal,2711,158,4,4,,,,DISCHARGED -2712,2022-02-20,12862.89614233099,235,Emergency,2022-03-01,Normal,2712,70,3,7,,,,DISCHARGED -2713,2021-02-24,31042.870445592696,189,Urgent,2021-03-06,Inconclusive,2713,446,4,22,,,,DISCHARGED -2715,2020-04-13,4189.618979519723,173,Elective,2020-04-27,Normal,2715,311,4,21,,,,DISCHARGED -2716,2021-08-01,30930.958246546103,357,Elective,2021-08-10,Normal,2716,240,3,17,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2717,2019-03-10,23862.62828645282,235,Urgent,2019-03-19,Normal,2717,425,1,5,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -2718,2021-10-20,31681.955706158325,373,Elective,2021-11-03,Abnormal,2718,444,4,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2719,2023-06-01,17362.370733930373,261,Urgent,2023-06-25,Inconclusive,2719,297,0,17,,,,DISCHARGED -2720,2020-11-19,26466.228350303747,250,Urgent,2020-11-20,Inconclusive,2720,439,4,16,,,,DISCHARGED -2721,2021-02-16,6621.786604561795,333,Urgent,2021-03-03,Normal,2721,35,0,8,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2722,2022-06-10,40376.64648190551,350,Elective,2022-06-30,Normal,2722,83,3,12,,,,DISCHARGED -2723,2019-11-06,29695.81444969184,303,Emergency,2019-11-09,Normal,2723,451,4,15,,,,DISCHARGED -2724,2021-11-23,43510.63384085477,316,Urgent,2021-12-16,Inconclusive,2724,373,3,20,,,,DISCHARGED -2725,2019-11-06,38103.27306468731,418,Elective,2019-11-29,Abnormal,2725,262,3,9,,,,DISCHARGED -2726,2019-01-02,26805.699317323106,216,Elective,2019-01-14,Normal,2726,309,1,9,,,,DISCHARGED -2727,2023-10-20,10296.634193472306,478,Emergency,2023-11-11,Abnormal,2727,384,4,3,,,,DISCHARGED -2728,2023-07-07,19683.04369786167,257,Elective,,Inconclusive,2728,171,0,11,,,,OPEN -2729,2023-02-02,35367.97350257922,397,Urgent,,Abnormal,2729,375,0,26,,,,OPEN -2730,2021-09-12,49780.12262476423,439,Urgent,2021-09-22,Abnormal,2730,172,4,7,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2731,2020-02-17,42426.78469449219,291,Emergency,2020-03-03,Abnormal,2731,361,1,14,,,,DISCHARGED -2732,2023-07-22,10813.7917472245,415,Emergency,2023-08-08,Abnormal,2732,46,1,20,,,,DISCHARGED -2732,2022-02-01,31465.622536521503,455,Elective,2022-02-09,Inconclusive,6929,378,1,29,,,,DISCHARGED -2733,2021-10-24,43621.17509150677,171,Urgent,2021-11-22,Abnormal,2733,140,0,22,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2734,2022-01-29,3710.695852169433,371,Emergency,2022-02-06,Inconclusive,2734,374,3,18,,,,DISCHARGED -2735,2022-07-31,45892.14449481834,174,Elective,2022-08-05,Inconclusive,2735,405,1,14,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2736,2019-12-21,45679.92740717956,417,Elective,2020-01-09,Inconclusive,2736,117,0,7,,,,DISCHARGED -2737,2020-03-07,14228.199580897486,425,Elective,2020-03-31,Normal,2737,276,0,7,,,,DISCHARGED -2738,2019-01-07,34535.89855179965,291,Emergency,2019-01-28,Normal,2738,213,3,18,,,,DISCHARGED -2739,2019-10-02,9049.02023730678,358,Emergency,2019-10-21,Abnormal,2739,219,4,8,,,,DISCHARGED -2739,2023-10-01,2528.15333252586,355,Urgent,,Normal,4513,392,4,29,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -2740,2021-06-15,16387.536557621414,414,Urgent,2021-06-28,Normal,2740,25,1,23,,,,DISCHARGED -2741,2020-05-10,46912.62153215373,348,Elective,2020-05-19,Inconclusive,2741,8,1,16,,,,DISCHARGED -2742,2022-04-27,15868.402899565615,443,Urgent,2022-05-14,Normal,2742,270,3,7,,,,DISCHARGED -2743,2019-02-13,5786.128457148991,224,Elective,2019-02-24,Normal,2743,9,1,11,,,,DISCHARGED -2744,2020-08-15,16583.476294370677,471,Emergency,2020-08-22,Abnormal,2744,471,3,26,,,,DISCHARGED -2745,2021-06-16,5959.017430660474,456,Elective,2021-07-09,Normal,2745,377,0,14,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2746,2019-12-09,7941.331812193567,259,Urgent,2019-12-21,Inconclusive,2746,120,1,3,,,,DISCHARGED -2747,2022-08-31,20841.542772663983,124,Elective,2022-09-28,Abnormal,2747,124,0,5,,,,DISCHARGED -2748,2022-09-22,39941.460868015085,242,Elective,2022-09-23,Inconclusive,2748,169,2,29,,,,DISCHARGED -2749,2021-07-13,2059.1168232024597,482,Emergency,2021-08-10,Normal,2749,71,3,28,,,,DISCHARGED -2750,2022-02-20,11561.76068996926,374,Elective,2022-02-25,Normal,2750,151,2,15,,,,DISCHARGED -2751,2019-04-12,37167.89174429348,416,Emergency,2019-05-11,Abnormal,2751,207,1,25,,,,DISCHARGED -2752,2023-07-31,30119.178552689034,148,Elective,,Abnormal,2752,48,0,24,,,,OPEN -2753,2022-01-20,31083.046691416675,303,Emergency,2022-02-09,Inconclusive,2753,153,1,4,,,,DISCHARGED -2754,2020-02-03,1476.3616714080213,148,Emergency,2020-02-13,Inconclusive,2754,346,2,22,,,,DISCHARGED -2755,2022-05-29,7394.22654244488,346,Elective,2022-06-24,Abnormal,2755,292,1,12,,,,DISCHARGED -2756,2021-10-05,15549.407079465778,455,Elective,2021-10-31,Normal,2756,67,4,14,,,,DISCHARGED -2757,2021-09-05,7304.65645638417,189,Emergency,2021-10-05,Abnormal,2757,49,2,16,,,,DISCHARGED -2758,2020-02-02,35252.70824952037,281,Urgent,2020-02-04,Inconclusive,2758,151,1,24,,,,DISCHARGED -2760,2020-03-05,19664.91316122281,293,Urgent,2020-03-14,Abnormal,2760,18,0,29,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2761,2022-03-06,15854.112781297526,278,Emergency,2022-03-08,Normal,2761,99,1,21,,,,DISCHARGED -2762,2022-12-03,2569.6717026285287,492,Urgent,2022-12-13,Inconclusive,2762,59,0,26,,,,DISCHARGED -2763,2020-02-15,38517.63643808982,278,Emergency,2020-02-16,Abnormal,2763,166,4,19,,,,DISCHARGED -2764,2023-09-28,35888.31813330963,263,Emergency,2023-10-14,Normal,2764,201,1,21,,,,DISCHARGED -2765,2021-03-13,29845.065139109603,238,Elective,2021-03-16,Normal,2765,344,4,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2766,2019-02-19,39747.6488084627,358,Elective,2019-03-16,Inconclusive,2766,145,2,18,,,,DISCHARGED -2767,2020-11-14,40682.36380424722,335,Urgent,2020-12-12,Abnormal,2767,402,0,6,,,,DISCHARGED -2768,2019-09-01,49691.66266097402,482,Urgent,2019-09-15,Abnormal,2768,163,2,2,,,,DISCHARGED -2769,2022-07-09,8317.638478918132,105,Elective,2022-08-07,Abnormal,2769,457,0,12,,,,DISCHARGED -2770,2021-10-07,26414.852104688904,448,Urgent,2021-10-12,Inconclusive,2770,480,4,13,,,,DISCHARGED -2771,2021-02-15,4316.535914594049,376,Emergency,2021-03-04,Inconclusive,2771,438,3,15,,,,DISCHARGED -2772,2020-09-15,40002.89123307032,209,Emergency,2020-09-25,Abnormal,2772,241,1,12,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -2773,2022-09-23,30430.46649593099,116,Elective,2022-10-07,Inconclusive,2773,68,4,1,,,,DISCHARGED -2774,2019-03-23,44200.79236780894,335,Elective,2019-03-25,Normal,2774,174,0,13,,,,DISCHARGED -2775,2021-05-06,43560.7834682722,216,Elective,2021-05-30,Abnormal,2775,48,0,19,,,,DISCHARGED -2776,2022-08-11,23042.080749293244,364,Elective,2022-08-25,Abnormal,2776,482,0,6,,,,DISCHARGED -2776,2022-03-07,16635.45001974,164,Elective,2022-04-04,Normal,7740,107,0,4,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -2777,2022-02-13,14199.986999695731,284,Elective,2022-02-20,Normal,2777,225,1,13,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -2777,2022-01-23,43538.824649631126,184,Emergency,2022-02-18,Normal,6722,160,2,8,,,,DISCHARGED -2778,2020-06-08,6529.781129391422,226,Elective,2020-06-11,Normal,2778,118,3,9,,,,DISCHARGED -2779,2018-11-24,19694.33458154058,432,Emergency,2018-12-04,Normal,2779,148,1,6,,,,DISCHARGED -2780,2020-02-15,17261.56173301002,486,Emergency,2020-03-16,Abnormal,2780,464,0,27,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2781,2019-02-11,39072.289987398166,163,Emergency,2019-03-07,Abnormal,2781,149,1,13,,,,DISCHARGED -2782,2023-08-29,13961.236827620032,374,Elective,,Abnormal,2782,431,4,24,,,,OPEN -2783,2020-08-03,33173.11688834193,382,Urgent,2020-08-23,Abnormal,2783,292,0,13,,,,DISCHARGED -2784,2021-04-24,25854.58908459076,391,Emergency,2021-05-01,Inconclusive,2784,142,3,24,,,,DISCHARGED -2785,2020-08-23,43728.109844877225,126,Urgent,2020-09-01,Normal,2785,418,0,27,,,,DISCHARGED -2785,2020-10-13,23761.98851861565,391,Urgent,2020-10-29,Normal,8058,475,3,1,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -2786,2023-09-24,10305.725457850498,287,Urgent,2023-10-10,Normal,2786,454,3,16,,,,DISCHARGED -2787,2019-05-10,36690.93535291785,312,Emergency,2019-06-07,Inconclusive,2787,159,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2788,2022-12-08,15969.053710605976,160,Emergency,2023-01-05,Inconclusive,2788,10,2,19,,,,DISCHARGED -2789,2019-05-03,26019.28631643501,387,Urgent,2019-06-02,Normal,2789,137,1,3,,,,DISCHARGED -2790,2020-04-26,26247.006868587407,210,Urgent,2020-05-13,Inconclusive,2790,456,1,12,,,,DISCHARGED -2791,2023-10-12,12711.117889562702,448,Urgent,,Abnormal,2791,77,3,17,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -2792,2022-04-03,30067.74773194783,290,Emergency,2022-05-03,Normal,2792,76,0,2,,,,DISCHARGED -2793,2021-10-04,25794.19511085218,269,Elective,2021-10-15,Normal,2793,440,4,18,,,,DISCHARGED -2794,2019-01-15,11369.271194317564,431,Elective,2019-01-30,Abnormal,2794,253,4,4,,,,DISCHARGED -2795,2019-03-30,3003.4182986089254,183,Emergency,2019-04-15,Abnormal,2795,408,0,0,,,,DISCHARGED -2796,2019-12-11,24389.03146697239,329,Urgent,2019-12-24,Abnormal,2796,257,0,8,,,,DISCHARGED -2797,2023-07-18,28482.889354541352,290,Elective,2023-07-25,Normal,2797,319,2,23,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -2797,2022-06-14,12709.40263523816,441,Emergency,2022-07-01,Abnormal,6783,290,4,7,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -2797,2022-07-25,48444.3272045554,134,Urgent,2022-08-05,Abnormal,8237,262,3,2,,,,DISCHARGED -2798,2020-02-13,31848.838525601222,116,Emergency,2020-03-08,Abnormal,2798,84,1,1,,,,DISCHARGED -2799,2020-11-07,17809.334490775673,277,Urgent,2020-11-14,Normal,2799,145,2,0,,,,DISCHARGED -2801,2019-08-06,2239.09193529874,113,Emergency,2019-08-23,Abnormal,2801,322,4,11,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -2802,2019-07-25,1331.5220834623442,175,Elective,2019-07-27,Normal,2802,41,0,21,,,,DISCHARGED -2803,2022-11-13,39527.42202089524,325,Elective,2022-12-08,Abnormal,2803,373,4,12,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2804,2021-01-20,29564.32586286136,258,Urgent,2021-02-05,Inconclusive,2804,124,3,9,,,,DISCHARGED -2805,2021-06-19,41313.905039015845,491,Urgent,2021-06-20,Abnormal,2805,166,2,16,,,,DISCHARGED -2806,2021-02-13,44595.20545361234,360,Urgent,2021-02-23,Inconclusive,2806,424,0,29,,,,DISCHARGED -2807,2022-09-15,11962.53733110749,227,Elective,2022-09-27,Abnormal,2807,240,3,10,,,,DISCHARGED -2807,2022-01-01,22893.468375730023,242,Urgent,2022-01-09,Normal,6004,458,1,4,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -2808,2020-08-25,25507.92250820054,307,Emergency,2020-09-14,Abnormal,2808,486,2,24,,,,DISCHARGED -2808,2020-07-15,18171.488930128588,274,Urgent,2020-08-09,Normal,8385,279,3,26,,,,DISCHARGED -2809,2019-04-06,14701.65029614148,317,Elective,2019-04-19,Inconclusive,2809,187,3,8,,,,DISCHARGED -2809,2018-12-18,49608.86185798793,166,Emergency,2018-12-29,Normal,7546,301,0,12,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2810,2019-10-30,9422.808753446085,335,Elective,2019-11-18,Normal,2810,18,1,27,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -2811,2019-05-16,2871.9966903723034,445,Emergency,2019-05-28,Abnormal,2811,67,3,19,,,,DISCHARGED -2812,2023-03-27,16047.100582941934,374,Urgent,2023-04-17,Abnormal,2812,217,2,22,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -2813,2022-08-07,3684.546962126398,231,Urgent,2022-09-02,Inconclusive,2813,101,3,29,,,,DISCHARGED -2815,2019-05-20,6412.9993936596375,110,Urgent,2019-05-29,Abnormal,2815,41,4,10,,,,DISCHARGED -2815,2020-11-20,49563.699054646335,408,Emergency,2020-11-30,Inconclusive,8111,287,2,22,,,,DISCHARGED -2817,2020-02-11,42324.90946281877,155,Emergency,2020-02-14,Inconclusive,2817,166,2,3,,,,DISCHARGED -2818,2023-04-23,29416.275726819906,127,Urgent,2023-05-18,Abnormal,2818,108,3,20,,,,DISCHARGED -2819,2020-08-10,2529.504829248252,217,Elective,2020-08-13,Inconclusive,2819,493,0,10,,,,DISCHARGED -2821,2022-05-18,47812.00267143285,417,Urgent,2022-06-04,Inconclusive,2821,35,2,8,,,,DISCHARGED -2822,2020-07-10,36023.36940852515,434,Emergency,2020-07-24,Normal,2822,231,4,6,,,,DISCHARGED -2823,2021-04-01,12010.602313406109,479,Urgent,2021-04-05,Abnormal,2823,228,0,15,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2824,2022-09-06,12791.400082799946,361,Elective,2022-10-03,Normal,2824,352,0,22,,,,DISCHARGED -2825,2021-07-16,7819.865130850051,487,Elective,2021-07-26,Normal,2825,163,0,25,,,,DISCHARGED -2826,2022-10-06,30578.1756242784,264,Urgent,2022-10-21,Normal,2826,386,2,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -2827,2020-08-14,27031.58900918547,336,Urgent,2020-09-01,Abnormal,2827,72,0,24,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2828,2019-10-25,26980.60512297705,486,Urgent,2019-10-30,Abnormal,2828,135,3,4,,,,DISCHARGED -2829,2021-05-16,48894.47263732788,304,Emergency,2021-06-08,Inconclusive,2829,352,0,5,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2830,2020-10-25,10515.801093991136,152,Urgent,2020-11-17,Abnormal,2830,378,4,18,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -2831,2019-11-21,9761.832762325304,120,Emergency,2019-11-29,Inconclusive,2831,69,1,0,,,,DISCHARGED -2832,2023-01-16,4528.491505428123,168,Emergency,,Inconclusive,2832,424,4,26,,,,OPEN -2833,2019-01-31,31242.871058442517,207,Emergency,2019-02-05,Inconclusive,2833,486,2,15,,,,DISCHARGED -2834,2022-03-01,46816.62105667426,351,Urgent,2022-03-10,Normal,2834,195,0,27,,,,DISCHARGED -2835,2018-12-26,26844.0449133044,353,Urgent,2019-01-21,Abnormal,2835,268,0,17,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2836,2023-01-04,21779.60320819814,189,Urgent,2023-02-03,Abnormal,2836,48,3,23,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -2836,2020-05-26,25212.627820308808,138,Urgent,2020-06-07,Abnormal,7298,315,0,12,,,,DISCHARGED -2837,2018-12-17,31856.87977887301,215,Elective,2019-01-01,Normal,2837,129,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -2837,2022-03-23,48018.19666102654,486,Elective,2022-04-17,Normal,3735,443,2,9,,,,DISCHARGED -2838,2020-02-27,7904.1010750952655,396,Emergency,2020-03-26,Normal,2838,4,1,6,,,,DISCHARGED -2839,2021-11-26,37003.44607163002,357,Elective,2021-12-02,Inconclusive,2839,427,0,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2840,2019-01-15,45649.76302093756,386,Emergency,2019-01-30,Inconclusive,2840,26,1,12,,,,DISCHARGED -2841,2021-12-26,12891.22129736089,471,Urgent,2022-01-01,Inconclusive,2841,159,0,21,,,,DISCHARGED -2842,2023-03-01,13578.711484300047,392,Elective,2023-03-23,Normal,2842,148,2,15,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -2843,2022-03-18,14030.76062849755,455,Urgent,2022-04-10,Inconclusive,2843,263,4,23,,,,DISCHARGED -2844,2020-09-24,21443.490898680808,311,Elective,2020-10-03,Inconclusive,2844,229,2,19,,,,DISCHARGED -2845,2020-04-27,12491.093676735409,132,Urgent,2020-05-24,Abnormal,2845,199,1,21,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2846,2019-12-10,8796.601557896774,186,Elective,2019-12-11,Abnormal,2846,49,0,13,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2847,2023-06-09,5464.209064769407,113,Elective,2023-06-28,Normal,2847,66,1,10,,,,DISCHARGED -2848,2023-01-04,6450.504929151317,318,Elective,2023-01-06,Abnormal,2848,299,4,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -2849,2019-05-19,15313.068184883476,172,Urgent,2019-06-04,Inconclusive,2849,380,2,22,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2850,2021-10-30,40143.082341842855,381,Emergency,2021-11-05,Abnormal,2850,57,1,1,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -2851,2019-09-26,32516.334385182075,200,Elective,2019-09-30,Normal,2851,258,1,27,,,,DISCHARGED -2852,2021-05-16,42803.889037352754,136,Emergency,2021-05-17,Inconclusive,2852,341,4,7,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -2853,2022-10-17,47108.90130063329,494,Elective,2022-11-04,Inconclusive,2853,325,0,12,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2854,2019-01-20,46799.777271650906,425,Elective,2019-02-04,Inconclusive,2854,129,1,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -2854,2023-03-18,36258.23395184613,145,Urgent,2023-03-28,Abnormal,6895,214,4,11,,,,DISCHARGED -2856,2022-03-30,12004.67721803905,337,Urgent,2022-04-27,Inconclusive,2856,171,0,27,,,,DISCHARGED -2857,2021-01-29,41988.94962128474,224,Emergency,2021-01-30,Inconclusive,2857,257,0,7,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2858,2023-08-17,22916.32407791065,493,Urgent,2023-08-31,Abnormal,2858,101,2,15,,,,DISCHARGED -2859,2020-01-23,19355.54173786482,320,Urgent,2020-02-19,Normal,2859,208,4,17,,,,DISCHARGED -2860,2018-12-17,33447.1399745024,201,Elective,2019-01-06,Abnormal,2860,290,0,18,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -2861,2020-11-28,8178.68622069898,449,Elective,2020-12-14,Inconclusive,2861,353,2,27,,,,DISCHARGED -2862,2023-03-02,46353.77276306514,370,Elective,2023-03-23,Normal,2862,470,3,3,,,,DISCHARGED -2862,2023-03-23,1730.330943334328,220,Emergency,,Normal,7777,285,4,27,,,,OPEN -2863,2019-05-27,45267.70619719879,205,Emergency,2019-06-10,Normal,2863,115,3,24,,,,DISCHARGED -2864,2022-05-21,27623.26231415674,180,Elective,2022-06-07,Abnormal,2864,263,0,27,,,,DISCHARGED -2865,2021-04-26,33550.5374843005,423,Urgent,2021-05-04,Abnormal,2865,149,4,11,,,,DISCHARGED -2866,2021-09-25,10251.625538213197,143,Urgent,2021-10-20,Abnormal,2866,299,2,15,,,,DISCHARGED -2866,2021-10-14,28735.13569911025,169,Urgent,2021-11-07,Normal,7036,441,0,20,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2867,2023-09-08,17475.31606063893,196,Emergency,,Inconclusive,2867,35,4,21,,,,OPEN -2868,2022-11-28,20877.763427436632,147,Emergency,2022-11-30,Inconclusive,2868,452,4,16,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2869,2021-06-08,38288.98917188614,305,Emergency,2021-06-25,Normal,2869,332,3,3,,,,DISCHARGED -2870,2021-11-07,24307.581437633224,105,Urgent,2021-11-11,Normal,2870,476,0,29,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -2870,2020-08-14,28949.749529813616,473,Urgent,2020-08-24,Abnormal,3691,286,2,19,,,,DISCHARGED -2871,2019-04-09,31396.319126919603,343,Emergency,2019-04-13,Abnormal,2871,302,2,25,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2871,2021-07-29,26083.01225033725,414,Urgent,2021-08-06,Normal,6428,310,0,23,,,,DISCHARGED -2872,2020-02-25,33519.303331810224,157,Elective,2020-03-10,Abnormal,2872,207,0,23,,,,DISCHARGED -2873,2021-11-09,16980.91034772018,477,Emergency,2021-11-25,Abnormal,2873,105,1,25,,,,DISCHARGED -2874,2021-06-22,23020.70294219813,209,Emergency,2021-07-15,Inconclusive,2874,445,3,21,,,,DISCHARGED -2875,2022-03-11,16484.54752529387,187,Emergency,2022-03-27,Normal,2875,157,0,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2876,2023-08-05,42466.16284400199,288,Emergency,2023-09-02,Inconclusive,2876,120,0,8,,,,DISCHARGED -2877,2019-07-16,21022.123524873357,292,Elective,2019-07-22,Abnormal,2877,54,1,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2878,2021-05-06,34518.74037637507,397,Urgent,2021-05-23,Inconclusive,2878,399,1,16,,,,DISCHARGED -2879,2022-07-02,38326.46457880896,404,Emergency,2022-07-28,Abnormal,2879,11,4,16,,,,DISCHARGED -2880,2022-10-05,40479.25278872582,275,Elective,2022-10-28,Inconclusive,2880,144,2,1,,,,DISCHARGED -2881,2021-01-12,39433.90039493899,340,Emergency,2021-01-30,Inconclusive,2881,399,3,1,,,,DISCHARGED -2883,2018-12-22,46572.24114445912,224,Emergency,2018-12-24,Normal,2883,395,4,20,,,,DISCHARGED -2884,2022-01-05,9230.463305023608,286,Elective,2022-01-31,Normal,2884,135,0,22,,,,DISCHARGED -2885,2023-10-04,4956.577671849287,458,Elective,2023-10-24,Inconclusive,2885,467,1,6,,,,DISCHARGED -2886,2023-10-11,8964.129621558914,413,Urgent,2023-11-07,Inconclusive,2886,2,2,3,,,,DISCHARGED -2887,2019-01-04,1651.9871330403969,117,Elective,2019-01-19,Abnormal,2887,143,4,12,,,,DISCHARGED -2888,2020-08-04,37704.52516635386,446,Emergency,2020-08-23,Abnormal,2888,29,2,19,,,,DISCHARGED -2889,2018-11-30,23606.61067088948,108,Urgent,2018-12-08,Abnormal,2889,236,1,29,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2890,2019-03-10,26377.985266195625,407,Urgent,2019-03-18,Inconclusive,2890,278,4,29,,,,DISCHARGED -2891,2021-03-12,3862.2393896543545,418,Urgent,2021-03-31,Normal,2891,347,4,10,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2892,2022-05-24,9936.92661889724,171,Urgent,2022-06-09,Abnormal,2892,114,2,25,,,,DISCHARGED -2893,2019-09-30,22875.68440432815,325,Elective,2019-10-05,Normal,2893,103,1,2,,,,DISCHARGED -2894,2019-09-16,8846.782103493011,430,Elective,2019-10-09,Abnormal,2894,117,0,26,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2895,2021-10-20,47936.01113456638,269,Elective,2021-11-02,Normal,2895,4,4,1,,,,DISCHARGED -2896,2020-08-21,49803.71473897572,118,Emergency,2020-09-17,Inconclusive,2896,467,0,15,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2897,2023-09-05,25927.49593880047,371,Urgent,2023-09-11,Normal,2897,359,1,2,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2898,2022-06-28,30370.135745196323,421,Urgent,2022-07-06,Inconclusive,2898,247,4,23,,,,DISCHARGED -2900,2022-01-20,14293.146317552424,413,Emergency,2022-02-03,Inconclusive,2900,363,4,14,,,,DISCHARGED -2901,2022-02-25,10191.002019557587,117,Urgent,2022-03-06,Normal,2901,320,0,16,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2902,2022-11-03,28165.372595723635,480,Urgent,2022-11-25,Abnormal,2902,120,3,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -2903,2020-01-02,27415.693357581746,364,Urgent,2020-02-01,Normal,2903,285,0,19,,,,DISCHARGED -2904,2023-06-13,18985.31012916977,254,Urgent,,Inconclusive,2904,148,0,6,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -2905,2022-01-13,40427.3807535942,314,Emergency,2022-01-27,Abnormal,2905,83,3,15,,,,DISCHARGED -2906,2022-06-02,31042.06296651532,252,Urgent,2022-06-29,Inconclusive,2906,453,1,4,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2907,2019-03-28,1308.8484077804392,346,Urgent,2019-04-05,Abnormal,2907,405,1,1,,,,DISCHARGED -2908,2019-09-10,37754.94853173979,414,Urgent,2019-09-14,Normal,2908,465,4,0,,,,DISCHARGED -2909,2019-07-29,49212.9812360171,308,Emergency,2019-08-24,Normal,2909,455,2,21,,,,DISCHARGED -2910,2020-09-09,7459.49323585117,237,Elective,2020-10-08,Normal,2910,230,2,28,,,,DISCHARGED -2911,2023-08-09,22211.107042908337,312,Elective,2023-09-04,Inconclusive,2911,287,4,12,,,,DISCHARGED -2911,2020-11-18,26458.58566962557,248,Urgent,2020-11-19,Inconclusive,3603,160,2,15,,,,DISCHARGED -2912,2019-09-24,37405.92287708711,247,Emergency,2019-10-09,Abnormal,2912,271,0,4,,,,DISCHARGED -2913,2023-03-04,9217.289527898129,265,Urgent,2023-03-10,Abnormal,2913,459,0,2,,,,DISCHARGED -2914,2020-01-12,20931.26587187037,470,Elective,2020-01-28,Normal,2914,37,3,26,,,,DISCHARGED -2915,2023-07-20,16352.643999845086,175,Urgent,2023-08-15,Normal,2915,499,3,26,,,,DISCHARGED -2916,2022-11-29,42773.88259138329,276,Elective,2022-12-03,Inconclusive,2916,225,4,14,,,,DISCHARGED -2918,2023-04-06,34428.87396129534,121,Emergency,2023-04-17,Normal,2918,141,4,15,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2919,2021-08-05,41111.35104079901,443,Urgent,2021-08-21,Abnormal,2919,291,4,10,,,,DISCHARGED -2920,2021-01-18,3645.997971831631,419,Elective,2021-02-06,Inconclusive,2920,480,0,24,,,,DISCHARGED -2921,2020-09-05,30118.142401618472,424,Elective,2020-09-13,Inconclusive,2921,150,2,18,,,,DISCHARGED -2922,2020-03-21,32531.454667145452,248,Elective,2020-04-13,Inconclusive,2922,113,4,17,,,,DISCHARGED -2923,2021-05-20,43649.23443786718,343,Urgent,2021-06-02,Inconclusive,2923,236,4,20,,,,DISCHARGED -2924,2022-02-08,4717.099042758425,126,Elective,2022-03-01,Abnormal,2924,65,0,8,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2925,2022-08-19,35633.76284338245,459,Emergency,2022-09-14,Inconclusive,2925,360,0,7,,,,DISCHARGED -2926,2020-10-29,49898.927542721096,190,Elective,2020-11-12,Normal,2926,340,0,21,,,,DISCHARGED -2927,2020-02-08,44388.46307394095,440,Elective,2020-02-21,Normal,2927,257,2,18,,,,DISCHARGED -2928,2023-04-09,24087.163418228494,372,Elective,,Normal,2928,474,4,21,,,,OPEN -2929,2023-09-20,46291.895571682464,455,Emergency,2023-10-06,Normal,2929,248,1,4,,,,DISCHARGED -2930,2023-01-04,39987.97357068673,266,Urgent,2023-01-26,Abnormal,2930,456,1,16,,,,DISCHARGED -2931,2022-01-14,7056.4164803428375,174,Elective,2022-01-24,Inconclusive,2931,448,4,4,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2932,2019-09-29,37980.817859882816,123,Urgent,2019-10-05,Abnormal,2932,330,4,13,,,,DISCHARGED -2933,2021-06-22,24710.2079826386,233,Urgent,2021-06-24,Inconclusive,2933,322,4,6,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2934,2020-01-27,29834.35443890922,410,Emergency,2020-02-13,Normal,2934,179,4,8,,,,DISCHARGED -2935,2021-10-05,25632.673267018392,289,Emergency,2021-10-24,Abnormal,2935,189,2,27,,,,DISCHARGED -2936,2022-04-27,13709.624590316684,462,Emergency,2022-05-18,Inconclusive,2936,406,1,16,,,,DISCHARGED -2937,2023-02-27,1736.4236432338753,102,Elective,2023-03-25,Inconclusive,2937,153,3,2,,,,DISCHARGED -2938,2023-01-28,11724.463049729951,257,Urgent,,Normal,2938,195,1,7,,,,OPEN -2939,2021-06-05,31809.720508298837,155,Elective,2021-07-04,Inconclusive,2939,465,1,21,,,,DISCHARGED -2940,2020-11-09,32858.73727013121,257,Emergency,2020-11-18,Abnormal,2940,310,0,12,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -2941,2022-09-13,15646.44029877776,113,Elective,2022-10-13,Abnormal,2941,261,4,15,,,,DISCHARGED -2942,2020-02-10,18139.93530962089,478,Elective,2020-02-15,Inconclusive,2942,418,4,20,,,,DISCHARGED -2943,2022-11-24,49921.37336494804,366,Urgent,2022-12-09,Abnormal,2943,405,4,28,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -2944,2022-07-11,41198.5514592896,291,Urgent,2022-08-10,Abnormal,2944,426,0,9,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2945,2023-07-12,32157.769307478244,278,Urgent,,Normal,2945,142,2,17,,,,OPEN -2946,2019-09-02,18442.60092107172,413,Urgent,2019-09-07,Abnormal,2946,341,2,2,,,,DISCHARGED -2947,2021-05-19,5045.668652016222,289,Emergency,2021-05-22,Normal,2947,315,3,11,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2948,2018-12-28,11531.518732078912,336,Urgent,2019-01-03,Inconclusive,2948,100,2,15,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -2949,2023-01-20,41496.96074658107,137,Elective,2023-01-28,Inconclusive,2949,243,2,17,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2950,2022-09-21,47814.20577733297,284,Urgent,2022-10-06,Inconclusive,2950,489,4,16,,,,DISCHARGED -2951,2021-07-09,12349.93659393792,163,Elective,2021-08-01,Inconclusive,2951,11,1,6,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2953,2020-02-03,4311.02370718698,446,Emergency,2020-02-23,Inconclusive,2953,238,2,29,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2954,2022-02-02,35829.37346763172,384,Elective,2022-03-03,Normal,2954,48,2,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -2956,2021-08-24,40283.898745716295,483,Urgent,2021-08-29,Inconclusive,2956,41,0,22,,,,DISCHARGED -2957,2023-10-08,28993.967763989214,130,Urgent,2023-10-20,Abnormal,2957,165,3,27,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2958,2023-07-20,35376.93073958734,254,Urgent,2023-08-13,Inconclusive,2958,81,0,22,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -2959,2020-07-12,25777.582555139605,156,Urgent,2020-07-26,Inconclusive,2959,428,4,7,,,,DISCHARGED -2960,2020-04-19,30331.860738152325,182,Emergency,2020-05-07,Inconclusive,2960,290,1,16,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -2961,2021-06-13,36154.28019266695,225,Emergency,2021-06-20,Normal,2961,157,3,20,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2962,2020-09-01,12324.92302640782,168,Elective,2020-09-11,Normal,2962,215,0,25,,,,DISCHARGED -2963,2023-07-09,22270.7659790254,205,Elective,2023-07-10,Normal,2963,489,2,24,,,,DISCHARGED -2964,2020-10-06,4034.03849953964,488,Emergency,2020-10-08,Inconclusive,2964,157,2,27,,,,DISCHARGED -2965,2020-07-01,25005.57209349229,500,Emergency,2020-07-14,Inconclusive,2965,461,3,26,,,,DISCHARGED -2966,2022-11-14,26837.265500636124,116,Urgent,2022-12-09,Inconclusive,2966,133,2,6,,,,DISCHARGED -2967,2019-09-30,42939.52240904879,384,Elective,2019-10-13,Normal,2967,66,0,0,,,,DISCHARGED -2968,2020-04-13,9293.50028217882,201,Emergency,2020-05-05,Inconclusive,2968,335,0,7,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2969,2023-04-15,14824.89980965191,198,Emergency,2023-05-01,Inconclusive,2969,6,2,18,,,,DISCHARGED -2970,2023-09-28,9202.248026537109,466,Emergency,,Normal,2970,435,2,28,,,,OPEN -2971,2022-03-30,7963.098011735559,260,Elective,2022-04-27,Abnormal,2971,13,4,19,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2972,2019-10-03,8768.254699110723,247,Urgent,2019-10-17,Abnormal,2972,72,1,19,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -2973,2023-08-20,33484.65552824067,161,Urgent,,Normal,2973,398,3,9,,,,OPEN -2974,2019-10-23,44519.63025972372,212,Emergency,2019-10-24,Inconclusive,2974,404,0,29,,,,DISCHARGED -2975,2021-02-16,16290.493087858751,296,Urgent,2021-03-12,Abnormal,2975,162,3,11,,,,DISCHARGED -2976,2023-03-14,26604.24696035863,254,Urgent,,Normal,2976,65,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -2977,2022-11-09,44649.87567768599,309,Emergency,2022-11-17,Abnormal,2977,346,0,0,,,,DISCHARGED -2978,2020-10-07,39165.70608710915,185,Urgent,2020-10-12,Normal,2978,129,4,23,,,,DISCHARGED -2978,2020-05-07,28674.763844915786,297,Emergency,2020-05-21,Abnormal,5194,418,4,24,,,,DISCHARGED -2979,2022-04-18,46915.7452305632,294,Emergency,2022-04-26,Inconclusive,2979,465,2,24,,,,DISCHARGED -2980,2023-06-25,33605.78593977403,318,Urgent,,Abnormal,2980,205,3,20,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,OPEN -2981,2019-04-20,2486.420508579542,165,Emergency,2019-05-09,Inconclusive,2981,275,3,3,,,,DISCHARGED -2982,2020-10-27,4568.766167655131,494,Elective,2020-10-28,Normal,2982,465,2,3,,,,DISCHARGED -2983,2020-03-19,17559.644860598404,115,Urgent,2020-04-17,Normal,2983,255,3,8,,,,DISCHARGED -2984,2021-01-26,15883.043617516954,402,Urgent,2021-02-04,Inconclusive,2984,265,2,14,,,,DISCHARGED -2985,2019-10-28,18688.239896867817,476,Urgent,2019-11-05,Inconclusive,2985,24,0,23,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2986,2020-05-03,28184.960626964414,340,Elective,2020-05-13,Normal,2986,449,4,25,,,,DISCHARGED -2988,2023-08-23,34730.83651230212,176,Urgent,2023-09-04,Inconclusive,2988,280,4,14,,,,DISCHARGED -2989,2019-06-10,15386.09958245291,345,Emergency,2019-07-09,Inconclusive,2989,252,3,25,,,,DISCHARGED -2990,2020-01-23,31729.848348469197,393,Emergency,2020-02-07,Inconclusive,2990,309,1,27,,,,DISCHARGED -2991,2022-11-09,19160.38465223552,219,Urgent,2022-11-16,Inconclusive,2991,288,4,6,,,,DISCHARGED -2993,2021-01-31,21350.88825421756,324,Urgent,2021-02-22,Normal,2993,163,2,11,,,,DISCHARGED -2994,2019-04-04,44719.9041719709,416,Urgent,2019-04-25,Normal,2994,94,1,2,,,,DISCHARGED -2995,2022-12-14,31666.544633220117,441,Elective,2022-12-17,Normal,2995,269,1,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2996,2022-08-29,23486.27533506861,157,Emergency,2022-09-05,Abnormal,2996,320,4,8,,,,DISCHARGED -2997,2021-05-26,10983.650789386096,168,Emergency,2021-05-31,Inconclusive,2997,109,4,13,,,,DISCHARGED -2998,2023-05-08,29367.17656921782,118,Urgent,2023-06-03,Abnormal,2998,335,4,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2999,2021-05-12,43876.917738175616,381,Urgent,2021-05-26,Abnormal,2999,309,2,23,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3000,2019-06-09,24158.600282604948,404,Urgent,2019-06-17,Normal,3000,237,1,27,,,,DISCHARGED -3001,2020-07-09,41430.01352558279,168,Elective,2020-07-14,Normal,3001,380,3,11,,,,DISCHARGED -3002,2023-10-17,41937.62699737799,196,Emergency,2023-11-02,Normal,3002,435,2,0,,,,DISCHARGED -3003,2020-03-25,48989.22046630025,376,Urgent,2020-04-24,Inconclusive,3003,386,0,18,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -3004,2020-06-19,19040.481555131708,294,Elective,2020-07-12,Normal,3004,482,4,29,,,,DISCHARGED -3005,2020-02-18,36042.70485117828,474,Emergency,2020-03-07,Abnormal,3005,424,1,15,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3006,2023-08-20,34550.43838235001,469,Urgent,2023-08-29,Inconclusive,3006,389,2,11,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -3007,2022-09-21,4330.41714647144,473,Elective,2022-09-29,Abnormal,3007,24,0,9,,,,DISCHARGED -3008,2020-05-16,29209.807921145988,396,Elective,2020-05-30,Inconclusive,3008,140,2,1,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -3009,2020-08-03,2612.544949852821,229,Elective,2020-08-31,Abnormal,3009,116,2,17,,,,DISCHARGED -3010,2022-08-10,44846.01372505414,415,Elective,2022-09-07,Normal,3010,481,3,12,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -3013,2022-04-01,39846.67451964181,406,Urgent,2022-04-28,Inconclusive,3013,391,3,28,,,,DISCHARGED -3014,2019-08-01,9644.697645505625,368,Urgent,2019-08-14,Inconclusive,3014,404,2,23,,,,DISCHARGED -3015,2021-06-21,45919.72391326319,312,Elective,2021-07-06,Normal,3015,481,0,5,,,,DISCHARGED -3016,2020-03-04,13974.701100337184,358,Emergency,2020-03-29,Normal,3016,451,1,11,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -3017,2022-07-23,22654.54406538556,114,Elective,2022-08-16,Inconclusive,3017,24,1,27,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3018,2023-07-13,43873.6342400572,427,Elective,2023-07-28,Abnormal,3018,78,4,27,,,,DISCHARGED -3019,2023-01-18,44179.0017280507,198,Emergency,2023-01-22,Normal,3019,67,4,28,,,,DISCHARGED -3020,2020-06-25,24124.109892544548,176,Emergency,2020-07-21,Abnormal,3020,172,1,21,,,,DISCHARGED -3021,2020-01-07,1082.4447136181125,351,Elective,2020-02-06,Normal,3021,443,2,3,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3022,2020-12-22,22529.01843543141,139,Elective,2021-01-02,Inconclusive,3022,11,2,0,,,,DISCHARGED -3023,2023-09-25,19570.61366262392,106,Elective,2023-10-03,Inconclusive,3023,287,3,10,,,,DISCHARGED -3024,2022-02-05,10302.962830167777,469,Elective,2022-02-09,Inconclusive,3024,127,3,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3025,2021-06-15,38761.28250167328,478,Elective,2021-07-06,Inconclusive,3025,95,4,7,,,,DISCHARGED -3026,2022-03-07,14069.63712363104,138,Elective,2022-03-15,Abnormal,3026,91,1,1,,,,DISCHARGED -3027,2021-08-26,46055.67211962495,104,Elective,2021-09-04,Abnormal,3027,140,2,1,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3028,2023-03-27,12520.853260333426,472,Emergency,2023-04-26,Normal,3028,30,1,15,,,,DISCHARGED -3029,2020-12-24,31329.92940572952,405,Elective,2020-12-31,Normal,3029,333,0,0,,,,DISCHARGED -3030,2022-04-21,26946.720983773488,101,Emergency,2022-04-30,Abnormal,3030,19,1,3,,,,DISCHARGED -3031,2022-10-05,22196.970495364298,328,Emergency,2022-10-24,Inconclusive,3031,145,0,5,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -3033,2022-06-16,15531.123788191884,372,Urgent,2022-06-26,Normal,3033,476,3,29,,,,DISCHARGED -3034,2019-06-22,17636.398985765925,401,Elective,2019-07-14,Abnormal,3034,315,3,20,,,,DISCHARGED -3035,2020-01-11,45829.667726548585,424,Elective,2020-01-14,Abnormal,3035,446,4,19,,,,DISCHARGED -3036,2019-12-29,47631.02169520548,214,Elective,2020-01-03,Abnormal,3036,389,1,13,,,,DISCHARGED -3037,2020-02-19,37304.68656576952,193,Urgent,2020-03-01,Normal,3037,159,1,19,,,,DISCHARGED -3038,2019-04-13,33885.89268271875,436,Urgent,2019-05-02,Inconclusive,3038,348,0,25,,,,DISCHARGED -3039,2018-12-30,4516.035128277084,300,Emergency,2019-01-13,Abnormal,3039,42,3,14,,,,DISCHARGED -3040,2020-02-02,12227.695798175866,295,Urgent,2020-02-09,Normal,3040,253,0,6,,,,DISCHARGED -3041,2022-01-09,37183.292628563,362,Urgent,2022-02-05,Abnormal,3041,129,3,6,,,,DISCHARGED -3042,2023-07-15,18471.86869157152,411,Emergency,,Inconclusive,3042,59,0,17,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -3043,2021-07-13,45434.588371381615,230,Urgent,2021-08-05,Abnormal,3043,150,3,28,,,,DISCHARGED -3044,2022-11-23,48422.8873974993,210,Elective,2022-12-09,Inconclusive,3044,466,0,22,,,,DISCHARGED -3045,2022-09-29,27796.288193939152,191,Emergency,2022-10-23,Normal,3045,286,3,1,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -3046,2018-12-08,36491.20134196766,484,Elective,2019-01-05,Abnormal,3046,498,0,19,,,,DISCHARGED -3047,2019-06-03,36331.01260718015,396,Elective,2019-06-24,Inconclusive,3047,4,1,14,,,,DISCHARGED -3048,2019-10-31,19345.15411864992,470,Elective,2019-11-07,Abnormal,3048,466,4,0,,,,DISCHARGED -3049,2020-07-04,44240.44402929015,415,Emergency,2020-07-12,Normal,3049,417,0,20,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3050,2020-06-18,9501.933275648213,362,Emergency,2020-06-30,Inconclusive,3050,265,4,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -3051,2021-01-15,44132.58850675531,499,Elective,2021-01-21,Inconclusive,3051,344,1,19,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -3053,2022-07-19,27202.773196443453,366,Urgent,2022-07-27,Inconclusive,3053,129,1,28,,,,DISCHARGED -3054,2022-10-14,34218.87772413768,389,Elective,2022-10-29,Abnormal,3054,381,3,24,,,,DISCHARGED -3055,2020-10-07,21169.287555743744,273,Elective,2020-10-19,Inconclusive,3055,266,4,12,,,,DISCHARGED -3056,2023-04-24,45608.98980092845,197,Emergency,,Inconclusive,3056,177,2,11,,,,OPEN -3057,2022-05-25,39677.55395831862,391,Emergency,2022-05-27,Abnormal,3057,252,3,23,,,,DISCHARGED -3058,2020-06-07,30081.117853501204,305,Urgent,2020-06-22,Abnormal,3058,414,4,21,,,,DISCHARGED -3059,2021-10-31,4512.905076618146,393,Elective,2021-11-22,Abnormal,3059,55,0,14,,,,DISCHARGED -3060,2022-05-26,6118.350474381018,479,Emergency,2022-05-30,Inconclusive,3060,462,0,23,,,,DISCHARGED -3061,2020-08-06,25464.236363753706,207,Urgent,2020-08-07,Inconclusive,3061,456,1,4,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -3061,2021-12-10,35260.80851419215,354,Emergency,2021-12-24,Abnormal,6215,470,2,6,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -3062,2022-01-05,16702.28967673392,157,Urgent,2022-01-12,Abnormal,3062,82,0,7,,,,DISCHARGED -3063,2019-06-17,6110.906995852158,126,Elective,2019-07-05,Abnormal,3063,392,4,22,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3064,2020-05-21,49699.92253455233,360,Emergency,2020-06-15,Abnormal,3064,98,4,13,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3065,2023-07-20,49487.502458254734,319,Urgent,,Inconclusive,3065,148,0,3,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",OPEN -3066,2018-11-25,47765.64859521717,214,Elective,2018-11-26,Normal,3066,328,4,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -3066,2023-02-18,35560.58259917567,415,Elective,2023-03-16,Abnormal,7147,155,4,28,,,,DISCHARGED -3067,2019-08-29,15080.873436235446,238,Emergency,2019-08-30,Inconclusive,3067,189,1,13,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3068,2020-02-18,7144.92593178088,487,Urgent,2020-03-02,Normal,3068,493,2,9,,,,DISCHARGED -3069,2020-04-25,24602.97015105977,417,Urgent,2020-05-01,Normal,3069,370,1,21,,,,DISCHARGED -3070,2020-07-14,44042.33711524014,422,Elective,2020-07-22,Abnormal,3070,262,2,29,,,,DISCHARGED -3071,2021-08-18,10108.849771821002,457,Emergency,2021-08-23,Normal,3071,79,4,29,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -3072,2021-06-16,8961.954526506668,405,Elective,2021-07-09,Normal,3072,399,2,27,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3073,2020-04-25,46125.00841454958,493,Elective,2020-05-03,Inconclusive,3073,251,4,15,,,,DISCHARGED -3074,2022-01-22,27785.76388876017,428,Emergency,2022-02-08,Normal,3074,96,4,10,,,,DISCHARGED -3075,2022-01-20,42826.25894958083,117,Emergency,2022-02-16,Inconclusive,3075,259,1,21,,,,DISCHARGED -3076,2021-11-21,25079.72068040528,292,Urgent,2021-12-14,Abnormal,3076,259,1,28,,,,DISCHARGED -3077,2020-03-30,4298.073633218277,282,Elective,2020-04-16,Abnormal,3077,102,3,24,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -3078,2020-02-02,13673.859270371644,258,Emergency,2020-02-24,Abnormal,3078,39,0,25,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -3079,2023-04-04,1993.936016917022,479,Elective,2023-04-07,Inconclusive,3079,272,3,13,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -3080,2023-07-26,17599.515910295057,295,Elective,,Abnormal,3080,100,3,13,,,,OPEN -3081,2018-11-11,19391.59385320598,283,Emergency,2018-11-25,Normal,3081,358,2,1,,,,DISCHARGED -3082,2019-05-12,48441.32562710593,187,Emergency,2019-05-15,Inconclusive,3082,379,4,21,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3083,2022-08-06,29576.501329415467,197,Elective,2022-08-17,Abnormal,3083,307,4,12,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3085,2020-10-19,27346.34215391318,480,Urgent,2020-11-01,Abnormal,3085,220,4,2,,,,DISCHARGED -3086,2021-04-13,28656.611074002816,145,Urgent,2021-05-08,Abnormal,3086,307,0,29,,,,DISCHARGED -3088,2022-05-29,21414.90214783391,268,Elective,2022-06-21,Inconclusive,3088,419,2,17,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3089,2022-08-29,13205.213429925288,333,Urgent,2022-09-15,Inconclusive,3089,123,2,21,,,,DISCHARGED -3090,2020-12-20,8325.723314836521,459,Elective,2021-01-17,Inconclusive,3090,421,4,3,,,,DISCHARGED -3091,2022-09-21,23471.083129657563,371,Urgent,2022-09-25,Inconclusive,3091,230,3,20,,,,DISCHARGED -3092,2021-11-23,1845.2985382286452,126,Urgent,2021-11-25,Inconclusive,3092,177,0,20,,,,DISCHARGED -3093,2020-07-17,29164.569730894804,366,Urgent,2020-08-08,Abnormal,3093,62,3,18,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3094,2022-06-16,20038.57798367889,113,Elective,2022-06-19,Inconclusive,3094,484,1,15,,,,DISCHARGED -3095,2023-05-29,14920.932452963854,392,Emergency,2023-06-17,Inconclusive,3095,115,2,27,,,,DISCHARGED -3096,2023-02-08,5984.385715350033,477,Emergency,2023-02-26,Inconclusive,3096,190,2,3,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3097,2020-06-30,29685.348383780743,323,Elective,2020-07-26,Normal,3097,61,3,18,,,,DISCHARGED -3098,2020-07-27,13691.821196220128,206,Emergency,2020-08-06,Abnormal,3098,255,0,22,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3099,2023-07-13,16539.28341079875,138,Emergency,,Inconclusive,3099,482,2,14,,,,OPEN -3100,2019-05-20,3856.792000521451,390,Elective,2019-06-08,Abnormal,3100,6,3,0,,,,DISCHARGED -3101,2019-06-23,36110.69377074615,467,Elective,2019-07-20,Inconclusive,3101,154,0,15,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3102,2022-04-25,44180.09037128022,162,Elective,2022-05-02,Abnormal,3102,91,3,14,,,,DISCHARGED -3103,2020-07-30,44710.80778346803,274,Elective,2020-08-14,Inconclusive,3103,469,0,15,,,,DISCHARGED -3104,2021-06-15,45880.3180357337,148,Urgent,2021-07-09,Abnormal,3104,13,4,21,,,,DISCHARGED -3105,2019-08-31,26831.020331981643,286,Emergency,2019-09-12,Abnormal,3105,454,0,19,,,,DISCHARGED -3106,2019-09-03,2789.481060551187,110,Emergency,2019-09-08,Normal,3106,228,1,0,,,,DISCHARGED -3107,2020-05-14,12366.0143402873,253,Urgent,2020-05-30,Inconclusive,3107,85,4,16,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -3108,2023-07-30,29111.15311139416,246,Emergency,,Abnormal,3108,132,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -3109,2022-09-29,48112.9633141049,181,Elective,2022-10-19,Inconclusive,3109,182,4,29,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3110,2022-04-21,16107.21239207795,368,Elective,2022-05-17,Normal,3110,385,4,4,,,,DISCHARGED -3111,2021-03-26,31361.213328673588,195,Urgent,2021-04-22,Normal,3111,61,3,25,,,,DISCHARGED -3112,2020-06-24,11629.933807666624,212,Urgent,2020-07-21,Abnormal,3112,218,3,6,,,,DISCHARGED -3113,2019-08-05,25529.91324398358,475,Emergency,2019-08-28,Normal,3113,404,1,12,,,,DISCHARGED -3114,2022-03-17,41845.22454136264,423,Emergency,2022-03-26,Inconclusive,3114,245,3,11,,,,DISCHARGED -3115,2020-01-31,25843.909186557117,461,Urgent,2020-02-28,Abnormal,3115,229,2,3,,,,DISCHARGED -3115,2023-08-08,11839.734122631631,405,Elective,2023-09-03,Inconclusive,6537,78,2,29,,,,DISCHARGED -3116,2020-08-20,47546.80790379924,186,Urgent,2020-09-08,Abnormal,3116,148,1,24,,,,DISCHARGED -3117,2022-07-31,10689.521617328051,477,Urgent,2022-08-20,Inconclusive,3117,137,0,3,,,,DISCHARGED -3117,2022-01-03,25063.63101822934,438,Urgent,2022-01-09,Abnormal,5631,470,0,22,,,,DISCHARGED -3118,2019-07-04,5130.335389680576,467,Urgent,2019-07-18,Abnormal,3118,313,2,20,,,,DISCHARGED -3119,2020-05-29,25785.726314569,372,Urgent,2020-06-10,Inconclusive,3119,375,3,20,,,,DISCHARGED -3120,2023-07-03,49628.88362865496,149,Urgent,2023-07-09,Abnormal,3120,422,1,5,,,,DISCHARGED -3121,2019-05-19,10892.781978501498,254,Elective,2019-05-24,Normal,3121,388,0,23,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3122,2022-08-20,26507.87267420748,380,Emergency,2022-09-08,Abnormal,3122,64,0,14,,,,DISCHARGED -3122,2020-05-29,13026.56587594048,153,Elective,2020-06-27,Abnormal,5697,12,4,20,,,,DISCHARGED -3123,2019-10-28,4573.196281198502,234,Urgent,2019-11-24,Abnormal,3123,212,2,18,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -3124,2020-12-27,4567.635908501887,368,Urgent,2021-01-15,Normal,3124,473,3,5,,,,DISCHARGED -3125,2021-08-27,40970.2729576162,222,Urgent,2021-09-02,Normal,3125,241,1,29,,,,DISCHARGED -3126,2020-09-04,7792.578091689375,213,Emergency,2020-10-04,Normal,3126,492,0,11,,,,DISCHARGED -3127,2022-08-16,16305.762604435338,126,Emergency,2022-09-01,Inconclusive,3127,212,4,13,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3127,2022-08-04,44611.57088068633,359,Elective,2022-08-18,Abnormal,8196,180,2,17,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3128,2021-04-14,42606.41874967905,211,Emergency,2021-05-07,Inconclusive,3128,337,2,27,,,,DISCHARGED -3129,2020-06-24,46299.93837972343,320,Urgent,2020-07-21,Normal,3129,484,1,11,,,,DISCHARGED -3130,2022-10-07,22181.86539051473,301,Emergency,2022-10-30,Inconclusive,3130,172,0,23,,,,DISCHARGED -3131,2021-03-04,5276.057261871656,273,Elective,2021-03-25,Abnormal,3131,159,1,23,,,,DISCHARGED -3132,2019-11-29,14243.290672853327,303,Urgent,2019-12-18,Abnormal,3132,163,1,14,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3133,2021-06-22,45178.1949095743,365,Emergency,2021-07-12,Abnormal,3133,464,4,18,,,,DISCHARGED -3134,2021-03-28,28686.230988315205,198,Urgent,2021-04-04,Normal,3134,482,2,27,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3135,2021-04-06,23421.713367282933,296,Emergency,2021-04-12,Inconclusive,3135,496,3,7,,,,DISCHARGED -3136,2022-02-17,29503.44306549181,464,Elective,2022-02-28,Normal,3136,187,2,8,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3137,2021-10-16,13752.620285817738,298,Emergency,2021-11-11,Normal,3137,394,2,4,,,,DISCHARGED -3138,2020-09-17,12739.68886760918,482,Emergency,2020-09-26,Abnormal,3138,190,4,4,,,,DISCHARGED -3139,2022-05-09,25736.399042273544,143,Urgent,2022-06-02,Abnormal,3139,404,3,5,,,,DISCHARGED -3140,2021-11-04,20882.082372825043,110,Emergency,2021-11-26,Abnormal,3140,307,0,22,,,,DISCHARGED -3141,2023-08-10,24060.264332494145,361,Elective,,Abnormal,3141,255,3,2,,,,OPEN -3142,2020-04-19,11853.8753671024,144,Elective,2020-05-11,Abnormal,3142,182,0,4,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3143,2022-06-04,23286.747277142727,406,Emergency,2022-07-01,Abnormal,3143,116,3,0,,,,DISCHARGED -3145,2018-12-28,5301.168668052529,171,Emergency,2019-01-03,Abnormal,3145,281,1,10,,,,DISCHARGED -3146,2023-04-19,23855.890616892284,411,Emergency,2023-04-20,Abnormal,3146,195,3,25,,,,DISCHARGED -3147,2021-11-09,1009.4173268954232,491,Emergency,2021-11-15,Inconclusive,3147,33,4,20,,,,DISCHARGED -3148,2020-01-19,44533.03057844677,483,Urgent,2020-01-27,Normal,3148,51,0,19,,,,DISCHARGED -3149,2021-08-01,46283.58411492249,222,Urgent,2021-08-26,Abnormal,3149,111,2,0,,,,DISCHARGED -3150,2019-09-08,41482.51699787514,396,Emergency,2019-09-20,Inconclusive,3150,251,4,6,,,,DISCHARGED -3150,2022-04-17,42275.26743533238,240,Emergency,2022-05-08,Inconclusive,4264,81,0,14,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3151,2019-03-22,1585.7864332148283,223,Emergency,2019-04-16,Inconclusive,3151,231,0,16,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3152,2023-05-12,33544.429034004934,367,Elective,,Inconclusive,3152,226,2,28,,,,OPEN -3153,2021-06-02,28085.320523934377,387,Elective,2021-06-30,Normal,3153,232,1,7,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -3154,2023-06-23,33608.9744079182,387,Urgent,2023-07-19,Inconclusive,3154,220,4,29,,,,DISCHARGED -3155,2022-09-12,35522.495882133655,137,Elective,2022-10-09,Abnormal,3155,435,2,25,,,,DISCHARGED -3156,2021-07-02,44403.42406457306,226,Elective,2021-07-09,Abnormal,3156,412,2,27,,,,DISCHARGED -3156,2020-02-09,25327.09454938707,291,Elective,2020-02-18,Abnormal,7355,421,1,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3157,2022-10-30,19755.718355065816,254,Urgent,2022-11-26,Normal,3157,41,4,25,,,,DISCHARGED -3158,2019-02-04,2251.8982149833737,161,Emergency,2019-02-28,Normal,3158,20,2,12,,,,DISCHARGED -3159,2019-12-28,23482.818142155356,303,Emergency,2020-01-13,Inconclusive,3159,41,1,11,,,,DISCHARGED -3160,2020-07-26,5590.18573143374,121,Urgent,2020-08-03,Normal,3160,396,4,4,,,,DISCHARGED -3161,2020-05-22,42187.77989543769,328,Urgent,2020-06-10,Inconclusive,3161,112,3,12,,,,DISCHARGED -3162,2022-03-15,27887.520458215902,344,Urgent,2022-03-23,Normal,3162,104,0,5,,,,DISCHARGED -3163,2021-10-01,38020.68946207476,149,Elective,2021-10-04,Abnormal,3163,191,1,24,,,,DISCHARGED -3164,2020-01-13,33155.968159504744,166,Emergency,2020-01-28,Inconclusive,3164,16,0,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3165,2021-07-22,21152.556780714945,127,Elective,2021-08-01,Inconclusive,3165,119,3,29,,,,DISCHARGED -3166,2022-06-17,15797.127295506469,425,Emergency,2022-07-14,Inconclusive,3166,392,2,22,,,,DISCHARGED -3167,2021-04-15,23710.315085067414,418,Urgent,2021-04-27,Abnormal,3167,424,2,21,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3168,2021-04-17,25405.87141325083,349,Emergency,2021-05-04,Inconclusive,3168,128,4,20,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3169,2021-10-27,37885.40544481771,127,Emergency,2021-10-30,Inconclusive,3169,129,1,21,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -3170,2021-02-21,20725.284591065363,318,Elective,2021-03-07,Normal,3170,59,1,29,,,,DISCHARGED -3171,2022-01-01,22564.109614313336,403,Elective,2022-01-30,Normal,3171,47,4,10,,,,DISCHARGED -3172,2022-04-19,25217.78973513061,249,Urgent,2022-04-26,Abnormal,3172,28,0,3,,,,DISCHARGED -3174,2020-10-25,37797.67662244145,294,Elective,2020-11-08,Abnormal,3174,96,2,0,,,,DISCHARGED -3175,2021-11-29,41498.664297844734,171,Urgent,2021-12-06,Normal,3175,9,2,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3176,2021-02-19,35573.40891708377,356,Emergency,2021-03-01,Normal,3176,241,1,11,,,,DISCHARGED -3177,2019-07-15,30491.81722319993,113,Elective,2019-07-18,Inconclusive,3177,313,1,8,,,,DISCHARGED -3179,2020-08-26,29165.42831875853,171,Emergency,2020-09-12,Inconclusive,3179,443,4,10,,,,DISCHARGED -3180,2021-05-18,6779.595114468269,153,Elective,2021-06-09,Abnormal,3180,231,3,4,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3180,2023-06-22,8424.652221687034,239,Elective,,Abnormal,8996,276,0,23,,,,OPEN -3181,2022-03-06,10850.253817216151,261,Elective,2022-03-11,Abnormal,3181,283,3,6,,,,DISCHARGED -3182,2023-08-15,1046.9851593479789,167,Elective,2023-09-08,Normal,3182,202,3,7,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -3183,2020-07-05,15894.033974104748,114,Elective,2020-07-12,Normal,3183,246,1,0,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -3184,2020-11-08,20823.484544963747,254,Emergency,2020-12-02,Abnormal,3184,289,1,24,,,,DISCHARGED -3185,2019-11-19,13886.451403327366,344,Emergency,2019-12-04,Inconclusive,3185,263,1,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3186,2019-02-12,15710.353829840358,323,Urgent,2019-02-17,Normal,3186,442,3,2,,,,DISCHARGED -3187,2023-03-01,25961.30488418477,304,Elective,2023-03-17,Normal,3187,213,0,7,,,,DISCHARGED -3190,2020-04-30,44374.042747785854,113,Elective,2020-05-14,Normal,3190,199,1,27,,,,DISCHARGED -3191,2021-12-12,46664.288490969615,449,Elective,2021-12-26,Inconclusive,3191,432,2,10,,,,DISCHARGED -3192,2021-11-25,33266.7641262159,314,Elective,2021-12-13,Inconclusive,3192,78,0,0,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3193,2022-02-04,35328.78298808477,499,Elective,2022-02-08,Abnormal,3193,400,2,13,,,,DISCHARGED -3194,2020-04-13,30730.496854594345,341,Elective,2020-04-20,Abnormal,3194,443,0,0,,,,DISCHARGED -3195,2020-01-31,25308.38693229544,328,Emergency,2020-02-19,Abnormal,3195,342,1,5,,,,DISCHARGED -3196,2021-06-06,44957.68027934134,151,Emergency,2021-06-12,Normal,3196,343,4,20,,,,DISCHARGED -3197,2021-02-27,16486.72498509192,434,Elective,2021-03-26,Normal,3197,172,1,26,,,,DISCHARGED -3198,2022-01-06,17433.850826831138,496,Urgent,2022-01-31,Abnormal,3198,466,3,5,,,,DISCHARGED -3198,2019-01-06,48070.958802193374,486,Elective,2019-02-03,Inconclusive,4446,68,3,2,,,,DISCHARGED -3199,2020-03-16,42008.85626598571,391,Urgent,2020-04-02,Normal,3199,415,0,9,,,,DISCHARGED -3200,2018-12-25,41116.124766563495,411,Urgent,2019-01-11,Abnormal,3200,427,3,11,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3201,2022-06-12,39261.89574248604,326,Urgent,2022-07-12,Abnormal,3201,448,1,9,,,,DISCHARGED -3202,2021-06-26,17045.90059379294,440,Emergency,2021-07-25,Inconclusive,3202,86,2,21,,,,DISCHARGED -3203,2019-12-18,26799.03530934963,483,Elective,2020-01-12,Abnormal,3203,100,1,1,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -3203,2021-05-06,37784.22859772242,454,Elective,2021-05-15,Inconclusive,4905,7,0,23,,,,DISCHARGED -3204,2019-02-01,38038.8666966434,189,Urgent,2019-03-03,Inconclusive,3204,332,3,27,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3205,2020-02-11,35813.47918792423,159,Urgent,2020-02-26,Abnormal,3205,199,2,21,,,,DISCHARGED -3206,2020-03-06,31964.450065561323,414,Urgent,2020-03-08,Normal,3206,86,4,12,,,,DISCHARGED -3207,2022-10-01,31003.156018446414,185,Elective,2022-10-26,Inconclusive,3207,42,2,15,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3208,2022-08-31,21846.13325548399,148,Elective,2022-09-12,Normal,3208,384,2,12,,,,DISCHARGED -3209,2022-02-17,6872.285240259911,148,Urgent,2022-02-22,Inconclusive,3209,108,1,3,,,,DISCHARGED -3210,2018-12-20,21143.94367655722,148,Elective,2019-01-07,Inconclusive,3210,434,4,3,,,,DISCHARGED -3211,2023-10-29,38696.62195728593,416,Urgent,2023-11-21,Inconclusive,3211,407,0,29,,,,DISCHARGED -3211,2023-09-14,17635.30737141264,218,Emergency,,Abnormal,3904,482,0,10,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",OPEN -3212,2022-12-08,7524.227987602171,357,Urgent,2022-12-20,Abnormal,3212,151,2,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -3214,2019-06-26,31390.23324087279,277,Emergency,2019-06-28,Abnormal,3214,16,2,13,,,,DISCHARGED -3215,2022-08-18,29963.78499238094,189,Elective,2022-09-14,Normal,3215,132,3,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -3216,2021-06-26,29618.637058229506,481,Elective,2021-07-02,Inconclusive,3216,147,4,26,,,,DISCHARGED -3217,2023-10-12,8176.785845277339,351,Urgent,,Abnormal,3217,276,2,18,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -3218,2020-01-27,7643.983675466972,296,Urgent,2020-02-16,Abnormal,3218,231,3,21,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -3219,2020-12-28,26920.753145962422,387,Emergency,2021-01-05,Inconclusive,3219,313,4,24,,,,DISCHARGED -3220,2019-05-13,25826.76970732778,447,Elective,2019-06-03,Abnormal,3220,414,0,0,,,,DISCHARGED -3221,2019-11-21,37934.43767465431,398,Urgent,2019-11-29,Inconclusive,3221,365,3,4,,,,DISCHARGED -3222,2021-10-23,45608.85733652583,398,Emergency,2021-11-16,Normal,3222,227,4,16,,,,DISCHARGED -3223,2023-03-28,35336.88433296851,149,Emergency,2023-04-09,Inconclusive,3223,138,3,0,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3224,2022-05-30,27739.05806271692,446,Elective,2022-06-14,Abnormal,3224,435,2,18,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3225,2019-04-10,19356.0784987492,477,Emergency,2019-04-19,Inconclusive,3225,398,1,18,,,,DISCHARGED -3226,2020-12-22,1612.237218417031,176,Emergency,2021-01-12,Abnormal,3226,210,0,3,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -3227,2021-05-11,31903.5209190799,252,Urgent,2021-05-12,Abnormal,3227,390,2,18,,,,DISCHARGED -3228,2020-07-15,32396.286501804367,349,Elective,2020-08-11,Normal,3228,498,2,5,,,,DISCHARGED -3229,2020-11-26,3778.593154268119,480,Emergency,2020-12-02,Normal,3229,27,4,27,,,,DISCHARGED -3230,2023-07-03,20754.467414027484,295,Emergency,2023-07-30,Inconclusive,3230,50,3,14,,,,DISCHARGED -3231,2023-04-13,10043.651437862873,300,Elective,2023-04-29,Inconclusive,3231,490,0,3,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -3232,2022-03-25,27280.358469317664,422,Elective,2022-04-10,Abnormal,3232,441,2,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -3233,2021-04-16,27017.947867812283,158,Emergency,2021-05-14,Abnormal,3233,260,4,0,,,,DISCHARGED -3234,2023-06-04,26858.572337353293,276,Emergency,2023-06-25,Normal,3234,260,0,23,,,,DISCHARGED -3235,2020-05-12,1145.877640832507,150,Elective,2020-06-07,Inconclusive,3235,349,3,26,,,,DISCHARGED -3236,2019-11-27,23692.49057682341,367,Emergency,2019-12-23,Abnormal,3236,351,2,16,,,,DISCHARGED -3237,2020-01-24,16780.44610672707,243,Urgent,2020-02-07,Abnormal,3237,7,2,10,,,,DISCHARGED -3238,2022-05-28,43362.9686184271,261,Elective,2022-06-25,Abnormal,3238,319,2,16,,,,DISCHARGED -3239,2020-06-05,16281.956722566789,466,Emergency,2020-06-11,Normal,3239,137,0,22,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3240,2021-09-01,5788.0848081727545,441,Urgent,2021-09-25,Inconclusive,3240,37,0,0,,,,DISCHARGED -3241,2020-08-14,37410.32687199458,344,Urgent,2020-09-13,Inconclusive,3241,110,0,8,,,,DISCHARGED -3242,2021-03-14,35885.29313317176,437,Urgent,2021-04-03,Inconclusive,3242,479,0,13,,,,DISCHARGED -3243,2021-02-07,44840.63064748123,132,Elective,2021-02-19,Abnormal,3243,367,4,14,,,,DISCHARGED -3244,2021-03-17,21860.39386882744,271,Urgent,2021-04-14,Normal,3244,219,1,23,,,,DISCHARGED -3245,2023-04-18,28780.04652388887,429,Urgent,2023-04-22,Abnormal,3245,336,4,28,,,,DISCHARGED -3246,2021-12-31,16558.886768473873,360,Emergency,2022-01-08,Abnormal,3246,222,2,0,,,,DISCHARGED -3246,2022-04-25,24218.861075714183,297,Emergency,2022-05-06,Inconclusive,4428,135,4,1,,,,DISCHARGED -3247,2020-02-24,28045.761477925036,469,Emergency,2020-03-16,Normal,3247,255,3,17,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3249,2020-05-27,35716.00264524215,264,Emergency,2020-05-30,Inconclusive,3249,359,0,17,,,,DISCHARGED -3249,2022-03-30,15872.81414829999,286,Emergency,2022-04-03,Abnormal,9986,408,3,5,,,,DISCHARGED -3250,2020-06-26,10997.706493275358,386,Elective,2020-07-15,Abnormal,3250,328,3,19,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3251,2022-02-13,22619.041333271965,412,Emergency,2022-03-07,Abnormal,3251,449,2,7,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -3251,2019-02-28,40432.98923209701,179,Elective,2019-03-18,Normal,4470,462,0,0,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3252,2021-11-13,34738.4757393712,423,Emergency,2021-11-19,Inconclusive,3252,433,3,14,,,,DISCHARGED -3253,2019-05-12,23249.14331882182,332,Elective,2019-05-14,Inconclusive,3253,450,2,9,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3254,2020-04-01,21484.342749153264,150,Urgent,2020-04-20,Inconclusive,3254,48,0,29,,,,DISCHARGED -3255,2023-05-11,1933.5109491668584,426,Emergency,2023-05-15,Inconclusive,3255,291,1,3,,,,DISCHARGED -3256,2020-11-05,49985.97306779267,483,Elective,2020-11-12,Inconclusive,3256,381,2,9,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -3257,2022-11-12,21746.883196345665,367,Elective,2022-11-18,Normal,3257,323,4,10,,,,DISCHARGED -3258,2019-03-20,36072.20748168289,367,Urgent,2019-04-09,Inconclusive,3258,77,0,4,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3259,2022-09-03,37707.33098213853,413,Urgent,2022-09-09,Inconclusive,3259,104,3,8,,,,DISCHARGED -3260,2022-07-10,44380.9080284068,424,Urgent,2022-07-24,Abnormal,3260,168,3,4,,,,DISCHARGED -3261,2019-05-20,9321.657575635762,432,Emergency,2019-06-18,Normal,3261,216,4,28,,,,DISCHARGED -3262,2021-05-16,21978.42205595812,286,Emergency,2021-05-19,Inconclusive,3262,377,4,10,,,,DISCHARGED -3263,2020-06-29,41468.7173083189,233,Emergency,2020-07-09,Normal,3263,118,3,2,,,,DISCHARGED -3264,2019-03-05,47271.72979486815,293,Elective,2019-04-02,Normal,3264,189,0,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3265,2023-08-28,34564.10549295208,387,Urgent,2023-09-08,Abnormal,3265,254,2,3,,,,DISCHARGED -3266,2021-09-06,38613.98698003616,118,Elective,2021-09-15,Inconclusive,3266,369,4,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3266,2019-01-01,49957.99759953944,292,Emergency,2019-01-29,Inconclusive,4110,265,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -3267,2020-03-25,49511.294019079454,121,Elective,2020-03-31,Abnormal,3267,148,4,0,,,,DISCHARGED -3268,2021-09-26,47982.06903606661,259,Elective,2021-10-10,Inconclusive,3268,163,1,26,,,,DISCHARGED -3269,2023-09-12,18943.14387104386,307,Urgent,2023-09-19,Inconclusive,3269,139,0,5,,,,DISCHARGED -3270,2020-10-12,46362.20083499501,175,Urgent,2020-10-23,Abnormal,3270,346,0,7,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -3271,2019-05-21,12712.308484659714,383,Emergency,2019-06-19,Abnormal,3271,487,0,16,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3272,2022-03-25,49209.09795215244,380,Urgent,2022-04-02,Abnormal,3272,257,0,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -3273,2023-08-31,11349.820789752775,241,Emergency,2023-09-17,Normal,3273,373,0,6,,,,DISCHARGED -3274,2020-07-30,2852.6131636677305,388,Elective,2020-08-04,Inconclusive,3274,268,3,0,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -3275,2022-04-17,44888.79634589333,359,Elective,2022-04-26,Normal,3275,180,4,8,,,,DISCHARGED -3276,2019-08-17,24595.38528026276,371,Urgent,2019-08-24,Abnormal,3276,159,3,10,,,,DISCHARGED -3277,2023-10-14,22153.715664931697,244,Emergency,,Inconclusive,3277,350,1,18,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -3278,2022-03-10,37936.93276154094,288,Emergency,2022-03-11,Normal,3278,399,2,1,,,,DISCHARGED -3279,2021-05-31,36579.24363429243,367,Urgent,2021-06-30,Normal,3279,287,4,22,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -3280,2023-01-16,15313.4778265791,486,Elective,2023-02-05,Normal,3280,287,1,10,,,,DISCHARGED -3280,2022-01-08,2380.100783268822,470,Emergency,2022-02-05,Abnormal,6742,379,3,2,,,,DISCHARGED -3281,2019-01-16,30202.861642866203,257,Elective,2019-02-14,Abnormal,3281,225,2,16,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -3282,2022-05-02,24806.442863916604,376,Urgent,2022-05-20,Inconclusive,3282,10,1,9,,,,DISCHARGED -3283,2020-06-27,27613.975868401776,387,Elective,2020-07-19,Normal,3283,9,2,28,,,,DISCHARGED -3284,2022-12-08,22323.95941982574,416,Emergency,2022-12-10,Normal,3284,270,1,2,,,,DISCHARGED -3284,2019-07-14,20926.057966476288,341,Urgent,2019-08-06,Abnormal,8218,272,3,21,,,,DISCHARGED -3285,2019-04-12,22487.78681810708,337,Elective,2019-05-10,Abnormal,3285,423,2,2,,,,DISCHARGED -3286,2019-03-16,42479.67310893866,220,Elective,2019-04-06,Normal,3286,401,1,20,,,,DISCHARGED -3287,2018-11-22,26035.83638245789,481,Urgent,2018-12-02,Normal,3287,182,3,24,,,,DISCHARGED -3288,2023-05-27,18632.7174024214,321,Emergency,,Normal,3288,456,4,6,,,,OPEN -3289,2021-01-22,35234.444848625804,128,Emergency,2021-02-10,Normal,3289,152,3,1,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3290,2022-04-14,39291.231857185056,189,Urgent,2022-05-02,Inconclusive,3290,487,3,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3291,2018-12-21,47546.91601522359,453,Emergency,2019-01-05,Normal,3291,314,4,6,,,,DISCHARGED -3292,2022-10-14,48871.14301327921,101,Elective,2022-11-11,Normal,3292,333,3,19,,,,DISCHARGED -3295,2019-12-20,33491.07965974133,403,Elective,2020-01-09,Inconclusive,3295,123,4,10,,,,DISCHARGED -3296,2019-04-20,46585.34261721746,275,Emergency,2019-04-27,Abnormal,3296,472,4,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3297,2020-05-30,32681.48042414797,344,Elective,2020-06-04,Abnormal,3297,113,4,5,,,,DISCHARGED -3298,2021-04-22,4337.817550636108,346,Emergency,2021-05-06,Abnormal,3298,277,1,22,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3299,2022-05-21,27076.130766129187,264,Urgent,2022-06-18,Inconclusive,3299,499,2,3,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3300,2023-03-18,18821.827901947134,370,Urgent,2023-04-03,Abnormal,3300,413,1,18,,,,DISCHARGED -3301,2023-09-24,28122.19239722501,197,Emergency,2023-10-06,Abnormal,3301,467,4,27,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3302,2019-07-04,20925.57709484806,298,Urgent,2019-07-24,Abnormal,3302,212,2,20,,,,DISCHARGED -3303,2019-10-25,1227.6039151182374,190,Emergency,2019-11-05,Abnormal,3303,171,2,18,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3304,2021-02-10,31720.515822983893,272,Emergency,2021-02-21,Inconclusive,3304,287,4,13,,,,DISCHARGED -3305,2022-11-26,44452.49446864677,124,Urgent,2022-12-12,Abnormal,3305,434,2,2,,,,DISCHARGED -3306,2022-02-27,30133.778539861065,312,Urgent,2022-03-10,Abnormal,3306,173,2,3,,,,DISCHARGED -3307,2018-11-18,4607.047668176925,445,Emergency,2018-12-09,Inconclusive,3307,112,1,7,,,,DISCHARGED -3308,2019-04-27,28162.53906005136,419,Emergency,2019-05-02,Inconclusive,3308,375,2,17,,,,DISCHARGED -3309,2023-03-20,46240.92065486389,114,Urgent,,Inconclusive,3309,404,4,3,,,,OPEN -3310,2019-02-10,41960.70599802526,109,Emergency,2019-02-21,Inconclusive,3310,482,0,10,,,,DISCHARGED -3311,2019-08-25,4289.620748686794,377,Urgent,2019-09-22,Abnormal,3311,121,0,15,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3312,2020-06-15,30497.66708151659,183,Elective,2020-07-09,Abnormal,3312,31,0,2,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -3313,2022-01-13,33755.70476370381,107,Urgent,2022-01-25,Inconclusive,3313,221,4,6,,,,DISCHARGED -3314,2022-07-04,7834.138644823199,238,Elective,2022-07-30,Abnormal,3314,118,0,1,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3316,2020-06-23,19678.71421028297,149,Urgent,2020-07-11,Inconclusive,3316,38,1,0,,,,DISCHARGED -3317,2020-02-14,26120.29932490252,313,Urgent,2020-03-06,Inconclusive,3317,496,4,25,,,,DISCHARGED -3318,2020-10-28,23939.362734829123,457,Elective,2020-11-05,Inconclusive,3318,267,4,0,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -3319,2020-10-01,8916.915981115784,131,Elective,2020-10-07,Inconclusive,3319,232,4,5,,,,DISCHARGED -3319,2020-06-24,2575.063002420585,376,Emergency,2020-07-09,Inconclusive,9437,430,2,18,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3320,2023-01-11,13483.062064452874,114,Urgent,2023-02-05,Abnormal,3320,17,2,6,,,,DISCHARGED -3321,2022-09-06,19626.485714965373,443,Urgent,2022-09-30,Normal,3321,148,2,23,,,,DISCHARGED -3322,2023-06-22,33908.994881456034,180,Emergency,2023-07-06,Abnormal,3322,396,3,4,,,,DISCHARGED -3323,2021-04-07,14498.121478433712,463,Urgent,2021-05-05,Inconclusive,3323,148,1,20,,,,DISCHARGED -3324,2020-08-10,33009.32817895975,111,Emergency,2020-09-07,Normal,3324,125,4,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -3325,2020-10-14,13229.084373129046,107,Urgent,2020-10-18,Normal,3325,391,4,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3326,2021-02-11,43771.48296945317,379,Urgent,2021-02-17,Normal,3326,301,2,23,,,,DISCHARGED -3327,2022-07-17,26068.122441270298,407,Elective,2022-07-27,Normal,3327,359,4,25,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3328,2021-03-04,32462.985066348632,355,Emergency,2021-03-10,Abnormal,3328,237,4,12,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3329,2021-01-09,17961.348523114542,311,Urgent,2021-01-21,Inconclusive,3329,134,0,0,,,,DISCHARGED -3330,2020-03-07,2249.4609234150203,358,Emergency,2020-04-03,Inconclusive,3330,150,4,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3330,2022-01-22,12229.38466040464,239,Emergency,2022-02-18,Abnormal,9068,235,3,8,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -3331,2019-04-06,10805.149953848457,330,Urgent,2019-04-24,Abnormal,3331,223,2,16,,,,DISCHARGED -3332,2020-12-25,20494.196815928663,145,Urgent,2021-01-05,Inconclusive,3332,202,1,0,,,,DISCHARGED -3333,2020-07-16,37737.13121588702,203,Urgent,2020-07-24,Inconclusive,3333,255,1,0,,,,DISCHARGED -3334,2022-01-18,39381.22252563776,109,Emergency,2022-02-14,Normal,3334,85,0,6,,,,DISCHARGED -3335,2019-06-23,47682.625945160245,116,Elective,2019-07-02,Inconclusive,3335,149,1,3,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -3336,2020-02-02,31911.055694805946,363,Urgent,2020-02-11,Inconclusive,3336,234,1,27,,,,DISCHARGED -3337,2020-07-10,29472.41757198453,272,Urgent,2020-07-11,Normal,3337,344,2,22,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -3338,2020-09-03,5864.301727790382,172,Emergency,2020-09-16,Abnormal,3338,21,2,20,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3339,2022-10-03,10410.225886704982,412,Emergency,2022-10-08,Abnormal,3339,347,3,11,,,,DISCHARGED -3340,2022-10-27,24366.91470782687,331,Urgent,2022-11-08,Inconclusive,3340,284,0,15,,,,DISCHARGED -3341,2019-02-27,49347.616196905896,295,Urgent,2019-03-27,Normal,3341,268,1,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3342,2021-09-15,30127.933209010487,130,Emergency,2021-09-28,Inconclusive,3342,465,3,22,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3343,2023-09-13,30418.75143235032,353,Emergency,2023-09-17,Abnormal,3343,257,0,9,,,,DISCHARGED -3344,2019-03-23,4754.908285145275,121,Elective,2019-04-13,Normal,3344,28,1,13,,,,DISCHARGED -3346,2019-04-20,16965.886405992394,248,Emergency,2019-04-24,Inconclusive,3346,212,1,6,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -3347,2022-06-07,16259.79909830879,356,Urgent,2022-07-06,Normal,3347,462,2,3,,,,DISCHARGED -3348,2020-10-21,30799.23484824942,436,Elective,2020-10-25,Abnormal,3348,435,4,1,,,,DISCHARGED -3349,2021-10-18,13437.253293594791,420,Elective,2021-10-22,Normal,3349,282,0,23,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3350,2021-06-19,34172.76394831471,473,Elective,2021-07-05,Inconclusive,3350,49,1,17,,,,DISCHARGED -3351,2020-05-10,31681.84172558551,294,Elective,2020-05-20,Inconclusive,3351,94,0,15,,,,DISCHARGED -3352,2019-04-20,33151.89825973076,374,Emergency,2019-05-03,Abnormal,3352,462,3,8,,,,DISCHARGED -3353,2022-10-27,20578.953671631123,420,Urgent,2022-10-29,Inconclusive,3353,498,3,4,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3354,2020-11-22,11929.801861130089,252,Emergency,2020-12-04,Inconclusive,3354,406,4,8,,,,DISCHARGED -3355,2020-05-23,5271.6898727734,284,Urgent,2020-06-13,Normal,3355,87,1,24,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3355,2019-02-25,3618.873750814807,459,Emergency,2019-03-01,Abnormal,7613,43,2,29,,,,DISCHARGED -3356,2022-01-13,46601.3223375237,174,Emergency,2022-01-28,Abnormal,3356,460,1,7,,,,DISCHARGED -3357,2021-10-26,45501.135081265245,273,Emergency,2021-11-09,Abnormal,3357,277,0,23,,,,DISCHARGED -3358,2019-03-22,45556.40566105657,159,Emergency,2019-03-30,Inconclusive,3358,170,3,19,,,,DISCHARGED -3358,2021-06-17,20322.99962739144,228,Elective,2021-07-02,Normal,7950,420,0,15,,,,DISCHARGED -3359,2020-09-06,15614.23985479929,308,Emergency,2020-09-12,Normal,3359,188,4,29,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -3360,2021-06-14,44504.92691274109,269,Elective,2021-06-15,Normal,3360,352,3,19,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -3361,2020-07-14,4903.778959452355,488,Urgent,2020-08-01,Inconclusive,3361,183,2,29,,,,DISCHARGED -3362,2022-01-25,11024.277548579958,302,Elective,2022-02-05,Abnormal,3362,2,3,17,,,,DISCHARGED -3363,2019-09-07,25348.498391827416,188,Urgent,2019-09-26,Inconclusive,3363,190,1,3,,,,DISCHARGED -3364,2020-04-03,37499.03246019616,260,Elective,2020-04-11,Inconclusive,3364,117,1,15,,,,DISCHARGED -3365,2023-02-26,3683.327487350728,378,Urgent,,Abnormal,3365,18,3,3,,,,OPEN -3366,2020-06-12,11405.333373376972,468,Emergency,2020-07-09,Abnormal,3366,22,4,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -3368,2023-05-10,6385.646035112982,278,Emergency,,Inconclusive,3368,412,1,2,,,,OPEN -3369,2021-05-01,41165.99414208907,280,Urgent,2021-05-28,Normal,3369,29,1,17,,,,DISCHARGED -3370,2021-01-04,1346.9296207404268,253,Urgent,2021-01-29,Inconclusive,3370,294,2,14,,,,DISCHARGED -3371,2020-04-25,12971.732636648836,300,Elective,2020-05-21,Inconclusive,3371,107,3,7,,,,DISCHARGED -3372,2021-11-02,40362.818512292906,399,Urgent,2021-11-16,Normal,3372,366,1,17,,,,DISCHARGED -3373,2022-04-21,4827.084342925591,371,Urgent,2022-04-23,Inconclusive,3373,280,4,23,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -3374,2022-03-21,26535.500058773512,191,Elective,2022-03-28,Abnormal,3374,127,0,22,,,,DISCHARGED -3375,2021-05-26,2215.2984504560272,169,Emergency,2021-06-12,Abnormal,3375,228,3,2,,,,DISCHARGED -3376,2022-05-24,18219.253441754143,270,Emergency,2022-06-17,Normal,3376,110,2,5,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3377,2020-01-27,17174.92757903986,215,Urgent,2020-02-03,Abnormal,3377,135,1,21,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -3378,2022-02-21,29519.277261243755,343,Elective,2022-03-22,Inconclusive,3378,361,4,25,,,,DISCHARGED -3380,2020-08-24,38418.635192447255,430,Urgent,2020-08-29,Normal,3380,185,3,29,,,,DISCHARGED -3381,2019-07-31,18476.21528771605,205,Emergency,2019-08-22,Inconclusive,3381,143,4,20,,,,DISCHARGED -3382,2022-09-24,17248.00592975247,499,Urgent,2022-10-17,Normal,3382,71,4,28,,,,DISCHARGED -3383,2019-07-17,20851.89997296965,391,Elective,2019-07-25,Normal,3383,128,2,23,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3383,2020-04-10,4936.911423895342,452,Emergency,2020-04-22,Normal,7093,363,3,14,,,,DISCHARGED -3384,2019-11-25,40278.11343001168,205,Elective,2019-12-02,Abnormal,3384,260,1,26,,,,DISCHARGED -3385,2021-01-30,41052.037806294815,300,Urgent,2021-02-22,Inconclusive,3385,2,2,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -3386,2018-12-13,34011.70946146866,331,Elective,2019-01-02,Abnormal,3386,448,1,4,,,,DISCHARGED -3387,2019-05-06,17217.398862575814,134,Urgent,2019-06-04,Inconclusive,3387,387,0,6,,,,DISCHARGED -3388,2021-09-25,10331.947838351234,344,Emergency,2021-09-29,Inconclusive,3388,103,4,21,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -3389,2023-07-15,8019.14606215162,175,Urgent,,Inconclusive,3389,482,0,26,,,,OPEN -3390,2022-03-14,16852.487836405468,149,Urgent,2022-03-17,Abnormal,3390,223,4,14,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -3391,2022-02-24,15064.14030760482,278,Elective,2022-03-09,Normal,3391,319,2,6,,,,DISCHARGED -3392,2023-07-09,16996.192397843213,411,Emergency,2023-07-31,Inconclusive,3392,361,1,12,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -3393,2020-09-19,36409.72082430181,216,Urgent,2020-09-21,Inconclusive,3393,353,1,24,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3394,2021-11-28,33388.11618449382,138,Elective,2021-12-27,Abnormal,3394,490,2,2,,,,DISCHARGED -3395,2021-04-10,45614.48039475993,390,Urgent,2021-05-07,Normal,3395,472,3,25,,,,DISCHARGED -3395,2022-04-16,23141.40317446856,319,Emergency,2022-04-27,Abnormal,7470,9,0,22,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3397,2019-10-08,46948.22518324076,167,Emergency,2019-10-12,Inconclusive,3397,404,0,12,,,,DISCHARGED -3398,2022-11-22,2017.8978177102272,278,Emergency,2022-12-11,Normal,3398,383,1,25,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3399,2022-05-11,4019.06892792972,298,Elective,2022-06-04,Abnormal,3399,301,1,2,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3400,2022-05-31,8840.70046360333,344,Elective,2022-06-21,Abnormal,3400,230,1,28,,,,DISCHARGED -3401,2020-01-17,43882.82254266742,483,Urgent,2020-02-13,Inconclusive,3401,218,2,1,,,,DISCHARGED -3402,2019-03-24,20021.302087784225,432,Elective,2019-04-20,Normal,3402,410,3,27,,,,DISCHARGED -3403,2020-05-15,35072.498577446066,295,Elective,2020-06-03,Abnormal,3403,65,0,22,,,,DISCHARGED -3404,2020-12-15,23197.90607450162,183,Urgent,2021-01-12,Abnormal,3404,424,4,3,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3405,2020-12-20,15482.1718780235,252,Urgent,2020-12-22,Abnormal,3405,111,2,16,,,,DISCHARGED -3406,2019-03-18,1952.487604996448,231,Urgent,2019-03-30,Inconclusive,3406,12,0,5,,,,DISCHARGED -3407,2022-10-11,39019.48505366825,106,Emergency,2022-11-01,Abnormal,3407,392,3,10,,,,DISCHARGED -3408,2020-03-19,46709.076193386536,189,Emergency,2020-04-08,Abnormal,3408,499,2,5,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3409,2022-01-30,44204.36114992489,147,Elective,2022-01-31,Inconclusive,3409,419,0,21,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -3409,2020-09-22,34982.69465838882,263,Urgent,2020-10-17,Normal,7576,85,2,1,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3410,2022-10-30,32854.79718764628,313,Elective,2022-11-07,Inconclusive,3410,233,0,16,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -3411,2021-10-09,2048.205472466396,296,Elective,2021-10-13,Inconclusive,3411,89,0,2,,,,DISCHARGED -3412,2023-10-17,22962.31849695047,101,Elective,2023-10-27,Abnormal,3412,313,3,11,,,,DISCHARGED -3413,2022-11-26,5963.308402943647,348,Emergency,2022-12-26,Normal,3413,53,4,13,,,,DISCHARGED -3414,2021-03-12,25369.69510495335,183,Urgent,2021-03-31,Abnormal,3414,11,3,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3414,2019-01-29,8296.299322392893,308,Urgent,2019-02-04,Normal,9992,208,0,21,,,,DISCHARGED -3415,2019-11-15,2371.278983582703,279,Emergency,2019-11-22,Normal,3415,461,2,28,,,,DISCHARGED -3416,2019-03-14,15863.133289090902,274,Urgent,2019-03-29,Inconclusive,3416,13,3,27,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3416,2018-11-24,11617.56767336844,426,Emergency,2018-11-25,Abnormal,4162,120,4,21,,,,DISCHARGED -3417,2019-05-14,6252.471533099777,239,Emergency,2019-05-25,Normal,3417,417,0,28,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3418,2021-12-29,2507.6013532535844,489,Emergency,2022-01-18,Normal,3418,436,3,4,,,,DISCHARGED -3419,2019-02-28,43455.8076439202,118,Urgent,2019-03-24,Abnormal,3419,376,3,9,,,,DISCHARGED -3420,2022-06-26,17890.770585794602,128,Emergency,2022-06-27,Normal,3420,19,3,9,,,,DISCHARGED -3421,2023-04-09,39676.38444899642,350,Elective,2023-04-30,Abnormal,3421,74,3,20,,,,DISCHARGED -3422,2020-02-25,45324.349638153406,251,Elective,2020-03-11,Normal,3422,399,2,8,,,,DISCHARGED -3423,2022-08-15,38251.78008022902,122,Emergency,2022-09-07,Normal,3423,242,4,29,,,,DISCHARGED -3424,2019-12-08,26962.288220535254,323,Emergency,2019-12-15,Inconclusive,3424,222,4,20,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -3426,2020-01-31,19925.44145566827,432,Elective,2020-03-01,Normal,3426,69,0,12,,,,DISCHARGED -3427,2023-04-04,12532.312544371944,210,Elective,2023-04-05,Normal,3427,311,1,9,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3428,2019-01-11,3411.6073048931976,476,Urgent,2019-01-29,Inconclusive,3428,210,2,5,,,,DISCHARGED -3429,2023-08-20,36237.93656006117,179,Emergency,2023-08-21,Inconclusive,3429,100,0,10,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3430,2023-03-27,20416.742967794256,236,Urgent,2023-04-04,Abnormal,3430,185,0,3,,,,DISCHARGED -3432,2019-05-09,12704.57810572576,325,Emergency,2019-05-28,Abnormal,3432,131,3,25,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3433,2022-10-27,14186.494485330904,140,Emergency,2022-11-20,Inconclusive,3433,110,1,13,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3434,2020-10-29,23041.23875125717,287,Elective,2020-11-17,Normal,3434,380,1,29,,,,DISCHARGED -3435,2020-06-18,12257.282496483933,143,Elective,2020-06-24,Inconclusive,3435,131,2,16,,,,DISCHARGED -3436,2019-11-23,33724.93638261652,290,Emergency,2019-11-25,Abnormal,3436,19,1,19,,,,DISCHARGED -3437,2021-04-13,36207.40850740152,458,Elective,2021-04-27,Normal,3437,393,0,1,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -3438,2020-04-27,1540.8688562790214,408,Emergency,2020-05-21,Normal,3438,23,1,9,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3439,2020-01-06,3278.53845376364,117,Elective,2020-01-19,Inconclusive,3439,226,1,2,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3440,2023-07-04,1892.9675834340032,137,Emergency,2023-07-14,Normal,3440,153,4,6,,,,DISCHARGED -3441,2021-04-01,7051.331643394086,213,Emergency,2021-04-26,Abnormal,3441,292,0,6,,,,DISCHARGED -3442,2022-03-20,42573.01719112629,110,Urgent,2022-04-01,Normal,3442,229,1,0,,,,DISCHARGED -3443,2021-12-12,12656.469603455684,351,Elective,2021-12-19,Inconclusive,3443,468,1,7,,,,DISCHARGED -3444,2023-04-22,40753.34130488418,498,Elective,2023-05-10,Abnormal,3444,309,3,22,,,,DISCHARGED -3445,2023-05-12,38405.2173961076,386,Urgent,2023-06-08,Inconclusive,3445,487,1,0,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3446,2020-05-25,48338.53312087533,435,Elective,2020-06-21,Inconclusive,3446,358,1,7,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3447,2023-04-12,12863.313947483624,191,Urgent,2023-05-12,Abnormal,3447,404,4,13,,,,DISCHARGED -3448,2023-08-04,19322.99752144369,107,Urgent,2023-08-25,Normal,3448,201,0,13,,,,DISCHARGED -3449,2022-01-15,22293.33879360042,121,Urgent,2022-01-17,Abnormal,3449,37,2,1,,,,DISCHARGED -3450,2021-11-12,6340.089525400204,137,Emergency,2021-11-27,Normal,3450,429,0,7,,,,DISCHARGED -3451,2022-09-02,38190.55689690292,245,Urgent,2022-09-17,Abnormal,3451,259,3,18,,,,DISCHARGED -3452,2021-06-02,25682.71965319057,349,Emergency,2021-06-21,Abnormal,3452,187,0,9,,,,DISCHARGED -3453,2022-11-05,12905.961480710326,343,Emergency,2022-11-18,Normal,3453,56,1,6,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3454,2020-08-05,21495.44109921497,457,Elective,2020-08-18,Abnormal,3454,428,3,12,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3455,2019-03-01,6791.321000931511,187,Emergency,2019-03-09,Inconclusive,3455,19,0,21,,,,DISCHARGED -3456,2021-08-18,40407.452604081256,195,Elective,2021-08-23,Abnormal,3456,272,3,20,,,,DISCHARGED -3457,2022-09-10,16994.270191740652,176,Elective,2022-09-25,Inconclusive,3457,118,2,14,,,,DISCHARGED -3458,2023-02-28,45600.41159706999,171,Elective,2023-03-13,Abnormal,3458,70,0,10,,,,DISCHARGED -3459,2020-03-21,44953.29392391745,122,Emergency,2020-04-18,Normal,3459,3,1,25,,,,DISCHARGED -3460,2021-11-21,48000.46141702045,330,Elective,2021-12-05,Normal,3460,220,3,13,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -3461,2019-12-07,17213.31777812114,157,Elective,2019-12-21,Abnormal,3461,13,4,10,,,,DISCHARGED -3462,2019-06-21,48620.84366402592,143,Urgent,2019-06-28,Normal,3462,2,3,1,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3463,2020-08-14,8983.024205208314,158,Elective,2020-09-09,Normal,3463,215,4,1,,,,DISCHARGED -3464,2019-01-05,4312.460671897877,249,Elective,2019-01-25,Normal,3464,228,1,28,,,,DISCHARGED -3465,2022-01-24,44456.83018969525,406,Urgent,2022-02-05,Abnormal,3465,335,2,11,,,,DISCHARGED -3466,2022-01-22,45537.48490740536,268,Emergency,2022-01-29,Inconclusive,3466,185,4,14,,,,DISCHARGED -3467,2019-12-24,28045.685027115527,380,Elective,2020-01-01,Normal,3467,54,2,16,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3468,2022-12-06,48965.44033912504,424,Emergency,2022-12-27,Abnormal,3468,499,3,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3468,2022-09-22,45282.578642005086,345,Elective,2022-10-18,Abnormal,8263,387,1,24,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3469,2023-06-19,16609.248047843543,250,Emergency,2023-07-10,Inconclusive,3469,375,4,15,,,,DISCHARGED -3470,2019-11-09,3466.2389970598965,208,Emergency,2019-11-23,Normal,3470,253,3,26,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3471,2023-07-04,39862.53294477552,140,Elective,2023-07-31,Abnormal,3471,23,0,7,,,,DISCHARGED -3471,2021-11-08,36016.93835115629,271,Emergency,2021-11-15,Abnormal,6471,161,3,23,,,,DISCHARGED -3472,2021-05-02,4318.317110530047,214,Elective,2021-05-08,Normal,3472,157,2,16,,,,DISCHARGED -3473,2022-07-11,18531.628836860244,439,Emergency,2022-07-31,Inconclusive,3473,81,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3474,2022-12-18,33647.69029715338,244,Emergency,2022-12-27,Normal,3474,402,1,11,,,,DISCHARGED -3475,2022-11-28,7421.325596695157,306,Emergency,2022-12-06,Normal,3475,158,3,5,,,,DISCHARGED -3476,2020-07-26,45884.75906894886,451,Elective,2020-08-04,Normal,3476,187,0,17,,,,DISCHARGED -3477,2023-06-05,47369.37054758819,437,Urgent,2023-06-20,Abnormal,3477,59,2,25,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3478,2019-12-06,37405.16096157677,304,Elective,2019-12-25,Abnormal,3478,402,3,4,,,,DISCHARGED -3479,2021-10-17,16461.50097427297,184,Emergency,2021-11-05,Abnormal,3479,304,3,5,,,,DISCHARGED -3480,2023-08-17,2872.402642953097,320,Elective,,Abnormal,3480,318,1,8,,,,OPEN -3481,2020-04-05,3685.2613476564784,137,Urgent,2020-05-04,Abnormal,3481,365,2,14,,,,DISCHARGED -3482,2020-10-08,45207.42448593232,125,Urgent,2020-10-31,Abnormal,3482,210,0,9,,,,DISCHARGED -3483,2019-07-01,8647.898158600005,440,Urgent,2019-07-16,Abnormal,3483,405,1,16,,,,DISCHARGED -3484,2021-09-02,44153.05782471874,144,Urgent,2021-09-19,Inconclusive,3484,151,3,28,,,,DISCHARGED -3485,2023-10-03,21461.827861342743,441,Urgent,2023-10-22,Inconclusive,3485,108,1,25,,,,DISCHARGED -3486,2020-06-26,33792.83444231801,461,Elective,2020-07-17,Abnormal,3486,75,1,18,,,,DISCHARGED -3487,2020-11-15,22146.75564628472,455,Urgent,2020-12-14,Normal,3487,29,4,11,,,,DISCHARGED -3488,2020-08-10,46251.85938662369,308,Elective,2020-08-28,Inconclusive,3488,313,1,8,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3488,2019-02-16,32384.872703688827,207,Urgent,2019-03-10,Abnormal,4823,485,1,14,,,,DISCHARGED -3488,2022-10-02,32383.990986224228,253,Urgent,2022-10-13,Abnormal,9441,116,2,13,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -3489,2022-10-12,38641.88825874116,184,Elective,2022-10-18,Inconclusive,3489,414,1,0,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -3491,2021-02-25,47440.45326018285,194,Elective,2021-03-01,Abnormal,3491,355,0,16,,,,DISCHARGED -3492,2023-02-17,11064.879265311978,288,Emergency,2023-02-26,Normal,3492,191,3,0,,,,DISCHARGED -3493,2019-06-20,15456.260560579503,415,Urgent,2019-06-26,Inconclusive,3493,18,2,22,,,,DISCHARGED -3494,2019-09-25,16987.9481370126,228,Emergency,2019-10-13,Abnormal,3494,431,1,28,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -3495,2021-05-07,1964.9738235696973,447,Elective,2021-05-17,Abnormal,3495,172,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3496,2019-07-21,6208.836738717939,153,Emergency,2019-08-11,Abnormal,3496,227,3,21,,,,DISCHARGED -3497,2021-04-22,8234.952950200266,250,Elective,2021-05-02,Abnormal,3497,349,2,12,,,,DISCHARGED -3498,2019-10-15,30923.227607662287,198,Urgent,2019-10-17,Inconclusive,3498,182,0,29,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -3499,2020-02-14,42963.60781314,288,Emergency,2020-02-19,Normal,3499,112,1,7,,,,DISCHARGED -3500,2023-05-01,47964.40311180116,187,Emergency,2023-05-31,Inconclusive,3500,182,4,29,,,,DISCHARGED -3501,2023-09-25,15366.651157325045,181,Urgent,2023-10-10,Normal,3501,480,4,12,,,,DISCHARGED -3502,2020-08-22,42723.21750785108,337,Emergency,2020-09-12,Abnormal,3502,145,2,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3503,2021-02-08,49465.38272475298,129,Urgent,2021-02-15,Abnormal,3503,318,0,1,,,,DISCHARGED -3504,2019-06-06,40406.55901017414,176,Urgent,2019-06-20,Normal,3504,115,3,12,,,,DISCHARGED -3505,2022-11-08,36124.6820091871,180,Elective,2022-11-29,Inconclusive,3505,112,0,17,,,,DISCHARGED -3506,2022-04-12,5927.019173671457,305,Urgent,2022-05-06,Normal,3506,250,4,2,,,,DISCHARGED -3507,2022-09-27,26198.091414724346,392,Urgent,2022-10-23,Inconclusive,3507,475,2,12,,,,DISCHARGED -3508,2020-05-22,34068.993110813586,481,Elective,2020-06-11,Abnormal,3508,250,1,18,,,,DISCHARGED -3510,2023-07-12,45555.50174333505,139,Elective,2023-07-31,Normal,3510,302,0,12,,,,DISCHARGED -3511,2021-12-11,18236.79555799032,486,Elective,2021-12-22,Inconclusive,3511,458,4,18,,,,DISCHARGED -3512,2022-04-26,33878.94618435066,293,Elective,2022-04-29,Inconclusive,3512,312,3,3,,,,DISCHARGED -3513,2018-11-14,42623.23472613382,470,Emergency,2018-11-27,Inconclusive,3513,117,2,18,,,,DISCHARGED -3514,2020-05-31,25186.273311781075,402,Emergency,2020-06-15,Abnormal,3514,300,1,17,,,,DISCHARGED -3515,2023-09-13,35769.71902637293,236,Urgent,2023-09-17,Inconclusive,3515,160,0,24,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3516,2022-06-05,37697.42533212277,403,Elective,2022-06-11,Abnormal,3516,400,3,5,,,,DISCHARGED -3517,2022-01-31,37643.03307451826,434,Emergency,2022-02-06,Abnormal,3517,197,1,18,,,,DISCHARGED -3518,2022-06-04,29042.530038262743,474,Emergency,2022-06-19,Inconclusive,3518,259,4,24,,,,DISCHARGED -3519,2022-05-04,3128.2539583617645,253,Urgent,2022-05-27,Inconclusive,3519,147,4,3,,,,DISCHARGED -3520,2022-08-25,31375.76984447867,187,Emergency,2022-09-08,Normal,3520,239,3,3,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3521,2022-02-25,9809.568704338291,203,Elective,2022-03-19,Abnormal,3521,46,4,23,,,,DISCHARGED -3521,2020-01-15,45705.0048854744,427,Urgent,2020-01-18,Normal,6314,474,2,6,,,,DISCHARGED -3522,2023-06-09,16671.761552956243,388,Urgent,,Inconclusive,3522,398,3,6,,,,OPEN -3523,2019-01-16,48557.8285341362,300,Elective,2019-02-04,Normal,3523,197,4,25,,,,DISCHARGED -3524,2023-01-11,43105.77056999524,487,Urgent,2023-02-10,Inconclusive,3524,46,0,22,,,,DISCHARGED -3525,2020-03-15,9174.942347838409,192,Urgent,2020-03-21,Inconclusive,3525,77,4,25,,,,DISCHARGED -3526,2020-05-16,49974.299137554735,242,Emergency,2020-05-31,Abnormal,3526,123,2,15,,,,DISCHARGED -3526,2020-04-25,34797.94280096645,163,Urgent,2020-05-18,Normal,5180,74,1,26,,,,DISCHARGED -3526,2019-11-20,3647.307571615069,126,Elective,2019-11-24,Normal,5816,358,1,15,,,,DISCHARGED -3527,2018-11-05,39038.117416557325,457,Emergency,2018-12-01,Inconclusive,3527,136,4,4,,,,DISCHARGED -3528,2022-04-14,41469.76986812502,175,Elective,2022-05-14,Inconclusive,3528,89,1,14,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3529,2019-08-26,24303.14270286408,230,Urgent,2019-09-14,Abnormal,3529,399,4,22,,,,DISCHARGED -3530,2022-12-12,4894.981267722751,248,Emergency,2022-12-31,Abnormal,3530,324,2,3,,,,DISCHARGED -3531,2019-03-03,39766.9734847552,199,Emergency,2019-03-15,Abnormal,3531,499,1,23,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -3532,2023-03-29,46676.762079426415,478,Emergency,2023-03-31,Abnormal,3532,60,0,24,,,,DISCHARGED -3533,2021-01-08,2831.828522572272,444,Elective,2021-01-29,Normal,3533,137,4,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3534,2023-05-23,43521.32098509593,478,Elective,2023-06-14,Inconclusive,3534,49,1,27,,,,DISCHARGED -3535,2019-12-08,43988.41844501854,116,Emergency,2019-12-09,Abnormal,3535,258,2,18,,,,DISCHARGED -3536,2019-08-27,36127.85670703623,469,Elective,2019-09-16,Abnormal,3536,460,2,6,,,,DISCHARGED -3537,2022-06-24,26907.89229657558,404,Emergency,2022-07-01,Abnormal,3537,106,0,11,,,,DISCHARGED -3539,2022-04-10,31724.515745364377,398,Emergency,2022-05-08,Abnormal,3539,112,2,25,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3540,2023-03-24,15248.657109002545,402,Urgent,,Inconclusive,3540,349,2,8,,,,OPEN -3541,2019-05-17,16846.000777644713,117,Emergency,2019-06-01,Normal,3541,253,1,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3542,2019-03-30,18033.26011150181,370,Elective,2019-04-29,Abnormal,3542,117,4,1,,,,DISCHARGED -3543,2019-01-21,22137.160284523925,261,Urgent,2019-01-24,Normal,3543,492,3,15,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -3544,2019-10-17,20617.00381790932,186,Elective,2019-10-22,Inconclusive,3544,197,2,6,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2022-06-07,10059.578575601596,324,Urgent,2022-06-10,Inconclusive,4325,336,2,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2020-01-17,48496.52879693761,495,Elective,2020-02-05,Abnormal,8414,364,3,17,,,,DISCHARGED -3545,2022-05-11,23006.526347620696,448,Emergency,2022-05-29,Normal,3545,50,2,6,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -3546,2022-12-20,48437.439353530426,467,Elective,2023-01-17,Normal,3546,244,1,0,,,,DISCHARGED -3547,2023-05-07,3688.081496148474,412,Emergency,2023-06-02,Normal,3547,402,1,2,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3548,2021-01-03,4737.999900057215,438,Emergency,2021-01-26,Abnormal,3548,425,3,20,,,,DISCHARGED -3549,2023-06-16,18929.74353020977,322,Emergency,,Inconclusive,3549,34,2,29,,,,OPEN -3550,2022-08-30,43981.50118091351,397,Emergency,2022-09-29,Normal,3550,301,2,27,,,,DISCHARGED -3551,2023-01-22,13439.264949183447,188,Elective,2023-02-15,Normal,3551,409,4,29,,,,DISCHARGED -3552,2019-04-09,41807.36790346709,120,Emergency,2019-05-05,Abnormal,3552,498,2,10,,,,DISCHARGED -3553,2020-08-18,14611.617113662098,463,Urgent,2020-08-22,Normal,3553,68,1,21,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3554,2022-12-03,11478.24721975272,431,Urgent,2022-12-05,Normal,3554,348,0,14,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3555,2021-01-27,25030.24456864383,183,Elective,2021-02-04,Inconclusive,3555,319,0,28,,,,DISCHARGED -3556,2022-12-22,46638.90926530671,243,Urgent,2023-01-12,Abnormal,3556,420,0,24,,,,DISCHARGED -3557,2019-09-12,17021.60895848836,400,Urgent,2019-09-30,Abnormal,3557,467,0,24,,,,DISCHARGED -3558,2021-01-12,16472.8733946559,383,Elective,2021-02-06,Abnormal,3558,48,2,2,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -3559,2023-03-25,12467.091334868228,226,Urgent,2023-04-13,Inconclusive,3559,404,2,29,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -3560,2019-07-05,38813.44871418475,142,Emergency,2019-07-16,Abnormal,3560,73,4,23,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -3561,2022-05-31,26238.375909206112,399,Urgent,2022-06-17,Inconclusive,3561,191,2,12,,,,DISCHARGED -3561,2021-05-15,10865.8979402336,117,Elective,2021-06-07,Normal,8820,260,0,3,,,,DISCHARGED -3562,2021-10-16,11702.51920815186,300,Urgent,2021-10-17,Normal,3562,355,3,22,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3563,2021-12-22,49024.22632757895,366,Emergency,2022-01-19,Normal,3563,69,3,21,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3564,2021-07-22,16843.434202147546,214,Elective,2021-07-31,Normal,3564,89,1,7,,,,DISCHARGED -3565,2019-12-07,38672.562432232095,448,Urgent,2020-01-02,Inconclusive,3565,259,1,21,,,,DISCHARGED -3566,2019-06-12,26200.652879000478,327,Elective,2019-06-19,Inconclusive,3566,125,2,3,,,,DISCHARGED -3567,2019-01-28,44654.47525364047,476,Elective,2019-02-26,Inconclusive,3567,230,3,17,,,,DISCHARGED -3568,2021-03-20,41244.88823450371,216,Elective,2021-04-03,Inconclusive,3568,294,0,6,,,,DISCHARGED -3569,2020-06-05,27654.52250853423,393,Urgent,2020-06-29,Abnormal,3569,497,0,10,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3570,2022-01-08,31172.57314163279,206,Elective,2022-01-15,Abnormal,3570,418,0,28,,,,DISCHARGED -3571,2021-02-27,16533.66010441121,395,Elective,2021-03-13,Inconclusive,3571,128,2,26,,,,DISCHARGED -3572,2018-12-06,9754.8346528051,339,Urgent,2018-12-15,Abnormal,3572,279,2,3,,,,DISCHARGED -3573,2021-06-01,31966.842021193883,171,Urgent,2021-06-11,Abnormal,3573,312,4,12,,,,DISCHARGED -3574,2020-05-21,47424.384505529306,106,Emergency,2020-05-25,Abnormal,3574,99,0,8,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3575,2019-07-23,18437.656681041568,177,Emergency,2019-08-14,Abnormal,3575,325,0,8,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3575,2022-08-02,31786.830979384533,289,Emergency,2022-08-06,Abnormal,4981,296,2,22,,,,DISCHARGED -3576,2021-07-07,29029.241237755134,285,Urgent,2021-07-25,Abnormal,3576,181,2,20,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3577,2019-11-25,5810.421999423628,116,Emergency,2019-12-09,Normal,3577,173,4,18,,,,DISCHARGED -3578,2022-05-16,21610.42198655564,204,Elective,2022-06-09,Inconclusive,3578,315,4,2,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3579,2020-12-31,39954.816368857,325,Elective,2021-01-16,Inconclusive,3579,363,1,24,,,,DISCHARGED -3582,2019-03-15,18151.000540565357,277,Elective,2019-03-27,Inconclusive,3582,187,3,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3582,2019-06-26,48433.8872092603,127,Elective,2019-07-19,Inconclusive,5221,56,0,11,,,,DISCHARGED -3582,2020-08-31,20450.730076552587,413,Elective,2020-09-20,Abnormal,5843,30,0,28,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -3582,2019-06-24,45163.33424177905,313,Elective,2019-06-30,Normal,5883,83,4,10,,,,DISCHARGED -3583,2020-06-19,25351.138805376617,143,Elective,2020-07-11,Normal,3583,151,4,19,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -3584,2020-03-21,10943.537229306772,315,Urgent,2020-04-10,Normal,3584,472,1,10,,,,DISCHARGED -3585,2020-04-12,29767.171907101078,435,Urgent,2020-05-03,Normal,3585,35,3,16,,,,DISCHARGED -3586,2023-05-09,20816.500880877276,467,Emergency,2023-05-23,Abnormal,3586,212,1,28,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3587,2019-03-24,42939.09014040129,160,Elective,2019-04-14,Normal,3587,413,3,25,,,,DISCHARGED -3588,2022-06-12,47751.17216037415,381,Urgent,2022-06-18,Inconclusive,3588,407,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3589,2022-04-27,45057.40233207381,382,Emergency,2022-05-11,Inconclusive,3589,363,1,13,,,,DISCHARGED -3590,2020-02-26,31080.992541012845,427,Urgent,2020-03-04,Normal,3590,105,4,15,,,,DISCHARGED -3591,2022-08-20,42322.95596482799,480,Elective,2022-09-08,Abnormal,3591,413,1,23,,,,DISCHARGED -3592,2022-09-15,26464.70766579044,240,Emergency,2022-10-04,Abnormal,3592,341,1,9,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -3593,2020-02-06,26954.72378444534,257,Urgent,2020-02-22,Abnormal,3593,219,0,3,,,,DISCHARGED -3594,2021-05-01,48106.17358851362,240,Urgent,2021-05-04,Abnormal,3594,390,4,9,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -3594,2022-05-13,10905.07365742909,214,Emergency,2022-06-07,Inconclusive,6913,162,4,25,,,,DISCHARGED -3595,2019-01-17,37386.1582373208,232,Emergency,2019-01-27,Normal,3595,438,2,19,,,,DISCHARGED -3596,2023-04-02,4306.629039810507,122,Emergency,,Inconclusive,3596,219,2,28,,,,OPEN -3597,2021-03-23,6397.66260157022,454,Elective,2021-03-28,Abnormal,3597,269,2,11,,,,DISCHARGED -3598,2018-12-06,28675.8283254028,428,Emergency,2018-12-24,Inconclusive,3598,119,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3599,2020-06-17,24502.7322182767,178,Urgent,2020-07-13,Abnormal,3599,393,1,8,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -3600,2020-06-03,13292.984535340844,271,Urgent,2020-06-17,Abnormal,3600,335,4,14,,,,DISCHARGED -3601,2019-12-24,22581.1348260488,428,Emergency,2019-12-26,Inconclusive,3601,399,4,8,,,,DISCHARGED -3602,2020-09-19,21683.89031339856,379,Urgent,2020-10-14,Inconclusive,3602,181,1,6,,,,DISCHARGED -3604,2022-08-27,39385.627287534415,359,Emergency,2022-09-02,Normal,3604,478,4,25,,,,DISCHARGED -3604,2022-04-05,21164.260608267494,209,Urgent,2022-04-29,Normal,8064,105,1,23,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3605,2021-01-02,34170.639978306506,400,Emergency,2021-01-15,Normal,3605,216,0,11,,,,DISCHARGED -3606,2019-08-26,23384.291416228607,425,Emergency,2019-09-02,Abnormal,3606,204,0,27,,,,DISCHARGED -3607,2020-12-15,37237.97587655118,395,Emergency,2021-01-06,Abnormal,3607,69,0,19,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3608,2021-07-08,27334.93648018413,137,Urgent,2021-07-14,Inconclusive,3608,43,1,23,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3609,2022-07-27,36350.83744328773,309,Urgent,2022-08-05,Abnormal,3609,328,1,13,,,,DISCHARGED -3610,2021-06-01,2877.780596408522,209,Elective,2021-06-09,Normal,3610,300,3,21,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -3610,2021-05-01,5196.805678236538,142,Emergency,2021-05-22,Inconclusive,8172,227,4,15,,,,DISCHARGED -3611,2021-10-14,48485.96340678633,281,Urgent,2021-10-24,Inconclusive,3611,183,4,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -3612,2022-12-29,41474.44307763255,223,Emergency,2022-12-31,Abnormal,3612,106,3,18,,,,DISCHARGED -3613,2021-08-19,8468.747008955077,488,Elective,2021-09-12,Abnormal,3613,83,3,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3614,2020-06-04,46585.258245597535,399,Emergency,2020-06-25,Abnormal,3614,337,0,2,,,,DISCHARGED -3615,2021-03-15,44975.82267585032,163,Elective,2021-03-18,Abnormal,3615,249,3,10,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3616,2020-07-18,39978.79724456784,340,Urgent,2020-08-06,Abnormal,3616,362,1,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -3618,2019-12-10,30901.09555661645,346,Urgent,2019-12-26,Normal,3618,440,2,20,,,,DISCHARGED -3619,2022-08-24,4635.669269285174,206,Urgent,2022-09-05,Normal,3619,20,1,19,,,,DISCHARGED -3620,2021-03-23,39882.64681703877,226,Emergency,2021-04-10,Inconclusive,3620,195,3,18,,,,DISCHARGED -3621,2021-08-31,6655.465654622017,142,Elective,2021-09-19,Inconclusive,3621,177,4,7,,,,DISCHARGED -3622,2019-08-04,25370.651820923376,448,Urgent,2019-08-24,Abnormal,3622,416,1,19,,,,DISCHARGED -3623,2022-01-20,7464.786260035436,381,Emergency,2022-02-19,Inconclusive,3623,474,4,7,,,,DISCHARGED -3623,2019-12-25,40676.69588495758,436,Urgent,2020-01-19,Abnormal,7430,6,1,25,,,,DISCHARGED -3624,2021-06-04,45504.47563851878,389,Urgent,2021-06-16,Normal,3624,69,4,2,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3625,2020-03-03,14253.111480418904,132,Elective,2020-03-29,Normal,3625,126,1,9,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3627,2023-09-09,15229.714747678629,452,Elective,,Normal,3627,398,4,12,,,,OPEN -3628,2021-03-09,2696.036119046068,258,Elective,2021-03-14,Inconclusive,3628,465,2,8,,,,DISCHARGED -3629,2020-04-13,26425.002887696883,172,Emergency,2020-05-09,Abnormal,3629,159,0,5,,,,DISCHARGED -3630,2023-02-22,38674.49962150651,213,Urgent,2023-03-23,Abnormal,3630,247,1,14,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -3631,2019-07-28,40064.44455685532,408,Urgent,2019-08-09,Inconclusive,3631,202,2,15,,,,DISCHARGED -3632,2021-04-08,42002.00297038644,120,Elective,2021-04-26,Normal,3632,147,0,4,,,,DISCHARGED -3633,2023-06-10,42964.595890674114,353,Emergency,2023-07-06,Abnormal,3633,471,1,20,,,,DISCHARGED -3634,2019-04-29,9398.58770810248,388,Urgent,2019-05-16,Normal,3634,142,2,12,,,,DISCHARGED -3634,2021-10-04,28643.930677392425,391,Urgent,2021-10-12,Inconclusive,3846,431,2,18,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -3635,2021-05-04,32240.336506516443,134,Urgent,2021-05-20,Inconclusive,3635,198,2,1,,,,DISCHARGED -3636,2020-02-17,5531.909466901662,463,Elective,2020-02-18,Inconclusive,3636,404,3,5,,,,DISCHARGED -3637,2019-07-04,13381.613495107267,153,Urgent,2019-08-03,Normal,3637,425,4,26,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3637,2019-04-28,40812.91890669756,184,Elective,2019-05-08,Inconclusive,9019,153,0,0,,,,DISCHARGED -3638,2020-09-23,4352.404190201662,401,Emergency,2020-10-17,Inconclusive,3638,491,4,14,,,,DISCHARGED -3639,2019-08-11,35150.24595386399,465,Emergency,2019-09-08,Inconclusive,3639,375,4,14,,,,DISCHARGED -3640,2019-10-16,17819.83777541087,155,Elective,2019-11-05,Abnormal,3640,383,4,13,,,,DISCHARGED -3641,2021-08-12,9395.590260263296,304,Urgent,2021-08-30,Inconclusive,3641,141,2,6,,,,DISCHARGED -3642,2023-07-05,46937.57000594674,370,Urgent,2023-07-10,Abnormal,3642,312,4,4,,,,DISCHARGED -3643,2023-09-22,23591.71924017739,252,Urgent,2023-10-20,Normal,3643,164,3,19,,,,DISCHARGED -3644,2021-07-16,29144.393550358716,372,Elective,2021-07-21,Normal,3644,313,1,24,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3645,2019-05-18,41451.66478006305,120,Urgent,2019-05-26,Normal,3645,20,2,25,,,,DISCHARGED -3646,2019-09-25,36373.11894420004,467,Urgent,2019-09-30,Normal,3646,81,0,15,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3647,2018-12-15,9406.323686261296,477,Elective,2019-01-09,Inconclusive,3647,68,1,16,,,,DISCHARGED -3648,2019-07-09,5480.758178570149,317,Emergency,2019-08-01,Inconclusive,3648,130,1,10,,,,DISCHARGED -3649,2021-02-23,22995.757564881515,310,Emergency,2021-03-19,Inconclusive,3649,86,1,14,,,,DISCHARGED -3650,2019-12-27,25089.83557550444,258,Urgent,2019-12-28,Inconclusive,3650,217,4,19,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3651,2019-01-24,43736.34065963515,360,Emergency,2019-02-08,Abnormal,3651,420,4,15,,,,DISCHARGED -3652,2019-08-02,40039.25600004329,168,Emergency,2019-08-10,Normal,3652,471,2,2,,,,DISCHARGED -3653,2019-11-25,6387.663608833473,267,Elective,2019-12-17,Inconclusive,3653,304,4,5,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3654,2019-12-06,41919.70806784564,142,Elective,2020-01-03,Inconclusive,3654,402,4,20,,,,DISCHARGED -3655,2023-02-03,31347.129050444884,444,Elective,,Inconclusive,3655,370,4,22,,,,OPEN -3656,2023-08-15,30012.56367775242,266,Urgent,2023-08-20,Abnormal,3656,344,2,12,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -3657,2019-02-23,49269.73366913681,445,Elective,2019-03-03,Inconclusive,3657,340,2,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3658,2021-04-22,8219.293262399719,385,Urgent,2021-05-16,Normal,3658,383,3,28,,,,DISCHARGED -3659,2022-06-14,18557.6677105462,432,Emergency,2022-06-29,Normal,3659,395,3,20,,,,DISCHARGED -3660,2023-02-17,36902.6337952106,358,Urgent,,Inconclusive,3660,444,3,13,,,,OPEN -3661,2021-10-23,20514.57636390076,419,Elective,2021-11-14,Normal,3661,424,3,1,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3662,2021-04-02,13919.318618726771,156,Emergency,2021-04-26,Abnormal,3662,160,1,1,,,,DISCHARGED -3663,2022-06-02,38603.55496230807,447,Emergency,2022-06-09,Abnormal,3663,177,1,26,,,,DISCHARGED -3664,2019-09-05,16903.942433850985,235,Urgent,2019-09-24,Normal,3664,116,3,14,,,,DISCHARGED -3665,2020-05-26,32987.16245169197,252,Emergency,2020-05-28,Normal,3665,195,3,26,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -3666,2023-01-24,40042.31376239035,249,Elective,2023-01-31,Inconclusive,3666,382,0,17,,,,DISCHARGED -3667,2021-07-09,24344.154000241604,470,Emergency,2021-08-08,Normal,3667,489,1,8,,,,DISCHARGED -3668,2022-08-29,7600.312671515739,499,Emergency,2022-09-04,Normal,3668,326,0,25,,,,DISCHARGED -3669,2019-01-24,29233.17368302868,400,Urgent,2019-02-01,Normal,3669,85,0,2,,,,DISCHARGED -3670,2022-10-05,3585.581082815545,489,Urgent,2022-10-15,Abnormal,3670,288,4,3,,,,DISCHARGED -3671,2019-05-19,32639.793950269468,136,Urgent,2019-06-05,Abnormal,3671,80,2,14,,,,DISCHARGED -3672,2022-03-19,12015.298795465156,103,Emergency,2022-04-14,Inconclusive,3672,151,1,4,,,,DISCHARGED -3673,2021-04-27,47332.68930916563,429,Emergency,2021-05-09,Normal,3673,60,3,29,,,,DISCHARGED -3674,2019-08-22,11264.907628983943,445,Emergency,2019-08-30,Normal,3674,60,3,19,,,,DISCHARGED -3675,2021-03-24,42865.4841964693,368,Emergency,2021-04-02,Normal,3675,353,2,19,,,,DISCHARGED -3675,2022-04-05,27910.712959002896,159,Emergency,2022-04-30,Normal,7913,27,1,4,,,,DISCHARGED -3676,2021-02-28,47684.404072998215,423,Elective,2021-03-20,Abnormal,3676,441,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3677,2019-09-08,2352.4826369607663,427,Emergency,2019-10-01,Normal,3677,42,3,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3678,2022-06-14,3676.900636894232,319,Urgent,2022-06-20,Inconclusive,3678,168,4,24,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -3679,2021-09-14,20284.00396846153,151,Elective,2021-10-04,Normal,3679,422,0,11,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3680,2020-05-08,36298.56025786638,412,Elective,2020-05-09,Inconclusive,3680,85,3,24,,,,DISCHARGED -3681,2023-10-15,36077.19710920713,352,Emergency,,Inconclusive,3681,176,1,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -3682,2021-08-07,13726.94017754931,261,Emergency,2021-08-13,Abnormal,3682,16,2,13,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3683,2019-02-17,19101.841049086677,307,Elective,2019-03-05,Normal,3683,97,4,21,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -3684,2019-09-14,20273.501201656258,278,Urgent,2019-10-14,Normal,3684,453,1,10,,,,DISCHARGED -3685,2022-09-16,29823.99297084404,277,Urgent,2022-10-06,Abnormal,3685,493,4,27,,,,DISCHARGED -3687,2022-04-04,1364.5716811116522,200,Urgent,2022-04-28,Normal,3687,197,0,29,,,,DISCHARGED -3688,2019-09-22,39407.640546151015,218,Elective,2019-10-13,Abnormal,3688,97,3,18,,,,DISCHARGED -3689,2019-12-05,3247.419389761777,118,Emergency,2019-12-16,Abnormal,3689,64,1,5,,,,DISCHARGED -3690,2020-08-28,26722.714872875986,283,Elective,2020-09-11,Inconclusive,3690,329,2,9,,,,DISCHARGED -3692,2022-01-24,10536.350519619164,167,Elective,2022-02-20,Abnormal,3692,340,0,19,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3693,2019-08-31,18249.705388971248,324,Urgent,2019-09-09,Inconclusive,3693,4,0,2,,,,DISCHARGED -3694,2020-08-19,14469.471240696908,174,Emergency,2020-08-29,Normal,3694,1,4,21,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3695,2019-07-27,20720.5895982287,440,Emergency,2019-08-10,Inconclusive,3695,21,0,14,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -3696,2018-12-30,37200.57738765615,328,Elective,2019-01-22,Inconclusive,3696,111,1,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -3697,2023-02-01,2118.381299669269,206,Emergency,,Normal,3697,56,4,21,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -3698,2019-11-14,44520.32784556401,380,Emergency,2019-11-15,Normal,3698,65,0,1,,,,DISCHARGED -3699,2023-01-28,8237.045124834967,338,Elective,2023-02-16,Normal,3699,329,2,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -3700,2020-01-29,43819.674146926016,500,Elective,2020-02-02,Normal,3700,97,1,23,,,,DISCHARGED -3701,2021-09-18,24190.989723260704,457,Elective,2021-09-28,Inconclusive,3701,143,2,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3702,2020-03-08,45620.66848026368,413,Elective,2020-03-24,Abnormal,3702,367,2,16,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3703,2022-04-08,24109.484049974093,326,Elective,2022-04-23,Abnormal,3703,434,4,27,,,,DISCHARGED -3704,2022-04-09,23633.249252123085,406,Urgent,2022-05-06,Abnormal,3704,124,3,17,,,,DISCHARGED -3706,2019-06-05,34186.162772907745,426,Urgent,2019-06-07,Normal,3706,166,4,3,,,,DISCHARGED -3706,2021-10-18,43861.885641574576,273,Urgent,2021-11-07,Normal,7670,85,1,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3707,2019-04-26,13456.890613960884,329,Elective,2019-05-21,Normal,3707,75,1,8,,,,DISCHARGED -3709,2021-10-06,19764.340240436464,457,Elective,2021-10-18,Normal,3709,343,4,9,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -3710,2019-11-27,48388.57212827295,341,Emergency,2019-12-24,Inconclusive,3710,494,3,20,,,,DISCHARGED -3711,2019-10-15,41821.3759585212,436,Emergency,2019-11-06,Inconclusive,3711,423,4,25,,,,DISCHARGED -3712,2019-05-28,37461.06447775906,121,Elective,2019-06-11,Normal,3712,293,1,1,,,,DISCHARGED -3713,2020-03-28,32875.58182712499,194,Emergency,2020-04-02,Inconclusive,3713,443,3,28,,,,DISCHARGED -3714,2019-04-14,9192.346557921228,184,Urgent,2019-05-11,Normal,3714,58,1,10,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -3715,2022-02-10,17485.035584738052,214,Elective,2022-02-18,Normal,3715,137,3,10,,,,DISCHARGED -3716,2021-06-15,7618.214262172099,420,Urgent,2021-06-25,Abnormal,3716,98,3,10,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3717,2023-03-31,20189.610707746247,216,Emergency,,Abnormal,3717,191,4,0,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",OPEN -3718,2018-11-21,42988.61829370994,362,Elective,2018-12-02,Inconclusive,3718,242,4,25,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -3719,2023-07-31,26094.662876983173,174,Elective,2023-08-19,Inconclusive,3719,318,4,13,,,,DISCHARGED -3720,2020-01-25,48620.87137998923,269,Elective,2020-02-18,Normal,3720,48,3,28,,,,DISCHARGED -3721,2020-12-18,12994.39988524533,126,Emergency,2021-01-16,Normal,3721,447,3,29,,,,DISCHARGED -3722,2021-12-15,24360.072780161485,469,Elective,2021-12-27,Inconclusive,3722,31,1,0,,,,DISCHARGED -3723,2023-07-09,7551.620992670825,296,Urgent,2023-07-19,Inconclusive,3723,390,2,20,,,,DISCHARGED -3724,2021-08-08,27947.61014587241,282,Urgent,2021-09-07,Inconclusive,3724,276,4,29,,,,DISCHARGED -3725,2021-04-10,16486.59371419758,223,Elective,2021-04-24,Normal,3725,19,1,22,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -3728,2020-07-31,34066.56979142001,268,Elective,2020-08-21,Inconclusive,3728,153,1,24,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3729,2022-02-12,47986.36698510451,139,Urgent,2022-02-15,Abnormal,3729,382,0,8,,,,DISCHARGED -3730,2021-08-31,39765.85762580165,341,Emergency,2021-09-23,Normal,3730,67,4,23,,,,DISCHARGED -3731,2019-05-26,9849.160982146752,186,Emergency,2019-06-14,Normal,3731,365,1,0,,,,DISCHARGED -3732,2021-07-09,40403.42003986442,173,Elective,2021-08-02,Abnormal,3732,371,0,20,,,,DISCHARGED -3733,2020-12-20,2546.932617228155,381,Elective,2021-01-08,Abnormal,3733,213,4,21,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -3734,2019-06-28,17930.74301947572,351,Urgent,2019-07-13,Abnormal,3734,142,3,21,,,,DISCHARGED -3736,2021-03-17,30598.090202147952,297,Emergency,2021-03-18,Inconclusive,3736,375,0,3,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -3737,2019-10-05,31291.05724793579,293,Urgent,2019-10-15,Abnormal,3737,231,3,0,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -3738,2022-05-11,45032.651270918046,238,Emergency,2022-06-01,Inconclusive,3738,212,2,18,,,,DISCHARGED -3739,2019-11-07,10039.270787156658,408,Urgent,2019-11-16,Abnormal,3739,78,2,9,,,,DISCHARGED -3740,2019-07-22,45641.16862808066,487,Urgent,2019-08-07,Inconclusive,3740,213,2,14,,,,DISCHARGED -3741,2021-06-24,38779.47429220685,135,Elective,2021-07-09,Normal,3741,115,2,19,,,,DISCHARGED -3742,2023-07-25,28609.525757792777,473,Elective,2023-08-06,Normal,3742,91,1,3,,,,DISCHARGED -3743,2022-09-21,28685.286106351337,332,Emergency,2022-10-11,Abnormal,3743,269,2,28,,,,DISCHARGED -3744,2022-01-04,13729.78334595889,164,Emergency,2022-02-03,Abnormal,3744,410,1,19,,,,DISCHARGED -3745,2023-07-21,11029.20457269175,289,Urgent,2023-07-23,Abnormal,3745,380,1,13,,,,DISCHARGED -3746,2023-03-30,19987.389381447418,295,Emergency,2023-04-22,Normal,3746,488,4,4,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -3747,2023-04-11,43076.57638376048,486,Elective,,Normal,3747,167,1,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,OPEN -3748,2021-06-07,11950.514468022331,254,Emergency,2021-07-03,Inconclusive,3748,57,1,14,,,,DISCHARGED -3749,2023-02-16,3648.805225942074,221,Elective,2023-03-13,Normal,3749,283,2,14,,,,DISCHARGED -3750,2021-03-11,19545.43598263267,226,Urgent,2021-03-23,Normal,3750,25,1,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3751,2022-10-25,2883.139293946161,341,Emergency,2022-11-15,Abnormal,3751,368,3,24,,,,DISCHARGED -3752,2020-02-15,43190.82672278742,372,Urgent,2020-03-06,Abnormal,3752,446,2,15,,,,DISCHARGED -3752,2021-02-24,33332.57038511126,174,Emergency,2021-03-18,Abnormal,6670,65,0,15,,,,DISCHARGED -3754,2022-07-04,14451.502055847855,424,Elective,2022-07-20,Normal,3754,408,2,3,,,,DISCHARGED -3755,2020-06-02,30625.696879389976,269,Urgent,2020-06-28,Inconclusive,3755,247,1,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3756,2021-06-08,13270.054338771151,187,Urgent,2021-07-07,Abnormal,3756,253,3,8,,,,DISCHARGED -3757,2022-11-22,4015.9983328764247,110,Emergency,2022-12-13,Normal,3757,386,2,0,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -3758,2022-08-12,46207.52890671006,401,Elective,2022-08-26,Inconclusive,3758,455,3,4,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3759,2021-07-21,20064.97994975416,279,Elective,2021-08-14,Abnormal,3759,43,0,8,,,,DISCHARGED -3760,2019-08-29,36029.194506450105,280,Elective,2019-08-31,Abnormal,3760,96,0,19,,,,DISCHARGED -3761,2021-02-28,17681.28905928407,411,Urgent,2021-03-02,Normal,3761,41,4,4,,,,DISCHARGED -3762,2019-09-09,18521.023687414927,318,Emergency,2019-09-19,Abnormal,3762,499,4,3,,,,DISCHARGED -3763,2021-04-07,32760.415635628426,156,Elective,2021-05-01,Abnormal,3763,226,2,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -3764,2021-12-28,33493.280093722366,316,Urgent,2022-01-22,Inconclusive,3764,261,4,15,,,,DISCHARGED -3765,2020-05-31,26876.23582038916,142,Emergency,2020-06-06,Inconclusive,3765,166,3,1,,,,DISCHARGED -3766,2019-06-05,7359.4980384759965,384,Elective,2019-06-16,Abnormal,3766,435,4,25,,,,DISCHARGED -3767,2018-11-05,27338.71694132319,479,Emergency,2018-11-17,Abnormal,3767,278,3,15,,,,DISCHARGED -3768,2021-03-10,29405.133882222635,316,Emergency,2021-03-23,Abnormal,3768,88,4,17,,,,DISCHARGED -3769,2020-11-11,1443.2385392245096,198,Elective,2020-11-17,Inconclusive,3769,378,4,1,,,,DISCHARGED -3770,2021-10-04,1582.646636467121,149,Urgent,2021-10-29,Inconclusive,3770,177,4,15,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3771,2021-08-15,31110.7441071293,220,Urgent,2021-08-28,Inconclusive,3771,426,1,28,,,,DISCHARGED -3772,2019-07-18,29279.01250687594,399,Elective,2019-07-25,Abnormal,3772,402,1,0,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3774,2021-07-29,30771.525024828767,468,Emergency,2021-08-26,Inconclusive,3774,196,4,15,,,,DISCHARGED -3775,2021-01-22,4391.112816775143,490,Emergency,2021-02-11,Abnormal,3775,306,3,2,,,,DISCHARGED -3776,2021-11-09,12557.45767860984,184,Urgent,2021-11-27,Abnormal,3776,266,2,14,,,,DISCHARGED -3777,2021-09-10,30764.87769385657,301,Urgent,2021-09-23,Inconclusive,3777,267,0,29,,,,DISCHARGED -3778,2022-05-19,37728.5103548652,195,Elective,2022-06-12,Normal,3778,73,1,10,,,,DISCHARGED -3779,2021-09-11,11989.52689952245,332,Elective,2021-10-06,Normal,3779,7,4,9,,,,DISCHARGED -3780,2022-03-26,37037.09203725311,473,Urgent,2022-04-20,Normal,3780,407,0,16,,,,DISCHARGED -3781,2021-01-04,40519.76355665847,439,Elective,2021-01-29,Inconclusive,3781,475,1,3,,,,DISCHARGED -3783,2021-05-11,32335.756396716923,281,Emergency,2021-05-27,Abnormal,3783,296,2,16,,,,DISCHARGED -3783,2021-05-03,48176.45015169483,231,Emergency,2021-05-20,Normal,5603,163,3,3,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -3784,2020-06-12,24271.006037696457,276,Emergency,2020-06-27,Normal,3784,484,4,18,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3785,2019-05-26,45696.46066901234,229,Elective,2019-06-16,Abnormal,3785,84,2,24,,,,DISCHARGED -3786,2022-11-19,17640.46252248001,186,Urgent,2022-12-19,Inconclusive,3786,71,1,0,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3787,2019-03-27,42090.003019604446,123,Emergency,2019-04-03,Abnormal,3787,54,4,13,,,,DISCHARGED -3788,2020-08-31,19157.25147990573,456,Emergency,2020-09-08,Normal,3788,392,0,23,,,,DISCHARGED -3789,2021-09-30,39606.49750413241,410,Emergency,2021-10-29,Normal,3789,46,3,10,,,,DISCHARGED -3790,2020-06-26,17341.405257150178,154,Elective,2020-07-14,Normal,3790,398,1,24,,,,DISCHARGED -3791,2019-02-21,29117.225716495417,458,Elective,2019-03-08,Normal,3791,431,3,27,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -3792,2021-07-26,19434.23320910334,332,Emergency,2021-08-08,Abnormal,3792,237,4,6,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3793,2021-10-06,34445.9279143732,289,Emergency,2021-10-13,Inconclusive,3793,103,2,16,,,,DISCHARGED -3793,2023-07-07,37343.45840925794,299,Urgent,2023-07-19,Inconclusive,7187,209,3,3,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -3794,2021-12-17,34320.124884804536,381,Urgent,2022-01-13,Inconclusive,3794,41,0,9,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -3794,2020-02-16,40461.419915621766,346,Urgent,2020-02-24,Abnormal,7324,315,1,16,,,,DISCHARGED -3795,2019-09-13,36778.05910739757,115,Elective,2019-09-18,Inconclusive,3795,467,0,3,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3796,2019-03-12,24744.46648116006,119,Urgent,2019-03-23,Inconclusive,3796,453,3,18,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3797,2020-01-06,31400.00736467841,280,Elective,2020-01-28,Abnormal,3797,267,2,17,,,,DISCHARGED -3798,2022-02-17,3586.0660086947446,119,Elective,2022-03-03,Inconclusive,3798,385,2,16,,,,DISCHARGED -3799,2018-12-25,23250.103519663804,355,Emergency,2018-12-30,Abnormal,3799,262,0,5,,,,DISCHARGED -3800,2022-01-27,46771.38930461338,337,Elective,2022-02-08,Inconclusive,3800,335,4,27,,,,DISCHARGED -3801,2019-09-23,35881.34631982985,115,Emergency,2019-10-05,Abnormal,3801,386,4,6,,,,DISCHARGED -3802,2021-06-05,12242.10650075162,368,Elective,2021-06-16,Abnormal,3802,364,2,5,,,,DISCHARGED -3803,2019-09-03,30434.517428940737,380,Elective,2019-10-03,Normal,3803,258,0,24,,,,DISCHARGED -3804,2021-02-01,35023.37598373739,393,Emergency,2021-02-08,Normal,3804,282,0,11,,,,DISCHARGED -3805,2019-05-03,32034.29704627976,211,Elective,2019-05-27,Abnormal,3805,113,0,8,,,,DISCHARGED -3806,2020-05-13,2949.166173937724,339,Urgent,2020-05-24,Inconclusive,3806,362,3,17,,,,DISCHARGED -3807,2019-09-14,32510.06595042784,263,Elective,2019-10-10,Normal,3807,39,4,1,,,,DISCHARGED -3808,2019-01-23,41577.16528605794,197,Urgent,2019-02-12,Inconclusive,3808,485,4,24,,,,DISCHARGED -3809,2022-11-27,34196.512641192494,399,Emergency,2022-12-01,Inconclusive,3809,416,3,16,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3810,2020-11-28,44770.31633837437,357,Emergency,2020-12-02,Abnormal,3810,219,1,20,,,,DISCHARGED -3811,2021-06-26,30832.841350529477,145,Elective,2021-07-07,Inconclusive,3811,128,3,0,,,,DISCHARGED -3812,2020-05-30,27847.14467180365,119,Emergency,2020-06-05,Abnormal,3812,7,0,22,,,,DISCHARGED -3813,2022-09-25,42210.12831584641,289,Urgent,2022-10-21,Normal,3813,100,3,8,,,,DISCHARGED -3814,2022-06-04,23911.048795803003,185,Emergency,2022-06-07,Normal,3814,415,0,5,,,,DISCHARGED -3815,2023-01-04,7872.13733520285,207,Elective,,Abnormal,3815,379,2,29,,,,OPEN -3816,2019-10-01,20738.33653120527,192,Emergency,2019-10-12,Inconclusive,3816,175,0,1,,,,DISCHARGED -3818,2022-06-23,18933.83020252073,412,Emergency,2022-07-14,Normal,3818,106,4,5,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3819,2022-09-02,2470.51101845269,390,Emergency,2022-09-11,Inconclusive,3819,100,3,8,,,,DISCHARGED -3820,2023-10-28,42183.6638644879,482,Urgent,,Inconclusive,3820,259,0,2,,,,OPEN -3821,2022-03-01,19428.56091892978,163,Elective,2022-03-08,Inconclusive,3821,477,1,15,,,,DISCHARGED -3822,2023-02-10,26911.52130540193,271,Emergency,2023-03-10,Normal,3822,453,2,24,,,,DISCHARGED -3823,2021-12-11,16286.162383424242,145,Elective,2022-01-06,Normal,3823,365,1,23,,,,DISCHARGED -3824,2020-01-14,23605.84871063761,296,Urgent,2020-01-31,Normal,3824,245,1,14,,,,DISCHARGED -3824,2021-04-08,41423.10765100516,466,Emergency,2021-05-03,Normal,7371,274,1,28,,,,DISCHARGED -3825,2020-09-08,41495.97114396475,358,Emergency,2020-09-11,Inconclusive,3825,31,2,11,,,,DISCHARGED -3826,2021-05-19,47658.04612178131,238,Emergency,2021-06-11,Inconclusive,3826,136,2,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3827,2023-03-10,20510.58310956463,397,Elective,2023-03-30,Abnormal,3827,11,2,7,,,,DISCHARGED -3828,2020-04-16,2656.778684233969,167,Urgent,2020-04-21,Normal,3828,394,2,25,,,,DISCHARGED -3829,2021-12-03,19365.24368621488,367,Emergency,2021-12-21,Inconclusive,3829,301,1,5,,,,DISCHARGED -3830,2019-02-21,41041.84884139222,432,Emergency,2019-02-25,Abnormal,3830,374,4,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -3831,2022-10-16,48642.77474602781,319,Urgent,2022-10-31,Inconclusive,3831,15,4,22,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3832,2023-07-24,45316.81843052264,230,Elective,2023-08-22,Abnormal,3832,128,2,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -3833,2023-07-03,8514.766709092019,455,Emergency,2023-07-28,Abnormal,3833,62,3,26,,,,DISCHARGED -3834,2023-05-25,25048.930069642534,271,Elective,2023-05-28,Inconclusive,3834,108,0,9,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -3835,2020-08-20,13481.72373755531,452,Elective,2020-08-28,Abnormal,3835,374,3,13,,,,DISCHARGED -3836,2020-06-27,12323.67397719975,267,Urgent,2020-07-09,Abnormal,3836,20,3,20,,,,DISCHARGED -3837,2021-07-31,47557.24329848317,455,Elective,2021-08-04,Inconclusive,3837,157,3,23,,,,DISCHARGED -3838,2023-04-30,42343.40934392996,378,Emergency,2023-05-26,Normal,3838,268,4,14,,,,DISCHARGED -3839,2019-09-09,24384.258244676992,332,Elective,2019-09-11,Abnormal,3839,161,0,6,,,,DISCHARGED -3840,2022-03-08,17499.031216129893,230,Urgent,2022-03-22,Abnormal,3840,259,3,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -3841,2023-04-05,18375.03080246838,175,Elective,2023-04-08,Abnormal,3841,411,2,7,,,,DISCHARGED -3842,2022-11-03,33529.966100828,172,Elective,2022-11-20,Abnormal,3842,101,4,9,,,,DISCHARGED -3843,2020-04-26,49614.102577248654,159,Elective,2020-05-23,Abnormal,3843,222,2,18,,,,DISCHARGED -3844,2023-03-04,27226.03442573905,194,Urgent,2023-03-05,Inconclusive,3844,58,2,18,,,,DISCHARGED -3845,2019-10-07,42866.05731102149,414,Emergency,2019-11-02,Abnormal,3845,246,3,1,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -3847,2021-10-14,17788.830863157677,151,Emergency,2021-11-01,Inconclusive,3847,127,2,14,,,,DISCHARGED -3848,2023-10-17,2785.6951543200403,319,Emergency,2023-11-11,Normal,3848,282,0,0,,,,DISCHARGED -3848,2022-08-21,42765.92579730368,190,Emergency,2022-09-06,Inconclusive,8538,324,2,9,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -3848,2019-08-10,9100.369929764409,358,Elective,2019-08-18,Normal,8942,24,3,5,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3849,2023-05-25,8628.143559606928,342,Urgent,2023-06-11,Inconclusive,3849,130,2,21,,,,DISCHARGED -3850,2020-05-24,35979.679725886126,416,Elective,2020-06-10,Abnormal,3850,352,4,12,,,,DISCHARGED -3851,2021-09-05,34936.95850435869,381,Emergency,2021-09-28,Abnormal,3851,195,4,9,,,,DISCHARGED -3852,2022-01-17,19319.40761289952,132,Elective,2022-01-22,Abnormal,3852,280,4,11,,,,DISCHARGED -3853,2018-11-14,29101.685021880672,377,Emergency,2018-11-26,Normal,3853,403,1,23,,,,DISCHARGED -3854,2022-06-04,18057.88879497113,284,Urgent,2022-06-08,Normal,3854,417,4,29,,,,DISCHARGED -3854,2020-05-08,25213.05845341943,313,Elective,2020-05-20,Inconclusive,6636,153,4,5,,,,DISCHARGED -3855,2022-09-14,3296.148245456768,110,Urgent,2022-09-24,Abnormal,3855,381,1,5,,,,DISCHARGED -3856,2023-07-02,26158.336217848813,425,Elective,,Normal,3856,132,4,0,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -3857,2020-12-07,28463.74647710118,342,Emergency,2020-12-08,Normal,3857,226,3,11,,,,DISCHARGED -3858,2022-03-03,40459.06481552834,251,Emergency,2022-03-16,Inconclusive,3858,188,4,22,,,,DISCHARGED -3859,2020-06-23,41009.649545467306,103,Elective,2020-07-15,Abnormal,3859,475,4,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3860,2021-12-24,42734.6695732195,179,Elective,2022-01-04,Inconclusive,3860,476,1,9,,,,DISCHARGED -3861,2023-08-10,46990.22262081697,472,Elective,,Abnormal,3861,264,3,24,,,,OPEN -3862,2019-01-10,33165.530515743245,214,Emergency,2019-01-18,Inconclusive,3862,371,2,13,,,,DISCHARGED -3863,2020-01-22,33115.52334657452,224,Urgent,2020-01-24,Abnormal,3863,485,0,14,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -3864,2021-03-10,29131.68791184076,343,Urgent,2021-03-25,Abnormal,3864,433,3,27,,,,DISCHARGED -3865,2020-10-04,31113.976983774814,480,Elective,2020-10-06,Normal,3865,133,2,22,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3867,2021-07-05,2060.5697049083537,266,Elective,2021-07-09,Abnormal,3867,210,3,23,,,,DISCHARGED -3868,2022-09-16,1953.4352258480728,395,Elective,2022-09-26,Normal,3868,59,2,3,,,,DISCHARGED -3869,2018-12-24,16225.101066585195,247,Urgent,2019-01-13,Normal,3869,427,2,24,,,,DISCHARGED -3870,2020-07-31,47886.1686090532,442,Emergency,2020-08-28,Inconclusive,3870,376,3,29,,,,DISCHARGED -3871,2021-02-25,10719.81835782693,128,Urgent,2021-03-12,Abnormal,3871,394,1,0,,,,DISCHARGED -3872,2021-02-17,5969.409197997437,324,Urgent,2021-02-27,Inconclusive,3872,449,3,7,,,,DISCHARGED -3873,2022-06-14,48521.18885872096,137,Emergency,2022-06-21,Normal,3873,430,3,2,,,,DISCHARGED -3874,2023-07-06,9053.578891464997,283,Emergency,2023-07-17,Inconclusive,3874,363,2,13,,,,DISCHARGED -3875,2020-06-24,23000.698126196985,225,Elective,2020-06-30,Normal,3875,363,0,16,,,,DISCHARGED -3876,2022-02-21,45763.56584901265,417,Urgent,2022-02-27,Inconclusive,3876,456,2,1,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -3877,2021-09-05,3975.289322624032,444,Emergency,2021-10-04,Abnormal,3877,212,4,14,,,,DISCHARGED -3878,2019-09-05,33453.73402484878,244,Emergency,2019-09-15,Inconclusive,3878,215,3,5,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -3879,2023-04-16,36102.38687809192,178,Elective,2023-04-19,Abnormal,3879,225,3,4,,,,DISCHARGED -3880,2021-04-10,16027.801413802095,230,Urgent,2021-04-14,Normal,3880,469,1,13,,,,DISCHARGED -3881,2020-11-02,16862.783661251284,455,Urgent,2020-11-12,Inconclusive,3881,130,2,18,,,,DISCHARGED -3883,2019-09-17,7338.191705441037,409,Urgent,2019-10-07,Abnormal,3883,75,1,8,,,,DISCHARGED -3884,2019-02-01,22297.61619329017,412,Elective,2019-02-24,Normal,3884,475,3,7,,,,DISCHARGED -3885,2021-09-04,41484.95102317372,294,Urgent,2021-09-19,Normal,3885,285,2,28,,,,DISCHARGED -3885,2022-09-16,41574.91651255788,449,Emergency,2022-09-20,Inconclusive,7538,473,2,2,,,,DISCHARGED -3885,2021-07-16,34547.08330500104,291,Urgent,2021-08-09,Abnormal,9377,495,4,17,,,,DISCHARGED -3886,2020-11-07,16822.46724129276,455,Emergency,2020-11-17,Abnormal,3886,276,4,7,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -3887,2020-01-05,31622.310763011203,481,Elective,2020-01-24,Abnormal,3887,155,0,15,,,,DISCHARGED -3888,2023-04-04,5762.325282999796,416,Elective,2023-04-25,Inconclusive,3888,247,4,29,,,,DISCHARGED -3889,2022-12-24,28077.12145305293,188,Urgent,2023-01-13,Inconclusive,3889,217,2,14,,,,DISCHARGED -3890,2021-06-14,25257.30991148984,128,Urgent,2021-06-19,Abnormal,3890,189,4,20,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3891,2019-06-06,47385.322965355095,228,Urgent,2019-06-17,Normal,3891,416,0,14,,,,DISCHARGED -3892,2019-08-20,16320.884790906048,280,Elective,2019-08-29,Inconclusive,3892,468,3,15,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -3893,2022-09-21,45863.75604600143,173,Emergency,2022-10-08,Inconclusive,3893,162,4,24,,,,DISCHARGED -3894,2021-03-16,37749.471513937046,331,Urgent,2021-03-28,Abnormal,3894,179,2,0,,,,DISCHARGED -3895,2019-02-07,11022.559727378686,426,Elective,2019-03-09,Abnormal,3895,33,3,9,,,,DISCHARGED -3896,2022-07-08,12152.146932430454,358,Emergency,2022-07-09,Normal,3896,40,2,18,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -3897,2021-01-16,38950.91725817293,178,Emergency,2021-02-12,Inconclusive,3897,306,3,4,,,,DISCHARGED -3898,2019-08-17,47949.87225993205,283,Emergency,2019-08-28,Normal,3898,430,2,17,,,,DISCHARGED -3898,2021-07-19,48896.33851533526,307,Elective,2021-07-24,Normal,5589,337,4,2,,,,DISCHARGED -3899,2020-07-23,38367.37068285416,296,Elective,2020-08-18,Inconclusive,3899,313,4,3,,,,DISCHARGED -3900,2022-04-05,28856.342554984614,376,Elective,2022-04-13,Inconclusive,3900,74,0,3,,,,DISCHARGED -3901,2021-04-24,46246.54888675951,265,Elective,2021-05-14,Abnormal,3901,440,3,10,,,,DISCHARGED -3902,2021-09-05,19613.175375617677,126,Urgent,2021-09-07,Normal,3902,278,0,8,,,,DISCHARGED -3903,2020-12-19,10498.185708038814,198,Urgent,2021-01-10,Abnormal,3903,175,1,0,,,,DISCHARGED -3905,2021-12-16,49424.27606338589,257,Emergency,2022-01-03,Normal,3905,383,4,27,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3906,2022-07-24,40691.44930979552,301,Emergency,2022-08-03,Abnormal,3906,149,3,24,,,,DISCHARGED -3907,2022-01-11,40662.870750776594,171,Urgent,2022-02-03,Abnormal,3907,272,0,15,,,,DISCHARGED -3908,2022-11-16,24441.31222258786,190,Emergency,2022-11-25,Abnormal,3908,324,0,8,,,,DISCHARGED -3909,2020-07-04,2812.9371336123704,451,Urgent,2020-07-18,Normal,3909,107,1,10,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -3910,2020-09-16,48581.32765762233,298,Elective,2020-09-27,Normal,3910,138,0,5,,,,DISCHARGED -3911,2023-06-17,43012.321931867766,196,Emergency,2023-07-11,Normal,3911,349,2,26,,,,DISCHARGED -3912,2019-08-11,34927.292262715266,400,Emergency,2019-08-26,Normal,3912,270,4,16,,,,DISCHARGED -3913,2021-11-06,25205.90275882803,225,Elective,2021-11-29,Normal,3913,346,0,26,,,,DISCHARGED -3914,2018-11-17,44218.85259201622,360,Emergency,2018-11-26,Normal,3914,418,0,28,,,,DISCHARGED -3915,2021-05-01,37230.96337400267,461,Urgent,2021-05-19,Inconclusive,3915,288,1,11,,,,DISCHARGED -3916,2022-05-11,14604.734731105513,158,Emergency,2022-05-17,Inconclusive,3916,211,2,21,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3917,2023-05-26,20713.6089265693,229,Urgent,2023-06-22,Normal,3917,380,0,7,,,,DISCHARGED -3918,2020-11-29,16471.421879970505,247,Urgent,2020-12-06,Normal,3918,271,4,15,,,,DISCHARGED -3919,2021-03-08,20854.947763964446,188,Emergency,2021-03-12,Abnormal,3919,417,4,4,,,,DISCHARGED -3920,2023-09-11,16607.916771683027,334,Urgent,2023-09-25,Abnormal,3920,65,0,20,,,,DISCHARGED -3920,2020-02-29,37070.95171970333,240,Emergency,2020-03-24,Normal,4575,482,2,0,,,,DISCHARGED -3921,2021-09-11,10987.393642437022,230,Emergency,2021-10-07,Abnormal,3921,423,4,16,,,,DISCHARGED -3922,2023-04-18,13904.256189617916,231,Emergency,2023-04-25,Inconclusive,3922,247,4,23,,,,DISCHARGED -3923,2022-07-09,41692.765692667526,116,Emergency,2022-07-29,Normal,3923,155,2,28,,,,DISCHARGED -3924,2020-03-22,25629.26656235793,470,Urgent,2020-04-02,Normal,3924,46,2,20,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -3925,2019-10-06,42342.61365184021,102,Urgent,2019-10-16,Abnormal,3925,422,0,7,,,,DISCHARGED -3926,2021-02-22,26274.55996553366,146,Urgent,2021-03-07,Normal,3926,453,3,9,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -3927,2019-11-03,35930.4049082831,164,Urgent,2019-12-01,Inconclusive,3927,200,1,17,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3928,2018-11-09,15868.935575970592,371,Elective,2018-11-22,Abnormal,3928,147,3,14,,,,DISCHARGED -3929,2021-05-31,3123.5975787042385,110,Emergency,2021-06-01,Normal,3929,123,3,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -3930,2020-09-07,9458.371255314618,201,Emergency,2020-09-12,Normal,3930,0,4,12,,,,DISCHARGED -3931,2023-04-22,4898.573239908914,454,Elective,,Normal,3931,455,2,26,,,,OPEN -3932,2023-05-09,24864.15380923731,287,Emergency,2023-05-25,Abnormal,3932,246,4,29,,,,DISCHARGED -3933,2021-07-07,8880.922382263609,196,Emergency,2021-07-27,Abnormal,3933,342,1,9,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3934,2022-10-18,7886.421979673938,358,Urgent,2022-10-27,Normal,3934,127,0,8,,,,DISCHARGED -3935,2023-06-14,34064.7398130964,399,Urgent,2023-07-07,Normal,3935,190,1,12,,,,DISCHARGED -3936,2020-09-24,38512.410603371536,296,Urgent,2020-10-02,Inconclusive,3936,66,4,2,,,,DISCHARGED -3937,2022-01-13,24972.559178678657,215,Emergency,2022-02-09,Normal,3937,3,4,21,,,,DISCHARGED -3938,2022-07-01,17322.72371013842,179,Urgent,2022-07-27,Normal,3938,441,4,26,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -3939,2022-04-20,33118.04473716077,133,Urgent,2022-05-09,Inconclusive,3939,408,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3940,2022-10-01,27654.432430874196,103,Elective,2022-10-12,Normal,3940,302,3,2,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3941,2021-11-27,4923.217315082435,473,Urgent,2021-12-09,Inconclusive,3941,293,0,0,,,,DISCHARGED -3942,2019-12-20,25521.45012697777,111,Elective,2019-12-26,Abnormal,3942,142,3,1,,,,DISCHARGED -3942,2022-10-22,40924.39213939114,142,Elective,2022-11-16,Abnormal,9294,190,4,10,,,,DISCHARGED -3943,2022-10-11,38096.41083445257,148,Emergency,2022-10-28,Normal,3943,20,2,13,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -3943,2020-01-05,26108.379155993392,130,Elective,2020-01-11,Normal,6108,226,3,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -3943,2019-03-20,37366.26162436063,434,Urgent,2019-04-05,Normal,8952,312,4,6,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -3944,2019-12-07,18417.029590283502,244,Elective,2019-12-21,Inconclusive,3944,116,4,22,,,,DISCHARGED -3944,2020-05-10,21621.86107192283,105,Urgent,2020-06-03,Normal,4783,436,0,27,,,,DISCHARGED -3945,2019-10-17,23985.737303950205,272,Elective,2019-11-15,Inconclusive,3945,301,1,0,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3946,2022-09-09,45229.44408146091,112,Emergency,2022-09-24,Inconclusive,3946,499,3,25,,,,DISCHARGED -3947,2020-10-12,24672.040279688063,335,Elective,2020-10-21,Inconclusive,3947,141,3,6,,,,DISCHARGED -3948,2023-05-06,9695.250708617095,344,Elective,2023-05-22,Normal,3948,483,3,14,,,,DISCHARGED -3949,2018-11-06,33515.25914114255,420,Emergency,2018-11-17,Normal,3949,459,4,25,,,,DISCHARGED -3950,2021-11-07,9078.333262934184,273,Emergency,2021-11-13,Inconclusive,3950,400,0,10,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3951,2020-08-20,48580.4746802228,224,Emergency,2020-09-07,Inconclusive,3951,38,4,5,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3952,2023-04-23,37778.66596853734,343,Emergency,,Abnormal,3952,392,4,26,,,,OPEN -3953,2021-05-26,7144.127417872438,138,Urgent,2021-06-15,Abnormal,3953,354,2,21,,,,DISCHARGED -3954,2019-08-14,12519.272605837436,488,Emergency,2019-09-05,Inconclusive,3954,251,0,6,,,,DISCHARGED -3955,2022-09-19,33332.135010162885,137,Emergency,2022-10-14,Normal,3955,332,3,6,,,,DISCHARGED -3956,2020-05-06,12644.305637054504,296,Elective,2020-06-05,Inconclusive,3956,206,1,0,,,,DISCHARGED -3957,2023-07-26,44684.55787544052,207,Urgent,2023-08-02,Abnormal,3957,209,3,9,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3958,2022-11-27,35361.25890753226,259,Emergency,2022-12-09,Normal,3958,114,4,20,,,,DISCHARGED -3959,2021-02-04,41672.53599427157,416,Elective,2021-02-15,Inconclusive,3959,224,0,14,,,,DISCHARGED -3960,2021-08-03,1991.4269568056736,357,Urgent,2021-08-25,Normal,3960,133,0,29,,,,DISCHARGED -3961,2020-06-30,17969.189515420894,284,Urgent,2020-07-30,Inconclusive,3961,250,0,29,,,,DISCHARGED -3961,2018-11-14,29891.60304369176,133,Emergency,2018-12-01,Abnormal,7785,218,2,7,,,,DISCHARGED -3962,2020-07-21,5413.134696851237,102,Emergency,2020-08-03,Inconclusive,3962,406,3,23,,,,DISCHARGED -3962,2020-02-21,19911.42557495919,328,Emergency,2020-02-23,Inconclusive,9611,442,2,18,,,,DISCHARGED -3963,2021-01-04,30201.931133778864,333,Urgent,2021-01-14,Abnormal,3963,90,1,2,,,,DISCHARGED -3964,2021-09-09,23928.441096353883,314,Elective,2021-09-25,Inconclusive,3964,353,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -3965,2022-05-10,18051.707230751606,370,Urgent,2022-05-17,Inconclusive,3965,375,2,14,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3966,2020-04-12,32554.534309900697,170,Emergency,2020-04-25,Inconclusive,3966,45,2,3,,,,DISCHARGED -3967,2021-09-15,29105.91528606373,141,Emergency,2021-10-01,Normal,3967,37,4,5,,,,DISCHARGED -3968,2022-10-20,47263.46953850678,111,Emergency,2022-11-10,Inconclusive,3968,141,0,24,,,,DISCHARGED -3969,2021-01-09,7512.029457322245,331,Emergency,2021-01-15,Abnormal,3969,99,4,9,,,,DISCHARGED -3970,2020-09-05,7771.840103114891,135,Emergency,2020-09-06,Abnormal,3970,327,3,17,,,,DISCHARGED -3971,2019-12-16,18140.723328276483,417,Elective,2019-12-26,Abnormal,3971,189,4,15,,,,DISCHARGED -3972,2022-10-04,21694.207782507357,139,Elective,2022-10-12,Abnormal,3972,34,0,17,,,,DISCHARGED -3973,2023-01-01,20753.005717656008,189,Urgent,2023-01-25,Abnormal,3973,146,4,5,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -3974,2023-09-20,41130.34042727387,212,Urgent,,Inconclusive,3974,29,2,18,,,,OPEN -3975,2023-08-18,48860.7183867527,472,Emergency,,Normal,3975,333,1,16,,,,OPEN -3976,2020-11-19,18608.673624256196,488,Elective,2020-12-02,Normal,3976,83,2,17,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3976,2019-05-17,30381.033311219573,300,Elective,2019-05-30,Abnormal,8305,368,1,29,,,,DISCHARGED -3977,2020-01-30,40964.695314443285,316,Elective,2020-02-04,Inconclusive,3977,280,4,12,,,,DISCHARGED -3978,2020-12-17,6556.955215421849,154,Urgent,2021-01-15,Abnormal,3978,423,3,6,,,,DISCHARGED -3979,2020-04-19,7636.3299607928675,443,Emergency,2020-04-23,Normal,3979,343,4,19,,,,DISCHARGED -3980,2021-06-16,14947.12417803082,155,Urgent,2021-06-18,Normal,3980,269,0,11,,,,DISCHARGED -3981,2019-01-19,18042.64116237524,293,Elective,2019-02-08,Abnormal,3981,153,4,1,,,,DISCHARGED -3982,2020-10-04,48299.50046438851,388,Urgent,2020-10-13,Normal,3982,101,1,26,,,,DISCHARGED -3983,2021-03-10,47254.47584945281,310,Elective,2021-03-15,Abnormal,3983,214,2,11,,,,DISCHARGED -3984,2020-03-31,5017.569822536991,351,Urgent,2020-04-16,Abnormal,3984,149,3,11,,,,DISCHARGED -3984,2020-08-21,34963.99295073078,162,Emergency,2020-08-31,Normal,4800,431,4,23,,,,DISCHARGED -3985,2022-06-10,17433.181940432543,467,Elective,2022-06-20,Abnormal,3985,82,4,3,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -3986,2022-05-17,34511.355377776534,176,Elective,2022-05-20,Normal,3986,109,2,3,,,,DISCHARGED -3987,2020-04-04,8200.83480217131,184,Emergency,2020-04-18,Abnormal,3987,434,3,17,,,,DISCHARGED -3988,2021-06-05,19924.38066917568,495,Elective,2021-06-16,Abnormal,3988,386,4,15,,,,DISCHARGED -3989,2021-03-01,49812.58754352534,297,Urgent,2021-03-06,Normal,3989,425,4,13,,,,DISCHARGED -3990,2019-06-16,23444.59945535656,119,Urgent,2019-06-24,Inconclusive,3990,274,1,16,,,,DISCHARGED -3991,2020-04-19,12067.769777771766,271,Elective,2020-05-05,Abnormal,3991,200,1,16,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3992,2020-12-18,44827.12636240335,437,Urgent,2021-01-04,Normal,3992,283,0,2,,,,DISCHARGED -3993,2020-02-17,39754.20605040342,499,Emergency,2020-03-13,Abnormal,3993,467,2,5,,,,DISCHARGED -3994,2020-01-09,14520.267900345236,137,Elective,2020-02-02,Inconclusive,3994,172,3,22,,,,DISCHARGED -3995,2019-02-20,22144.314826164707,354,Elective,2019-02-25,Abnormal,3995,326,4,12,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3996,2022-12-07,21146.308661946216,484,Elective,2022-12-11,Abnormal,3996,205,4,8,,,,DISCHARGED -3998,2021-10-25,32112.73918241049,465,Urgent,2021-11-17,Normal,3998,62,0,20,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3999,2022-10-28,9609.214124199108,296,Emergency,2022-11-16,Abnormal,3999,72,4,8,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4000,2023-01-09,12652.310545058128,147,Elective,,Normal,4000,250,2,7,,,,OPEN -4001,2022-11-28,19411.487289512515,428,Urgent,2022-12-25,Abnormal,4001,123,0,16,,,,DISCHARGED -4002,2022-05-15,33825.35307615227,110,Elective,2022-06-01,Abnormal,4002,374,2,15,,,,DISCHARGED -4003,2023-08-02,35068.646606772454,145,Elective,2023-08-23,Abnormal,4003,120,0,15,,,,DISCHARGED -4004,2021-02-14,21291.259735417338,170,Elective,2021-03-13,Abnormal,4004,274,4,26,,,,DISCHARGED -4005,2020-05-23,49900.08351099672,381,Elective,2020-05-24,Inconclusive,4005,430,0,27,,,,DISCHARGED -4006,2020-12-28,8357.522966165114,382,Emergency,2021-01-10,Abnormal,4006,499,1,18,,,,DISCHARGED -4007,2019-03-15,40074.146366518806,253,Emergency,2019-04-07,Normal,4007,397,3,23,,,,DISCHARGED -4008,2023-09-15,10614.992438402242,253,Urgent,2023-09-28,Abnormal,4008,119,4,15,,,,DISCHARGED -4009,2022-02-05,33360.97569754692,416,Urgent,2022-03-06,Normal,4009,421,3,24,,,,DISCHARGED -4010,2019-05-03,15576.106585887708,316,Elective,2019-05-18,Abnormal,4010,436,4,13,,,,DISCHARGED -4012,2020-02-29,41337.62843125778,244,Elective,2020-03-03,Normal,4012,316,3,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4013,2021-07-13,20246.20232371428,335,Emergency,2021-07-18,Abnormal,4013,163,1,13,,,,DISCHARGED -4014,2021-06-14,36197.38262596049,199,Urgent,2021-07-04,Normal,4014,423,3,13,,,,DISCHARGED -4015,2020-03-31,46376.842085179895,135,Elective,2020-04-23,Abnormal,4015,464,0,13,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4016,2019-03-27,44143.93245166343,462,Elective,2019-04-25,Abnormal,4016,285,3,11,,,,DISCHARGED -4017,2020-02-11,29842.205512743705,198,Elective,2020-02-12,Abnormal,4017,264,4,5,,,,DISCHARGED -4018,2020-12-12,48566.61033860887,351,Elective,2021-01-07,Normal,4018,319,2,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4019,2021-11-05,47286.30961643738,242,Emergency,2021-12-04,Abnormal,4019,160,3,12,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -4020,2019-03-31,10918.82339082959,252,Urgent,2019-04-07,Normal,4020,375,3,15,,,,DISCHARGED -4021,2021-10-08,38278.33553192345,102,Elective,2021-10-21,Normal,4021,307,3,8,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -4022,2021-05-24,30986.08126798341,125,Elective,2021-05-29,Abnormal,4022,88,4,1,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4023,2019-02-23,16279.178560670272,446,Urgent,2019-02-24,Normal,4023,141,3,21,,,,DISCHARGED -4024,2019-07-12,12262.22205058744,363,Emergency,2019-07-20,Normal,4024,202,4,26,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4025,2022-05-24,31059.223068350944,158,Elective,2022-06-01,Inconclusive,4025,308,4,28,,,,DISCHARGED -4026,2020-06-28,37309.69758057914,494,Elective,2020-07-08,Abnormal,4026,226,2,2,,,,DISCHARGED -4027,2020-11-22,28915.93576194849,230,Emergency,2020-11-26,Abnormal,4027,488,0,9,,,,DISCHARGED -4028,2019-10-15,8904.32972556465,436,Emergency,2019-11-02,Normal,4028,442,4,19,,,,DISCHARGED -4029,2019-11-02,40430.05128268872,227,Elective,2019-11-05,Normal,4029,333,1,1,,,,DISCHARGED -4030,2022-06-25,39810.83693746627,200,Urgent,2022-07-16,Inconclusive,4030,221,3,26,,,,DISCHARGED -4031,2021-02-05,14995.154060260846,151,Urgent,2021-02-21,Normal,4031,40,1,23,,,,DISCHARGED -4032,2020-06-27,32380.07272129643,228,Urgent,2020-07-12,Normal,4032,195,3,9,,,,DISCHARGED -4033,2023-06-23,13576.802988935126,450,Elective,2023-06-28,Inconclusive,4033,67,2,7,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -4034,2021-06-19,10029.231901138082,340,Emergency,2021-07-13,Abnormal,4034,475,4,16,,,,DISCHARGED -4035,2021-08-04,47621.64433017772,213,Emergency,2021-08-18,Normal,4035,263,0,25,,,,DISCHARGED -4036,2021-01-06,2300.5260238295764,115,Emergency,2021-01-21,Inconclusive,4036,1,4,21,,,,DISCHARGED -4037,2019-12-25,46470.42030442321,386,Urgent,2019-12-26,Abnormal,4037,360,3,0,,,,DISCHARGED -4038,2020-03-05,16686.80059995276,379,Elective,2020-03-06,Inconclusive,4038,124,0,5,,,,DISCHARGED -4039,2019-05-24,4205.945833565284,417,Emergency,2019-06-13,Normal,4039,109,4,6,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -4040,2020-03-11,47665.212945095096,119,Elective,2020-04-02,Inconclusive,4040,85,0,14,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4041,2021-11-21,20385.93961071164,228,Elective,2021-12-19,Normal,4041,424,3,17,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4042,2023-10-09,19397.09973625408,175,Elective,,Normal,4042,119,2,8,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -4043,2023-08-05,8002.138123438562,285,Emergency,2023-08-25,Normal,4043,126,2,7,,,,DISCHARGED -4043,2023-10-25,28540.132776710318,156,Emergency,2023-11-23,Normal,9248,254,4,24,,,,DISCHARGED -4044,2019-03-11,23316.601149183854,147,Elective,2019-03-19,Abnormal,4044,182,1,9,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4045,2023-07-23,14719.36836320746,309,Elective,2023-08-10,Abnormal,4045,15,3,28,,,,DISCHARGED -4046,2021-06-08,17739.127786418325,190,Urgent,2021-07-04,Normal,4046,476,4,3,,,,DISCHARGED -4047,2020-05-07,9077.402085137284,478,Urgent,2020-05-08,Normal,4047,61,4,19,,,,DISCHARGED -4047,2021-06-24,20712.705756785224,408,Elective,2021-06-29,Abnormal,4288,368,2,27,,,,DISCHARGED -4047,2019-06-14,23365.268348783364,247,Elective,2019-07-12,Abnormal,5222,431,0,7,,,,DISCHARGED -4048,2021-03-19,37566.39943995905,182,Elective,2021-04-10,Inconclusive,4048,157,3,0,,,,DISCHARGED -4049,2022-03-01,17200.96966789083,476,Emergency,2022-03-11,Abnormal,4049,267,0,7,,,,DISCHARGED -4050,2021-08-31,11638.74678141634,255,Elective,2021-09-30,Inconclusive,4050,34,3,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -4051,2021-03-11,6479.735809319888,437,Urgent,2021-03-23,Inconclusive,4051,266,1,11,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4052,2019-12-27,27862.38920578344,383,Elective,2019-12-28,Normal,4052,63,2,22,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4053,2021-05-01,24378.80672034411,457,Urgent,2021-05-21,Abnormal,4053,493,1,24,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -4054,2023-08-07,49558.22013617202,428,Emergency,,Inconclusive,4054,49,4,14,,,,OPEN -4055,2019-04-18,12557.286967519134,280,Elective,2019-04-30,Normal,4055,468,2,12,,,,DISCHARGED -4056,2019-05-02,33441.48765104907,137,Urgent,2019-05-31,Normal,4056,254,4,15,,,,DISCHARGED -4057,2018-12-18,39737.89778415201,104,Urgent,2019-01-03,Abnormal,4057,148,1,25,,,,DISCHARGED -4058,2023-04-24,14228.5820984642,119,Elective,2023-04-29,Normal,4058,324,3,22,,,,DISCHARGED -4059,2020-05-11,18139.456499238557,339,Emergency,2020-05-29,Abnormal,4059,303,4,17,,,,DISCHARGED -4060,2021-12-21,24983.96382578792,292,Emergency,2022-01-11,Abnormal,4060,275,0,0,,,,DISCHARGED -4060,2019-11-06,30701.586578725437,333,Emergency,2019-11-20,Abnormal,4456,356,3,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4061,2020-03-01,33433.44272903414,240,Elective,2020-03-17,Inconclusive,4061,450,3,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4063,2022-07-26,42488.15302488745,170,Urgent,2022-08-08,Normal,4063,171,1,22,,,,DISCHARGED -4064,2019-07-17,19133.17951146756,116,Emergency,2019-07-21,Normal,4064,416,1,4,,,,DISCHARGED -4065,2020-08-26,48443.03345050882,147,Urgent,2020-08-29,Normal,4065,200,2,19,,,,DISCHARGED -4066,2019-09-21,36154.46007041329,124,Emergency,2019-09-28,Inconclusive,4066,444,2,20,,,,DISCHARGED -4067,2021-04-16,36723.890483774754,368,Elective,2021-05-16,Normal,4067,392,0,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4068,2022-06-08,32863.89504872498,354,Elective,2022-06-29,Abnormal,4068,323,3,25,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -4069,2023-09-11,28695.033474055363,459,Emergency,,Normal,4069,34,0,5,,,,OPEN -4070,2022-05-12,15146.13753998245,466,Emergency,2022-05-24,Inconclusive,4070,464,0,11,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -4071,2022-05-17,45894.05972194325,106,Urgent,2022-06-01,Normal,4071,481,1,9,,,,DISCHARGED -4072,2018-11-22,23456.59186796261,442,Elective,2018-12-04,Inconclusive,4072,215,0,21,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4073,2020-05-07,44371.59879829837,468,Emergency,2020-06-02,Inconclusive,4073,479,0,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4074,2020-07-18,22463.355656768304,327,Urgent,2020-08-09,Inconclusive,4074,64,4,1,,,,DISCHARGED -4075,2020-03-19,10962.949478521576,435,Urgent,2020-03-27,Inconclusive,4075,7,2,18,,,,DISCHARGED -4076,2019-12-11,39580.196471736,144,Emergency,2019-12-24,Inconclusive,4076,300,2,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4077,2022-12-23,7007.829557357024,454,Elective,2023-01-01,Normal,4077,342,3,5,,,,DISCHARGED -4078,2023-02-16,9855.46439707228,196,Urgent,2023-02-27,Normal,4078,430,2,27,,,,DISCHARGED -4079,2019-09-11,21906.41697547982,134,Emergency,2019-09-16,Abnormal,4079,423,3,27,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4080,2019-05-15,20062.542398273865,152,Urgent,2019-05-18,Abnormal,4080,331,4,26,,,,DISCHARGED -4081,2023-04-12,10827.92831263798,404,Emergency,,Normal,4081,437,2,12,,,,OPEN -4082,2020-10-15,42304.02618149485,273,Emergency,2020-10-16,Inconclusive,4082,75,4,8,,,,DISCHARGED -4083,2019-06-27,12747.70699129026,239,Elective,2019-07-04,Abnormal,4083,173,2,11,,,,DISCHARGED -4084,2021-07-13,6426.727048325362,137,Urgent,2021-07-31,Normal,4084,46,2,17,,,,DISCHARGED -4085,2023-04-18,34388.5865262107,295,Emergency,,Normal,4085,14,4,7,,,,OPEN -4086,2020-04-13,18527.51955670068,487,Urgent,2020-04-14,Abnormal,4086,360,0,24,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4087,2019-12-25,29415.57396556698,298,Elective,2020-01-05,Normal,4087,146,0,17,,,,DISCHARGED -4088,2022-06-05,22825.3529388502,486,Urgent,2022-06-19,Normal,4088,25,0,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4089,2020-11-01,37128.811796391245,334,Elective,2020-11-17,Normal,4089,307,0,22,,,,DISCHARGED -4091,2022-02-08,26910.252701682504,380,Emergency,2022-02-22,Abnormal,4091,92,2,24,,,,DISCHARGED -4092,2019-12-28,34031.516229777975,123,Urgent,2020-01-06,Inconclusive,4092,405,1,21,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4093,2020-06-11,49637.53010510683,359,Elective,2020-06-13,Inconclusive,4093,231,4,1,,,,DISCHARGED -4094,2020-08-10,38145.1571943148,193,Urgent,2020-08-26,Abnormal,4094,20,1,7,,,,DISCHARGED -4095,2019-01-27,37630.01096501882,348,Emergency,2019-02-13,Abnormal,4095,306,1,9,,,,DISCHARGED -4096,2019-12-15,15250.360627030066,347,Elective,2020-01-03,Inconclusive,4096,37,3,8,,,,DISCHARGED -4096,2020-05-06,18994.00515974204,454,Urgent,2020-05-24,Normal,5015,275,0,27,,,,DISCHARGED -4096,2019-01-16,40822.80022225712,168,Elective,2019-01-20,Normal,7224,156,2,23,,,,DISCHARGED -4096,2022-10-08,11752.769050731538,381,Emergency,2022-11-04,Normal,7642,178,0,17,,,,DISCHARGED -4096,2019-11-06,36453.74324006667,140,Elective,2019-11-23,Normal,9174,131,0,7,,,,DISCHARGED -4096,2021-10-23,36394.58271488938,369,Urgent,2021-11-06,Abnormal,9421,310,1,18,,,,DISCHARGED -4097,2021-07-28,39041.34527018336,181,Elective,2021-08-05,Normal,4097,454,3,2,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4098,2021-11-28,2838.7381404898906,194,Emergency,2021-12-24,Inconclusive,4098,347,0,8,,,,DISCHARGED -4100,2019-07-21,11230.782947959842,240,Urgent,2019-08-20,Abnormal,4100,27,4,12,,,,DISCHARGED -4101,2022-10-06,28880.89852983083,224,Urgent,2022-10-19,Inconclusive,4101,259,4,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -4103,2020-07-23,13018.565183607856,332,Elective,2020-07-29,Normal,4103,405,0,24,,,,DISCHARGED -4104,2019-07-01,39601.683662314295,291,Urgent,2019-07-20,Normal,4104,75,1,19,,,,DISCHARGED -4105,2019-04-12,31913.265604153305,353,Urgent,2019-05-03,Abnormal,4105,428,1,11,,,,DISCHARGED -4106,2020-11-07,25200.47533747384,395,Emergency,2020-11-26,Inconclusive,4106,66,2,29,,,,DISCHARGED -4106,2021-02-11,42610.13407567181,128,Emergency,2021-02-27,Inconclusive,6640,341,3,22,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -4107,2023-09-07,46028.22671121138,153,Elective,2023-09-21,Inconclusive,4107,491,1,12,,,,DISCHARGED -4108,2021-05-29,3852.7388595096168,490,Urgent,2021-06-14,Abnormal,4108,193,2,7,,,,DISCHARGED -4109,2021-09-03,28102.63109552809,146,Urgent,2021-09-21,Abnormal,4109,471,4,14,,,,DISCHARGED -4111,2021-04-10,17019.112718489836,475,Emergency,2021-05-08,Inconclusive,4111,161,4,28,,,,DISCHARGED -4112,2023-07-19,10240.036551625411,288,Emergency,2023-08-04,Inconclusive,4112,346,4,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4113,2019-05-22,47374.6213192287,347,Elective,2019-06-09,Inconclusive,4113,438,0,20,,,,DISCHARGED -4114,2021-09-25,20829.347631650067,426,Elective,2021-10-01,Abnormal,4114,360,3,12,,,,DISCHARGED -4115,2020-02-23,17600.75197620571,194,Emergency,2020-03-07,Abnormal,4115,256,2,16,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -4116,2022-11-09,33887.57196309414,173,Elective,2022-11-11,Inconclusive,4116,71,3,14,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4117,2020-11-09,45298.7887266391,163,Elective,2020-11-11,Normal,4117,86,0,24,,,,DISCHARGED -4118,2020-01-18,22877.89039151832,331,Elective,2020-02-10,Abnormal,4118,421,2,21,,,,DISCHARGED -4119,2019-11-30,49541.26218720334,320,Emergency,2019-12-19,Normal,4119,261,2,18,,,,DISCHARGED -4120,2021-09-04,2606.946706386134,487,Emergency,2021-09-18,Normal,4120,213,1,2,,,,DISCHARGED -4121,2020-04-30,37474.1198542464,196,Urgent,2020-05-09,Normal,4121,152,3,13,,,,DISCHARGED -4122,2022-09-10,33819.5964827501,103,Emergency,2022-09-20,Normal,4122,209,3,29,,,,DISCHARGED -4123,2020-03-24,6020.961656975189,196,Urgent,2020-04-16,Abnormal,4123,400,1,9,,,,DISCHARGED -4124,2019-12-05,27975.521783425225,473,Emergency,2019-12-10,Normal,4124,60,4,16,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4125,2021-04-25,27417.46363334177,500,Emergency,2021-05-11,Normal,4125,267,0,28,,,,DISCHARGED -4126,2022-02-09,28291.41257908482,356,Urgent,2022-02-23,Abnormal,4126,261,3,7,,,,DISCHARGED -4127,2019-07-25,10726.848194099884,173,Elective,2019-08-02,Normal,4127,217,1,17,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -4128,2023-04-05,9047.33170807136,157,Elective,2023-04-22,Inconclusive,4128,282,2,11,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4129,2020-11-29,7773.859400105024,229,Urgent,2020-12-04,Normal,4129,135,1,16,,,,DISCHARGED -4130,2023-05-17,11423.648805123405,451,Emergency,2023-06-03,Inconclusive,4130,466,4,22,,,,DISCHARGED -4131,2020-12-18,19715.406694945024,311,Emergency,2021-01-15,Normal,4131,379,0,29,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -4132,2020-04-14,42817.98659283683,495,Emergency,2020-04-29,Inconclusive,4132,361,4,10,,,,DISCHARGED -4133,2023-05-30,2709.9609103645807,484,Urgent,,Normal,4133,448,2,8,,,,OPEN -4134,2023-07-03,25694.665941571697,479,Elective,2023-07-06,Abnormal,4134,440,2,21,,,,DISCHARGED -4135,2020-08-01,3409.95773502086,481,Elective,2020-08-02,Inconclusive,4135,92,2,23,,,,DISCHARGED -4136,2022-05-11,34498.23081364619,490,Emergency,2022-06-04,Abnormal,4136,108,2,23,,,,DISCHARGED -4137,2019-05-06,20840.734472914643,322,Emergency,2019-05-26,Inconclusive,4137,240,1,24,,,,DISCHARGED -4138,2023-08-09,11054.174225788036,192,Elective,2023-09-07,Normal,4138,354,2,22,,,,DISCHARGED -4139,2020-06-22,20459.422587502395,434,Emergency,2020-07-11,Normal,4139,423,2,24,,,,DISCHARGED -4140,2021-05-22,42666.33676754862,382,Urgent,2021-06-18,Normal,4140,141,1,14,,,,DISCHARGED -4140,2020-03-24,13891.21952687642,413,Urgent,2020-03-30,Abnormal,8178,290,2,8,,,,DISCHARGED -4141,2020-04-23,12688.552560151287,347,Urgent,2020-05-07,Abnormal,4141,431,4,11,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -4142,2020-02-24,5467.289870399782,307,Urgent,2020-03-19,Abnormal,4142,236,4,10,,,,DISCHARGED -4143,2020-01-17,9696.363757831856,340,Urgent,2020-01-26,Abnormal,4143,339,3,16,,,,DISCHARGED -4144,2020-11-06,6927.757695783708,144,Urgent,2020-11-11,Abnormal,4144,311,4,5,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4145,2020-02-07,24507.184570606343,207,Emergency,2020-02-23,Normal,4145,176,0,27,,,,DISCHARGED -4146,2019-11-27,11110.92373649657,269,Emergency,2019-12-24,Normal,4146,140,0,7,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4147,2023-10-12,16014.08438886543,335,Urgent,,Abnormal,4147,188,0,9,,,,OPEN -4148,2023-09-08,19854.614302207403,403,Urgent,,Normal,4148,485,1,24,,,,OPEN -4149,2021-04-19,32513.21250441573,227,Emergency,2021-05-08,Inconclusive,4149,48,4,14,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4150,2023-02-15,12412.328263418,218,Elective,,Normal,4150,301,0,3,,,,OPEN -4152,2023-03-22,13284.131104189444,495,Urgent,2023-04-03,Abnormal,4152,368,3,28,,,,DISCHARGED -4153,2022-09-29,26326.22675426569,292,Elective,2022-10-12,Normal,4153,189,1,17,,,,DISCHARGED -4154,2021-02-13,38815.74753016842,335,Urgent,2021-02-19,Abnormal,4154,135,3,10,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4155,2022-11-11,13435.46733692268,164,Elective,2022-11-30,Abnormal,4155,42,4,8,,,,DISCHARGED -4156,2023-01-05,5408.813173132597,211,Emergency,2023-01-15,Normal,4156,403,2,8,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -4157,2021-08-30,24248.120835209123,183,Emergency,2021-09-13,Normal,4157,379,3,27,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -4158,2019-02-15,10741.948269625194,111,Elective,2019-03-10,Normal,4158,352,2,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4159,2019-09-06,48267.54113058011,159,Elective,2019-09-16,Abnormal,4159,89,1,2,,,,DISCHARGED -4160,2023-08-14,11408.92504805721,462,Elective,2023-08-15,Normal,4160,294,3,20,,,,DISCHARGED -4161,2020-05-13,8518.438727599812,125,Urgent,2020-05-23,Inconclusive,4161,340,3,17,,,,DISCHARGED -4163,2022-11-02,25341.57320306952,422,Elective,2022-11-26,Normal,4163,244,1,13,,,,DISCHARGED -4164,2023-06-10,8033.232106130741,478,Emergency,2023-06-12,Inconclusive,4164,432,1,2,,,,DISCHARGED -4165,2023-04-09,17082.08452190309,433,Elective,2023-05-09,Inconclusive,4165,191,0,16,,,,DISCHARGED -4166,2023-07-23,13893.03688162979,209,Emergency,2023-07-25,Inconclusive,4166,317,4,3,,,,DISCHARGED -4167,2021-01-20,41435.46186095396,338,Emergency,2021-02-16,Normal,4167,105,3,20,,,,DISCHARGED -4168,2020-03-11,1889.902251341207,201,Elective,2020-03-27,Inconclusive,4168,362,3,27,,,,DISCHARGED -4169,2020-11-11,16503.40778622603,481,Elective,2020-11-26,Abnormal,4169,309,1,17,,,,DISCHARGED -4170,2020-04-24,11934.967575832885,485,Emergency,2020-05-23,Abnormal,4170,381,1,14,,,,DISCHARGED -4170,2019-11-13,8641.322454204947,208,Elective,2019-11-25,Normal,6547,232,4,18,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -4171,2019-02-17,19736.44593693479,453,Urgent,2019-03-07,Abnormal,4171,264,1,27,,,,DISCHARGED -4172,2023-04-15,6043.624369368916,353,Emergency,,Normal,4172,343,2,21,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",OPEN -4173,2023-06-16,39194.574296567545,230,Emergency,2023-07-09,Inconclusive,4173,36,2,5,,,,DISCHARGED -4174,2020-09-26,7774.660716325249,443,Elective,2020-10-10,Abnormal,4174,304,2,14,,,,DISCHARGED -4175,2021-07-28,43891.04796805266,327,Elective,2021-08-05,Normal,4175,40,2,6,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4176,2020-11-25,38394.49310078789,173,Emergency,2020-12-04,Abnormal,4176,16,4,11,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4178,2021-12-08,20925.31398262782,241,Urgent,2021-12-23,Normal,4178,343,3,15,,,,DISCHARGED -4179,2020-03-14,33725.423848761,245,Emergency,2020-04-06,Normal,4179,276,2,8,,,,DISCHARGED -4180,2023-10-06,18907.536139235868,431,Urgent,2023-10-20,Normal,4180,306,1,19,,,,DISCHARGED -4181,2022-03-01,2116.3988482035093,184,Urgent,2022-03-29,Inconclusive,4181,58,2,4,,,,DISCHARGED -4182,2019-04-22,18113.33214667707,430,Urgent,2019-05-22,Normal,4182,422,4,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4183,2023-02-13,45214.53837734277,217,Elective,2023-02-22,Normal,4183,182,1,1,,,,DISCHARGED -4184,2019-10-14,42907.15413187941,456,Urgent,2019-10-28,Normal,4184,40,2,21,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4185,2023-09-13,13061.333957705656,214,Urgent,2023-09-15,Inconclusive,4185,38,3,15,,,,DISCHARGED -4186,2020-12-26,3015.216939353546,210,Urgent,2021-01-21,Abnormal,4186,396,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4187,2019-09-01,23921.01034024139,169,Emergency,2019-10-01,Inconclusive,4187,191,1,4,,,,DISCHARGED -4188,2019-01-13,30414.60712677158,455,Emergency,2019-01-19,Normal,4188,266,3,6,,,,DISCHARGED -4189,2020-01-23,39602.84827514187,109,Urgent,2020-01-24,Normal,4189,493,1,5,,,,DISCHARGED -4191,2022-12-15,32598.82400481638,354,Elective,2023-01-03,Abnormal,4191,146,2,23,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4192,2019-08-29,30156.348034764087,227,Emergency,2019-09-21,Inconclusive,4192,394,1,21,,,,DISCHARGED -4193,2021-01-07,23854.14631105632,429,Urgent,2021-02-01,Inconclusive,4193,332,2,9,,,,DISCHARGED -4194,2021-08-28,38625.77818906482,140,Urgent,2021-09-06,Abnormal,4194,126,3,13,,,,DISCHARGED -4195,2019-10-02,1764.863462629149,454,Emergency,2019-10-05,Abnormal,4195,45,0,7,,,,DISCHARGED -4196,2023-09-11,31067.7180990336,348,Elective,2023-09-28,Normal,4196,44,3,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4197,2021-02-03,33218.58771433514,449,Elective,2021-02-08,Normal,4197,0,2,13,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4197,2020-06-27,29417.398705733616,213,Urgent,2020-06-30,Normal,5722,167,4,13,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4198,2020-03-12,17827.595602552363,139,Emergency,2020-03-30,Abnormal,4198,107,3,19,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -4199,2021-11-25,9561.515191899114,163,Emergency,2021-12-09,Abnormal,4199,18,4,27,,,,DISCHARGED -4200,2020-04-01,6671.005508948585,152,Elective,2020-04-13,Normal,4200,331,4,22,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -4201,2021-01-08,24049.0574839086,325,Elective,2021-01-20,Inconclusive,4201,71,2,2,,,,DISCHARGED -4202,2021-02-04,48662.23534288198,461,Elective,2021-03-01,Inconclusive,4202,455,2,0,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4203,2020-06-16,12129.44563679042,223,Elective,2020-07-08,Inconclusive,4203,444,0,28,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4204,2022-02-03,45369.87620295928,444,Elective,2022-02-11,Abnormal,4204,108,1,8,,,,DISCHARGED -4205,2023-05-07,40623.16375343149,332,Elective,2023-05-09,Inconclusive,4205,267,3,8,,,,DISCHARGED -4206,2021-12-05,3324.1593975395585,482,Elective,2021-12-30,Inconclusive,4206,444,2,21,,,,DISCHARGED -4207,2023-10-08,36093.007916267954,498,Elective,2023-11-05,Inconclusive,4207,239,3,1,,,,DISCHARGED -4208,2023-09-12,29891.026074010013,314,Urgent,2023-09-17,Abnormal,4208,416,4,15,,,,DISCHARGED -4209,2019-12-25,10188.956545312967,282,Emergency,2020-01-14,Inconclusive,4209,300,1,7,,,,DISCHARGED -4210,2023-09-03,14061.754453888338,312,Urgent,2023-09-14,Inconclusive,4210,89,0,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4211,2022-04-01,13812.252706354642,245,Elective,2022-04-04,Inconclusive,4211,102,3,5,,,,DISCHARGED -4212,2020-09-02,39957.56215054793,476,Urgent,2020-09-10,Abnormal,4212,475,1,22,,,,DISCHARGED -4213,2021-12-22,4337.045304985074,235,Emergency,2022-01-19,Abnormal,4213,249,0,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4214,2018-11-06,7848.908820179961,248,Elective,2018-11-20,Abnormal,4214,452,3,0,,,,DISCHARGED -4215,2019-05-15,17633.66545757288,366,Elective,2019-05-16,Inconclusive,4215,7,1,18,,,,DISCHARGED -4216,2023-04-22,16283.563895438963,493,Elective,2023-05-12,Inconclusive,4216,152,2,14,,,,DISCHARGED -4217,2023-03-09,40376.16831506106,126,Emergency,2023-03-16,Normal,4217,346,3,0,,,,DISCHARGED -4219,2020-08-23,27453.98398460514,381,Urgent,2020-09-18,Abnormal,4219,173,1,9,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4220,2021-02-27,48849.72530535368,258,Elective,2021-03-06,Normal,4220,342,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4221,2023-08-29,38012.36490229927,396,Elective,2023-09-23,Inconclusive,4221,157,1,27,,,,DISCHARGED -4222,2021-11-22,28482.813658792653,255,Urgent,2021-12-18,Normal,4222,492,2,11,,,,DISCHARGED -4223,2022-11-29,3085.5512769146485,432,Urgent,2022-12-25,Abnormal,4223,430,3,10,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4224,2018-12-26,16006.593417939845,264,Elective,2019-01-02,Inconclusive,4224,214,3,28,,,,DISCHARGED -4225,2020-10-24,48111.15565368656,409,Emergency,2020-10-26,Inconclusive,4225,176,3,16,,,,DISCHARGED -4226,2019-06-26,22277.94392314609,223,Elective,2019-07-11,Abnormal,4226,174,2,3,,,,DISCHARGED -4227,2019-01-28,20368.021744003658,478,Emergency,2019-02-23,Inconclusive,4227,339,0,28,,,,DISCHARGED -4228,2021-08-02,20535.716775870736,369,Emergency,2021-08-19,Normal,4228,337,3,22,,,,DISCHARGED -4229,2020-03-07,1429.3033157779878,348,Elective,2020-03-10,Abnormal,4229,145,0,6,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4230,2019-02-05,16495.703175412338,272,Elective,2019-02-19,Normal,4230,449,1,11,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4231,2018-11-13,17283.05696012245,349,Urgent,2018-11-16,Inconclusive,4231,323,0,12,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4232,2022-02-21,7938.83847891943,345,Emergency,2022-03-15,Abnormal,4232,477,0,4,,,,DISCHARGED -4233,2022-08-11,46805.39220178419,253,Emergency,2022-09-01,Inconclusive,4233,160,3,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4234,2020-02-07,33338.424280797895,293,Elective,2020-03-04,Abnormal,4234,126,4,5,,,,DISCHARGED -4234,2021-04-29,36424.72235649513,370,Emergency,2021-05-28,Normal,7864,419,4,1,,,,DISCHARGED -4236,2019-08-05,12869.063402261929,225,Emergency,2019-08-09,Inconclusive,4236,81,2,20,,,,DISCHARGED -4237,2019-10-07,28142.69064301834,168,Elective,2019-11-01,Inconclusive,4237,484,2,6,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4238,2023-01-21,17005.199605852467,126,Urgent,,Abnormal,4238,146,4,13,,,,OPEN -4239,2019-03-02,6249.442146504827,126,Urgent,2019-03-15,Abnormal,4239,238,1,24,,,,DISCHARGED -4239,2019-12-07,21265.605131959997,490,Elective,2019-12-09,Inconclusive,5657,411,3,21,,,,DISCHARGED -4241,2021-01-28,11607.140164525068,333,Elective,2021-02-05,Inconclusive,4241,423,3,27,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4242,2023-02-25,28720.3545377116,233,Urgent,,Abnormal,4242,83,1,13,,,,OPEN -4243,2020-05-15,49655.9317155011,305,Urgent,2020-06-04,Abnormal,4243,112,1,9,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4244,2019-01-20,44569.38342637937,469,Emergency,2019-01-23,Normal,4244,224,4,3,,,,DISCHARGED -4245,2020-03-18,45966.53531391583,354,Elective,2020-03-22,Inconclusive,4245,331,2,2,,,,DISCHARGED -4245,2023-02-21,14786.153449769276,405,Elective,2023-03-22,Abnormal,5303,377,1,24,,,,DISCHARGED -4246,2023-08-13,35351.77628597784,161,Emergency,,Inconclusive,4246,242,2,22,,,,OPEN -4247,2020-12-11,16460.812363312594,426,Elective,2020-12-24,Inconclusive,4247,142,0,26,,,,DISCHARGED -4248,2021-09-29,7589.864460170565,385,Urgent,2021-10-13,Inconclusive,4248,40,3,13,,,,DISCHARGED -4249,2022-02-16,44294.30015962839,172,Emergency,2022-02-27,Abnormal,4249,422,4,28,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4250,2019-08-27,39377.32723358132,209,Elective,2019-09-11,Abnormal,4250,257,3,5,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4251,2022-11-17,36286.17521435992,111,Urgent,2022-12-15,Inconclusive,4251,446,4,22,,,,DISCHARGED -4252,2022-02-23,49295.455401304025,334,Elective,2022-03-13,Normal,4252,284,0,14,,,,DISCHARGED -4253,2021-03-01,7558.735303959764,333,Urgent,2021-03-02,Normal,4253,104,3,7,,,,DISCHARGED -4254,2023-10-25,44338.57425382923,406,Elective,2023-10-28,Abnormal,4254,201,0,4,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4255,2021-04-06,36199.54049238472,261,Emergency,2021-04-24,Normal,4255,449,4,2,,,,DISCHARGED -4256,2020-07-24,49102.979010545336,329,Urgent,2020-08-21,Abnormal,4256,306,1,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -4257,2020-08-12,19649.11069750562,444,Elective,2020-08-15,Abnormal,4257,330,3,12,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4258,2023-07-11,29017.347818936272,371,Elective,2023-07-27,Inconclusive,4258,460,0,1,,,,DISCHARGED -4259,2022-10-17,27669.868084675,313,Urgent,2022-11-06,Normal,4259,265,3,23,,,,DISCHARGED -4260,2023-01-08,4396.562975337329,437,Elective,,Abnormal,4260,397,3,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,OPEN -4261,2023-07-22,13483.899807955184,399,Emergency,2023-07-26,Inconclusive,4261,209,3,11,,,,DISCHARGED -4262,2019-01-03,46112.01413816182,373,Elective,2019-01-31,Inconclusive,4262,50,2,7,,,,DISCHARGED -4263,2020-03-28,17701.123806696913,138,Urgent,2020-03-29,Abnormal,4263,117,0,18,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -4265,2020-10-08,6664.460693355432,280,Emergency,2020-10-13,Inconclusive,4265,200,0,8,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -4266,2021-08-26,32577.037184008965,413,Emergency,2021-09-17,Abnormal,4266,376,3,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4267,2022-04-17,23788.720496469603,365,Emergency,2022-05-06,Inconclusive,4267,38,1,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4268,2023-05-17,8879.807144515904,368,Elective,,Inconclusive,4268,27,3,27,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",OPEN -4269,2020-01-19,40675.03565064048,112,Emergency,2020-01-26,Normal,4269,258,2,26,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4270,2019-08-16,47200.32603530504,469,Emergency,2019-09-06,Normal,4270,83,4,17,,,,DISCHARGED -4271,2020-02-21,15157.013579451886,313,Elective,2020-02-28,Inconclusive,4271,453,2,9,,,,DISCHARGED -4271,2021-08-30,26263.057532551607,289,Emergency,2021-09-02,Abnormal,7294,154,1,8,,,,DISCHARGED -4271,2019-12-11,6053.051017209744,441,Emergency,2019-12-20,Abnormal,8894,116,3,5,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4272,2022-09-13,37726.75060416127,172,Emergency,2022-09-19,Abnormal,4272,1,0,0,,,,DISCHARGED -4273,2021-11-25,45281.60813325514,153,Urgent,2021-12-12,Normal,4273,92,3,4,,,,DISCHARGED -4274,2021-09-28,24532.457808837284,101,Urgent,2021-10-17,Normal,4274,165,1,9,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4275,2022-02-18,23186.36113064121,476,Urgent,2022-03-14,Normal,4275,386,0,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4276,2021-11-24,27803.00246757089,494,Elective,2021-12-19,Inconclusive,4276,399,2,12,,,,DISCHARGED -4277,2019-04-20,7445.620745064397,368,Elective,2019-05-01,Abnormal,4277,349,4,21,,,,DISCHARGED -4278,2022-11-25,40406.67079273432,482,Urgent,2022-12-11,Normal,4278,295,4,22,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4279,2022-10-23,45960.250694101785,438,Urgent,2022-10-28,Normal,4279,257,3,3,,,,DISCHARGED -4280,2021-07-23,18633.16661493362,212,Urgent,2021-08-20,Inconclusive,4280,80,2,0,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -4281,2020-09-02,4419.6471405296,257,Elective,2020-10-01,Normal,4281,424,1,20,,,,DISCHARGED -4282,2021-08-21,39548.83309112183,311,Emergency,2021-09-14,Abnormal,4282,267,4,1,,,,DISCHARGED -4284,2022-09-27,20378.908689461037,261,Elective,2022-10-18,Normal,4284,418,2,23,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4285,2022-06-27,39942.2752405833,294,Urgent,2022-07-09,Inconclusive,4285,234,3,3,,,,DISCHARGED -4286,2020-02-26,18332.10657982058,461,Elective,2020-02-27,Inconclusive,4286,320,0,16,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4287,2020-07-27,43411.73070622255,227,Emergency,2020-08-01,Normal,4287,310,3,9,,,,DISCHARGED -4289,2020-03-15,13787.360482399412,129,Urgent,2020-04-05,Abnormal,4289,300,3,22,,,,DISCHARGED -4290,2021-01-19,15579.51796045255,135,Urgent,2021-01-27,Normal,4290,462,2,11,,,,DISCHARGED -4291,2021-02-24,7076.582553180162,224,Elective,2021-03-14,Inconclusive,4291,473,4,26,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4292,2023-08-22,9224.665872229143,465,Urgent,,Inconclusive,4292,356,2,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -4293,2020-01-18,46114.60624027525,458,Emergency,2020-02-07,Abnormal,4293,212,0,2,,,,DISCHARGED -4294,2020-10-29,29585.63582417888,296,Urgent,2020-11-27,Normal,4294,61,2,13,,,,DISCHARGED -4295,2022-12-29,18833.014884445416,149,Elective,2023-01-22,Inconclusive,4295,48,1,24,,,,DISCHARGED -4296,2022-05-16,37297.56080033533,284,Urgent,2022-06-03,Inconclusive,4296,126,3,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4297,2018-11-06,19626.666631094115,472,Elective,2018-11-21,Normal,4297,222,4,12,,,,DISCHARGED -4298,2022-05-06,13172.556554209346,321,Emergency,2022-06-04,Normal,4298,408,0,8,,,,DISCHARGED -4299,2020-05-13,39312.833900095146,427,Elective,2020-05-22,Normal,4299,278,3,1,,,,DISCHARGED -4300,2023-10-15,9414.77969470494,457,Urgent,2023-10-27,Abnormal,4300,407,2,18,,,,DISCHARGED -4301,2021-01-29,14628.001672455644,257,Urgent,2021-02-08,Abnormal,4301,293,1,15,,,,DISCHARGED -4302,2019-01-25,15029.464580050986,429,Elective,2019-02-21,Abnormal,4302,283,2,10,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4303,2022-12-27,34591.15341918473,227,Emergency,2023-01-17,Abnormal,4303,276,3,11,,,,DISCHARGED -4304,2019-07-20,10751.473347234029,468,Urgent,2019-08-18,Normal,4304,437,0,24,,,,DISCHARGED -4305,2021-09-08,17181.38350425435,130,Urgent,2021-09-12,Abnormal,4305,106,4,0,,,,DISCHARGED -4306,2023-06-14,28145.03076741111,417,Elective,2023-07-10,Normal,4306,145,3,1,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -4306,2018-12-27,5194.196043207984,198,Emergency,2018-12-28,Inconclusive,4923,419,0,15,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -4307,2021-07-29,47519.43087997428,418,Emergency,2021-08-26,Inconclusive,4307,98,3,26,,,,DISCHARGED -4308,2021-04-02,13744.73295863892,256,Emergency,2021-05-02,Inconclusive,4308,428,1,1,,,,DISCHARGED -4309,2021-01-04,27139.248220751764,485,Emergency,2021-02-02,Inconclusive,4309,374,2,25,,,,DISCHARGED -4310,2021-03-30,2044.8980004535192,316,Emergency,2021-04-26,Normal,4310,72,4,29,,,,DISCHARGED -4311,2023-09-19,28550.98213225394,291,Urgent,2023-09-26,Abnormal,4311,436,0,18,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4312,2018-10-31,19060.231546826177,171,Urgent,2018-11-25,Normal,4312,485,4,9,,,,DISCHARGED -4313,2019-11-10,5217.456626395087,423,Urgent,2019-11-24,Abnormal,4313,121,4,18,,,,DISCHARGED -4314,2023-06-28,45819.599782120815,336,Urgent,2023-07-12,Inconclusive,4314,29,4,9,,,,DISCHARGED -4315,2022-11-05,35623.831857974896,109,Elective,2022-11-24,Normal,4315,187,0,15,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4315,2019-01-12,41896.47962512455,214,Urgent,2019-01-25,Normal,5847,363,0,12,,,,DISCHARGED -4316,2019-07-08,42543.032870346855,304,Urgent,2019-07-10,Inconclusive,4316,353,4,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4317,2023-01-27,41805.65731337217,193,Elective,2023-02-10,Inconclusive,4317,287,2,17,,,,DISCHARGED -4318,2023-10-04,22672.384309398414,133,Emergency,2023-10-06,Abnormal,4318,450,3,23,,,,DISCHARGED -4319,2019-07-15,35317.50619164461,202,Emergency,2019-08-14,Inconclusive,4319,194,4,7,,,,DISCHARGED -4320,2019-06-14,46725.74676311306,337,Emergency,2019-06-27,Inconclusive,4320,155,1,23,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4322,2019-03-25,12622.150489818056,496,Elective,2019-04-18,Abnormal,4322,171,4,17,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4323,2022-10-16,15420.94026749384,367,Urgent,2022-10-19,Abnormal,4323,334,0,12,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4324,2020-02-12,32142.454113230124,370,Urgent,2020-02-29,Inconclusive,4324,40,3,24,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -4326,2021-10-25,47805.81638332805,237,Urgent,2021-10-31,Abnormal,4326,62,1,26,,,,DISCHARGED -4327,2022-07-31,1488.1260929277728,231,Urgent,2022-08-25,Abnormal,4327,22,3,6,,,,DISCHARGED -4328,2023-09-23,22987.560737312077,279,Urgent,2023-09-24,Normal,4328,359,3,27,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -4329,2022-01-23,35108.85858291569,431,Elective,2022-02-11,Abnormal,4329,74,1,20,,,,DISCHARGED -4330,2019-06-06,36701.09053736355,250,Emergency,2019-06-22,Abnormal,4330,47,4,22,,,,DISCHARGED -4331,2020-07-11,5038.133607353281,270,Emergency,2020-07-30,Normal,4331,159,4,23,,,,DISCHARGED -4332,2021-04-03,18929.11346697998,273,Elective,2021-04-28,Abnormal,4332,312,4,24,,,,DISCHARGED -4333,2019-06-20,7089.745283781853,140,Urgent,2019-07-07,Abnormal,4333,117,2,17,,,,DISCHARGED -4334,2021-02-18,42634.99764480624,163,Urgent,2021-03-07,Normal,4334,99,4,5,,,,DISCHARGED -4335,2020-08-02,43083.914313453,472,Urgent,2020-08-08,Inconclusive,4335,379,1,8,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4336,2023-04-07,22950.528255265766,190,Elective,,Abnormal,4336,416,2,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -4337,2023-09-21,32433.36470246996,289,Urgent,2023-10-14,Normal,4337,407,4,5,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4338,2019-01-06,12708.04569673043,210,Urgent,2019-01-30,Normal,4338,166,2,17,,,,DISCHARGED -4339,2021-10-19,35708.18007719289,263,Urgent,2021-11-15,Abnormal,4339,289,1,16,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -4340,2020-11-27,39551.35023961004,115,Urgent,2020-11-29,Normal,4340,439,4,11,,,,DISCHARGED -4341,2019-06-20,22267.580836393427,295,Emergency,2019-07-16,Abnormal,4341,155,0,2,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4342,2021-11-13,25610.641822608864,189,Urgent,2021-12-07,Abnormal,4342,420,1,26,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4343,2021-06-19,25161.09221380417,467,Urgent,2021-07-18,Normal,4343,6,3,4,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4344,2023-06-02,7242.527715213313,289,Urgent,2023-06-12,Normal,4344,195,3,6,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4345,2019-02-08,47705.1670284061,265,Elective,2019-03-01,Abnormal,4345,420,1,9,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -4346,2021-01-21,29231.557651026604,119,Elective,2021-02-05,Normal,4346,55,3,9,,,,DISCHARGED -4346,2023-01-16,37265.96712700602,399,Elective,2023-02-10,Abnormal,6063,320,1,18,,,,DISCHARGED -4347,2021-02-10,35832.3273784627,411,Urgent,2021-03-12,Inconclusive,4347,192,0,24,,,,DISCHARGED -4348,2020-10-13,30277.40585901309,321,Emergency,2020-11-09,Inconclusive,4348,46,1,25,,,,DISCHARGED -4349,2022-10-15,22026.30786674351,382,Urgent,2022-11-04,Inconclusive,4349,147,4,27,,,,DISCHARGED -4350,2021-05-02,1731.5255035080518,130,Emergency,2021-05-21,Inconclusive,4350,274,4,3,,,,DISCHARGED -4351,2021-12-01,20356.31133973265,399,Elective,2021-12-14,Normal,4351,156,2,9,,,,DISCHARGED -4352,2022-03-18,27688.42981583521,156,Urgent,2022-04-14,Inconclusive,4352,201,3,17,,,,DISCHARGED -4353,2021-08-20,7329.299437156995,197,Elective,2021-09-10,Normal,4353,443,3,2,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,DISCHARGED -4353,2023-05-21,9672.394449011888,287,Elective,,Inconclusive,7923,401,1,20,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,OPEN -4354,2020-05-09,31550.677475915312,218,Elective,2020-05-21,Inconclusive,4354,475,3,2,,,,DISCHARGED -4354,2020-11-14,20604.733184173358,310,Urgent,2020-11-15,Normal,6816,418,4,4,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4355,2021-10-22,5415.651952770905,162,Elective,2021-11-17,Inconclusive,4355,426,0,15,,,,DISCHARGED -4356,2023-05-05,25894.759750815545,339,Emergency,,Abnormal,4356,494,1,19,,,,OPEN -4357,2023-02-15,19349.60945862319,364,Emergency,2023-03-12,Inconclusive,4357,478,3,12,,,,DISCHARGED -4358,2021-06-01,30465.331300052203,189,Emergency,2021-06-06,Normal,4358,474,4,10,,,,DISCHARGED -4359,2022-12-07,24921.537784504195,396,Elective,2022-12-25,Normal,4359,125,2,25,,,,DISCHARGED -4360,2021-06-03,8447.95452753493,169,Emergency,2021-06-19,Abnormal,4360,394,3,12,,,,DISCHARGED -4361,2023-01-11,1832.0151060544997,227,Emergency,2023-02-07,Inconclusive,4361,304,0,18,,,,DISCHARGED -4362,2022-08-21,23456.38304679709,297,Emergency,2022-09-01,Inconclusive,4362,368,0,27,,,,DISCHARGED -4363,2019-06-05,27265.8109882696,220,Urgent,2019-06-09,Inconclusive,4363,293,3,5,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4364,2020-07-09,29378.974907449112,297,Urgent,2020-08-07,Inconclusive,4364,63,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4365,2019-04-15,19995.01990750893,341,Emergency,2019-04-25,Abnormal,4365,324,4,12,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -4366,2020-06-20,25200.217214218264,268,Emergency,2020-06-24,Normal,4366,391,3,27,,,,DISCHARGED -4367,2019-06-27,5100.061769330424,376,Emergency,2019-07-18,Normal,4367,417,2,3,,,,DISCHARGED -4368,2022-05-13,23953.529215111303,328,Urgent,2022-06-03,Inconclusive,4368,175,4,24,,,,DISCHARGED -4369,2023-05-20,17503.608156803177,167,Emergency,2023-05-22,Abnormal,4369,115,1,21,,,,DISCHARGED -4370,2023-10-07,17919.965440810436,444,Emergency,2023-10-26,Inconclusive,4370,439,2,4,,,,DISCHARGED -4371,2020-04-05,9973.81025986173,106,Emergency,2020-04-24,Inconclusive,4371,203,4,18,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4372,2022-05-08,46506.66343698101,326,Emergency,2022-06-04,Inconclusive,4372,485,4,4,,,,DISCHARGED -4373,2022-02-27,38062.53382935073,479,Urgent,2022-03-08,Abnormal,4373,320,0,20,,,,DISCHARGED -4374,2019-09-14,11005.824428448836,243,Elective,2019-10-03,Inconclusive,4374,30,4,13,,,,DISCHARGED -4375,2022-11-19,8813.62907307536,450,Elective,2022-12-17,Abnormal,4375,387,2,27,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -4376,2022-12-14,6256.260024722372,227,Elective,2022-12-24,Abnormal,4376,112,3,27,,,,DISCHARGED -4377,2020-11-10,20755.424386043025,226,Emergency,2020-11-27,Abnormal,4377,364,2,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -4378,2023-06-26,44702.2294255068,117,Emergency,2023-07-22,Normal,4378,433,1,11,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -4379,2019-09-28,3523.108424161931,329,Elective,2019-10-03,Abnormal,4379,324,4,5,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4380,2021-08-11,30950.932798176626,410,Emergency,2021-08-20,Inconclusive,4380,413,4,18,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4381,2023-03-13,7627.089773741499,378,Urgent,2023-03-26,Inconclusive,4381,375,4,9,,,,DISCHARGED -4382,2021-11-05,14334.332944057904,433,Urgent,2021-11-12,Abnormal,4382,343,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -4382,2020-02-28,19852.09443330943,157,Elective,2020-03-21,Abnormal,5783,442,0,22,,,,DISCHARGED -4383,2021-07-08,45030.67622566485,391,Urgent,2021-07-09,Inconclusive,4383,66,0,22,,,,DISCHARGED -4384,2020-05-13,20030.9052267636,458,Emergency,2020-05-24,Normal,4384,74,3,27,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4385,2019-02-03,36698.79270164852,124,Urgent,2019-02-04,Inconclusive,4385,44,4,15,,,,DISCHARGED -4386,2019-05-13,6225.450437333625,340,Urgent,2019-06-01,Inconclusive,4386,259,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4387,2021-09-29,21060.9831600596,118,Emergency,2021-10-27,Normal,4387,153,3,8,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4388,2019-03-16,27800.773986255903,196,Urgent,2019-03-23,Abnormal,4388,154,4,27,,,,DISCHARGED -4388,2021-09-01,18232.71602861017,370,Elective,2021-09-07,Inconclusive,5713,429,0,17,,,,DISCHARGED -4389,2020-10-28,3539.9385841968674,478,Urgent,2020-11-16,Abnormal,4389,362,1,28,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4390,2021-04-27,10168.200329414873,118,Emergency,2021-05-04,Abnormal,4390,447,3,16,,,,DISCHARGED -4391,2021-03-22,31116.497540167296,165,Emergency,2021-04-03,Inconclusive,4391,474,1,14,,,,DISCHARGED -4391,2022-02-07,7804.669689924318,437,Elective,2022-03-09,Abnormal,5651,233,4,18,,,,DISCHARGED -4392,2020-02-11,41806.082572882086,398,Urgent,2020-02-25,Inconclusive,4392,50,2,6,,,,DISCHARGED -4393,2019-03-22,5204.054151529353,284,Urgent,2019-04-03,Abnormal,4393,305,1,24,,,,DISCHARGED -4394,2020-12-25,7195.877918443856,227,Emergency,2021-01-09,Normal,4394,261,1,17,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4395,2020-03-01,27861.542729318564,376,Urgent,2020-03-10,Abnormal,4395,314,0,5,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4396,2020-06-26,46345.30326940602,325,Urgent,2020-07-15,Abnormal,4396,124,4,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -4397,2019-12-15,4995.137208069622,392,Emergency,2019-12-31,Abnormal,4397,398,1,20,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4398,2021-01-27,42761.45755100102,433,Urgent,2021-02-19,Inconclusive,4398,244,4,11,,,,DISCHARGED -4399,2023-07-18,15393.627634448116,342,Emergency,,Abnormal,4399,29,0,24,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4401,2023-08-13,23931.377859476062,140,Emergency,2023-08-28,Normal,4401,425,4,2,,,,DISCHARGED -4402,2023-01-16,12743.477429714816,279,Urgent,2023-01-25,Normal,4402,484,0,0,,,,DISCHARGED -4403,2019-04-20,6971.796379841849,382,Urgent,2019-05-06,Normal,4403,121,0,4,,,,DISCHARGED -4404,2019-05-04,30514.77427930134,346,Elective,2019-05-09,Normal,4404,124,3,0,,,,DISCHARGED -4405,2022-12-29,33237.41370971693,282,Urgent,2023-01-11,Normal,4405,36,4,7,,,,DISCHARGED -4406,2022-03-14,7545.227841574843,104,Urgent,2022-03-18,Normal,4406,169,2,6,,,,DISCHARGED -4407,2023-01-14,8818.30529042214,466,Emergency,,Abnormal,4407,123,3,14,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",OPEN -4408,2023-05-19,13431.83118808665,369,Emergency,2023-06-01,Normal,4408,356,0,10,,,,DISCHARGED -4409,2022-12-21,16265.026219937852,256,Emergency,2023-01-10,Inconclusive,4409,34,2,17,,,,DISCHARGED -4410,2019-03-10,31379.52894496659,264,Elective,2019-04-03,Normal,4410,86,1,13,,,,DISCHARGED -4411,2020-06-04,31392.95177820389,248,Elective,2020-06-16,Normal,4411,133,1,26,,,,DISCHARGED -4412,2020-06-02,18926.59341089205,323,Urgent,2020-06-16,Abnormal,4412,195,3,8,,,,DISCHARGED -4413,2019-11-07,20200.02710137315,405,Elective,2019-11-12,Inconclusive,4413,273,2,4,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4414,2022-01-10,47747.30883557917,264,Elective,2022-02-07,Normal,4414,200,4,22,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4415,2021-04-04,31646.14112892792,189,Elective,2021-04-21,Abnormal,4415,368,2,3,,,,DISCHARGED -4416,2022-03-24,10267.73744733062,498,Emergency,2022-04-18,Inconclusive,4416,284,3,11,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4417,2023-09-01,34611.02570513875,110,Urgent,2023-09-23,Normal,4417,76,4,28,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4418,2022-10-15,31143.273416157677,392,Urgent,2022-11-03,Inconclusive,4418,58,4,0,,,,DISCHARGED -4419,2020-10-16,5096.993248083081,488,Elective,2020-10-28,Normal,4419,430,1,29,,,,DISCHARGED -4420,2022-03-27,15450.181899934913,384,Emergency,2022-04-09,Abnormal,4420,125,2,23,,,,DISCHARGED -4421,2022-09-27,27125.115103301843,251,Urgent,2022-10-05,Normal,4421,499,4,12,,,,DISCHARGED -4422,2022-05-03,12413.624375217842,246,Emergency,2022-05-08,Normal,4422,400,3,0,,,,DISCHARGED -4422,2019-12-19,7490.139532125952,480,Elective,2019-12-29,Normal,9163,108,1,2,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -4423,2020-07-27,6626.495446958939,334,Emergency,2020-08-09,Normal,4423,223,4,21,,,,DISCHARGED -4424,2020-09-27,21923.915119217207,162,Elective,2020-10-19,Normal,4424,495,2,7,,,,DISCHARGED -4425,2019-07-28,48575.77056413398,140,Elective,2019-08-12,Inconclusive,4425,277,1,23,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4426,2019-09-05,49208.375751772895,182,Urgent,2019-10-04,Abnormal,4426,67,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4427,2021-04-03,15918.3717316954,232,Urgent,2021-05-03,Inconclusive,4427,68,2,24,,,,DISCHARGED -4429,2020-07-19,31828.35309782192,195,Emergency,2020-08-12,Normal,4429,164,2,15,,,,DISCHARGED -4430,2020-09-29,37712.09461833694,166,Emergency,2020-10-19,Abnormal,4430,488,1,19,,,,DISCHARGED -4431,2020-09-13,35700.222086352056,231,Elective,2020-09-14,Inconclusive,4431,304,4,19,,,,DISCHARGED -4432,2019-12-19,8354.797981984048,210,Elective,2020-01-09,Normal,4432,396,0,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4432,2020-04-19,9772.324284965773,316,Urgent,2020-05-05,Inconclusive,7598,161,4,15,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4433,2019-08-24,7467.614580793222,218,Elective,2019-08-29,Abnormal,4433,364,1,1,,,,DISCHARGED -4433,2022-07-10,26636.972886879517,478,Emergency,2022-07-27,Abnormal,4543,341,0,16,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4433,2020-02-16,3365.150668858322,271,Urgent,2020-02-17,Inconclusive,4770,308,0,9,,,,DISCHARGED -4434,2021-02-22,24925.824078379228,210,Urgent,2021-02-28,Inconclusive,4434,378,0,6,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -4435,2020-06-18,13435.59008309526,300,Urgent,2020-07-03,Normal,4435,342,3,26,,,,DISCHARGED -4436,2019-11-18,15350.200623017585,231,Emergency,2019-12-08,Inconclusive,4436,434,1,9,,,,DISCHARGED -4437,2019-05-07,6371.663537289802,338,Elective,2019-05-26,Normal,4437,386,3,18,,,,DISCHARGED -4438,2022-03-08,4200.251623354856,230,Emergency,2022-03-12,Abnormal,4438,41,0,19,,,,DISCHARGED -4439,2019-10-03,23765.677780833164,322,Emergency,2019-10-28,Abnormal,4439,353,3,26,,,,DISCHARGED -4440,2018-12-04,19142.010715290427,342,Urgent,2018-12-14,Normal,4440,415,3,8,,,,DISCHARGED -4441,2019-10-25,37057.66135441675,267,Emergency,2019-11-14,Normal,4441,108,1,21,,,,DISCHARGED -4442,2021-04-22,38614.42894243093,467,Elective,2021-04-24,Normal,4442,50,2,29,,,,DISCHARGED -4443,2020-05-07,33709.32427903023,465,Emergency,2020-06-03,Abnormal,4443,249,3,16,,,,DISCHARGED -4444,2020-05-13,17498.810293214898,495,Emergency,2020-06-01,Inconclusive,4444,496,3,8,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4444,2021-07-23,33142.01664289726,313,Elective,2021-08-09,Inconclusive,6456,340,0,8,,,,DISCHARGED -4445,2022-06-16,20368.297749051817,326,Elective,2022-07-02,Abnormal,4445,429,0,4,,,,DISCHARGED -4447,2021-04-17,47107.54885259315,276,Emergency,2021-05-13,Abnormal,4447,382,0,23,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4448,2021-01-05,42190.66732224067,407,Urgent,2021-01-22,Abnormal,4448,491,4,6,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -4449,2019-03-18,25954.48507862245,283,Elective,2019-04-06,Normal,4449,20,3,10,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4450,2019-05-28,12239.862943311624,334,Elective,2019-06-09,Abnormal,4450,299,0,7,,,,DISCHARGED -4451,2023-02-15,47837.6734548495,234,Elective,,Normal,4451,138,1,24,,,,OPEN -4452,2022-08-31,2499.408861073847,348,Elective,2022-09-11,Normal,4452,358,4,13,,,,DISCHARGED -4453,2021-12-23,1127.8006675541212,132,Urgent,2022-01-10,Normal,4453,323,2,1,,,,DISCHARGED -4454,2021-10-31,2857.308207950002,436,Emergency,2021-11-20,Inconclusive,4454,498,3,9,,,,DISCHARGED -4455,2021-05-05,4222.299420689984,438,Emergency,2021-05-07,Abnormal,4455,384,3,20,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -4457,2020-06-19,49275.4942371825,268,Urgent,2020-07-13,Normal,4457,91,1,23,,,,DISCHARGED -4458,2023-08-07,29031.596113350173,496,Emergency,2023-08-23,Inconclusive,4458,446,2,15,,,,DISCHARGED -4459,2019-09-22,12963.365015682575,491,Elective,2019-10-06,Normal,4459,279,2,15,,,,DISCHARGED -4460,2023-10-17,14573.728385426337,456,Emergency,2023-11-16,Normal,4460,124,4,18,,,,DISCHARGED -4461,2022-03-17,12980.334123141804,139,Elective,2022-03-29,Normal,4461,482,3,26,,,,DISCHARGED -4462,2022-08-11,22670.96598164515,301,Elective,2022-09-06,Normal,4462,396,0,10,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4463,2018-11-17,45191.27941701784,469,Elective,2018-11-23,Normal,4463,110,1,5,,,,DISCHARGED -4464,2022-12-01,23039.507799399216,226,Emergency,2022-12-05,Inconclusive,4464,353,1,5,,,,DISCHARGED -4465,2018-12-09,47003.79011452799,395,Emergency,2018-12-22,Inconclusive,4465,138,1,6,,,,DISCHARGED -4466,2023-01-14,33307.0498865359,406,Urgent,2023-02-02,Inconclusive,4466,483,1,15,,,,DISCHARGED -4467,2019-01-12,44092.48303031251,478,Elective,2019-01-16,Abnormal,4467,434,0,12,,,,DISCHARGED -4468,2023-04-16,2591.7081686510664,188,Emergency,2023-05-13,Normal,4468,272,0,26,,,,DISCHARGED -4469,2023-02-04,35263.9176631998,460,Elective,,Abnormal,4469,98,4,2,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",OPEN -4471,2019-05-15,23882.725270582763,420,Urgent,2019-05-21,Normal,4471,251,3,23,,,,DISCHARGED -4472,2021-03-11,17207.253555634008,224,Elective,2021-03-20,Inconclusive,4472,337,0,23,,,,DISCHARGED -4473,2021-07-26,21499.069492487324,229,Emergency,2021-08-23,Normal,4473,103,4,8,,,,DISCHARGED -4474,2022-10-13,10991.026864154508,221,Urgent,2022-10-20,Inconclusive,4474,213,2,23,,,,DISCHARGED -4475,2022-05-02,18263.87344831174,243,Elective,2022-05-10,Normal,4475,248,3,2,,,,DISCHARGED -4476,2020-04-14,33083.66725122396,389,Elective,2020-05-03,Inconclusive,4476,151,0,5,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -4477,2019-06-28,9721.912877616378,352,Urgent,2019-07-26,Abnormal,4477,249,2,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4478,2018-12-27,8762.367761079327,244,Urgent,2019-01-24,Normal,4478,274,4,16,,,,DISCHARGED -4479,2023-10-20,23226.34846264999,496,Urgent,,Abnormal,4479,164,0,2,,,,OPEN -4480,2021-01-30,2977.07436432303,421,Elective,2021-02-11,Normal,4480,486,0,1,,,,DISCHARGED -4481,2021-08-15,4251.696251632491,373,Elective,2021-08-28,Abnormal,4481,340,2,11,,,,DISCHARGED -4481,2020-07-28,40170.823711453966,191,Elective,2020-08-09,Normal,6185,7,0,23,,,,DISCHARGED -4482,2021-03-15,36111.82991398725,283,Emergency,2021-03-18,Inconclusive,4482,283,1,5,,,,DISCHARGED -4483,2019-01-02,49125.20266615342,261,Urgent,2019-01-17,Abnormal,4483,4,0,9,,,,DISCHARGED -4484,2021-04-26,41540.56126317295,186,Elective,2021-05-03,Normal,4484,144,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4485,2023-04-01,44846.63056158742,193,Urgent,2023-04-20,Normal,4485,100,2,15,,,,DISCHARGED -4486,2019-07-08,43779.49013669462,255,Emergency,2019-07-11,Inconclusive,4486,163,3,26,,,,DISCHARGED -4487,2022-12-10,18805.682518713733,437,Elective,2022-12-23,Normal,4487,373,4,15,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4488,2023-03-11,33522.73368620645,285,Urgent,2023-03-24,Abnormal,4488,146,3,23,,,,DISCHARGED -4489,2020-09-28,37348.94716171345,327,Urgent,2020-10-18,Inconclusive,4489,63,1,17,,,,DISCHARGED -4490,2021-02-16,17761.66757898211,468,Emergency,2021-03-04,Abnormal,4490,90,1,26,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4490,2019-10-03,18075.23603612658,136,Urgent,2019-10-13,Abnormal,6112,116,3,21,,,,DISCHARGED -4491,2022-06-29,16714.53183436588,171,Emergency,2022-07-27,Normal,4491,353,4,22,,,,DISCHARGED -4492,2019-12-26,29556.96238052217,263,Elective,2020-01-16,Inconclusive,4492,266,0,23,,,,DISCHARGED -4493,2020-12-23,42296.03842471463,471,Urgent,2021-01-22,Inconclusive,4493,309,1,8,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -4493,2020-10-05,3983.852296893284,196,Elective,2020-10-15,Normal,8340,172,3,20,,,,DISCHARGED -4495,2021-02-08,18685.722484901584,426,Elective,2021-02-09,Abnormal,4495,46,3,26,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -4496,2023-07-27,7987.055974098221,224,Emergency,2023-08-16,Abnormal,4496,139,3,18,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -4497,2021-09-27,1517.374190621968,474,Elective,2021-10-20,Abnormal,4497,245,0,1,,,,DISCHARGED -4498,2022-05-27,28545.476437413592,376,Elective,2022-06-09,Normal,4498,148,2,23,,,,DISCHARGED -4499,2020-06-22,17382.217278808675,167,Emergency,2020-07-21,Normal,4499,245,4,0,,,,DISCHARGED -4500,2020-01-03,4407.307351655626,107,Urgent,2020-01-18,Inconclusive,4500,394,2,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4501,2023-05-13,17419.282793158593,459,Elective,,Normal,4501,486,4,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",OPEN -4502,2022-12-19,8873.290554311148,426,Emergency,2023-01-07,Inconclusive,4502,475,4,21,,,,DISCHARGED -4503,2021-06-09,32046.057457555293,274,Elective,2021-06-13,Abnormal,4503,4,3,17,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4504,2020-05-24,3165.2182556421058,242,Urgent,2020-06-10,Inconclusive,4504,464,1,2,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4505,2020-05-27,8570.828456565887,141,Urgent,2020-06-21,Abnormal,4505,183,3,23,,,,DISCHARGED -4506,2018-12-02,4389.044718202802,241,Urgent,2018-12-09,Normal,4506,19,0,0,,,,DISCHARGED -4507,2020-05-19,9542.995188583096,190,Emergency,2020-06-02,Abnormal,4507,424,4,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4508,2019-09-12,37292.07364445765,425,Elective,2019-10-04,Abnormal,4508,45,1,18,,,,DISCHARGED -4509,2021-05-31,49810.97484127671,297,Elective,2021-06-18,Normal,4509,11,4,21,,,,DISCHARGED -4510,2022-01-24,48768.012589720696,313,Emergency,2022-02-11,Normal,4510,69,4,18,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -4511,2019-10-24,7618.909224262197,232,Elective,2019-11-01,Normal,4511,16,3,10,,,,DISCHARGED -4512,2021-02-11,30669.09883679151,178,Urgent,2021-02-14,Normal,4512,370,1,26,,,,DISCHARGED -4514,2022-12-02,9741.612926671376,348,Emergency,2022-12-14,Normal,4514,146,1,7,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4515,2020-12-25,31725.73633768527,375,Elective,2021-01-16,Inconclusive,4515,153,4,4,,,,DISCHARGED -4516,2019-09-22,33729.92040345424,243,Urgent,2019-10-22,Abnormal,4516,303,1,19,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -4517,2020-12-16,34247.59069887079,328,Emergency,2020-12-24,Inconclusive,4517,107,1,8,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -4518,2022-01-26,44519.8023165431,498,Urgent,2022-02-18,Abnormal,4518,235,3,14,,,,DISCHARGED -4518,2019-01-10,49473.95228056956,126,Emergency,2019-01-28,Normal,6440,307,2,20,,,,DISCHARGED -4519,2020-03-30,48259.75280582012,256,Elective,2020-04-06,Normal,4519,351,0,27,,,,DISCHARGED -4520,2020-11-16,29937.092507237143,475,Urgent,2020-11-23,Normal,4520,69,2,13,,,,DISCHARGED -4521,2020-09-17,25425.653864545395,262,Emergency,2020-10-05,Abnormal,4521,182,1,3,,,,DISCHARGED -4522,2022-06-04,33255.92060113499,257,Elective,2022-06-13,Abnormal,4522,249,4,23,,,,DISCHARGED -4523,2023-10-04,20107.701604169528,428,Emergency,,Inconclusive,4523,227,0,23,,,,OPEN -4524,2022-12-06,26234.578358737912,132,Elective,2022-12-30,Normal,4524,101,0,7,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4525,2022-04-06,29879.330033826845,102,Elective,2022-05-02,Normal,4525,74,4,19,,,,DISCHARGED -4526,2019-07-19,5356.255236997056,361,Urgent,2019-08-08,Normal,4526,416,0,28,,,,DISCHARGED -4526,2020-10-27,47216.045086621605,129,Emergency,2020-11-03,Inconclusive,9806,445,4,16,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4527,2019-08-29,37616.93573000845,213,Urgent,2019-09-26,Abnormal,4527,215,0,1,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -4528,2022-12-18,10047.22220693118,384,Elective,2022-12-30,Abnormal,4528,406,2,19,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4529,2022-02-16,25160.410306873688,210,Urgent,2022-03-01,Abnormal,4529,398,0,15,,,,DISCHARGED -4530,2022-06-27,34229.89909452161,186,Urgent,2022-07-13,Abnormal,4530,410,3,9,,,,DISCHARGED -4531,2023-08-21,2883.572594191613,203,Elective,2023-09-17,Normal,4531,202,4,1,,,,DISCHARGED -4532,2019-01-21,7475.236164237298,436,Emergency,2019-02-12,Inconclusive,4532,191,0,10,,,,DISCHARGED -4533,2020-10-26,12125.448819720452,332,Urgent,2020-10-27,Inconclusive,4533,248,4,9,,,,DISCHARGED -4535,2022-02-18,22855.262757371554,394,Elective,2022-02-28,Normal,4535,498,3,29,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4536,2021-08-13,10481.377326245043,498,Elective,2021-09-11,Abnormal,4536,241,0,29,,,,DISCHARGED -4537,2019-10-18,20901.927061815142,210,Emergency,2019-11-13,Abnormal,4537,464,0,18,,,,DISCHARGED -4537,2020-05-13,46951.83901810505,137,Emergency,2020-06-01,Inconclusive,4642,178,3,24,,,,DISCHARGED -4537,2023-10-23,43617.18143865926,469,Elective,2023-11-06,Abnormal,6273,436,3,24,,,,DISCHARGED -4538,2022-11-23,29054.21275907943,436,Urgent,2022-12-18,Abnormal,4538,461,3,13,,,,DISCHARGED -4539,2020-10-15,15746.240941215614,411,Emergency,2020-11-04,Normal,4539,218,4,10,,,,DISCHARGED -4540,2020-10-13,36227.96541973062,277,Emergency,2020-10-23,Normal,4540,81,3,8,,,,DISCHARGED -4541,2021-07-04,47105.87551738357,275,Urgent,2021-07-21,Abnormal,4541,91,4,6,,,,DISCHARGED -4542,2021-05-02,17131.71267959819,165,Emergency,2021-05-17,Abnormal,4542,434,2,14,,,,DISCHARGED -4544,2023-08-22,10783.038409454231,326,Urgent,2023-08-29,Normal,4544,174,0,19,,,,DISCHARGED -4545,2021-08-27,43386.57664992245,195,Emergency,2021-09-04,Abnormal,4545,238,0,16,,,,DISCHARGED -4546,2021-02-25,4123.760053774291,277,Emergency,2021-02-27,Abnormal,4546,259,1,2,,,,DISCHARGED -4547,2021-09-14,13245.662353684767,235,Emergency,2021-10-04,Inconclusive,4547,390,2,14,,,,DISCHARGED -4548,2021-10-22,11976.516434679506,454,Emergency,2021-11-02,Abnormal,4548,364,3,13,,,,DISCHARGED -4549,2019-06-25,35546.882709673904,364,Urgent,2019-07-20,Abnormal,4549,162,3,7,,,,DISCHARGED -4550,2020-05-12,2074.0273259648347,212,Urgent,2020-05-28,Abnormal,4550,47,2,3,,,,DISCHARGED -4551,2019-09-29,35167.30933193421,500,Urgent,2019-10-03,Normal,4551,328,3,25,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4552,2020-07-29,49509.152180348654,327,Urgent,2020-08-20,Abnormal,4552,327,1,9,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4553,2019-03-09,24886.950573386453,476,Urgent,2019-03-11,Abnormal,4553,115,4,1,,,,DISCHARGED -4555,2020-02-12,40850.90196457679,402,Urgent,2020-02-15,Inconclusive,4555,428,0,13,,,,DISCHARGED -4556,2019-05-24,17119.74349325446,304,Elective,2019-06-07,Abnormal,4556,336,2,7,,,,DISCHARGED -4557,2020-11-19,43543.8502818424,466,Elective,2020-11-29,Inconclusive,4557,336,0,22,,,,DISCHARGED -4558,2019-03-05,40920.74277308268,328,Elective,2019-03-16,Inconclusive,4558,368,4,26,,,,DISCHARGED -4559,2021-04-26,11052.423071444444,157,Elective,2021-05-24,Abnormal,4559,224,2,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -4560,2019-12-29,28184.129261670747,176,Elective,2020-01-13,Abnormal,4560,351,4,24,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4561,2021-10-19,42878.86184837214,118,Urgent,2021-11-08,Normal,4561,327,3,17,,,,DISCHARGED -4562,2019-09-10,15671.288421498482,143,Urgent,2019-10-03,Inconclusive,4562,146,3,14,,,,DISCHARGED -4563,2020-09-15,32300.56039866222,413,Elective,2020-09-17,Inconclusive,4563,62,3,4,,,,DISCHARGED -4564,2023-02-24,16959.56491618068,346,Elective,2023-03-17,Abnormal,4564,293,4,21,,,,DISCHARGED -4565,2020-11-09,3466.915756725062,245,Urgent,2020-11-16,Normal,4565,322,4,12,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -4566,2020-09-03,38719.1525572021,187,Emergency,2020-09-07,Abnormal,4566,442,4,17,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2021-06-08,3194.218070064404,459,Elective,2021-07-07,Inconclusive,4567,324,0,1,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2022-12-02,26943.713030411025,404,Urgent,2022-12-13,Abnormal,4975,12,4,12,,,,DISCHARGED -4567,2019-06-26,4216.037126327004,404,Emergency,2019-07-20,Normal,5266,430,3,29,,,,DISCHARGED -4568,2021-11-23,9726.264978540356,463,Emergency,2021-12-11,Normal,4568,493,1,13,,,,DISCHARGED -4569,2019-08-02,48242.5473545515,198,Elective,2019-08-29,Normal,4569,188,4,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4570,2019-07-18,8637.789364548236,250,Emergency,2019-07-22,Inconclusive,4570,286,1,29,,,,DISCHARGED -4571,2021-09-27,15513.271166735283,247,Urgent,2021-10-24,Normal,4571,207,3,3,,,,DISCHARGED -4572,2023-06-14,6033.70063734597,235,Urgent,2023-06-30,Abnormal,4572,113,4,14,,,,DISCHARGED -4573,2023-04-10,14499.431904675448,297,Emergency,2023-04-30,Normal,4573,479,0,7,,,,DISCHARGED -4573,2022-10-06,27367.82222400113,121,Emergency,2022-10-19,Abnormal,8786,21,0,14,,,,DISCHARGED -4574,2023-07-30,21893.431554867693,312,Elective,2023-08-15,Inconclusive,4574,348,1,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4576,2022-08-21,6467.661812370537,223,Emergency,2022-09-04,Inconclusive,4576,213,0,28,,,,DISCHARGED -4577,2021-03-02,2723.2795083136016,152,Urgent,2021-03-15,Abnormal,4577,170,0,26,,,,DISCHARGED -4579,2023-05-30,24065.78149745237,171,Urgent,2023-06-22,Inconclusive,4579,322,0,20,,,,DISCHARGED -4580,2022-04-09,41998.08667359672,204,Urgent,2022-04-11,Normal,4580,53,3,8,,,,DISCHARGED -4581,2018-11-16,32850.871461053015,490,Elective,2018-12-14,Abnormal,4581,393,0,19,,,,DISCHARGED -4581,2023-01-18,32458.96718542279,210,Urgent,,Abnormal,6020,297,2,2,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -4582,2021-06-04,5773.63087809166,310,Emergency,2021-06-15,Normal,4582,319,4,25,,,,DISCHARGED -4583,2021-11-23,10310.471678156457,328,Emergency,2021-12-23,Normal,4583,125,0,14,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4584,2019-05-03,1445.718720752216,255,Urgent,2019-05-25,Abnormal,4584,276,0,23,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4585,2023-05-23,8940.967815226999,373,Urgent,2023-06-20,Normal,4585,463,0,16,,,,DISCHARGED -4586,2019-08-04,2651.698614970652,289,Elective,2019-08-28,Inconclusive,4586,203,2,24,,,,DISCHARGED -4587,2019-09-26,18752.729203038256,468,Urgent,2019-10-19,Inconclusive,4587,193,0,15,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -4588,2021-07-28,37900.29716889033,414,Elective,2021-08-22,Normal,4588,168,0,3,,,,DISCHARGED -4589,2021-11-23,16703.431059432303,237,Urgent,2021-12-01,Inconclusive,4589,151,4,10,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4590,2022-08-24,4074.530633213811,251,Elective,2022-09-05,Normal,4590,34,2,24,,,,DISCHARGED -4591,2021-05-07,14629.79665001082,438,Urgent,2021-06-02,Inconclusive,4591,183,2,7,,,,DISCHARGED -4592,2022-12-04,10078.8283919974,252,Urgent,2022-12-27,Abnormal,4592,285,0,2,,,,DISCHARGED -4594,2022-05-26,23659.45858434306,195,Urgent,2022-06-16,Inconclusive,4594,56,2,18,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4594,2023-08-09,3201.843306864934,246,Emergency,2023-09-06,Normal,7025,221,1,13,,,,DISCHARGED -4595,2022-12-24,48807.37969798211,472,Emergency,2023-01-17,Normal,4595,302,2,8,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4596,2023-06-09,18765.57283251435,298,Urgent,2023-06-25,Inconclusive,4596,162,2,2,,,,DISCHARGED -4597,2023-05-11,25496.85632147278,272,Urgent,2023-05-19,Normal,4597,18,2,3,,,,DISCHARGED -4598,2022-05-01,19455.796449161637,327,Emergency,2022-05-07,Abnormal,4598,369,3,24,,,,DISCHARGED -4599,2019-11-02,42025.19541210112,269,Elective,2019-11-04,Normal,4599,263,3,27,,,,DISCHARGED -4600,2018-11-01,7137.817190758252,412,Emergency,2018-11-23,Normal,4600,281,3,3,,,,DISCHARGED -4601,2022-09-07,7302.4921125496,348,Emergency,2022-09-13,Normal,4601,112,2,10,,,,DISCHARGED -4602,2022-02-23,11186.601370981183,156,Emergency,2022-03-14,Inconclusive,4602,487,1,18,,,,DISCHARGED -4603,2019-10-05,48372.165825946926,371,Elective,2019-10-16,Inconclusive,4603,326,2,29,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -4604,2022-03-08,34701.34962056766,383,Elective,2022-04-01,Normal,4604,29,0,15,,,,DISCHARGED -4605,2020-10-17,1334.709205265342,334,Emergency,2020-10-19,Abnormal,4605,134,1,22,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4606,2023-08-13,12757.647684774678,282,Emergency,,Inconclusive,4606,66,3,21,,,,OPEN -4607,2021-07-20,12143.670786515182,134,Emergency,2021-08-16,Normal,4607,64,4,16,,,,DISCHARGED -4608,2020-05-19,47700.41315513925,275,Urgent,2020-05-31,Inconclusive,4608,291,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4609,2021-09-11,30929.573359795668,330,Elective,2021-10-03,Abnormal,4609,24,3,9,,,,DISCHARGED -4610,2022-07-11,30345.85897579822,322,Urgent,2022-07-27,Abnormal,4610,36,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -4611,2019-06-09,25727.852473488365,400,Urgent,2019-06-13,Normal,4611,0,1,16,,,,DISCHARGED -4612,2022-09-23,41476.37571714626,362,Urgent,2022-10-01,Abnormal,4612,398,2,15,,,,DISCHARGED -4613,2021-01-28,13038.2775339914,163,Urgent,2021-02-03,Inconclusive,4613,36,0,19,,,,DISCHARGED -4614,2019-04-05,30945.93132521213,474,Urgent,2019-04-06,Inconclusive,4614,140,4,21,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4615,2020-04-02,16573.279708302958,264,Emergency,2020-04-29,Inconclusive,4615,231,3,5,,,,DISCHARGED -4616,2020-01-17,30056.57252159981,182,Urgent,2020-02-13,Inconclusive,4616,135,1,6,,,,DISCHARGED -4617,2021-08-07,27679.145318382773,402,Emergency,2021-09-06,Inconclusive,4617,388,4,13,,,,DISCHARGED -4618,2021-08-02,46659.14394422412,200,Emergency,2021-08-27,Abnormal,4618,187,1,10,,,,DISCHARGED -4621,2020-08-03,40844.65779378396,156,Urgent,2020-08-08,Abnormal,4621,127,0,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4622,2023-03-07,9666.179054711774,189,Emergency,,Inconclusive,4622,200,4,13,,,,OPEN -4623,2021-05-19,37919.6305570231,289,Urgent,2021-06-14,Normal,4623,126,3,4,,,,DISCHARGED -4624,2022-11-17,18423.26862196146,120,Urgent,2022-12-05,Abnormal,4624,256,1,4,,,,DISCHARGED -4625,2020-10-18,21304.665630269945,186,Elective,2020-10-27,Inconclusive,4625,163,0,19,,,,DISCHARGED -4626,2022-03-04,43898.80373892993,310,Urgent,2022-03-16,Inconclusive,4626,34,4,21,,,,DISCHARGED -4627,2023-10-10,5123.249749925363,314,Emergency,2023-10-14,Normal,4627,193,1,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4628,2020-01-19,34950.55993122609,289,Urgent,2020-02-17,Normal,4628,190,1,25,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4629,2023-07-12,28906.59267243324,203,Urgent,2023-07-21,Normal,4629,103,3,14,,,,DISCHARGED -4630,2022-07-07,17438.857822071066,269,Emergency,2022-07-23,Abnormal,4630,22,0,25,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -4631,2020-04-12,36836.99374898194,430,Emergency,2020-05-11,Inconclusive,4631,264,2,0,,,,DISCHARGED -4631,2020-08-16,23161.26533076815,106,Elective,2020-09-10,Abnormal,7427,289,1,24,,,,DISCHARGED -4631,2021-02-18,38819.70570248209,195,Elective,2021-03-03,Normal,7980,429,4,29,,,,DISCHARGED -4632,2022-03-20,49904.30211773508,397,Emergency,2022-03-29,Abnormal,4632,461,3,23,,,,DISCHARGED -4634,2018-11-15,35429.717862718855,256,Urgent,2018-12-11,Inconclusive,4634,383,3,22,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -4635,2021-03-04,7804.657858949919,311,Urgent,2021-03-29,Inconclusive,4635,259,1,8,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4636,2022-01-18,11521.48994486875,392,Elective,2022-01-31,Abnormal,4636,413,1,2,,,,DISCHARGED -4637,2021-06-25,43475.25332634104,466,Emergency,2021-07-17,Normal,4637,478,1,25,,,,DISCHARGED -4638,2023-03-24,49617.33159628476,367,Emergency,2023-04-04,Normal,4638,357,2,3,,,,DISCHARGED -4639,2019-08-28,5659.610293308324,181,Elective,2019-09-15,Inconclusive,4639,74,1,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4640,2021-11-19,17699.441632819613,469,Urgent,2021-11-22,Inconclusive,4640,354,0,6,,,,DISCHARGED -4643,2019-06-28,3537.1717401424075,155,Elective,2019-07-23,Abnormal,4643,71,4,21,,,,DISCHARGED -4644,2019-11-03,16825.634974977576,209,Emergency,2019-11-05,Inconclusive,4644,258,1,13,,,,DISCHARGED -4645,2022-06-21,32537.4287165864,370,Urgent,2022-07-04,Normal,4645,397,2,15,,,,DISCHARGED -4646,2021-06-30,25782.10950789528,105,Emergency,2021-07-06,Normal,4646,187,4,28,,,,DISCHARGED -4647,2020-01-26,47296.57689584642,305,Urgent,2020-02-21,Normal,4647,460,3,17,,,,DISCHARGED -4648,2022-06-16,4662.781475982576,129,Emergency,2022-06-26,Inconclusive,4648,172,1,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4649,2020-11-29,32637.180215150143,342,Emergency,2020-12-15,Normal,4649,479,4,15,,,,DISCHARGED -4649,2023-01-19,11618.098216284956,389,Urgent,2023-02-04,Normal,8074,289,3,1,,,,DISCHARGED -4650,2021-03-14,9187.83151388066,328,Urgent,2021-03-27,Abnormal,4650,44,2,9,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4651,2023-07-08,24436.414224647047,158,Urgent,,Normal,4651,60,0,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,OPEN -4651,2020-07-25,42784.6371812812,105,Elective,2020-08-08,Normal,8460,82,1,24,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4652,2022-11-06,47753.55098965471,236,Urgent,2022-11-21,Inconclusive,4652,122,0,26,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4653,2019-08-31,47257.01418015723,383,Urgent,2019-09-03,Abnormal,4653,357,2,14,,,,DISCHARGED -4654,2019-09-02,11559.82913580272,308,Emergency,2019-09-29,Normal,4654,15,4,27,,,,DISCHARGED -4655,2023-06-02,10921.936250411662,271,Urgent,2023-06-25,Inconclusive,4655,65,4,8,,,,DISCHARGED -4656,2019-04-22,49371.11063644354,279,Emergency,2019-05-13,Abnormal,4656,423,2,6,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4657,2019-04-23,41378.99118358502,172,Urgent,2019-05-11,Abnormal,4657,144,2,26,,,,DISCHARGED -4658,2021-12-25,30814.771544605635,229,Emergency,2021-12-28,Inconclusive,4658,374,1,23,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4659,2023-08-09,20200.325741384582,372,Emergency,,Inconclusive,4659,161,3,15,,,,OPEN -4660,2021-12-12,28247.76366107429,259,Urgent,2022-01-11,Normal,4660,233,0,25,,,,DISCHARGED -4660,2021-09-23,25337.18163832452,487,Urgent,2021-10-08,Normal,6737,379,0,2,,,,DISCHARGED -4661,2021-08-28,7639.263400500502,484,Emergency,2021-09-02,Normal,4661,143,4,16,,,,DISCHARGED -4662,2019-05-17,44385.98984681504,204,Emergency,2019-06-03,Abnormal,4662,357,4,22,,,,DISCHARGED -4663,2020-03-26,36169.46030924257,458,Emergency,2020-04-08,Inconclusive,4663,187,1,7,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4664,2022-12-31,22166.08306722026,430,Elective,2023-01-22,Normal,4664,321,2,1,,,,DISCHARGED -4665,2019-06-05,35802.00968811138,297,Emergency,2019-06-20,Normal,4665,449,0,24,,,,DISCHARGED -4666,2022-09-15,39564.57254804425,448,Elective,2022-10-07,Normal,4666,473,1,19,,,,DISCHARGED -4667,2019-09-26,16811.78896700462,460,Elective,2019-10-03,Normal,4667,12,4,25,,,,DISCHARGED -4668,2019-05-30,28363.972721781876,150,Elective,2019-06-24,Normal,4668,183,4,26,,,,DISCHARGED -4669,2020-06-29,13175.119191550191,498,Elective,2020-07-18,Inconclusive,4669,110,0,24,,,,DISCHARGED -4670,2021-08-05,45009.82730646055,189,Emergency,2021-08-30,Normal,4670,414,4,28,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4671,2020-12-21,41990.89215226928,167,Elective,2020-12-30,Abnormal,4671,289,4,2,,,,DISCHARGED -4672,2019-02-24,5637.003897501025,489,Elective,2019-03-14,Abnormal,4672,294,3,7,,,,DISCHARGED -4673,2020-04-28,39683.6893314112,205,Emergency,2020-04-30,Normal,4673,450,2,26,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4674,2021-06-09,24953.946760308914,280,Emergency,2021-07-02,Abnormal,4674,391,4,1,,,,DISCHARGED -4675,2022-05-26,41327.23543960617,142,Elective,2022-06-13,Abnormal,4675,214,3,29,,,,DISCHARGED -4676,2022-08-07,39834.47810092232,453,Urgent,2022-08-17,Inconclusive,4676,461,1,18,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -4677,2021-09-24,16922.56018127191,449,Urgent,2021-10-08,Abnormal,4677,119,4,16,,,,DISCHARGED -4678,2021-12-04,39412.03459377831,322,Emergency,2021-12-12,Abnormal,4678,381,1,4,,,,DISCHARGED -4679,2021-02-16,13016.442139499672,400,Emergency,2021-03-14,Abnormal,4679,54,4,19,,,,DISCHARGED -4680,2022-03-08,45766.414017043695,407,Emergency,2022-03-27,Inconclusive,4680,26,0,28,,,,DISCHARGED -4681,2022-01-15,25077.376678113123,326,Urgent,2022-01-29,Abnormal,4681,117,3,16,,,,DISCHARGED -4682,2021-10-07,47636.28559466362,202,Emergency,2021-10-25,Inconclusive,4682,220,3,9,,,,DISCHARGED -4683,2021-01-01,18432.876727121245,176,Emergency,2021-01-14,Abnormal,4683,230,0,8,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -4684,2022-02-23,5634.310680561106,466,Emergency,2022-03-18,Normal,4684,52,2,21,,,,DISCHARGED -4684,2019-08-29,17633.0035236912,280,Elective,2019-09-05,Abnormal,5394,294,3,5,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4685,2023-04-25,38177.66775302585,234,Urgent,,Inconclusive,4685,320,1,29,,,,OPEN -4686,2019-04-17,33147.491058059175,225,Elective,2019-04-23,Abnormal,4686,400,3,10,,,,DISCHARGED -4687,2021-09-24,25440.050094145416,277,Urgent,2021-10-09,Normal,4687,232,2,1,,,,DISCHARGED -4688,2019-02-23,2414.73010370114,269,Elective,2019-03-01,Inconclusive,4688,157,1,29,,,,DISCHARGED -4689,2019-07-27,1540.1176829849103,477,Elective,2019-08-10,Inconclusive,4689,436,1,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -4690,2023-10-24,6962.845620282616,268,Urgent,,Abnormal,4690,268,0,11,,,,OPEN -4691,2023-02-26,2015.235510470128,365,Elective,2023-03-08,Normal,4691,20,4,11,,,,DISCHARGED -4692,2019-05-21,31672.04821522471,496,Elective,2019-06-05,Abnormal,4692,402,0,15,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -4693,2021-08-07,48792.40088076773,424,Urgent,2021-09-04,Abnormal,4693,52,4,24,,,,DISCHARGED -4694,2022-08-26,8409.785304892099,159,Emergency,2022-09-02,Abnormal,4694,274,0,21,,,,DISCHARGED -4695,2021-10-26,8107.326054864383,355,Emergency,2021-11-13,Normal,4695,312,4,26,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4696,2022-03-16,2597.5973278827487,308,Emergency,2022-03-25,Abnormal,4696,280,3,23,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4697,2022-09-21,39104.022858925,459,Elective,2022-09-24,Inconclusive,4697,213,1,11,,,,DISCHARGED -4698,2019-08-13,1686.2686002061505,196,Emergency,2019-08-31,Inconclusive,4698,30,4,20,,,,DISCHARGED -4699,2020-04-17,7821.637990236603,174,Elective,2020-05-17,Normal,4699,336,3,17,,,,DISCHARGED -4700,2021-12-14,33502.48987666388,443,Urgent,2021-12-30,Abnormal,4700,182,2,12,,,,DISCHARGED -4701,2020-06-20,13618.06611060776,108,Emergency,2020-06-28,Abnormal,4701,22,0,14,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -4702,2022-02-26,14993.879703714232,387,Emergency,2022-03-14,Normal,4702,31,2,15,,,,DISCHARGED -4703,2020-12-21,27013.5403910531,179,Urgent,2020-12-30,Normal,4703,445,3,3,,,,DISCHARGED -4704,2021-08-26,14477.948650955806,482,Urgent,2021-09-16,Normal,4704,73,2,11,,,,DISCHARGED -4705,2020-10-12,19715.529011833605,475,Elective,2020-11-06,Inconclusive,4705,9,2,16,,,,DISCHARGED -4706,2023-09-26,24951.85781654897,225,Emergency,2023-09-29,Normal,4706,483,3,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -4707,2022-10-10,7293.440324716771,315,Elective,2022-11-08,Normal,4707,455,1,21,,,,DISCHARGED -4708,2018-11-04,1804.172102920116,495,Emergency,2018-11-17,Abnormal,4708,53,4,17,,,,DISCHARGED -4709,2020-05-04,38761.27428012262,301,Emergency,2020-05-27,Normal,4709,51,0,21,,,,DISCHARGED -4709,2020-11-29,49879.16016117147,195,Elective,2020-12-19,Inconclusive,8635,147,4,15,,,,DISCHARGED -4710,2020-04-14,1689.7548227412244,459,Elective,2020-04-17,Normal,4710,159,0,0,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4711,2023-02-05,14797.02160386041,417,Emergency,,Inconclusive,4711,369,4,26,,,,OPEN -4712,2023-03-26,19846.88442861877,272,Emergency,2023-04-15,Abnormal,4712,13,2,9,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -4713,2023-10-06,6764.544369113139,287,Emergency,2023-11-02,Inconclusive,4713,177,1,18,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4714,2020-09-28,18227.293650768508,254,Elective,2020-10-08,Inconclusive,4714,411,2,15,,,,DISCHARGED -4715,2021-10-25,16766.54955323652,463,Emergency,2021-10-26,Normal,4715,365,1,13,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4716,2022-12-13,29675.609272065525,372,Elective,2022-12-29,Normal,4716,499,3,24,,,,DISCHARGED -4717,2020-05-22,7793.002873684877,376,Elective,2020-06-13,Inconclusive,4717,52,0,1,,,,DISCHARGED -4718,2021-10-30,38247.4159056947,361,Urgent,2021-11-28,Normal,4718,407,0,23,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4719,2023-06-14,27378.9578121444,460,Emergency,2023-07-13,Normal,4719,334,3,5,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4720,2021-04-17,46730.34125546061,116,Emergency,2021-05-11,Inconclusive,4720,21,4,27,,,,DISCHARGED -4721,2019-11-01,45004.48681959341,444,Urgent,2019-12-01,Abnormal,4721,29,3,21,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4722,2020-07-07,30613.02617983961,467,Elective,2020-07-28,Inconclusive,4722,190,3,22,,,,DISCHARGED -4723,2018-12-03,20028.446642966417,286,Elective,2018-12-08,Inconclusive,4723,259,1,4,,,,DISCHARGED -4724,2022-08-29,42037.04981711227,368,Emergency,2022-09-09,Normal,4724,204,3,11,,,,DISCHARGED -4725,2020-07-23,9908.6020742283,255,Urgent,2020-08-07,Abnormal,4725,58,0,26,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4726,2022-08-23,44563.627251092,269,Emergency,2022-09-10,Normal,4726,470,2,3,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4727,2020-12-15,11323.672172216708,298,Elective,2021-01-01,Inconclusive,4727,263,1,21,,,,DISCHARGED -4728,2020-06-01,10655.365011588974,494,Emergency,2020-07-01,Inconclusive,4728,465,1,23,,,,DISCHARGED -4729,2019-10-04,20605.67950681002,467,Elective,2019-10-20,Normal,4729,11,4,3,,,,DISCHARGED -4730,2021-04-03,23637.097520143077,385,Urgent,2021-04-16,Abnormal,4730,118,2,4,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -4732,2019-05-28,26461.828113819425,412,Urgent,2019-06-24,Inconclusive,4732,414,1,6,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -4733,2019-10-11,35351.57932895399,204,Emergency,2019-11-05,Inconclusive,4733,461,3,5,,,,DISCHARGED -4734,2022-05-07,32989.73376325554,374,Emergency,2022-05-25,Inconclusive,4734,289,1,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -4735,2019-07-08,11319.770913922222,384,Elective,2019-07-15,Abnormal,4735,337,1,3,,,,DISCHARGED -4736,2023-08-08,18502.49832323408,216,Emergency,,Inconclusive,4736,247,1,12,,,,OPEN -4737,2019-06-20,44832.04245526608,261,Urgent,2019-06-25,Abnormal,4737,353,4,3,,,,DISCHARGED -4738,2019-01-14,39685.20660483933,480,Elective,2019-02-07,Inconclusive,4738,126,1,9,,,,DISCHARGED -4739,2021-12-01,17474.83557494979,207,Emergency,2021-12-07,Abnormal,4739,74,1,19,,,,DISCHARGED -4740,2020-11-04,19906.010323095503,271,Urgent,2020-11-19,Abnormal,4740,360,4,0,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4740,2020-12-13,4096.629047291421,180,Elective,2021-01-11,Inconclusive,8731,203,2,20,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -4741,2022-11-26,23218.789385593624,203,Elective,2022-12-04,Abnormal,4741,48,0,7,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4742,2020-09-04,37015.54834820456,223,Urgent,2020-09-30,Inconclusive,4742,78,4,6,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4743,2020-08-20,9119.90203126037,331,Urgent,2020-09-15,Inconclusive,4743,440,4,4,,,,DISCHARGED -4744,2023-10-20,24682.994113681263,428,Urgent,2023-11-15,Normal,4744,478,1,2,,,,DISCHARGED -4745,2020-09-10,3286.3346975183435,414,Urgent,2020-09-16,Inconclusive,4745,240,1,14,,,,DISCHARGED -4746,2021-08-24,23611.844534264183,418,Elective,2021-09-15,Normal,4746,348,0,26,,,,DISCHARGED -4747,2022-03-02,25464.037106023203,400,Elective,2022-03-19,Inconclusive,4747,153,1,16,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -4748,2022-10-15,31296.703135548185,294,Elective,2022-10-31,Abnormal,4748,273,3,28,,,,DISCHARGED -4749,2020-06-01,31185.679947556677,129,Elective,2020-06-11,Inconclusive,4749,95,1,22,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -4750,2022-09-02,32276.816892239385,442,Urgent,2022-09-12,Abnormal,4750,213,1,12,,,,DISCHARGED -4750,2020-08-20,40701.854828414376,311,Urgent,2020-09-02,Inconclusive,8446,293,3,14,,,,DISCHARGED -4751,2020-03-11,22182.21224393951,150,Urgent,2020-03-28,Abnormal,4751,208,0,26,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4752,2023-05-22,47724.93879815555,386,Emergency,,Abnormal,4752,342,3,18,,,,OPEN -4753,2019-09-28,42167.3511310083,170,Emergency,2019-10-21,Normal,4753,87,4,19,,,,DISCHARGED -4754,2022-07-18,27315.231240339,387,Emergency,2022-08-17,Abnormal,4754,305,3,13,,,,DISCHARGED -4755,2020-07-02,25976.634369136154,387,Elective,2020-07-19,Inconclusive,4755,263,2,20,,,,DISCHARGED -4756,2022-06-05,2116.091188013396,457,Elective,2022-06-21,Abnormal,4756,424,4,12,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4756,2022-08-24,29093.420600003414,341,Urgent,2022-09-17,Abnormal,6487,389,1,11,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4757,2021-10-23,21919.31731410046,273,Emergency,2021-10-27,Abnormal,4757,324,4,23,,,,DISCHARGED -4758,2021-04-23,20225.089529440644,484,Elective,2021-05-13,Abnormal,4758,427,0,28,,,,DISCHARGED -4759,2022-12-05,41479.29402464011,249,Urgent,2022-12-19,Abnormal,4759,376,0,22,,,,DISCHARGED -4760,2020-07-15,26310.427113690665,451,Urgent,2020-08-06,Inconclusive,4760,319,3,8,,,,DISCHARGED -4761,2021-01-27,25081.58343532231,208,Urgent,2021-02-08,Inconclusive,4761,156,4,26,,,,DISCHARGED -4762,2022-12-20,47834.18677622168,145,Emergency,2023-01-09,Inconclusive,4762,155,1,2,,,,DISCHARGED -4763,2020-11-10,11178.773991453592,377,Elective,2020-12-04,Inconclusive,4763,138,0,29,,,,DISCHARGED -4764,2019-09-24,43304.70205858663,180,Urgent,2019-10-03,Normal,4764,120,1,10,,,,DISCHARGED -4765,2021-12-26,15964.414399431033,228,Urgent,2022-01-14,Inconclusive,4765,64,2,9,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4766,2018-11-17,27390.08492584137,206,Urgent,2018-12-14,Inconclusive,4766,106,0,0,,,,DISCHARGED -4767,2020-09-10,44044.29623223332,313,Urgent,2020-09-12,Normal,4767,146,3,16,,,,DISCHARGED -4768,2019-09-15,45434.06100711771,171,Urgent,2019-10-13,Normal,4768,136,2,27,,,,DISCHARGED -4769,2019-04-22,35483.873350234964,180,Urgent,2019-04-30,Normal,4769,410,4,25,,,,DISCHARGED -4771,2022-12-19,49006.69594076405,362,Emergency,2023-01-04,Abnormal,4771,161,1,12,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -4772,2022-01-27,2093.8076498385026,447,Emergency,2022-01-28,Abnormal,4772,427,0,13,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4773,2022-01-17,19905.621794415827,441,Emergency,2022-02-14,Inconclusive,4773,451,2,0,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -4773,2020-03-17,37655.16972012383,426,Elective,2020-03-23,Normal,6133,99,2,1,,,,DISCHARGED -4774,2020-09-24,10192.137999418475,470,Urgent,2020-10-13,Normal,4774,337,0,1,,,,DISCHARGED -4775,2019-04-18,34661.37458413516,426,Urgent,2019-04-29,Normal,4775,398,4,6,,,,DISCHARGED -4776,2021-05-30,41089.46410527412,294,Emergency,2021-05-31,Normal,4776,306,4,8,,,,DISCHARGED -4777,2022-06-03,27960.56040290013,477,Urgent,2022-06-18,Inconclusive,4777,140,3,23,,,,DISCHARGED -4778,2019-07-02,1557.3152618268664,217,Elective,2019-07-18,Normal,4778,82,4,3,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4779,2019-10-07,39180.892217324574,470,Urgent,2019-10-20,Inconclusive,4779,176,3,1,,,,DISCHARGED -4780,2020-03-11,44513.842221769424,418,Elective,2020-04-02,Inconclusive,4780,197,2,18,,,,DISCHARGED -4781,2021-10-25,45976.46747093785,338,Emergency,2021-11-21,Abnormal,4781,111,0,25,,,,DISCHARGED -4782,2022-04-14,27186.476813354027,129,Emergency,2022-04-15,Abnormal,4782,55,4,4,,,,DISCHARGED -4784,2020-09-25,46843.73058440118,361,Emergency,2020-10-12,Abnormal,4784,459,3,8,,,,DISCHARGED -4784,2019-07-21,19620.89873063805,133,Elective,2019-08-02,Abnormal,5035,178,2,23,,,,DISCHARGED -4785,2020-08-31,25869.380774231748,244,Emergency,2020-09-05,Normal,4785,420,4,12,,,,DISCHARGED -4786,2020-07-30,34438.91277560099,473,Elective,2020-08-08,Normal,4786,400,1,11,,,,DISCHARGED -4787,2021-10-09,19516.86377852661,131,Emergency,2021-11-04,Abnormal,4787,185,2,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -4788,2021-07-15,35666.449166363185,331,Elective,2021-07-17,Inconclusive,4788,470,4,18,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4789,2022-07-11,1779.160238503723,261,Elective,2022-07-27,Inconclusive,4789,217,2,8,,,,DISCHARGED -4790,2023-04-07,10111.66374508153,340,Urgent,2023-05-03,Abnormal,4790,412,0,9,,,,DISCHARGED -4791,2019-01-24,26674.827831697945,240,Emergency,2019-01-31,Normal,4791,416,0,18,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4792,2022-04-26,26972.049246065337,208,Emergency,2022-05-03,Normal,4792,315,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4792,2023-03-21,13376.613686181898,152,Elective,2023-04-09,Abnormal,7792,474,1,11,,,,DISCHARGED -4792,2020-05-15,22423.161182527616,194,Urgent,2020-05-18,Abnormal,9563,216,0,13,,,,DISCHARGED -4793,2019-09-25,21922.487713310165,135,Urgent,2019-10-05,Inconclusive,4793,119,1,7,,,,DISCHARGED -4794,2019-06-20,25873.92778320435,167,Elective,2019-06-21,Inconclusive,4794,438,0,15,,,,DISCHARGED -4795,2023-08-07,15761.487287695303,463,Emergency,2023-09-01,Normal,4795,393,2,16,,,,DISCHARGED -4796,2023-03-27,35809.342286597835,314,Urgent,2023-04-02,Normal,4796,174,4,19,,,,DISCHARGED -4797,2021-06-29,33733.77515850902,187,Emergency,2021-07-23,Abnormal,4797,22,4,3,,,,DISCHARGED -4798,2019-04-06,26865.104573499037,244,Urgent,2019-04-20,Inconclusive,4798,212,0,5,,,,DISCHARGED -4799,2020-08-18,22566.61369546223,135,Urgent,2020-09-10,Inconclusive,4799,404,4,11,,,,DISCHARGED -4801,2023-03-10,40527.49820073167,166,Emergency,2023-04-07,Abnormal,4801,234,0,27,,,,DISCHARGED -4803,2018-11-25,13677.830944029707,130,Elective,2018-12-11,Normal,4803,12,0,17,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -4804,2019-03-18,12400.812484534872,285,Urgent,2019-04-17,Normal,4804,100,3,6,,,,DISCHARGED -4805,2020-04-30,47757.8458020492,163,Urgent,2020-05-06,Normal,4805,416,3,4,,,,DISCHARGED -4806,2023-08-12,43022.08212283255,459,Urgent,2023-08-24,Abnormal,4806,23,3,9,,,,DISCHARGED -4807,2023-07-29,38674.47530620711,107,Elective,,Abnormal,4807,363,1,5,,,,OPEN -4808,2019-03-04,19345.554359882168,260,Emergency,2019-03-13,Abnormal,4808,10,3,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4809,2019-01-27,33040.93247294721,357,Urgent,2019-02-21,Inconclusive,4809,272,0,13,,,,DISCHARGED -4810,2022-10-09,46113.48098183696,368,Urgent,2022-10-31,Inconclusive,4810,451,2,5,,,,DISCHARGED -4811,2020-10-01,3478.906633093555,318,Elective,2020-10-24,Inconclusive,4811,430,3,29,,,,DISCHARGED -4812,2022-11-02,20463.94854145021,314,Elective,2022-11-05,Abnormal,4812,280,3,13,,,,DISCHARGED -4813,2022-02-09,22394.238647800263,395,Urgent,2022-02-18,Inconclusive,4813,93,2,11,,,,DISCHARGED -4814,2018-12-30,5888.467016121172,386,Elective,2019-01-22,Normal,4814,200,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4815,2022-08-09,46989.40170652176,367,Elective,2022-08-10,Normal,4815,20,1,26,,,,DISCHARGED -4816,2019-12-24,4152.095149606723,289,Urgent,2020-01-16,Inconclusive,4816,339,3,21,,,,DISCHARGED -4817,2020-07-07,28665.647255116924,430,Urgent,2020-07-25,Normal,4817,466,2,25,,,,DISCHARGED -4818,2019-01-07,25236.048908682795,442,Elective,2019-01-18,Abnormal,4818,210,0,11,,,,DISCHARGED -4819,2020-11-10,33090.97809474547,422,Emergency,2020-12-05,Normal,4819,139,4,7,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4820,2021-05-02,12735.568352562894,309,Elective,2021-05-25,Normal,4820,292,1,9,,,,DISCHARGED -4821,2021-01-08,41788.352522771376,160,Urgent,2021-01-21,Inconclusive,4821,297,2,15,,,,DISCHARGED -4822,2023-03-29,12598.404354914288,294,Elective,2023-04-28,Abnormal,4822,400,2,19,,,,DISCHARGED -4824,2019-08-23,9945.889157529677,362,Urgent,2019-08-24,Normal,4824,100,2,25,,,,DISCHARGED -4825,2020-10-26,42289.798280673225,394,Emergency,2020-10-27,Inconclusive,4825,303,3,7,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4826,2022-02-27,48619.51732595202,404,Elective,2022-03-29,Inconclusive,4826,358,4,8,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -4826,2023-03-06,31849.15327022313,370,Urgent,,Normal,8929,27,1,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4827,2021-10-15,43234.33453168871,485,Elective,2021-10-18,Inconclusive,4827,40,0,28,,,,DISCHARGED -4828,2020-06-05,34244.52016086891,434,Urgent,2020-06-12,Normal,4828,354,0,19,,,,DISCHARGED -4829,2021-06-10,37401.626755722034,136,Elective,2021-06-19,Abnormal,4829,302,4,16,,,,DISCHARGED -4829,2019-11-13,4954.618897728081,490,Elective,2019-11-26,Normal,5036,495,2,18,,,,DISCHARGED -4830,2023-10-15,29413.65792502641,447,Urgent,2023-10-16,Normal,4830,145,2,16,,,,DISCHARGED -4831,2019-08-21,27982.12330019868,145,Elective,2019-09-08,Inconclusive,4831,255,2,6,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4832,2021-08-25,23300.429682599923,127,Urgent,2021-09-04,Abnormal,4832,461,2,27,,,,DISCHARGED -4833,2021-06-09,33151.458775961975,418,Urgent,2021-06-21,Normal,4833,226,2,0,,,,DISCHARGED -4834,2020-03-26,7324.03524919629,287,Urgent,2020-03-30,Normal,4834,235,4,26,,,,DISCHARGED -4835,2021-11-12,45373.29538102361,161,Elective,2021-12-10,Abnormal,4835,360,3,19,,,,DISCHARGED -4835,2023-04-05,31266.00192033575,482,Elective,2023-04-20,Normal,7176,379,1,28,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -4836,2020-03-31,40882.135306674034,389,Elective,2020-04-08,Abnormal,4836,454,2,13,,,,DISCHARGED -4837,2023-06-19,41174.49109557084,221,Emergency,,Inconclusive,4837,488,3,16,,,,OPEN -4838,2023-04-30,15612.435738264876,382,Emergency,2023-05-26,Inconclusive,4838,12,0,12,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4839,2021-09-02,29197.806089453534,104,Emergency,2021-09-22,Abnormal,4839,209,4,28,,,,DISCHARGED -4840,2018-11-17,21279.43206267736,300,Urgent,2018-12-09,Normal,4840,228,3,1,,,,DISCHARGED -4841,2021-06-05,47128.48339729499,490,Urgent,2021-06-23,Inconclusive,4841,396,2,26,,,,DISCHARGED -4842,2019-02-18,26252.66577629445,347,Emergency,2019-03-20,Normal,4842,99,2,13,,,,DISCHARGED -4843,2021-06-29,22607.468261507453,196,Elective,2021-07-15,Normal,4843,30,2,0,,,,DISCHARGED -4844,2020-06-29,21148.669896257405,468,Emergency,2020-07-11,Normal,4844,385,3,28,,,,DISCHARGED -4845,2020-06-20,31015.753704444083,479,Emergency,2020-06-29,Abnormal,4845,15,2,4,,,,DISCHARGED -4845,2019-02-13,22549.92608985113,285,Emergency,2019-03-07,Abnormal,7365,136,3,6,,,,DISCHARGED -4846,2022-10-20,28403.851169762514,477,Elective,2022-11-18,Abnormal,4846,328,2,18,,,,DISCHARGED -4847,2019-05-28,32819.85383874983,318,Urgent,2019-06-08,Inconclusive,4847,165,0,13,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4848,2020-01-02,24866.61486577673,459,Emergency,2020-01-05,Normal,4848,458,0,23,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -4849,2021-01-12,28418.366539545976,413,Elective,2021-01-22,Normal,4849,309,1,13,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4850,2019-11-09,14109.793077967,413,Urgent,2019-11-10,Abnormal,4850,439,2,14,,,,DISCHARGED -4851,2022-07-27,4022.4510227645073,220,Urgent,2022-08-17,Inconclusive,4851,469,2,4,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -4852,2022-08-18,13225.683949517475,284,Elective,2022-09-09,Abnormal,4852,480,3,4,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -4853,2021-05-16,25024.587087543347,441,Emergency,2021-05-28,Normal,4853,99,3,28,,,,DISCHARGED -4854,2022-10-01,45498.59510544675,298,Emergency,2022-10-04,Inconclusive,4854,108,2,20,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4855,2021-08-03,21839.95351682588,457,Emergency,2021-08-30,Inconclusive,4855,342,1,23,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4856,2021-09-10,37720.03904281403,324,Elective,2021-10-04,Inconclusive,4856,172,2,1,,,,DISCHARGED -4857,2019-09-14,40872.55506911912,289,Urgent,2019-09-17,Normal,4857,236,3,17,,,,DISCHARGED -4858,2022-12-04,43940.51461084982,209,Urgent,2022-12-08,Normal,4858,161,2,29,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -4859,2022-04-13,48871.042180125696,227,Elective,2022-05-13,Normal,4859,392,3,27,,,,DISCHARGED -4859,2021-11-24,30865.459556694383,415,Emergency,2021-11-26,Abnormal,6465,215,2,23,,,,DISCHARGED -4860,2019-10-06,10619.168166424171,366,Emergency,2019-10-28,Normal,4860,263,4,8,,,,DISCHARGED -4861,2019-10-27,44866.70337557101,218,Emergency,2019-11-05,Normal,4861,262,3,26,,,,DISCHARGED -4862,2022-02-18,31066.96820943338,380,Emergency,2022-02-23,Inconclusive,4862,291,1,27,,,,DISCHARGED -4863,2020-10-14,44117.74185126629,319,Urgent,2020-11-06,Normal,4863,273,4,9,,,,DISCHARGED -4864,2021-12-21,43446.600083663936,438,Urgent,2022-01-15,Abnormal,4864,2,2,25,,,,DISCHARGED -4865,2023-03-09,31836.191541290664,396,Emergency,2023-03-19,Normal,4865,27,3,17,,,,DISCHARGED -4867,2022-10-03,9614.51344548472,435,Emergency,2022-10-22,Normal,4867,325,4,3,,,,DISCHARGED -4868,2021-05-29,2519.905837138157,213,Emergency,2021-06-07,Normal,4868,491,1,7,,,,DISCHARGED -4869,2021-03-31,10659.831948440284,284,Elective,2021-04-16,Inconclusive,4869,427,3,17,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4870,2020-11-21,14185.518865034472,144,Elective,2020-11-28,Abnormal,4870,148,4,19,,,,DISCHARGED -4871,2018-11-17,11555.286129522212,270,Urgent,2018-11-18,Normal,4871,27,4,25,,,,DISCHARGED -4872,2022-08-18,13069.286920754535,335,Urgent,2022-08-25,Normal,4872,487,4,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4873,2023-07-15,11942.10935942674,152,Urgent,2023-08-06,Inconclusive,4873,309,0,28,,,,DISCHARGED -4874,2021-12-14,44753.36868255281,377,Urgent,2021-12-30,Inconclusive,4874,437,2,16,,,,DISCHARGED -4877,2021-02-19,41398.42442888867,174,Emergency,2021-02-23,Abnormal,4877,64,3,15,,,,DISCHARGED -4878,2021-03-21,47817.8793199252,351,Emergency,2021-04-04,Normal,4878,355,3,17,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4880,2020-02-16,22369.625033472166,338,Elective,2020-02-23,Inconclusive,4880,20,3,6,,,,DISCHARGED -4881,2023-02-20,38099.99751747658,208,Urgent,,Normal,4881,251,4,0,,,,OPEN -4882,2023-05-12,47555.486730632285,285,Elective,2023-06-03,Abnormal,4882,234,2,27,,,,DISCHARGED -4883,2019-08-02,17320.901468003278,105,Emergency,2019-09-01,Inconclusive,4883,226,1,0,,,,DISCHARGED -4884,2019-03-26,5708.789191517905,358,Urgent,2019-03-31,Normal,4884,12,3,17,,,,DISCHARGED -4885,2022-12-04,29577.70551981613,287,Emergency,2022-12-25,Inconclusive,4885,312,2,3,,,,DISCHARGED -4886,2020-07-31,45217.52216269627,136,Emergency,2020-08-03,Abnormal,4886,48,2,22,,,,DISCHARGED -4887,2020-08-18,42901.78164618097,270,Emergency,2020-08-29,Abnormal,4887,117,0,19,,,,DISCHARGED -4888,2019-09-06,24358.674061723177,471,Urgent,2019-09-17,Abnormal,4888,53,3,20,,,,DISCHARGED -4889,2019-06-06,1227.13959619763,480,Emergency,2019-06-29,Inconclusive,4889,137,4,19,,,,DISCHARGED -4890,2019-08-23,37787.36243561913,130,Urgent,2019-08-30,Abnormal,4890,52,2,3,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4891,2023-01-12,15591.874971373953,147,Elective,2023-02-07,Normal,4891,43,2,24,,,,DISCHARGED -4892,2020-06-24,14433.02107087807,129,Emergency,2020-07-11,Inconclusive,4892,302,1,5,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -4893,2021-07-02,40076.01069041334,327,Elective,2021-07-14,Abnormal,4893,52,0,27,,,,DISCHARGED -4894,2022-04-11,20342.05896119933,181,Urgent,2022-05-08,Inconclusive,4894,73,2,2,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4895,2023-02-04,49818.51011964355,122,Elective,2023-02-25,Inconclusive,4895,45,2,5,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4896,2018-11-13,22621.535633779225,199,Elective,2018-12-03,Abnormal,4896,12,4,12,,,,DISCHARGED -4897,2020-12-23,27022.14084097524,224,Elective,2020-12-27,Abnormal,4897,164,4,22,,,,DISCHARGED -4898,2021-01-27,27022.65514317058,211,Urgent,2021-02-21,Inconclusive,4898,101,1,6,,,,DISCHARGED -4899,2022-01-06,4405.6917928768,309,Emergency,2022-01-23,Inconclusive,4899,279,1,23,,,,DISCHARGED -4900,2022-10-27,25933.979740503222,194,Urgent,2022-11-12,Abnormal,4900,257,1,28,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4901,2021-11-25,46596.68488234969,165,Urgent,2021-11-28,Inconclusive,4901,469,4,3,,,,DISCHARGED -4902,2018-12-20,31840.875123241007,421,Elective,2019-01-16,Abnormal,4902,336,4,0,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -4903,2019-12-01,31228.268799177007,296,Emergency,2019-12-24,Normal,4903,355,0,5,,,,DISCHARGED -4904,2020-02-25,5236.78445418161,227,Elective,2020-03-09,Normal,4904,397,3,23,,,,DISCHARGED -4906,2022-05-01,26683.8602337913,285,Urgent,2022-05-08,Abnormal,4906,137,3,4,,,,DISCHARGED -4907,2022-09-24,45697.99216232685,378,Emergency,2022-10-20,Inconclusive,4907,162,0,12,,,,DISCHARGED -4908,2019-06-02,48466.94634194745,285,Elective,2019-06-18,Abnormal,4908,408,3,18,,,,DISCHARGED -4909,2022-02-01,8670.193873797494,350,Urgent,2022-02-04,Inconclusive,4909,386,4,3,,,,DISCHARGED -4910,2022-08-28,12191.928817599186,232,Elective,2022-09-22,Inconclusive,4910,110,3,23,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4911,2019-02-27,16141.025412767209,217,Emergency,2019-03-19,Inconclusive,4911,101,4,5,,,,DISCHARGED -4912,2020-05-22,34278.701843560855,434,Emergency,2020-05-23,Abnormal,4912,16,0,12,,,,DISCHARGED -4913,2023-07-15,10041.180942865416,108,Emergency,2023-08-02,Inconclusive,4913,267,1,28,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -4914,2022-05-31,31371.611851722693,361,Urgent,2022-06-23,Abnormal,4914,181,0,4,,,,DISCHARGED -4914,2021-12-14,48138.74552906896,151,Urgent,2021-12-16,Abnormal,7965,371,3,12,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4915,2021-05-24,13124.011818759369,350,Elective,2021-06-17,Abnormal,4915,23,4,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4916,2023-03-09,22673.333511871744,305,Urgent,2023-03-27,Normal,4916,28,3,9,,,,DISCHARGED -4917,2022-01-18,7512.45820506544,392,Emergency,2022-01-20,Normal,4917,170,3,2,,,,DISCHARGED -4918,2021-01-17,40708.82990050067,409,Urgent,2021-01-25,Inconclusive,4918,408,1,22,,,,DISCHARGED -4919,2022-09-17,9471.006301546213,123,Emergency,2022-10-14,Inconclusive,4919,227,3,24,,,,DISCHARGED -4919,2020-10-27,4091.411031022009,108,Elective,2020-11-03,Abnormal,9434,377,1,26,,,,DISCHARGED -4920,2019-12-15,6410.857645006327,337,Emergency,2020-01-13,Abnormal,4920,187,4,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4921,2023-07-19,41402.163548771445,275,Elective,,Inconclusive,4921,345,4,26,,,,OPEN -4922,2022-04-20,36671.00153478959,339,Urgent,2022-05-19,Normal,4922,229,1,11,,,,DISCHARGED -4924,2023-06-29,40337.83430026875,473,Elective,2023-07-05,Inconclusive,4924,320,0,3,,,,DISCHARGED -4925,2022-03-19,29672.12818118183,484,Urgent,2022-04-04,Abnormal,4925,339,4,9,,,,DISCHARGED -4926,2022-10-04,15882.368972394224,124,Elective,2022-10-19,Abnormal,4926,118,0,25,,,,DISCHARGED -4927,2019-03-11,28228.36014032913,498,Emergency,2019-03-24,Normal,4927,155,4,2,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4928,2023-07-10,22476.35308058807,255,Emergency,2023-07-17,Inconclusive,4928,271,4,16,,,,DISCHARGED -4929,2019-07-14,37116.79843394613,104,Elective,2019-07-16,Abnormal,4929,174,2,8,,,,DISCHARGED -4930,2021-09-28,42578.46161360296,438,Urgent,2021-10-15,Normal,4930,464,3,28,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4931,2021-12-05,15192.388100936909,180,Urgent,2021-12-14,Inconclusive,4931,103,3,0,,,,DISCHARGED -4932,2019-11-12,19179.1252763317,214,Emergency,2019-11-26,Inconclusive,4932,91,0,17,,,,DISCHARGED -4933,2019-05-13,39274.51661982424,444,Urgent,2019-05-27,Abnormal,4933,185,3,8,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -4934,2021-09-17,31955.17073343913,121,Urgent,2021-09-19,Inconclusive,4934,459,0,20,,,,DISCHARGED -4935,2022-06-04,12841.909713862437,325,Emergency,2022-06-27,Inconclusive,4935,282,4,19,,,,DISCHARGED -4937,2021-08-11,27768.093538270583,156,Emergency,2021-08-12,Inconclusive,4937,180,2,24,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -4938,2021-10-30,19462.600549146508,334,Emergency,2021-11-04,Normal,4938,169,2,8,,,,DISCHARGED -4938,2020-03-27,21447.9084530032,363,Elective,2020-04-19,Normal,8564,186,4,1,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4939,2019-01-21,45151.2657971579,338,Urgent,2019-01-26,Normal,4939,174,1,18,,,,DISCHARGED -4940,2022-10-25,44454.41031486951,103,Urgent,2022-10-31,Abnormal,4940,221,1,27,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4941,2022-10-30,18262.839840388307,334,Emergency,2022-11-23,Abnormal,4941,232,3,15,,,,DISCHARGED -4942,2020-11-30,17599.750940552694,465,Emergency,2020-12-29,Normal,4942,161,0,2,,,,DISCHARGED -4943,2019-07-04,1470.2176834182706,499,Elective,2019-07-25,Normal,4943,420,2,15,,,,DISCHARGED -4944,2022-06-22,44631.17217248483,241,Urgent,2022-07-11,Abnormal,4944,133,3,20,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4945,2020-04-10,38458.02515621536,394,Elective,2020-04-29,Inconclusive,4945,390,4,12,,,,DISCHARGED -4946,2019-05-06,4397.847075197464,101,Elective,2019-05-28,Normal,4946,479,2,2,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -4947,2020-05-03,34695.128406575284,398,Emergency,2020-05-11,Abnormal,4947,223,0,9,,,,DISCHARGED -4948,2021-09-20,46749.14450753164,234,Urgent,2021-10-04,Inconclusive,4948,152,0,21,,,,DISCHARGED -4949,2020-10-16,40734.688773186674,251,Elective,2020-11-09,Normal,4949,32,1,17,,,,DISCHARGED -4950,2018-11-25,17926.82924262679,142,Elective,2018-12-19,Normal,4950,54,3,5,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -4951,2019-09-12,24949.029982356627,117,Emergency,2019-09-20,Abnormal,4951,441,4,5,,,,DISCHARGED -4952,2023-05-21,30402.67689242605,178,Elective,2023-06-17,Abnormal,4952,6,2,17,,,,DISCHARGED -4953,2020-12-15,33782.6341457172,392,Emergency,2020-12-28,Inconclusive,4953,243,0,5,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -4954,2019-06-22,20465.56884411539,244,Emergency,2019-07-21,Inconclusive,4954,312,2,5,,,,DISCHARGED -4955,2021-08-13,18260.24322967225,130,Elective,2021-09-06,Normal,4955,125,4,21,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -4956,2020-07-12,29504.03590108354,102,Urgent,2020-07-29,Abnormal,4956,11,2,27,,,,DISCHARGED -4957,2020-12-13,20687.874353132564,484,Urgent,2021-01-02,Inconclusive,4957,15,3,12,,,,DISCHARGED -4958,2020-08-10,7967.565101081946,150,Emergency,2020-09-04,Inconclusive,4958,207,1,13,,,,DISCHARGED -4959,2022-08-12,5394.704790248515,410,Elective,2022-08-17,Inconclusive,4959,42,2,20,,,,DISCHARGED -4960,2021-06-29,26671.536560227323,211,Elective,2021-07-02,Inconclusive,4960,372,1,6,,,,DISCHARGED -4962,2022-10-07,4119.267682480317,361,Elective,2022-10-22,Abnormal,4962,483,4,12,,,,DISCHARGED -4963,2021-02-04,40034.05485430158,319,Elective,2021-02-24,Abnormal,4963,460,1,14,,,,DISCHARGED -4964,2021-06-26,32113.887689498133,194,Urgent,2021-07-17,Inconclusive,4964,134,2,11,,,,DISCHARGED -4965,2019-05-12,41801.07980803264,222,Urgent,2019-05-25,Inconclusive,4965,227,2,20,,,,DISCHARGED -4966,2022-08-14,40021.185090564366,280,Emergency,2022-08-22,Normal,4966,110,0,26,,,,DISCHARGED -4967,2023-02-25,39413.12988483545,133,Elective,2023-03-15,Normal,4967,306,2,0,,,,DISCHARGED -4968,2020-06-22,25806.525809774623,447,Urgent,2020-06-29,Abnormal,4968,456,1,27,,,,DISCHARGED -4969,2019-02-08,9984.830480600744,274,Elective,2019-03-05,Abnormal,4969,159,0,24,,,,DISCHARGED -4970,2022-09-21,24706.978084829265,409,Elective,2022-09-26,Inconclusive,4970,330,2,2,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -4971,2020-02-16,9807.40915875448,427,Emergency,2020-02-19,Abnormal,4971,263,2,17,,,,DISCHARGED -4972,2023-03-08,1389.9574172841417,444,Elective,2023-04-05,Abnormal,4972,224,4,25,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4973,2023-05-25,42320.03290103717,241,Emergency,2023-06-01,Normal,4973,470,0,21,,,,DISCHARGED -4974,2019-09-14,29999.16925914993,445,Elective,2019-09-16,Normal,4974,216,4,7,,,,DISCHARGED -4976,2020-02-18,31495.293151648715,455,Urgent,2020-02-26,Abnormal,4976,455,4,1,,,,DISCHARGED -4977,2021-08-02,12425.802418256682,230,Urgent,2021-08-13,Inconclusive,4977,44,4,3,,,,DISCHARGED -4978,2020-04-21,32335.01107537987,290,Urgent,2020-05-14,Abnormal,4978,213,3,17,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4979,2019-07-26,12341.457336988917,132,Elective,2019-08-03,Inconclusive,4979,58,4,27,,,,DISCHARGED -4980,2019-12-28,46166.876044974655,342,Emergency,2020-01-10,Abnormal,4980,131,1,27,,,,DISCHARGED -4983,2023-03-30,22326.324817573524,334,Urgent,,Inconclusive,4983,103,2,24,,,,OPEN -4984,2021-12-28,38261.23038469653,414,Elective,2021-12-30,Normal,4984,194,3,25,,,,DISCHARGED -4985,2022-03-03,27026.1587317018,204,Elective,2022-03-31,Abnormal,4985,412,4,12,,,,DISCHARGED -4986,2020-04-04,30400.641931183494,489,Emergency,2020-04-29,Normal,4986,488,2,14,,,,DISCHARGED -4987,2020-02-05,46008.78300649781,491,Urgent,2020-02-23,Abnormal,4987,156,0,1,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4987,2023-04-04,4429.249919480615,312,Urgent,,Normal,6452,97,0,9,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",OPEN -4988,2020-08-12,11448.019524081265,433,Emergency,2020-09-08,Inconclusive,4988,225,2,1,,,,DISCHARGED -4989,2022-10-13,8739.297294275606,250,Elective,2022-11-09,Inconclusive,4989,411,1,29,,,,DISCHARGED -4990,2022-05-26,41834.21999433544,422,Urgent,2022-06-24,Abnormal,4990,204,2,28,,,,DISCHARGED -4991,2020-04-29,6475.012752915402,492,Elective,2020-05-27,Normal,4991,78,2,20,,,,DISCHARGED -4992,2020-11-23,33278.11896769793,152,Emergency,2020-12-20,Normal,4992,123,3,11,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4994,2021-01-27,17068.19276490547,356,Urgent,2021-02-15,Abnormal,4994,470,0,4,,,,DISCHARGED -4995,2021-12-24,42258.43182597493,343,Urgent,2022-01-18,Inconclusive,4995,427,0,11,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4996,2020-04-05,31009.72570005881,426,Elective,2020-04-15,Inconclusive,4996,217,4,22,,,,DISCHARGED -4997,2023-10-27,45390.9158754624,119,Elective,2023-11-24,Inconclusive,4997,3,2,0,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -4998,2021-11-07,2799.105152247894,173,Elective,2021-11-14,Normal,4998,89,2,27,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4999,2020-05-21,45768.48780730679,492,Elective,2020-05-27,Normal,4999,103,1,1,,,,DISCHARGED -5000,2021-02-27,27840.11569568721,204,Elective,2021-03-24,Normal,5000,392,0,26,,,,DISCHARGED -5001,2021-11-07,45101.040563096685,232,Urgent,2021-11-27,Abnormal,5001,118,1,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5002,2022-04-13,41318.283566753606,290,Urgent,2022-05-02,Abnormal,5002,132,3,26,,,,DISCHARGED -5003,2018-12-18,49422.38164695408,118,Urgent,2019-01-01,Normal,5003,311,4,21,,,,DISCHARGED -5004,2023-08-27,19238.819247691645,367,Urgent,2023-09-11,Normal,5004,95,1,1,,,,DISCHARGED -5005,2019-08-28,32325.18666744932,438,Emergency,2019-09-25,Inconclusive,5005,467,0,15,,,,DISCHARGED -5006,2023-01-06,45780.3645125108,372,Elective,2023-01-23,Normal,5006,433,3,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5007,2021-08-02,48554.41951566858,493,Urgent,2021-08-17,Inconclusive,5007,330,2,25,,,,DISCHARGED -5008,2020-01-11,1827.0934676753616,157,Elective,2020-01-31,Abnormal,5008,142,3,15,,,,DISCHARGED -5009,2023-08-24,6658.184833149132,426,Urgent,2023-09-15,Normal,5009,287,1,5,,,,DISCHARGED -5010,2023-04-30,2344.6959967171133,156,Emergency,2023-05-26,Abnormal,5010,27,0,12,,,,DISCHARGED -5011,2022-10-03,40303.68903222805,411,Urgent,2022-10-07,Normal,5011,277,1,11,,,,DISCHARGED -5012,2020-06-16,32497.72493616383,389,Emergency,2020-07-07,Abnormal,5012,232,2,22,,,,DISCHARGED -5013,2023-08-22,40252.728996203645,221,Elective,2023-09-15,Normal,5013,16,2,9,,,,DISCHARGED -5014,2023-07-17,48634.596153236285,340,Urgent,2023-07-22,Abnormal,5014,58,0,4,,,,DISCHARGED -5016,2021-11-02,31428.76939117009,476,Emergency,2021-11-14,Inconclusive,5016,89,4,7,,,,DISCHARGED -5018,2023-08-03,26450.41573977773,234,Emergency,2023-08-31,Abnormal,5018,491,3,5,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -5019,2023-04-17,19755.464369027926,319,Emergency,2023-05-17,Inconclusive,5019,198,3,4,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5020,2019-06-04,32898.675566542304,358,Urgent,2019-06-25,Normal,5020,361,2,19,,,,DISCHARGED -5022,2021-02-12,37912.48196944748,144,Urgent,2021-02-24,Abnormal,5022,440,1,21,,,,DISCHARGED -5023,2022-09-03,23658.07090227202,469,Emergency,2022-09-18,Abnormal,5023,25,1,5,,,,DISCHARGED -5024,2019-04-21,9848.800176294424,436,Urgent,2019-05-05,Abnormal,5024,24,4,21,,,,DISCHARGED -5025,2019-04-18,6481.013932257771,347,Emergency,2019-05-10,Abnormal,5025,393,1,16,,,,DISCHARGED -5026,2019-01-08,15900.203074249472,206,Elective,2019-02-04,Abnormal,5026,300,3,5,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5028,2019-12-20,25043.463075238924,476,Elective,2019-12-27,Inconclusive,5028,338,1,16,,,,DISCHARGED -5028,2019-09-10,39014.16006592387,283,Urgent,2019-09-25,Abnormal,6087,266,4,4,,,,DISCHARGED -5029,2022-01-29,23249.348656701943,371,Elective,2022-02-27,Abnormal,5029,460,3,22,,,,DISCHARGED -5030,2021-05-23,4432.619265757337,376,Urgent,2021-05-25,Inconclusive,5030,180,1,16,,,,DISCHARGED -5031,2023-09-01,16215.409459467704,264,Emergency,,Inconclusive,5031,455,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -5032,2022-04-14,36235.8313895375,119,Emergency,2022-05-05,Inconclusive,5032,359,2,16,,,,DISCHARGED -5033,2022-02-14,37061.37443528362,428,Emergency,2022-03-11,Abnormal,5033,67,2,28,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -5034,2019-08-05,13730.803000400696,372,Urgent,2019-08-21,Inconclusive,5034,494,2,12,,,,DISCHARGED -5037,2021-02-18,46722.35618237897,227,Elective,2021-03-10,Abnormal,5037,350,1,21,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5038,2020-03-29,35777.79012758474,407,Urgent,2020-04-02,Inconclusive,5038,411,4,6,,,,DISCHARGED -5039,2019-07-04,6098.670135229599,111,Emergency,2019-07-15,Inconclusive,5039,458,3,21,,,,DISCHARGED -5040,2022-03-18,15439.168072385057,271,Emergency,2022-04-05,Normal,5040,490,0,20,,,,DISCHARGED -5041,2021-04-01,26640.91665173258,481,Urgent,2021-04-09,Inconclusive,5041,320,2,5,,,,DISCHARGED -5042,2023-04-18,20813.306560139998,146,Elective,2023-04-25,Abnormal,5042,48,2,28,,,,DISCHARGED -5043,2019-06-09,40757.3551857576,235,Urgent,2019-07-05,Inconclusive,5043,174,0,13,,,,DISCHARGED -5044,2020-02-04,17321.140036717312,251,Emergency,2020-02-23,Inconclusive,5044,51,0,15,,,,DISCHARGED -5045,2021-03-02,16378.781678607344,240,Emergency,2021-03-24,Abnormal,5045,101,1,2,,,,DISCHARGED -5046,2019-11-25,43590.07167383812,242,Elective,2019-12-19,Abnormal,5046,215,3,8,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5047,2019-07-31,43062.1083929731,353,Emergency,2019-08-21,Abnormal,5047,437,2,14,,,,DISCHARGED -5048,2023-06-28,49667.36702889071,173,Emergency,2023-07-19,Normal,5048,187,4,20,,,,DISCHARGED -5049,2022-04-28,8651.44419487702,482,Emergency,2022-04-29,Abnormal,5049,56,1,17,,,,DISCHARGED -5050,2021-10-19,24653.17843045977,473,Urgent,2021-10-22,Abnormal,5050,46,1,29,,,,DISCHARGED -5051,2021-12-03,14532.24324716304,318,Emergency,2021-12-31,Abnormal,5051,158,4,29,,,,DISCHARGED -5051,2021-09-03,19543.338862425404,392,Elective,2021-09-12,Inconclusive,9567,488,4,27,,,,DISCHARGED -5052,2020-07-02,35209.37418975663,281,Urgent,2020-07-14,Inconclusive,5052,173,4,9,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5053,2022-03-03,11716.8938024626,489,Elective,2022-03-24,Normal,5053,241,0,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -5054,2022-12-08,29907.82524173962,270,Emergency,2022-12-11,Abnormal,5054,281,2,22,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5055,2021-09-20,36691.33524644881,270,Urgent,2021-10-15,Normal,5055,240,0,2,,,,DISCHARGED -5056,2019-04-14,46421.53823861062,302,Elective,2019-04-28,Inconclusive,5056,369,2,0,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5057,2023-08-27,38177.68248968008,143,Elective,,Inconclusive,5057,4,0,2,,,,OPEN -5058,2022-08-21,36926.365646650935,419,Emergency,2022-09-19,Inconclusive,5058,83,3,24,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5059,2019-04-07,8347.554655944987,195,Urgent,2019-04-26,Inconclusive,5059,307,2,4,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5060,2019-05-15,8805.07043002689,372,Elective,2019-06-01,Abnormal,5060,360,1,6,,,,DISCHARGED -5061,2022-03-26,34517.935654574845,164,Elective,2022-04-21,Normal,5061,458,2,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5062,2021-01-22,25501.58685798513,418,Elective,2021-01-23,Inconclusive,5062,247,2,3,,,,DISCHARGED -5063,2023-02-20,49773.16757337185,195,Elective,2023-03-03,Abnormal,5063,53,2,16,,,,DISCHARGED -5064,2021-08-07,21077.736822304803,241,Urgent,2021-08-28,Normal,5064,160,3,2,,,,DISCHARGED -5065,2023-07-16,9929.621567079314,227,Emergency,2023-08-06,Normal,5065,433,0,22,,,,DISCHARGED -5065,2021-07-26,44181.52901909563,408,Emergency,2021-08-13,Inconclusive,5232,421,1,3,,,,DISCHARGED -5066,2022-01-01,5357.480502278246,220,Urgent,2022-01-14,Normal,5066,410,0,1,,,,DISCHARGED -5067,2019-01-22,8400.693581613523,369,Elective,2019-02-06,Normal,5067,225,0,13,,,,DISCHARGED -5068,2020-02-05,1547.43596985545,192,Urgent,2020-02-26,Normal,5068,14,4,4,,,,DISCHARGED -5069,2019-12-22,14675.698065375498,255,Emergency,2019-12-24,Inconclusive,5069,223,3,20,,,,DISCHARGED -5070,2023-02-07,31911.16659650923,329,Elective,2023-03-01,Inconclusive,5070,60,4,1,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -5071,2021-03-21,34979.90735804192,177,Urgent,2021-03-25,Normal,5071,121,3,14,,,,DISCHARGED -5071,2022-04-25,16457.331396161262,324,Emergency,2022-04-26,Inconclusive,7779,276,0,10,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5072,2019-07-29,43930.40305430638,183,Urgent,2019-08-07,Inconclusive,5072,45,0,21,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -5073,2022-02-09,18749.017023701683,312,Emergency,2022-02-17,Abnormal,5073,452,3,9,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5074,2023-06-14,48981.86363204137,102,Urgent,2023-06-16,Normal,5074,389,0,19,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5075,2021-08-24,38789.5203521596,154,Emergency,2021-09-03,Normal,5075,293,0,29,,,,DISCHARGED -5076,2022-04-03,5046.104099369172,297,Emergency,2022-04-24,Normal,5076,61,1,0,,,,DISCHARGED -5077,2020-05-03,36609.05501416365,304,Urgent,2020-05-15,Abnormal,5077,85,4,18,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5078,2019-08-03,22194.24856586507,384,Emergency,2019-08-24,Normal,5078,445,4,13,,,,DISCHARGED -5079,2020-05-14,9943.541969518485,176,Emergency,2020-06-08,Normal,5079,209,4,24,,,,DISCHARGED -5079,2023-06-27,33985.19506309106,173,Emergency,2023-07-04,Inconclusive,8063,77,2,25,,,,DISCHARGED -5080,2023-06-08,15957.61024078509,318,Urgent,,Normal,5080,201,1,22,,,,OPEN -5081,2023-02-02,47477.69218200944,169,Emergency,2023-02-23,Normal,5081,301,4,28,,,,DISCHARGED -5082,2023-06-03,38778.715143378366,135,Emergency,2023-06-06,Normal,5082,396,4,21,,,,DISCHARGED -5083,2022-01-01,29847.57604500654,182,Emergency,2022-01-11,Abnormal,5083,222,1,13,,,,DISCHARGED -5084,2022-03-04,34998.579654995534,391,Emergency,2022-04-01,Abnormal,5084,221,0,0,,,,DISCHARGED -5085,2020-11-12,27481.08429671334,496,Emergency,2020-11-22,Inconclusive,5085,2,4,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5086,2023-08-31,25488.5545187998,439,Urgent,2023-09-28,Abnormal,5086,477,0,28,,,,DISCHARGED -5087,2020-01-30,10942.63642788955,460,Emergency,2020-02-23,Normal,5087,5,4,8,,,,DISCHARGED -5088,2020-07-27,2173.0143073560757,394,Urgent,2020-08-19,Normal,5088,92,3,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -5089,2022-09-14,17914.79923597715,393,Elective,2022-10-03,Abnormal,5089,7,2,13,,,,DISCHARGED -5090,2020-05-12,47551.64257521588,450,Elective,2020-05-19,Normal,5090,427,4,12,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -5091,2021-12-08,14287.817991049107,311,Emergency,2022-01-04,Abnormal,5091,492,3,12,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5092,2020-04-07,38135.39035605555,358,Urgent,2020-04-29,Abnormal,5092,234,1,5,,,,DISCHARGED -5093,2021-07-12,6379.431468206156,227,Emergency,2021-08-04,Abnormal,5093,107,3,6,,,,DISCHARGED -5094,2020-02-22,5690.434388051457,256,Emergency,2020-03-23,Normal,5094,160,1,1,,,,DISCHARGED -5095,2020-12-04,7397.102105046514,257,Urgent,2020-12-15,Abnormal,5095,208,4,25,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -5096,2022-03-10,39303.05191863163,127,Urgent,2022-03-28,Abnormal,5096,239,1,7,,,,DISCHARGED -5097,2021-04-02,44220.670477086685,255,Urgent,2021-05-01,Abnormal,5097,330,3,23,,,,DISCHARGED -5097,2022-06-14,1586.6443087453392,265,Elective,2022-07-12,Inconclusive,9507,332,2,5,,,,DISCHARGED -5098,2022-04-17,7889.07978197884,120,Emergency,2022-04-24,Inconclusive,5098,49,0,24,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5099,2020-11-05,35659.62034519237,470,Emergency,2020-11-14,Abnormal,5099,10,0,2,,,,DISCHARGED -5100,2021-09-29,22479.162705327715,209,Urgent,2021-10-21,Normal,5100,350,2,17,,,,DISCHARGED -5101,2022-06-04,32815.29997796043,209,Emergency,2022-06-21,Abnormal,5101,155,0,17,,,,DISCHARGED -5102,2022-06-23,29329.13332650798,376,Elective,2022-07-22,Normal,5102,491,4,21,,,,DISCHARGED -5103,2022-05-28,41247.83920941289,420,Elective,2022-06-10,Inconclusive,5103,69,4,22,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5104,2020-03-02,14684.637807789368,131,Elective,2020-03-18,Abnormal,5104,168,3,5,,,,DISCHARGED -5105,2021-04-13,32750.13637163835,256,Emergency,2021-05-01,Normal,5105,271,3,10,,,,DISCHARGED -5106,2023-01-23,2348.075702915341,264,Elective,,Normal,5106,67,1,2,,,,OPEN -5107,2021-12-06,2501.326828908028,110,Urgent,2022-01-03,Abnormal,5107,354,3,15,,,,DISCHARGED -5108,2021-05-01,36833.41412767465,387,Urgent,2021-05-28,Abnormal,5108,251,4,4,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5109,2019-06-12,3501.2265960132518,281,Emergency,2019-06-19,Inconclusive,5109,47,3,23,,,,DISCHARGED -5110,2021-11-07,18809.576224856806,231,Elective,2021-12-03,Abnormal,5110,183,0,21,,,,DISCHARGED -5111,2022-09-23,34902.5596901161,192,Emergency,2022-10-18,Normal,5111,319,1,1,,,,DISCHARGED -5112,2023-05-05,5279.053806338706,241,Urgent,2023-05-08,Abnormal,5112,186,1,14,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5113,2019-12-30,22266.724771904683,351,Urgent,2020-01-04,Inconclusive,5113,89,4,15,,,,DISCHARGED -5114,2022-09-24,22638.04524794325,148,Elective,2022-10-03,Normal,5114,445,3,6,,,,DISCHARGED -5115,2022-03-28,22186.365924970083,483,Urgent,2022-04-26,Abnormal,5115,331,0,15,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -5116,2022-07-22,38097.37219821762,238,Elective,2022-08-17,Inconclusive,5116,138,3,23,,,,DISCHARGED -5117,2019-03-18,17218.957061815156,314,Elective,2019-03-22,Normal,5117,356,2,3,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -5118,2021-08-02,17817.20960979308,337,Emergency,2021-08-26,Abnormal,5118,88,3,27,,,,DISCHARGED -5119,2021-01-19,2191.062771318586,488,Elective,2021-02-02,Inconclusive,5119,273,4,15,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5120,2019-12-24,45561.65116025382,461,Elective,2020-01-13,Normal,5120,18,3,16,,,,DISCHARGED -5121,2022-02-06,39230.97300259444,316,Elective,2022-03-03,Abnormal,5121,470,1,1,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5122,2020-09-17,12606.224904969233,153,Elective,2020-10-05,Inconclusive,5122,310,0,15,,,,DISCHARGED -5123,2019-04-27,5147.784802637132,160,Urgent,2019-05-13,Normal,5123,357,4,3,,,,DISCHARGED -5124,2022-02-13,32504.536911314022,434,Urgent,2022-03-14,Abnormal,5124,373,2,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -5125,2023-06-25,30588.68330087086,217,Elective,2023-07-04,Normal,5125,465,0,17,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -5126,2020-07-09,28479.198753920235,354,Urgent,2020-08-07,Inconclusive,5126,153,0,5,,,,DISCHARGED -5126,2023-10-09,12379.134624294014,380,Urgent,,Normal,9993,389,1,17,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,OPEN -5127,2023-07-22,13650.43845961381,245,Emergency,2023-08-05,Abnormal,5127,259,1,27,,,,DISCHARGED -5128,2019-05-27,1259.7194959308604,163,Emergency,2019-06-21,Normal,5128,107,1,6,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -5129,2021-07-22,7922.259374639687,371,Elective,2021-07-28,Abnormal,5129,370,4,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5130,2023-02-03,22474.64327157401,119,Urgent,,Abnormal,5130,284,3,18,,,,OPEN -5132,2023-08-23,49757.18985756018,223,Urgent,2023-08-24,Normal,5132,58,0,8,,,,DISCHARGED -5134,2021-12-13,26996.77570777713,364,Emergency,2021-12-30,Normal,5134,124,3,28,,,,DISCHARGED -5135,2020-01-25,28027.16780207578,408,Urgent,2020-02-16,Normal,5135,353,3,3,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5136,2019-12-28,28590.61771260386,151,Urgent,2020-01-16,Normal,5136,272,1,13,,,,DISCHARGED -5137,2023-05-20,26210.540675083856,193,Emergency,2023-06-05,Normal,5137,106,3,4,,,,DISCHARGED -5138,2022-11-06,1450.6409243881474,472,Emergency,2022-11-29,Abnormal,5138,298,0,24,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5139,2019-04-03,25719.2087967364,390,Elective,2019-04-19,Normal,5139,244,0,6,,,,DISCHARGED -5140,2023-10-09,19637.997960753062,142,Emergency,,Normal,5140,335,2,7,,,,OPEN -5141,2019-05-18,15964.45356667402,107,Urgent,2019-06-12,Abnormal,5141,449,4,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5142,2023-06-01,11720.311114443684,285,Emergency,2023-06-19,Abnormal,5142,417,3,26,,,,DISCHARGED -5143,2019-12-01,15550.561758010905,424,Urgent,2019-12-05,Normal,5143,246,4,18,,,,DISCHARGED -5144,2022-02-24,28278.66995987896,483,Urgent,2022-03-26,Inconclusive,5144,7,4,26,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -5145,2019-09-04,3546.9628249270777,150,Urgent,2019-09-27,Normal,5145,140,4,10,,,,DISCHARGED -5146,2019-12-26,18130.193051042563,469,Urgent,2020-01-21,Normal,5146,361,4,19,,,,DISCHARGED -5147,2019-03-05,12313.0155937923,273,Urgent,2019-03-07,Inconclusive,5147,7,0,22,,,,DISCHARGED -5148,2022-01-11,37655.765650130736,176,Emergency,2022-01-14,Abnormal,5148,477,3,3,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -5149,2021-06-30,10735.966504179169,327,Elective,2021-07-05,Normal,5149,351,2,17,,,,DISCHARGED -5150,2019-01-21,1272.0514204487647,234,Urgent,2019-01-28,Normal,5150,483,4,13,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -5151,2019-07-15,31483.55808887903,117,Emergency,2019-08-09,Abnormal,5151,494,2,25,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5153,2023-06-21,36262.05016221882,269,Urgent,2023-07-15,Inconclusive,5153,93,0,5,,,,DISCHARGED -5154,2019-05-04,28483.47475783277,424,Elective,2019-05-08,Inconclusive,5154,320,0,24,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5155,2020-02-02,46501.41107778,266,Elective,2020-02-23,Inconclusive,5155,426,1,15,,,,DISCHARGED -5156,2023-01-15,1981.0896297497384,279,Elective,2023-02-12,Inconclusive,5156,38,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5157,2020-12-26,30424.24670835349,163,Elective,2020-12-27,Normal,5157,80,1,0,,,,DISCHARGED -5158,2020-05-04,41821.08228991133,243,Urgent,2020-05-29,Inconclusive,5158,186,2,7,,,,DISCHARGED -5160,2023-09-02,40563.460539870015,133,Elective,2023-09-15,Inconclusive,5160,83,3,0,,,,DISCHARGED -5160,2021-04-21,20748.42806274156,235,Urgent,2021-05-02,Inconclusive,6161,87,1,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -5161,2018-11-28,49028.35142291023,227,Elective,2018-12-01,Normal,5161,241,0,18,,,,DISCHARGED -5161,2023-03-19,24200.289586990104,401,Elective,2023-03-22,Normal,7429,341,4,20,,,,DISCHARGED -5162,2020-08-14,32124.16588443249,115,Urgent,2020-09-10,Inconclusive,5162,92,2,28,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5163,2022-12-01,14576.052719707131,442,Emergency,2022-12-22,Abnormal,5163,85,0,27,,,,DISCHARGED -5164,2022-04-09,10645.37550774106,199,Emergency,2022-04-23,Abnormal,5164,43,3,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -5165,2023-08-13,35750.63106481579,160,Elective,,Inconclusive,5165,136,4,26,,,,OPEN -5166,2022-05-01,37856.31886153119,486,Emergency,2022-05-07,Normal,5166,420,3,9,,,,DISCHARGED -5168,2022-05-14,28673.253814415508,131,Elective,2022-06-02,Abnormal,5168,73,3,17,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -5170,2023-02-20,36704.28690427285,371,Urgent,,Abnormal,5170,35,4,11,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -5171,2023-03-23,15910.791599315406,451,Urgent,2023-04-02,Abnormal,5171,100,4,27,,,,DISCHARGED -5172,2023-02-15,32946.37386702329,173,Urgent,2023-03-02,Normal,5172,475,3,16,,,,DISCHARGED -5173,2021-09-27,9281.857561464249,159,Elective,2021-10-18,Inconclusive,5173,155,2,0,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -5174,2023-02-07,36496.49084044139,181,Emergency,2023-02-09,Inconclusive,5174,425,4,7,,,,DISCHARGED -5175,2021-12-16,22699.119822200057,183,Urgent,2022-01-10,Abnormal,5175,254,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5176,2020-03-23,25268.53697640309,401,Elective,2020-03-31,Inconclusive,5176,170,1,25,,,,DISCHARGED -5177,2019-02-08,47097.50897390788,117,Urgent,2019-02-15,Normal,5177,468,2,9,,,,DISCHARGED -5178,2023-01-17,47403.274614423295,333,Emergency,,Normal,5178,215,4,17,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",OPEN -5181,2023-06-02,29197.717478553037,331,Emergency,2023-06-13,Abnormal,5181,169,4,28,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5181,2023-03-11,26808.23001967882,422,Urgent,,Abnormal,7476,251,2,8,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -5182,2023-07-10,14897.824044181014,329,Elective,,Abnormal,5182,359,1,24,,,,OPEN -5183,2022-01-18,29778.3100976944,170,Emergency,2022-02-13,Normal,5183,321,3,1,,,,DISCHARGED -5184,2022-04-17,12652.7367568972,263,Emergency,2022-05-09,Abnormal,5184,54,0,2,,,,DISCHARGED -5185,2022-02-17,48514.63488666102,175,Emergency,2022-03-07,Inconclusive,5185,455,4,1,,,,DISCHARGED -5186,2023-09-18,1172.659953875504,379,Elective,2023-10-16,Inconclusive,5186,431,1,5,,,,DISCHARGED -5187,2019-10-11,26449.156255032744,151,Emergency,2019-10-17,Abnormal,5187,90,0,22,,,,DISCHARGED -5188,2023-02-07,9413.999977684554,186,Urgent,,Abnormal,5188,277,2,11,,,,OPEN -5189,2022-02-18,18386.73821567868,254,Emergency,2022-02-26,Inconclusive,5189,100,4,21,,,,DISCHARGED -5190,2018-12-07,39661.33407160865,364,Elective,2018-12-31,Inconclusive,5190,154,3,18,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -5191,2021-11-11,44866.916638648734,101,Elective,2021-11-26,Abnormal,5191,376,2,27,,,,DISCHARGED -5192,2021-09-27,34945.33717731973,290,Urgent,2021-10-22,Inconclusive,5192,348,4,14,,,,DISCHARGED -5195,2021-08-15,6116.923875134586,343,Elective,2021-08-25,Inconclusive,5195,450,1,18,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5196,2019-03-13,23142.126357517936,411,Urgent,2019-03-28,Abnormal,5196,363,0,11,,,,DISCHARGED -5197,2023-01-31,18687.903357694744,458,Emergency,2023-02-13,Normal,5197,140,0,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5198,2022-04-29,32627.342223406,335,Elective,2022-05-06,Abnormal,5198,172,4,15,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5199,2019-09-25,1926.6662530599983,449,Urgent,2019-10-24,Normal,5199,9,2,1,,,,DISCHARGED -5200,2020-05-05,9907.394047069422,446,Urgent,2020-05-17,Inconclusive,5200,227,3,10,,,,DISCHARGED -5201,2021-09-06,29473.003230377253,295,Elective,2021-09-12,Normal,5201,264,1,11,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -5202,2022-08-21,48716.023366180765,399,Emergency,2022-09-13,Abnormal,5202,437,4,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5203,2021-07-24,7038.8277432283,304,Emergency,2021-08-04,Normal,5203,247,1,26,,,,DISCHARGED -5204,2023-06-04,22876.63714225199,126,Emergency,2023-06-29,Normal,5204,246,0,26,,,,DISCHARGED -5205,2023-07-25,15114.21953923833,443,Urgent,2023-08-03,Abnormal,5205,154,3,23,,,,DISCHARGED -5206,2019-09-18,25492.354986840543,458,Emergency,2019-09-25,Normal,5206,33,1,5,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -5207,2021-11-23,19623.135690572144,344,Urgent,2021-12-22,Inconclusive,5207,498,4,24,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5207,2023-03-17,40257.55988229859,220,Urgent,2023-04-11,Inconclusive,7625,128,3,10,,,,DISCHARGED -5208,2022-06-16,26244.70606168459,372,Urgent,2022-06-28,Normal,5208,159,2,20,,,,DISCHARGED -5209,2021-08-08,26250.09268002844,397,Emergency,2021-09-05,Abnormal,5209,88,4,9,,,,DISCHARGED -5210,2023-02-14,9363.156577558748,379,Urgent,,Inconclusive,5210,92,1,3,,,,OPEN -5211,2019-02-18,47696.27664125714,243,Emergency,2019-03-18,Abnormal,5211,326,3,8,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -5212,2021-09-02,24843.09902959749,493,Emergency,2021-09-25,Normal,5212,240,4,11,,,,DISCHARGED -5213,2023-05-19,27233.90963192384,487,Urgent,,Inconclusive,5213,322,3,9,,,,OPEN -5214,2020-08-06,39186.46235653345,105,Elective,2020-08-10,Inconclusive,5214,467,3,26,,,,DISCHARGED -5215,2022-02-12,35023.68912553508,396,Urgent,2022-02-22,Abnormal,5215,403,3,13,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5217,2023-09-30,25258.915221257168,203,Urgent,2023-10-14,Normal,5217,116,1,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5218,2019-08-09,12620.191027203891,498,Emergency,2019-08-31,Normal,5218,93,4,0,,,,DISCHARGED -5219,2021-11-29,46691.96896180026,135,Emergency,2021-12-05,Abnormal,5219,162,0,4,,,,DISCHARGED -5220,2019-12-22,18212.235553405266,150,Elective,2020-01-16,Abnormal,5220,98,0,15,,,,DISCHARGED -5223,2020-04-23,1703.5574370888792,313,Emergency,2020-05-20,Abnormal,5223,112,1,4,,,,DISCHARGED -5224,2020-11-18,43955.43534389099,412,Emergency,2020-12-11,Abnormal,5224,358,1,4,,,,DISCHARGED -5225,2020-07-28,40749.89977643832,449,Emergency,2020-08-16,Abnormal,5225,90,3,28,,,,DISCHARGED -5226,2020-06-11,46801.18080261245,133,Urgent,2020-06-21,Abnormal,5226,345,4,17,,,,DISCHARGED -5227,2018-12-28,16591.810883957984,389,Urgent,2019-01-14,Normal,5227,205,4,28,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5228,2023-02-04,39914.34095318098,128,Urgent,2023-02-16,Inconclusive,5228,16,2,5,,,,DISCHARGED -5229,2020-07-30,33977.2254630983,397,Emergency,2020-08-18,Abnormal,5229,273,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5230,2021-03-08,29265.9523186035,474,Urgent,2021-03-11,Abnormal,5230,172,0,17,,,,DISCHARGED -5231,2022-06-14,22219.37329418572,453,Urgent,2022-07-01,Normal,5231,115,2,27,,,,DISCHARGED -5233,2021-11-17,24876.76609000926,138,Emergency,2021-11-21,Inconclusive,5233,348,2,9,,,,DISCHARGED -5234,2023-08-29,43069.08045232865,250,Elective,2023-08-30,Normal,5234,467,0,14,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5235,2019-08-24,20063.468608215764,288,Elective,2019-09-14,Abnormal,5235,180,0,29,,,,DISCHARGED -5236,2022-10-17,12071.366195923749,161,Elective,2022-11-09,Inconclusive,5236,90,2,23,,,,DISCHARGED -5237,2019-10-25,2751.955990536877,347,Emergency,2019-10-26,Abnormal,5237,81,4,21,,,,DISCHARGED -5237,2019-12-29,37020.925858857256,379,Urgent,2020-01-13,Normal,9632,323,2,10,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5238,2022-09-26,18538.95006147664,495,Urgent,2022-09-28,Abnormal,5238,448,3,25,,,,DISCHARGED -5239,2019-03-24,48708.8706878804,293,Urgent,2019-03-27,Inconclusive,5239,113,3,27,,,,DISCHARGED -5240,2019-06-17,41039.152467523294,145,Elective,2019-07-04,Inconclusive,5240,256,3,26,,,,DISCHARGED -5240,2023-05-13,39858.605919572365,243,Urgent,2023-05-28,Normal,7432,57,1,18,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5241,2022-06-27,2907.0567740026404,311,Emergency,2022-07-16,Inconclusive,5241,153,3,24,,,,DISCHARGED -5242,2020-08-17,46424.14934130371,270,Urgent,2020-09-10,Inconclusive,5242,364,4,12,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5243,2021-06-01,12021.925633727167,307,Urgent,2021-06-12,Abnormal,5243,403,1,26,,,,DISCHARGED -5244,2020-09-17,18219.643450890868,195,Emergency,2020-10-13,Inconclusive,5244,115,1,26,,,,DISCHARGED -5245,2023-09-23,44044.824301646346,500,Urgent,2023-10-02,Inconclusive,5245,342,3,29,,,,DISCHARGED -5246,2019-10-30,32393.922225869275,360,Urgent,2019-11-01,Abnormal,5246,265,2,19,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -5248,2020-11-20,38192.24708130329,444,Elective,2020-12-05,Normal,5248,314,0,2,,,,DISCHARGED -5248,2021-01-23,9054.056612162198,294,Emergency,2021-02-06,Inconclusive,7009,202,2,15,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5249,2019-04-29,31138.531570528456,246,Emergency,2019-05-28,Abnormal,5249,40,2,6,,,,DISCHARGED -5250,2022-12-09,9837.2564619063,294,Urgent,2022-12-20,Inconclusive,5250,104,1,11,,,,DISCHARGED -5251,2022-06-26,6243.818912741213,121,Elective,2022-06-28,Inconclusive,5251,388,1,28,,,,DISCHARGED -5252,2019-05-29,46435.406990034,105,Elective,2019-06-23,Normal,5252,377,1,14,,,,DISCHARGED -5253,2020-12-07,33714.713895835084,364,Elective,2020-12-28,Normal,5253,192,4,29,,,,DISCHARGED -5254,2021-03-19,47482.47335979292,211,Urgent,2021-03-27,Inconclusive,5254,400,4,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5255,2020-08-18,11390.808640513238,125,Urgent,2020-09-13,Normal,5255,277,0,22,,,,DISCHARGED -5256,2022-02-27,47406.65124654162,430,Urgent,2022-03-26,Normal,5256,353,1,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5257,2022-02-18,12123.022948194506,303,Urgent,2022-03-15,Abnormal,5257,236,3,0,,,,DISCHARGED -5258,2019-05-28,18156.354363072747,141,Elective,2019-06-04,Abnormal,5258,424,1,28,,,,DISCHARGED -5259,2021-02-21,44991.86684195481,468,Elective,2021-03-23,Normal,5259,220,4,20,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5260,2019-01-01,45770.0297892668,351,Urgent,2019-01-05,Inconclusive,5260,67,1,29,,,,DISCHARGED -5261,2022-08-24,49661.2470973855,261,Urgent,2022-09-05,Abnormal,5261,196,4,7,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5262,2021-03-25,16060.585663211245,359,Emergency,2021-04-07,Abnormal,5262,255,1,13,,,,DISCHARGED -5262,2019-06-16,22790.376840207064,239,Elective,2019-06-24,Inconclusive,7483,138,3,9,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5262,2023-10-05,8887.988126145556,210,Elective,2023-10-26,Abnormal,8475,311,0,26,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5263,2023-10-08,29618.68695088728,245,Elective,,Abnormal,5263,434,3,18,,,,OPEN -5264,2020-03-27,23040.68279097219,394,Urgent,2020-04-23,Abnormal,5264,148,4,7,,,,DISCHARGED -5265,2020-12-03,33400.77395852582,485,Urgent,2020-12-14,Abnormal,5265,98,2,18,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5267,2023-06-25,23191.437316779917,122,Elective,2023-06-29,Normal,5267,75,3,3,,,,DISCHARGED -5268,2023-09-29,27808.686260342136,238,Emergency,2023-10-04,Normal,5268,281,1,9,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5269,2020-02-01,18406.510117157035,438,Elective,2020-02-23,Normal,5269,370,0,22,,,,DISCHARGED -5270,2022-10-26,20152.934724714687,164,Emergency,2022-11-16,Inconclusive,5270,402,1,2,,,,DISCHARGED -5271,2021-03-10,35336.54685593156,477,Urgent,2021-03-14,Inconclusive,5271,108,1,3,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -5272,2019-01-05,45189.24584398605,441,Emergency,2019-01-14,Abnormal,5272,187,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5272,2022-11-06,32596.969893982976,237,Emergency,2022-11-26,Normal,8528,198,0,23,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -5273,2020-09-27,23387.498167739595,250,Elective,2020-10-10,Normal,5273,302,2,3,,,,DISCHARGED -5274,2019-10-29,48599.59229382341,187,Elective,2019-11-01,Normal,5274,326,1,24,,,,DISCHARGED -5275,2021-12-26,43801.88454043095,342,Elective,2021-12-30,Abnormal,5275,153,0,19,,,,DISCHARGED -5276,2023-09-21,11292.690655192097,441,Elective,2023-09-23,Abnormal,5276,39,2,28,,,,DISCHARGED -5277,2022-01-22,47708.84509469196,488,Emergency,2022-02-12,Abnormal,5277,132,1,29,,,,DISCHARGED -5278,2022-08-02,46405.609088226425,363,Emergency,2022-08-04,Normal,5278,404,0,19,,,,DISCHARGED -5279,2022-03-01,9302.207797850466,436,Elective,2022-03-20,Abnormal,5279,461,3,12,,,,DISCHARGED -5280,2020-01-23,18990.308273929,273,Emergency,2020-02-20,Normal,5280,131,1,20,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -5281,2018-12-25,5040.738326886707,446,Elective,2019-01-15,Inconclusive,5281,278,1,16,,,,DISCHARGED -5282,2020-03-15,17791.94959070682,201,Emergency,2020-03-19,Normal,5282,361,0,22,,,,DISCHARGED -5282,2021-04-17,20514.67691999995,351,Urgent,2021-04-20,Normal,7842,83,1,24,,,,DISCHARGED -5283,2020-01-07,33940.6495390121,142,Elective,2020-01-26,Normal,5283,398,2,15,,,,DISCHARGED -5285,2022-06-20,41984.88583170091,445,Elective,2022-07-08,Inconclusive,5285,241,1,27,,,,DISCHARGED -5286,2021-11-29,13923.722207965006,120,Urgent,2021-12-26,Inconclusive,5286,115,4,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5287,2023-01-17,30927.596774208425,380,Urgent,2023-02-03,Inconclusive,5287,108,2,16,,,,DISCHARGED -5288,2022-09-06,45332.9114383018,191,Elective,2022-09-30,Abnormal,5288,220,0,5,,,,DISCHARGED -5289,2023-06-03,7280.258731348832,121,Urgent,2023-06-09,Abnormal,5289,391,2,2,,,,DISCHARGED -5290,2020-04-07,44665.58346299991,269,Elective,2020-04-30,Abnormal,5290,40,4,19,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -5291,2023-04-22,6943.602234449973,190,Elective,2023-04-23,Inconclusive,5291,367,4,23,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -5291,2021-07-16,6743.587021111983,350,Elective,2021-08-15,Inconclusive,7038,146,1,3,,,,DISCHARGED -5293,2021-11-28,34290.81106653555,171,Emergency,2021-12-01,Normal,5293,111,1,7,,,,DISCHARGED -5294,2019-11-27,21269.961761348197,456,Elective,2019-12-23,Abnormal,5294,102,3,19,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -5295,2020-09-18,2426.6177893942768,364,Emergency,2020-09-23,Inconclusive,5295,45,2,8,,,,DISCHARGED -5296,2019-02-17,7271.705234775733,232,Emergency,2019-03-08,Inconclusive,5296,411,3,21,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5297,2019-11-28,6147.781585691975,354,Emergency,2019-12-26,Normal,5297,493,4,0,,,,DISCHARGED -5298,2022-10-21,38505.2933934196,185,Emergency,2022-11-03,Inconclusive,5298,474,1,12,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5299,2023-08-30,22940.65966947428,447,Elective,2023-09-24,Normal,5299,323,1,25,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -5300,2021-12-26,38652.44784415607,499,Emergency,2022-01-09,Normal,5300,377,1,1,,,,DISCHARGED -5301,2022-02-14,16975.993989791416,115,Elective,2022-02-20,Abnormal,5301,270,0,22,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5302,2023-03-18,5953.958899304417,446,Emergency,2023-03-29,Abnormal,5302,482,4,9,,,,DISCHARGED -5304,2023-04-03,41490.31352502009,425,Emergency,2023-04-19,Inconclusive,5304,420,1,22,,,,DISCHARGED -5305,2023-02-25,46001.29489302763,198,Emergency,2023-02-28,Abnormal,5305,384,4,18,,,,DISCHARGED -5306,2020-04-07,48407.9927355567,372,Urgent,2020-05-05,Abnormal,5306,194,1,16,,,,DISCHARGED -5307,2021-02-27,35159.076689868154,346,Urgent,2021-03-29,Inconclusive,5307,366,2,23,,,,DISCHARGED -5308,2023-10-17,46425.52394262858,474,Urgent,2023-10-18,Inconclusive,5308,279,4,12,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -5310,2020-10-26,10101.14795685093,396,Emergency,2020-11-15,Abnormal,5310,282,3,28,,,,DISCHARGED -5311,2020-08-18,19911.481805316693,154,Elective,2020-09-01,Inconclusive,5311,39,0,25,,,,DISCHARGED -5312,2020-04-03,31421.33605830356,435,Emergency,2020-04-10,Abnormal,5312,446,3,13,,,,DISCHARGED -5312,2021-01-13,10332.537182502045,136,Urgent,2021-01-27,Abnormal,6223,188,4,26,,,,DISCHARGED -5313,2022-11-20,6538.339832777338,109,Elective,2022-11-21,Normal,5313,163,1,10,,,,DISCHARGED -5314,2023-01-13,10528.691860138466,118,Emergency,,Inconclusive,5314,481,4,9,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",OPEN -5316,2019-05-19,37788.61108637827,224,Elective,2019-06-18,Abnormal,5316,476,0,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5317,2019-01-15,36269.15234978935,173,Urgent,2019-01-29,Normal,5317,23,4,9,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5318,2020-08-14,26857.80751957179,281,Elective,2020-09-03,Inconclusive,5318,23,1,23,,,,DISCHARGED -5319,2019-03-23,1750.4645692866843,197,Urgent,2019-04-12,Abnormal,5319,489,3,0,,,,DISCHARGED -5320,2023-09-13,28410.20032258373,314,Elective,2023-09-26,Abnormal,5320,3,2,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5321,2022-06-30,49874.62222518887,303,Urgent,2022-07-03,Normal,5321,322,3,2,,,,DISCHARGED -5322,2019-08-28,15207.704125165776,196,Elective,2019-09-06,Normal,5322,289,1,12,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5323,2022-11-14,21106.1622177802,455,Emergency,2022-12-07,Inconclusive,5323,440,1,1,,,,DISCHARGED -5324,2022-11-19,33294.20730722521,495,Emergency,2022-12-18,Inconclusive,5324,432,0,16,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -5325,2018-11-01,42411.20965936169,145,Emergency,2018-11-12,Normal,5325,470,4,20,,,,DISCHARGED -5326,2022-03-20,42758.97959650399,496,Urgent,2022-03-25,Normal,5326,180,4,2,,,,DISCHARGED -5327,2022-09-14,4645.351762174405,374,Elective,2022-09-29,Normal,5327,247,3,25,,,,DISCHARGED -5328,2021-04-19,35589.818019400314,241,Elective,2021-05-06,Inconclusive,5328,115,2,14,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5329,2023-10-17,40837.9125009489,150,Emergency,2023-11-13,Normal,5329,278,2,7,,,,DISCHARGED -5330,2021-11-24,15988.948357667903,388,Elective,2021-12-12,Abnormal,5330,364,0,5,,,,DISCHARGED -5331,2020-07-24,32447.69749887272,229,Urgent,2020-08-11,Abnormal,5331,68,1,25,,,,DISCHARGED -5332,2019-01-06,48068.42743358444,125,Emergency,2019-01-07,Normal,5332,350,0,29,,,,DISCHARGED -5333,2023-03-04,33527.72606393148,123,Urgent,2023-03-23,Inconclusive,5333,253,4,8,,,,DISCHARGED -5334,2022-12-29,8464.131385097815,497,Elective,2023-01-20,Inconclusive,5334,180,1,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5335,2022-03-14,29553.755389591177,321,Elective,2022-04-08,Normal,5335,317,0,10,,,,DISCHARGED -5336,2023-07-01,22080.99390125088,156,Urgent,2023-07-18,Normal,5336,168,3,21,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -5337,2023-08-06,37565.73816624861,310,Urgent,2023-08-28,Abnormal,5337,312,4,1,,,,DISCHARGED -5338,2019-07-31,24789.88105489378,275,Elective,2019-08-02,Abnormal,5338,248,2,8,,,,DISCHARGED -5339,2019-07-16,37165.99926019338,344,Emergency,2019-07-29,Abnormal,5339,187,0,17,,,,DISCHARGED -5340,2021-07-16,38047.23617445312,477,Emergency,2021-08-10,Inconclusive,5340,53,4,18,,,,DISCHARGED -5341,2019-12-24,1422.3067701407497,296,Elective,2020-01-03,Abnormal,5341,325,4,21,,,,DISCHARGED -5341,2020-07-21,40613.17537109844,194,Emergency,2020-08-19,Normal,7715,356,2,17,,,,DISCHARGED -5342,2021-04-28,2530.743028796275,338,Emergency,2021-05-04,Normal,5342,312,2,4,,,,DISCHARGED -5343,2020-07-12,39465.43991927848,477,Elective,2020-08-05,Inconclusive,5343,137,2,17,,,,DISCHARGED -5344,2021-04-13,16696.69493599367,383,Urgent,2021-04-23,Normal,5344,167,0,11,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5345,2023-01-15,8392.045632088782,113,Emergency,,Inconclusive,5345,390,2,3,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",OPEN -5346,2018-12-27,44835.551923487765,329,Elective,2019-01-07,Normal,5346,102,3,14,,,,DISCHARGED -5347,2022-07-15,41152.08651687772,116,Elective,2022-07-31,Abnormal,5347,421,4,10,,,,DISCHARGED -5348,2023-03-25,10938.3560169617,401,Emergency,,Inconclusive,5348,84,2,26,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,OPEN -5349,2020-11-04,39163.2761091567,388,Emergency,2020-11-08,Abnormal,5349,316,4,18,,,,DISCHARGED -5349,2022-10-07,28911.8217100814,422,Elective,2022-10-13,Normal,5967,211,1,4,,,,DISCHARGED -5350,2019-09-11,18429.65766887912,258,Emergency,2019-09-26,Abnormal,5350,2,1,5,,,,DISCHARGED -5351,2020-03-20,2321.0371386477877,341,Urgent,2020-04-14,Abnormal,5351,383,2,12,,,,DISCHARGED -5352,2022-11-10,27995.572777828173,283,Elective,2022-11-13,Normal,5352,178,4,22,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5352,2023-01-07,41047.74921477449,221,Elective,,Abnormal,7452,341,1,9,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5353,2022-07-28,24095.36526351721,344,Emergency,2022-08-18,Abnormal,5353,302,2,23,,,,DISCHARGED -5354,2020-05-19,49700.98120803751,133,Emergency,2020-05-29,Abnormal,5354,451,4,24,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5354,2023-10-23,22074.39268761999,222,Urgent,2023-11-12,Abnormal,7569,475,2,13,,,,DISCHARGED -5355,2019-07-09,13411.08305129469,349,Elective,2019-08-05,Normal,5355,331,4,3,,,,DISCHARGED -5356,2023-02-19,6639.058142140622,234,Urgent,,Normal,5356,37,1,19,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",OPEN -5357,2020-08-21,39291.57930780216,459,Emergency,2020-09-10,Inconclusive,5357,498,2,22,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -5357,2022-03-11,14624.447761972537,319,Elective,2022-04-02,Normal,8312,419,1,11,,,,DISCHARGED -5358,2022-02-27,17227.234822947503,256,Urgent,2022-03-08,Inconclusive,5358,238,2,14,,,,DISCHARGED -5359,2022-10-08,30539.400149840912,422,Emergency,2022-11-06,Normal,5359,168,0,25,,,,DISCHARGED -5360,2021-08-17,4170.371037880999,195,Urgent,2021-09-09,Inconclusive,5360,452,1,9,,,,DISCHARGED -5361,2023-09-27,9047.530841846115,157,Elective,2023-10-14,Normal,5361,396,1,10,,,,DISCHARGED -5362,2023-06-19,45809.65808749955,464,Elective,2023-07-10,Inconclusive,5362,342,3,8,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5363,2022-03-04,39428.53026744075,443,Urgent,2022-03-05,Abnormal,5363,313,1,10,,,,DISCHARGED -5364,2019-12-15,30263.184287280103,477,Urgent,2019-12-24,Inconclusive,5364,305,4,1,,,,DISCHARGED -5365,2023-09-16,28010.774778172246,203,Urgent,2023-10-11,Inconclusive,5365,29,2,12,,,,DISCHARGED -5365,2021-03-19,18843.142998483618,232,Elective,2021-03-21,Abnormal,8497,189,0,26,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5366,2022-11-21,1080.8669526267531,302,Elective,2022-11-23,Inconclusive,5366,356,4,21,,,,DISCHARGED -5367,2020-04-30,42836.19925513295,500,Elective,2020-05-10,Inconclusive,5367,24,4,25,,,,DISCHARGED -5368,2023-01-23,30861.70453786641,380,Urgent,2023-02-18,Normal,5368,111,4,25,,,,DISCHARGED -5369,2020-04-15,26804.80874203124,148,Elective,2020-05-10,Inconclusive,5369,410,4,7,,,,DISCHARGED -5370,2022-09-22,46032.57922096606,357,Emergency,2022-09-28,Normal,5370,434,0,28,,,,DISCHARGED -5371,2019-03-26,43214.8507055202,328,Emergency,2019-04-13,Normal,5371,205,3,20,,,,DISCHARGED -5372,2021-08-22,35865.4012798763,363,Urgent,2021-09-15,Normal,5372,184,1,20,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5373,2019-03-16,42233.967419656736,400,Elective,2019-04-01,Inconclusive,5373,381,4,7,,,,DISCHARGED -5374,2023-08-05,37953.00141973952,305,Urgent,,Normal,5374,495,1,0,,,,OPEN -5375,2022-01-21,42059.84507440352,216,Urgent,2022-02-09,Normal,5375,378,1,5,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -5376,2021-11-06,24684.18458097732,188,Elective,2021-11-15,Normal,5376,46,4,25,,,,DISCHARGED -5377,2022-05-19,13827.517439138348,195,Emergency,2022-05-23,Inconclusive,5377,373,3,12,,,,DISCHARGED -5378,2020-01-09,38452.14533880384,166,Urgent,2020-02-07,Abnormal,5378,227,1,8,,,,DISCHARGED -5379,2021-11-03,48785.143226280336,122,Emergency,2021-11-15,Inconclusive,5379,38,2,27,,,,DISCHARGED -5380,2019-11-06,9820.269855080442,300,Elective,2019-12-01,Normal,5380,15,1,5,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -5381,2022-09-07,32236.78326851948,242,Emergency,2022-09-28,Abnormal,5381,21,4,14,,,,DISCHARGED -5382,2019-11-09,42383.36091951493,190,Urgent,2019-11-21,Normal,5382,212,0,22,,,,DISCHARGED -5383,2021-01-19,24411.6592538423,165,Urgent,2021-02-02,Inconclusive,5383,309,1,15,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -5383,2023-10-11,13178.685214354206,486,Urgent,,Normal,5834,148,3,3,,,,OPEN -5384,2019-12-02,43428.36202951809,425,Emergency,2019-12-09,Abnormal,5384,455,2,27,,,,DISCHARGED -5385,2021-09-14,35476.09677467794,302,Emergency,2021-09-15,Abnormal,5385,240,2,25,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -5386,2020-08-24,16287.82264090078,423,Elective,2020-09-14,Normal,5386,271,0,16,,,,DISCHARGED -5387,2018-11-16,9545.64603043312,230,Urgent,2018-12-10,Abnormal,5387,58,0,8,,,,DISCHARGED -5388,2023-03-16,49250.1054529776,480,Emergency,2023-04-12,Inconclusive,5388,286,1,11,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5389,2020-12-22,36824.12385592929,141,Emergency,2020-12-26,Inconclusive,5389,425,4,21,,,,DISCHARGED -5390,2023-10-14,38851.27355297423,134,Emergency,2023-10-29,Inconclusive,5390,201,3,18,,,,DISCHARGED -5391,2018-12-21,27369.153397422564,197,Urgent,2019-01-20,Abnormal,5391,31,2,19,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5392,2020-02-10,7140.297578535327,211,Emergency,2020-02-11,Normal,5392,442,0,25,,,,DISCHARGED -5395,2019-12-07,22359.40877319428,439,Urgent,2019-12-26,Normal,5395,161,3,11,,,,DISCHARGED -5396,2022-04-05,34853.81702775787,204,Urgent,2022-04-17,Normal,5396,254,4,21,,,,DISCHARGED -5397,2021-02-27,5429.632982750025,118,Emergency,2021-03-29,Normal,5397,253,2,5,,,,DISCHARGED -5398,2021-07-21,38730.71082495431,330,Elective,2021-07-27,Normal,5398,8,2,11,,,,DISCHARGED -5399,2021-09-01,3237.2037960223056,427,Elective,2021-09-07,Normal,5399,464,4,8,,,,DISCHARGED -5400,2023-05-28,3062.780223094609,417,Emergency,,Inconclusive,5400,138,2,19,,,,OPEN -5401,2020-06-07,40806.31699083983,315,Urgent,2020-07-01,Inconclusive,5401,479,4,4,,,,DISCHARGED -5402,2019-10-02,38807.55158630943,284,Emergency,2019-10-29,Abnormal,5402,9,2,20,,,,DISCHARGED -5403,2020-07-14,36160.41237376924,297,Emergency,2020-08-04,Inconclusive,5403,213,1,2,,,,DISCHARGED -5404,2019-12-23,49932.9018159729,139,Elective,2020-01-16,Abnormal,5404,272,4,1,,,,DISCHARGED -5405,2020-10-07,23052.528213908503,126,Emergency,2020-10-17,Inconclusive,5405,323,3,7,,,,DISCHARGED -5406,2020-11-27,21193.1273674194,466,Emergency,2020-12-12,Abnormal,5406,47,1,9,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5407,2022-10-03,16674.88160857864,458,Elective,2022-10-16,Normal,5407,435,3,14,,,,DISCHARGED -5408,2020-05-30,5445.315077691656,331,Urgent,2020-06-16,Abnormal,5408,110,2,8,,,,DISCHARGED -5409,2023-08-01,2991.585877151348,297,Emergency,2023-08-20,Abnormal,5409,152,3,9,,,,DISCHARGED -5410,2022-02-28,27735.17374627667,397,Urgent,2022-03-21,Normal,5410,122,1,10,,,,DISCHARGED -5411,2019-12-16,5538.860169765128,431,Emergency,2019-12-19,Normal,5411,404,4,28,,,,DISCHARGED -5412,2021-01-24,40778.51024034466,420,Elective,2021-02-13,Inconclusive,5412,356,0,8,,,,DISCHARGED -5413,2022-03-06,45552.59617365875,284,Urgent,2022-03-13,Normal,5413,101,3,13,,,,DISCHARGED -5415,2019-03-16,37061.43491338366,357,Urgent,2019-04-09,Abnormal,5415,240,0,4,,,,DISCHARGED -5416,2020-12-28,28846.661833847807,278,Emergency,2021-01-14,Abnormal,5416,320,3,26,,,,DISCHARGED -5416,2020-06-26,27278.165514539785,488,Urgent,2020-06-27,Abnormal,9175,190,3,8,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5417,2018-11-28,14594.566067869942,137,Elective,2018-12-14,Abnormal,5417,216,4,3,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5418,2023-08-14,22296.73953689249,470,Emergency,,Normal,5418,50,2,1,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5419,2018-11-27,10023.970303055092,407,Urgent,2018-12-18,Abnormal,5419,291,1,18,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -5420,2022-10-03,29208.66801834079,244,Urgent,2022-10-29,Normal,5420,80,1,0,,,,DISCHARGED -5421,2021-04-06,36935.61043704975,176,Elective,2021-04-12,Inconclusive,5421,488,1,20,,,,DISCHARGED -5422,2019-10-21,13495.099745750576,199,Emergency,2019-11-07,Abnormal,5422,382,2,0,,,,DISCHARGED -5423,2020-10-26,1791.3037254107592,169,Urgent,2020-10-31,Abnormal,5423,87,0,11,,,,DISCHARGED -5424,2019-04-26,39884.67218928435,294,Urgent,2019-05-22,Normal,5424,193,1,10,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5426,2022-01-20,16277.077550480746,107,Urgent,2022-02-01,Abnormal,5426,103,0,0,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -5427,2022-11-02,31236.902863500552,257,Emergency,2022-11-04,Normal,5427,270,2,13,,,,DISCHARGED -5428,2019-02-06,5493.691696701916,457,Emergency,2019-02-14,Inconclusive,5428,95,2,26,,,,DISCHARGED -5429,2022-07-27,24513.15489993489,329,Elective,2022-08-20,Abnormal,5429,422,4,10,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -5430,2021-12-13,1764.4822924212513,124,Emergency,2021-12-27,Inconclusive,5430,378,1,28,,,,DISCHARGED -5431,2022-07-18,5752.507708254177,255,Urgent,2022-07-24,Abnormal,5431,197,4,6,,,,DISCHARGED -5432,2022-04-16,46865.626212657815,441,Elective,2022-05-15,Inconclusive,5432,0,1,1,,,,DISCHARGED -5433,2023-07-21,24518.20993969547,191,Emergency,2023-07-31,Abnormal,5433,494,2,14,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -5434,2022-11-05,13191.363987295816,316,Emergency,2022-11-26,Inconclusive,5434,406,2,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5435,2023-09-08,16738.006507391347,434,Emergency,,Normal,5435,377,3,21,,,,OPEN -5436,2021-02-17,22500.804527599492,367,Emergency,2021-03-14,Abnormal,5436,166,3,19,,,,DISCHARGED -5437,2023-03-27,26561.15042423582,305,Urgent,,Inconclusive,5437,125,2,24,,,,OPEN -5438,2019-01-04,16990.727072996044,134,Urgent,2019-01-12,Inconclusive,5438,312,2,14,,,,DISCHARGED -5439,2023-03-11,43497.94261493842,197,Urgent,,Normal,5439,80,0,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",OPEN -5440,2021-07-11,42186.70287432094,214,Elective,2021-08-06,Normal,5440,417,0,7,,,,DISCHARGED -5440,2019-07-30,31513.06488585425,295,Elective,2019-08-23,Normal,8413,250,4,28,,,,DISCHARGED -5441,2023-07-23,48974.16779572172,217,Elective,,Inconclusive,5441,168,3,9,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,OPEN -5442,2020-07-07,45776.19121582433,362,Elective,2020-07-21,Abnormal,5442,476,3,18,,,,DISCHARGED -5443,2021-04-03,48754.54852661361,357,Urgent,2021-04-28,Normal,5443,72,2,2,,,,DISCHARGED -5444,2021-11-17,49677.361740915374,227,Urgent,2021-12-02,Inconclusive,5444,140,2,19,,,,DISCHARGED -5446,2022-05-24,41944.96990492281,433,Elective,2022-06-14,Inconclusive,5446,69,4,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -5447,2021-02-02,25322.96010050705,354,Elective,2021-02-10,Inconclusive,5447,261,3,8,,,,DISCHARGED -5448,2021-09-28,34638.29465458193,219,Urgent,2021-10-03,Inconclusive,5448,339,0,8,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -5449,2021-05-05,49634.14975559975,471,Emergency,2021-05-20,Abnormal,5449,307,1,20,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5450,2019-05-17,27559.73375065933,151,Elective,2019-06-10,Abnormal,5450,244,4,27,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5451,2023-05-22,49681.632573105744,122,Urgent,2023-05-31,Inconclusive,5451,2,1,24,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5452,2019-02-25,39404.23567524226,204,Urgent,2019-03-09,Abnormal,5452,336,0,5,,,,DISCHARGED -5453,2019-11-25,14114.391134339276,327,Elective,2019-12-21,Inconclusive,5453,62,0,7,,,,DISCHARGED -5454,2020-03-31,48197.48511573792,354,Urgent,2020-04-21,Abnormal,5454,48,1,10,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -5455,2018-11-24,20635.83232207457,358,Urgent,2018-11-26,Normal,5455,75,4,7,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5456,2023-10-14,15011.811970797087,285,Emergency,2023-11-10,Abnormal,5456,367,1,11,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5457,2019-03-12,40490.06178194295,137,Emergency,2019-04-04,Inconclusive,5457,174,4,9,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -5458,2023-09-14,48296.69098795672,215,Elective,2023-09-26,Inconclusive,5458,108,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5459,2019-01-25,11435.536672536811,311,Emergency,2019-02-08,Normal,5459,182,2,3,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5460,2021-05-09,41209.828504691,245,Elective,2021-05-24,Inconclusive,5460,191,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5461,2022-01-09,19716.05716892109,123,Emergency,2022-01-30,Inconclusive,5461,64,3,19,,,,DISCHARGED -5462,2022-04-16,6280.45456453877,454,Emergency,2022-04-17,Normal,5462,336,0,5,,,,DISCHARGED -5463,2019-05-27,19455.289654116084,180,Urgent,2019-06-25,Abnormal,5463,450,2,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5464,2022-05-23,42544.932608938056,155,Elective,2022-06-03,Normal,5464,473,3,8,,,,DISCHARGED -5465,2019-10-03,26853.596179774904,419,Emergency,2019-10-31,Inconclusive,5465,270,4,22,,,,DISCHARGED -5466,2023-02-18,1752.278905377956,309,Elective,2023-03-13,Inconclusive,5466,99,4,4,,,,DISCHARGED -5467,2022-04-22,32598.26667597038,286,Urgent,2022-04-26,Abnormal,5467,31,1,20,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -5469,2019-10-25,40038.40258360773,116,Elective,2019-10-28,Normal,5469,351,1,23,,,,DISCHARGED -5470,2019-09-26,49317.80454141078,465,Elective,2019-09-28,Abnormal,5470,127,4,5,,,,DISCHARGED -5472,2023-01-16,23887.20644644489,432,Urgent,,Abnormal,5472,451,4,16,,,,OPEN -5473,2023-05-06,18095.28928942116,290,Emergency,,Abnormal,5473,401,1,16,,,,OPEN -5474,2020-03-21,47696.71156865114,358,Urgent,2020-04-17,Abnormal,5474,368,3,24,,,,DISCHARGED -5475,2021-07-26,25437.52023244568,238,Elective,2021-08-23,Normal,5475,338,0,23,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5476,2023-05-16,45112.76363156635,237,Urgent,2023-05-18,Inconclusive,5476,42,1,21,,,,DISCHARGED -5476,2021-01-07,28209.277420581533,333,Emergency,2021-02-06,Abnormal,7281,371,3,12,,,,DISCHARGED -5477,2022-10-01,47868.67773014483,226,Urgent,2022-10-08,Abnormal,5477,418,3,16,,,,DISCHARGED -5478,2020-03-29,4017.326220379593,304,Urgent,2020-04-02,Normal,5478,487,3,13,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -5479,2019-10-16,13827.383117892345,258,Urgent,2019-10-25,Normal,5479,77,2,1,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5480,2018-12-05,43790.45894859171,345,Urgent,2019-01-04,Abnormal,5480,313,2,25,,,,DISCHARGED -5481,2018-12-24,20507.74368592553,286,Urgent,2019-01-12,Inconclusive,5481,288,3,18,,,,DISCHARGED -5481,2019-01-10,27550.76728405913,373,Urgent,2019-01-22,Abnormal,9623,269,4,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -5482,2021-12-27,7843.595497328682,109,Emergency,2022-01-08,Normal,5482,161,2,27,,,,DISCHARGED -5483,2019-10-26,17841.742606173466,495,Elective,2019-11-13,Inconclusive,5483,188,1,2,,,,DISCHARGED -5484,2020-07-08,29167.34119712129,466,Emergency,2020-07-14,Inconclusive,5484,246,2,1,,,,DISCHARGED -5485,2021-02-07,33775.446353892046,209,Emergency,2021-02-16,Inconclusive,5485,387,4,27,,,,DISCHARGED -5486,2020-10-11,32706.281202055,325,Emergency,2020-10-30,Inconclusive,5486,215,0,1,,,,DISCHARGED -5487,2022-10-12,17257.5074224556,254,Emergency,2022-11-04,Inconclusive,5487,314,2,21,,,,DISCHARGED -5488,2021-03-10,9281.810846090568,327,Urgent,2021-03-21,Inconclusive,5488,412,3,6,,,,DISCHARGED -5489,2021-12-21,30107.17524570852,412,Urgent,2022-01-04,Abnormal,5489,338,3,3,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5490,2021-11-04,15596.575378101004,118,Emergency,2021-12-03,Normal,5490,389,3,16,,,,DISCHARGED -5491,2020-10-14,40532.34825106549,435,Emergency,2020-11-04,Normal,5491,376,0,5,,,,DISCHARGED -5492,2020-02-09,9251.907942613594,474,Emergency,2020-02-14,Normal,5492,480,4,6,,,,DISCHARGED -5493,2022-08-18,14673.780086112352,315,Emergency,2022-09-03,Normal,5493,432,1,19,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -5494,2022-09-09,5829.162439815217,125,Emergency,2022-10-03,Inconclusive,5494,167,4,5,,,,DISCHARGED -5495,2021-12-28,1171.4206586373248,354,Emergency,2022-01-08,Abnormal,5495,338,0,8,,,,DISCHARGED -5496,2020-03-06,6379.529525027945,266,Urgent,2020-03-07,Abnormal,5496,192,3,19,,,,DISCHARGED -5497,2023-09-14,13971.4243152323,498,Urgent,,Inconclusive,5497,452,4,27,,,,OPEN -5498,2020-06-08,20097.20931310368,146,Urgent,2020-06-24,Inconclusive,5498,282,1,29,,,,DISCHARGED -5499,2021-02-09,18985.709716127338,291,Elective,2021-02-23,Inconclusive,5499,335,3,25,,,,DISCHARGED -5500,2019-04-26,25853.24710900689,314,Urgent,2019-05-22,Abnormal,5500,389,1,3,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -5501,2023-01-14,9451.878754301972,252,Emergency,2023-02-08,Inconclusive,5501,487,2,25,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5502,2023-03-09,33844.07352681068,144,Urgent,,Normal,5502,12,1,27,,,,OPEN -5503,2021-02-27,8870.420105055236,136,Emergency,2021-02-28,Inconclusive,5503,239,3,4,,,,DISCHARGED -5504,2019-07-10,27241.209026550157,298,Emergency,2019-07-17,Inconclusive,5504,319,2,18,,,,DISCHARGED -5505,2019-01-10,27481.173241159617,152,Urgent,2019-01-12,Inconclusive,5505,445,3,9,,,,DISCHARGED -5506,2023-06-20,11801.951974206746,265,Elective,2023-07-06,Normal,5506,482,3,17,,,,DISCHARGED -5507,2021-02-24,43392.61962127786,267,Urgent,2021-03-09,Inconclusive,5507,146,2,14,,,,DISCHARGED -5508,2023-01-21,1848.5187892732315,407,Emergency,2023-02-20,Normal,5508,203,1,24,,,,DISCHARGED -5509,2019-06-22,10083.532618668076,440,Urgent,2019-07-08,Normal,5509,79,0,28,,,,DISCHARGED -5510,2021-02-02,1317.0555110624366,248,Urgent,2021-02-19,Abnormal,5510,378,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5511,2019-06-16,17853.73322610585,485,Emergency,2019-07-05,Inconclusive,5511,42,0,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -5512,2020-06-18,1090.4798751265444,274,Elective,2020-06-26,Abnormal,5512,457,0,4,,,,DISCHARGED -5513,2020-06-02,9870.166225123636,253,Emergency,2020-06-26,Inconclusive,5513,88,4,7,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5514,2022-08-26,1565.318159720578,228,Emergency,2022-08-29,Inconclusive,5514,147,0,21,,,,DISCHARGED -5515,2020-01-08,23444.41579454259,485,Emergency,2020-01-09,Normal,5515,94,2,21,,,,DISCHARGED -5516,2023-10-25,22192.03635583758,187,Elective,2023-10-26,Inconclusive,5516,451,0,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5517,2020-03-05,11915.283048303389,449,Emergency,2020-03-22,Normal,5517,427,3,19,,,,DISCHARGED -5520,2019-12-03,43119.38515863943,278,Urgent,2020-01-02,Inconclusive,5520,150,0,14,,,,DISCHARGED -5521,2023-07-12,20330.53178539943,195,Urgent,2023-07-15,Abnormal,5521,1,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -5522,2021-10-02,19406.62775687958,158,Urgent,2021-10-18,Abnormal,5522,375,2,18,,,,DISCHARGED -5523,2022-07-01,19313.957475013107,393,Emergency,2022-07-27,Inconclusive,5523,21,2,28,,,,DISCHARGED -5524,2020-03-24,12165.82119856502,296,Urgent,2020-04-03,Abnormal,5524,370,4,12,,,,DISCHARGED -5525,2023-01-17,37595.19110595963,151,Elective,2023-01-22,Inconclusive,5525,312,3,25,,,,DISCHARGED -5526,2022-10-14,15730.48708492797,486,Emergency,2022-10-18,Inconclusive,5526,484,2,27,,,,DISCHARGED -5527,2023-03-27,44514.06142166318,130,Urgent,2023-03-31,Normal,5527,327,1,26,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -5528,2020-03-22,38101.05263674001,104,Emergency,2020-04-14,Abnormal,5528,6,0,21,,,,DISCHARGED -5529,2022-06-21,17925.32225291541,384,Urgent,2022-07-17,Inconclusive,5529,205,2,20,,,,DISCHARGED -5530,2023-07-31,42151.09026458504,394,Urgent,2023-08-30,Normal,5530,439,1,9,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -5531,2020-07-09,26631.683125464417,243,Emergency,2020-07-10,Abnormal,5531,374,0,16,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -5532,2020-01-22,42214.17530048848,167,Elective,2020-02-18,Normal,5532,450,4,4,,,,DISCHARGED -5533,2020-11-17,5771.419236935768,102,Urgent,2020-11-26,Abnormal,5533,113,2,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5534,2021-05-18,11918.006576010368,490,Emergency,2021-05-28,Inconclusive,5534,271,2,16,,,,DISCHARGED -5535,2019-03-11,49438.0076061757,347,Emergency,2019-03-28,Abnormal,5535,82,1,3,,,,DISCHARGED -5536,2020-02-28,24878.26484293333,340,Urgent,2020-03-25,Inconclusive,5536,178,3,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5537,2022-04-15,30505.306210412044,498,Urgent,2022-04-18,Normal,5537,209,4,6,,,,DISCHARGED -5538,2020-07-01,36568.46414381794,168,Elective,2020-07-31,Abnormal,5538,499,3,24,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5539,2020-02-09,49909.18220645191,341,Elective,2020-03-02,Normal,5539,463,2,4,,,,DISCHARGED -5539,2019-11-25,23006.61167380606,250,Elective,2019-12-17,Abnormal,6981,327,3,7,,,,DISCHARGED -5540,2019-01-16,5077.590508859319,153,Elective,2019-01-29,Abnormal,5540,123,0,7,,,,DISCHARGED -5541,2022-10-22,5331.683334057343,283,Urgent,2022-11-12,Normal,5541,480,4,10,,,,DISCHARGED -5542,2022-01-17,18550.21627748104,353,Elective,2022-01-27,Normal,5542,112,3,8,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5543,2021-02-22,3428.931836088073,247,Emergency,2021-03-06,Abnormal,5543,11,0,18,,,,DISCHARGED -5544,2020-12-08,20096.283126410373,200,Urgent,2020-12-16,Abnormal,5544,125,1,18,,,,DISCHARGED -5546,2020-12-18,38710.7696472897,304,Emergency,2021-01-08,Inconclusive,5546,52,3,8,,,,DISCHARGED -5547,2018-12-05,7064.179237757457,418,Elective,2018-12-23,Inconclusive,5547,330,4,22,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5548,2022-11-14,23219.054089596983,308,Emergency,2022-12-14,Abnormal,5548,388,0,19,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5549,2021-03-19,38848.09466883852,238,Emergency,2021-04-07,Normal,5549,282,3,16,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -5550,2020-01-22,16387.39328439017,433,Urgent,2020-02-15,Abnormal,5550,139,1,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5551,2019-06-08,6515.100206365886,309,Urgent,2019-06-23,Abnormal,5551,400,3,6,,,,DISCHARGED -5552,2019-08-17,16645.647468518873,365,Emergency,2019-09-08,Inconclusive,5552,389,0,25,,,,DISCHARGED -5554,2021-03-31,33023.83276802979,463,Emergency,2021-04-02,Normal,5554,96,3,21,,,,DISCHARGED -5555,2020-12-05,24465.45861240059,489,Emergency,2020-12-22,Inconclusive,5555,4,4,2,,,,DISCHARGED -5556,2022-05-02,32860.62483981741,112,Urgent,2022-05-21,Normal,5556,56,2,29,,,,DISCHARGED -5557,2023-08-09,13981.360950147007,162,Elective,,Abnormal,5557,411,0,20,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -5558,2021-05-15,9995.572768966307,171,Emergency,2021-06-13,Inconclusive,5558,333,0,18,,,,DISCHARGED -5559,2021-07-09,4789.085848439766,366,Elective,2021-07-14,Normal,5559,68,0,7,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5560,2018-11-14,2510.8946413030926,192,Urgent,2018-11-22,Inconclusive,5560,117,0,4,,,,DISCHARGED -5561,2021-01-06,14355.618596031883,252,Emergency,2021-01-18,Normal,5561,375,3,25,,,,DISCHARGED -5562,2023-10-14,23527.84194061165,139,Elective,2023-10-26,Normal,5562,58,4,25,,,,DISCHARGED -5564,2020-01-15,29906.40318346309,375,Elective,2020-01-31,Normal,5564,32,1,5,,,,DISCHARGED -5567,2023-01-12,40213.047287467205,237,Emergency,,Inconclusive,5567,317,4,1,,,,OPEN -5568,2020-10-20,45927.48416195112,195,Elective,2020-10-27,Abnormal,5568,49,0,23,,,,DISCHARGED -5569,2023-07-17,44689.23117222465,346,Emergency,2023-08-15,Inconclusive,5569,367,3,24,,,,DISCHARGED -5570,2023-04-20,15917.577082387976,355,Emergency,2023-04-25,Abnormal,5570,488,3,18,,,,DISCHARGED -5571,2019-06-20,1488.2328137328843,405,Emergency,2019-07-10,Abnormal,5571,18,0,12,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -5572,2022-02-22,37711.81670605661,191,Emergency,2022-03-03,Abnormal,5572,213,3,5,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -5573,2022-06-30,34654.84177432377,476,Elective,2022-07-24,Normal,5573,196,0,5,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5574,2022-12-19,36354.02930778381,319,Urgent,2022-12-28,Abnormal,5574,378,4,1,,,,DISCHARGED -5575,2020-08-18,15438.610912911528,277,Elective,2020-08-31,Normal,5575,449,2,25,,,,DISCHARGED -5576,2020-03-18,34330.79074201225,380,Urgent,2020-04-02,Normal,5576,477,3,23,,,,DISCHARGED -5577,2022-12-01,9220.16754797901,116,Urgent,2022-12-07,Normal,5577,46,0,4,,,,DISCHARGED -5578,2020-05-20,44923.25744086493,438,Elective,2020-06-10,Inconclusive,5578,166,0,10,,,,DISCHARGED -5579,2020-11-07,22068.640535493523,213,Urgent,2020-12-06,Abnormal,5579,451,3,10,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5580,2022-10-25,42799.59918412646,289,Emergency,2022-10-31,Abnormal,5580,288,1,23,,,,DISCHARGED -5581,2021-08-03,47395.17921545352,143,Urgent,2021-08-22,Abnormal,5581,140,0,13,,,,DISCHARGED -5582,2023-01-15,39764.117164923344,309,Urgent,2023-01-22,Abnormal,5582,83,3,12,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5583,2021-12-31,49220.553079794336,367,Elective,2022-01-10,Normal,5583,181,0,29,,,,DISCHARGED -5584,2022-07-04,43274.20650763516,374,Urgent,2022-07-09,Normal,5584,390,1,7,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5586,2021-08-24,43446.94664550018,340,Urgent,2021-09-21,Inconclusive,5586,78,2,14,,,,DISCHARGED -5587,2019-04-17,14655.18387092568,399,Urgent,2019-04-22,Normal,5587,214,1,11,,,,DISCHARGED -5588,2020-10-22,9434.675755998407,397,Emergency,2020-11-20,Inconclusive,5588,13,4,2,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5590,2022-04-07,40815.12039678574,433,Elective,2022-04-10,Abnormal,5590,214,3,20,,,,DISCHARGED -5592,2021-02-20,24531.27398924686,184,Elective,2021-03-12,Abnormal,5592,402,1,22,,,,DISCHARGED -5593,2020-01-15,30795.47031065481,191,Emergency,2020-02-12,Abnormal,5593,127,2,4,,,,DISCHARGED -5594,2021-10-09,13207.348028691957,324,Emergency,2021-10-31,Normal,5594,309,0,5,,,,DISCHARGED -5595,2020-10-09,8040.212832703101,470,Emergency,2020-10-25,Normal,5595,476,3,1,,,,DISCHARGED -5596,2021-07-02,4161.722926333099,446,Emergency,2021-07-06,Normal,5596,247,1,7,,,,DISCHARGED -5597,2020-01-22,20070.28090316163,313,Urgent,2020-02-09,Abnormal,5597,403,2,4,,,,DISCHARGED -5598,2021-08-30,13139.890419137198,137,Emergency,2021-09-27,Normal,5598,28,1,21,,,,DISCHARGED -5600,2019-08-08,4162.362805840682,349,Emergency,2019-09-04,Normal,5600,279,4,16,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5601,2020-10-22,36661.40216194962,381,Emergency,2020-11-12,Abnormal,5601,337,3,25,,,,DISCHARGED -5602,2018-11-27,23045.374639854595,352,Elective,2018-12-10,Abnormal,5602,318,0,1,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5604,2023-10-24,3210.616254246515,214,Emergency,2023-11-04,Abnormal,5604,201,2,10,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -5605,2021-12-20,7461.403668350002,346,Emergency,2021-12-23,Abnormal,5605,360,1,3,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5606,2022-02-09,5270.709086060577,363,Urgent,2022-02-16,Inconclusive,5606,56,3,10,,,,DISCHARGED -5607,2020-04-12,7487.829803795133,269,Urgent,2020-05-06,Abnormal,5607,391,1,8,,,,DISCHARGED -5608,2019-01-02,36325.2152786961,258,Emergency,2019-01-21,Abnormal,5608,217,3,5,,,,DISCHARGED -5609,2018-12-09,22732.71868779149,156,Elective,2019-01-08,Abnormal,5609,61,4,23,,,,DISCHARGED -5610,2020-11-26,35233.89064235108,390,Urgent,2020-12-13,Abnormal,5610,156,1,1,,,,DISCHARGED -5611,2019-06-30,19740.5756484834,316,Emergency,2019-07-02,Normal,5611,201,4,25,,,,DISCHARGED -5612,2023-02-08,20388.025680574097,155,Emergency,2023-03-05,Inconclusive,5612,16,2,14,,,,DISCHARGED -5613,2020-12-15,46015.86130437745,472,Elective,2021-01-06,Normal,5613,321,4,4,,,,DISCHARGED -5614,2020-06-18,7884.663378720075,407,Elective,2020-06-29,Inconclusive,5614,5,3,27,,,,DISCHARGED -5615,2023-04-25,27739.58011355435,374,Elective,2023-05-11,Abnormal,5615,57,2,11,,,,DISCHARGED -5616,2019-05-16,44362.92171141461,167,Elective,2019-05-18,Normal,5616,324,1,12,,,,DISCHARGED -5617,2023-05-17,2821.05523952982,229,Emergency,2023-06-15,Inconclusive,5617,411,1,16,,,,DISCHARGED -5618,2022-08-06,48676.14664262107,480,Elective,2022-08-23,Normal,5618,317,3,3,,,,DISCHARGED -5619,2021-09-04,27585.57269442252,448,Emergency,2021-09-11,Inconclusive,5619,168,0,9,,,,DISCHARGED -5620,2023-03-18,27874.35597098301,359,Elective,2023-04-06,Inconclusive,5620,452,0,0,,,,DISCHARGED -5621,2020-04-24,11002.91140641999,385,Emergency,2020-05-09,Inconclusive,5621,81,1,10,,,,DISCHARGED -5622,2021-01-23,45881.272449917866,226,Emergency,2021-02-10,Abnormal,5622,473,3,15,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -5623,2021-11-15,25853.706752899558,487,Emergency,2021-11-30,Normal,5623,467,0,10,,,,DISCHARGED -5624,2021-10-06,48665.55069627846,401,Emergency,2021-11-03,Abnormal,5624,424,4,8,,,,DISCHARGED -5625,2023-10-05,42186.368950674754,258,Emergency,2023-10-23,Normal,5625,432,1,1,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5626,2020-08-04,31737.40129078574,122,Elective,2020-08-10,Abnormal,5626,218,4,6,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5627,2020-04-07,15823.579218098175,317,Urgent,2020-04-20,Normal,5627,176,3,18,,,,DISCHARGED -5628,2023-05-09,28350.11369627051,149,Emergency,2023-05-14,Normal,5628,203,4,29,,,,DISCHARGED -5629,2021-12-31,21264.44562119641,212,Emergency,2022-01-23,Inconclusive,5629,70,0,17,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -5630,2021-07-13,4300.140475867282,190,Urgent,2021-08-03,Inconclusive,5630,386,0,28,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5632,2019-04-19,42177.74827463338,235,Elective,2019-05-02,Normal,5632,265,2,19,,,,DISCHARGED -5633,2022-10-27,48154.36869166793,476,Elective,2022-11-24,Normal,5633,97,1,6,,,,DISCHARGED -5634,2022-02-23,23546.824236261076,165,Elective,2022-03-01,Abnormal,5634,344,3,22,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -5635,2023-02-04,3827.47615749252,303,Emergency,2023-03-03,Inconclusive,5635,290,1,8,,,,DISCHARGED -5636,2023-07-28,46966.75584267557,331,Urgent,,Inconclusive,5636,207,4,11,,,,OPEN -5637,2019-03-25,49423.49523302996,184,Emergency,2019-04-15,Abnormal,5637,1,3,28,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5638,2019-02-09,8357.29228941246,175,Emergency,2019-02-13,Abnormal,5638,123,3,2,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5639,2022-12-08,6158.640815770521,226,Emergency,2023-01-05,Normal,5639,279,0,22,,,,DISCHARGED -5640,2022-06-26,35905.18892706407,441,Urgent,2022-07-26,Normal,5640,73,4,21,,,,DISCHARGED -5641,2021-01-14,28555.815041452966,316,Elective,2021-01-26,Normal,5641,165,0,25,,,,DISCHARGED -5642,2023-01-06,15258.262477474316,167,Emergency,2023-01-09,Abnormal,5642,21,0,15,,,,DISCHARGED -5643,2019-12-31,6602.251287758873,372,Urgent,2020-01-24,Abnormal,5643,153,2,6,,,,DISCHARGED -5644,2019-06-06,43419.95581722009,316,Emergency,2019-06-07,Inconclusive,5644,426,0,22,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5645,2021-02-09,47211.49182779642,211,Urgent,2021-02-18,Normal,5645,438,1,25,,,,DISCHARGED -5647,2023-08-12,36132.48816773328,253,Urgent,2023-08-15,Inconclusive,5647,294,3,4,,,,DISCHARGED -5648,2023-01-17,11398.30961281586,220,Emergency,,Normal,5648,218,0,24,,,,OPEN -5649,2022-01-03,48089.11756732609,312,Elective,2022-01-16,Inconclusive,5649,156,1,22,,,,DISCHARGED -5650,2020-08-03,2947.8440318769035,228,Urgent,2020-08-27,Normal,5650,494,4,6,,,,DISCHARGED -5652,2021-11-20,26213.02241810872,489,Urgent,2021-12-17,Normal,5652,229,3,27,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -5653,2020-09-02,5323.758450915077,192,Elective,2020-09-26,Abnormal,5653,19,4,29,,,,DISCHARGED -5654,2023-10-25,34345.81066804729,193,Emergency,,Abnormal,5654,474,1,18,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5655,2022-09-20,25252.626807088083,492,Emergency,2022-10-03,Normal,5655,40,4,16,,,,DISCHARGED -5656,2020-05-27,4615.153353499796,492,Elective,2020-06-22,Inconclusive,5656,437,4,15,,,,DISCHARGED -5659,2023-04-02,8927.207797682033,252,Emergency,2023-04-26,Inconclusive,5659,147,4,29,,,,DISCHARGED -5660,2020-07-13,37583.68177193296,221,Urgent,2020-08-01,Inconclusive,5660,107,0,29,,,,DISCHARGED -5661,2019-07-31,30478.781418852614,476,Urgent,2019-08-18,Normal,5661,402,0,20,,,,DISCHARGED -5662,2023-01-13,4184.293920628197,271,Emergency,,Inconclusive,5662,83,0,23,,,,OPEN -5663,2019-10-24,4130.883390064402,227,Emergency,2019-11-02,Abnormal,5663,482,3,20,,,,DISCHARGED -5663,2020-02-01,34177.07794912983,282,Elective,2020-02-26,Inconclusive,9286,366,1,25,,,,DISCHARGED -5664,2019-07-26,26743.861006390787,247,Urgent,2019-07-28,Normal,5664,321,0,18,,,,DISCHARGED -5665,2022-02-06,9840.83120603295,128,Emergency,2022-02-09,Inconclusive,5665,413,4,24,,,,DISCHARGED -5667,2022-05-27,12251.998892896703,119,Elective,2022-06-18,Abnormal,5667,308,4,17,,,,DISCHARGED -5668,2020-05-06,15197.400021202966,113,Urgent,2020-05-18,Abnormal,5668,289,4,18,,,,DISCHARGED -5668,2019-11-25,5316.358466500731,463,Emergency,2019-12-25,Inconclusive,6242,405,4,27,,,,DISCHARGED -5668,2021-07-18,22756.839328326983,426,Urgent,2021-08-03,Inconclusive,7157,322,2,3,,,,DISCHARGED -5668,2018-11-05,10591.224896961778,489,Urgent,2018-11-06,Abnormal,8212,133,3,25,,,,DISCHARGED -5668,2019-10-26,28633.40747210143,188,Emergency,2019-10-28,Inconclusive,8627,206,1,0,,,,DISCHARGED -5668,2023-07-10,5866.170886251431,376,Urgent,,Normal,9748,282,1,26,,,,OPEN -5668,2023-06-01,41866.85304340323,319,Emergency,2023-06-26,Inconclusive,9804,265,0,3,,,,DISCHARGED -5669,2023-01-06,8763.035858471427,112,Elective,2023-01-08,Normal,5669,72,2,3,,,,DISCHARGED -5670,2020-10-27,15695.611575715258,307,Emergency,2020-11-14,Inconclusive,5670,480,1,8,,,,DISCHARGED -5671,2021-09-07,36737.00274310557,140,Urgent,2021-09-28,Inconclusive,5671,351,3,7,,,,DISCHARGED -5672,2021-02-11,27633.871154691664,442,Emergency,2021-02-23,Inconclusive,5672,47,4,1,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5673,2021-03-23,14923.44447975883,217,Urgent,2021-03-27,Inconclusive,5673,325,0,28,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5674,2023-07-01,14987.01155571157,369,Emergency,,Normal,5674,232,3,22,,,,OPEN -5675,2021-04-02,49678.36460338836,375,Emergency,2021-04-12,Abnormal,5675,442,1,5,,,,DISCHARGED -5675,2020-01-09,49541.88121075537,301,Urgent,2020-01-17,Inconclusive,7180,99,2,22,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -5676,2020-05-09,13871.759919105569,338,Urgent,2020-05-21,Abnormal,5676,58,0,10,,,,DISCHARGED -5677,2021-06-24,4315.537178870989,499,Emergency,2021-07-22,Inconclusive,5677,257,1,3,,,,DISCHARGED -5678,2018-12-06,44749.88722852461,152,Emergency,2018-12-22,Normal,5678,412,0,29,,,,DISCHARGED -5679,2022-01-18,4608.005854627593,174,Urgent,2022-02-11,Inconclusive,5679,451,1,13,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5680,2022-07-15,2406.8229283273627,334,Emergency,2022-07-25,Abnormal,5680,64,4,20,,,,DISCHARGED -5681,2021-12-25,10018.58276582826,105,Urgent,2021-12-28,Abnormal,5681,82,2,21,,,,DISCHARGED -5682,2019-11-10,47696.63249222352,366,Elective,2019-11-16,Inconclusive,5682,153,4,8,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -5683,2022-04-28,3055.7876552651387,273,Urgent,2022-05-17,Normal,5683,472,1,1,,,,DISCHARGED -5683,2022-06-20,33799.18645994579,494,Elective,2022-07-17,Abnormal,9417,265,3,26,,,,DISCHARGED -5684,2019-04-25,8512.098413981746,361,Emergency,2019-05-02,Normal,5684,308,4,24,,,,DISCHARGED -5685,2021-03-12,27327.57372010893,456,Urgent,2021-04-11,Normal,5685,78,3,25,,,,DISCHARGED -5686,2021-11-17,29510.074555864503,234,Emergency,2021-12-01,Normal,5686,314,1,0,,,,DISCHARGED -5687,2022-03-11,21010.370082254976,405,Emergency,2022-03-17,Normal,5687,149,2,3,,,,DISCHARGED -5688,2019-06-18,12758.226521406705,480,Emergency,2019-06-23,Normal,5688,434,3,11,,,,DISCHARGED -5689,2019-07-28,21172.06906887447,167,Urgent,2019-08-03,Inconclusive,5689,47,1,4,,,,DISCHARGED -5689,2021-06-22,40355.01784982245,370,Emergency,2021-07-10,Normal,7125,404,3,8,,,,DISCHARGED -5690,2021-09-24,30360.96204616538,314,Urgent,2021-09-25,Normal,5690,378,4,21,,,,DISCHARGED -5691,2022-02-01,37549.91348785777,237,Elective,2022-02-23,Normal,5691,247,1,3,,,,DISCHARGED -5692,2020-11-22,42775.47614220724,398,Emergency,2020-12-05,Normal,5692,277,4,15,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -5693,2019-11-18,17838.96637972813,326,Emergency,2019-12-13,Abnormal,5693,355,0,1,,,,DISCHARGED -5694,2022-03-03,13559.55845615191,270,Emergency,2022-03-18,Normal,5694,97,1,15,,,,DISCHARGED -5695,2019-10-22,34461.72131606651,210,Urgent,2019-11-09,Normal,5695,413,3,15,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5696,2023-05-12,47400.4582329689,358,Emergency,,Abnormal,5696,24,0,20,,,,OPEN -5698,2023-01-26,33094.70879573377,299,Urgent,2023-02-13,Normal,5698,492,4,23,,,,DISCHARGED -5699,2020-03-20,16573.236706481475,117,Urgent,2020-04-07,Normal,5699,283,4,23,,,,DISCHARGED -5700,2023-08-11,38498.71041560747,376,Urgent,2023-08-21,Inconclusive,5700,448,3,21,,,,DISCHARGED -5701,2023-08-18,44787.0651182221,406,Emergency,2023-08-28,Normal,5701,368,0,10,,,,DISCHARGED -5702,2020-08-26,37341.84121302799,482,Elective,2020-09-05,Inconclusive,5702,300,2,0,,,,DISCHARGED -5703,2022-06-04,13858.04865939046,238,Elective,2022-06-28,Normal,5703,67,3,14,,,,DISCHARGED -5704,2019-08-30,36131.43860743503,291,Elective,2019-09-10,Inconclusive,5704,6,4,23,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5705,2023-01-02,41861.69128051537,168,Urgent,2023-01-09,Abnormal,5705,304,1,3,,,,DISCHARGED -5706,2022-04-11,5930.110389450016,148,Emergency,2022-05-09,Inconclusive,5706,136,0,29,,,,DISCHARGED -5707,2019-09-22,4840.492342113495,388,Elective,2019-10-03,Abnormal,5707,163,2,17,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5708,2021-07-28,1827.4294799765569,379,Urgent,2021-08-21,Abnormal,5708,82,1,16,,,,DISCHARGED -5709,2022-08-29,48399.47492514278,292,Elective,2022-09-13,Normal,5709,384,0,6,,,,DISCHARGED -5710,2022-09-09,44965.81453031131,170,Urgent,2022-10-09,Inconclusive,5710,137,3,17,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -5711,2021-08-29,46584.580898071865,471,Elective,2021-09-27,Normal,5711,419,3,12,,,,DISCHARGED -5712,2022-06-08,48297.63335716982,243,Emergency,2022-06-14,Inconclusive,5712,72,0,19,,,,DISCHARGED -5714,2023-05-11,5136.397471761879,151,Urgent,2023-06-08,Abnormal,5714,236,2,19,,,,DISCHARGED -5715,2022-07-30,16331.063193536294,263,Emergency,2022-08-01,Inconclusive,5715,45,0,28,,,,DISCHARGED -5716,2020-09-17,16503.62973886917,299,Emergency,2020-09-22,Inconclusive,5716,105,1,9,,,,DISCHARGED -5717,2022-07-08,20522.829017123157,489,Urgent,2022-07-09,Inconclusive,5717,415,1,0,,,,DISCHARGED -5718,2021-08-12,14164.096932117964,462,Emergency,2021-08-30,Abnormal,5718,287,3,1,,,,DISCHARGED -5719,2023-09-17,5370.047013167488,174,Urgent,,Inconclusive,5719,261,0,16,,,,OPEN -5720,2019-01-06,28846.91754780325,342,Elective,2019-02-01,Inconclusive,5720,175,3,21,,,,DISCHARGED -5721,2020-09-26,47367.3561497254,485,Elective,2020-10-08,Abnormal,5721,165,2,28,,,,DISCHARGED -5723,2021-05-13,48557.01602548985,447,Elective,2021-05-21,Abnormal,5723,144,1,2,,,,DISCHARGED -5724,2021-10-24,19061.18429876577,491,Urgent,2021-11-13,Inconclusive,5724,329,4,16,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -5725,2019-07-28,22114.08045284868,370,Urgent,2019-08-13,Normal,5725,369,4,11,,,,DISCHARGED -5726,2019-03-09,24600.56607334664,151,Elective,2019-04-02,Abnormal,5726,282,0,23,,,,DISCHARGED -5727,2022-05-04,39101.73884494055,219,Elective,2022-06-01,Inconclusive,5727,53,0,29,,,,DISCHARGED -5728,2019-10-07,11481.075740603388,216,Urgent,2019-11-02,Inconclusive,5728,177,4,11,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5729,2019-01-13,33421.42863810723,463,Elective,2019-02-12,Normal,5729,418,0,29,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5730,2020-05-21,32683.2699086164,331,Elective,2020-06-20,Normal,5730,243,1,19,,,,DISCHARGED -5731,2023-03-27,42156.565468306886,375,Emergency,,Abnormal,5731,340,2,9,,,,OPEN -5731,2019-12-24,15914.248316226916,298,Emergency,2020-01-05,Normal,9021,126,2,6,,,,DISCHARGED -5731,2019-04-04,4639.5292352227225,127,Elective,2019-04-26,Abnormal,9370,408,3,9,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5731,2019-02-01,35425.886041243466,133,Emergency,2019-02-24,Normal,9895,411,1,17,,,,DISCHARGED -5732,2020-03-13,27194.710328396024,170,Emergency,2020-04-03,Inconclusive,5732,366,0,21,,,,DISCHARGED -5733,2023-01-03,23157.190000952392,134,Elective,2023-01-22,Abnormal,5733,270,0,5,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5734,2019-01-23,37299.71682528774,255,Emergency,2019-01-26,Inconclusive,5734,131,3,6,,,,DISCHARGED -5735,2022-03-26,15571.276439596191,146,Elective,2022-04-05,Normal,5735,92,3,27,,,,DISCHARGED -5736,2020-11-27,43616.74802278546,330,Emergency,2020-12-18,Inconclusive,5736,378,0,16,,,,DISCHARGED -5737,2022-12-16,49867.725384729696,431,Elective,2023-01-10,Inconclusive,5737,72,0,29,,,,DISCHARGED -5738,2019-06-04,25729.725925231505,339,Emergency,2019-06-30,Abnormal,5738,410,1,11,,,,DISCHARGED -5738,2021-05-15,16743.45490083031,221,Urgent,2021-05-29,Abnormal,7106,409,3,16,,,,DISCHARGED -5739,2022-09-17,20584.482012440338,475,Urgent,2022-10-08,Abnormal,5739,402,1,17,,,,DISCHARGED -5740,2022-06-09,48478.61993394317,433,Urgent,2022-06-14,Inconclusive,5740,247,0,13,,,,DISCHARGED -5741,2023-08-20,14300.264899069169,357,Emergency,2023-09-01,Inconclusive,5741,347,4,10,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -5742,2023-10-30,12727.74271497461,232,Emergency,2023-10-31,Abnormal,5742,272,4,1,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5743,2020-09-12,34819.71541971613,441,Emergency,2020-09-18,Inconclusive,5743,42,0,20,,,,DISCHARGED -5744,2023-08-21,17102.994488013057,245,Elective,,Inconclusive,5744,376,3,0,,,,OPEN -5745,2019-01-21,26675.96281068601,376,Emergency,2019-02-11,Normal,5745,40,4,10,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5746,2022-03-20,17266.817313593703,150,Urgent,2022-04-19,Normal,5746,169,3,1,,,,DISCHARGED -5747,2021-03-23,7852.092398446937,390,Elective,2021-03-26,Normal,5747,433,4,15,,,,DISCHARGED -5748,2018-12-21,22030.02937109001,208,Elective,2019-01-10,Normal,5748,211,3,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5749,2023-09-06,31149.52596576533,352,Urgent,,Abnormal,5749,492,4,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,OPEN -5750,2020-02-25,28148.24210457216,143,Emergency,2020-03-13,Normal,5750,167,3,19,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -5751,2022-12-25,41879.28204647698,366,Urgent,2022-12-31,Abnormal,5751,38,1,0,,,,DISCHARGED -5752,2019-06-03,18338.40500413429,212,Urgent,2019-06-22,Normal,5752,368,3,20,,,,DISCHARGED -5753,2021-08-22,35009.883490712666,409,Elective,2021-09-08,Inconclusive,5753,244,1,19,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5754,2023-10-12,16597.119745348034,253,Emergency,2023-10-31,Abnormal,5754,150,1,7,,,,DISCHARGED -5755,2023-04-21,49184.02876672157,466,Urgent,2023-05-10,Abnormal,5755,110,0,18,,,,DISCHARGED -5756,2022-07-08,37180.4313427351,339,Emergency,2022-07-09,Inconclusive,5756,479,1,25,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5757,2019-03-15,7087.373851232525,467,Emergency,2019-04-08,Normal,5757,435,2,0,,,,DISCHARGED -5758,2022-06-28,15995.36089902244,434,Emergency,2022-07-16,Inconclusive,5758,46,1,29,,,,DISCHARGED -5759,2020-11-09,40950.12132059218,118,Elective,2020-11-15,Inconclusive,5759,62,3,28,,,,DISCHARGED -5760,2020-09-02,41684.39817453037,241,Urgent,2020-09-12,Inconclusive,5760,224,1,25,,,,DISCHARGED -5761,2020-01-21,10899.542055880904,412,Elective,2020-01-29,Inconclusive,5761,365,3,4,,,,DISCHARGED -5762,2023-06-02,17289.84023678791,187,Urgent,,Normal,5762,68,3,29,,,,OPEN -5763,2019-04-14,33675.89134708535,422,Emergency,2019-05-05,Inconclusive,5763,298,2,0,,,,DISCHARGED -5764,2020-11-14,45548.51267032782,386,Emergency,2020-11-30,Inconclusive,5764,431,1,10,,,,DISCHARGED -5765,2023-08-26,39463.93182443523,186,Elective,2023-09-17,Normal,5765,289,1,20,,,,DISCHARGED -5766,2022-09-18,11269.907149120894,110,Elective,2022-09-24,Abnormal,5766,295,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5768,2023-02-09,43248.94433700831,108,Elective,,Normal,5768,202,4,4,,,,OPEN -5769,2019-10-31,18496.24237792658,194,Emergency,2019-11-28,Inconclusive,5769,60,0,1,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5770,2021-08-25,18541.16726544233,108,Elective,2021-08-27,Inconclusive,5770,433,3,12,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5772,2019-01-07,1669.043673886163,341,Elective,2019-02-04,Normal,5772,450,2,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -5773,2022-07-24,28661.7431811927,484,Elective,2022-08-06,Normal,5773,317,4,25,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5774,2022-12-18,26959.180753281984,376,Urgent,2022-12-25,Inconclusive,5774,313,1,24,,,,DISCHARGED -5775,2023-03-24,43552.75800014094,430,Urgent,2023-04-07,Normal,5775,160,0,11,,,,DISCHARGED -5776,2019-12-29,32019.79811285136,185,Elective,2020-01-10,Normal,5776,330,2,13,,,,DISCHARGED -5777,2022-01-03,48948.33346927594,403,Urgent,2022-01-14,Inconclusive,5777,15,1,4,,,,DISCHARGED -5778,2019-11-07,21988.6038189477,276,Emergency,2019-11-22,Normal,5778,337,1,26,,,,DISCHARGED -5779,2022-02-08,43160.54187875836,351,Urgent,2022-02-22,Normal,5779,93,3,23,,,,DISCHARGED -5780,2019-06-02,23048.547981640208,123,Urgent,2019-06-25,Normal,5780,303,3,9,,,,DISCHARGED -5781,2022-01-25,13801.225579838456,245,Emergency,2022-02-11,Normal,5781,137,4,19,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -5781,2019-03-01,1836.1561521746696,423,Urgent,2019-03-19,Normal,5960,337,4,1,,,,DISCHARGED -5782,2020-04-17,16258.18443999315,137,Emergency,2020-04-28,Inconclusive,5782,37,1,3,,,,DISCHARGED -5784,2023-09-15,4333.481416092538,286,Emergency,2023-09-19,Abnormal,5784,126,1,11,,,,DISCHARGED -5785,2023-01-14,10906.847568652323,433,Elective,2023-01-26,Normal,5785,274,4,10,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5786,2022-06-10,30886.826337844217,357,Elective,2022-07-02,Abnormal,5786,163,4,3,,,,DISCHARGED -5787,2021-03-17,44016.25337996813,368,Elective,2021-04-16,Normal,5787,442,1,10,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -5788,2018-12-22,47262.23550757792,188,Emergency,2019-01-02,Normal,5788,318,2,8,,,,DISCHARGED -5789,2020-04-08,19820.57848891653,393,Elective,2020-04-23,Abnormal,5789,76,1,9,,,,DISCHARGED -5790,2021-04-25,42914.2329374088,215,Urgent,2021-05-10,Abnormal,5790,173,2,26,,,,DISCHARGED -5791,2023-02-14,28901.18562768552,209,Emergency,2023-03-04,Abnormal,5791,386,2,5,,,,DISCHARGED -5792,2022-10-13,8845.568430814148,277,Urgent,2022-10-29,Abnormal,5792,457,1,14,,,,DISCHARGED -5793,2019-07-29,21599.183580621844,337,Emergency,2019-08-25,Inconclusive,5793,357,0,9,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -5794,2022-09-28,19912.007190439665,410,Elective,2022-10-26,Normal,5794,320,4,21,,,,DISCHARGED -5795,2020-12-01,45172.92417242992,357,Elective,2020-12-14,Abnormal,5795,375,3,20,,,,DISCHARGED -5796,2022-10-03,46194.69075171524,342,Urgent,2022-10-20,Abnormal,5796,90,1,5,,,,DISCHARGED -5797,2021-10-13,44560.56556772887,236,Urgent,2021-10-19,Abnormal,5797,237,2,0,,,,DISCHARGED -5798,2020-03-20,22729.197925047607,111,Emergency,2020-03-21,Inconclusive,5798,263,1,28,,,,DISCHARGED -5799,2023-02-13,29150.76872397366,199,Emergency,,Inconclusive,5799,178,4,20,,,,OPEN -5800,2020-01-20,17479.52945715791,109,Urgent,2020-02-02,Normal,5800,493,2,27,,,,DISCHARGED -5801,2021-08-18,20701.614613882208,124,Elective,2021-09-03,Normal,5801,489,3,21,,,,DISCHARGED -5802,2022-02-09,47339.85597283217,399,Emergency,2022-03-05,Inconclusive,5802,208,3,23,,,,DISCHARGED -5803,2019-08-07,45345.552231960144,175,Urgent,2019-08-25,Inconclusive,5803,72,3,19,,,,DISCHARGED -5804,2022-02-25,23026.72608087841,423,Emergency,2022-03-12,Normal,5804,389,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5805,2023-04-05,32135.579670758147,294,Urgent,,Normal,5805,106,2,20,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",OPEN -5806,2023-08-29,45500.46917087554,274,Urgent,,Normal,5806,344,2,3,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,OPEN -5807,2023-10-14,21874.444050306425,401,Emergency,,Inconclusive,5807,294,0,22,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",OPEN -5808,2022-04-13,49461.82935192647,133,Elective,2022-04-17,Inconclusive,5808,368,2,25,,,,DISCHARGED -5809,2019-05-08,14622.61692455964,213,Urgent,2019-05-15,Abnormal,5809,443,0,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -5810,2021-01-16,41563.12844469934,396,Emergency,2021-01-29,Normal,5810,283,1,13,,,,DISCHARGED -5811,2022-12-23,6112.92786961727,452,Emergency,2023-01-17,Inconclusive,5811,352,4,19,,,,DISCHARGED -5812,2019-08-14,30093.07734515799,408,Emergency,2019-08-27,Inconclusive,5812,181,3,21,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5813,2019-12-30,17640.524951930267,182,Emergency,2020-01-10,Normal,5813,36,0,28,,,,DISCHARGED -5813,2019-12-23,24046.4840152496,221,Elective,2020-01-20,Abnormal,9546,136,0,19,,,,DISCHARGED -5813,2022-03-22,39389.91754865901,466,Elective,2022-03-25,Inconclusive,9606,337,0,27,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -5814,2022-03-05,20567.98716184872,354,Elective,2022-03-26,Inconclusive,5814,55,1,7,,,,DISCHARGED -5815,2023-01-01,11276.382204336329,404,Elective,2023-01-08,Abnormal,5815,186,0,10,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5817,2022-10-12,23693.54529595784,136,Urgent,2022-10-24,Normal,5817,340,4,14,,,,DISCHARGED -5818,2023-10-14,14988.35038672491,246,Urgent,,Normal,5818,257,4,18,,,,OPEN -5819,2022-01-05,24565.706568687936,343,Elective,2022-02-04,Inconclusive,5819,444,3,7,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5820,2021-07-16,23997.705239597235,197,Elective,2021-08-06,Normal,5820,57,1,12,,,,DISCHARGED -5821,2023-05-28,42406.43853907525,256,Urgent,2023-05-30,Inconclusive,5821,362,4,17,,,,DISCHARGED -5822,2023-07-29,10670.187689967408,241,Emergency,2023-08-17,Abnormal,5822,122,2,21,,,,DISCHARGED -5823,2021-10-13,35101.878563323065,362,Urgent,2021-10-24,Inconclusive,5823,187,2,23,,,,DISCHARGED -5824,2023-07-20,45576.31435997374,174,Elective,2023-07-29,Inconclusive,5824,229,2,16,,,,DISCHARGED -5825,2023-01-28,19029.32154932333,348,Emergency,2023-02-07,Normal,5825,167,0,5,,,,DISCHARGED -5826,2022-07-21,36199.433172516416,201,Elective,2022-08-12,Normal,5826,419,0,24,,,,DISCHARGED -5827,2021-04-20,11921.672978391598,472,Emergency,2021-04-29,Abnormal,5827,113,2,14,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5828,2020-08-21,45547.95078050395,369,Elective,2020-08-31,Abnormal,5828,251,3,12,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -5829,2023-04-30,13478.190700482011,407,Urgent,,Abnormal,5829,106,3,25,,,,OPEN -5830,2021-12-27,24698.614404109256,410,Emergency,2022-01-22,Abnormal,5830,36,0,25,,,,DISCHARGED -5831,2018-11-28,43224.333545599846,437,Urgent,2018-12-26,Normal,5831,334,2,17,,,,DISCHARGED -5832,2022-07-22,46937.14038463809,167,Elective,2022-08-07,Normal,5832,91,3,10,,,,DISCHARGED -5833,2022-06-26,38345.28775896247,239,Elective,2022-06-30,Inconclusive,5833,17,0,12,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5835,2019-02-14,41935.419689399416,127,Urgent,2019-02-15,Normal,5835,353,2,0,,,,DISCHARGED -5836,2020-03-30,22530.169639872976,277,Emergency,2020-03-31,Inconclusive,5836,62,1,17,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5838,2020-01-03,4280.940044330634,206,Elective,2020-01-05,Normal,5838,149,2,4,,,,DISCHARGED -5839,2019-02-16,3783.910700582603,204,Urgent,2019-03-12,Normal,5839,138,2,5,,,,DISCHARGED -5840,2019-06-30,25294.405537941053,372,Emergency,2019-07-09,Abnormal,5840,185,4,0,,,,DISCHARGED -5842,2023-06-17,6183.514532732913,154,Emergency,,Abnormal,5842,184,4,6,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5844,2020-12-22,40093.084438571605,439,Urgent,2020-12-30,Abnormal,5844,204,1,26,,,,DISCHARGED -5845,2021-10-31,37497.77577624628,137,Urgent,2021-11-01,Inconclusive,5845,259,1,3,,,,DISCHARGED -5846,2022-09-17,14907.71956604352,328,Urgent,2022-09-24,Abnormal,5846,213,2,8,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -5849,2023-08-05,14673.462505964046,338,Elective,2023-08-13,Normal,5849,255,3,14,,,,DISCHARGED -5850,2019-08-28,3943.8805216772025,429,Emergency,2019-09-21,Normal,5850,134,1,5,,,,DISCHARGED -5851,2021-02-07,12521.845758159638,324,Urgent,2021-03-05,Abnormal,5851,60,2,24,,,,DISCHARGED -5852,2022-07-19,36083.19334909812,183,Emergency,2022-07-27,Abnormal,5852,362,0,16,,,,DISCHARGED -5853,2020-11-09,47055.45338132002,267,Urgent,2020-11-11,Normal,5853,309,4,19,,,,DISCHARGED -5854,2019-04-12,46377.806199025865,128,Elective,2019-04-28,Inconclusive,5854,87,3,17,,,,DISCHARGED -5855,2023-02-28,10562.514249173571,374,Urgent,2023-03-09,Normal,5855,323,2,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5856,2020-11-08,27586.898410261107,282,Emergency,2020-11-18,Normal,5856,475,0,3,,,,DISCHARGED -5857,2019-04-18,25312.26601218233,319,Elective,2019-05-17,Abnormal,5857,206,4,8,,,,DISCHARGED -5858,2022-12-08,11701.21626092594,192,Urgent,2023-01-03,Abnormal,5858,128,0,13,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -5859,2020-01-16,24169.977115139394,268,Elective,2020-02-05,Normal,5859,310,2,2,,,,DISCHARGED -5860,2022-10-13,5524.870740298888,174,Urgent,2022-11-01,Inconclusive,5860,2,1,0,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -5861,2022-08-01,4596.182829135514,374,Emergency,2022-08-09,Normal,5861,461,4,26,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -5863,2020-08-07,19663.114019123248,352,Elective,2020-08-22,Normal,5863,421,0,28,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -5865,2020-05-30,9318.907695455531,337,Emergency,2020-06-29,Normal,5865,241,1,10,,,,DISCHARGED -5866,2020-11-24,2641.4682385551496,351,Elective,2020-12-03,Normal,5866,120,3,0,,,,DISCHARGED -5867,2020-07-25,42287.61877335708,354,Emergency,2020-08-15,Abnormal,5867,384,2,11,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5868,2022-11-27,4496.148198774687,263,Urgent,2022-12-18,Normal,5868,101,2,24,,,,DISCHARGED -5869,2023-08-15,20852.540602137957,177,Urgent,2023-09-03,Normal,5869,37,4,8,,,,DISCHARGED -5869,2021-11-11,49476.7762061845,125,Urgent,2021-12-09,Abnormal,7544,340,0,4,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5870,2021-07-24,44651.93803562648,288,Elective,2021-08-13,Abnormal,5870,495,3,14,,,,DISCHARGED -5871,2020-07-21,26437.35836345445,136,Emergency,2020-08-08,Abnormal,5871,412,4,17,,,,DISCHARGED -5872,2020-12-24,18509.19644282935,222,Elective,2021-01-19,Abnormal,5872,132,4,8,,,,DISCHARGED -5873,2020-04-29,17594.434358445425,217,Urgent,2020-05-13,Inconclusive,5873,496,0,12,,,,DISCHARGED -5874,2019-04-07,15083.367820053334,491,Elective,2019-04-25,Inconclusive,5874,201,3,27,,,,DISCHARGED -5875,2021-04-10,26555.03714641204,192,Urgent,2021-04-15,Inconclusive,5875,347,0,12,,,,DISCHARGED -5876,2022-07-20,41357.24721302806,317,Emergency,2022-07-24,Abnormal,5876,20,2,23,,,,DISCHARGED -5877,2022-11-27,48381.62277487587,261,Elective,2022-12-25,Abnormal,5877,241,1,12,,,,DISCHARGED -5878,2023-10-26,39030.95085035015,349,Emergency,2023-11-04,Abnormal,5878,454,2,26,,,,DISCHARGED -5879,2019-12-02,26175.500439449104,425,Urgent,2019-12-12,Normal,5879,450,2,9,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -5880,2019-07-15,45227.78675798777,461,Emergency,2019-07-24,Abnormal,5880,108,4,9,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5881,2019-05-24,14423.58591974906,444,Elective,2019-06-18,Inconclusive,5881,302,2,21,,,,DISCHARGED -5882,2021-08-22,14930.015371629688,285,Emergency,2021-09-10,Abnormal,5882,83,3,6,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5884,2020-04-02,27047.85334383124,478,Urgent,2020-04-27,Inconclusive,5884,82,2,27,,,,DISCHARGED -5884,2019-06-30,30541.94990992974,138,Elective,2019-07-19,Inconclusive,7357,290,3,21,,,,DISCHARGED -5885,2023-03-02,24745.31389445365,495,Elective,,Normal,5885,451,0,4,,,,OPEN -5886,2020-07-06,13697.626454384575,113,Urgent,2020-08-01,Inconclusive,5886,68,4,19,,,,DISCHARGED -5887,2020-01-19,12601.533998081111,253,Emergency,2020-01-26,Abnormal,5887,128,3,6,,,,DISCHARGED -5887,2019-10-04,43030.53040830031,315,Urgent,2019-10-26,Inconclusive,6791,195,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5888,2019-08-01,18604.774225196896,371,Elective,2019-08-16,Inconclusive,5888,139,4,9,,,,DISCHARGED -5889,2020-06-17,42567.65533963311,293,Elective,2020-06-26,Inconclusive,5889,443,4,9,,,,DISCHARGED -5890,2023-05-29,38698.63254075844,143,Urgent,,Abnormal,5890,282,3,25,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -5891,2019-05-29,20091.351550050844,307,Urgent,2019-06-18,Inconclusive,5891,311,3,24,,,,DISCHARGED -5892,2021-10-28,40760.73241559383,307,Urgent,2021-11-12,Normal,5892,233,1,20,,,,DISCHARGED -5893,2021-08-02,24227.710939507822,394,Urgent,2021-08-19,Abnormal,5893,22,1,23,,,,DISCHARGED -5894,2020-11-02,5184.26988275542,414,Emergency,2020-11-20,Inconclusive,5894,152,4,27,,,,DISCHARGED -5895,2020-11-13,26915.193720158022,264,Urgent,2020-11-22,Normal,5895,276,1,12,,,,DISCHARGED -5896,2021-02-12,25215.012082755613,287,Urgent,2021-02-19,Abnormal,5896,60,2,14,,,,DISCHARGED -5897,2022-02-01,40903.985001991736,117,Emergency,2022-02-20,Abnormal,5897,318,0,27,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5898,2023-07-20,10116.998687717954,360,Emergency,,Abnormal,5898,377,4,27,,,,OPEN -5899,2020-07-10,16520.17027369717,391,Urgent,2020-07-17,Inconclusive,5899,51,0,5,,,,DISCHARGED -5900,2021-09-01,13536.916359878898,433,Emergency,2021-09-28,Inconclusive,5900,343,1,19,,,,DISCHARGED -5901,2020-08-14,23747.3833736443,424,Urgent,2020-08-17,Normal,5901,152,3,11,,,,DISCHARGED -5902,2020-11-27,22777.106392274614,477,Elective,2020-12-06,Normal,5902,236,4,18,,,,DISCHARGED -5903,2022-06-17,44082.366821003845,283,Elective,2022-07-07,Abnormal,5903,310,1,10,,,,DISCHARGED -5904,2021-12-19,12864.08301627652,325,Emergency,2021-12-30,Inconclusive,5904,301,2,5,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5905,2020-10-01,4746.56507262613,272,Emergency,2020-10-27,Inconclusive,5905,31,4,0,,,,DISCHARGED -5906,2021-08-07,37033.24584064084,312,Emergency,2021-08-28,Abnormal,5906,54,4,1,,,,DISCHARGED -5907,2020-02-19,48134.5593524709,304,Emergency,2020-03-20,Inconclusive,5907,351,3,22,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5908,2021-11-20,33099.51949697282,192,Elective,2021-12-20,Abnormal,5908,388,4,14,,,,DISCHARGED -5909,2023-08-30,30381.932790744137,195,Emergency,2023-09-11,Inconclusive,5909,35,3,3,,,,DISCHARGED -5910,2021-08-20,1599.6406981832902,389,Emergency,2021-08-24,Abnormal,5910,109,1,4,,,,DISCHARGED -5912,2019-11-23,24120.36757728615,196,Urgent,2019-12-01,Inconclusive,5912,489,2,14,,,,DISCHARGED -5913,2021-03-07,31298.845062980872,470,Elective,2021-04-06,Abnormal,5913,176,2,10,,,,DISCHARGED -5914,2023-05-01,3046.2018080691214,445,Emergency,2023-05-11,Abnormal,5914,361,4,9,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5915,2019-07-29,29813.539843456914,398,Elective,2019-08-13,Inconclusive,5915,313,4,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5916,2023-06-08,1616.9848923851412,424,Elective,,Abnormal,5916,294,1,1,,,,OPEN -5917,2021-12-06,25466.29126774474,387,Urgent,2021-12-15,Inconclusive,5917,335,3,19,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5918,2023-03-09,8911.507385719433,297,Elective,2023-03-28,Inconclusive,5918,96,2,23,,,,DISCHARGED -5919,2022-10-29,17659.82367043863,224,Emergency,2022-11-13,Inconclusive,5919,368,3,9,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -5920,2021-03-02,14332.36930516454,477,Emergency,2021-03-09,Abnormal,5920,212,1,19,,,,DISCHARGED -5921,2020-02-28,2789.1665426747923,269,Elective,2020-03-23,Abnormal,5921,316,2,29,,,,DISCHARGED -5922,2020-07-09,34704.978609524376,298,Urgent,2020-08-04,Abnormal,5922,136,2,2,,,,DISCHARGED -5923,2020-04-15,21558.994471884736,224,Urgent,2020-04-23,Inconclusive,5923,5,0,18,,,,DISCHARGED -5924,2023-08-26,26353.909437573453,446,Urgent,2023-09-21,Abnormal,5924,498,1,27,,,,DISCHARGED -5925,2020-11-16,9323.997217684306,118,Urgent,2020-12-10,Abnormal,5925,108,1,4,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5926,2019-12-14,37726.861035896494,185,Urgent,2020-01-10,Abnormal,5926,34,0,2,,,,DISCHARGED -5927,2019-10-18,34550.637098272855,368,Emergency,2019-10-20,Inconclusive,5927,38,3,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -5927,2021-12-29,16725.837700073927,447,Urgent,2022-01-20,Inconclusive,7802,149,0,4,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -5928,2022-05-11,6883.393394351776,333,Urgent,2022-05-17,Normal,5928,424,1,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -5929,2022-07-14,29159.34683613849,236,Emergency,2022-08-12,Normal,5929,117,3,29,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5930,2019-12-12,38022.55063014108,151,Emergency,2019-12-25,Normal,5930,260,2,11,,,,DISCHARGED -5931,2022-03-05,5045.807324305403,448,Urgent,2022-03-30,Inconclusive,5931,425,0,13,,,,DISCHARGED -5932,2020-01-13,5348.600174186669,125,Urgent,2020-01-29,Normal,5932,86,3,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5932,2020-12-24,36755.73641227056,343,Emergency,2021-01-22,Inconclusive,8829,464,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -5933,2021-04-02,18630.635202957503,384,Emergency,2021-04-24,Inconclusive,5933,75,3,7,,,,DISCHARGED -5933,2019-12-04,49409.7805414722,163,Emergency,2019-12-16,Inconclusive,9536,470,0,4,,,,DISCHARGED -5933,2023-04-21,49650.67288247996,150,Elective,2023-04-28,Normal,9891,463,2,7,,,,DISCHARGED -5934,2019-10-29,33835.720618442225,391,Urgent,2019-11-27,Inconclusive,5934,450,3,11,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5935,2022-05-08,16364.573734359798,158,Emergency,2022-05-20,Inconclusive,5935,413,0,14,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5936,2021-12-26,30085.556286655632,290,Urgent,2022-01-22,Inconclusive,5936,312,1,18,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -5937,2019-11-13,25762.858429483906,452,Emergency,2019-12-08,Inconclusive,5937,382,0,15,,,,DISCHARGED -5938,2022-02-08,28856.907094593997,436,Urgent,2022-02-17,Inconclusive,5938,213,0,13,,,,DISCHARGED -5939,2023-05-24,15372.317018843729,122,Elective,2023-05-26,Normal,5939,456,0,27,,,,DISCHARGED -5940,2020-07-09,39055.73775733056,394,Urgent,2020-07-23,Inconclusive,5940,284,3,6,,,,DISCHARGED -5941,2022-08-18,38069.75859176764,468,Emergency,2022-09-03,Inconclusive,5941,238,0,7,,,,DISCHARGED -5942,2023-03-11,45066.43568848367,449,Emergency,2023-03-28,Normal,5942,164,1,6,,,,DISCHARGED -5943,2021-12-22,35020.15685212769,435,Urgent,2022-01-16,Normal,5943,86,3,29,,,,DISCHARGED -5944,2019-07-02,32334.684722851747,136,Elective,2019-07-07,Normal,5944,140,1,17,,,,DISCHARGED -5945,2020-11-30,1042.981212355571,102,Urgent,2020-12-26,Inconclusive,5945,159,4,23,,,,DISCHARGED -5946,2022-02-13,27593.328512873995,204,Urgent,2022-02-23,Abnormal,5946,45,0,5,,,,DISCHARGED -5947,2019-12-07,19293.973354512163,127,Elective,2019-12-20,Abnormal,5947,371,3,25,,,,DISCHARGED -5948,2019-06-16,16901.43929972915,357,Elective,2019-07-06,Inconclusive,5948,494,3,18,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5949,2020-02-25,45417.712717121576,472,Elective,2020-03-09,Inconclusive,5949,111,0,3,,,,DISCHARGED -5950,2019-11-26,6381.992359118826,466,Urgent,2019-12-16,Abnormal,5950,406,2,22,,,,DISCHARGED -5951,2022-03-29,11004.423519309175,179,Emergency,2022-04-21,Inconclusive,5951,44,2,2,,,,DISCHARGED -5953,2019-10-18,8827.474941055696,378,Emergency,2019-11-10,Abnormal,5953,400,1,16,,,,DISCHARGED -5954,2023-03-16,8197.310249862994,471,Emergency,,Inconclusive,5954,246,0,21,,,,OPEN -5955,2020-09-06,34692.24222109207,173,Elective,2020-09-20,Inconclusive,5955,103,0,18,,,,DISCHARGED -5956,2018-11-11,26697.065206145307,390,Elective,2018-11-25,Abnormal,5956,84,4,26,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5957,2023-05-27,45591.89590686971,402,Emergency,2023-06-06,Inconclusive,5957,449,2,14,,,,DISCHARGED -5958,2022-01-03,38391.95584028942,268,Elective,2022-01-14,Normal,5958,484,2,25,,,,DISCHARGED -5959,2021-08-17,35814.73793055562,406,Elective,2021-09-06,Inconclusive,5959,133,0,5,,,,DISCHARGED -5962,2021-08-03,28971.754639264727,458,Elective,2021-08-17,Abnormal,5962,107,1,25,,,,DISCHARGED -5963,2019-02-28,35042.64468480079,149,Urgent,2019-03-11,Inconclusive,5963,17,0,11,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5964,2019-02-08,3286.8941288521664,139,Elective,2019-02-25,Normal,5964,93,1,18,,,,DISCHARGED -5965,2020-03-25,18853.52222401811,301,Emergency,2020-03-27,Inconclusive,5965,149,2,5,,,,DISCHARGED -5966,2019-10-22,32732.29254942737,146,Urgent,2019-11-13,Inconclusive,5966,245,4,10,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -5968,2023-05-25,22396.040457132563,105,Urgent,2023-06-11,Inconclusive,5968,288,3,19,,,,DISCHARGED -5969,2019-05-08,17280.236696628497,137,Urgent,2019-06-06,Abnormal,5969,413,2,28,,,,DISCHARGED -5970,2020-11-20,19730.65884625985,412,Emergency,2020-12-16,Abnormal,5970,208,1,19,,,,DISCHARGED -5971,2022-10-09,8368.835120707154,198,Emergency,2022-11-02,Inconclusive,5971,125,0,9,,,,DISCHARGED -5972,2023-07-10,8242.52621734721,448,Elective,2023-07-20,Abnormal,5972,234,2,25,,,,DISCHARGED -5974,2021-06-28,19631.170045271152,204,Elective,2021-07-15,Inconclusive,5974,415,4,15,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5975,2021-09-15,32089.786437380837,198,Elective,2021-09-16,Inconclusive,5975,425,1,26,,,,DISCHARGED -5976,2023-08-15,33534.24993420143,268,Elective,,Abnormal,5976,498,0,17,,,,OPEN -5977,2019-01-20,19420.951218525413,347,Elective,2019-02-15,Inconclusive,5977,461,3,13,,,,DISCHARGED -5978,2023-10-27,5483.5834146452735,395,Elective,2023-11-13,Normal,5978,121,1,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -5979,2019-09-08,1378.0009880748469,357,Emergency,2019-09-12,Normal,5979,137,0,26,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5980,2020-07-20,47834.50429510904,140,Elective,2020-08-19,Inconclusive,5980,494,3,11,,,,DISCHARGED -5981,2020-12-25,38503.31776706349,473,Urgent,2021-01-16,Normal,5981,114,0,19,,,,DISCHARGED -5982,2020-02-08,27728.566349198416,131,Urgent,2020-03-02,Abnormal,5982,419,3,26,,,,DISCHARGED -5983,2021-11-10,23559.849018799887,434,Emergency,2021-12-05,Abnormal,5983,161,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5984,2018-11-27,40804.66997411865,491,Emergency,2018-12-07,Abnormal,5984,200,3,20,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5985,2019-02-27,19203.629366162186,425,Urgent,2019-03-03,Normal,5985,233,0,7,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5986,2021-03-29,2717.8722357047604,473,Urgent,2021-04-13,Normal,5986,27,3,6,,,,DISCHARGED -5987,2023-08-09,17192.194092857884,478,Elective,,Abnormal,5987,10,1,25,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -5988,2023-10-04,14240.566572024592,259,Emergency,2023-10-10,Abnormal,5988,205,4,8,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5989,2022-05-24,16919.668953165707,377,Urgent,2022-06-11,Normal,5989,166,4,23,,,,DISCHARGED -5990,2019-10-26,31999.41875042375,196,Elective,2019-11-18,Abnormal,5990,246,3,24,,,,DISCHARGED -5991,2023-05-22,17251.998279581625,235,Emergency,2023-06-02,Normal,5991,46,4,16,,,,DISCHARGED -5991,2021-03-07,36914.84156071174,156,Emergency,2021-03-16,Inconclusive,9941,245,4,9,,,,DISCHARGED -5992,2021-01-08,3158.645462369566,152,Elective,2021-02-05,Inconclusive,5992,126,3,28,,,,DISCHARGED -5993,2019-08-08,23549.33909470684,219,Urgent,2019-08-31,Normal,5993,146,3,27,,,,DISCHARGED -5994,2021-10-11,2730.3191046085376,358,Urgent,2021-10-20,Normal,5994,117,1,2,,,,DISCHARGED -5995,2019-11-18,34860.843935419194,124,Emergency,2019-12-07,Abnormal,5995,398,2,20,,,,DISCHARGED -5996,2023-03-24,18220.601556604877,158,Urgent,2023-04-19,Abnormal,5996,381,0,24,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5997,2020-10-05,4750.89250702743,488,Urgent,2020-10-09,Inconclusive,5997,411,3,7,,,,DISCHARGED -5998,2020-11-30,15193.157340484317,434,Urgent,2020-12-29,Abnormal,5998,151,3,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5999,2019-06-09,42827.800252361805,402,Urgent,2019-06-27,Normal,5999,71,4,25,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -6000,2021-09-29,8970.000970695644,341,Urgent,2021-10-20,Inconclusive,6000,362,1,6,,,,DISCHARGED -6001,2022-08-09,9178.571798450394,256,Urgent,2022-08-15,Inconclusive,6001,136,4,15,,,,DISCHARGED -6002,2021-06-05,39902.55629115633,439,Urgent,2021-06-13,Inconclusive,6002,174,3,17,,,,DISCHARGED -6003,2019-03-04,12326.946459144618,122,Urgent,2019-03-07,Abnormal,6003,288,3,10,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -6005,2021-12-27,32335.889608311336,441,Emergency,2021-12-30,Abnormal,6005,445,4,5,,,,DISCHARGED -6006,2019-05-04,38983.39690377517,333,Elective,2019-05-22,Normal,6006,480,3,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6007,2023-03-15,4063.8833852474127,332,Emergency,2023-04-11,Abnormal,6007,18,2,20,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6008,2023-03-31,38975.40778060391,330,Emergency,2023-04-26,Normal,6008,194,0,13,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -6009,2023-08-23,4841.951551202654,297,Emergency,,Normal,6009,329,0,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -6010,2019-12-28,12909.297654361064,497,Urgent,2020-01-26,Normal,6010,423,0,12,,,,DISCHARGED -6011,2022-10-18,11518.852840732232,126,Elective,2022-10-31,Normal,6011,174,2,3,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6012,2021-10-20,45883.1796256381,405,Emergency,2021-11-01,Normal,6012,489,3,19,,,,DISCHARGED -6013,2020-06-19,16271.135835494846,298,Elective,2020-07-07,Abnormal,6013,448,4,19,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6014,2021-07-11,30466.692416681926,199,Elective,2021-07-28,Abnormal,6014,412,1,10,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -6015,2022-12-15,40309.36476932533,497,Elective,2022-12-26,Abnormal,6015,433,3,17,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -6016,2019-07-23,46805.42101295896,320,Emergency,2019-08-01,Inconclusive,6016,353,2,0,,,,DISCHARGED -6017,2022-02-20,3122.8045831751483,157,Elective,2022-03-03,Normal,6017,498,2,11,,,,DISCHARGED -6018,2023-01-30,32480.98615115175,397,Emergency,2023-02-10,Inconclusive,6018,140,0,17,,,,DISCHARGED -6019,2020-02-15,7713.898731274019,386,Emergency,2020-03-11,Abnormal,6019,245,3,6,,,,DISCHARGED -6021,2020-12-28,18415.405268949155,291,Elective,2021-01-07,Normal,6021,384,0,11,,,,DISCHARGED -6022,2019-04-14,22582.50171640081,368,Emergency,2019-04-17,Abnormal,6022,417,1,0,,,,DISCHARGED -6023,2019-10-13,26601.66365413308,371,Emergency,2019-11-02,Inconclusive,6023,92,0,21,,,,DISCHARGED -6024,2019-11-19,17143.945818964472,248,Emergency,2019-12-19,Normal,6024,431,1,3,,,,DISCHARGED -6025,2019-11-27,40637.7551932998,462,Elective,2019-12-01,Abnormal,6025,238,2,17,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -6026,2020-11-07,10875.096411080644,179,Urgent,2020-12-07,Abnormal,6026,204,0,14,,,,DISCHARGED -6028,2021-07-03,34014.79330689237,336,Emergency,2021-07-23,Abnormal,6028,47,0,2,,,,DISCHARGED -6029,2020-03-10,11916.903792412591,290,Urgent,2020-03-28,Inconclusive,6029,432,4,6,,,,DISCHARGED -6030,2023-01-05,30098.8873996369,273,Urgent,,Inconclusive,6030,244,2,5,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -6031,2019-11-03,11948.577113346237,354,Elective,2019-11-25,Inconclusive,6031,319,4,14,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6032,2023-03-09,26311.893968034638,283,Emergency,2023-03-19,Inconclusive,6032,316,1,14,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6033,2021-07-12,39130.03021153598,129,Elective,2021-08-01,Inconclusive,6033,412,1,5,,,,DISCHARGED -6034,2021-03-30,37463.34843224498,257,Urgent,2021-04-19,Normal,6034,294,2,7,,,,DISCHARGED -6035,2020-09-01,26252.970872754715,418,Emergency,2020-09-13,Normal,6035,127,1,7,,,,DISCHARGED -6035,2023-05-12,40441.96846952715,398,Urgent,2023-06-10,Normal,8329,343,2,21,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6036,2022-12-27,30853.352675023158,473,Urgent,2023-01-14,Abnormal,6036,281,1,0,,,,DISCHARGED -6037,2021-08-04,5077.834231965651,467,Elective,2021-08-27,Normal,6037,16,3,25,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -6038,2021-08-14,16659.706480507328,229,Emergency,2021-08-31,Abnormal,6038,70,0,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6039,2021-01-01,41398.91611388431,174,Urgent,2021-01-08,Inconclusive,6039,268,3,22,,,,DISCHARGED -6040,2023-04-17,28575.28418993742,215,Urgent,2023-04-18,Inconclusive,6040,324,2,23,,,,DISCHARGED -6041,2020-01-23,6944.7937028222,270,Emergency,2020-01-30,Normal,6041,281,2,20,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -6042,2020-11-10,48719.067467088,107,Urgent,2020-11-21,Inconclusive,6042,304,3,12,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6043,2021-06-24,4743.406570779665,417,Elective,2021-07-19,Inconclusive,6043,450,0,10,,,,DISCHARGED -6044,2019-10-21,26260.260751180136,333,Emergency,2019-11-16,Inconclusive,6044,6,0,3,,,,DISCHARGED -6045,2018-12-20,35330.79661087953,115,Urgent,2019-01-12,Abnormal,6045,313,4,6,,,,DISCHARGED -6046,2023-06-04,45646.94909067201,284,Urgent,2023-07-01,Inconclusive,6046,304,1,27,,,,DISCHARGED -6047,2020-02-07,24195.672795413982,155,Urgent,2020-03-04,Abnormal,6047,102,4,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -6048,2019-04-20,2041.8407667831616,495,Elective,2019-05-04,Abnormal,6048,308,0,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6049,2020-07-06,18679.07314822452,304,Emergency,2020-08-01,Abnormal,6049,192,3,12,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -6050,2022-10-29,30157.72372364938,116,Emergency,2022-11-16,Inconclusive,6050,240,1,21,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6050,2019-01-28,13225.16638451972,388,Urgent,2019-01-31,Abnormal,9869,61,3,11,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6052,2023-09-21,14627.995930200696,456,Urgent,2023-10-14,Inconclusive,6052,16,4,15,,,,DISCHARGED -6054,2022-03-28,10507.017825167057,130,Elective,2022-04-05,Inconclusive,6054,170,2,5,,,,DISCHARGED -6055,2022-08-07,2463.14168145493,201,Emergency,2022-08-28,Inconclusive,6055,24,3,13,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -6056,2023-09-15,43185.80145305649,405,Urgent,2023-09-17,Abnormal,6056,250,4,18,,,,DISCHARGED -6057,2019-04-06,6164.281923358486,369,Urgent,2019-05-06,Abnormal,6057,252,4,15,,,,DISCHARGED -6058,2022-04-26,19755.828880095723,449,Emergency,2022-05-01,Inconclusive,6058,386,4,26,,,,DISCHARGED -6059,2023-04-26,11287.34822284043,193,Emergency,2023-05-03,Normal,6059,206,2,25,,,,DISCHARGED -6060,2023-07-16,41603.29720625691,128,Elective,2023-07-22,Abnormal,6060,28,2,3,,,,DISCHARGED -6061,2022-10-24,38771.33562715259,372,Emergency,2022-11-03,Normal,6061,116,2,4,,,,DISCHARGED -6062,2023-07-24,41639.38493575151,327,Emergency,,Normal,6062,490,1,8,,,,OPEN -6064,2021-08-20,23563.15377954031,460,Emergency,2021-08-22,Abnormal,6064,415,2,23,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6066,2020-05-07,40656.39305192237,443,Urgent,2020-06-04,Abnormal,6066,281,2,2,,,,DISCHARGED -6067,2023-02-08,2030.966735933411,332,Urgent,2023-02-27,Abnormal,6067,379,2,21,,,,DISCHARGED -6068,2022-04-24,26736.9586944542,311,Urgent,2022-05-01,Abnormal,6068,143,3,9,,,,DISCHARGED -6069,2021-10-12,22484.01475668203,192,Urgent,2021-10-14,Inconclusive,6069,24,2,16,,,,DISCHARGED -6070,2019-02-03,2924.4589772935738,136,Emergency,2019-03-03,Inconclusive,6070,309,1,18,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6071,2022-03-31,42022.98956330117,255,Elective,2022-04-24,Inconclusive,6071,155,4,9,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6072,2021-01-07,19167.498606804467,242,Emergency,2021-01-25,Inconclusive,6072,72,3,29,,,,DISCHARGED -6073,2020-01-03,5580.290521121448,294,Emergency,2020-01-16,Inconclusive,6073,119,0,11,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6074,2023-08-03,2233.535350550429,154,Elective,2023-08-05,Normal,6074,311,2,22,,,,DISCHARGED -6075,2022-07-15,8720.357123981528,113,Emergency,2022-07-26,Abnormal,6075,320,4,6,,,,DISCHARGED -6076,2021-07-19,33733.967410745856,118,Urgent,2021-08-06,Abnormal,6076,92,4,17,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6077,2019-04-10,1352.748184486318,292,Urgent,2019-04-29,Inconclusive,6077,85,3,18,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6078,2020-08-24,21068.61727695532,125,Urgent,2020-09-05,Inconclusive,6078,335,0,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6079,2020-03-10,24310.254854187137,253,Elective,2020-04-05,Normal,6079,424,1,6,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -6080,2023-09-28,48710.62955931463,252,Emergency,,Inconclusive,6080,498,4,11,,,,OPEN -6081,2023-06-06,44697.33903475581,394,Elective,2023-06-21,Inconclusive,6081,363,4,21,,,,DISCHARGED -6082,2021-09-08,23616.02657226192,362,Urgent,2021-10-05,Abnormal,6082,434,4,28,,,,DISCHARGED -6083,2020-12-05,49878.9353502313,372,Urgent,2020-12-16,Abnormal,6083,117,4,6,,,,DISCHARGED -6084,2023-08-23,13072.08448257353,457,Elective,,Abnormal,6084,232,3,9,,,,OPEN -6085,2022-03-30,20737.036019191804,257,Urgent,2022-04-01,Abnormal,6085,198,0,24,,,,DISCHARGED -6086,2023-05-19,23105.22652158953,175,Elective,,Normal,6086,205,4,23,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6088,2021-01-26,17924.86023202854,335,Urgent,2021-02-25,Abnormal,6088,412,1,21,,,,DISCHARGED -6089,2019-10-24,18986.331968908245,204,Elective,2019-11-12,Inconclusive,6089,338,1,27,,,,DISCHARGED -6090,2021-01-02,16088.741924449598,135,Emergency,2021-01-26,Normal,6090,146,2,29,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6091,2021-02-03,5328.157487747513,339,Emergency,2021-03-03,Normal,6091,449,4,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6092,2021-11-18,4700.233026777709,122,Emergency,2021-11-28,Abnormal,6092,424,4,29,,,,DISCHARGED -6092,2021-10-21,40988.0344817342,454,Emergency,2021-11-04,Abnormal,6229,428,4,28,,,,DISCHARGED -6094,2021-02-27,46048.32020973106,131,Emergency,2021-03-23,Inconclusive,6094,270,4,9,,,,DISCHARGED -6095,2023-10-15,32903.22340985037,218,Elective,,Normal,6095,386,4,24,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",OPEN -6096,2019-04-04,33093.62417270338,124,Elective,2019-04-12,Inconclusive,6096,138,1,22,,,,DISCHARGED -6097,2020-10-19,19491.183352645603,170,Elective,2020-11-13,Abnormal,6097,180,0,4,,,,DISCHARGED -6098,2019-12-20,29138.81085988837,381,Emergency,2020-01-12,Inconclusive,6098,429,0,17,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -6099,2020-11-20,30090.863834624757,300,Elective,2020-12-02,Abnormal,6099,29,2,8,,,,DISCHARGED -6100,2019-03-18,18959.98701506969,156,Elective,2019-04-10,Inconclusive,6100,56,1,29,,,,DISCHARGED -6101,2023-01-30,23990.622338011097,311,Urgent,2023-02-08,Inconclusive,6101,231,4,15,,,,DISCHARGED -6102,2020-05-11,43662.89790791856,392,Emergency,2020-05-14,Abnormal,6102,145,0,6,,,,DISCHARGED -6103,2023-03-27,46090.69068944869,209,Urgent,2023-04-08,Normal,6103,434,3,24,,,,DISCHARGED -6104,2019-06-08,25403.45810365432,355,Urgent,2019-06-22,Abnormal,6104,383,3,26,,,,DISCHARGED -6105,2022-05-18,31581.714460647403,272,Emergency,2022-05-29,Abnormal,6105,47,3,24,,,,DISCHARGED -6106,2020-03-01,7419.347580921149,363,Elective,2020-03-03,Abnormal,6106,193,4,9,,,,DISCHARGED -6107,2019-09-02,4614.902595872119,361,Elective,2019-09-19,Normal,6107,223,4,4,,,,DISCHARGED -6109,2019-02-12,33777.330221004624,134,Urgent,2019-02-18,Inconclusive,6109,135,2,6,,,,DISCHARGED -6110,2019-09-29,42185.132971129264,137,Urgent,2019-10-24,Abnormal,6110,21,2,4,,,,DISCHARGED -6111,2020-08-18,13242.13439218701,372,Urgent,2020-09-15,Inconclusive,6111,5,2,14,,,,DISCHARGED -6113,2020-04-18,6738.384979570603,228,Elective,2020-05-18,Normal,6113,203,3,18,,,,DISCHARGED -6114,2020-08-23,48041.631844691816,461,Emergency,2020-09-16,Normal,6114,238,4,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6115,2022-09-05,15597.066771348253,364,Emergency,2022-10-01,Abnormal,6115,184,3,7,,,,DISCHARGED -6116,2022-09-30,47408.38777573841,329,Emergency,2022-10-23,Inconclusive,6116,359,2,23,,,,DISCHARGED -6117,2021-01-03,38794.58253617705,171,Elective,2021-01-28,Inconclusive,6117,291,4,8,,,,DISCHARGED -6119,2021-11-22,25348.705935905477,387,Emergency,2021-11-28,Normal,6119,334,1,10,,,,DISCHARGED -6120,2022-12-25,30636.084006927314,172,Elective,2023-01-20,Abnormal,6120,219,0,29,,,,DISCHARGED -6121,2021-08-03,22734.996414702007,445,Elective,2021-08-28,Normal,6121,115,0,27,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6122,2019-04-22,12400.895813112746,305,Urgent,2019-05-03,Normal,6122,312,2,21,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -6123,2020-05-30,21607.412165770384,428,Elective,2020-06-09,Normal,6123,48,3,1,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -6124,2019-12-11,41365.11781177608,484,Emergency,2019-12-31,Abnormal,6124,172,1,2,,,,DISCHARGED -6125,2021-06-24,20237.99408860453,262,Emergency,2021-07-01,Abnormal,6125,81,4,12,,,,DISCHARGED -6126,2023-05-16,16612.66607880724,353,Urgent,2023-06-03,Inconclusive,6126,321,3,10,,,,DISCHARGED -6127,2020-09-23,24098.63452986885,370,Urgent,2020-09-24,Inconclusive,6127,332,2,27,,,,DISCHARGED -6128,2023-09-13,29522.72367952392,127,Elective,,Inconclusive,6128,44,3,9,,,,OPEN -6129,2023-01-09,26396.06833246261,239,Urgent,2023-01-16,Normal,6129,334,2,26,,,,DISCHARGED -6130,2020-12-05,49344.59478878936,497,Elective,2021-01-04,Normal,6130,19,0,14,,,,DISCHARGED -6131,2023-07-27,18467.279290178358,285,Elective,2023-08-13,Inconclusive,6131,447,0,5,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6132,2019-04-07,27120.45220405838,364,Urgent,2019-05-02,Normal,6132,220,3,0,,,,DISCHARGED -6134,2019-11-28,37522.17784066239,443,Emergency,2019-12-15,Abnormal,6134,122,1,13,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -6135,2019-09-13,14360.82204091002,460,Urgent,2019-10-09,Normal,6135,233,4,17,,,,DISCHARGED -6136,2022-12-19,9726.594527822092,389,Elective,2023-01-14,Normal,6136,220,2,23,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6137,2021-01-21,9747.804400753566,286,Emergency,2021-02-01,Abnormal,6137,322,4,10,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -6138,2020-06-29,27700.638424488272,338,Elective,2020-07-23,Inconclusive,6138,338,0,7,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6139,2022-10-23,41069.41904162929,492,Urgent,2022-10-24,Abnormal,6139,2,1,21,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -6140,2021-07-13,12683.164387118475,474,Elective,2021-07-18,Abnormal,6140,181,1,2,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6141,2021-11-08,29309.57990292996,241,Emergency,2021-11-20,Abnormal,6141,205,4,13,,,,DISCHARGED -6141,2021-12-28,46535.200937036905,179,Emergency,2022-01-21,Normal,8167,319,0,1,,,,DISCHARGED -6142,2023-02-07,46224.79873010241,428,Elective,2023-02-19,Abnormal,6142,39,4,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6143,2019-02-04,43005.31830628686,489,Urgent,2019-03-04,Abnormal,6143,58,3,15,,,,DISCHARGED -6144,2019-12-10,45432.314592298375,154,Emergency,2019-12-31,Normal,6144,438,1,5,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6145,2020-04-16,9206.554307583525,398,Elective,2020-05-14,Normal,6145,61,1,0,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6146,2021-03-09,1475.7982615717308,370,Urgent,2021-03-19,Normal,6146,131,3,13,,,,DISCHARGED -6147,2021-09-05,32580.594671794504,346,Elective,2021-09-20,Abnormal,6147,59,0,9,,,,DISCHARGED -6148,2023-01-19,3230.9943158924525,312,Emergency,2023-01-22,Abnormal,6148,371,1,5,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6149,2022-02-21,38489.52841896299,345,Emergency,2022-03-12,Normal,6149,330,2,8,,,,DISCHARGED -6150,2022-11-28,47409.08953668171,302,Elective,2022-12-14,Normal,6150,121,2,6,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6151,2019-02-08,40827.013852454285,105,Urgent,2019-03-04,Normal,6151,478,0,24,,,,DISCHARGED -6152,2020-05-30,48451.38635989904,321,Elective,2020-06-26,Normal,6152,106,3,1,,,,DISCHARGED -6153,2018-12-12,42280.6133158642,381,Urgent,2019-01-07,Inconclusive,6153,95,4,10,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -6154,2020-10-20,10226.80854218207,299,Emergency,2020-10-26,Normal,6154,346,0,13,,,,DISCHARGED -6155,2020-05-07,22673.15885681665,171,Emergency,2020-05-26,Abnormal,6155,413,4,4,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -6156,2022-06-22,11482.053745428118,184,Elective,2022-07-07,Inconclusive,6156,234,0,8,,,,DISCHARGED -6157,2022-04-22,1991.9333147612751,433,Emergency,2022-05-08,Abnormal,6157,385,2,6,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -6158,2020-01-04,16936.338873847635,105,Emergency,2020-01-09,Inconclusive,6158,61,3,24,,,,DISCHARGED -6159,2023-09-24,16149.444371628577,360,Emergency,2023-10-03,Inconclusive,6159,255,2,13,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6160,2018-11-07,45140.73659282821,115,Elective,2018-11-17,Inconclusive,6160,48,3,26,,,,DISCHARGED -6162,2023-06-30,9900.17189749598,405,Elective,,Abnormal,6162,392,4,15,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6163,2020-10-20,47672.93154582539,124,Emergency,2020-11-17,Abnormal,6163,347,0,21,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6163,2022-10-02,37777.1552910288,496,Urgent,2022-10-31,Abnormal,8467,158,1,15,,,,DISCHARGED -6164,2022-09-12,6867.424515252065,323,Urgent,2022-10-10,Inconclusive,6164,123,1,6,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6165,2020-03-13,41498.11685589601,170,Urgent,2020-04-05,Abnormal,6165,481,3,9,,,,DISCHARGED -6166,2023-08-29,29470.6915412482,311,Emergency,2023-09-07,Inconclusive,6166,316,3,20,,,,DISCHARGED -6166,2021-06-04,31606.94697114073,263,Elective,2021-06-09,Normal,8793,206,2,5,,,,DISCHARGED -6167,2020-12-23,31959.387841430336,467,Urgent,2021-01-11,Abnormal,6167,47,1,16,,,,DISCHARGED -6168,2019-05-11,29217.23145986397,327,Urgent,2019-05-30,Inconclusive,6168,408,2,0,,,,DISCHARGED -6169,2019-01-28,20606.38435239024,195,Urgent,2019-02-06,Normal,6169,419,4,1,,,,DISCHARGED -6170,2022-09-23,41288.83756871875,437,Elective,2022-10-18,Normal,6170,135,1,26,,,,DISCHARGED -6171,2022-11-17,39817.60065185772,151,Urgent,2022-12-13,Abnormal,6171,200,4,13,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6172,2023-02-08,37345.41597518384,424,Elective,,Normal,6172,249,0,3,,,,OPEN -6173,2019-05-07,35929.09159349071,401,Emergency,2019-05-18,Inconclusive,6173,313,2,26,,,,DISCHARGED -6174,2020-12-20,4130.869339113963,340,Elective,2020-12-22,Normal,6174,356,3,8,,,,DISCHARGED -6175,2022-11-12,43926.65010139064,362,Elective,2022-12-04,Abnormal,6175,367,1,22,,,,DISCHARGED -6176,2020-05-18,32066.684256183773,201,Urgent,2020-06-14,Abnormal,6176,428,2,5,,,,DISCHARGED -6177,2020-05-15,38598.317047569966,407,Elective,2020-06-04,Normal,6177,317,3,16,,,,DISCHARGED -6178,2021-01-19,28572.96281598436,421,Urgent,2021-02-02,Normal,6178,294,0,20,,,,DISCHARGED -6179,2019-05-25,49865.84795118959,374,Emergency,2019-06-11,Abnormal,6179,479,1,10,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6181,2023-06-02,6816.642650056341,474,Elective,,Abnormal,6181,313,4,27,,,,OPEN -6182,2023-01-28,45961.12615610182,230,Elective,2023-02-05,Normal,6182,499,0,28,,,,DISCHARGED -6183,2018-12-03,4438.311336000047,388,Urgent,2018-12-04,Abnormal,6183,208,3,3,,,,DISCHARGED -6184,2022-09-21,42537.9020492107,210,Urgent,2022-10-12,Normal,6184,354,1,20,,,,DISCHARGED -6186,2022-01-26,3025.1800943642866,204,Urgent,2022-02-06,Abnormal,6186,484,1,26,,,,DISCHARGED -6187,2019-01-25,14295.44972275746,120,Urgent,2019-02-23,Inconclusive,6187,210,0,8,,,,DISCHARGED -6188,2020-01-14,5530.92629333341,241,Emergency,2020-02-10,Normal,6188,191,1,27,,,,DISCHARGED -6189,2021-09-11,47706.668252865085,230,Urgent,2021-09-18,Normal,6189,43,3,15,,,,DISCHARGED -6190,2019-11-07,39312.99811347667,468,Emergency,2019-11-12,Inconclusive,6190,28,0,2,,,,DISCHARGED -6191,2022-11-24,24275.67187138074,230,Emergency,2022-11-25,Normal,6191,58,4,3,,,,DISCHARGED -6192,2021-04-22,16114.569059248815,148,Urgent,2021-05-04,Normal,6192,70,0,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6193,2023-09-08,46556.27087797975,377,Elective,2023-09-09,Inconclusive,6193,91,0,2,,,,DISCHARGED -6194,2019-03-30,19341.673083933863,136,Urgent,2019-04-18,Inconclusive,6194,264,4,12,,,,DISCHARGED -6195,2019-01-18,28003.823887023857,117,Elective,2019-02-01,Abnormal,6195,382,3,18,,,,DISCHARGED -6196,2020-04-05,7686.553156068053,471,Emergency,2020-04-26,Inconclusive,6196,219,2,28,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -6197,2020-12-04,3843.528519592905,301,Emergency,2020-12-19,Inconclusive,6197,389,2,24,,,,DISCHARGED -6198,2021-04-12,32540.751352168507,491,Emergency,2021-05-11,Abnormal,6198,412,4,20,,,,DISCHARGED -6199,2023-07-10,20400.88808716771,206,Urgent,,Normal,6199,441,3,25,,,,OPEN -6200,2019-04-02,15813.10138707612,115,Emergency,2019-04-03,Inconclusive,6200,400,1,0,,,,DISCHARGED -6201,2021-04-21,14468.251353635906,349,Urgent,2021-05-21,Inconclusive,6201,399,4,22,,,,DISCHARGED -6202,2020-03-18,3748.3979325421537,172,Emergency,2020-04-09,Inconclusive,6202,214,2,22,,,,DISCHARGED -6203,2023-09-14,41219.50185701669,475,Urgent,2023-09-23,Inconclusive,6203,478,3,5,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -6203,2022-01-27,18281.015579073784,398,Emergency,2022-02-12,Abnormal,9463,386,0,21,,,,DISCHARGED -6205,2022-08-02,45354.2360103459,384,Elective,2022-08-13,Abnormal,6205,276,3,2,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -6206,2020-12-31,47063.29800131448,242,Emergency,2021-01-04,Abnormal,6206,63,3,2,,,,DISCHARGED -6207,2022-05-11,30068.87039543928,398,Urgent,2022-06-01,Inconclusive,6207,345,2,15,,,,DISCHARGED -6208,2020-03-02,35938.589967743064,362,Emergency,2020-03-23,Normal,6208,291,2,9,,,,DISCHARGED -6209,2019-10-26,15628.513922041211,427,Emergency,2019-10-28,Abnormal,6209,489,1,26,,,,DISCHARGED -6210,2019-11-30,38592.307992839706,106,Elective,2019-12-17,Inconclusive,6210,484,1,24,,,,DISCHARGED -6211,2019-02-16,43923.63012934363,208,Emergency,2019-03-12,Abnormal,6211,244,4,16,,,,DISCHARGED -6212,2020-11-06,45168.47816621722,206,Emergency,2020-11-28,Inconclusive,6212,469,0,6,,,,DISCHARGED -6212,2021-10-16,27931.43539338077,365,Urgent,2021-11-05,Inconclusive,9795,61,1,12,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6213,2020-03-02,26307.045823635894,200,Emergency,2020-03-16,Normal,6213,425,2,27,,,,DISCHARGED -6214,2021-12-20,14634.65959231155,257,Emergency,2022-01-12,Normal,6214,331,3,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6216,2022-02-07,37809.57489814309,250,Elective,2022-02-10,Normal,6216,169,4,9,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6217,2022-04-11,10941.548876368746,371,Urgent,2022-05-10,Inconclusive,6217,444,1,6,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -6218,2022-07-22,31459.12163046863,343,Elective,2022-08-04,Inconclusive,6218,268,3,23,,,,DISCHARGED -6219,2021-09-17,39896.15769803589,103,Elective,2021-10-13,Abnormal,6219,266,3,5,,,,DISCHARGED -6220,2022-05-22,1971.4650255665088,391,Urgent,2022-06-03,Abnormal,6220,53,1,23,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -6220,2022-12-31,36233.91324124278,386,Urgent,2023-01-04,Inconclusive,8653,15,0,0,,,,DISCHARGED -6221,2022-06-20,4493.970986534578,372,Emergency,2022-07-04,Normal,6221,7,0,16,,,,DISCHARGED -6222,2023-09-12,24413.27693643391,116,Urgent,,Abnormal,6222,103,4,24,,,,OPEN -6224,2020-06-11,38555.43104984762,225,Emergency,2020-06-18,Inconclusive,6224,58,0,11,,,,DISCHARGED -6225,2021-11-02,5567.633006001641,285,Urgent,2021-11-30,Inconclusive,6225,312,4,3,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -6226,2022-06-17,34566.9163623865,379,Elective,2022-07-06,Normal,6226,39,2,2,,,,DISCHARGED -6227,2019-09-17,46762.663205146586,239,Emergency,2019-10-10,Abnormal,6227,236,1,5,,,,DISCHARGED -6228,2022-04-14,17834.520252656082,115,Emergency,2022-05-12,Inconclusive,6228,442,3,25,,,,DISCHARGED -6230,2022-03-07,22171.132302551843,159,Emergency,2022-03-18,Inconclusive,6230,385,4,27,,,,DISCHARGED -6231,2020-12-08,26973.663555245108,458,Emergency,2020-12-15,Normal,6231,93,0,15,,,,DISCHARGED -6232,2023-10-25,17744.66305742216,409,Urgent,,Normal,6232,221,4,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",OPEN -6233,2023-09-08,44596.761025798325,135,Urgent,2023-10-05,Normal,6233,203,4,27,,,,DISCHARGED -6234,2022-03-13,15326.408580092371,461,Emergency,2022-03-19,Normal,6234,137,0,8,,,,DISCHARGED -6235,2021-04-11,26475.71665810182,425,Elective,2021-04-25,Inconclusive,6235,299,0,25,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -6236,2022-02-26,27056.74753592466,433,Elective,2022-03-01,Inconclusive,6236,394,1,10,,,,DISCHARGED -6237,2021-03-18,32784.45831993211,345,Urgent,2021-03-30,Inconclusive,6237,206,3,19,,,,DISCHARGED -6238,2020-12-21,45169.53202050832,308,Elective,2020-12-27,Inconclusive,6238,335,1,24,,,,DISCHARGED -6239,2022-04-20,42941.10175938614,437,Urgent,2022-04-21,Abnormal,6239,80,1,20,,,,DISCHARGED -6240,2019-09-03,34701.48887810339,291,Urgent,2019-09-26,Inconclusive,6240,217,0,12,,,,DISCHARGED -6241,2018-12-21,29685.08165495313,142,Urgent,2019-01-13,Normal,6241,1,0,22,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -6243,2023-02-07,48491.90699632781,154,Emergency,2023-02-09,Abnormal,6243,177,3,18,,,,DISCHARGED -6244,2023-09-25,2277.420196350031,133,Emergency,2023-10-11,Normal,6244,395,4,2,,,,DISCHARGED -6245,2021-08-12,42965.05116296528,394,Urgent,2021-08-16,Inconclusive,6245,370,1,11,,,,DISCHARGED -6246,2023-05-15,23028.25910827863,164,Urgent,2023-05-21,Normal,6246,345,3,18,,,,DISCHARGED -6247,2019-04-05,36311.61092148439,339,Urgent,2019-04-08,Inconclusive,6247,278,1,7,,,,DISCHARGED -6248,2023-08-30,20601.65926495438,444,Elective,2023-09-03,Normal,6248,145,4,13,,,,DISCHARGED -6249,2022-09-15,3192.161002612057,271,Elective,2022-10-05,Normal,6249,317,1,21,,,,DISCHARGED -6250,2022-10-23,25115.70049534741,308,Urgent,2022-11-13,Inconclusive,6250,223,2,8,,,,DISCHARGED -6251,2020-11-17,12218.129444457458,178,Urgent,2020-11-22,Abnormal,6251,368,3,24,,,,DISCHARGED -6252,2020-07-27,48228.96275138811,134,Elective,2020-08-09,Inconclusive,6252,383,0,23,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -6253,2019-03-06,17612.027669269068,311,Emergency,2019-03-15,Normal,6253,61,1,16,,,,DISCHARGED -6254,2021-02-24,19050.665929734118,127,Emergency,2021-03-20,Normal,6254,293,3,5,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6255,2019-04-18,9276.528131390927,261,Elective,2019-05-01,Normal,6255,238,3,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6256,2021-05-07,45414.6653474973,399,Urgent,2021-05-21,Abnormal,6256,194,1,3,,,,DISCHARGED -6257,2022-04-05,9523.460119166888,196,Urgent,2022-04-26,Inconclusive,6257,165,0,18,,,,DISCHARGED -6257,2020-05-29,49701.59285074048,253,Emergency,2020-06-08,Inconclusive,7398,450,0,11,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -6258,2023-09-28,46526.23601867224,275,Urgent,2023-10-09,Normal,6258,221,1,24,,,,DISCHARGED -6259,2021-04-30,18976.970844728214,106,Elective,2021-05-05,Normal,6259,60,3,1,,,,DISCHARGED -6260,2023-09-30,3954.394087385822,463,Urgent,2023-10-09,Abnormal,6260,128,0,16,,,,DISCHARGED -6261,2023-04-25,34819.58352622761,413,Urgent,2023-05-07,Abnormal,6261,477,1,29,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -6262,2021-06-27,17191.55707452727,405,Emergency,2021-07-23,Normal,6262,172,1,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6263,2021-06-03,26726.34781120176,327,Emergency,2021-06-26,Abnormal,6263,479,1,9,,,,DISCHARGED -6264,2019-08-04,33869.326218005765,293,Elective,2019-08-10,Normal,6264,155,3,2,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6265,2020-01-27,21208.935034574213,206,Elective,2020-01-30,Abnormal,6265,404,0,28,,,,DISCHARGED -6266,2023-07-02,36516.50454511538,421,Emergency,2023-08-01,Normal,6266,377,3,19,,,,DISCHARGED -6267,2023-02-07,48298.857995849066,355,Urgent,2023-02-28,Inconclusive,6267,109,2,3,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -6268,2023-05-04,12192.828410927816,289,Urgent,,Abnormal,6268,268,0,21,,,,OPEN -6269,2022-06-11,37733.93980784244,149,Urgent,2022-06-13,Normal,6269,410,3,0,,,,DISCHARGED -6270,2022-04-19,20169.98065941197,118,Emergency,2022-04-28,Normal,6270,355,0,0,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -6271,2019-02-17,15602.99780012213,491,Urgent,2019-03-12,Normal,6271,390,2,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -6272,2021-12-29,45543.98397755877,257,Emergency,2022-01-15,Normal,6272,277,4,3,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -6272,2019-10-21,45322.87491249462,281,Urgent,2019-11-04,Normal,6410,73,1,22,,,,DISCHARGED -6272,2019-10-28,37743.61604907189,119,Elective,2019-10-31,Normal,8134,486,3,21,,,,DISCHARGED -6274,2021-10-08,29890.736589541262,229,Elective,2021-10-23,Abnormal,6274,436,2,14,,,,DISCHARGED -6275,2023-10-03,32740.92574514204,101,Urgent,,Inconclusive,6275,462,2,26,,,,OPEN -6276,2021-11-06,9484.561597344376,347,Emergency,2021-11-28,Normal,6276,206,0,24,,,,DISCHARGED -6277,2019-07-24,22156.731990339817,310,Emergency,2019-08-14,Inconclusive,6277,387,0,22,,,,DISCHARGED -6278,2022-10-01,28087.173240632677,299,Elective,2022-10-13,Inconclusive,6278,479,1,27,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6279,2020-02-27,45459.75564855291,485,Emergency,2020-03-25,Abnormal,6279,278,0,20,,,,DISCHARGED -6280,2020-08-27,36501.97002806507,266,Urgent,2020-09-26,Normal,6280,374,3,21,,,,DISCHARGED -6281,2019-12-02,44773.1925129568,387,Elective,2019-12-12,Inconclusive,6281,325,3,9,,,,DISCHARGED -6282,2020-12-28,20597.331221718778,367,Elective,2021-01-18,Abnormal,6282,471,3,24,,,,DISCHARGED -6283,2022-12-22,2776.647406669794,191,Elective,2023-01-04,Normal,6283,339,4,16,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6284,2020-01-30,31062.37992543368,411,Emergency,2020-02-19,Inconclusive,6284,356,3,26,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6285,2022-10-30,12958.944116433528,359,Elective,2022-11-10,Abnormal,6285,339,0,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6286,2023-02-17,3645.142655875792,153,Urgent,2023-02-28,Abnormal,6286,203,0,21,,,,DISCHARGED -6287,2019-07-29,16284.262915163392,141,Elective,2019-08-02,Inconclusive,6287,160,3,11,,,,DISCHARGED -6288,2021-06-26,22298.239377625505,468,Emergency,2021-07-13,Abnormal,6288,27,2,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6289,2022-07-07,28223.966176477672,348,Urgent,2022-08-04,Inconclusive,6289,391,2,11,,,,DISCHARGED -6290,2019-12-02,31647.802050439448,304,Emergency,2019-12-17,Inconclusive,6290,256,2,15,,,,DISCHARGED -6291,2021-06-14,41419.76228132893,306,Urgent,2021-06-21,Abnormal,6291,164,1,4,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6293,2023-08-30,21395.64828735212,147,Emergency,2023-09-08,Normal,6293,62,4,28,,,,DISCHARGED -6294,2021-04-28,8381.671707759755,258,Elective,2021-05-16,Abnormal,6294,21,3,15,,,,DISCHARGED -6295,2020-08-24,48376.088832993766,188,Urgent,2020-09-06,Normal,6295,69,1,16,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6297,2022-05-06,32522.499149935287,158,Urgent,2022-05-23,Inconclusive,6297,380,2,22,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6298,2021-05-11,36131.75386382159,378,Urgent,2021-06-02,Normal,6298,404,3,28,,,,DISCHARGED -6299,2019-05-01,24676.176838998825,283,Urgent,2019-05-21,Inconclusive,6299,95,1,14,,,,DISCHARGED -6300,2023-06-11,15525.91164448756,332,Emergency,2023-06-30,Normal,6300,162,0,12,,,,DISCHARGED -6301,2020-03-22,46494.09289928049,144,Urgent,2020-04-18,Inconclusive,6301,78,2,7,,,,DISCHARGED -6302,2021-05-04,49516.31337760794,480,Urgent,2021-05-20,Abnormal,6302,4,1,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -6305,2021-01-13,5805.097992573134,304,Emergency,2021-01-27,Inconclusive,6305,315,0,20,,,,DISCHARGED -6306,2020-05-19,47227.26072631823,240,Emergency,2020-06-12,Abnormal,6306,119,2,1,,,,DISCHARGED -6307,2021-07-23,29810.43532804897,278,Emergency,2021-08-05,Inconclusive,6307,301,4,7,,,,DISCHARGED -6308,2022-11-06,45805.19650123357,384,Emergency,2022-11-11,Inconclusive,6308,177,2,9,,,,DISCHARGED -6309,2023-04-25,4912.829136820908,173,Emergency,,Abnormal,6309,175,4,6,,,,OPEN -6310,2021-03-01,23544.864488158502,258,Elective,2021-03-21,Abnormal,6310,389,4,9,,,,DISCHARGED -6311,2019-09-06,35386.11067234685,320,Urgent,2019-09-28,Abnormal,6311,216,4,24,,,,DISCHARGED -6312,2022-06-16,32418.295874994077,426,Emergency,2022-07-06,Normal,6312,55,3,3,,,,DISCHARGED -6312,2023-09-06,14276.47340348072,270,Urgent,2023-10-05,Abnormal,8640,365,3,10,,,,DISCHARGED -6312,2020-05-11,4780.693192207359,382,Elective,2020-05-25,Normal,9877,186,4,8,,,,DISCHARGED -6313,2022-04-05,24822.26794898652,172,Elective,2022-04-09,Normal,6313,231,0,3,,,,DISCHARGED -6315,2021-07-13,31622.653332477646,261,Urgent,2021-08-02,Normal,6315,254,4,2,,,,DISCHARGED -6316,2021-11-07,2614.092123383107,466,Elective,2021-12-02,Inconclusive,6316,412,1,10,,,,DISCHARGED -6317,2020-06-15,9161.065246397118,301,Elective,2020-06-17,Inconclusive,6317,454,4,2,,,,DISCHARGED -6318,2022-02-14,38806.59439247778,418,Emergency,2022-02-28,Inconclusive,6318,103,3,25,,,,DISCHARGED -6319,2020-03-14,15810.726796890822,472,Urgent,2020-03-15,Inconclusive,6319,76,3,17,,,,DISCHARGED -6320,2022-10-02,23174.406843495814,379,Urgent,2022-10-09,Inconclusive,6320,229,1,25,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -6321,2023-07-10,9400.965253547003,254,Elective,,Normal,6321,401,1,18,,,,OPEN -6322,2019-12-26,27310.46112970099,350,Urgent,2020-01-11,Normal,6322,257,2,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -6323,2023-05-01,46468.10833232258,489,Elective,,Inconclusive,6323,263,0,23,,,,OPEN -6324,2021-11-23,41023.47493868809,332,Urgent,2021-12-02,Abnormal,6324,330,0,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6325,2019-01-22,12006.459507091142,134,Urgent,2019-02-21,Normal,6325,480,0,23,,,,DISCHARGED -6326,2019-10-08,28571.455096843823,193,Elective,2019-10-24,Abnormal,6326,181,3,1,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6327,2022-08-01,14259.08139952214,286,Elective,2022-08-24,Inconclusive,6327,380,0,26,,,,DISCHARGED -6328,2020-12-23,5120.1787819202045,373,Emergency,2020-12-24,Inconclusive,6328,255,2,1,,,,DISCHARGED -6329,2023-02-21,35926.11979016372,168,Urgent,,Abnormal,6329,37,2,1,,,,OPEN -6330,2022-10-26,43874.28249272077,274,Emergency,2022-11-23,Inconclusive,6330,175,0,9,,,,DISCHARGED -6331,2020-09-08,19404.20463056126,313,Urgent,2020-09-13,Normal,6331,26,1,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -6332,2021-08-18,2502.917758197785,421,Elective,2021-08-22,Abnormal,6332,275,2,14,,,,DISCHARGED -6333,2022-04-04,27641.238520391715,336,Elective,2022-04-06,Normal,6333,139,1,21,,,,DISCHARGED -6334,2019-03-16,4143.797079417624,338,Urgent,2019-03-29,Normal,6334,298,3,11,,,,DISCHARGED -6335,2022-03-05,18604.25210957644,110,Emergency,2022-03-13,Normal,6335,444,2,10,,,,DISCHARGED -6336,2023-02-14,28854.67467505926,220,Elective,2023-02-21,Normal,6336,286,1,16,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6337,2020-07-07,32002.503192300108,187,Elective,2020-07-24,Normal,6337,90,0,17,,,,DISCHARGED -6338,2018-11-07,17020.934264470074,162,Elective,2018-11-22,Abnormal,6338,479,3,13,,,,DISCHARGED -6339,2023-02-13,17258.576991761205,337,Emergency,2023-03-12,Inconclusive,6339,60,4,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6340,2019-05-19,44564.50016325569,367,Urgent,2019-06-16,Abnormal,6340,457,4,14,,,,DISCHARGED -6341,2023-08-21,5937.25609150677,228,Elective,,Abnormal,6341,450,0,11,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",OPEN -6342,2023-05-31,10525.809317349374,294,Emergency,2023-06-04,Inconclusive,6342,364,3,26,,,,DISCHARGED -6343,2019-02-07,28091.394862690144,316,Elective,2019-02-10,Inconclusive,6343,346,3,15,,,,DISCHARGED -6344,2020-09-13,2510.0327631516425,425,Elective,2020-09-24,Inconclusive,6344,162,3,22,,,,DISCHARGED -6345,2021-03-03,39829.48079846791,159,Elective,2021-03-20,Inconclusive,6345,350,3,5,,,,DISCHARGED -6346,2020-04-01,38746.34539557557,451,Emergency,2020-04-07,Abnormal,6346,142,4,1,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -6347,2022-01-23,38386.73077117908,468,Elective,2022-02-12,Inconclusive,6347,399,1,1,,,,DISCHARGED -6348,2022-07-23,36389.81872389086,389,Elective,2022-08-01,Normal,6348,252,3,15,,,,DISCHARGED -6349,2019-10-07,11491.29578256735,296,Elective,2019-10-10,Normal,6349,268,1,1,,,,DISCHARGED -6350,2019-04-08,45686.56916405727,498,Emergency,2019-04-29,Abnormal,6350,368,3,7,,,,DISCHARGED -6351,2022-06-08,26968.69450468538,362,Elective,2022-06-09,Abnormal,6351,290,2,29,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6352,2023-10-23,19726.62638984905,179,Emergency,2023-11-15,Abnormal,6352,499,2,6,,,,DISCHARGED -6353,2020-11-19,20914.506348441475,469,Emergency,2020-12-03,Abnormal,6353,458,2,0,,,,DISCHARGED -6355,2019-02-23,44355.73182946607,450,Urgent,2019-03-05,Inconclusive,6355,186,3,3,,,,DISCHARGED -6356,2021-06-11,9269.023067480211,382,Emergency,2021-06-22,Normal,6356,404,1,10,,,,DISCHARGED -6357,2019-04-05,36299.56357949784,129,Elective,2019-04-19,Inconclusive,6357,498,4,19,,,,DISCHARGED -6358,2019-10-01,9842.50863259775,285,Elective,2019-10-24,Inconclusive,6358,437,0,6,,,,DISCHARGED -6359,2021-09-26,40872.67431546992,114,Urgent,2021-10-22,Abnormal,6359,458,4,17,,,,DISCHARGED -6360,2020-04-29,44105.38470748311,247,Emergency,2020-05-01,Inconclusive,6360,413,3,3,,,,DISCHARGED -6361,2021-10-06,35919.16141725073,157,Emergency,2021-11-01,Abnormal,6361,303,2,16,,,,DISCHARGED -6362,2021-11-18,38080.06489172251,455,Urgent,2021-12-16,Abnormal,6362,290,2,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -6363,2019-01-01,11434.768359367456,172,Urgent,2019-01-15,Normal,6363,85,1,28,,,,DISCHARGED -6364,2019-03-11,3416.0378503970755,222,Urgent,2019-03-12,Inconclusive,6364,165,3,10,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6365,2022-12-21,20250.068156215777,203,Emergency,2023-01-18,Normal,6365,414,4,10,,,,DISCHARGED -6366,2019-01-19,45362.20148536764,490,Emergency,2019-02-15,Inconclusive,6366,461,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6367,2019-11-30,8603.052351088463,310,Emergency,2019-12-25,Normal,6367,407,3,10,,,,DISCHARGED -6368,2022-06-30,20822.617860667076,153,Urgent,2022-07-11,Inconclusive,6368,113,2,14,,,,DISCHARGED -6369,2021-10-22,43297.7336529021,486,Emergency,2021-11-13,Abnormal,6369,432,4,13,,,,DISCHARGED -6371,2020-05-28,14843.51530137342,406,Emergency,2020-06-17,Normal,6371,479,0,16,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6372,2022-05-17,41742.22724248023,208,Elective,2022-05-26,Inconclusive,6372,355,2,1,,,,DISCHARGED -6373,2019-06-30,45112.52317188774,455,Urgent,2019-07-04,Abnormal,6373,415,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -6374,2021-06-15,24606.99943039784,478,Emergency,2021-06-21,Inconclusive,6374,182,1,15,,,,DISCHARGED -6375,2023-03-09,20791.154851465977,351,Urgent,2023-03-21,Normal,6375,206,2,11,,,,DISCHARGED -6376,2022-02-07,10724.782890796803,145,Urgent,2022-02-24,Inconclusive,6376,255,1,9,,,,DISCHARGED -6377,2022-04-13,19498.54255164778,382,Emergency,2022-05-09,Abnormal,6377,234,2,27,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6378,2020-04-27,33024.65602517636,163,Urgent,2020-05-24,Normal,6378,441,3,15,,,,DISCHARGED -6379,2021-12-12,35356.44393007982,455,Emergency,2021-12-22,Normal,6379,354,4,2,,,,DISCHARGED -6380,2021-07-21,16323.827520557152,125,Urgent,2021-08-14,Inconclusive,6380,2,1,7,,,,DISCHARGED -6381,2020-06-02,29827.156976012637,140,Urgent,2020-06-18,Normal,6381,207,2,26,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6382,2023-01-17,38079.7486759851,485,Elective,,Abnormal,6382,196,1,21,,,,OPEN -6383,2022-10-16,3252.623825548033,145,Urgent,2022-10-20,Inconclusive,6383,340,2,21,,,,DISCHARGED -6384,2020-10-23,12857.850428642969,190,Urgent,2020-11-12,Inconclusive,6384,124,2,24,,,,DISCHARGED -6385,2023-06-15,6253.512305256351,143,Urgent,,Inconclusive,6385,137,0,23,,,,OPEN -6386,2019-05-25,3278.1754712039424,396,Emergency,2019-05-29,Normal,6386,338,0,1,,,,DISCHARGED -6387,2022-11-23,48530.12420514535,447,Elective,2022-12-09,Abnormal,6387,24,0,21,,,,DISCHARGED -6388,2021-02-02,26731.538959177946,415,Elective,2021-02-18,Normal,6388,67,1,0,,,,DISCHARGED -6389,2023-10-28,34562.79529663183,309,Urgent,2023-11-16,Abnormal,6389,60,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -6390,2020-09-14,44486.43401762952,319,Urgent,2020-09-16,Abnormal,6390,28,2,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6391,2020-06-09,23579.69137565181,458,Elective,2020-06-19,Abnormal,6391,382,4,24,,,,DISCHARGED -6392,2019-11-06,10445.980492927923,227,Emergency,2019-12-06,Normal,6392,18,0,3,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -6393,2023-05-22,38173.9257316802,154,Elective,,Abnormal,6393,170,1,3,,,,OPEN -6394,2019-08-10,8227.714523297263,416,Urgent,2019-08-26,Inconclusive,6394,449,1,8,,,,DISCHARGED -6395,2021-04-14,26158.396838799526,261,Urgent,2021-05-03,Normal,6395,73,1,2,,,,DISCHARGED -6396,2022-11-12,17939.54109740164,131,Elective,2022-11-17,Normal,6396,60,4,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -6397,2022-01-31,1428.6194928533328,461,Urgent,2022-02-14,Abnormal,6397,426,4,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6398,2022-03-03,15312.402684283905,476,Urgent,2022-04-02,Normal,6398,152,0,21,,,,DISCHARGED -6399,2021-12-12,15611.025760339273,196,Urgent,2022-01-07,Abnormal,6399,275,4,18,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -6400,2023-09-23,44862.82867055065,469,Urgent,,Abnormal,6400,47,0,0,,,,OPEN -6401,2021-02-09,1510.0174542278176,307,Elective,2021-03-11,Abnormal,6401,210,4,9,,,,DISCHARGED -6402,2023-08-02,21607.16446733318,291,Urgent,2023-08-21,Abnormal,6402,342,4,21,,,,DISCHARGED -6403,2022-04-08,24256.84641421933,450,Urgent,2022-04-12,Abnormal,6403,407,4,29,,,,DISCHARGED -6405,2019-02-26,36020.02597604894,409,Elective,2019-03-24,Normal,6405,138,0,11,,,,DISCHARGED -6406,2020-01-02,1297.1265139423306,146,Urgent,2020-01-05,Abnormal,6406,109,2,9,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6408,2022-11-26,27520.734687519034,463,Emergency,2022-12-19,Abnormal,6408,481,0,1,,,,DISCHARGED -6409,2020-11-18,7483.788011774308,105,Elective,2020-12-10,Inconclusive,6409,182,2,15,,,,DISCHARGED -6411,2019-11-09,38310.284764213386,386,Emergency,2019-12-04,Abnormal,6411,27,1,7,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6412,2023-06-20,7840.692750012547,469,Urgent,2023-06-26,Inconclusive,6412,196,1,13,,,,DISCHARGED -6413,2019-09-27,14474.870506402229,167,Emergency,2019-10-22,Normal,6413,190,0,28,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6414,2023-04-14,38216.70514985092,455,Emergency,,Inconclusive,6414,314,2,14,,,,OPEN -6415,2021-07-28,8691.640039626809,444,Elective,2021-08-03,Normal,6415,388,2,15,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -6416,2021-03-19,27298.734315302598,405,Elective,2021-03-22,Inconclusive,6416,50,2,10,,,,DISCHARGED -6417,2023-04-06,19972.80664006177,155,Emergency,2023-04-23,Normal,6417,148,1,11,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -6418,2023-10-25,31820.2795035068,432,Elective,2023-11-12,Inconclusive,6418,267,0,1,,,,DISCHARGED -6419,2022-12-12,33315.480493456016,135,Emergency,2022-12-29,Normal,6419,49,3,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6420,2019-01-25,27180.243589882703,138,Urgent,2019-02-20,Abnormal,6420,387,2,29,,,,DISCHARGED -6421,2023-09-13,43932.49307678761,488,Elective,2023-10-02,Abnormal,6421,245,2,2,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6422,2022-06-05,2996.658611545702,118,Urgent,2022-07-01,Normal,6422,112,3,8,,,,DISCHARGED -6423,2022-12-21,15072.294837733678,141,Elective,2022-12-24,Normal,6423,169,0,17,,,,DISCHARGED -6424,2020-04-07,26504.173734799824,229,Urgent,2020-04-20,Abnormal,6424,467,2,18,,,,DISCHARGED -6425,2021-06-16,18483.959711816584,391,Urgent,2021-07-10,Inconclusive,6425,165,0,6,,,,DISCHARGED -6427,2020-03-08,38533.4245579365,193,Emergency,2020-03-15,Inconclusive,6427,408,2,3,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -6429,2022-01-20,11329.43673130454,294,Urgent,2022-02-18,Abnormal,6429,13,4,5,,,,DISCHARGED -6430,2020-09-01,12463.992586612105,294,Emergency,2020-09-27,Normal,6430,202,2,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6431,2023-08-23,23275.6840946182,315,Urgent,2023-09-01,Inconclusive,6431,287,4,0,,,,DISCHARGED -6432,2021-09-30,24158.106073829145,179,Urgent,2021-10-29,Normal,6432,394,0,15,,,,DISCHARGED -6433,2021-02-09,30852.388454299653,205,Elective,2021-03-01,Inconclusive,6433,188,2,10,,,,DISCHARGED -6434,2021-02-13,2742.3709276833183,392,Emergency,2021-02-20,Abnormal,6434,401,1,21,,,,DISCHARGED -6435,2019-09-18,22138.94999962974,331,Emergency,2019-10-12,Abnormal,6435,154,1,3,,,,DISCHARGED -6435,2022-09-16,18765.389652883478,297,Urgent,2022-09-21,Abnormal,8955,54,3,17,,,,DISCHARGED -6437,2023-10-18,7874.9356277291645,152,Emergency,2023-10-31,Inconclusive,6437,181,1,22,,,,DISCHARGED -6438,2023-01-31,23288.320481482748,457,Urgent,2023-02-28,Inconclusive,6438,209,4,25,,,,DISCHARGED -6439,2020-10-29,22853.24411337351,165,Elective,2020-11-18,Normal,6439,375,1,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -6441,2021-02-07,17611.629241012157,329,Emergency,2021-03-09,Normal,6441,470,1,27,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6442,2022-05-24,43578.58892589563,406,Emergency,2022-06-07,Abnormal,6442,74,1,28,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -6443,2023-08-14,20109.16897740629,374,Urgent,2023-08-22,Abnormal,6443,276,2,4,,,,DISCHARGED -6444,2022-11-01,35808.94134798303,297,Emergency,2022-11-15,Inconclusive,6444,427,3,21,,,,DISCHARGED -6445,2022-12-28,48027.55601450049,216,Emergency,2023-01-15,Normal,6445,132,0,5,,,,DISCHARGED -6446,2023-03-25,35084.300305117344,244,Emergency,2023-04-01,Normal,6446,342,3,29,,,,DISCHARGED -6447,2019-07-26,26015.539765533045,167,Emergency,2019-08-17,Inconclusive,6447,424,4,24,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -6448,2019-04-22,19784.20559356157,103,Emergency,2019-05-09,Abnormal,6448,58,2,27,,,,DISCHARGED -6449,2022-10-06,13249.652206260307,142,Urgent,2022-10-22,Inconclusive,6449,344,2,1,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -6450,2019-03-15,18715.415491806765,385,Emergency,2019-04-13,Abnormal,6450,488,1,11,,,,DISCHARGED -6451,2021-07-19,18925.55700290145,229,Emergency,2021-07-26,Normal,6451,181,1,21,,,,DISCHARGED -6453,2021-04-30,28807.28176484504,294,Elective,2021-05-19,Inconclusive,6453,457,4,8,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6454,2020-09-24,35173.555002044486,342,Emergency,2020-10-08,Inconclusive,6454,405,2,27,,,,DISCHARGED -6455,2021-06-02,19340.95334968545,102,Emergency,2021-06-26,Normal,6455,338,0,19,,,,DISCHARGED -6457,2022-04-23,4103.562709052907,360,Urgent,2022-05-16,Abnormal,6457,320,3,28,,,,DISCHARGED -6458,2022-10-31,44885.7231746151,482,Elective,2022-11-05,Inconclusive,6458,63,2,11,,,,DISCHARGED -6459,2020-05-19,40659.61807959143,316,Elective,2020-06-12,Inconclusive,6459,326,0,28,,,,DISCHARGED -6460,2018-12-04,37677.354071304646,313,Urgent,2018-12-19,Abnormal,6460,259,0,12,,,,DISCHARGED -6461,2020-05-22,12218.485583623378,434,Emergency,2020-06-11,Abnormal,6461,192,3,26,,,,DISCHARGED -6462,2022-06-14,25092.920106769976,382,Urgent,2022-07-13,Abnormal,6462,142,0,21,,,,DISCHARGED -6463,2021-03-03,46927.26166401963,429,Emergency,2021-03-28,Abnormal,6463,103,4,22,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6464,2022-06-04,24069.892535706607,356,Urgent,2022-06-25,Inconclusive,6464,459,0,16,,,,DISCHARGED -6466,2022-07-18,9408.97569855612,399,Emergency,2022-08-15,Normal,6466,405,4,4,,,,DISCHARGED -6467,2020-07-31,3830.439965553167,272,Elective,2020-08-01,Abnormal,6467,213,0,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6468,2022-09-23,12110.253455149204,169,Elective,2022-10-14,Normal,6468,241,1,12,,,,DISCHARGED -6468,2020-09-11,30889.02978054228,193,Emergency,2020-10-05,Abnormal,9824,430,0,28,,,,DISCHARGED -6469,2020-07-12,8455.933132181595,326,Emergency,2020-08-02,Normal,6469,208,4,12,,,,DISCHARGED -6470,2022-05-21,2110.3311710334483,191,Emergency,2022-06-01,Inconclusive,6470,92,0,9,,,,DISCHARGED -6472,2023-05-25,46797.90447911199,427,Emergency,,Abnormal,6472,429,0,14,,,,OPEN -6473,2020-01-01,10176.238289943954,460,Emergency,2020-01-15,Inconclusive,6473,141,0,14,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6474,2022-07-01,38896.73676388027,214,Elective,2022-07-04,Normal,6474,433,4,17,,,,DISCHARGED -6474,2019-04-27,29534.06437873794,450,Urgent,2019-05-03,Abnormal,9954,403,0,17,,,,DISCHARGED -6475,2022-05-07,47186.643012484645,144,Urgent,2022-05-17,Normal,6475,433,3,1,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6476,2020-11-28,18711.57437451129,157,Urgent,2020-12-24,Abnormal,6476,111,3,22,,,,DISCHARGED -6477,2019-05-03,26091.750109589066,305,Urgent,2019-05-11,Normal,6477,416,4,10,,,,DISCHARGED -6478,2020-05-12,19318.13874997756,379,Elective,2020-05-13,Inconclusive,6478,374,1,12,,,,DISCHARGED -6479,2022-02-11,48137.36153400999,427,Elective,2022-02-17,Inconclusive,6479,58,3,10,,,,DISCHARGED -6480,2020-05-25,30617.517995217724,135,Emergency,2020-06-17,Inconclusive,6480,42,2,3,,,,DISCHARGED -6481,2021-11-17,35403.3079465154,219,Urgent,2021-12-07,Normal,6481,206,3,14,,,,DISCHARGED -6482,2020-04-28,35502.10023303405,281,Urgent,2020-05-04,Inconclusive,6482,267,2,21,,,,DISCHARGED -6483,2022-11-05,39426.65592253163,248,Elective,2022-12-04,Normal,6483,295,4,22,,,,DISCHARGED -6484,2023-10-14,48160.80364209265,416,Elective,2023-10-25,Inconclusive,6484,117,1,24,,,,DISCHARGED -6485,2022-01-02,10467.718585228504,168,Elective,2022-01-04,Normal,6485,19,2,10,,,,DISCHARGED -6486,2021-09-16,26818.31334499874,411,Urgent,2021-10-11,Inconclusive,6486,221,2,17,,,,DISCHARGED -6488,2020-08-23,31316.02989557156,347,Emergency,2020-09-19,Abnormal,6488,165,3,15,,,,DISCHARGED -6489,2019-02-17,18109.812067873427,319,Emergency,2019-03-19,Normal,6489,130,2,9,,,,DISCHARGED -6490,2021-02-22,27058.63201980125,268,Elective,2021-03-23,Normal,6490,155,4,11,,,,DISCHARGED -6491,2021-09-09,2225.498606371526,295,Emergency,2021-10-07,Inconclusive,6491,183,4,12,,,,DISCHARGED -6492,2020-10-29,40221.425409786985,102,Elective,2020-11-09,Abnormal,6492,89,4,8,,,,DISCHARGED -6493,2019-10-21,39686.40942163981,498,Elective,2019-11-01,Inconclusive,6493,93,3,26,,,,DISCHARGED -6494,2021-06-26,11379.973646328,364,Urgent,2021-07-11,Inconclusive,6494,12,1,20,,,,DISCHARGED -6496,2023-06-28,18933.876349247857,370,Emergency,,Normal,6496,460,3,12,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6497,2020-12-03,27990.04934907472,234,Urgent,2021-01-01,Inconclusive,6497,321,4,5,,,,DISCHARGED -6498,2023-02-10,11303.720672191046,219,Emergency,2023-02-25,Normal,6498,292,3,5,,,,DISCHARGED -6499,2022-12-05,22796.47098961584,358,Elective,2022-12-20,Abnormal,6499,432,4,10,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -6500,2022-09-02,47947.42754337616,320,Elective,2022-09-22,Abnormal,6500,229,0,18,,,,DISCHARGED -6501,2019-04-25,11531.45029232743,336,Urgent,2019-05-17,Normal,6501,321,0,26,,,,DISCHARGED -6502,2019-04-05,1639.9367572640513,329,Emergency,2019-04-15,Inconclusive,6502,291,2,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6503,2022-11-11,45157.04114735989,434,Elective,2022-12-01,Normal,6503,437,1,9,,,,DISCHARGED -6504,2021-12-01,17821.32053835732,156,Urgent,2021-12-18,Abnormal,6504,25,0,22,,,,DISCHARGED -6505,2019-10-07,6449.3025579987625,425,Elective,2019-10-25,Inconclusive,6505,74,4,14,,,,DISCHARGED -6506,2020-09-01,11651.878079559883,195,Emergency,2020-09-19,Normal,6506,455,3,12,,,,DISCHARGED -6507,2021-11-17,13293.229207479431,303,Urgent,2021-11-27,Abnormal,6507,363,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -6508,2022-05-05,43593.777029287325,320,Emergency,2022-05-08,Abnormal,6508,423,2,7,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -6510,2022-01-24,48828.09919031179,130,Elective,2022-02-11,Abnormal,6510,298,3,4,,,,DISCHARGED -6511,2023-10-30,25084.610651048384,152,Emergency,,Inconclusive,6511,149,0,1,,,,OPEN -6512,2023-02-11,31598.67402435054,387,Urgent,2023-03-10,Normal,6512,147,3,15,,,,DISCHARGED -6513,2023-10-22,10105.207379691195,111,Elective,2023-11-03,Abnormal,6513,7,0,12,,,,DISCHARGED -6514,2019-03-28,36974.12370398772,460,Urgent,2019-04-22,Inconclusive,6514,28,0,18,,,,DISCHARGED -6515,2019-05-17,23841.53465453391,495,Urgent,2019-06-13,Normal,6515,295,1,8,,,,DISCHARGED -6516,2021-07-03,44109.01857303184,146,Elective,2021-07-19,Inconclusive,6516,473,2,14,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6517,2018-12-24,13700.531651410329,140,Emergency,2019-01-01,Inconclusive,6517,413,4,5,,,,DISCHARGED -6518,2021-05-26,43995.63273430472,369,Elective,2021-06-01,Abnormal,6518,208,0,7,,,,DISCHARGED -6519,2020-10-08,24881.750842571968,483,Elective,2020-10-11,Abnormal,6519,127,2,23,,,,DISCHARGED -6520,2021-12-02,12510.723860368304,432,Urgent,2021-12-17,Normal,6520,339,4,13,,,,DISCHARGED -6521,2022-05-15,2511.467092047872,107,Elective,2022-06-09,Abnormal,6521,115,3,4,,,,DISCHARGED -6522,2023-03-03,47032.53132076731,325,Elective,2023-03-23,Abnormal,6522,438,2,16,,,,DISCHARGED -6523,2021-06-05,29136.69213992961,426,Urgent,2021-06-18,Abnormal,6523,143,2,21,,,,DISCHARGED -6523,2021-06-22,5629.6077747215895,102,Urgent,2021-06-27,Abnormal,8107,429,2,6,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -6524,2021-09-03,28480.05216557829,358,Urgent,2021-09-10,Inconclusive,6524,317,3,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -6525,2022-10-03,36820.65106609598,428,Emergency,2022-10-06,Normal,6525,234,3,15,,,,DISCHARGED -6526,2019-04-30,20525.26239410496,140,Emergency,2019-05-21,Abnormal,6526,6,2,17,,,,DISCHARGED -6527,2020-11-18,19110.81383010283,249,Elective,2020-11-19,Abnormal,6527,463,1,27,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6528,2018-12-06,10181.973029741674,412,Emergency,2018-12-30,Abnormal,6528,44,0,12,,,,DISCHARGED -6529,2023-01-08,31391.37446400957,206,Emergency,2023-01-16,Normal,6529,442,3,17,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -6530,2021-05-06,34021.0400547744,408,Elective,2021-06-05,Normal,6530,238,1,9,,,,DISCHARGED -6531,2023-07-01,42927.232323350894,402,Elective,2023-07-06,Normal,6531,439,3,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6532,2023-07-04,6688.166188336051,246,Emergency,2023-07-23,Inconclusive,6532,431,2,20,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6533,2019-05-14,36683.82144295969,449,Elective,2019-05-19,Inconclusive,6533,154,1,17,,,,DISCHARGED -6534,2023-10-02,30658.94501948577,216,Urgent,,Normal,6534,180,4,18,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,OPEN -6535,2022-05-24,10851.179695773326,406,Emergency,2022-06-05,Inconclusive,6535,214,0,1,,,,DISCHARGED -6536,2020-08-24,38388.72381185949,226,Urgent,2020-09-12,Normal,6536,87,0,26,,,,DISCHARGED -6538,2022-12-29,10879.11401335479,260,Emergency,2023-01-27,Normal,6538,255,3,3,,,,DISCHARGED -6539,2020-04-22,34534.28629193115,458,Elective,2020-05-11,Inconclusive,6539,72,0,10,,,,DISCHARGED -6540,2022-02-23,25263.584712358992,237,Urgent,2022-03-20,Inconclusive,6540,418,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6541,2021-07-03,46148.41610851614,242,Emergency,2021-07-23,Normal,6541,178,1,8,,,,DISCHARGED -6542,2019-08-15,34926.432703066894,316,Emergency,2019-09-10,Normal,6542,211,1,9,,,,DISCHARGED -6543,2022-06-23,23549.199777734368,111,Elective,2022-07-02,Normal,6543,292,2,27,,,,DISCHARGED -6544,2021-01-13,45069.391862605095,265,Elective,2021-02-05,Inconclusive,6544,233,1,1,,,,DISCHARGED -6545,2019-10-03,34945.287741910404,423,Urgent,2019-10-29,Abnormal,6545,464,3,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6546,2021-02-25,17333.432585199174,312,Urgent,2021-03-21,Normal,6546,238,4,14,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6548,2022-06-01,11958.833783556503,161,Emergency,2022-06-26,Normal,6548,222,2,26,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6549,2022-09-01,26167.673580693387,307,Urgent,2022-09-22,Abnormal,6549,118,3,29,,,,DISCHARGED -6550,2023-06-11,8573.572947078203,478,Elective,,Normal,6550,312,3,18,,,,OPEN -6551,2020-11-07,5293.745359537666,257,Elective,2020-11-24,Abnormal,6551,263,3,9,,,,DISCHARGED -6552,2023-10-15,40239.94509618528,329,Elective,2023-10-19,Abnormal,6552,206,0,23,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -6553,2021-11-28,28684.25135348031,210,Elective,2021-12-21,Normal,6553,94,3,19,,,,DISCHARGED -6554,2019-08-23,17657.416351515432,311,Elective,2019-08-30,Normal,6554,372,0,13,,,,DISCHARGED -6555,2019-06-14,14003.265128834311,284,Elective,2019-06-17,Normal,6555,221,1,3,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -6556,2021-01-26,38851.55395328927,333,Emergency,2021-02-06,Inconclusive,6556,365,0,24,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6557,2023-10-18,28410.24745176708,469,Elective,2023-10-24,Normal,6557,275,3,10,,,,DISCHARGED -6558,2022-12-07,48207.54706603848,450,Elective,2022-12-16,Inconclusive,6558,379,4,2,,,,DISCHARGED -6559,2020-10-26,36269.68762402382,126,Urgent,2020-11-21,Normal,6559,230,4,22,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -6560,2018-12-24,35229.37872668747,289,Emergency,2019-01-12,Inconclusive,6560,308,1,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -6561,2021-05-11,43796.59703445785,346,Urgent,2021-05-30,Normal,6561,118,3,6,,,,DISCHARGED -6562,2020-08-28,35400.33811486774,267,Urgent,2020-09-25,Inconclusive,6562,267,0,25,,,,DISCHARGED -6563,2021-11-17,9127.477608107109,240,Urgent,2021-11-27,Inconclusive,6563,432,4,10,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6564,2022-08-30,20564.355730617037,188,Elective,2022-09-07,Normal,6564,272,2,17,,,,DISCHARGED -6565,2019-11-25,2819.2696253223567,243,Emergency,2019-12-06,Normal,6565,63,3,27,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -6566,2019-06-23,14904.474279957903,214,Emergency,2019-07-20,Abnormal,6566,297,3,13,,,,DISCHARGED -6567,2019-08-29,5425.935372465265,331,Emergency,2019-08-30,Normal,6567,349,2,13,,,,DISCHARGED -6568,2021-07-03,45776.51509565352,420,Urgent,2021-07-07,Inconclusive,6568,412,4,5,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -6569,2020-12-18,27689.944263444944,281,Elective,2021-01-13,Inconclusive,6569,402,2,28,,,,DISCHARGED -6570,2023-02-21,14851.789382675071,471,Urgent,2023-03-17,Abnormal,6570,493,1,8,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6571,2019-08-01,31233.542046345,334,Elective,2019-08-17,Abnormal,6571,10,0,21,,,,DISCHARGED -6572,2021-10-17,9428.84136505866,460,Emergency,2021-11-01,Normal,6572,97,0,2,,,,DISCHARGED -6573,2022-08-13,5185.303973295573,401,Emergency,2022-09-06,Inconclusive,6573,433,4,16,,,,DISCHARGED -6574,2022-10-08,21430.717821295453,181,Elective,2022-10-22,Inconclusive,6574,70,2,27,,,,DISCHARGED -6575,2023-07-28,28255.311069061085,428,Urgent,2023-08-22,Normal,6575,363,3,11,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -6576,2021-01-30,30713.20589605569,227,Emergency,2021-02-16,Inconclusive,6576,57,3,3,,,,DISCHARGED -6577,2019-09-01,22984.49013461101,265,Elective,2019-09-19,Abnormal,6577,289,3,19,,,,DISCHARGED -6578,2020-08-14,45844.47258661566,236,Urgent,2020-08-21,Abnormal,6578,250,1,15,,,,DISCHARGED -6579,2020-04-05,11153.824718376234,347,Emergency,2020-04-15,Abnormal,6579,275,1,28,,,,DISCHARGED -6580,2019-04-14,29264.84724292384,252,Elective,2019-04-30,Abnormal,6580,49,3,23,,,,DISCHARGED -6581,2021-08-17,33337.25114824751,461,Elective,2021-09-09,Abnormal,6581,357,4,9,,,,DISCHARGED -6582,2023-02-23,43489.81540707157,249,Urgent,2023-03-25,Normal,6582,215,1,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6583,2023-10-12,14445.168188533233,168,Urgent,2023-10-18,Inconclusive,6583,393,1,29,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -6585,2021-10-10,25256.85518795779,212,Urgent,2021-10-26,Inconclusive,6585,415,0,28,,,,DISCHARGED -6586,2020-08-19,47175.7431904998,445,Urgent,2020-08-23,Inconclusive,6586,51,0,6,,,,DISCHARGED -6587,2021-04-23,39416.18648829994,227,Emergency,2021-05-10,Normal,6587,270,4,9,,,,DISCHARGED -6588,2019-10-04,42051.586444843146,386,Urgent,2019-10-11,Abnormal,6588,484,1,6,,,,DISCHARGED -6588,2021-08-08,11306.885137040565,337,Elective,2021-08-21,Normal,8715,83,1,22,,,,DISCHARGED -6589,2018-12-11,12727.895202263906,374,Urgent,2019-01-01,Abnormal,6589,386,2,27,,,,DISCHARGED -6590,2020-10-26,34022.298168073205,329,Urgent,2020-11-23,Inconclusive,6590,292,4,17,,,,DISCHARGED -6591,2021-02-23,44957.289633932174,169,Elective,2021-03-19,Abnormal,6591,125,4,8,,,,DISCHARGED -6592,2020-03-17,43048.163649792135,208,Elective,2020-04-12,Inconclusive,6592,295,2,21,,,,DISCHARGED -6593,2019-02-13,26576.76628783185,414,Urgent,2019-03-10,Abnormal,6593,71,2,17,,,,DISCHARGED -6594,2020-06-04,9152.50786332433,241,Elective,2020-06-06,Inconclusive,6594,295,0,16,,,,DISCHARGED -6594,2023-05-16,20103.47591684117,155,Urgent,2023-05-20,Inconclusive,9326,235,4,10,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -6595,2023-10-09,24937.61996852029,274,Emergency,,Inconclusive,6595,55,4,0,,,,OPEN -6596,2020-10-17,29039.929192462605,237,Emergency,2020-11-02,Abnormal,6596,406,2,16,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6597,2022-08-17,11023.592023568868,349,Emergency,2022-08-21,Normal,6597,359,3,3,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6598,2023-06-14,10703.41961658105,362,Elective,,Abnormal,6598,394,3,3,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -6599,2022-07-03,16106.94367703098,268,Urgent,2022-08-02,Inconclusive,6599,109,0,13,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -6600,2018-12-26,2024.8128271470955,173,Emergency,2019-01-21,Normal,6600,191,3,27,,,,DISCHARGED -6601,2021-09-27,29203.22330675468,319,Urgent,2021-10-05,Abnormal,6601,391,3,8,,,,DISCHARGED -6601,2021-09-25,36358.13618181468,466,Elective,2021-10-03,Abnormal,7028,92,3,12,,,,DISCHARGED -6602,2022-09-11,16970.758233044584,253,Urgent,2022-09-24,Abnormal,6602,349,1,27,,,,DISCHARGED -6603,2023-05-02,30199.60841912832,212,Urgent,2023-05-13,Normal,6603,55,0,27,,,,DISCHARGED -6604,2023-08-21,16609.266625408978,386,Urgent,2023-08-22,Inconclusive,6604,59,2,15,,,,DISCHARGED -6606,2020-12-05,29735.58711549783,386,Elective,2020-12-21,Abnormal,6606,137,3,0,,,,DISCHARGED -6607,2023-05-15,46846.27531714412,211,Elective,2023-06-05,Normal,6607,38,1,2,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -6608,2019-10-03,8185.924507537746,351,Elective,2019-10-14,Inconclusive,6608,27,3,18,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -6610,2023-06-04,41800.11373715216,494,Emergency,2023-06-09,Abnormal,6610,48,1,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -6611,2019-04-01,15583.457574642316,499,Urgent,2019-04-15,Normal,6611,419,0,17,,,,DISCHARGED -6612,2020-08-30,12432.654015868047,355,Emergency,2020-08-31,Normal,6612,124,3,5,,,,DISCHARGED -6613,2019-04-16,31646.438830694795,241,Emergency,2019-05-06,Abnormal,6613,12,1,26,,,,DISCHARGED -6614,2020-11-18,26371.461895141678,224,Emergency,2020-12-11,Normal,6614,479,4,19,,,,DISCHARGED -6615,2022-02-10,35122.17191646656,333,Elective,2022-02-14,Normal,6615,35,4,28,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -6617,2022-06-26,5934.634779140558,137,Urgent,2022-06-28,Normal,6617,100,1,25,,,,DISCHARGED -6618,2021-08-26,32974.01568924844,101,Emergency,2021-08-30,Normal,6618,281,3,5,,,,DISCHARGED -6619,2021-12-08,47678.16360697733,476,Emergency,2021-12-28,Inconclusive,6619,85,3,28,,,,DISCHARGED -6620,2022-10-18,42140.96938429981,458,Urgent,2022-11-03,Normal,6620,3,0,4,,,,DISCHARGED -6621,2019-07-29,19324.83321065109,482,Emergency,2019-07-30,Abnormal,6621,222,0,11,,,,DISCHARGED -6622,2020-06-04,26232.216458243856,337,Emergency,2020-06-07,Normal,6622,337,2,8,,,,DISCHARGED -6623,2021-07-17,7069.395437945416,376,Elective,2021-08-07,Normal,6623,447,0,8,,,,DISCHARGED -6624,2021-10-24,17316.980219845973,407,Emergency,2021-11-14,Inconclusive,6624,165,3,16,,,,DISCHARGED -6625,2023-02-16,37631.73449268179,260,Urgent,,Abnormal,6625,382,2,18,,,,OPEN -6626,2021-10-23,43604.154287424295,460,Elective,2021-11-12,Normal,6626,343,0,16,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -6627,2022-11-17,8836.849299455425,138,Emergency,2022-12-15,Inconclusive,6627,382,1,21,,,,DISCHARGED -6628,2022-03-13,12194.934656706071,353,Urgent,2022-03-27,Normal,6628,375,4,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6629,2023-08-10,4261.993956501122,156,Emergency,,Normal,6629,470,0,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -6630,2020-12-07,18610.67393743832,181,Emergency,2020-12-19,Normal,6630,277,0,2,,,,DISCHARGED -6631,2022-03-30,2279.8670176115047,127,Emergency,2022-04-20,Normal,6631,129,1,13,,,,DISCHARGED -6632,2023-03-25,42120.73020131739,300,Elective,2023-04-22,Inconclusive,6632,30,3,16,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6633,2021-01-23,7877.192497358189,431,Elective,2021-02-02,Normal,6633,374,1,21,,,,DISCHARGED -6634,2020-11-16,10441.187850098246,434,Emergency,2020-11-18,Abnormal,6634,10,0,15,,,,DISCHARGED -6635,2021-06-18,23211.02340624118,442,Urgent,2021-07-14,Abnormal,6635,475,3,20,,,,DISCHARGED -6637,2023-04-30,31989.563754005798,269,Elective,,Normal,6637,301,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",OPEN -6638,2020-01-30,12737.149025052233,439,Elective,2020-02-15,Abnormal,6638,95,0,27,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6639,2023-02-21,12709.075514934071,431,Emergency,2023-03-05,Normal,6639,189,1,23,,,,DISCHARGED -6641,2020-04-27,37549.255820193415,285,Emergency,2020-05-26,Inconclusive,6641,452,2,29,,,,DISCHARGED -6642,2023-01-16,43857.57648295956,492,Urgent,,Inconclusive,6642,191,4,1,,,,OPEN -6643,2022-05-17,5453.882929190576,128,Urgent,2022-06-09,Abnormal,6643,485,2,7,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6644,2022-12-19,48050.609947525205,217,Emergency,2023-01-13,Inconclusive,6644,265,1,11,,,,DISCHARGED -6645,2018-11-19,27229.912943286738,301,Urgent,2018-11-25,Normal,6645,423,2,20,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -6646,2020-06-19,24487.848455260464,459,Emergency,2020-07-03,Normal,6646,127,1,15,,,,DISCHARGED -6647,2023-09-16,21571.40538230428,334,Urgent,2023-10-15,Abnormal,6647,237,0,7,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -6648,2022-12-29,17542.226992311284,400,Urgent,2023-01-27,Abnormal,6648,407,3,27,,,,DISCHARGED -6649,2022-11-09,31234.537627924605,194,Urgent,2022-11-30,Abnormal,6649,354,4,15,,,,DISCHARGED -6650,2019-08-18,16001.884800259271,361,Urgent,2019-08-31,Inconclusive,6650,427,3,9,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -6651,2019-04-12,34983.98196849732,380,Urgent,2019-05-05,Inconclusive,6651,111,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6652,2021-07-04,21317.912733759804,419,Emergency,2021-07-23,Abnormal,6652,315,3,14,,,,DISCHARGED -6653,2021-12-04,19905.46212920566,453,Urgent,2021-12-30,Abnormal,6653,445,1,3,,,,DISCHARGED -6654,2019-07-28,45148.610409885136,468,Elective,2019-07-30,Inconclusive,6654,342,1,25,,,,DISCHARGED -6655,2020-08-14,39915.43238922771,182,Emergency,2020-09-02,Inconclusive,6655,144,4,14,,,,DISCHARGED -6656,2022-09-10,39731.59519659988,279,Urgent,2022-10-01,Abnormal,6656,64,1,3,,,,DISCHARGED -6657,2021-10-17,34316.53293777999,304,Emergency,2021-10-21,Inconclusive,6657,246,1,29,,,,DISCHARGED -6658,2020-08-03,36587.26130657394,398,Urgent,2020-08-07,Abnormal,6658,222,1,10,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -6659,2023-07-27,29100.86060251551,138,Elective,,Normal,6659,478,1,5,,,,OPEN -6660,2020-05-29,20062.201482819277,239,Urgent,2020-06-28,Abnormal,6660,489,0,3,,,,DISCHARGED -6661,2019-08-13,8849.129967443303,300,Elective,2019-08-20,Inconclusive,6661,312,4,8,,,,DISCHARGED -6662,2021-04-22,41734.13586213612,122,Emergency,2021-05-19,Inconclusive,6662,438,1,8,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -6664,2019-07-25,26645.33840257226,265,Elective,2019-07-30,Normal,6664,105,4,2,,,,DISCHARGED -6665,2021-08-22,45729.3716678944,411,Elective,2021-09-05,Inconclusive,6665,180,2,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6666,2021-08-11,20760.247031449388,232,Urgent,2021-08-16,Inconclusive,6666,183,0,27,,,,DISCHARGED -6667,2018-12-17,43425.79603214072,489,Urgent,2018-12-30,Inconclusive,6667,225,1,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -6668,2021-10-30,8091.971315786723,439,Elective,2021-11-22,Normal,6668,264,0,14,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6669,2020-01-13,48390.96913421875,491,Elective,2020-01-25,Normal,6669,277,0,27,,,,DISCHARGED -6669,2021-10-23,11525.16141640984,248,Elective,2021-11-15,Inconclusive,7172,396,2,8,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -6669,2020-05-03,13788.72195528592,219,Elective,2020-06-01,Abnormal,9911,88,4,1,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6671,2021-05-18,31590.4900008648,344,Urgent,2021-06-05,Inconclusive,6671,175,0,2,,,,DISCHARGED -6672,2022-08-05,9203.703947789943,165,Urgent,2022-08-31,Inconclusive,6672,17,3,25,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -6673,2022-11-30,17473.093354464032,282,Emergency,2022-12-04,Normal,6673,370,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6674,2020-08-07,31116.180508175567,429,Urgent,2020-08-14,Normal,6674,459,3,11,,,,DISCHARGED -6675,2021-11-15,30692.210433559954,136,Urgent,2021-11-27,Abnormal,6675,423,2,15,,,,DISCHARGED -6676,2023-06-14,4888.096416293663,262,Elective,2023-07-06,Abnormal,6676,400,3,4,,,,DISCHARGED -6677,2023-06-14,13566.573581326702,230,Elective,2023-06-20,Inconclusive,6677,398,3,9,,,,DISCHARGED -6678,2021-11-06,9812.976468835102,279,Emergency,2021-11-16,Normal,6678,105,0,27,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -6679,2022-02-24,42041.831748304,451,Urgent,2022-03-21,Inconclusive,6679,270,0,14,,,,DISCHARGED -6680,2019-04-15,17845.61428582277,289,Elective,2019-05-02,Abnormal,6680,462,2,13,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6681,2020-06-19,6607.440035325331,451,Urgent,2020-07-17,Inconclusive,6681,318,4,13,,,,DISCHARGED -6681,2019-03-04,36616.3341896765,286,Emergency,2019-03-09,Normal,7087,166,0,22,,,,DISCHARGED -6682,2022-10-05,46307.90735658391,449,Emergency,2022-10-11,Abnormal,6682,12,0,12,,,,DISCHARGED -6683,2020-03-09,14997.264071857058,471,Elective,2020-03-17,Inconclusive,6683,336,1,15,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6684,2020-06-16,34922.53068334383,262,Emergency,2020-07-08,Normal,6684,31,0,29,,,,DISCHARGED -6685,2022-03-15,41051.61438023765,198,Urgent,2022-03-16,Abnormal,6685,392,4,7,,,,DISCHARGED -6686,2019-08-23,27317.565132086816,144,Emergency,2019-09-16,Normal,6686,39,1,7,,,,DISCHARGED -6687,2023-06-26,39942.01391426238,142,Urgent,2023-06-27,Normal,6687,147,3,29,,,,DISCHARGED -6688,2020-11-20,34388.85149958681,233,Urgent,2020-11-22,Abnormal,6688,217,3,16,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -6689,2021-07-22,43552.257548488335,292,Elective,2021-08-03,Inconclusive,6689,218,1,29,,,,DISCHARGED -6690,2021-09-06,12929.735904777008,321,Elective,2021-09-29,Inconclusive,6690,468,1,16,,,,DISCHARGED -6691,2020-10-19,12102.912631949252,445,Urgent,2020-10-30,Normal,6691,81,1,2,,,,DISCHARGED -6692,2019-11-03,26162.20324817585,203,Emergency,2019-11-09,Inconclusive,6692,332,2,0,,,,DISCHARGED -6693,2019-08-31,25558.31376305041,395,Emergency,2019-09-19,Normal,6693,207,4,16,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -6694,2021-09-09,21775.055716108727,275,Emergency,2021-09-10,Abnormal,6694,200,4,25,,,,DISCHARGED -6695,2021-12-08,10833.651985964583,117,Elective,2022-01-05,Abnormal,6695,446,3,23,,,,DISCHARGED -6696,2021-06-09,31895.507606318053,333,Urgent,2021-06-24,Inconclusive,6696,331,3,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -6697,2020-08-19,38136.54060508222,218,Elective,2020-08-25,Abnormal,6697,427,3,16,,,,DISCHARGED -6698,2020-03-09,2809.921442528688,256,Emergency,2020-03-31,Abnormal,6698,37,0,24,,,,DISCHARGED -6699,2021-12-27,2894.396184118178,483,Emergency,2022-01-20,Abnormal,6699,210,3,1,,,,DISCHARGED -6701,2019-03-18,39136.08803197802,470,Elective,2019-03-21,Abnormal,6701,443,1,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6702,2021-10-02,31687.996097646643,161,Elective,2021-10-04,Inconclusive,6702,326,3,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6703,2019-06-06,31589.81782293324,164,Urgent,2019-06-29,Inconclusive,6703,248,1,6,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -6704,2023-01-20,24604.88403923852,336,Elective,,Abnormal,6704,226,2,24,,,,OPEN -6705,2022-01-24,35481.76144805839,224,Emergency,2022-02-11,Normal,6705,47,0,18,,,,DISCHARGED -6706,2019-12-24,7251.787459353241,192,Elective,2020-01-11,Inconclusive,6706,17,0,0,,,,DISCHARGED -6707,2020-08-23,16860.15690378194,314,Emergency,2020-08-26,Inconclusive,6707,399,4,16,,,,DISCHARGED -6708,2019-07-12,40137.37554459394,131,Urgent,2019-07-26,Inconclusive,6708,438,2,26,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -6709,2020-02-15,36228.6105527836,108,Elective,2020-03-08,Abnormal,6709,294,1,9,,,,DISCHARGED -6709,2023-04-20,26036.911033581742,474,Emergency,2023-05-04,Inconclusive,8514,195,2,5,,,,DISCHARGED -6710,2019-01-11,22235.937443538674,326,Elective,2019-01-31,Normal,6710,186,0,6,,,,DISCHARGED -6711,2021-01-07,10686.772413413302,185,Urgent,2021-01-08,Abnormal,6711,344,1,24,,,,DISCHARGED -6712,2022-12-15,26243.822918569495,237,Urgent,2022-12-17,Abnormal,6712,223,2,5,,,,DISCHARGED -6713,2023-10-15,41129.046340795176,377,Emergency,2023-11-13,Abnormal,6713,317,0,4,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -6714,2021-11-06,10895.017983367385,410,Emergency,2021-11-11,Normal,6714,487,1,29,,,,DISCHARGED -6715,2020-03-13,36417.10103071475,183,Urgent,2020-03-31,Normal,6715,396,1,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6715,2021-02-15,23966.741174988038,477,Emergency,2021-02-23,Abnormal,9853,364,0,17,,,,DISCHARGED -6716,2020-05-13,13242.635557259016,139,Emergency,2020-05-20,Abnormal,6716,336,1,23,,,,DISCHARGED -6716,2021-10-16,17953.42610025,402,Urgent,2021-11-03,Inconclusive,9539,496,0,16,,,,DISCHARGED -6717,2022-09-04,5530.717638599587,461,Emergency,2022-09-10,Normal,6717,228,3,23,,,,DISCHARGED -6718,2022-09-14,14219.481427041805,393,Emergency,2022-10-09,Normal,6718,389,3,26,,,,DISCHARGED -6719,2020-08-09,47827.56024301192,429,Emergency,2020-08-15,Inconclusive,6719,466,1,25,,,,DISCHARGED -6720,2023-05-13,10898.556311882634,407,Emergency,2023-06-03,Abnormal,6720,76,1,26,,,,DISCHARGED -6721,2018-11-19,18076.80553372419,269,Urgent,2018-12-01,Inconclusive,6721,187,0,22,,,,DISCHARGED -6723,2019-06-11,11503.186814887396,368,Urgent,2019-07-04,Abnormal,6723,345,1,6,,,,DISCHARGED -6724,2021-12-22,29304.21466771696,437,Urgent,2022-01-10,Abnormal,6724,269,4,20,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6725,2020-07-07,9396.348495937347,135,Urgent,2020-07-10,Inconclusive,6725,94,3,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -6726,2019-09-05,21974.747036402245,474,Urgent,2019-09-09,Inconclusive,6726,309,1,6,,,,DISCHARGED -6727,2020-08-16,17547.719595956114,268,Emergency,2020-08-24,Inconclusive,6727,131,1,22,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -6728,2019-03-10,39080.0862725537,111,Elective,2019-03-21,Normal,6728,38,2,6,,,,DISCHARGED -6729,2022-03-03,25854.2731122455,161,Emergency,2022-03-18,Inconclusive,6729,71,1,15,,,,DISCHARGED -6730,2019-06-16,48074.11973742916,233,Elective,2019-07-03,Inconclusive,6730,280,4,11,,,,DISCHARGED -6731,2021-04-12,38189.75473668005,145,Emergency,2021-04-29,Normal,6731,332,3,14,,,,DISCHARGED -6732,2022-02-26,5338.401611256891,407,Elective,2022-03-25,Inconclusive,6732,159,2,14,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6733,2021-07-08,17663.70429305998,355,Elective,2021-07-22,Inconclusive,6733,186,0,10,,,,DISCHARGED -6734,2021-01-25,21538.449231231123,376,Urgent,2021-02-24,Inconclusive,6734,485,0,1,,,,DISCHARGED -6735,2019-02-11,30998.720689258167,151,Urgent,2019-02-20,Abnormal,6735,190,3,2,,,,DISCHARGED -6736,2020-04-22,37652.05616652651,499,Urgent,2020-05-17,Normal,6736,421,0,18,,,,DISCHARGED -6738,2021-06-24,41225.23507086748,249,Emergency,2021-06-26,Abnormal,6738,119,4,19,,,,DISCHARGED -6739,2020-05-25,35733.14794121401,175,Emergency,2020-06-02,Normal,6739,219,1,27,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6740,2022-10-21,26383.9861687766,139,Urgent,2022-11-14,Normal,6740,52,3,24,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -6741,2022-10-07,32760.62008856683,214,Emergency,2022-10-18,Normal,6741,221,2,25,,,,DISCHARGED -6743,2022-05-30,19702.908359676472,117,Emergency,2022-06-01,Inconclusive,6743,450,1,14,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -6744,2022-04-16,3958.287461418514,389,Elective,2022-05-05,Abnormal,6744,411,0,15,,,,DISCHARGED -6745,2022-12-26,23387.18652094939,389,Emergency,2023-01-14,Abnormal,6745,130,0,0,,,,DISCHARGED -6745,2020-11-23,38807.74978960813,348,Emergency,2020-12-02,Abnormal,9541,236,2,14,,,,DISCHARGED -6746,2020-01-28,1665.8450468960314,158,Urgent,2020-02-15,Abnormal,6746,245,4,11,,,,DISCHARGED -6747,2021-05-20,6281.270091872381,127,Elective,2021-05-26,Inconclusive,6747,225,2,6,,,,DISCHARGED -6748,2021-11-26,10801.52640736577,140,Emergency,2021-11-29,Abnormal,6748,207,3,6,,,,DISCHARGED -6749,2021-03-03,23153.23633536031,254,Urgent,2021-03-23,Inconclusive,6749,405,2,10,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6750,2022-06-14,13167.279299986343,465,Urgent,2022-06-21,Normal,6750,95,0,19,,,,DISCHARGED -6752,2020-04-04,42927.09861722169,134,Emergency,2020-04-29,Abnormal,6752,421,4,28,,,,DISCHARGED -6753,2020-10-16,47127.78976187629,111,Elective,2020-11-01,Abnormal,6753,199,4,10,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6754,2020-10-11,5688.87599328374,359,Emergency,2020-10-18,Normal,6754,246,2,16,,,,DISCHARGED -6755,2022-01-01,21681.11327240588,119,Elective,2022-01-20,Abnormal,6755,71,3,2,,,,DISCHARGED -6756,2018-12-07,5067.668484927059,180,Elective,2018-12-27,Inconclusive,6756,317,0,15,,,,DISCHARGED -6758,2020-08-09,34412.56846460215,491,Urgent,2020-08-18,Normal,6758,184,1,4,,,,DISCHARGED -6759,2020-09-13,39798.2634460689,219,Emergency,2020-09-15,Inconclusive,6759,5,4,27,,,,DISCHARGED -6760,2019-03-02,46762.11167563197,115,Emergency,2019-03-14,Normal,6760,205,2,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -6761,2020-11-10,15084.550448952972,301,Emergency,2020-12-08,Normal,6761,31,3,22,,,,DISCHARGED -6762,2023-02-12,32089.721345788374,384,Urgent,,Abnormal,6762,98,3,29,,,,OPEN -6763,2019-03-15,16579.85894640888,263,Urgent,2019-03-28,Abnormal,6763,393,0,25,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -6763,2019-10-25,18993.746786159045,126,Emergency,2019-11-22,Abnormal,9572,386,4,25,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6764,2023-03-11,4082.719248015938,377,Emergency,2023-04-06,Abnormal,6764,255,0,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6764,2022-01-22,39712.48183752979,370,Urgent,2022-02-10,Inconclusive,8254,186,1,27,,,,DISCHARGED -6765,2022-11-09,9972.098326065843,483,Emergency,2022-11-13,Abnormal,6765,75,1,9,,,,DISCHARGED -6766,2021-05-08,22033.469341008127,277,Elective,2021-05-30,Normal,6766,176,1,4,,,,DISCHARGED -6767,2020-12-18,29978.472948887087,430,Urgent,2020-12-26,Inconclusive,6767,314,3,14,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -6768,2021-05-21,8885.902239498577,193,Elective,2021-06-07,Abnormal,6768,286,4,11,,,,DISCHARGED -6769,2020-04-28,18888.90688612863,249,Elective,2020-04-30,Inconclusive,6769,348,0,9,,,,DISCHARGED -6770,2023-01-19,8307.850650717448,187,Emergency,2023-02-16,Normal,6770,254,0,21,,,,DISCHARGED -6771,2022-10-04,49891.4023850776,498,Emergency,2022-11-03,Normal,6771,324,1,16,,,,DISCHARGED -6772,2021-04-08,28388.19549054882,247,Urgent,2021-04-21,Normal,6772,189,4,19,,,,DISCHARGED -6774,2020-08-01,42260.23384085925,111,Urgent,2020-08-15,Inconclusive,6774,307,4,19,,,,DISCHARGED -6774,2019-01-15,37917.90879953535,413,Emergency,2019-01-21,Normal,6829,344,2,10,,,,DISCHARGED -6776,2019-05-17,23091.707904819024,453,Emergency,2019-06-08,Abnormal,6776,126,4,7,,,,DISCHARGED -6777,2023-08-08,23423.81058518871,423,Emergency,2023-08-10,Normal,6777,424,4,14,,,,DISCHARGED -6778,2020-06-15,29638.165586676943,200,Urgent,2020-07-10,Abnormal,6778,286,0,1,,,,DISCHARGED -6779,2021-03-04,3611.919798361324,289,Urgent,2021-03-21,Abnormal,6779,253,4,16,,,,DISCHARGED -6780,2021-12-18,36805.26902320039,358,Emergency,2022-01-06,Normal,6780,212,4,22,,,,DISCHARGED -6781,2021-02-23,27536.81055158076,191,Emergency,2021-03-16,Inconclusive,6781,249,0,5,,,,DISCHARGED -6782,2022-02-20,13848.023110436465,179,Urgent,2022-02-25,Inconclusive,6782,83,4,20,,,,DISCHARGED -6784,2022-03-17,49283.835528546144,193,Urgent,2022-04-10,Normal,6784,486,0,27,,,,DISCHARGED -6785,2019-12-28,21661.62726686921,394,Elective,2020-01-13,Normal,6785,382,2,12,,,,DISCHARGED -6786,2021-08-06,37768.322790260034,339,Elective,2021-08-21,Inconclusive,6786,405,3,28,,,,DISCHARGED -6787,2019-02-16,36635.16527108637,376,Urgent,2019-02-27,Normal,6787,387,0,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -6788,2022-03-01,1265.5501148893609,169,Emergency,2022-03-22,Normal,6788,12,0,7,,,,DISCHARGED -6788,2020-09-15,5808.278937785468,360,Urgent,2020-10-08,Abnormal,9675,44,4,10,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -6789,2022-06-14,25986.222968787864,424,Urgent,2022-06-15,Inconclusive,6789,126,0,14,,,,DISCHARGED -6790,2021-02-16,11138.59870069578,300,Emergency,2021-03-14,Inconclusive,6790,425,1,12,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6792,2020-12-11,10724.794197778696,193,Urgent,2020-12-19,Normal,6792,113,1,17,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -6793,2022-10-05,6034.367887122445,106,Emergency,2022-10-07,Inconclusive,6793,432,2,17,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -6794,2021-08-12,34688.95857647393,214,Emergency,2021-09-10,Abnormal,6794,275,0,24,,,,DISCHARGED -6795,2021-12-08,47172.02721470661,468,Urgent,2021-12-16,Abnormal,6795,499,4,16,,,,DISCHARGED -6796,2019-08-20,15793.149417861488,448,Elective,2019-09-16,Abnormal,6796,204,4,21,,,,DISCHARGED -6797,2021-07-17,23228.220638015995,338,Urgent,2021-08-09,Normal,6797,336,3,12,,,,DISCHARGED -6798,2021-04-21,15489.840599610798,240,Emergency,2021-05-16,Inconclusive,6798,437,2,28,,,,DISCHARGED -6799,2019-10-05,23851.84821955305,488,Elective,2019-10-18,Abnormal,6799,419,4,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6800,2022-06-28,49134.45183489225,305,Emergency,2022-07-21,Abnormal,6800,480,3,28,,,,DISCHARGED -6801,2020-04-03,20640.491350576103,450,Emergency,2020-04-25,Normal,6801,384,4,20,,,,DISCHARGED -6802,2022-09-23,26922.832193811475,451,Urgent,2022-10-11,Inconclusive,6802,398,3,23,,,,DISCHARGED -6803,2019-06-24,9557.985592313362,347,Emergency,2019-07-13,Normal,6803,460,1,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -6804,2021-09-14,33731.49187331864,444,Urgent,2021-09-28,Inconclusive,6804,272,1,28,,,,DISCHARGED -6805,2019-05-18,5905.255937904605,105,Elective,2019-06-14,Normal,6805,407,4,11,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6806,2021-06-12,37833.68041213759,468,Emergency,2021-07-04,Abnormal,6806,57,2,3,,,,DISCHARGED -6807,2021-04-11,37240.11656114114,133,Urgent,2021-04-20,Normal,6807,327,0,23,,,,DISCHARGED -6808,2023-09-30,19847.893217887427,364,Elective,2023-10-21,Inconclusive,6808,497,2,26,,,,DISCHARGED -6809,2019-06-25,41278.45968872735,278,Urgent,2019-07-19,Normal,6809,218,2,26,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6810,2023-10-15,11490.13540107364,290,Urgent,,Normal,6810,108,0,25,,,,OPEN -6811,2023-09-01,40621.44835822586,242,Emergency,,Abnormal,6811,278,1,10,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -6812,2023-03-15,8875.007087375528,444,Urgent,2023-04-09,Abnormal,6812,173,1,13,,,,DISCHARGED -6813,2023-10-23,38274.79803427497,425,Urgent,2023-11-05,Inconclusive,6813,327,0,17,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -6814,2023-10-04,49554.98005095694,450,Urgent,,Abnormal,6814,263,3,6,,,,OPEN -6815,2021-11-02,46067.11710227902,496,Emergency,2021-12-02,Abnormal,6815,314,2,4,,,,DISCHARGED -6817,2020-06-13,12098.951932052512,399,Urgent,2020-07-08,Normal,6817,473,4,15,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -6818,2023-08-13,3273.3393055642578,444,Elective,2023-09-06,Abnormal,6818,110,1,10,,,,DISCHARGED -6819,2022-10-01,25248.056598320552,388,Elective,2022-10-30,Inconclusive,6819,186,4,21,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6820,2019-05-27,27535.76280641123,425,Urgent,2019-06-10,Inconclusive,6820,268,0,2,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -6821,2019-08-06,33352.49130228466,277,Emergency,2019-08-09,Normal,6821,422,4,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6822,2023-10-20,46919.172747968114,443,Elective,2023-10-27,Abnormal,6822,228,4,10,,,,DISCHARGED -6823,2020-03-25,49332.83843060683,456,Urgent,2020-03-27,Normal,6823,496,2,9,,,,DISCHARGED -6824,2023-06-29,31941.383308484303,353,Emergency,2023-07-28,Normal,6824,155,0,22,,,,DISCHARGED -6825,2020-01-22,39259.94568729573,456,Elective,2020-01-31,Abnormal,6825,472,4,22,,,,DISCHARGED -6826,2021-10-31,42923.98717991964,337,Elective,2021-11-28,Abnormal,6826,188,1,1,,,,DISCHARGED -6827,2023-08-16,22258.13357326732,281,Emergency,,Inconclusive,6827,271,0,15,,,,OPEN -6828,2022-12-18,39894.473851939285,215,Emergency,2023-01-06,Inconclusive,6828,374,1,16,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6830,2022-02-23,36561.052219648,296,Urgent,2022-03-02,Inconclusive,6830,1,3,9,,,,DISCHARGED -6831,2019-08-21,3709.635192406705,469,Elective,2019-09-11,Abnormal,6831,245,4,17,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6832,2021-03-21,44195.71446070025,153,Elective,2021-03-22,Abnormal,6832,209,0,11,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -6833,2019-10-28,3871.021510012909,442,Emergency,2019-11-02,Normal,6833,400,1,7,,,,DISCHARGED -6834,2018-12-13,15330.377847638065,495,Elective,2019-01-07,Inconclusive,6834,285,4,26,,,,DISCHARGED -6835,2022-05-14,3542.558009010238,450,Elective,2022-05-30,Normal,6835,358,2,25,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6836,2020-09-03,11639.12315736314,457,Urgent,2020-09-25,Normal,6836,12,1,2,,,,DISCHARGED -6836,2021-06-12,30105.37812991968,192,Elective,2021-06-26,Inconclusive,9689,95,1,26,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -6837,2020-06-17,12222.118534809171,305,Emergency,2020-07-13,Inconclusive,6837,497,3,19,,,,DISCHARGED -6838,2023-06-28,34796.30106044404,497,Emergency,,Normal,6838,220,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",OPEN -6839,2021-12-15,38823.5029365312,115,Elective,2021-12-17,Abnormal,6839,237,3,2,,,,DISCHARGED -6839,2019-06-29,13336.24486339428,466,Emergency,2019-07-04,Normal,9640,93,2,5,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6840,2021-04-11,3927.2914703935953,226,Elective,2021-04-21,Inconclusive,6840,337,1,1,,,,DISCHARGED -6841,2022-03-19,19799.89570417404,486,Elective,2022-04-18,Normal,6841,268,3,2,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6842,2022-11-08,20543.31824474834,361,Emergency,2022-11-13,Inconclusive,6842,170,4,16,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6843,2023-09-19,43066.20041767901,419,Elective,,Abnormal,6843,468,2,8,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6844,2021-02-04,15886.513701909227,485,Emergency,2021-03-03,Normal,6844,93,1,3,,,,DISCHARGED -6845,2021-08-25,24478.59005983633,443,Urgent,2021-08-30,Normal,6845,148,0,21,,,,DISCHARGED -6846,2020-06-21,31928.77706783889,254,Elective,2020-07-03,Inconclusive,6846,111,2,22,,,,DISCHARGED -6847,2019-12-29,40522.767502145696,493,Emergency,2020-01-09,Abnormal,6847,54,2,1,,,,DISCHARGED -6848,2023-05-01,40028.13037664336,180,Elective,2023-05-11,Abnormal,6848,336,4,23,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6849,2020-11-26,11106.76612539273,218,Urgent,2020-12-13,Inconclusive,6849,423,2,27,,,,DISCHARGED -6850,2019-07-01,41841.76114562413,257,Urgent,2019-07-13,Normal,6850,466,2,8,,,,DISCHARGED -6851,2019-12-15,49608.493204814935,460,Emergency,2020-01-14,Abnormal,6851,115,4,13,,,,DISCHARGED -6852,2019-10-12,38258.90955394836,153,Elective,2019-10-24,Normal,6852,142,4,25,,,,DISCHARGED -6853,2023-02-26,14062.51605492558,339,Emergency,2023-03-20,Normal,6853,200,3,10,,,,DISCHARGED -6854,2022-01-29,30532.64595498513,332,Emergency,2022-02-20,Inconclusive,6854,179,1,1,,,,DISCHARGED -6855,2021-03-05,29017.230643956736,356,Emergency,2021-03-08,Normal,6855,201,1,20,,,,DISCHARGED -6856,2020-06-17,41121.71152928503,366,Elective,2020-06-27,Inconclusive,6856,363,3,1,,,,DISCHARGED -6857,2021-06-21,18036.6056891088,324,Urgent,2021-07-18,Inconclusive,6857,478,1,26,,,,DISCHARGED -6858,2019-10-11,30917.45181530212,109,Urgent,2019-10-15,Normal,6858,52,2,4,,,,DISCHARGED -6860,2021-10-17,2586.4473596958296,388,Urgent,2021-10-25,Abnormal,6860,470,3,6,,,,DISCHARGED -6861,2021-12-19,36048.72835013831,174,Urgent,2021-12-25,Abnormal,6861,383,3,21,,,,DISCHARGED -6862,2020-02-25,37635.6190387398,359,Urgent,2020-03-13,Normal,6862,179,1,3,,,,DISCHARGED -6863,2022-01-07,48346.26011856065,171,Emergency,2022-01-30,Inconclusive,6863,413,0,13,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -6864,2019-08-28,12912.292134373329,140,Elective,2019-08-29,Inconclusive,6864,416,1,1,,,,DISCHARGED -6865,2022-08-03,26982.51766238641,114,Urgent,2022-08-17,Inconclusive,6865,312,0,22,,,,DISCHARGED -6866,2020-03-10,7404.2028717968515,209,Emergency,2020-04-01,Abnormal,6866,307,3,11,,,,DISCHARGED -6867,2022-04-07,47069.83926797268,183,Urgent,2022-04-09,Abnormal,6867,136,0,9,,,,DISCHARGED -6868,2020-11-10,36057.88192007509,439,Urgent,2020-11-12,Normal,6868,181,2,24,,,,DISCHARGED -6869,2020-07-21,18013.974861642266,441,Urgent,2020-08-03,Normal,6869,366,4,0,,,,DISCHARGED -6870,2019-07-06,21666.55289525704,336,Emergency,2019-07-27,Inconclusive,6870,0,0,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6872,2022-12-14,20504.421867831286,195,Emergency,2023-01-06,Inconclusive,6872,43,4,22,,,,DISCHARGED -6873,2021-10-06,24400.941979654413,209,Elective,2021-11-04,Inconclusive,6873,226,2,15,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6874,2021-08-23,32721.63505836967,384,Emergency,2021-09-04,Normal,6874,330,4,14,,,,DISCHARGED -6874,2020-02-21,18055.322911241845,217,Urgent,2020-03-21,Abnormal,9000,97,2,13,,,,DISCHARGED -6875,2021-10-02,3678.787753757528,457,Elective,2021-10-10,Inconclusive,6875,207,4,8,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6876,2020-12-21,49656.78745179476,466,Urgent,2020-12-29,Inconclusive,6876,264,4,28,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6877,2021-04-12,17809.273882068108,137,Elective,2021-04-14,Inconclusive,6877,287,1,20,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6878,2023-08-19,5220.074018843153,285,Emergency,,Abnormal,6878,270,0,22,,,,OPEN -6879,2021-08-29,17367.006768132334,465,Emergency,2021-09-13,Normal,6879,139,4,14,,,,DISCHARGED -6880,2019-06-01,8344.872038158588,459,Elective,2019-06-04,Inconclusive,6880,480,3,25,,,,DISCHARGED -6881,2020-12-16,24081.170221704542,109,Elective,2020-12-23,Normal,6881,236,1,6,,,,DISCHARGED -6882,2022-09-24,41512.65687507838,479,Urgent,2022-10-14,Abnormal,6882,461,0,3,,,,DISCHARGED -6883,2022-01-29,34585.77783088951,363,Emergency,2022-02-23,Abnormal,6883,440,1,20,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6884,2018-12-19,36179.82211297054,141,Elective,2018-12-20,Inconclusive,6884,391,0,17,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -6885,2019-02-01,42060.54190245227,396,Emergency,2019-02-18,Inconclusive,6885,71,2,7,,,,DISCHARGED -6886,2022-02-23,22670.597120583967,393,Emergency,2022-03-09,Normal,6886,154,4,11,,,,DISCHARGED -6887,2023-05-26,41243.18009707191,235,Urgent,2023-05-29,Abnormal,6887,189,3,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6888,2022-01-04,28760.72377634086,401,Urgent,2022-01-31,Normal,6888,267,1,14,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -6889,2023-09-12,30672.66870908002,189,Emergency,2023-10-07,Normal,6889,320,1,16,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -6890,2023-05-27,32553.66667017798,336,Urgent,2023-06-18,Inconclusive,6890,106,1,1,,,,DISCHARGED -6891,2018-12-18,40040.86636058092,151,Emergency,2019-01-09,Normal,6891,231,1,11,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6892,2022-09-13,49199.74601371455,493,Elective,2022-09-14,Abnormal,6892,41,4,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6893,2019-01-29,21122.759451362013,342,Emergency,2019-01-31,Normal,6893,189,0,6,,,,DISCHARGED -6894,2019-05-29,23954.88018096705,245,Emergency,2019-05-30,Normal,6894,370,4,5,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6896,2021-12-31,27010.57413095525,114,Elective,2022-01-06,Abnormal,6896,138,2,13,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6897,2021-07-31,21582.63099122441,181,Emergency,2021-08-23,Abnormal,6897,102,4,22,,,,DISCHARGED -6898,2023-09-15,39004.398259655536,176,Emergency,2023-09-26,Abnormal,6898,170,4,26,,,,DISCHARGED -6899,2021-07-05,9784.253420517382,272,Emergency,2021-07-21,Normal,6899,350,2,4,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6900,2020-08-26,2190.613269353852,122,Elective,2020-09-20,Abnormal,6900,272,4,29,,,,DISCHARGED -6901,2023-04-23,20189.35857799911,468,Emergency,,Abnormal,6901,480,0,3,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,OPEN -6902,2021-12-23,49721.48933520515,341,Elective,2021-12-26,Inconclusive,6902,415,3,14,,,,DISCHARGED -6903,2023-05-24,47989.83459902162,358,Emergency,,Inconclusive,6903,220,2,6,,,,OPEN -6904,2019-07-15,9719.042869549468,112,Emergency,2019-08-01,Abnormal,6904,212,1,2,,,,DISCHARGED -6905,2021-03-20,24455.72398371465,115,Urgent,2021-03-25,Normal,6905,340,0,12,,,,DISCHARGED -6906,2022-01-13,29148.62010659719,242,Elective,2022-02-02,Inconclusive,6906,423,3,9,,,,DISCHARGED -6907,2019-11-13,33035.04051135661,389,Emergency,2019-12-01,Abnormal,6907,406,0,22,,,,DISCHARGED -6908,2021-02-07,21704.12367705071,177,Urgent,2021-02-21,Normal,6908,55,0,1,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6909,2018-12-16,4681.999280526896,203,Urgent,2019-01-11,Normal,6909,389,1,11,,,,DISCHARGED -6910,2021-04-02,13881.042211211625,360,Urgent,2021-04-20,Normal,6910,341,3,27,,,,DISCHARGED -6911,2021-07-21,25721.757753734502,229,Elective,2021-07-27,Abnormal,6911,433,0,23,,,,DISCHARGED -6912,2023-06-13,33362.80820852976,406,Urgent,2023-07-12,Abnormal,6912,101,1,27,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -6914,2022-08-03,48316.58750800679,250,Emergency,2022-08-27,Abnormal,6914,420,2,21,,,,DISCHARGED -6915,2019-07-09,18873.33861875201,104,Urgent,2019-08-02,Abnormal,6915,492,1,11,,,,DISCHARGED -6916,2019-02-14,29983.666771928347,374,Urgent,2019-03-13,Normal,6916,191,4,18,,,,DISCHARGED -6917,2023-02-23,12571.879872742453,211,Emergency,,Abnormal,6917,498,1,18,,,,OPEN -6918,2022-01-03,16599.28789167924,276,Elective,2022-01-18,Normal,6918,309,1,20,,,,DISCHARGED -6919,2020-07-30,24125.69050911835,476,Emergency,2020-08-21,Abnormal,6919,199,1,2,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6920,2022-09-09,2976.7440454205766,441,Urgent,2022-09-16,Abnormal,6920,232,0,5,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -6921,2020-12-07,37146.98486188007,375,Urgent,2020-12-25,Abnormal,6921,432,3,1,,,,DISCHARGED -6922,2022-08-27,5883.158390461255,220,Elective,2022-09-21,Normal,6922,226,1,23,,,,DISCHARGED -6923,2020-04-24,13016.178264976284,426,Elective,2020-05-19,Normal,6923,370,1,12,,,,DISCHARGED -6924,2022-07-19,4587.07832525065,264,Elective,2022-07-29,Inconclusive,6924,138,4,26,,,,DISCHARGED -6925,2022-11-15,28751.31529811376,109,Elective,2022-12-14,Inconclusive,6925,343,4,27,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6926,2019-05-14,38287.62735509396,476,Elective,2019-06-09,Abnormal,6926,304,2,26,,,,DISCHARGED -6927,2022-12-29,1844.6653963004087,329,Urgent,2023-01-14,Normal,6927,148,2,8,,,,DISCHARGED -6928,2019-12-11,21422.786020571628,317,Emergency,2019-12-12,Inconclusive,6928,114,4,12,,,,DISCHARGED -6930,2018-12-03,43026.43138295912,386,Urgent,2018-12-12,Normal,6930,449,3,22,,,,DISCHARGED -6931,2022-08-30,44251.29820347973,311,Elective,2022-09-10,Normal,6931,62,2,13,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6931,2019-08-27,19912.78488841649,421,Urgent,2019-09-20,Abnormal,9596,103,3,18,,,,DISCHARGED -6932,2021-05-13,1271.4330373254052,499,Urgent,2021-06-05,Abnormal,6932,338,4,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6933,2019-07-10,41964.94123413667,447,Elective,2019-08-01,Normal,6933,358,2,13,,,,DISCHARGED -6934,2022-07-31,42928.0748197408,244,Emergency,2022-08-28,Normal,6934,155,1,15,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6935,2019-03-31,20407.00690319005,396,Emergency,2019-04-10,Normal,6935,272,4,9,,,,DISCHARGED -6936,2022-04-27,13158.124974652472,166,Urgent,2022-05-26,Abnormal,6936,5,2,19,,,,DISCHARGED -6937,2023-08-06,3106.0434201333437,105,Urgent,2023-08-31,Normal,6937,146,3,15,,,,DISCHARGED -6938,2019-09-19,49874.35205172004,207,Elective,2019-09-27,Abnormal,6938,183,3,27,,,,DISCHARGED -6939,2019-12-10,34435.00715638833,284,Emergency,2020-01-06,Inconclusive,6939,485,2,25,,,,DISCHARGED -6940,2021-12-08,41974.30956664626,495,Elective,2021-12-15,Abnormal,6940,27,3,1,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -6941,2020-08-29,5840.761894779029,319,Urgent,2020-09-27,Normal,6941,449,2,24,,,,DISCHARGED -6942,2022-04-05,18828.985033991587,174,Elective,2022-04-15,Abnormal,6942,37,2,15,,,,DISCHARGED -6943,2021-04-04,29021.530383541096,345,Emergency,2021-04-09,Inconclusive,6943,118,3,13,,,,DISCHARGED -6944,2020-09-19,36569.7359015632,415,Elective,2020-09-25,Normal,6944,292,0,20,,,,DISCHARGED -6945,2019-05-29,7212.095181705559,193,Urgent,2019-06-24,Inconclusive,6945,370,1,27,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -6946,2020-10-29,45125.53092988562,126,Elective,2020-11-07,Inconclusive,6946,243,4,17,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6947,2019-11-01,22205.908443391763,244,Emergency,2019-12-01,Inconclusive,6947,67,1,25,,,,DISCHARGED -6948,2019-01-17,9751.256054537394,312,Elective,2019-01-29,Abnormal,6948,213,4,5,,,,DISCHARGED -6949,2022-06-15,14540.995424455135,123,Urgent,2022-06-21,Normal,6949,217,4,6,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6950,2019-12-18,9393.384143227926,369,Urgent,2020-01-11,Normal,6950,176,1,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -6951,2021-05-25,17385.6942661642,247,Emergency,2021-06-06,Inconclusive,6951,298,2,1,,,,DISCHARGED -6952,2022-04-27,23191.49097221982,288,Urgent,2022-04-28,Normal,6952,163,3,14,,,,DISCHARGED -6953,2021-08-21,8757.444361387468,340,Emergency,2021-09-03,Abnormal,6953,57,0,16,,,,DISCHARGED -6954,2021-04-23,15119.263594399192,249,Elective,2021-05-06,Abnormal,6954,268,0,12,,,,DISCHARGED -6955,2020-03-24,33098.47806222107,200,Emergency,2020-04-17,Abnormal,6955,307,0,6,,,,DISCHARGED -6956,2020-06-30,28202.02463123516,392,Emergency,2020-07-20,Inconclusive,6956,57,1,0,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -6957,2022-07-01,3921.269858654899,153,Elective,2022-07-09,Normal,6957,287,1,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6958,2021-04-12,5743.795054067121,366,Urgent,2021-04-26,Inconclusive,6958,464,2,19,,,,DISCHARGED -6959,2020-03-01,31230.146441875662,114,Urgent,2020-03-08,Normal,6959,104,0,17,,,,DISCHARGED -6960,2018-11-19,44594.51048092537,444,Urgent,2018-11-26,Abnormal,6960,227,2,6,,,,DISCHARGED -6961,2019-03-15,18717.30553192645,379,Emergency,2019-04-13,Normal,6961,246,0,20,,,,DISCHARGED -6962,2023-02-24,29969.31082460949,287,Emergency,2023-03-23,Normal,6962,187,1,16,,,,DISCHARGED -6963,2023-07-21,15527.34878869212,370,Emergency,2023-07-31,Normal,6963,493,3,27,,,,DISCHARGED -6964,2023-08-18,7614.503507240185,237,Elective,,Abnormal,6964,82,3,11,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",OPEN -6965,2019-01-30,35830.872708983195,441,Urgent,2019-02-02,Normal,6965,185,3,15,,,,DISCHARGED -6966,2021-03-04,3323.1493877491453,337,Emergency,2021-03-27,Inconclusive,6966,251,3,23,,,,DISCHARGED -6967,2019-01-20,19165.95622356114,411,Elective,2019-02-17,Inconclusive,6967,354,4,9,,,,DISCHARGED -6968,2023-02-19,36922.40795023482,318,Urgent,2023-02-26,Normal,6968,237,0,22,,,,DISCHARGED -6969,2023-03-30,42953.35070067596,311,Emergency,2023-04-28,Normal,6969,359,3,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -6970,2020-09-26,24628.638701085616,370,Urgent,2020-10-09,Inconclusive,6970,183,4,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -6971,2021-02-09,39147.73981123817,415,Elective,2021-02-23,Abnormal,6971,283,4,17,,,,DISCHARGED -6972,2021-12-08,3683.299679083855,370,Elective,2021-12-25,Abnormal,6972,384,4,14,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6973,2019-02-07,17029.84381319199,118,Urgent,2019-03-07,Abnormal,6973,425,2,22,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -6974,2020-08-08,32544.248420748994,448,Elective,2020-08-29,Normal,6974,209,2,10,,,,DISCHARGED -6975,2023-07-13,37186.17202104556,295,Urgent,,Inconclusive,6975,303,4,17,,,,OPEN -6976,2021-11-24,20785.120348210043,383,Urgent,2021-11-29,Abnormal,6976,295,3,5,,,,DISCHARGED -6977,2020-06-22,23191.696371418355,355,Emergency,2020-07-07,Inconclusive,6977,96,0,0,,,,DISCHARGED -6978,2022-05-28,6420.664097170925,147,Emergency,2022-06-22,Normal,6978,446,1,29,,,,DISCHARGED -6979,2021-07-16,21924.850084613707,388,Elective,2021-07-17,Normal,6979,459,2,22,,,,DISCHARGED -6980,2020-04-14,45594.05190315254,267,Elective,2020-04-23,Inconclusive,6980,455,3,6,,,,DISCHARGED -6982,2023-01-10,8996.36230333845,500,Elective,,Abnormal,6982,471,3,11,,,,OPEN -6983,2020-01-12,38772.294762515696,307,Urgent,2020-01-14,Normal,6983,207,1,19,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -6984,2019-02-19,36334.49165561649,245,Urgent,2019-03-14,Abnormal,6984,369,1,3,,,,DISCHARGED -6985,2020-09-08,18805.210172743948,434,Elective,2020-09-23,Normal,6985,387,3,9,,,,DISCHARGED -6986,2021-11-21,10578.934274622165,300,Emergency,2021-12-13,Inconclusive,6986,421,1,20,,,,DISCHARGED -6987,2019-12-11,43181.07556432056,379,Elective,2020-01-09,Abnormal,6987,491,3,1,,,,DISCHARGED -6988,2021-07-11,18815.487208475053,142,Urgent,2021-07-25,Inconclusive,6988,410,1,8,,,,DISCHARGED -6989,2020-07-02,44200.98515737494,342,Emergency,2020-07-17,Abnormal,6989,136,1,9,,,,DISCHARGED -6991,2022-10-10,32421.41053753488,409,Emergency,2022-10-28,Normal,6991,366,3,19,,,,DISCHARGED -6992,2022-06-26,44340.91194664272,345,Emergency,2022-07-21,Abnormal,6992,399,4,10,,,,DISCHARGED -6993,2023-02-13,28947.395382327337,183,Urgent,2023-03-08,Normal,6993,183,3,24,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6994,2023-05-26,12658.82425861454,491,Emergency,,Normal,6994,75,0,13,,,,OPEN -6995,2023-05-30,30566.481418628096,131,Emergency,,Abnormal,6995,286,1,2,,,,OPEN -6996,2019-04-19,23115.99583049012,358,Emergency,2019-04-21,Normal,6996,471,2,24,,,,DISCHARGED -6997,2022-07-18,37754.68036336889,433,Elective,2022-08-09,Abnormal,6997,374,1,0,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6998,2019-03-10,33048.60738867,108,Emergency,2019-03-18,Inconclusive,6998,141,0,6,,,,DISCHARGED -6999,2021-12-05,28066.850326825373,469,Emergency,2021-12-17,Inconclusive,6999,236,2,3,,,,DISCHARGED -7000,2019-12-03,28022.077120481412,318,Urgent,2019-12-04,Normal,7000,24,2,6,,,,DISCHARGED -7001,2019-12-14,43643.2185991089,276,Elective,2020-01-07,Abnormal,7001,289,3,15,,,,DISCHARGED -7002,2019-03-06,10165.625602412832,312,Emergency,2019-03-14,Normal,7002,66,4,29,,,,DISCHARGED -7003,2021-05-24,17775.0711507952,215,Urgent,2021-05-28,Inconclusive,7003,249,3,9,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7004,2021-08-08,16789.876984746872,497,Elective,2021-08-29,Normal,7004,407,2,14,,,,DISCHARGED -7005,2021-07-21,1624.3416946945954,393,Emergency,2021-08-13,Normal,7005,117,2,15,,,,DISCHARGED -7006,2021-07-16,19111.079143988805,346,Elective,2021-08-13,Normal,7006,489,4,5,,,,DISCHARGED -7007,2022-10-23,44348.96664206508,469,Urgent,2022-11-08,Normal,7007,72,1,3,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7008,2020-12-04,4852.941455185139,221,Urgent,2020-12-19,Normal,7008,281,4,3,,,,DISCHARGED -7010,2021-05-08,2988.082316116417,314,Emergency,2021-05-25,Abnormal,7010,403,3,23,,,,DISCHARGED -7011,2019-07-22,6285.273179005883,235,Emergency,2019-07-26,Abnormal,7011,447,1,22,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -7012,2019-10-05,49835.01817990041,308,Elective,2019-10-29,Inconclusive,7012,359,3,3,,,,DISCHARGED -7013,2018-12-30,45617.60148270567,112,Urgent,2019-01-19,Inconclusive,7013,9,4,26,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -7014,2021-02-10,12472.3016246608,378,Emergency,2021-02-22,Inconclusive,7014,210,1,21,,,,DISCHARGED -7015,2020-05-23,1558.0693002955077,181,Emergency,2020-06-07,Abnormal,7015,322,4,21,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -7016,2020-12-22,46231.33327074372,417,Urgent,2021-01-16,Abnormal,7016,151,0,16,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7017,2021-05-30,47302.27132981174,170,Urgent,2021-06-16,Abnormal,7017,4,2,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7018,2019-02-11,7021.633557241288,285,Emergency,2019-02-15,Normal,7018,194,1,1,,,,DISCHARGED -7019,2020-08-18,42079.942863036194,262,Urgent,2020-09-10,Abnormal,7019,441,2,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -7020,2022-05-02,46151.28129108493,496,Elective,2022-05-06,Normal,7020,282,0,5,,,,DISCHARGED -7021,2019-07-07,15754.20285448002,498,Urgent,2019-07-15,Inconclusive,7021,463,1,21,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7022,2022-07-02,19690.996407116847,468,Emergency,2022-08-01,Normal,7022,112,2,0,,,,DISCHARGED -7024,2022-06-16,8347.455292656887,142,Emergency,2022-06-17,Inconclusive,7024,270,2,7,,,,DISCHARGED -7026,2022-06-19,9643.520510261009,360,Emergency,2022-07-19,Abnormal,7026,162,1,17,,,,DISCHARGED -7029,2022-12-28,10720.533851319837,462,Urgent,2023-01-25,Abnormal,7029,459,2,28,,,,DISCHARGED -7030,2023-05-17,47674.5582439801,217,Emergency,,Inconclusive,7030,104,2,20,,,,OPEN -7031,2021-05-13,45319.94992170451,495,Urgent,2021-06-12,Inconclusive,7031,180,1,3,,,,DISCHARGED -7032,2020-12-16,32129.827083327928,240,Urgent,2021-01-09,Inconclusive,7032,43,2,4,,,,DISCHARGED -7033,2020-05-25,36862.2259661634,197,Emergency,2020-06-01,Abnormal,7033,281,2,4,,,,DISCHARGED -7034,2019-03-20,7669.027644818167,147,Elective,2019-03-28,Normal,7034,174,3,14,,,,DISCHARGED -7035,2020-10-08,33384.89314404058,387,Urgent,2020-11-07,Normal,7035,161,3,9,,,,DISCHARGED -7037,2020-05-10,18452.33495118273,163,Emergency,2020-05-16,Normal,7037,470,0,7,,,,DISCHARGED -7039,2020-09-19,14971.788759435414,343,Urgent,2020-10-18,Abnormal,7039,350,3,25,,,,DISCHARGED -7040,2019-10-15,11246.221282683617,165,Elective,2019-10-27,Abnormal,7040,433,3,6,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7041,2020-04-21,22038.87416508738,111,Urgent,2020-05-06,Normal,7041,339,0,11,,,,DISCHARGED -7042,2020-01-25,42622.75933691992,386,Emergency,2020-02-23,Normal,7042,139,2,29,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7043,2020-05-27,30196.03671471688,284,Urgent,2020-06-02,Abnormal,7043,470,2,24,,,,DISCHARGED -7044,2020-06-19,48617.47109802048,123,Elective,2020-06-29,Abnormal,7044,131,3,27,,,,DISCHARGED -7045,2022-04-03,13603.833695843485,435,Emergency,2022-04-07,Inconclusive,7045,86,0,10,,,,DISCHARGED -7046,2023-09-05,18391.8996685034,359,Emergency,,Abnormal,7046,175,2,12,,,,OPEN -7047,2022-03-15,22561.42873182083,295,Emergency,2022-04-02,Abnormal,7047,182,4,14,,,,DISCHARGED -7048,2021-11-10,29605.13648065304,367,Emergency,2021-12-07,Abnormal,7048,367,1,16,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7049,2020-05-07,7113.477012233674,213,Emergency,2020-05-09,Inconclusive,7049,128,1,21,,,,DISCHARGED -7050,2022-02-06,35665.405572029216,312,Elective,2022-02-18,Normal,7050,245,1,21,,,,DISCHARGED -7051,2023-07-31,33372.17197336503,193,Urgent,2023-08-16,Abnormal,7051,88,3,17,,,,DISCHARGED -7052,2020-12-21,5996.388238063388,214,Urgent,2021-01-14,Abnormal,7052,65,1,26,,,,DISCHARGED -7053,2023-04-25,24753.04718018185,165,Emergency,2023-05-05,Normal,7053,157,1,7,,,,DISCHARGED -7054,2021-09-09,1491.4259908042727,367,Elective,2021-09-17,Normal,7054,386,4,5,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7055,2019-10-20,48967.70097634383,172,Emergency,2019-11-09,Normal,7055,377,2,10,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7056,2023-08-22,34855.1856269224,346,Urgent,2023-08-31,Abnormal,7056,148,4,28,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7057,2020-07-23,45884.35251757271,421,Emergency,2020-08-15,Abnormal,7057,472,3,25,,,,DISCHARGED -7058,2019-03-29,26745.25370544875,453,Emergency,2019-04-26,Inconclusive,7058,339,1,8,,,,DISCHARGED -7059,2019-04-03,16295.959803509952,289,Urgent,2019-05-02,Normal,7059,432,2,25,,,,DISCHARGED -7060,2023-09-17,16287.97853596497,327,Emergency,,Abnormal,7060,115,1,4,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",OPEN -7061,2021-05-06,40684.505484486064,422,Elective,2021-05-19,Normal,7061,213,1,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7062,2020-03-08,6401.271009325388,407,Elective,2020-03-18,Inconclusive,7062,468,3,21,,,,DISCHARGED -7063,2021-08-13,43195.045179384346,302,Elective,2021-08-24,Abnormal,7063,445,1,26,,,,DISCHARGED -7064,2021-11-14,49848.9617670132,309,Emergency,2021-12-11,Normal,7064,480,0,14,,,,DISCHARGED -7065,2023-06-10,46654.15202107294,446,Urgent,2023-07-04,Normal,7065,371,2,20,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -7066,2018-12-11,29205.63931245221,491,Elective,2019-01-08,Inconclusive,7066,293,2,21,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7067,2021-12-19,10894.031638453083,273,Elective,2022-01-11,Abnormal,7067,252,0,3,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -7068,2019-10-25,22476.138091971294,315,Urgent,2019-11-04,Normal,7068,142,3,18,,,,DISCHARGED -7069,2021-11-21,17028.19333414566,411,Emergency,2021-12-11,Inconclusive,7069,249,1,12,,,,DISCHARGED -7070,2021-07-20,26803.9697993017,209,Urgent,2021-08-01,Inconclusive,7070,365,1,0,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -7071,2021-01-04,13211.982394459112,202,Urgent,2021-01-17,Normal,7071,435,2,0,,,,DISCHARGED -7072,2020-03-31,5873.908262540625,196,Emergency,2020-04-19,Abnormal,7072,462,3,21,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7073,2019-12-02,41263.20100000215,315,Urgent,2019-12-13,Inconclusive,7073,301,3,13,,,,DISCHARGED -7074,2023-07-20,14079.82477736208,284,Elective,2023-08-19,Inconclusive,7074,24,3,8,,,,DISCHARGED -7075,2022-08-19,28151.67210628584,500,Urgent,2022-09-06,Normal,7075,276,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -7076,2022-03-08,27494.7333131783,346,Urgent,2022-03-30,Inconclusive,7076,471,3,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7078,2019-02-27,42467.90159877492,182,Elective,2019-03-13,Inconclusive,7078,376,0,17,,,,DISCHARGED -7080,2022-09-20,26519.79531729132,337,Emergency,2022-09-24,Normal,7080,377,4,8,,,,DISCHARGED -7081,2019-03-24,36848.88222905856,107,Elective,2019-03-27,Inconclusive,7081,388,3,7,,,,DISCHARGED -7082,2022-08-07,12291.30093234208,135,Urgent,2022-08-14,Inconclusive,7082,69,4,29,,,,DISCHARGED -7084,2020-04-03,16618.638782435875,441,Urgent,2020-04-05,Normal,7084,112,1,13,,,,DISCHARGED -7085,2020-08-01,4503.271013887793,300,Elective,2020-08-29,Inconclusive,7085,362,3,27,,,,DISCHARGED -7085,2022-12-07,29736.060639802552,398,Emergency,2022-12-15,Normal,9890,111,2,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7086,2022-06-20,37102.007021229234,213,Elective,2022-06-27,Inconclusive,7086,363,1,19,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7088,2020-09-06,32013.8829280533,195,Urgent,2020-10-01,Inconclusive,7088,302,0,24,,,,DISCHARGED -7089,2019-03-26,2127.590487194777,428,Elective,2019-03-28,Inconclusive,7089,470,0,1,,,,DISCHARGED -7090,2019-06-24,17646.1661251343,404,Emergency,2019-07-18,Abnormal,7090,451,4,28,,,,DISCHARGED -7091,2021-07-21,10529.911922347848,113,Emergency,2021-08-19,Inconclusive,7091,90,4,0,,,,DISCHARGED -7092,2019-08-07,39057.424257618935,174,Elective,2019-08-20,Abnormal,7092,17,2,12,,,,DISCHARGED -7094,2023-01-20,20155.521024480197,418,Urgent,,Inconclusive,7094,148,2,24,,,,OPEN -7094,2023-07-11,27529.97440820637,112,Elective,2023-08-03,Normal,8912,475,0,9,,,,DISCHARGED -7096,2020-02-09,20800.256005646625,360,Elective,2020-02-18,Normal,7096,226,3,7,,,,DISCHARGED -7097,2022-08-05,18062.793452994247,157,Urgent,2022-09-01,Normal,7097,213,0,6,,,,DISCHARGED -7098,2022-05-07,46529.20099626824,108,Urgent,2022-05-11,Abnormal,7098,359,0,29,,,,DISCHARGED -7099,2021-12-04,4227.275781451428,476,Emergency,2021-12-24,Inconclusive,7099,150,2,28,,,,DISCHARGED -7100,2018-12-12,26322.58090495932,450,Elective,2019-01-01,Inconclusive,7100,191,4,23,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7101,2019-07-12,21030.4321002445,327,Urgent,2019-07-15,Abnormal,7101,450,2,11,,,,DISCHARGED -7102,2020-01-03,17199.672597827237,409,Emergency,2020-01-09,Abnormal,7102,39,2,16,,,,DISCHARGED -7103,2021-06-19,39373.42563456408,301,Urgent,2021-06-28,Inconclusive,7103,241,2,29,,,,DISCHARGED -7104,2019-11-02,1237.2508300624338,314,Elective,2019-11-05,Inconclusive,7104,137,0,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -7105,2022-11-17,25787.91272472085,185,Emergency,2022-11-18,Inconclusive,7105,344,3,11,,,,DISCHARGED -7107,2021-07-19,49792.10009117197,290,Emergency,2021-07-22,Inconclusive,7107,179,0,15,,,,DISCHARGED -7108,2020-10-25,29953.76922076988,491,Emergency,2020-11-04,Normal,7108,496,1,9,,,,DISCHARGED -7109,2021-12-01,8162.559699233293,103,Elective,2021-12-31,Inconclusive,7109,199,2,26,,,,DISCHARGED -7110,2019-02-09,5074.770052671522,436,Elective,2019-02-11,Normal,7110,202,2,24,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7111,2020-04-20,41555.73679216185,487,Urgent,2020-04-28,Inconclusive,7111,60,1,11,,,,DISCHARGED -7112,2020-05-05,18822.1132164572,345,Emergency,2020-05-22,Normal,7112,191,2,10,,,,DISCHARGED -7113,2021-03-25,6397.180958100335,204,Elective,2021-04-22,Abnormal,7113,4,2,24,,,,DISCHARGED -7114,2022-06-10,23959.67721020742,491,Elective,2022-07-08,Abnormal,7114,377,2,28,,,,DISCHARGED -7115,2023-03-29,3212.321099081732,164,Urgent,2023-04-19,Inconclusive,7115,236,1,13,,,,DISCHARGED -7116,2021-08-21,7027.1252073885225,272,Emergency,2021-09-02,Abnormal,7116,180,0,21,,,,DISCHARGED -7117,2022-07-27,46468.92284464366,102,Elective,2022-08-14,Abnormal,7117,310,2,19,,,,DISCHARGED -7118,2022-09-28,8030.721529139739,326,Emergency,2022-10-04,Normal,7118,36,3,12,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7119,2022-11-03,33903.101708471964,256,Urgent,2022-11-13,Abnormal,7119,55,1,1,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7121,2020-05-24,25369.4763721589,485,Urgent,2020-06-23,Abnormal,7121,442,4,26,,,,DISCHARGED -7122,2019-03-23,26680.700177879346,214,Urgent,2019-03-28,Inconclusive,7122,236,1,19,,,,DISCHARGED -7123,2021-12-24,47144.95223130249,263,Urgent,2022-01-08,Inconclusive,7123,357,0,6,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7126,2023-03-19,1301.15435196795,180,Urgent,2023-03-29,Normal,7126,348,1,0,,,,DISCHARGED -7127,2020-10-30,10931.312349866865,436,Urgent,2020-11-04,Abnormal,7127,196,4,29,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -7128,2020-06-16,24919.838175483044,140,Emergency,2020-06-19,Normal,7128,72,3,24,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7128,2019-10-02,5439.113225786939,359,Urgent,2019-10-25,Abnormal,9900,58,4,2,,,,DISCHARGED -7129,2020-04-24,37830.23901868565,363,Elective,2020-05-03,Abnormal,7129,239,1,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -7130,2019-06-23,32203.170676483947,346,Emergency,2019-07-22,Normal,7130,1,4,28,,,,DISCHARGED -7131,2020-04-11,49537.836556769806,138,Urgent,2020-05-08,Abnormal,7131,448,1,19,,,,DISCHARGED -7132,2022-04-11,29141.438216020822,468,Elective,2022-04-16,Abnormal,7132,359,3,11,,,,DISCHARGED -7133,2019-12-26,30800.192578808164,463,Elective,2020-01-02,Inconclusive,7133,187,3,4,,,,DISCHARGED -7134,2020-08-30,16819.99792549633,454,Emergency,2020-09-18,Abnormal,7134,306,0,11,,,,DISCHARGED -7135,2019-11-03,21590.05968050994,381,Emergency,2019-11-22,Abnormal,7135,29,3,28,,,,DISCHARGED -7136,2019-11-28,35944.56290912836,236,Emergency,2019-12-14,Abnormal,7136,266,2,2,,,,DISCHARGED -7137,2019-12-17,39493.38238438234,103,Emergency,2019-12-31,Normal,7137,475,4,19,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7138,2020-06-12,17801.78962708057,344,Urgent,2020-07-06,Abnormal,7138,107,4,4,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7139,2021-09-11,6445.675572263648,450,Elective,2021-10-07,Abnormal,7139,331,1,27,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7140,2022-12-12,13669.66304710929,371,Elective,2022-12-24,Abnormal,7140,422,3,0,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7141,2019-03-30,20378.114327795065,284,Emergency,2019-04-25,Normal,7141,89,0,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7142,2021-01-21,26212.49513013249,372,Urgent,2021-01-23,Normal,7142,204,0,29,,,,DISCHARGED -7143,2019-05-15,41024.26391659207,145,Urgent,2019-06-02,Normal,7143,378,0,8,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7144,2019-12-22,26606.99648348217,392,Emergency,2019-12-25,Inconclusive,7144,455,2,9,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7145,2020-04-01,3436.1046141771485,249,Elective,2020-04-23,Normal,7145,446,3,28,,,,DISCHARGED -7146,2019-05-06,24191.54111516324,327,Urgent,2019-05-28,Inconclusive,7146,447,0,9,,,,DISCHARGED -7148,2019-11-02,27172.657012505337,382,Elective,2019-11-03,Abnormal,7148,444,2,12,,,,DISCHARGED -7149,2023-05-31,3163.0661839396794,336,Emergency,2023-06-22,Inconclusive,7149,380,4,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7150,2020-05-03,39057.94301172147,377,Emergency,2020-05-28,Inconclusive,7150,437,1,29,,,,DISCHARGED -7151,2019-05-16,37045.16506376791,492,Urgent,2019-05-28,Abnormal,7151,219,3,19,,,,DISCHARGED -7152,2023-05-08,5848.965302685062,192,Urgent,,Abnormal,7152,377,3,28,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7153,2022-12-13,4629.222019886309,432,Emergency,2022-12-14,Inconclusive,7153,93,4,24,,,,DISCHARGED -7154,2022-05-16,48471.478861202006,188,Emergency,2022-06-13,Normal,7154,456,3,3,,,,DISCHARGED -7155,2021-12-15,45259.33023102657,159,Emergency,2022-01-08,Abnormal,7155,102,3,13,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7156,2021-11-12,10463.716893575824,237,Emergency,2021-11-28,Inconclusive,7156,222,3,16,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7158,2019-02-18,41840.74498856691,417,Elective,2019-03-01,Normal,7158,185,3,27,,,,DISCHARGED -7159,2021-06-20,38745.06802313855,123,Elective,2021-07-11,Abnormal,7159,468,2,4,,,,DISCHARGED -7160,2022-05-20,7485.053731149499,106,Urgent,2022-05-21,Abnormal,7160,183,2,12,,,,DISCHARGED -7161,2019-08-30,15066.522876957524,324,Emergency,2019-09-17,Inconclusive,7161,494,1,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7162,2020-05-17,30216.501164675457,367,Urgent,2020-06-08,Normal,7162,161,3,2,,,,DISCHARGED -7163,2022-09-18,49223.7153460014,492,Urgent,2022-10-03,Inconclusive,7163,246,4,4,,,,DISCHARGED -7164,2020-12-09,27313.93170070976,313,Urgent,2021-01-06,Normal,7164,30,0,15,,,,DISCHARGED -7165,2020-11-28,49391.72658539869,134,Emergency,2020-12-18,Inconclusive,7165,51,1,18,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -7166,2019-09-01,47697.669841166986,395,Urgent,2019-09-03,Abnormal,7166,344,0,27,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7167,2023-05-13,10469.871969881302,263,Emergency,2023-05-26,Inconclusive,7167,75,0,18,,,,DISCHARGED -7168,2021-01-17,44585.56577915259,492,Emergency,2021-02-13,Abnormal,7168,384,3,16,,,,DISCHARGED -7169,2021-01-03,26520.658624456268,123,Urgent,2021-01-16,Inconclusive,7169,438,4,17,,,,DISCHARGED -7170,2020-02-26,2825.3267360231384,117,Emergency,2020-03-21,Normal,7170,277,0,17,,,,DISCHARGED -7171,2019-10-01,12749.560176320609,253,Urgent,2019-10-20,Abnormal,7171,39,0,24,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7174,2019-10-14,27127.680595704023,174,Emergency,2019-10-25,Normal,7174,100,1,22,,,,DISCHARGED -7175,2020-03-19,38256.61327356869,162,Emergency,2020-04-16,Abnormal,7175,110,4,7,,,,DISCHARGED -7177,2022-02-02,12144.03854480725,186,Emergency,2022-02-15,Abnormal,7177,384,4,17,,,,DISCHARGED -7178,2020-06-27,31870.24892567946,170,Elective,2020-07-02,Inconclusive,7178,320,0,8,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -7179,2021-09-16,4282.856565371199,377,Urgent,2021-10-03,Normal,7179,248,4,28,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -7181,2020-01-22,34828.25978986324,447,Elective,2020-02-02,Normal,7181,190,1,18,,,,DISCHARGED -7182,2022-08-18,47643.04762356633,173,Elective,2022-08-27,Abnormal,7182,489,1,9,,,,DISCHARGED -7184,2023-01-08,33668.23258294844,466,Elective,2023-01-11,Abnormal,7184,181,1,28,,,,DISCHARGED -7185,2021-02-23,16501.498554667844,164,Urgent,2021-02-24,Normal,7185,425,3,1,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -7186,2021-07-14,3974.976004387348,399,Urgent,2021-08-05,Inconclusive,7186,404,0,27,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7188,2021-05-06,4444.410933750696,113,Elective,2021-05-31,Abnormal,7188,334,4,16,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -7189,2023-02-26,10039.133779796635,346,Elective,,Inconclusive,7189,208,1,24,,,,OPEN -7190,2019-08-20,4962.356680587922,169,Urgent,2019-08-21,Inconclusive,7190,21,0,23,,,,DISCHARGED -7191,2022-06-19,36124.95387827857,296,Emergency,2022-07-07,Normal,7191,165,0,12,,,,DISCHARGED -7192,2023-06-19,44109.41425193822,241,Urgent,2023-06-24,Normal,7192,98,3,27,,,,DISCHARGED -7193,2022-09-18,22094.33486443696,417,Emergency,2022-10-15,Abnormal,7193,492,4,10,,,,DISCHARGED -7194,2022-01-26,38505.34801080887,448,Elective,2022-02-22,Inconclusive,7194,207,4,15,,,,DISCHARGED -7195,2019-04-02,13972.993115925368,319,Elective,2019-04-04,Inconclusive,7195,7,1,19,,,,DISCHARGED -7196,2019-08-07,15667.02336453579,468,Elective,2019-08-25,Normal,7196,189,1,6,,,,DISCHARGED -7197,2021-08-09,14857.686632671244,360,Elective,2021-08-24,Inconclusive,7197,174,0,27,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7198,2020-06-02,47898.271328171206,398,Emergency,2020-06-28,Inconclusive,7198,272,4,29,,,,DISCHARGED -7199,2022-07-10,42074.9730337654,381,Elective,2022-07-20,Normal,7199,16,4,2,,,,DISCHARGED -7200,2022-03-23,24717.073126320494,153,Elective,2022-04-14,Normal,7200,89,1,15,,,,DISCHARGED -7201,2022-12-02,44468.0410282488,347,Emergency,2022-12-05,Inconclusive,7201,140,2,18,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7202,2019-07-06,10169.326700314938,438,Urgent,2019-08-03,Normal,7202,144,0,19,,,,DISCHARGED -7203,2019-06-07,9763.372377286158,311,Emergency,2019-06-29,Abnormal,7203,165,4,15,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -7204,2023-07-29,26487.21994075691,296,Emergency,,Inconclusive,7204,336,3,1,,,,OPEN -7205,2020-06-04,42271.12073781485,246,Elective,2020-06-10,Inconclusive,7205,495,3,13,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -7206,2023-08-31,4514.147149922848,323,Emergency,,Abnormal,7206,77,2,25,,,,OPEN -7207,2022-10-02,11918.240761657962,204,Elective,2022-10-21,Abnormal,7207,428,1,19,,,,DISCHARGED -7208,2023-02-18,21410.521559982142,416,Elective,,Normal,7208,261,1,9,,,,OPEN -7209,2021-05-18,20804.63486730664,465,Elective,2021-06-04,Normal,7209,162,1,18,,,,DISCHARGED -7209,2019-07-04,7128.807212460624,376,Elective,2019-07-31,Abnormal,8621,365,3,23,,,,DISCHARGED -7210,2021-08-04,29332.316922106555,133,Urgent,2021-08-30,Normal,7210,13,1,10,,,,DISCHARGED -7211,2020-04-28,42247.97895693903,470,Urgent,2020-05-01,Normal,7211,238,3,17,,,,DISCHARGED -7212,2022-06-26,35048.57201279444,295,Elective,2022-07-20,Normal,7212,71,2,10,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7213,2019-01-22,26001.18565758748,180,Emergency,2019-01-27,Inconclusive,7213,444,0,8,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7214,2021-01-01,45137.95602534278,421,Elective,2021-01-02,Normal,7214,142,4,18,,,,DISCHARGED -7215,2023-10-17,33281.04736978501,130,Elective,2023-11-06,Inconclusive,7215,309,2,19,,,,DISCHARGED -7216,2020-02-04,12208.788597447134,401,Urgent,2020-02-10,Abnormal,7216,282,3,28,,,,DISCHARGED -7217,2022-07-13,42823.30654603339,412,Emergency,2022-07-20,Normal,7217,268,2,9,,,,DISCHARGED -7218,2019-03-01,21049.944131522625,233,Urgent,2019-03-04,Inconclusive,7218,240,4,29,,,,DISCHARGED -7219,2019-09-15,20614.66156413718,449,Emergency,2019-09-19,Abnormal,7219,414,0,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7220,2021-05-27,36922.01627674975,374,Urgent,2021-06-07,Inconclusive,7220,244,4,2,,,,DISCHARGED -7221,2020-12-01,25220.527285467928,260,Emergency,2020-12-10,Abnormal,7221,162,3,2,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -7222,2020-09-23,12138.41263571739,442,Urgent,2020-10-21,Normal,7222,59,4,23,,,,DISCHARGED -7223,2020-12-16,37569.61885467492,331,Urgent,2020-12-30,Abnormal,7223,5,2,7,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7225,2020-04-14,1283.5444729060396,349,Elective,2020-04-29,Abnormal,7225,196,1,28,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7226,2021-04-23,37096.01575440009,368,Emergency,2021-05-14,Normal,7226,469,2,28,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7227,2021-12-10,15391.661939336847,257,Urgent,2021-12-22,Abnormal,7227,57,3,5,,,,DISCHARGED -7228,2022-01-03,49502.1458422292,132,Emergency,2022-01-07,Abnormal,7228,304,0,19,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7228,2020-08-27,4134.078433260449,250,Emergency,2020-09-04,Abnormal,9274,406,4,0,,,,DISCHARGED -7229,2019-02-21,5053.98258298866,353,Emergency,2019-02-23,Inconclusive,7229,216,0,19,,,,DISCHARGED -7230,2020-03-04,25806.752119469355,138,Urgent,2020-03-07,Inconclusive,7230,417,3,23,,,,DISCHARGED -7231,2019-12-20,40948.33559829411,136,Elective,2019-12-30,Abnormal,7231,25,4,5,,,,DISCHARGED -7232,2019-01-07,6738.405125048368,474,Emergency,2019-02-02,Inconclusive,7232,302,2,1,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7233,2023-01-06,9689.8474944542,180,Elective,,Normal,7233,4,2,18,,,,OPEN -7234,2019-10-20,13885.287958494991,195,Urgent,2019-10-28,Normal,7234,473,3,27,,,,DISCHARGED -7235,2022-03-31,26868.503297706848,178,Emergency,2022-04-27,Normal,7235,19,4,6,,,,DISCHARGED -7236,2022-03-14,3178.5010606660694,338,Urgent,2022-04-05,Abnormal,7236,389,2,10,,,,DISCHARGED -7237,2021-06-23,43164.09378001368,325,Elective,2021-06-24,Abnormal,7237,197,3,10,,,,DISCHARGED -7238,2023-01-27,44030.329838229896,431,Urgent,,Normal,7238,58,3,3,,,,OPEN -7239,2023-09-17,26117.363659353778,249,Elective,2023-09-22,Abnormal,7239,447,0,19,,,,DISCHARGED -7240,2022-07-20,46649.60136533374,278,Urgent,2022-07-24,Inconclusive,7240,241,2,15,,,,DISCHARGED -7241,2019-01-18,12897.903898812683,324,Urgent,2019-02-15,Inconclusive,7241,145,4,4,,,,DISCHARGED -7243,2023-01-30,25857.685344121022,423,Urgent,,Inconclusive,7243,387,2,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,OPEN -7245,2020-07-29,24315.43491074983,297,Emergency,2020-08-24,Abnormal,7245,272,2,29,,,,DISCHARGED -7246,2020-06-26,32389.55044573958,188,Elective,2020-07-24,Abnormal,7246,248,2,29,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7247,2019-01-27,8586.671063246058,349,Emergency,2019-02-03,Inconclusive,7247,13,3,6,,,,DISCHARGED -7248,2021-06-17,19769.610089432168,275,Urgent,2021-06-23,Normal,7248,461,1,24,,,,DISCHARGED -7249,2022-02-17,8736.076592500785,199,Emergency,2022-03-08,Normal,7249,12,1,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -7250,2019-06-14,28951.027499187792,425,Elective,2019-06-26,Inconclusive,7250,390,0,14,,,,DISCHARGED -7251,2019-11-17,34543.67024655781,418,Elective,2019-11-23,Inconclusive,7251,383,2,4,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7252,2021-02-22,21708.910422007106,443,Elective,2021-03-23,Normal,7252,43,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7253,2021-04-10,46787.03583825796,299,Emergency,2021-05-10,Abnormal,7253,374,0,19,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -7254,2021-10-12,22060.566690528813,340,Urgent,2021-11-06,Abnormal,7254,398,3,21,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -7255,2019-07-13,29668.322448802643,452,Elective,2019-08-09,Normal,7255,18,2,21,,,,DISCHARGED -7256,2019-02-13,9353.51604502461,403,Emergency,2019-02-27,Abnormal,7256,62,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7257,2019-02-24,2698.259802818861,347,Elective,2019-03-06,Inconclusive,7257,490,3,25,,,,DISCHARGED -7258,2021-07-21,42360.522869150656,195,Emergency,2021-08-07,Inconclusive,7258,238,0,28,,,,DISCHARGED -7259,2021-09-15,2347.02709898368,269,Urgent,2021-09-24,Abnormal,7259,491,3,20,,,,DISCHARGED -7260,2022-01-29,36290.32306418081,250,Emergency,2022-02-22,Abnormal,7260,418,4,4,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -7261,2019-06-08,49225.37669705644,270,Urgent,2019-06-14,Normal,7261,336,3,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7262,2023-01-06,23892.430872093057,114,Emergency,2023-01-26,Normal,7262,418,0,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7264,2021-06-08,31615.33489890834,177,Emergency,2021-06-18,Inconclusive,7264,402,4,5,,,,DISCHARGED -7265,2021-02-24,22979.49545104826,186,Elective,2021-03-11,Abnormal,7265,403,4,2,,,,DISCHARGED -7266,2020-03-31,26053.96631110648,330,Emergency,2020-04-14,Abnormal,7266,99,3,5,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7267,2019-10-07,18645.61401817668,367,Emergency,2019-11-04,Abnormal,7267,162,4,7,,,,DISCHARGED -7268,2022-11-05,43028.00994174671,396,Elective,2022-11-07,Inconclusive,7268,415,3,27,,,,DISCHARGED -7269,2020-04-09,11125.417695661792,142,Urgent,2020-04-12,Abnormal,7269,121,2,5,,,,DISCHARGED -7270,2022-02-08,1614.535068761606,387,Elective,2022-02-21,Normal,7270,431,4,15,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7271,2021-09-05,45856.61103778065,148,Elective,2021-09-22,Inconclusive,7271,43,3,27,,,,DISCHARGED -7271,2020-10-13,20789.28877956234,127,Emergency,2020-11-04,Inconclusive,8141,359,2,15,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7271,2023-04-10,6532.309644695497,255,Emergency,2023-05-02,Normal,9988,407,4,26,,,,DISCHARGED -7272,2020-04-16,3344.3776578108336,375,Elective,2020-05-11,Normal,7272,316,2,20,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -7273,2019-04-21,6678.583545364742,175,Elective,2019-05-07,Abnormal,7273,380,4,2,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7273,2022-04-12,5312.1736173784575,104,Emergency,2022-05-02,Inconclusive,9112,144,0,16,,,,DISCHARGED -7274,2021-11-16,26186.030421242183,308,Elective,2021-12-09,Abnormal,7274,326,0,20,,,,DISCHARGED -7275,2021-05-29,3638.808622041157,164,Urgent,2021-06-28,Normal,7275,362,3,5,,,,DISCHARGED -7276,2020-10-19,26768.41041403627,310,Urgent,2020-11-06,Inconclusive,7276,49,1,29,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7277,2019-12-10,21858.98134712455,233,Emergency,2019-12-28,Normal,7277,64,0,5,,,,DISCHARGED -7278,2020-01-25,44079.34545470767,500,Emergency,2020-02-06,Abnormal,7278,354,1,29,,,,DISCHARGED -7279,2020-03-05,37902.61440369776,460,Urgent,2020-03-17,Normal,7279,287,2,21,,,,DISCHARGED -7280,2022-02-17,14376.30531003069,361,Urgent,2022-03-02,Normal,7280,163,2,18,,,,DISCHARGED -7282,2019-03-25,21932.92672110809,130,Urgent,2019-04-13,Normal,7282,140,1,19,,,,DISCHARGED -7283,2019-09-03,7729.990420936987,492,Urgent,2019-09-20,Normal,7283,453,3,14,,,,DISCHARGED -7284,2021-05-06,30688.05626736491,130,Emergency,2021-05-12,Normal,7284,313,4,18,,,,DISCHARGED -7285,2022-10-05,37629.88975010929,242,Emergency,2022-10-06,Abnormal,7285,127,1,1,,,,DISCHARGED -7286,2020-06-17,29645.86632358496,288,Elective,2020-06-26,Normal,7286,397,1,7,,,,DISCHARGED -7287,2018-11-18,6384.259683165454,360,Elective,2018-11-24,Abnormal,7287,420,1,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7288,2021-08-25,47198.38305434755,175,Urgent,2021-09-20,Abnormal,7288,367,1,26,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7289,2019-01-17,49947.56281494798,154,Emergency,2019-01-19,Inconclusive,7289,462,1,7,,,,DISCHARGED -7290,2019-09-28,39386.44181941064,201,Emergency,2019-10-17,Inconclusive,7290,238,3,12,,,,DISCHARGED -7291,2020-09-13,8545.402217475505,405,Elective,2020-09-18,Abnormal,7291,323,0,21,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7292,2018-12-08,40512.7870171696,210,Elective,2018-12-17,Normal,7292,295,4,26,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7293,2023-05-30,17310.070131499404,443,Elective,,Normal,7293,186,0,14,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",OPEN -7295,2022-08-05,15723.29263320653,170,Emergency,2022-08-10,Abnormal,7295,207,1,11,,,,DISCHARGED -7296,2020-10-25,24172.795837042133,216,Urgent,2020-11-20,Abnormal,7296,219,0,14,,,,DISCHARGED -7299,2021-01-31,15212.07391488521,196,Urgent,2021-02-26,Abnormal,7299,399,3,13,,,,DISCHARGED -7300,2021-04-25,42072.98675596639,350,Elective,2021-05-04,Inconclusive,7300,189,2,6,,,,DISCHARGED -7301,2020-10-27,48132.21867296519,250,Urgent,2020-11-04,Abnormal,7301,387,0,16,,,,DISCHARGED -7302,2023-08-07,17611.99713891229,489,Urgent,2023-08-16,Inconclusive,7302,428,4,25,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7303,2022-01-03,31445.17404752583,124,Elective,2022-01-31,Normal,7303,345,3,4,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7304,2021-04-21,20736.505722524777,120,Emergency,2021-04-27,Abnormal,7304,283,2,19,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7306,2020-11-07,11395.142928508438,239,Elective,2020-11-13,Abnormal,7306,351,3,9,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7307,2021-01-31,1244.000621332449,245,Emergency,2021-02-01,Normal,7307,236,1,18,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -7308,2022-04-22,23118.67859885996,210,Elective,2022-05-14,Inconclusive,7308,193,2,17,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7309,2019-05-14,9063.481874101006,251,Emergency,2019-06-07,Abnormal,7309,286,4,29,,,,DISCHARGED -7310,2021-05-11,4802.670310740336,127,Urgent,2021-05-27,Normal,7310,258,2,29,,,,DISCHARGED -7310,2023-04-30,5651.250351468582,440,Urgent,,Abnormal,8233,245,4,24,,,,OPEN -7311,2020-10-16,31265.88194378888,403,Urgent,2020-11-12,Inconclusive,7311,135,1,23,,,,DISCHARGED -7312,2021-11-08,43564.12658775894,467,Emergency,2021-12-02,Inconclusive,7312,279,4,9,,,,DISCHARGED -7313,2022-02-11,23892.08658065549,494,Emergency,2022-03-03,Abnormal,7313,270,3,1,,,,DISCHARGED -7314,2023-08-23,9874.148894248528,471,Elective,,Abnormal,7314,170,0,5,,,,OPEN -7315,2019-02-25,32789.184430280424,206,Elective,2019-03-04,Abnormal,7315,158,3,2,,,,DISCHARGED -7316,2020-02-17,37844.0472769887,120,Emergency,2020-02-28,Inconclusive,7316,200,3,18,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -7317,2019-05-13,9682.843417848137,153,Emergency,2019-06-09,Abnormal,7317,486,2,4,,,,DISCHARGED -7319,2021-07-03,44920.11240746373,224,Elective,2021-07-12,Inconclusive,7319,44,1,6,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -7320,2019-04-30,21661.837660256755,200,Urgent,2019-05-10,Inconclusive,7320,449,0,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7321,2023-07-07,36770.67829171979,284,Elective,,Normal,7321,263,4,26,,,,OPEN -7322,2020-06-27,49159.46187513699,261,Urgent,2020-06-28,Inconclusive,7322,70,2,9,,,,DISCHARGED -7323,2019-07-27,49368.23485879436,106,Elective,2019-08-17,Normal,7323,363,1,0,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7325,2019-01-05,10532.648283416613,149,Urgent,2019-02-03,Inconclusive,7325,370,0,10,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7326,2022-08-21,49475.70018441851,164,Urgent,2022-09-17,Normal,7326,102,3,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7327,2021-06-24,15786.091589801425,429,Emergency,2021-07-06,Normal,7327,489,1,6,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7328,2020-05-23,10265.07339387778,255,Emergency,2020-06-06,Normal,7328,124,1,5,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7329,2019-10-10,7716.662985024071,430,Emergency,2019-11-06,Normal,7329,312,1,5,,,,DISCHARGED -7330,2019-09-26,41522.30587888796,409,Urgent,2019-10-23,Normal,7330,463,3,12,,,,DISCHARGED -7331,2021-09-07,2625.98297351886,358,Urgent,2021-10-01,Abnormal,7331,482,4,15,,,,DISCHARGED -7332,2022-01-17,2003.7692479004927,406,Emergency,2022-02-10,Inconclusive,7332,285,2,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7333,2021-11-11,37045.19275152549,365,Elective,2021-12-01,Abnormal,7333,457,4,1,,,,DISCHARGED -7334,2022-06-21,38950.76353434449,150,Urgent,2022-07-20,Inconclusive,7334,229,0,18,,,,DISCHARGED -7335,2019-08-15,49877.69565091977,371,Urgent,2019-09-14,Normal,7335,145,2,18,,,,DISCHARGED -7336,2020-07-09,41024.06595877488,240,Emergency,2020-07-28,Inconclusive,7336,369,0,28,,,,DISCHARGED -7337,2020-04-02,47172.93316534732,368,Emergency,2020-05-02,Abnormal,7337,196,3,18,,,,DISCHARGED -7338,2023-05-21,22384.474105809688,401,Elective,2023-05-28,Abnormal,7338,372,4,17,,,,DISCHARGED -7339,2022-03-16,19451.27909273757,174,Urgent,2022-04-08,Inconclusive,7339,220,1,24,,,,DISCHARGED -7340,2022-09-18,4564.584714342207,498,Elective,2022-10-04,Normal,7340,422,2,5,,,,DISCHARGED -7341,2023-06-18,37777.25843683521,492,Emergency,2023-07-05,Normal,7341,59,1,1,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7342,2023-05-05,33814.08289483565,493,Elective,,Inconclusive,7342,97,0,18,,,,OPEN -7343,2019-04-29,11887.257112353243,315,Urgent,2019-05-14,Normal,7343,170,1,25,,,,DISCHARGED -7344,2019-08-11,31322.55260039573,172,Elective,2019-09-10,Abnormal,7344,381,1,5,,,,DISCHARGED -7345,2019-10-13,7718.712938027591,481,Emergency,2019-10-26,Normal,7345,172,3,19,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7346,2023-03-15,14369.191173870406,266,Urgent,2023-04-08,Inconclusive,7346,150,3,22,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7347,2019-06-17,35507.67243678987,354,Elective,2019-07-08,Normal,7347,452,4,21,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7348,2021-06-03,22688.84301631749,134,Elective,2021-06-21,Inconclusive,7348,349,0,14,,,,DISCHARGED -7349,2023-09-06,16606.961278887073,294,Urgent,,Normal,7349,389,3,5,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,OPEN -7350,2023-03-16,39959.04942750109,303,Emergency,,Inconclusive,7350,439,3,27,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",OPEN -7351,2022-09-22,9509.387200503164,428,Urgent,2022-10-11,Normal,7351,121,4,2,,,,DISCHARGED -7352,2019-10-03,46028.18327459657,323,Emergency,2019-10-18,Normal,7352,493,2,10,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -7353,2019-02-14,33481.51754841848,103,Elective,2019-03-02,Inconclusive,7353,107,4,7,,,,DISCHARGED -7354,2018-11-30,3593.6346439365584,181,Elective,2018-12-30,Abnormal,7354,3,1,24,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7356,2019-10-23,6104.171480807141,360,Emergency,2019-10-26,Inconclusive,7356,92,1,21,,,,DISCHARGED -7358,2018-11-26,26420.97513218171,289,Emergency,2018-12-26,Inconclusive,7358,406,3,17,,,,DISCHARGED -7359,2020-02-17,47498.09660959636,336,Elective,2020-02-29,Inconclusive,7359,5,3,16,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -7360,2020-09-21,3102.520177151073,459,Urgent,2020-10-01,Inconclusive,7360,287,4,18,,,,DISCHARGED -7360,2019-06-09,46415.71303815014,424,Urgent,2019-07-08,Normal,7753,105,4,18,,,,DISCHARGED -7361,2021-05-26,17511.354247874424,305,Elective,2021-06-12,Normal,7361,145,0,23,,,,DISCHARGED -7362,2023-03-21,46186.136418578615,333,Urgent,2023-04-05,Inconclusive,7362,270,1,20,,,,DISCHARGED -7363,2019-12-30,1281.1282780073082,137,Urgent,2019-12-31,Abnormal,7363,423,4,16,,,,DISCHARGED -7364,2022-05-27,27140.922228342904,377,Emergency,2022-06-15,Normal,7364,377,2,26,,,,DISCHARGED -7366,2019-08-16,36218.09921416106,464,Emergency,2019-09-02,Inconclusive,7366,95,0,3,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7367,2018-12-30,15629.941586556652,485,Urgent,2019-01-18,Abnormal,7367,456,4,6,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7368,2019-08-23,35986.93140715571,456,Urgent,2019-09-14,Normal,7368,228,3,4,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7369,2020-03-27,7446.201272026424,484,Urgent,2020-04-02,Inconclusive,7369,201,4,25,,,,DISCHARGED -7370,2018-11-09,27918.96096064302,429,Elective,2018-12-05,Inconclusive,7370,211,3,28,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -7372,2020-03-14,10658.782196833989,113,Elective,2020-03-15,Abnormal,7372,5,3,15,,,,DISCHARGED -7373,2022-09-02,30745.753575815357,101,Elective,2022-09-28,Normal,7373,111,1,5,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7374,2022-04-25,1360.8912942231163,370,Emergency,2022-05-08,Normal,7374,375,1,13,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7375,2019-01-28,11994.264546742726,290,Elective,2019-01-29,Normal,7375,378,4,25,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7376,2021-11-25,47045.40079051405,411,Elective,2021-12-18,Inconclusive,7376,446,4,19,,,,DISCHARGED -7377,2020-07-12,48533.40150312601,132,Urgent,2020-08-07,Normal,7377,322,2,1,,,,DISCHARGED -7378,2019-12-04,1478.3481195815905,169,Emergency,2019-12-23,Abnormal,7378,105,0,24,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7379,2021-03-31,39856.71432033812,283,Urgent,2021-04-11,Inconclusive,7379,138,0,17,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7380,2019-11-03,29125.793415575383,366,Emergency,2019-11-14,Normal,7380,298,4,17,,,,DISCHARGED -7381,2019-08-06,20359.875578127005,145,Elective,2019-08-18,Normal,7381,400,1,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7383,2021-10-24,32394.229845199243,281,Elective,2021-11-08,Abnormal,7383,95,2,27,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -7384,2022-08-01,20850.358986226045,406,Urgent,2022-08-26,Inconclusive,7384,387,0,17,,,,DISCHARGED -7385,2021-07-13,34077.92896248795,192,Urgent,2021-07-31,Abnormal,7385,446,4,16,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7386,2023-10-28,6769.277346453472,386,Elective,2023-11-20,Normal,7386,451,1,12,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7387,2021-06-28,43101.60586486373,467,Urgent,2021-07-07,Inconclusive,7387,336,1,27,,,,DISCHARGED -7387,2023-05-13,20321.829790717133,296,Urgent,2023-05-20,Inconclusive,9202,296,1,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7388,2020-08-01,16976.601102467925,412,Emergency,2020-08-07,Normal,7388,466,3,2,,,,DISCHARGED -7389,2021-02-23,41175.74948770679,365,Elective,2021-03-12,Inconclusive,7389,388,1,21,,,,DISCHARGED -7390,2018-11-12,33056.898305941606,196,Elective,2018-11-22,Abnormal,7390,415,4,6,,,,DISCHARGED -7391,2023-02-14,49929.7987260518,455,Emergency,2023-02-16,Abnormal,7391,213,2,0,,,,DISCHARGED -7392,2020-06-26,46139.925387324336,198,Urgent,2020-07-23,Inconclusive,7392,453,4,29,,,,DISCHARGED -7392,2023-01-05,21212.336237180574,302,Urgent,2023-02-02,Inconclusive,8419,290,1,4,,,,DISCHARGED -7393,2022-02-15,47034.01300356706,220,Urgent,2022-02-19,Inconclusive,7393,21,2,20,,,,DISCHARGED -7394,2020-05-10,17150.848338674838,387,Urgent,2020-05-22,Normal,7394,192,0,0,,,,DISCHARGED -7395,2020-04-01,37087.95395226936,473,Elective,2020-04-05,Normal,7395,467,0,3,,,,DISCHARGED -7396,2023-02-10,5824.262451376051,480,Elective,2023-02-18,Abnormal,7396,149,4,25,,,,DISCHARGED -7397,2022-08-06,41554.904721816936,137,Emergency,2022-08-18,Inconclusive,7397,367,2,0,,,,DISCHARGED -7399,2021-03-16,17560.42889417878,475,Urgent,2021-03-31,Normal,7399,246,4,12,,,,DISCHARGED -7400,2022-12-07,44516.817607446654,209,Emergency,2022-12-08,Abnormal,7400,266,2,13,,,,DISCHARGED -7401,2021-11-13,1704.6336100252934,351,Emergency,2021-12-09,Inconclusive,7401,460,2,14,,,,DISCHARGED -7402,2020-12-18,47112.7380335924,248,Urgent,2020-12-20,Inconclusive,7402,250,4,16,,,,DISCHARGED -7403,2020-03-03,8371.273328608018,143,Urgent,2020-03-30,Normal,7403,489,2,11,,,,DISCHARGED -7403,2021-04-06,48301.590278803895,310,Urgent,2021-04-24,Abnormal,8841,2,1,6,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7404,2021-10-23,41803.3731700074,309,Elective,2021-11-19,Inconclusive,7404,392,2,22,,,,DISCHARGED -7405,2022-07-25,38942.65729693895,282,Elective,2022-08-11,Abnormal,7405,315,2,18,,,,DISCHARGED -7406,2019-07-02,10814.04280236292,163,Emergency,2019-07-22,Inconclusive,7406,75,4,22,,,,DISCHARGED -7407,2022-10-02,25069.46781391736,469,Emergency,2022-10-04,Normal,7407,86,0,2,,,,DISCHARGED -7408,2020-10-19,11012.49986288973,268,Emergency,2020-10-25,Normal,7408,269,3,17,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -7409,2022-12-01,24903.290377906564,414,Emergency,2022-12-05,Inconclusive,7409,224,2,25,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7410,2023-05-05,17224.410183747044,392,Elective,2023-05-23,Abnormal,7410,17,3,3,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -7411,2022-01-23,17133.008343237874,335,Elective,2022-02-16,Abnormal,7411,112,2,29,,,,DISCHARGED -7412,2019-11-07,33610.743194768555,251,Elective,2019-11-22,Inconclusive,7412,250,4,25,,,,DISCHARGED -7413,2020-06-23,23716.67081110378,140,Emergency,2020-07-17,Abnormal,7413,232,4,2,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -7414,2019-01-30,1590.4097463553687,460,Elective,2019-02-21,Normal,7414,328,2,11,,,,DISCHARGED -7415,2020-11-23,35326.6337948422,319,Urgent,2020-11-30,Normal,7415,278,4,22,,,,DISCHARGED -7416,2021-08-19,24711.070112272955,236,Urgent,2021-09-11,Abnormal,7416,201,4,27,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7417,2020-09-29,21571.727016175897,438,Emergency,2020-10-04,Inconclusive,7417,82,2,11,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7418,2022-06-21,48977.79264938505,165,Emergency,2022-07-12,Inconclusive,7418,124,0,16,,,,DISCHARGED -7419,2018-11-26,7661.288741484641,162,Urgent,2018-12-25,Inconclusive,7419,174,2,5,,,,DISCHARGED -7420,2021-03-30,13728.703049715024,475,Emergency,2021-04-27,Normal,7420,68,0,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7421,2021-12-12,38569.21220081457,321,Emergency,2021-12-28,Abnormal,7421,46,4,29,,,,DISCHARGED -7422,2021-04-15,37643.026077415954,271,Elective,2021-05-03,Inconclusive,7422,371,0,1,,,,DISCHARGED -7423,2022-08-03,40430.56959668833,208,Emergency,2022-08-25,Normal,7423,255,4,7,,,,DISCHARGED -7424,2019-04-20,11032.645604499015,347,Emergency,2019-05-15,Abnormal,7424,214,0,13,,,,DISCHARGED -7425,2021-07-13,11564.3115220851,144,Emergency,2021-08-05,Inconclusive,7425,29,0,4,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -7426,2020-01-23,30073.195135329923,150,Elective,2020-01-31,Abnormal,7426,280,2,2,,,,DISCHARGED -7428,2019-10-13,13539.668728509292,341,Emergency,2019-11-10,Inconclusive,7428,411,0,9,,,,DISCHARGED -7431,2021-09-09,43519.631793763176,136,Elective,2021-09-12,Inconclusive,7431,481,4,6,,,,DISCHARGED -7433,2019-07-16,3801.112621764575,370,Urgent,2019-08-01,Inconclusive,7433,236,2,29,,,,DISCHARGED -7434,2019-12-31,30055.591726123723,185,Urgent,2020-01-13,Normal,7434,247,0,10,,,,DISCHARGED -7435,2019-04-10,28586.20731398601,262,Emergency,2019-04-29,Abnormal,7435,367,2,14,,,,DISCHARGED -7436,2022-09-07,7221.674070155697,366,Elective,2022-09-13,Normal,7436,494,3,1,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -7437,2021-05-26,45141.18176872801,101,Elective,2021-06-11,Inconclusive,7437,24,2,4,,,,DISCHARGED -7438,2023-06-14,44677.05926055205,425,Emergency,,Inconclusive,7438,73,3,10,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,OPEN -7439,2021-11-25,40219.24804402496,412,Emergency,2021-12-03,Abnormal,7439,205,3,7,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7440,2020-05-15,26287.501879486583,472,Emergency,2020-05-17,Normal,7440,489,2,12,,,,DISCHARGED -7441,2022-03-06,5948.4688287366425,237,Emergency,2022-03-27,Normal,7441,493,4,10,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -7442,2020-01-21,6777.181085690823,418,Urgent,2020-01-24,Normal,7442,313,4,16,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7443,2019-07-23,49324.72797131844,337,Emergency,2019-07-30,Normal,7443,93,4,14,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -7444,2019-01-13,45192.28021610689,113,Urgent,2019-02-05,Abnormal,7444,374,1,0,,,,DISCHARGED -7445,2019-07-09,22615.639542517845,133,Emergency,2019-07-17,Abnormal,7445,126,3,18,,,,DISCHARGED -7446,2019-10-07,49570.40702682619,413,Emergency,2019-10-16,Inconclusive,7446,424,2,15,,,,DISCHARGED -7447,2019-08-16,49954.968325041846,455,Emergency,2019-09-03,Abnormal,7447,24,4,18,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -7448,2020-04-17,8385.546001166742,361,Urgent,2020-05-11,Normal,7448,333,4,12,,,,DISCHARGED -7449,2021-06-16,32650.07223619745,224,Urgent,2021-06-22,Abnormal,7449,354,2,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7450,2023-09-11,47133.1123765677,361,Urgent,2023-09-18,Normal,7450,115,3,21,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7453,2023-03-03,48131.91947237794,361,Urgent,2023-03-22,Abnormal,7453,47,2,22,,,,DISCHARGED -7454,2022-11-08,32964.75562550961,172,Elective,2022-11-24,Inconclusive,7454,225,1,3,,,,DISCHARGED -7457,2020-11-09,7759.353096552857,312,Urgent,2020-11-27,Inconclusive,7457,265,1,10,,,,DISCHARGED -7458,2020-10-31,5979.757451023036,476,Emergency,2020-11-18,Abnormal,7458,98,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -7459,2020-02-10,25406.23372868209,178,Elective,2020-02-24,Abnormal,7459,458,3,17,,,,DISCHARGED -7460,2020-07-16,34681.09203646238,360,Urgent,2020-07-17,Abnormal,7460,10,4,9,,,,DISCHARGED -7461,2022-12-12,13730.432920688105,180,Urgent,2022-12-16,Normal,7461,84,1,16,,,,DISCHARGED -7462,2023-09-20,29315.82149081989,138,Emergency,2023-10-09,Normal,7462,404,1,29,,,,DISCHARGED -7464,2020-04-26,41866.63911363858,372,Urgent,2020-05-02,Normal,7464,213,3,12,,,,DISCHARGED -7465,2019-07-05,30068.203154665476,310,Urgent,2019-07-30,Inconclusive,7465,172,1,29,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -7466,2022-07-24,38926.43656797616,465,Emergency,2022-08-17,Inconclusive,7466,390,1,24,,,,DISCHARGED -7467,2019-04-30,35229.40427768582,205,Elective,2019-05-16,Inconclusive,7467,208,3,13,,,,DISCHARGED -7468,2020-12-28,21729.94285500025,177,Emergency,2021-01-23,Normal,7468,447,2,29,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7469,2019-06-05,17035.548681484644,221,Elective,2019-07-03,Abnormal,7469,381,4,6,,,,DISCHARGED -7471,2019-11-06,33492.87654641562,437,Elective,2019-11-20,Normal,7471,63,4,9,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7472,2019-08-23,30585.1306811603,251,Emergency,2019-08-28,Abnormal,7472,257,1,2,,,,DISCHARGED -7473,2022-11-18,24235.38675274028,444,Emergency,2022-12-14,Normal,7473,331,4,1,,,,DISCHARGED -7475,2019-04-25,14622.252518513578,229,Emergency,2019-05-05,Abnormal,7475,120,2,29,,,,DISCHARGED -7477,2020-03-31,2237.213829753809,487,Elective,2020-04-07,Inconclusive,7477,297,1,18,,,,DISCHARGED -7478,2022-09-11,20044.03797917539,102,Emergency,2022-09-14,Abnormal,7478,465,4,6,,,,DISCHARGED -7479,2022-12-04,18257.35989313068,459,Elective,2023-01-01,Normal,7479,53,0,4,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -7480,2021-06-04,39254.47268067215,362,Elective,2021-06-17,Normal,7480,330,0,27,,,,DISCHARGED -7481,2020-02-28,43923.18154458272,470,Elective,2020-03-11,Abnormal,7481,271,0,2,,,,DISCHARGED -7482,2019-11-02,9953.065946239403,105,Emergency,2019-11-16,Inconclusive,7482,240,0,24,,,,DISCHARGED -7484,2022-03-17,49671.246513651975,409,Urgent,2022-04-09,Abnormal,7484,242,0,1,,,,DISCHARGED -7485,2019-07-30,2800.3666717192627,369,Urgent,2019-08-25,Abnormal,7485,17,1,22,,,,DISCHARGED -7486,2023-07-07,6945.9227709571005,475,Emergency,2023-08-06,Inconclusive,7486,482,3,25,,,,DISCHARGED -7486,2019-11-12,34528.275381539795,432,Urgent,2019-11-13,Inconclusive,8399,186,3,21,,,,DISCHARGED -7487,2019-03-22,25734.900690737184,378,Elective,2019-04-02,Abnormal,7487,345,1,5,,,,DISCHARGED -7489,2021-12-01,34154.26972180311,233,Urgent,2021-12-14,Normal,7489,143,1,13,,,,DISCHARGED -7490,2020-02-27,27722.4360895578,206,Elective,2020-03-19,Normal,7490,261,2,6,,,,DISCHARGED -7491,2019-05-16,28878.905360924786,431,Elective,2019-06-13,Abnormal,7491,440,3,21,,,,DISCHARGED -7492,2020-04-16,19916.144351224702,342,Elective,2020-05-15,Abnormal,7492,363,0,1,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -7493,2019-09-17,48301.6132076731,246,Elective,2019-10-11,Normal,7493,490,1,10,,,,DISCHARGED -7494,2018-11-01,9938.327634874786,186,Emergency,2018-11-24,Inconclusive,7494,430,0,20,,,,DISCHARGED -7495,2023-05-15,40617.37265241343,318,Elective,,Normal,7495,238,3,2,,,,OPEN -7496,2020-12-31,21557.962752780608,292,Emergency,2021-01-02,Abnormal,7496,303,4,8,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7497,2020-07-31,35175.01955642231,297,Urgent,2020-08-18,Abnormal,7497,297,4,7,,,,DISCHARGED -7498,2022-06-29,17396.41494720043,210,Elective,2022-07-11,Normal,7498,75,1,25,,,,DISCHARGED -7499,2021-02-15,40350.04379074857,280,Emergency,2021-03-17,Normal,7499,187,2,10,,,,DISCHARGED -7500,2023-02-01,3926.076159638417,390,Emergency,2023-02-26,Inconclusive,7500,332,0,17,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7501,2021-09-02,24120.31194826931,163,Elective,2021-09-21,Inconclusive,7501,387,1,0,,,,DISCHARGED -7502,2022-11-09,4458.713982585574,222,Emergency,2022-11-19,Inconclusive,7502,486,2,14,,,,DISCHARGED -7503,2021-07-06,43241.42067557055,263,Emergency,2021-07-21,Abnormal,7503,245,0,3,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7504,2020-11-17,35530.414759572,317,Urgent,2020-12-12,Abnormal,7504,129,3,3,,,,DISCHARGED -7505,2023-10-13,42689.21709586649,196,Elective,2023-10-16,Normal,7505,473,4,27,,,,DISCHARGED -7506,2021-12-01,33252.597967831,138,Urgent,2021-12-26,Normal,7506,314,2,9,,,,DISCHARGED -7507,2019-12-07,8946.537283860012,281,Elective,2019-12-19,Normal,7507,410,0,10,,,,DISCHARGED -7508,2020-10-21,29349.412425786253,382,Urgent,2020-11-06,Normal,7508,282,1,17,,,,DISCHARGED -7509,2022-04-06,14935.139181821229,269,Emergency,2022-04-30,Inconclusive,7509,78,0,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -7510,2022-07-23,39533.17700364416,176,Elective,2022-08-07,Inconclusive,7510,71,1,28,,,,DISCHARGED -7511,2023-01-18,33783.29086904596,430,Urgent,2023-01-23,Inconclusive,7511,262,4,14,,,,DISCHARGED -7513,2018-12-16,22585.332696216825,311,Urgent,2019-01-07,Normal,7513,190,4,2,,,,DISCHARGED -7514,2020-10-21,29727.458154591168,116,Emergency,2020-11-10,Normal,7514,366,0,6,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7515,2020-11-27,11846.9018454956,307,Urgent,2020-12-14,Inconclusive,7515,374,0,6,,,,DISCHARGED -7516,2018-12-05,24070.575063104447,262,Emergency,2018-12-10,Abnormal,7516,429,1,16,,,,DISCHARGED -7517,2021-03-01,17281.275060380758,229,Elective,2021-03-08,Inconclusive,7517,62,1,21,,,,DISCHARGED -7517,2023-03-30,7246.224321922904,469,Emergency,2023-04-01,Abnormal,7827,487,2,19,,,,DISCHARGED -7518,2021-09-09,15241.01319560443,330,Elective,2021-09-26,Inconclusive,7518,379,2,26,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7519,2019-01-21,19078.174491168207,234,Emergency,2019-02-18,Inconclusive,7519,11,2,23,,,,DISCHARGED -7520,2021-03-10,33010.20773855482,277,Urgent,2021-04-05,Abnormal,7520,140,0,15,,,,DISCHARGED -7522,2019-05-13,4759.932137398591,178,Elective,2019-06-07,Normal,7522,253,2,15,,,,DISCHARGED -7523,2021-07-13,23900.173952384263,156,Emergency,2021-07-16,Inconclusive,7523,42,0,7,,,,DISCHARGED -7524,2020-01-05,23955.03324012349,358,Urgent,2020-01-18,Normal,7524,16,4,2,,,,DISCHARGED -7525,2022-04-02,13749.589500401757,180,Emergency,2022-04-22,Inconclusive,7525,62,3,19,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7526,2019-10-17,25067.95406129665,214,Urgent,2019-10-25,Abnormal,7526,252,4,14,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -7527,2018-12-04,24812.64083526269,428,Elective,2018-12-31,Normal,7527,464,0,0,,,,DISCHARGED -7528,2022-01-01,47342.145612677385,286,Elective,2022-01-31,Abnormal,7528,375,0,9,,,,DISCHARGED -7529,2023-05-04,31419.59359869032,286,Elective,,Inconclusive,7529,291,3,1,,,,OPEN -7530,2020-11-27,8373.869924308441,137,Elective,2020-12-19,Normal,7530,468,1,6,,,,DISCHARGED -7531,2022-10-13,23322.28154651912,259,Emergency,2022-11-01,Normal,7531,7,1,13,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7532,2020-08-28,11150.694338427196,159,Emergency,2020-08-30,Inconclusive,7532,324,1,15,,,,DISCHARGED -7533,2022-03-17,45799.49536639733,282,Urgent,2022-03-18,Normal,7533,89,2,26,,,,DISCHARGED -7534,2023-04-21,32429.35597646565,413,Emergency,2023-04-24,Inconclusive,7534,207,1,27,,,,DISCHARGED -7535,2020-09-23,10353.015811602032,258,Urgent,2020-09-26,Inconclusive,7535,291,2,14,,,,DISCHARGED -7536,2018-12-02,31096.17167917293,337,Emergency,2018-12-13,Abnormal,7536,283,2,6,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7537,2021-02-19,24776.963691451743,359,Elective,2021-03-17,Inconclusive,7537,117,1,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -7539,2019-10-07,9249.604453365868,145,Urgent,2019-10-17,Normal,7539,348,1,24,,,,DISCHARGED -7540,2020-11-17,17003.279796990715,167,Elective,2020-12-14,Inconclusive,7540,174,3,9,,,,DISCHARGED -7541,2022-10-20,25600.23079981989,366,Urgent,2022-10-27,Abnormal,7541,75,3,8,,,,DISCHARGED -7542,2023-04-21,30967.39653599477,125,Emergency,,Abnormal,7542,100,2,8,,,,OPEN -7543,2020-05-24,12309.00015229968,221,Urgent,2020-06-07,Normal,7543,413,3,5,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7545,2020-03-18,27264.57685737836,306,Urgent,2020-04-08,Inconclusive,7545,150,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7547,2022-07-01,49354.88765759358,405,Emergency,2022-07-12,Abnormal,7547,399,0,24,,,,DISCHARGED -7548,2022-03-11,38712.46098213759,422,Elective,2022-03-14,Abnormal,7548,269,2,11,,,,DISCHARGED -7549,2023-10-23,26666.06848656508,227,Urgent,,Abnormal,7549,457,2,29,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,OPEN -7550,2022-04-03,25397.300218633816,362,Emergency,2022-04-22,Inconclusive,7550,70,3,22,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7551,2023-01-20,10304.704586592808,105,Emergency,2023-02-01,Abnormal,7551,492,0,19,,,,DISCHARGED -7552,2023-06-18,36474.05836049384,379,Elective,2023-06-26,Normal,7552,179,4,29,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -7553,2020-03-14,15343.189128399616,359,Elective,2020-03-19,Normal,7553,123,4,19,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7554,2020-09-30,41316.53930923124,486,Urgent,2020-10-15,Normal,7554,380,4,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -7555,2022-12-13,39280.97229570934,332,Emergency,2022-12-31,Abnormal,7555,292,0,13,,,,DISCHARGED -7556,2022-10-21,26454.54152496901,471,Elective,2022-11-10,Inconclusive,7556,284,1,26,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -7557,2020-09-08,35268.98010936694,281,Urgent,2020-09-14,Inconclusive,7557,194,0,19,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -7558,2023-05-07,21566.39008498816,176,Emergency,,Normal,7558,398,3,26,,,,OPEN -7559,2023-08-21,42482.76834704472,396,Urgent,2023-09-04,Inconclusive,7559,227,2,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7560,2022-03-31,27436.781941440066,296,Elective,2022-04-05,Normal,7560,430,2,7,,,,DISCHARGED -7561,2020-05-25,20254.563439425183,326,Elective,2020-06-03,Inconclusive,7561,429,3,7,,,,DISCHARGED -7562,2020-05-13,44648.80888479472,161,Urgent,2020-06-04,Normal,7562,435,3,29,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -7563,2023-04-10,8077.510380160883,235,Elective,2023-04-26,Abnormal,7563,274,2,7,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7565,2022-03-20,35202.74867748666,256,Urgent,2022-03-27,Inconclusive,7565,460,1,1,,,,DISCHARGED -7566,2023-07-03,17772.670112284315,459,Emergency,2023-07-31,Abnormal,7566,105,1,13,,,,DISCHARGED -7567,2020-07-12,1276.0740036201405,223,Urgent,2020-08-01,Normal,7567,20,1,9,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7568,2019-07-09,20042.115211190205,498,Urgent,2019-08-07,Inconclusive,7568,63,3,17,,,,DISCHARGED -7571,2022-05-14,30805.32113071227,291,Elective,2022-05-27,Abnormal,7571,164,2,17,,,,DISCHARGED -7572,2019-01-21,48613.18087703866,455,Emergency,2019-02-01,Abnormal,7572,26,2,17,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7573,2021-12-30,26982.81019659724,161,Emergency,2022-01-09,Abnormal,7573,310,2,15,,,,DISCHARGED -7574,2022-10-24,19037.289144380786,379,Elective,2022-11-22,Normal,7574,499,0,19,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -7575,2021-03-15,40735.34224928746,487,Emergency,2021-03-23,Normal,7575,284,0,4,,,,DISCHARGED -7577,2021-07-26,11453.54796503632,446,Urgent,2021-08-20,Abnormal,7577,147,4,19,,,,DISCHARGED -7578,2022-11-16,40287.76080098123,459,Elective,2022-11-17,Inconclusive,7578,280,0,4,,,,DISCHARGED -7579,2021-05-20,37077.45492268149,320,Emergency,2021-06-15,Inconclusive,7579,325,1,19,,,,DISCHARGED -7580,2023-05-16,28612.59176559864,397,Elective,,Abnormal,7580,318,1,22,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -7581,2019-06-24,9245.928921296689,154,Elective,2019-07-19,Abnormal,7581,163,1,9,,,,DISCHARGED -7582,2022-09-01,45034.31550129354,445,Elective,2022-09-28,Normal,7582,385,1,16,,,,DISCHARGED -7583,2021-11-27,2311.084445295098,341,Urgent,2021-12-21,Normal,7583,405,4,29,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7583,2022-06-22,15673.557008471418,440,Elective,2022-07-10,Abnormal,9789,223,1,12,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7584,2022-05-27,47961.16734645986,344,Elective,2022-06-16,Inconclusive,7584,271,3,16,,,,DISCHARGED -7585,2023-01-05,39405.59983581299,373,Emergency,2023-01-17,Normal,7585,145,3,17,,,,DISCHARGED -7586,2022-08-21,29803.70806986676,400,Elective,2022-08-31,Abnormal,7586,452,3,12,,,,DISCHARGED -7587,2020-12-12,2840.059836079563,480,Elective,2020-12-14,Normal,7587,437,0,16,,,,DISCHARGED -7588,2020-07-31,25687.303402688325,389,Elective,2020-08-07,Abnormal,7588,355,2,27,,,,DISCHARGED -7589,2020-06-10,44022.69970621039,478,Urgent,2020-06-30,Abnormal,7589,29,4,14,,,,DISCHARGED -7590,2020-01-25,48595.98903354435,316,Emergency,2020-02-15,Abnormal,7590,44,3,25,,,,DISCHARGED -7590,2023-01-09,41660.02058108216,419,Emergency,,Inconclusive,8922,274,3,11,,,,OPEN -7591,2020-09-22,25298.39649780224,226,Elective,2020-10-04,Inconclusive,7591,470,1,27,,,,DISCHARGED -7592,2023-10-29,31326.76492035724,428,Urgent,2023-11-19,Normal,7592,33,3,9,,,,DISCHARGED -7593,2019-01-14,29273.413310825053,124,Urgent,2019-01-29,Inconclusive,7593,140,1,12,,,,DISCHARGED -7594,2023-07-14,40373.17216182071,486,Urgent,,Normal,7594,426,1,29,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,OPEN -7595,2019-03-17,32571.69215518851,151,Urgent,2019-03-28,Abnormal,7595,317,2,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7596,2020-01-16,15958.00361033491,228,Urgent,2020-02-06,Inconclusive,7596,373,0,2,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7597,2022-01-07,36780.56685612672,229,Emergency,2022-01-30,Abnormal,7597,220,1,21,,,,DISCHARGED -7599,2019-01-03,17547.573809900583,390,Elective,2019-01-10,Normal,7599,355,1,9,,,,DISCHARGED -7600,2021-07-26,47575.66853569025,269,Urgent,2021-08-12,Inconclusive,7600,21,2,10,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7601,2019-11-07,47043.76405765129,200,Elective,2019-12-05,Normal,7601,179,1,5,,,,DISCHARGED -7602,2021-07-14,2029.826589406668,423,Emergency,2021-07-31,Abnormal,7602,435,4,0,,,,DISCHARGED -7603,2019-01-22,40106.24816316746,173,Emergency,2019-02-13,Abnormal,7603,366,0,5,,,,DISCHARGED -7604,2023-06-17,18144.696741633557,317,Elective,,Inconclusive,7604,419,4,4,,,,OPEN -7605,2023-07-29,43330.42405321675,467,Elective,2023-08-13,Abnormal,7605,328,3,6,,,,DISCHARGED -7605,2020-07-01,23715.361937958616,362,Emergency,2020-07-26,Abnormal,9328,230,0,21,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7606,2019-04-17,35396.45494422474,303,Emergency,2019-04-22,Normal,7606,498,3,11,,,,DISCHARGED -7607,2021-09-24,10006.78652315574,412,Urgent,2021-10-21,Inconclusive,7607,402,1,11,,,,DISCHARGED -7608,2020-02-05,12395.468079593553,280,Emergency,2020-02-18,Abnormal,7608,37,2,6,,,,DISCHARGED -7610,2023-08-21,5590.3993575547765,181,Elective,,Normal,7610,69,4,1,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,OPEN -7611,2021-06-11,15900.065316128868,359,Emergency,2021-06-21,Abnormal,7611,115,3,27,,,,DISCHARGED -7612,2020-07-01,18268.8935760037,342,Elective,2020-07-10,Abnormal,7612,238,1,0,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7614,2020-07-28,8772.45086080625,432,Elective,2020-08-12,Normal,7614,334,4,29,,,,DISCHARGED -7615,2020-05-08,3156.8184330689965,324,Urgent,2020-05-11,Normal,7615,440,4,22,,,,DISCHARGED -7616,2022-04-27,4499.8866998457215,197,Elective,2022-05-06,Abnormal,7616,147,3,24,,,,DISCHARGED -7617,2021-01-02,21748.6189773504,436,Elective,2021-01-30,Normal,7617,8,1,17,,,,DISCHARGED -7618,2021-01-22,12553.923219262631,411,Elective,2021-01-28,Abnormal,7618,287,2,11,,,,DISCHARGED -7619,2019-05-25,21509.15069415214,254,Emergency,2019-06-02,Abnormal,7619,387,3,6,,,,DISCHARGED -7620,2021-10-12,31995.64562501236,147,Elective,2021-10-18,Abnormal,7620,49,4,18,,,,DISCHARGED -7621,2020-08-31,45123.65092597917,261,Elective,2020-09-27,Normal,7621,337,4,21,,,,DISCHARGED -7622,2020-08-03,5779.592656388444,180,Elective,2020-08-30,Inconclusive,7622,4,0,2,,,,DISCHARGED -7623,2018-11-18,47714.51195701646,389,Urgent,2018-12-02,Inconclusive,7623,403,1,28,,,,DISCHARGED -7624,2020-10-08,5982.688136972958,266,Emergency,2020-11-02,Inconclusive,7624,342,0,9,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -7626,2022-03-23,13793.092940101482,152,Elective,2022-04-13,Inconclusive,7626,125,2,28,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7628,2018-12-27,19752.10009010144,425,Elective,2019-01-16,Inconclusive,7628,74,3,26,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7629,2020-11-22,14842.790025218645,459,Emergency,2020-11-27,Normal,7629,164,4,26,,,,DISCHARGED -7630,2020-10-19,19346.38549114672,243,Emergency,2020-11-03,Abnormal,7630,277,1,10,,,,DISCHARGED -7631,2018-10-31,18142.84307737513,255,Elective,2018-11-13,Abnormal,7631,441,4,4,,,,DISCHARGED -7632,2019-04-14,2677.185352127938,467,Emergency,2019-05-04,Normal,7632,323,0,1,,,,DISCHARGED -7633,2022-08-10,31204.62311944347,374,Emergency,2022-08-17,Abnormal,7633,476,0,7,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7634,2021-10-02,30856.406894235894,355,Elective,2021-10-22,Inconclusive,7634,299,3,13,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7635,2021-07-14,35174.45573061164,354,Emergency,2021-07-31,Abnormal,7635,289,1,7,,,,DISCHARGED -7636,2020-03-21,11424.81216709894,251,Elective,2020-04-19,Normal,7636,76,1,22,,,,DISCHARGED -7637,2019-03-18,21781.87716637204,137,Urgent,2019-04-12,Inconclusive,7637,297,3,5,,,,DISCHARGED -7639,2021-08-01,29292.163626148085,225,Emergency,2021-08-05,Abnormal,7639,136,0,0,,,,DISCHARGED -7640,2020-01-10,36182.90739086442,188,Elective,2020-01-14,Normal,7640,105,0,23,,,,DISCHARGED -7641,2020-02-19,46643.84023934264,204,Urgent,2020-03-05,Normal,7641,94,0,0,,,,DISCHARGED -7643,2022-03-17,12313.508623174104,171,Urgent,2022-04-09,Inconclusive,7643,134,4,7,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -7644,2023-01-06,38216.06919943145,134,Elective,,Normal,7644,67,2,10,,,,OPEN -7645,2022-05-28,17577.232673794424,328,Urgent,2022-06-14,Normal,7645,146,0,17,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -7646,2023-08-17,45446.40306876984,242,Elective,,Inconclusive,7646,489,2,23,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -7647,2020-08-28,32427.11276252716,156,Urgent,2020-09-27,Normal,7647,477,2,9,,,,DISCHARGED -7648,2021-03-31,22482.39614793812,499,Elective,2021-04-18,Inconclusive,7648,158,1,11,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7649,2018-11-18,43402.96492054654,123,Elective,2018-12-01,Normal,7649,383,3,19,,,,DISCHARGED -7650,2021-11-23,13420.958480220388,482,Elective,2021-11-26,Inconclusive,7650,162,4,22,,,,DISCHARGED -7651,2022-04-13,31311.424660852867,230,Urgent,2022-05-01,Inconclusive,7651,440,2,15,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7652,2020-02-19,3158.890263988276,481,Emergency,2020-02-27,Inconclusive,7652,340,4,4,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -7653,2023-09-21,23191.689107501123,194,Elective,2023-10-08,Abnormal,7653,188,1,15,,,,DISCHARGED -7654,2019-04-13,22181.91768147275,370,Elective,2019-05-05,Abnormal,7654,414,0,23,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7655,2021-05-02,29628.535062676077,105,Elective,2021-05-25,Normal,7655,338,2,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -7656,2019-04-27,28297.49309566936,172,Urgent,2019-05-22,Inconclusive,7656,94,3,5,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7657,2023-02-18,49853.500988004256,481,Elective,,Normal,7657,180,1,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -7659,2023-03-21,43318.943901710736,470,Urgent,,Abnormal,7659,287,4,4,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -7660,2020-11-15,4148.220930134432,199,Elective,2020-11-19,Normal,7660,321,0,0,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7661,2021-02-08,28288.43592212357,361,Elective,2021-02-22,Abnormal,7661,186,4,18,,,,DISCHARGED -7662,2022-10-30,17687.931585270235,408,Urgent,2022-11-28,Inconclusive,7662,371,3,9,,,,DISCHARGED -7663,2022-10-07,34805.203241882395,184,Elective,2022-10-14,Normal,7663,137,2,24,,,,DISCHARGED -7664,2021-10-19,10183.782288769242,272,Emergency,2021-10-29,Inconclusive,7664,129,3,13,,,,DISCHARGED -7665,2021-05-09,11981.494931619198,176,Urgent,2021-06-02,Abnormal,7665,193,4,24,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7666,2023-06-10,6935.345564503594,337,Emergency,2023-06-16,Abnormal,7666,315,4,20,,,,DISCHARGED -7667,2022-02-01,37877.60797099058,280,Elective,2022-02-21,Abnormal,7667,471,3,2,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7668,2019-10-01,48362.3539628386,117,Emergency,2019-10-04,Abnormal,7668,272,3,5,,,,DISCHARGED -7669,2020-09-02,35698.37153851072,221,Emergency,2020-09-13,Abnormal,7669,351,3,4,,,,DISCHARGED -7671,2021-08-25,12745.443238021262,308,Urgent,2021-09-19,Abnormal,7671,143,0,16,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7672,2021-09-22,1862.8311249810265,414,Urgent,2021-10-05,Inconclusive,7672,15,4,17,,,,DISCHARGED -7673,2023-01-02,40888.37822861642,179,Elective,,Normal,7673,301,1,11,,,,OPEN -7674,2020-10-01,14978.26711171732,174,Emergency,2020-10-15,Normal,7674,422,0,4,,,,DISCHARGED -7675,2020-07-09,7192.006776039567,412,Urgent,2020-07-21,Inconclusive,7675,244,0,29,,,,DISCHARGED -7676,2020-01-11,45775.03619804968,127,Elective,2020-02-02,Abnormal,7676,414,0,8,,,,DISCHARGED -7677,2020-12-22,34233.9483511713,131,Elective,2021-01-01,Inconclusive,7677,106,1,11,,,,DISCHARGED -7678,2020-02-08,9006.068513154656,112,Urgent,2020-02-19,Inconclusive,7678,87,3,19,,,,DISCHARGED -7679,2020-08-25,22873.510387314516,129,Urgent,2020-09-24,Normal,7679,128,4,8,,,,DISCHARGED -7680,2023-09-30,44376.65774673086,374,Elective,,Abnormal,7680,394,2,2,,,,OPEN -7681,2022-11-21,13875.388597989107,429,Urgent,2022-11-23,Abnormal,7681,374,2,0,,,,DISCHARGED -7682,2019-05-14,18781.242067348667,278,Elective,2019-05-15,Normal,7682,340,4,21,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7683,2020-04-08,25782.120305549048,330,Elective,2020-04-17,Normal,7683,3,1,14,,,,DISCHARGED -7684,2023-08-27,15593.845440778265,268,Urgent,,Normal,7684,326,2,9,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,OPEN -7685,2019-12-26,27050.273411943308,104,Urgent,2020-01-22,Inconclusive,7685,409,0,13,,,,DISCHARGED -7685,2019-03-08,31419.259785053164,339,Emergency,2019-03-19,Normal,9379,366,2,6,,,,DISCHARGED -7686,2023-02-06,4454.4955768808895,493,Elective,2023-02-14,Normal,7686,305,4,3,,,,DISCHARGED -7687,2022-01-11,45038.43045134747,298,Elective,2022-01-18,Inconclusive,7687,395,0,25,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7688,2020-09-10,39694.167419873535,133,Elective,2020-09-29,Inconclusive,7688,94,2,4,,,,DISCHARGED -7689,2020-01-26,35637.27706068588,306,Elective,2020-02-11,Inconclusive,7689,208,4,19,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7689,2021-08-07,22519.030419525014,302,Emergency,2021-08-25,Abnormal,7757,224,1,15,,,,DISCHARGED -7689,2021-06-12,37290.977520786975,250,Emergency,2021-06-30,Inconclusive,9214,458,4,2,,,,DISCHARGED -7690,2019-11-26,4529.550047294355,204,Elective,2019-12-09,Inconclusive,7690,347,1,16,,,,DISCHARGED -7691,2021-12-06,28524.851709465114,208,Urgent,2022-01-04,Normal,7691,479,0,12,,,,DISCHARGED -7692,2021-09-09,37546.11006387198,330,Emergency,2021-09-30,Abnormal,7692,320,4,5,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -7693,2019-01-15,33574.607661775735,295,Elective,2019-01-27,Normal,7693,46,3,25,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7694,2020-05-16,16789.952494847894,336,Emergency,2020-06-04,Inconclusive,7694,475,3,4,,,,DISCHARGED -7695,2023-04-25,22428.317361134337,179,Emergency,,Abnormal,7695,180,3,15,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -7696,2020-08-23,27342.039211629948,407,Elective,2020-09-19,Abnormal,7696,105,3,10,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7697,2019-11-15,35750.66688616853,455,Elective,2019-11-27,Normal,7697,198,3,16,,,,DISCHARGED -7698,2021-08-05,46208.3365541836,363,Urgent,2021-08-08,Inconclusive,7698,385,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7699,2021-04-20,46762.16940929933,407,Elective,2021-04-25,Abnormal,7699,105,4,5,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7700,2022-01-06,45302.95974356179,274,Elective,2022-01-15,Normal,7700,279,0,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -7701,2019-01-06,22412.16837033752,252,Emergency,2019-02-05,Inconclusive,7701,259,3,20,,,,DISCHARGED -7702,2023-03-08,39989.319058238354,314,Elective,2023-04-07,Normal,7702,107,3,0,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7703,2019-02-06,44495.658182367406,272,Urgent,2019-02-27,Abnormal,7703,18,0,29,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7704,2022-03-20,2049.218709825745,203,Elective,2022-03-27,Inconclusive,7704,409,0,20,,,,DISCHARGED -7705,2020-12-07,43091.60946423059,218,Urgent,2020-12-26,Normal,7705,458,3,9,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7706,2019-06-06,6713.31103783384,105,Elective,2019-06-22,Normal,7706,295,1,16,,,,DISCHARGED -7707,2023-09-03,5368.3604993887375,123,Emergency,2023-09-26,Normal,7707,305,0,26,,,,DISCHARGED -7707,2022-07-11,47531.80857876352,247,Urgent,2022-08-04,Inconclusive,7780,170,4,2,,,,DISCHARGED -7708,2023-06-27,30732.68742238442,409,Urgent,2023-07-20,Inconclusive,7708,330,4,27,,,,DISCHARGED -7709,2018-12-07,6958.629020585729,437,Elective,2018-12-16,Abnormal,7709,492,1,28,,,,DISCHARGED -7710,2018-11-29,18551.501874,293,Elective,2018-12-05,Normal,7710,194,2,1,,,,DISCHARGED -7711,2020-05-28,46278.79613850746,416,Elective,2020-06-25,Abnormal,7711,11,1,28,,,,DISCHARGED -7712,2020-02-17,15163.33802539704,488,Emergency,2020-03-03,Abnormal,7712,194,3,16,,,,DISCHARGED -7713,2020-10-29,37849.93139457389,455,Emergency,2020-11-19,Inconclusive,7713,489,2,3,,,,DISCHARGED -7714,2021-11-03,49746.207799581374,188,Elective,2021-11-09,Inconclusive,7714,282,3,1,,,,DISCHARGED -7716,2021-11-22,7440.760707896285,317,Emergency,2021-12-02,Abnormal,7716,368,4,4,,,,DISCHARGED -7717,2020-05-06,38389.39250726174,264,Urgent,2020-06-02,Inconclusive,7717,181,0,9,,,,DISCHARGED -7718,2020-05-25,8376.578094819706,228,Elective,2020-06-02,Abnormal,7718,449,3,0,,,,DISCHARGED -7719,2021-05-26,10199.247755534712,196,Elective,2021-06-11,Normal,7719,304,4,27,,,,DISCHARGED -7720,2022-04-29,4033.098229763275,235,Elective,2022-05-03,Inconclusive,7720,143,1,25,,,,DISCHARGED -7721,2021-10-06,18774.383817861653,207,Elective,2021-10-24,Inconclusive,7721,385,3,0,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7722,2021-05-05,3509.5569278122102,235,Urgent,2021-05-23,Normal,7722,315,4,26,,,,DISCHARGED -7723,2019-12-28,39276.88198910996,395,Elective,2019-12-29,Inconclusive,7723,181,0,25,,,,DISCHARGED -7724,2020-04-04,43134.09555725192,492,Emergency,2020-04-13,Abnormal,7724,29,3,3,,,,DISCHARGED -7725,2021-11-08,23209.654228541734,444,Urgent,2021-11-29,Abnormal,7725,83,4,6,,,,DISCHARGED -7726,2021-11-29,6120.775741440538,122,Urgent,2021-12-23,Inconclusive,7726,165,3,13,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7727,2020-05-05,4414.295160830624,351,Urgent,2020-05-08,Abnormal,7727,283,0,13,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -7728,2018-12-14,48048.84834294605,149,Urgent,2019-01-07,Abnormal,7728,280,3,17,,,,DISCHARGED -7729,2022-01-06,26125.131725791376,498,Urgent,2022-01-20,Inconclusive,7729,95,3,1,,,,DISCHARGED -7730,2022-09-07,41633.44106869959,364,Emergency,2022-09-15,Inconclusive,7730,380,4,0,,,,DISCHARGED -7731,2021-11-30,32083.661556473835,445,Urgent,2021-12-19,Abnormal,7731,265,2,20,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7732,2023-08-03,6743.503122315439,399,Urgent,2023-08-16,Inconclusive,7732,443,3,21,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7733,2020-10-30,48013.30131520327,153,Urgent,2020-11-04,Normal,7733,297,2,15,,,,DISCHARGED -7734,2023-04-20,40008.78406934922,282,Urgent,2023-05-12,Inconclusive,7734,295,1,28,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7735,2021-01-16,34303.92416623917,330,Elective,2021-01-28,Inconclusive,7735,224,3,21,,,,DISCHARGED -7735,2023-01-28,25298.17609805868,353,Urgent,2023-02-03,Normal,9212,332,2,17,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -7736,2021-03-17,36799.57315370416,273,Elective,2021-04-05,Inconclusive,7736,360,1,15,,,,DISCHARGED -7737,2022-02-21,2806.840574850862,241,Urgent,2022-02-25,Abnormal,7737,373,4,27,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7738,2022-06-27,2370.414645186479,390,Elective,2022-07-24,Inconclusive,7738,41,3,27,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7739,2019-12-04,18941.661255241022,109,Elective,2019-12-15,Normal,7739,302,4,22,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -7741,2023-01-13,1572.8415334497367,378,Urgent,2023-02-08,Inconclusive,7741,420,1,21,,,,DISCHARGED -7742,2019-10-21,25262.709104199024,282,Emergency,2019-11-12,Inconclusive,7742,245,4,23,,,,DISCHARGED -7743,2019-06-07,15814.965379643949,147,Elective,2019-07-06,Inconclusive,7743,207,4,5,,,,DISCHARGED -7744,2020-04-14,31251.02139876768,190,Emergency,2020-04-17,Normal,7744,236,0,24,,,,DISCHARGED -7746,2022-03-21,9835.44968867658,234,Elective,2022-04-05,Inconclusive,7746,21,1,9,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -7748,2020-02-17,8291.457868706462,308,Elective,2020-03-02,Normal,7748,184,4,1,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -7749,2020-01-11,32133.792653107103,495,Emergency,2020-01-27,Abnormal,7749,467,2,6,,,,DISCHARGED -7750,2023-05-14,4474.830761342988,265,Urgent,,Normal,7750,241,1,20,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",OPEN -7751,2018-11-06,47415.90555368184,273,Emergency,2018-11-09,Inconclusive,7751,362,0,16,,,,DISCHARGED -7752,2021-06-15,24805.5707409932,290,Urgent,2021-06-27,Normal,7752,282,3,2,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7754,2019-11-21,48063.80210654905,299,Urgent,2019-12-09,Abnormal,7754,40,4,19,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7755,2023-09-20,31377.65713478639,284,Urgent,,Normal,7755,335,2,11,,,,OPEN -7756,2022-10-01,4474.671264229802,435,Elective,2022-10-29,Normal,7756,161,0,1,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7758,2020-05-05,41695.49895379978,211,Urgent,2020-05-25,Normal,7758,159,1,6,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7759,2021-06-03,1945.5584042267517,478,Emergency,2021-06-23,Inconclusive,7759,473,4,16,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -7760,2023-02-12,36797.65183415827,265,Elective,2023-03-03,Inconclusive,7760,88,0,18,,,,DISCHARGED -7762,2020-11-18,21860.784994617545,171,Urgent,2020-12-03,Normal,7762,321,0,11,,,,DISCHARGED -7763,2021-01-12,11055.393569204623,409,Emergency,2021-01-30,Normal,7763,11,2,8,,,,DISCHARGED -7764,2020-09-03,38922.33376671378,178,Elective,2020-09-07,Abnormal,7764,423,3,26,,,,DISCHARGED -7765,2020-04-19,41141.59632068442,242,Elective,2020-05-09,Abnormal,7765,72,3,13,,,,DISCHARGED -7766,2022-11-06,9840.099003880285,433,Urgent,2022-11-29,Normal,7766,75,3,1,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7767,2023-05-15,31868.45078500088,118,Elective,2023-05-27,Inconclusive,7767,345,1,20,,,,DISCHARGED -7768,2022-08-09,29081.35570175221,405,Emergency,2022-08-14,Abnormal,7768,200,0,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -7768,2020-03-12,37776.91749843912,313,Emergency,2020-03-15,Normal,9361,9,1,27,,,,DISCHARGED -7769,2022-03-04,16308.114029146824,198,Emergency,2022-03-20,Normal,7769,351,0,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -7771,2019-08-31,39612.239526898586,441,Emergency,2019-09-30,Inconclusive,7771,225,2,20,,,,DISCHARGED -7772,2021-06-16,10491.40516226454,275,Elective,2021-06-22,Abnormal,7772,175,2,15,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -7773,2019-07-07,22748.22060244582,353,Emergency,2019-07-19,Inconclusive,7773,275,1,21,,,,DISCHARGED -7774,2023-05-03,36415.528481924746,499,Emergency,,Abnormal,7774,38,1,16,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,OPEN -7775,2023-06-09,24936.44578934288,458,Urgent,2023-07-08,Inconclusive,7775,59,2,1,,,,DISCHARGED -7776,2019-11-23,11959.769398229046,161,Emergency,2019-12-03,Normal,7776,65,4,16,,,,DISCHARGED -7778,2021-05-07,10487.56903793358,301,Urgent,2021-05-10,Normal,7778,320,3,18,,,,DISCHARGED -7781,2019-04-22,22371.753733155776,161,Elective,2019-05-01,Inconclusive,7781,434,3,7,,,,DISCHARGED -7782,2021-10-16,32569.824969369205,464,Urgent,2021-10-17,Inconclusive,7782,123,2,23,,,,DISCHARGED -7783,2021-07-11,33361.98400499496,144,Urgent,2021-08-04,Abnormal,7783,163,3,19,,,,DISCHARGED -7784,2021-04-23,14142.877526157072,418,Emergency,2021-04-30,Inconclusive,7784,407,4,5,,,,DISCHARGED -7786,2021-09-12,42943.96369664044,236,Urgent,2021-09-16,Abnormal,7786,410,4,11,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7787,2020-03-17,10197.548363160871,127,Elective,2020-03-25,Inconclusive,7787,385,0,24,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -7789,2020-03-05,5479.926031800201,256,Urgent,2020-03-30,Normal,7789,158,1,29,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7790,2021-08-06,6134.895820650226,201,Emergency,2021-08-28,Normal,7790,56,3,22,,,,DISCHARGED -7791,2023-03-31,43701.6616833722,244,Urgent,,Inconclusive,7791,77,4,17,,,,OPEN -7793,2021-11-30,44912.76481054358,464,Emergency,2021-12-01,Inconclusive,7793,193,1,26,,,,DISCHARGED -7794,2021-09-05,24029.882379408908,261,Emergency,2021-09-28,Inconclusive,7794,284,1,1,,,,DISCHARGED -7795,2018-12-31,40492.89057419783,433,Elective,2019-01-24,Abnormal,7795,14,0,18,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7796,2020-06-30,23416.974473249025,316,Emergency,2020-07-19,Abnormal,7796,11,1,23,,,,DISCHARGED -7797,2019-05-23,23615.1733470237,400,Elective,2019-05-30,Normal,7797,100,1,9,,,,DISCHARGED -7798,2019-09-20,19089.380809571678,245,Elective,2019-09-28,Abnormal,7798,155,2,24,,,,DISCHARGED -7799,2022-05-26,3627.179428308804,121,Elective,2022-06-21,Normal,7799,339,0,28,,,,DISCHARGED -7800,2019-08-02,46310.72667247677,453,Elective,2019-08-30,Abnormal,7800,124,0,29,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7801,2019-04-21,29847.71025219188,182,Elective,2019-05-08,Normal,7801,358,3,2,,,,DISCHARGED -7803,2020-07-05,27136.63519447968,396,Elective,2020-08-04,Inconclusive,7803,279,1,24,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -7804,2020-06-24,34764.97782240485,218,Emergency,2020-07-08,Abnormal,7804,404,3,27,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -7805,2019-01-18,20050.02566531668,186,Urgent,2019-01-31,Normal,7805,393,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7806,2019-06-28,38358.70144422049,339,Emergency,2019-07-09,Normal,7806,109,1,25,,,,DISCHARGED -7807,2021-03-30,11959.715790548446,440,Emergency,2021-04-22,Abnormal,7807,333,4,15,,,,DISCHARGED -7808,2022-09-17,45265.01644275665,430,Elective,2022-09-25,Normal,7808,356,2,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -7809,2022-11-11,42201.90733298428,290,Emergency,2022-12-03,Inconclusive,7809,145,1,7,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -7809,2022-06-06,42781.11037144584,103,Elective,2022-07-06,Abnormal,8492,215,3,4,,,,DISCHARGED -7810,2020-11-24,6895.3029667210885,427,Emergency,2020-11-27,Inconclusive,7810,397,3,10,,,,DISCHARGED -7811,2023-06-24,14460.233216944822,189,Elective,2023-07-03,Inconclusive,7811,161,1,9,,,,DISCHARGED -7812,2020-06-09,32017.27268000004,403,Urgent,2020-07-08,Abnormal,7812,127,3,2,,,,DISCHARGED -7813,2022-06-05,45443.92086452643,417,Emergency,2022-06-13,Abnormal,7813,313,1,26,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7814,2019-12-07,31611.80425783832,137,Elective,2019-12-27,Normal,7814,331,0,22,,,,DISCHARGED -7815,2020-08-29,3247.818886508557,311,Urgent,2020-09-14,Abnormal,7815,149,3,8,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -7816,2021-01-15,7521.617747171937,450,Elective,2021-02-09,Abnormal,7816,453,1,11,,,,DISCHARGED -7817,2022-11-05,37040.63460571891,358,Elective,2022-12-01,Normal,7817,35,1,5,,,,DISCHARGED -7818,2023-08-05,37153.40059667414,440,Elective,,Normal,7818,172,3,18,,,,OPEN -7819,2019-12-24,40029.7656255471,346,Emergency,2020-01-11,Inconclusive,7819,419,0,15,,,,DISCHARGED -7820,2023-06-11,9799.417230085248,267,Emergency,2023-07-10,Inconclusive,7820,21,3,20,,,,DISCHARGED -7821,2021-09-05,14757.795134815808,169,Elective,2021-09-06,Inconclusive,7821,205,1,22,,,,DISCHARGED -7822,2021-03-20,24024.574530482365,300,Urgent,2021-04-08,Normal,7822,126,0,23,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7823,2023-10-24,23314.307677866524,176,Elective,2023-10-31,Abnormal,7823,335,4,28,,,,DISCHARGED -7824,2020-04-14,24101.762141812545,449,Urgent,2020-04-26,Normal,7824,444,2,13,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7825,2020-02-02,24493.36628645637,260,Emergency,2020-03-03,Abnormal,7825,355,3,27,,,,DISCHARGED -7826,2022-10-20,12867.171447839715,213,Emergency,2022-10-29,Abnormal,7826,439,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -7828,2021-12-26,25193.63857168861,312,Urgent,2022-01-06,Normal,7828,216,0,17,,,,DISCHARGED -7829,2022-12-26,13210.92704386586,276,Urgent,2023-01-11,Abnormal,7829,95,0,9,,,,DISCHARGED -7830,2021-12-28,14146.195209196232,174,Emergency,2022-01-17,Inconclusive,7830,416,4,17,,,,DISCHARGED -7831,2021-08-10,40044.59129563626,140,Emergency,2021-08-21,Normal,7831,428,3,11,,,,DISCHARGED -7832,2019-01-16,31476.721721113565,107,Urgent,2019-02-11,Inconclusive,7832,163,0,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7833,2021-06-30,49885.4061939152,267,Urgent,2021-07-07,Normal,7833,147,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7834,2020-03-30,29785.708241143693,408,Urgent,2020-04-11,Abnormal,7834,17,1,0,,,,DISCHARGED -7835,2019-06-20,24424.9908269495,468,Urgent,2019-07-01,Normal,7835,293,4,13,,,,DISCHARGED -7837,2021-03-03,21010.455467362124,457,Elective,2021-03-14,Inconclusive,7837,194,3,22,,,,DISCHARGED -7838,2020-05-13,5541.565143164122,439,Elective,2020-05-16,Inconclusive,7838,150,4,5,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7839,2019-09-17,4400.285337338293,360,Emergency,2019-09-24,Abnormal,7839,479,0,13,,,,DISCHARGED -7840,2021-10-09,8261.04108859116,221,Elective,2021-10-21,Inconclusive,7840,364,0,1,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7841,2022-09-24,20226.430212594725,191,Urgent,2022-10-15,Normal,7841,122,2,8,,,,DISCHARGED -7843,2019-03-15,18427.96489198603,203,Elective,2019-04-09,Abnormal,7843,399,4,28,,,,DISCHARGED -7844,2023-09-07,42273.50095150334,404,Urgent,,Normal,7844,186,1,11,,,,OPEN -7845,2019-01-05,7553.50788964731,293,Emergency,2019-01-07,Normal,7845,452,3,4,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -7846,2022-04-09,30468.48710831845,243,Elective,2022-05-08,Inconclusive,7846,451,2,1,,,,DISCHARGED -7847,2022-12-08,5271.526491397599,479,Elective,2022-12-20,Inconclusive,7847,148,4,18,,,,DISCHARGED -7848,2022-11-18,2368.700722196308,395,Urgent,2022-12-07,Inconclusive,7848,103,1,6,,,,DISCHARGED -7849,2021-04-25,35842.414845888976,257,Emergency,2021-05-12,Inconclusive,7849,242,2,6,,,,DISCHARGED -7850,2020-05-23,2133.698601160449,484,Elective,2020-06-15,Abnormal,7850,461,0,9,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -7851,2023-03-24,25801.98340341388,244,Urgent,,Abnormal,7851,230,3,16,,,,OPEN -7852,2019-11-17,20773.26561932548,315,Urgent,2019-12-09,Abnormal,7852,478,4,25,,,,DISCHARGED -7853,2021-07-07,46520.26173993712,230,Elective,2021-08-02,Abnormal,7853,205,1,13,,,,DISCHARGED -7854,2022-03-15,6236.53487186241,429,Urgent,2022-04-14,Normal,7854,197,0,26,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7855,2021-10-02,6483.941456539704,257,Elective,2021-10-17,Abnormal,7855,395,2,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -7856,2023-02-10,34309.73457970126,273,Elective,2023-02-14,Abnormal,7856,399,3,27,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7857,2021-11-24,38692.579492860685,499,Emergency,2021-12-11,Inconclusive,7857,336,2,19,,,,DISCHARGED -7858,2022-09-10,49715.26453946666,423,Elective,2022-10-06,Normal,7858,492,2,5,,,,DISCHARGED -7859,2018-11-24,15407.96433079085,122,Urgent,2018-12-16,Inconclusive,7859,86,1,7,,,,DISCHARGED -7861,2019-05-04,33534.25583530908,262,Emergency,2019-05-21,Inconclusive,7861,141,0,18,,,,DISCHARGED -7862,2023-06-20,8079.253951961806,179,Elective,,Inconclusive,7862,316,4,29,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7863,2022-07-06,20179.55494060116,441,Elective,2022-07-16,Normal,7863,198,1,18,,,,DISCHARGED -7865,2021-07-25,45721.04351555346,339,Elective,2021-08-16,Normal,7865,45,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7866,2023-10-01,34844.047491746926,234,Emergency,2023-10-02,Normal,7866,287,2,23,,,,DISCHARGED -7867,2019-02-25,33842.457246643164,113,Urgent,2019-03-04,Inconclusive,7867,14,3,23,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7868,2019-09-27,32362.406429892988,286,Emergency,2019-10-03,Normal,7868,43,1,16,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7869,2022-02-18,17609.2901067118,164,Emergency,2022-02-26,Inconclusive,7869,400,1,23,,,,DISCHARGED -7870,2021-09-29,37929.15799729977,222,Urgent,2021-10-20,Normal,7870,168,4,23,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7871,2022-10-14,16102.415539445275,500,Elective,2022-10-15,Abnormal,7871,309,2,17,,,,DISCHARGED -7872,2022-10-01,10726.744848153305,118,Elective,2022-10-08,Abnormal,7872,494,1,11,,,,DISCHARGED -7873,2022-07-12,1704.480241031892,192,Elective,2022-08-06,Normal,7873,43,3,8,,,,DISCHARGED -7874,2020-09-17,36273.54520730225,208,Elective,2020-10-13,Normal,7874,97,4,22,,,,DISCHARGED -7875,2021-03-13,2042.608388212213,214,Elective,2021-04-12,Inconclusive,7875,260,3,23,,,,DISCHARGED -7876,2021-01-15,4505.2774209551935,410,Urgent,2021-01-21,Inconclusive,7876,108,2,15,,,,DISCHARGED -7877,2021-01-16,16536.666679728813,101,Emergency,2021-02-09,Inconclusive,7877,282,4,17,,,,DISCHARGED -7878,2023-02-08,1954.7285284503505,417,Emergency,2023-03-06,Normal,7878,371,4,15,,,,DISCHARGED -7879,2021-03-09,10716.56503761419,394,Emergency,2021-03-18,Normal,7879,342,4,15,,,,DISCHARGED -7880,2022-12-25,46483.87360757595,322,Emergency,2022-12-27,Abnormal,7880,103,0,3,,,,DISCHARGED -7881,2020-04-27,17572.34257507783,179,Elective,2020-05-03,Normal,7881,255,4,22,,,,DISCHARGED -7882,2020-11-12,40976.08942886659,265,Elective,2020-11-19,Abnormal,7882,378,3,21,,,,DISCHARGED -7883,2023-08-24,30800.86619773728,424,Urgent,2023-09-21,Inconclusive,7883,205,3,6,,,,DISCHARGED -7884,2020-11-30,23959.36171982866,414,Elective,2020-12-06,Abnormal,7884,334,2,0,,,,DISCHARGED -7885,2021-11-19,13511.72328178813,183,Emergency,2021-11-30,Normal,7885,42,1,23,,,,DISCHARGED -7886,2023-04-11,31141.452383221167,357,Emergency,2023-05-06,Abnormal,7886,352,1,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7887,2023-08-17,3455.5464277487595,329,Urgent,2023-08-26,Normal,7887,244,0,22,,,,DISCHARGED -7888,2020-06-15,33770.298323908464,227,Urgent,2020-07-09,Abnormal,7888,286,4,28,,,,DISCHARGED -7889,2023-01-17,14419.957166055648,387,Emergency,2023-01-18,Inconclusive,7889,354,0,19,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7890,2023-01-06,39743.38481979622,405,Elective,2023-01-07,Normal,7890,272,2,0,,,,DISCHARGED -7891,2019-04-24,9056.11036796189,277,Urgent,2019-05-02,Abnormal,7891,475,2,7,,,,DISCHARGED -7892,2021-03-30,16645.254196291266,247,Elective,2021-04-27,Abnormal,7892,82,1,25,,,,DISCHARGED -7893,2019-01-05,32763.32794025565,196,Urgent,2019-01-08,Inconclusive,7893,109,2,22,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7894,2019-09-27,37532.9870148227,251,Urgent,2019-10-21,Normal,7894,437,4,7,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -7895,2019-09-21,31147.01871956208,124,Elective,2019-09-26,Inconclusive,7895,189,3,9,,,,DISCHARGED -7896,2021-01-09,38828.5649058704,346,Urgent,2021-01-13,Inconclusive,7896,470,2,0,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7897,2021-08-19,7136.77653246491,478,Elective,2021-08-20,Abnormal,7897,287,0,20,,,,DISCHARGED -7898,2018-12-31,25049.791327162555,358,Urgent,2019-01-04,Inconclusive,7898,423,4,24,,,,DISCHARGED -7899,2021-12-12,8612.9581220524,323,Elective,2021-12-30,Inconclusive,7899,396,2,20,,,,DISCHARGED -7900,2021-06-24,43370.39587486161,197,Urgent,2021-06-25,Inconclusive,7900,250,2,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7901,2021-08-10,13133.514334257978,127,Urgent,2021-08-29,Normal,7901,211,4,13,,,,DISCHARGED -7902,2022-11-30,28890.320561252756,467,Emergency,2022-12-11,Inconclusive,7902,290,2,13,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7903,2021-10-17,13872.230802670872,420,Emergency,2021-10-22,Abnormal,7903,132,3,9,,,,DISCHARGED -7904,2019-11-20,9771.778448210434,356,Emergency,2019-12-05,Abnormal,7904,200,1,27,,,,DISCHARGED -7905,2023-07-26,23655.90092030198,394,Emergency,2023-08-07,Inconclusive,7905,284,4,18,,,,DISCHARGED -7906,2020-03-15,16735.599193249585,295,Elective,2020-04-04,Inconclusive,7906,325,0,24,,,,DISCHARGED -7907,2020-02-13,28163.491270007355,299,Urgent,2020-02-19,Inconclusive,7907,408,2,28,,,,DISCHARGED -7908,2019-01-02,26446.13896969572,317,Emergency,2019-01-26,Abnormal,7908,94,1,15,,,,DISCHARGED -7909,2020-05-06,29523.8450385338,468,Emergency,2020-05-08,Normal,7909,277,0,8,,,,DISCHARGED -7910,2022-03-26,28551.288189323288,205,Elective,2022-04-12,Normal,7910,449,0,19,,,,DISCHARGED -7911,2021-02-06,35122.48348027565,173,Urgent,2021-03-06,Normal,7911,428,3,15,,,,DISCHARGED -7912,2021-04-15,27526.40595488985,413,Urgent,2021-05-08,Inconclusive,7912,324,1,19,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7914,2019-09-08,2136.711562218529,305,Urgent,2019-10-01,Inconclusive,7914,218,4,26,,,,DISCHARGED -7915,2021-12-17,24016.3313538022,327,Urgent,2021-12-22,Inconclusive,7915,88,1,7,,,,DISCHARGED -7916,2021-01-22,1902.1131216083488,136,Elective,2021-01-27,Abnormal,7916,71,1,6,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -7917,2021-11-28,14762.063716513072,186,Emergency,2021-12-11,Abnormal,7917,246,0,10,,,,DISCHARGED -7918,2020-03-11,11821.174189375522,237,Emergency,2020-03-29,Normal,7918,128,3,20,,,,DISCHARGED -7919,2018-12-12,28389.13161584998,440,Emergency,2019-01-08,Inconclusive,7919,211,3,5,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -7920,2023-03-27,15830.618866459588,117,Elective,2023-04-02,Normal,7920,427,1,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7921,2019-02-24,13296.347302606027,335,Urgent,2019-03-02,Abnormal,7921,342,1,18,,,,DISCHARGED -7921,2019-07-02,31866.124175432706,322,Elective,2019-07-16,Normal,8964,95,2,13,,,,DISCHARGED -7922,2022-06-14,8315.877633169357,157,Urgent,2022-07-10,Abnormal,7922,74,0,14,,,,DISCHARGED -7924,2021-07-06,46363.79689305256,460,Emergency,2021-07-27,Inconclusive,7924,422,4,5,,,,DISCHARGED -7925,2020-07-19,41955.41001462372,462,Urgent,2020-07-30,Abnormal,7925,494,4,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7926,2019-05-08,42565.01532080216,480,Urgent,2019-06-06,Abnormal,7926,53,3,23,,,,DISCHARGED -7926,2023-01-26,3708.014755954044,189,Elective,2023-02-23,Inconclusive,8315,343,0,9,,,,DISCHARGED -7927,2020-05-14,39685.56807450206,450,Urgent,2020-05-27,Normal,7927,458,3,13,,,,DISCHARGED -7928,2022-03-27,16878.05992028713,257,Emergency,2022-03-29,Normal,7928,412,4,15,,,,DISCHARGED -7929,2023-09-11,12826.466559755483,206,Elective,2023-10-05,Normal,7929,53,1,12,,,,DISCHARGED -7930,2022-06-30,47634.95678681968,468,Elective,2022-07-24,Inconclusive,7930,217,0,10,,,,DISCHARGED -7931,2018-12-15,49346.30429552528,223,Emergency,2019-01-07,Normal,7931,15,0,24,,,,DISCHARGED -7932,2020-05-27,3180.575344076771,330,Emergency,2020-06-14,Abnormal,7932,98,2,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -7933,2022-07-27,37881.29220145484,132,Urgent,2022-08-10,Inconclusive,7933,19,1,7,,,,DISCHARGED -7934,2022-12-26,27521.06037262449,195,Elective,2022-12-27,Abnormal,7934,45,1,27,,,,DISCHARGED -7936,2022-01-20,35304.09548678137,120,Emergency,2022-02-11,Normal,7936,450,3,2,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7937,2021-09-08,35247.61623416267,150,Emergency,2021-09-12,Abnormal,7937,192,0,1,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -7938,2018-12-15,17647.824014810394,465,Emergency,2019-01-07,Normal,7938,382,3,20,,,,DISCHARGED -7939,2023-02-06,33409.58085113268,483,Emergency,2023-02-09,Abnormal,7939,57,1,13,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7939,2022-09-24,21760.266228445307,260,Elective,2022-10-06,Normal,9265,436,2,19,,,,DISCHARGED -7940,2019-04-13,44605.10704855014,195,Urgent,2019-05-05,Inconclusive,7940,110,0,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7941,2019-11-30,9146.001745938682,448,Emergency,2019-12-10,Inconclusive,7941,128,1,20,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -7942,2019-08-23,35759.59793004762,430,Urgent,2019-09-13,Inconclusive,7942,336,2,21,,,,DISCHARGED -7943,2019-05-26,33019.01576878836,226,Emergency,2019-06-18,Abnormal,7943,193,4,14,,,,DISCHARGED -7944,2023-06-27,42133.651975696426,197,Urgent,2023-07-14,Inconclusive,7944,412,1,2,,,,DISCHARGED -7945,2019-10-25,20942.10431975059,433,Emergency,2019-11-19,Normal,7945,339,4,0,,,,DISCHARGED -7946,2022-09-02,6787.122071407948,333,Elective,2022-09-18,Normal,7946,325,3,14,,,,DISCHARGED -7947,2021-03-26,39731.90218474498,378,Emergency,2021-04-20,Inconclusive,7947,7,4,19,,,,DISCHARGED -7948,2019-01-10,49675.48297875196,475,Urgent,2019-01-28,Abnormal,7948,28,1,21,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -7952,2022-06-04,32894.35765823763,115,Elective,2022-06-22,Normal,7952,111,4,1,,,,DISCHARGED -7953,2023-07-28,18033.72680262501,295,Urgent,,Normal,7953,434,0,17,,,,OPEN -7954,2019-07-25,8408.620870595569,445,Emergency,2019-08-21,Normal,7954,160,1,0,,,,DISCHARGED -7955,2023-01-02,44487.59572380077,266,Emergency,,Abnormal,7955,130,2,8,,,,OPEN -7957,2020-04-27,4214.611851238462,473,Elective,2020-05-17,Inconclusive,7957,187,4,2,,,,DISCHARGED -7958,2019-01-05,2620.7427686378837,353,Urgent,2019-01-09,Normal,7958,162,0,1,,,,DISCHARGED -7959,2020-06-28,12385.737665048577,151,Urgent,2020-07-14,Abnormal,7959,196,3,3,,,,DISCHARGED -7960,2023-03-16,32917.84530749517,295,Emergency,2023-04-04,Normal,7960,474,3,15,,,,DISCHARGED -7961,2021-11-18,39381.61261074992,186,Elective,2021-11-21,Normal,7961,363,4,21,,,,DISCHARGED -7962,2021-06-23,32466.875185721023,400,Urgent,2021-07-05,Abnormal,7962,203,3,0,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -7963,2021-09-29,34824.572632110576,117,Emergency,2021-10-12,Abnormal,7963,211,2,8,,,,DISCHARGED -7964,2021-01-26,14791.407815936833,432,Elective,2021-02-07,Inconclusive,7964,108,1,24,,,,DISCHARGED -7966,2020-11-17,3390.355788072462,371,Emergency,2020-12-14,Abnormal,7966,275,0,7,,,,DISCHARGED -7967,2019-05-02,26932.975881030183,167,Emergency,2019-05-28,Abnormal,7967,72,4,5,,,,DISCHARGED -7968,2023-01-14,22977.04755013185,187,Emergency,,Inconclusive,7968,166,3,19,,,,OPEN -7969,2023-09-03,47034.5007084385,262,Elective,2023-09-23,Inconclusive,7969,259,1,17,,,,DISCHARGED -7970,2023-06-01,41943.39930023557,224,Emergency,2023-06-02,Abnormal,7970,242,2,15,,,,DISCHARGED -7971,2020-06-18,25717.903364204863,353,Urgent,2020-07-11,Inconclusive,7971,274,3,7,,,,DISCHARGED -7972,2019-04-14,29635.76863758357,209,Emergency,2019-04-18,Inconclusive,7972,101,3,22,,,,DISCHARGED -7973,2021-04-21,18011.6687619248,153,Emergency,2021-05-08,Abnormal,7973,474,0,27,,,,DISCHARGED -7974,2020-07-31,15380.864467483172,432,Urgent,2020-08-04,Inconclusive,7974,172,2,29,,,,DISCHARGED -7975,2023-01-20,24797.4275291282,404,Elective,2023-02-07,Normal,7975,170,2,3,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -7976,2022-02-04,26977.850157884208,203,Elective,2022-03-03,Inconclusive,7976,140,4,2,,,,DISCHARGED -7977,2020-07-16,14883.719365732752,180,Urgent,2020-08-08,Normal,7977,396,0,14,,,,DISCHARGED -7978,2021-07-20,17098.469362828666,446,Emergency,2021-07-24,Inconclusive,7978,187,4,5,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7979,2023-08-05,26584.38046797354,280,Emergency,,Normal,7979,440,0,0,,,,OPEN -7981,2023-09-01,48670.6485746654,414,Urgent,2023-09-09,Normal,7981,85,2,17,,,,DISCHARGED -7982,2020-03-17,11869.28365115142,203,Elective,2020-03-31,Inconclusive,7982,475,0,22,,,,DISCHARGED -7983,2021-02-07,4466.509870388432,314,Emergency,2021-02-12,Abnormal,7983,51,0,10,,,,DISCHARGED -7984,2020-12-19,13689.239045463744,440,Emergency,2021-01-09,Abnormal,7984,110,0,2,,,,DISCHARGED -7985,2021-12-23,36066.43015392841,250,Urgent,2022-01-09,Inconclusive,7985,436,1,29,,,,DISCHARGED -7986,2019-11-27,29769.69862572903,234,Emergency,2019-12-12,Inconclusive,7986,364,1,12,,,,DISCHARGED -7989,2021-07-25,35770.321186130815,320,Elective,2021-07-29,Normal,7989,341,2,16,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7990,2021-08-17,9299.230454822056,253,Urgent,2021-09-06,Inconclusive,7990,42,0,17,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -7991,2021-02-07,23677.85046968515,357,Urgent,2021-02-14,Abnormal,7991,210,2,25,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7991,2020-11-28,36026.93518906284,440,Urgent,2020-12-26,Normal,8163,455,1,25,,,,DISCHARGED -7993,2020-09-18,9366.04465678097,459,Urgent,2020-10-07,Inconclusive,7993,499,0,13,,,,DISCHARGED -7994,2019-12-14,19941.988504235927,259,Urgent,2020-01-01,Abnormal,7994,199,4,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -7995,2022-08-08,1777.330521600477,124,Urgent,2022-08-20,Inconclusive,7995,297,1,6,,,,DISCHARGED -7996,2019-05-30,14038.735754443547,167,Elective,2019-06-04,Inconclusive,7996,345,1,6,,,,DISCHARGED -7997,2021-10-08,7482.822583433615,382,Urgent,2021-10-12,Inconclusive,7997,239,1,13,,,,DISCHARGED -7998,2020-04-13,24429.46037518099,334,Emergency,2020-04-29,Abnormal,7998,114,0,25,,,,DISCHARGED -7999,2019-06-26,28522.68683883542,448,Urgent,2019-07-02,Abnormal,7999,25,3,23,,,,DISCHARGED -8000,2022-09-28,44157.88796829378,391,Urgent,2022-10-25,Abnormal,8000,406,4,14,,,,DISCHARGED -8001,2022-10-29,48795.34957616802,147,Emergency,2022-11-28,Normal,8001,298,4,11,,,,DISCHARGED -8002,2020-01-28,44610.623561795175,112,Urgent,2020-02-07,Inconclusive,8002,76,2,11,,,,DISCHARGED -8003,2021-02-25,2288.6750533199747,404,Urgent,2021-02-28,Inconclusive,8003,411,0,7,,,,DISCHARGED -8004,2023-06-23,18877.345951072017,143,Emergency,2023-07-12,Abnormal,8004,136,1,15,,,,DISCHARGED -8005,2023-07-31,36638.91942957427,138,Urgent,2023-08-22,Normal,8005,19,3,8,,,,DISCHARGED -8006,2023-04-14,30619.874984804617,131,Urgent,,Inconclusive,8006,439,0,1,,,,OPEN -8007,2019-12-17,41649.70399638107,162,Emergency,2019-12-29,Inconclusive,8007,210,0,13,,,,DISCHARGED -8008,2021-11-15,34802.67778278916,309,Elective,2021-11-24,Inconclusive,8008,239,3,23,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -8009,2019-11-12,19162.83510227641,492,Urgent,2019-12-10,Abnormal,8009,38,1,23,,,,DISCHARGED -8010,2022-07-23,17189.857186421206,369,Urgent,2022-08-17,Abnormal,8010,434,0,28,,,,DISCHARGED -8011,2018-11-30,7497.967096445521,469,Elective,2018-12-02,Inconclusive,8011,267,4,15,,,,DISCHARGED -8013,2020-07-14,40039.25622407387,333,Elective,2020-08-07,Abnormal,8013,206,4,4,,,,DISCHARGED -8014,2023-01-04,20091.838921682003,391,Emergency,2023-01-05,Inconclusive,8014,478,3,4,,,,DISCHARGED -8016,2023-03-12,40384.2501216712,242,Elective,2023-03-23,Inconclusive,8016,438,1,19,,,,DISCHARGED -8016,2022-12-27,26980.772259471087,129,Emergency,2023-01-22,Inconclusive,9702,461,3,29,,,,DISCHARGED -8017,2019-08-04,4267.079919594942,491,Emergency,2019-08-07,Inconclusive,8017,266,0,20,,,,DISCHARGED -8018,2021-02-18,15137.31621014056,465,Urgent,2021-02-24,Normal,8018,153,4,17,,,,DISCHARGED -8019,2023-05-26,47346.49011336828,490,Elective,,Abnormal,8019,41,2,17,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -8020,2021-09-06,21008.125728737767,110,Emergency,2021-10-05,Inconclusive,8020,410,3,4,,,,DISCHARGED -8022,2020-09-25,49591.48878231641,231,Urgent,2020-10-11,Normal,8022,10,2,10,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -8023,2022-12-05,30813.72310001923,393,Elective,2022-12-11,Abnormal,8023,293,2,12,,,,DISCHARGED -8024,2023-05-23,37857.19461111237,410,Elective,2023-05-24,Inconclusive,8024,97,4,2,,,,DISCHARGED -8024,2021-01-26,12573.135605697154,205,Elective,2021-02-20,Inconclusive,8555,426,3,16,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -8025,2022-04-27,3046.992905391492,421,Elective,2022-04-30,Inconclusive,8025,274,2,24,,,,DISCHARGED -8026,2021-02-11,22619.828323771188,246,Emergency,2021-02-12,Normal,8026,447,0,17,,,,DISCHARGED -8027,2019-10-30,1532.6661191521391,120,Urgent,2019-11-09,Normal,8027,389,1,13,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8028,2022-05-23,5944.992954293303,314,Urgent,2022-06-04,Abnormal,8028,429,1,11,,,,DISCHARGED -8029,2021-07-08,17587.51498684621,118,Elective,2021-07-10,Abnormal,8029,371,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8030,2020-05-30,9708.574296331106,172,Urgent,2020-05-31,Abnormal,8030,229,3,25,,,,DISCHARGED -8031,2020-12-07,16142.049025876117,480,Elective,2020-12-31,Normal,8031,368,3,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -8032,2023-05-25,39736.58023804133,227,Urgent,2023-06-12,Inconclusive,8032,425,1,29,,,,DISCHARGED -8033,2019-08-31,29386.26818230457,404,Elective,2019-09-14,Abnormal,8033,219,0,19,,,,DISCHARGED -8034,2019-07-27,21548.447469971776,246,Emergency,2019-08-14,Abnormal,8034,64,1,1,,,,DISCHARGED -8035,2020-06-03,17909.13878021324,128,Urgent,2020-06-27,Inconclusive,8035,354,1,6,,,,DISCHARGED -8036,2022-11-19,33473.32332722099,237,Emergency,2022-12-13,Inconclusive,8036,231,3,14,,,,DISCHARGED -8037,2022-10-07,15649.485023824673,488,Elective,2022-10-12,Inconclusive,8037,327,2,27,,,,DISCHARGED -8038,2022-10-29,46387.14647433006,365,Elective,2022-11-26,Inconclusive,8038,442,0,9,,,,DISCHARGED -8039,2021-03-29,49114.82027460238,404,Elective,2021-04-03,Inconclusive,8039,51,3,14,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -8040,2018-12-09,43337.404539403935,247,Elective,2019-01-05,Normal,8040,373,1,16,,,,DISCHARGED -8041,2020-01-27,12067.591897507951,334,Urgent,2020-02-16,Normal,8041,430,2,10,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8042,2019-12-01,22361.69522542653,233,Emergency,2019-12-03,Normal,8042,375,0,1,,,,DISCHARGED -8043,2022-11-23,33863.638143614495,469,Elective,2022-12-17,Abnormal,8043,262,4,26,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -8044,2023-06-01,28633.65151052959,398,Emergency,2023-06-11,Abnormal,8044,266,0,20,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8045,2019-10-04,19116.828971499068,314,Elective,2019-10-08,Inconclusive,8045,358,0,17,,,,DISCHARGED -8046,2020-03-30,14589.914858118653,138,Elective,2020-04-09,Inconclusive,8046,316,1,24,,,,DISCHARGED -8047,2021-04-22,42683.87948917641,202,Urgent,2021-05-22,Abnormal,8047,323,1,3,,,,DISCHARGED -8048,2019-01-24,10591.009673587014,139,Elective,2019-01-29,Normal,8048,408,4,8,,,,DISCHARGED -8049,2020-07-07,24963.74716875285,265,Emergency,2020-07-26,Inconclusive,8049,395,4,26,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8050,2019-01-29,29554.88672560693,461,Emergency,2019-02-26,Inconclusive,8050,153,4,27,,,,DISCHARGED -8051,2019-04-22,8562.407906626475,222,Emergency,2019-05-18,Normal,8051,357,3,16,,,,DISCHARGED -8052,2023-09-16,6684.271348449877,118,Urgent,2023-09-28,Normal,8052,365,3,16,,,,DISCHARGED -8053,2019-02-13,18760.81392229971,249,Emergency,2019-03-04,Inconclusive,8053,139,1,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8054,2019-05-08,15854.758749961986,217,Urgent,2019-06-04,Inconclusive,8054,426,1,29,,,,DISCHARGED -8055,2019-07-25,28949.005309941866,472,Emergency,2019-08-24,Abnormal,8055,50,4,15,,,,DISCHARGED -8056,2019-10-01,38485.656349510034,412,Elective,2019-10-31,Abnormal,8056,116,3,19,,,,DISCHARGED -8057,2023-03-07,24397.07139592009,213,Emergency,2023-03-13,Inconclusive,8057,420,2,24,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8059,2021-03-10,1865.7538063463944,190,Urgent,2021-03-28,Abnormal,8059,45,3,7,,,,DISCHARGED -8060,2019-09-25,29102.039615518763,292,Urgent,2019-10-04,Inconclusive,8060,308,1,22,,,,DISCHARGED -8061,2022-08-16,3937.714377524664,454,Elective,2022-09-14,Inconclusive,8061,87,3,14,,,,DISCHARGED -8062,2019-07-02,22741.25592031215,195,Elective,2019-07-16,Inconclusive,8062,207,1,0,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8065,2022-02-24,17745.148897040537,338,Elective,2022-03-12,Inconclusive,8065,376,4,18,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8066,2022-03-24,31074.71075388216,412,Elective,2022-04-20,Normal,8066,268,4,24,,,,DISCHARGED -8067,2021-02-14,15085.36450794674,238,Urgent,2021-02-27,Inconclusive,8067,88,4,14,,,,DISCHARGED -8068,2019-09-10,14244.655626313588,450,Urgent,2019-10-07,Inconclusive,8068,380,2,8,,,,DISCHARGED -8070,2020-11-21,31429.059757826144,158,Urgent,2020-11-22,Normal,8070,117,2,4,,,,DISCHARGED -8071,2021-02-01,29351.18509657692,405,Urgent,2021-03-03,Normal,8071,53,1,15,,,,DISCHARGED -8072,2020-12-21,24977.800089659773,333,Urgent,2021-01-05,Normal,8072,440,0,27,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8073,2021-07-25,24410.4160731522,497,Elective,2021-08-10,Normal,8073,115,2,12,,,,DISCHARGED -8075,2023-08-18,16178.730138081652,339,Elective,,Normal,8075,117,1,15,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -8076,2021-11-18,39922.07039964093,417,Emergency,2021-12-05,Inconclusive,8076,259,3,21,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -8077,2021-12-08,31288.036175160087,428,Emergency,2021-12-17,Inconclusive,8077,74,4,10,,,,DISCHARGED -8078,2023-07-31,37995.5917246705,263,Elective,2023-08-04,Inconclusive,8078,479,4,12,,,,DISCHARGED -8079,2020-03-04,44783.95533354963,391,Emergency,2020-03-07,Normal,8079,304,4,5,,,,DISCHARGED -8080,2022-04-14,43277.13904435948,227,Elective,2022-04-27,Normal,8080,6,1,25,,,,DISCHARGED -8081,2019-07-07,49777.67115002487,301,Urgent,2019-08-01,Normal,8081,365,4,19,,,,DISCHARGED -8082,2023-07-02,41495.55968603143,228,Emergency,,Abnormal,8082,121,2,16,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",OPEN -8083,2022-01-02,12861.65498960089,227,Elective,2022-01-18,Inconclusive,8083,10,3,4,,,,DISCHARGED -8084,2023-09-12,35773.670655190006,250,Elective,,Normal,8084,347,4,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",OPEN -8085,2023-04-06,20939.862312985933,222,Emergency,2023-04-27,Abnormal,8085,437,1,16,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8087,2019-10-07,34575.10208382801,296,Elective,2019-10-21,Abnormal,8087,488,3,0,,,,DISCHARGED -8088,2020-12-03,20528.587507838394,270,Urgent,2020-12-24,Inconclusive,8088,214,4,26,,,,DISCHARGED -8089,2020-06-02,12944.13835129208,424,Elective,2020-06-19,Normal,8089,428,0,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8090,2023-09-03,11848.781462569274,123,Emergency,2023-09-14,Normal,8090,278,4,4,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8091,2019-09-13,21793.986508167032,198,Urgent,2019-10-12,Normal,8091,497,2,6,,,,DISCHARGED -8092,2019-03-20,23389.21909820357,147,Elective,2019-03-30,Inconclusive,8092,27,3,15,,,,DISCHARGED -8093,2023-01-25,20685.706228150317,274,Emergency,2023-02-07,Inconclusive,8093,234,2,17,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8094,2019-03-12,11734.302836704854,125,Urgent,2019-04-10,Inconclusive,8094,366,0,5,,,,DISCHARGED -8095,2020-07-09,27684.43237575122,402,Elective,2020-07-11,Abnormal,8095,312,0,1,,,,DISCHARGED -8096,2021-03-25,34062.387353531754,446,Urgent,2021-03-30,Inconclusive,8096,25,2,12,,,,DISCHARGED -8097,2022-03-31,22117.67472674186,357,Elective,2022-04-12,Normal,8097,408,3,9,,,,DISCHARGED -8098,2021-08-03,43098.71002996974,258,Elective,2021-08-15,Abnormal,8098,53,0,20,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8099,2021-04-08,26605.08394638205,202,Emergency,2021-05-04,Abnormal,8099,28,0,19,,,,DISCHARGED -8100,2020-12-27,32693.3475802384,176,Elective,2021-01-19,Abnormal,8100,466,4,10,,,,DISCHARGED -8101,2023-03-16,11055.808953041364,313,Urgent,2023-03-30,Normal,8101,352,1,25,,,,DISCHARGED -8102,2021-10-10,4668.285337054693,439,Emergency,2021-11-06,Abnormal,8102,163,0,20,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -8103,2021-07-11,12858.59156706464,276,Elective,2021-07-18,Abnormal,8103,269,3,1,,,,DISCHARGED -8104,2020-05-26,28929.953261186696,124,Urgent,2020-06-19,Inconclusive,8104,333,3,7,,,,DISCHARGED -8105,2020-11-12,30162.582575883735,285,Elective,2020-12-12,Inconclusive,8105,34,4,23,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8106,2022-06-27,17072.454149204434,256,Elective,2022-07-27,Normal,8106,285,3,21,,,,DISCHARGED -8108,2022-12-22,15909.992366885155,249,Elective,2023-01-08,Normal,8108,347,4,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8109,2021-05-19,17358.003543321513,122,Emergency,2021-06-16,Inconclusive,8109,272,0,19,,,,DISCHARGED -8110,2023-05-11,17364.806535577223,242,Elective,2023-05-17,Normal,8110,450,0,16,,,,DISCHARGED -8112,2022-04-17,44128.50464867092,262,Emergency,2022-04-21,Inconclusive,8112,207,0,15,,,,DISCHARGED -8113,2022-10-17,3012.391100738386,402,Elective,2022-11-10,Abnormal,8113,237,0,24,,,,DISCHARGED -8114,2023-09-27,10233.646538853262,115,Elective,2023-10-04,Abnormal,8114,413,1,9,,,,DISCHARGED -8115,2019-01-31,20441.07817968359,268,Emergency,2019-03-01,Inconclusive,8115,499,1,4,,,,DISCHARGED -8117,2021-09-17,32730.72946207612,115,Urgent,2021-10-03,Normal,8117,92,0,13,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -8118,2021-09-02,18872.496276636622,247,Elective,2021-09-27,Normal,8118,172,3,23,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8119,2022-08-20,17194.422885715467,401,Emergency,2022-09-07,Abnormal,8119,78,4,18,,,,DISCHARGED -8120,2020-03-05,18863.735622974946,490,Elective,2020-04-03,Inconclusive,8120,109,2,3,,,,DISCHARGED -8121,2020-04-30,20628.00818333727,180,Elective,2020-05-01,Inconclusive,8121,216,4,19,,,,DISCHARGED -8122,2020-01-14,14037.703378817114,467,Elective,2020-02-05,Normal,8122,434,2,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8123,2019-01-06,49367.10326129973,243,Emergency,2019-01-21,Abnormal,8123,357,2,23,,,,DISCHARGED -8124,2021-06-25,21581.423337379685,322,Elective,2021-07-25,Abnormal,8124,105,0,14,,,,DISCHARGED -8125,2018-11-28,49701.36599806445,228,Elective,2018-12-26,Abnormal,8125,46,2,27,,,,DISCHARGED -8126,2023-02-22,1700.053606371073,380,Emergency,,Abnormal,8126,180,0,8,,,,OPEN -8127,2021-12-15,38646.81128708596,251,Emergency,2021-12-28,Normal,8127,63,1,2,,,,DISCHARGED -8128,2022-01-03,22352.881112797684,343,Urgent,2022-01-05,Normal,8128,245,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8129,2022-09-11,10175.554780789307,284,Emergency,2022-09-28,Inconclusive,8129,243,2,8,,,,DISCHARGED -8130,2019-12-03,45467.23942769469,277,Emergency,2019-12-24,Abnormal,8130,421,3,17,,,,DISCHARGED -8131,2020-09-07,26241.95612971654,453,Urgent,2020-09-30,Inconclusive,8131,319,0,3,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8132,2022-08-20,26042.26742413884,271,Elective,2022-09-18,Abnormal,8132,86,2,18,,,,DISCHARGED -8133,2021-01-27,37808.50969214741,365,Urgent,2021-02-24,Normal,8133,216,4,23,,,,DISCHARGED -8135,2019-08-21,41509.42590540384,453,Elective,2019-09-20,Normal,8135,489,1,3,,,,DISCHARGED -8137,2019-10-08,29269.66182627233,367,Emergency,2019-10-25,Abnormal,8137,6,1,8,,,,DISCHARGED -8138,2023-01-19,45128.96454828569,139,Elective,,Abnormal,8138,277,2,0,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8139,2023-06-25,32684.7719649079,342,Elective,,Normal,8139,336,1,0,,,,OPEN -8140,2022-09-14,2095.687238387226,367,Elective,2022-10-10,Abnormal,8140,209,4,19,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -8142,2023-04-04,48075.27871728106,414,Urgent,2023-04-24,Normal,8142,496,3,18,,,,DISCHARGED -8143,2021-10-16,28969.43809564237,282,Urgent,2021-10-26,Normal,8143,168,4,2,,,,DISCHARGED -8144,2023-08-29,34509.27029228193,109,Elective,,Normal,8144,329,1,9,,,,OPEN -8145,2019-09-11,1084.422303472434,421,Emergency,2019-10-04,Normal,8145,137,3,11,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8146,2022-12-29,46396.11167993047,317,Urgent,2023-01-14,Inconclusive,8146,440,4,17,,,,DISCHARGED -8147,2020-09-17,12321.440452901628,172,Emergency,2020-10-08,Normal,8147,390,0,13,,,,DISCHARGED -8148,2020-04-21,27698.5271708579,361,Urgent,2020-04-27,Abnormal,8148,495,0,9,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -8149,2022-11-04,45717.8568733596,202,Urgent,2022-11-05,Normal,8149,380,3,9,,,,DISCHARGED -8150,2021-11-05,46083.13258409305,468,Urgent,2021-12-04,Normal,8150,305,3,17,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8151,2023-10-30,11449.716676880198,490,Emergency,2023-11-05,Abnormal,8151,229,3,23,,,,DISCHARGED -8152,2023-08-20,45758.100330583824,428,Emergency,,Inconclusive,8152,474,0,0,,,,OPEN -8153,2023-04-21,31043.650104158936,185,Elective,2023-05-07,Inconclusive,8153,307,4,29,,,,DISCHARGED -8154,2022-10-06,31540.30734617747,305,Urgent,2022-10-13,Inconclusive,8154,160,3,14,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -8155,2021-03-02,9324.88021823037,323,Urgent,2021-03-11,Abnormal,8155,0,0,7,,,,DISCHARGED -8156,2021-03-07,45495.08518507029,301,Elective,2021-03-22,Inconclusive,8156,235,3,25,,,,DISCHARGED -8157,2021-11-25,14665.11355699728,142,Elective,2021-12-13,Abnormal,8157,436,3,2,,,,DISCHARGED -8158,2019-03-06,12281.14362722844,230,Urgent,2019-03-25,Normal,8158,187,3,17,,,,DISCHARGED -8159,2021-10-06,18077.153268402544,199,Emergency,2021-10-14,Normal,8159,417,0,8,,,,DISCHARGED -8160,2020-12-31,49180.4800862382,209,Urgent,2021-01-05,Inconclusive,8160,3,4,15,,,,DISCHARGED -8161,2020-12-09,16158.25569514116,154,Urgent,2021-01-05,Inconclusive,8161,400,0,20,,,,DISCHARGED -8162,2021-07-28,33426.44968815497,220,Urgent,2021-08-03,Abnormal,8162,131,0,14,,,,DISCHARGED -8164,2023-01-16,38848.17033967297,257,Emergency,2023-02-07,Abnormal,8164,426,3,29,,,,DISCHARGED -8165,2021-09-03,14316.42825944667,367,Emergency,2021-09-06,Abnormal,8165,217,2,4,,,,DISCHARGED -8166,2020-12-07,32377.83582902399,413,Urgent,2020-12-11,Abnormal,8166,259,2,12,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8168,2020-01-31,39484.59465133421,395,Elective,2020-02-10,Abnormal,8168,0,2,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -8169,2022-01-09,48006.407283263165,450,Emergency,2022-01-15,Abnormal,8169,70,0,19,,,,DISCHARGED -8170,2020-06-24,12314.148393642512,424,Urgent,2020-07-21,Normal,8170,477,3,6,,,,DISCHARGED -8171,2020-08-23,17046.06634961922,106,Elective,2020-09-08,Inconclusive,8171,177,2,15,,,,DISCHARGED -8173,2020-12-23,27947.42441906278,440,Elective,2021-01-07,Normal,8173,456,1,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8174,2023-09-30,11150.064814619383,432,Elective,2023-10-03,Normal,8174,188,1,26,,,,DISCHARGED -8175,2021-04-25,16636.364895615956,176,Urgent,2021-05-20,Abnormal,8175,290,1,24,,,,DISCHARGED -8176,2021-12-27,18908.843523342905,132,Elective,2022-01-20,Normal,8176,7,4,21,,,,DISCHARGED -8177,2022-06-10,14443.695294742984,189,Elective,2022-06-11,Abnormal,8177,252,3,15,,,,DISCHARGED -8179,2020-06-30,20862.724134298933,229,Elective,2020-07-27,Abnormal,8179,407,0,12,,,,DISCHARGED -8180,2021-12-10,27602.565483626488,434,Urgent,2021-12-28,Normal,8180,466,0,16,,,,DISCHARGED -8181,2022-01-27,31753.077634604208,372,Elective,2022-02-02,Inconclusive,8181,291,3,8,,,,DISCHARGED -8182,2023-09-03,29389.31778160135,283,Elective,,Normal,8182,433,4,11,,,,OPEN -8183,2021-06-12,2347.804003261987,345,Emergency,2021-06-17,Inconclusive,8183,243,3,12,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -8184,2022-07-01,26552.30027906584,435,Emergency,2022-07-14,Normal,8184,122,4,25,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -8185,2019-07-13,28628.37240462693,303,Urgent,2019-08-12,Normal,8185,298,2,8,,,,DISCHARGED -8186,2019-09-26,28176.838868388462,246,Urgent,2019-10-21,Abnormal,8186,282,2,4,,,,DISCHARGED -8187,2019-10-25,38838.10519530371,152,Emergency,2019-11-05,Abnormal,8187,31,4,6,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8188,2021-03-29,1596.9012780504906,456,Urgent,2021-04-15,Normal,8188,333,3,0,,,,DISCHARGED -8189,2023-02-05,1036.0790678076903,135,Elective,,Normal,8189,376,2,3,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,OPEN -8190,2020-07-13,17165.75843783682,440,Urgent,2020-07-28,Inconclusive,8190,145,3,27,,,,DISCHARGED -8191,2023-05-08,37582.77715765098,135,Urgent,2023-05-13,Abnormal,8191,155,2,25,,,,DISCHARGED -8192,2022-06-02,8120.30003185976,446,Elective,2022-06-29,Abnormal,8192,412,3,3,,,,DISCHARGED -8193,2020-05-19,12393.441109697676,282,Urgent,2020-06-18,Inconclusive,8193,15,3,15,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",DISCHARGED -8193,2020-11-02,43383.040981795006,317,Urgent,2020-11-20,Normal,9590,354,1,4,,,,DISCHARGED -8194,2022-03-18,23728.64050755175,220,Urgent,2022-03-28,Abnormal,8194,46,4,21,,,,DISCHARGED -8195,2021-09-19,15178.111047743025,356,Urgent,2021-10-18,Normal,8195,250,0,3,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8197,2019-03-11,14781.337851482873,358,Elective,2019-03-30,Normal,8197,186,4,5,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8199,2023-02-21,47547.16557898432,205,Elective,2023-03-01,Abnormal,8199,30,3,25,,,,DISCHARGED -8200,2022-09-15,46311.15130096009,425,Elective,2022-09-29,Inconclusive,8200,259,3,22,,,,DISCHARGED -8201,2019-04-07,34038.91066945543,348,Emergency,2019-04-14,Inconclusive,8201,420,4,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8202,2019-09-21,30550.628272190235,410,Urgent,2019-09-26,Normal,8202,16,3,24,,,,DISCHARGED -8203,2020-09-12,32645.36846590968,258,Elective,2020-09-15,Inconclusive,8203,38,2,7,,,,DISCHARGED -8204,2018-12-15,46218.211974603226,203,Elective,2018-12-31,Normal,8204,303,3,16,,,,DISCHARGED -8205,2023-07-24,17586.129732065914,444,Elective,2023-08-10,Normal,8205,429,4,28,,,,DISCHARGED -8206,2021-04-27,41078.14985222499,413,Elective,2021-05-16,Abnormal,8206,473,4,17,,,,DISCHARGED -8207,2019-05-11,34279.98739240158,414,Urgent,2019-05-18,Normal,8207,431,4,17,,,,DISCHARGED -8209,2019-06-30,40276.97082034466,158,Emergency,2019-07-01,Normal,8209,38,1,25,,,,DISCHARGED -8210,2021-01-28,7502.061908290743,466,Emergency,2021-02-24,Inconclusive,8210,488,1,24,,,,DISCHARGED -8211,2021-02-02,33743.984111235186,119,Urgent,2021-03-04,Inconclusive,8211,131,1,11,,,,DISCHARGED -8213,2022-07-12,6987.26302786904,245,Urgent,2022-07-15,Normal,8213,29,1,24,,,,DISCHARGED -8214,2021-12-13,27535.205056834813,308,Elective,2021-12-20,Normal,8214,157,1,24,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -8215,2020-03-06,17762.446925208802,329,Urgent,2020-03-07,Abnormal,8215,277,1,0,,,,DISCHARGED -8216,2020-07-02,39061.50521683533,413,Emergency,2020-07-18,Normal,8216,202,1,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -8217,2022-09-12,11041.17914606933,225,Emergency,2022-09-18,Abnormal,8217,65,4,11,,,,DISCHARGED -8219,2023-10-06,20781.9359512618,482,Elective,2023-10-15,Normal,8219,107,0,10,,,,DISCHARGED -8219,2023-02-24,32701.924144207984,405,Urgent,2023-03-15,Normal,9646,267,1,12,,,,DISCHARGED -8220,2019-07-12,25737.38428790393,402,Emergency,2019-07-24,Abnormal,8220,221,4,2,,,,DISCHARGED -8221,2021-03-23,17301.879823357995,243,Emergency,2021-04-07,Abnormal,8221,291,0,26,,,,DISCHARGED -8221,2022-12-25,42819.60872991142,395,Urgent,2023-01-21,Abnormal,9118,17,1,24,,,,DISCHARGED -8222,2019-07-02,18887.098181081088,354,Urgent,2019-07-23,Abnormal,8222,89,0,7,,,,DISCHARGED -8223,2023-07-11,34363.185592446855,119,Elective,,Inconclusive,8223,180,0,2,,,,OPEN -8224,2023-01-04,43828.06650639463,117,Urgent,2023-01-23,Abnormal,8224,254,2,16,,,,DISCHARGED -8225,2021-04-04,46809.30431582996,104,Urgent,2021-04-10,Inconclusive,8225,454,3,24,,,,DISCHARGED -8226,2020-02-10,13912.006090260644,340,Elective,2020-03-03,Abnormal,8226,252,2,12,,,,DISCHARGED -8228,2021-10-31,18915.940457037697,469,Emergency,2021-11-28,Inconclusive,8228,256,0,9,,,,DISCHARGED -8229,2022-08-17,23334.53997035574,236,Urgent,2022-08-20,Normal,8229,382,4,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8230,2020-04-20,20654.878628662267,125,Urgent,2020-04-23,Abnormal,8230,441,1,2,,,,DISCHARGED -8231,2022-10-08,29820.19746380228,490,Emergency,2022-10-15,Normal,8231,345,3,12,,,,DISCHARGED -8234,2021-05-25,49764.53091429238,309,Emergency,2021-06-12,Inconclusive,8234,86,1,21,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8236,2021-09-04,31615.57642691528,394,Urgent,2021-09-07,Inconclusive,8236,89,4,5,,,,DISCHARGED -8238,2023-10-16,33630.60534591856,143,Urgent,2023-10-27,Normal,8238,236,3,13,,,,DISCHARGED -8239,2020-12-25,35569.58120224116,206,Elective,2021-01-10,Normal,8239,389,2,26,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -8240,2021-01-18,18993.263614677868,160,Emergency,2021-02-01,Normal,8240,69,0,9,,,,DISCHARGED -8241,2022-09-13,28377.109104338037,198,Elective,2022-10-08,Inconclusive,8241,43,4,19,,,,DISCHARGED -8242,2021-08-19,16772.071428086085,150,Emergency,2021-09-12,Inconclusive,8242,199,0,15,,,,DISCHARGED -8243,2022-10-31,34500.706211185694,119,Elective,2022-11-27,Abnormal,8243,151,0,17,,,,DISCHARGED -8244,2022-12-03,10136.537037566552,173,Emergency,2022-12-11,Inconclusive,8244,85,1,12,,,,DISCHARGED -8245,2021-04-07,31216.924469266207,335,Elective,2021-04-12,Inconclusive,8245,18,4,9,,,,DISCHARGED -8246,2021-07-29,20607.06279243067,452,Urgent,2021-08-18,Inconclusive,8246,100,0,5,,,,DISCHARGED -8246,2019-09-26,46724.30354131043,209,Emergency,2019-10-25,Abnormal,9594,401,2,9,,,,DISCHARGED -8247,2022-09-07,9969.772316244218,489,Emergency,2022-09-17,Normal,8247,94,3,4,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8248,2023-10-04,44137.53001306059,382,Urgent,2023-10-06,Abnormal,8248,253,4,28,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -8249,2020-04-26,39061.3302155582,199,Elective,2020-05-14,Inconclusive,8249,356,1,5,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8250,2018-11-29,4517.581380501233,160,Elective,2018-12-09,Abnormal,8250,29,4,6,,,,DISCHARGED -8251,2022-07-01,38426.257969882834,493,Elective,2022-07-21,Inconclusive,8251,248,1,10,,,,DISCHARGED -8252,2019-06-22,21517.865453191334,105,Elective,2019-07-15,Abnormal,8252,425,3,15,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -8253,2022-06-13,46288.587414587055,200,Urgent,2022-06-14,Normal,8253,32,2,24,,,,DISCHARGED -8255,2021-01-21,2539.900332189388,366,Emergency,2021-02-04,Inconclusive,8255,457,0,11,,,,DISCHARGED -8256,2020-09-04,28110.55377044643,170,Urgent,2020-09-28,Normal,8256,228,4,11,,,,DISCHARGED -8258,2020-04-21,3837.451205474301,475,Elective,2020-05-14,Abnormal,8258,11,1,29,,,,DISCHARGED -8260,2019-12-11,46071.51763959746,212,Emergency,2019-12-18,Abnormal,8260,117,3,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -8261,2021-11-27,38341.92896119356,200,Elective,2021-12-27,Normal,8261,349,0,19,,,,DISCHARGED -8262,2023-06-23,35508.752827718825,283,Urgent,2023-07-13,Inconclusive,8262,154,3,25,,,,DISCHARGED -8264,2022-09-29,1827.9396774334384,181,Emergency,2022-10-17,Normal,8264,422,2,4,,,,DISCHARGED -8265,2021-08-13,33259.38570442068,460,Elective,2021-09-10,Abnormal,8265,392,0,15,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8266,2021-04-05,38171.68266076186,306,Elective,2021-04-06,Abnormal,8266,245,0,28,,,,DISCHARGED -8267,2020-12-27,4513.79417586097,299,Emergency,2021-01-06,Inconclusive,8267,404,0,5,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -8268,2018-11-13,8537.58184521964,133,Emergency,2018-11-27,Abnormal,8268,331,1,28,,,,DISCHARGED -8269,2021-04-17,46965.88762564629,445,Elective,2021-04-30,Abnormal,8269,246,0,8,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -8270,2020-02-04,21342.291982984403,349,Elective,2020-02-10,Normal,8270,28,3,4,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -8271,2022-10-27,40468.538140267054,211,Elective,2022-11-12,Inconclusive,8271,160,1,20,,,,DISCHARGED -8272,2023-01-27,6964.237866340817,198,Elective,2023-02-10,Normal,8272,234,0,22,,,,DISCHARGED -8273,2018-11-10,7304.660576641682,229,Elective,2018-12-01,Normal,8273,189,3,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -8274,2021-02-02,45037.46269886021,312,Emergency,2021-02-26,Normal,8274,116,3,17,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8275,2020-10-15,15002.463921110377,326,Elective,2020-10-21,Abnormal,8275,270,4,18,,,,DISCHARGED -8276,2020-03-02,6282.546819679948,355,Emergency,2020-03-07,Inconclusive,8276,257,3,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8278,2019-06-24,29743.361920748925,406,Elective,2019-06-26,Inconclusive,8278,179,2,1,,,,DISCHARGED -8279,2018-11-23,24793.520279808545,306,Emergency,2018-12-16,Normal,8279,486,0,25,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8280,2022-06-23,13557.317658573716,105,Urgent,2022-06-24,Normal,8280,372,0,9,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8281,2022-06-23,16457.371931855716,392,Elective,2022-07-08,Abnormal,8281,171,0,11,,,,DISCHARGED -8282,2023-02-20,38697.31564743623,327,Elective,,Abnormal,8282,437,3,13,,,,OPEN -8283,2021-12-02,42705.4087931323,493,Urgent,2021-12-23,Abnormal,8283,273,3,17,,,,DISCHARGED -8284,2023-06-05,18219.78450729501,190,Emergency,,Abnormal,8284,258,0,18,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -8285,2019-12-09,24187.761031066933,121,Emergency,2019-12-14,Abnormal,8285,134,1,5,,,,DISCHARGED -8286,2020-01-20,18397.33414002344,422,Elective,2020-01-23,Abnormal,8286,170,1,4,,,,DISCHARGED -8287,2019-12-04,48386.39238101044,331,Elective,2019-12-08,Inconclusive,8287,209,2,26,,,,DISCHARGED -8288,2022-08-25,37027.03703077011,396,Urgent,2022-08-26,Inconclusive,8288,235,4,15,,,,DISCHARGED -8289,2019-02-13,21265.85465934489,142,Urgent,2019-03-06,Inconclusive,8289,421,2,13,,,,DISCHARGED -8290,2020-03-22,14403.00588435372,406,Emergency,2020-03-30,Inconclusive,8290,420,0,12,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -8291,2020-07-26,39890.98833261332,297,Urgent,2020-08-21,Abnormal,8291,185,0,20,,,,DISCHARGED -8292,2020-11-15,34443.94650094133,281,Elective,2020-12-09,Inconclusive,8292,416,0,1,,,,DISCHARGED -8293,2019-04-14,29837.116698559254,489,Elective,2019-05-04,Normal,8293,363,4,1,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -8294,2021-02-14,49428.167508309794,390,Urgent,2021-02-17,Inconclusive,8294,442,3,11,,,,DISCHARGED -8296,2022-10-29,28072.654601027945,245,Emergency,2022-11-05,Normal,8296,94,4,0,,,,DISCHARGED -8297,2020-08-17,37027.31534592706,336,Elective,2020-08-19,Normal,8297,377,2,18,,,,DISCHARGED -8298,2019-08-23,41979.64105239214,231,Emergency,2019-09-21,Inconclusive,8298,10,3,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8299,2023-01-03,37118.28417017284,296,Urgent,2023-01-23,Abnormal,8299,67,3,27,,,,DISCHARGED -8300,2020-04-18,47350.37315158523,432,Emergency,2020-04-27,Normal,8300,378,2,26,,,,DISCHARGED -8301,2020-03-25,15160.477689471663,480,Urgent,2020-04-18,Inconclusive,8301,209,3,15,,,,DISCHARGED -8302,2023-10-23,21289.84276502331,230,Emergency,,Normal,8302,195,1,29,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,OPEN -8303,2020-05-12,8365.254966987366,458,Emergency,2020-06-01,Inconclusive,8303,368,2,6,,,,DISCHARGED -8304,2023-06-16,47837.80026291821,123,Emergency,,Abnormal,8304,97,2,26,,,,OPEN -8307,2021-04-21,41191.93397607293,456,Elective,2021-05-12,Inconclusive,8307,92,1,20,,,,DISCHARGED -8308,2019-01-10,6637.021910141978,199,Emergency,2019-02-07,Inconclusive,8308,471,4,6,,,,DISCHARGED -8309,2023-05-30,8199.03831110839,473,Emergency,2023-06-24,Abnormal,8309,21,4,15,,,,DISCHARGED -8310,2021-12-31,44281.65802476424,428,Emergency,2022-01-07,Normal,8310,449,4,24,,,,DISCHARGED -8311,2020-04-07,34848.34524505698,308,Emergency,2020-04-22,Inconclusive,8311,171,3,5,,,,DISCHARGED -8313,2022-11-16,12851.42958189394,301,Urgent,2022-12-10,Abnormal,8313,382,1,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8314,2023-03-12,3110.029727725993,353,Elective,,Normal,8314,133,2,0,,,,OPEN -8316,2020-08-16,12630.4021618884,310,Elective,2020-09-10,Normal,8316,425,2,0,,,,DISCHARGED -8317,2022-07-24,12093.058672847565,439,Urgent,2022-08-15,Normal,8317,24,2,25,,,,DISCHARGED -8318,2022-01-26,3136.0364273625505,461,Urgent,2022-02-13,Abnormal,8318,184,3,24,,,,DISCHARGED -8319,2019-06-01,17039.89073446181,400,Urgent,2019-06-11,Abnormal,8319,84,3,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8320,2020-01-19,15982.016851434704,440,Urgent,2020-02-10,Inconclusive,8320,54,4,5,,,,DISCHARGED -8321,2019-03-19,11482.881826080433,120,Emergency,2019-04-07,Inconclusive,8321,250,3,5,,,,DISCHARGED -8322,2019-05-08,3608.407583844075,337,Elective,2019-05-21,Normal,8322,143,4,3,,,,DISCHARGED -8323,2022-10-17,39135.322554736485,383,Elective,2022-10-24,Inconclusive,8323,350,4,11,,,,DISCHARGED -8324,2023-06-21,48387.12135461989,315,Urgent,2023-07-03,Abnormal,8324,397,2,29,,,,DISCHARGED -8325,2023-10-06,29283.018608449704,162,Emergency,2023-10-28,Abnormal,8325,166,3,17,,,,DISCHARGED -8326,2023-03-01,11456.786185176685,355,Elective,2023-03-18,Inconclusive,8326,411,4,9,,,,DISCHARGED -8327,2022-07-02,28223.497178375423,166,Elective,2022-07-05,Inconclusive,8327,223,1,2,,,,DISCHARGED -8328,2020-11-02,42572.47850506077,210,Urgent,2020-11-08,Abnormal,8328,219,1,2,,,,DISCHARGED -8330,2023-09-07,3222.9854382617905,157,Emergency,,Abnormal,8330,178,3,7,,,,OPEN -8331,2020-03-10,36773.468095144606,467,Emergency,2020-03-30,Normal,8331,118,2,21,,,,DISCHARGED -8332,2021-10-16,43285.66928980906,311,Urgent,2021-11-05,Inconclusive,8332,432,2,22,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8333,2021-07-26,45806.61074539374,108,Elective,2021-08-22,Inconclusive,8333,264,4,24,,,,DISCHARGED -8334,2019-11-27,2611.01795440362,261,Elective,2019-12-05,Normal,8334,441,3,0,,,,DISCHARGED -8335,2022-09-29,49140.87878095109,413,Urgent,2022-10-01,Inconclusive,8335,428,1,17,,,,DISCHARGED -8336,2023-07-11,34482.51703873634,478,Urgent,,Inconclusive,8336,149,4,14,,,,OPEN -8337,2019-12-17,44638.598376786176,197,Urgent,2020-01-09,Abnormal,8337,415,4,24,,,,DISCHARGED -8338,2022-10-03,8584.056356614996,458,Emergency,2022-10-24,Normal,8338,452,0,20,,,,DISCHARGED -8339,2023-09-13,28857.283047653087,111,Emergency,2023-10-02,Abnormal,8339,214,3,19,,,,DISCHARGED -8341,2022-09-25,3512.1603534048486,416,Urgent,2022-10-09,Inconclusive,8341,196,4,16,,,,DISCHARGED -8342,2019-08-30,29882.989974098185,308,Urgent,2019-09-24,Inconclusive,8342,41,1,24,,,,DISCHARGED -8343,2018-11-11,4872.252483834007,384,Emergency,2018-12-06,Inconclusive,8343,52,0,10,,,,DISCHARGED -8344,2020-09-10,42171.68204572897,276,Elective,2020-09-25,Abnormal,8344,479,1,12,,,,DISCHARGED -8345,2022-01-07,9261.337941411326,260,Elective,2022-01-21,Normal,8345,442,2,24,,,,DISCHARGED -8346,2022-04-21,48757.698732604,101,Urgent,2022-05-11,Inconclusive,8346,329,0,19,,,,DISCHARGED -8347,2022-05-20,24735.434355201374,322,Urgent,2022-06-12,Abnormal,8347,250,0,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8348,2019-06-21,43185.35409782744,215,Emergency,2019-07-04,Inconclusive,8348,294,4,9,,,,DISCHARGED -8349,2019-06-19,29905.18338029509,318,Urgent,2019-06-26,Normal,8349,377,2,12,,,,DISCHARGED -8350,2020-12-31,21410.578883277834,165,Emergency,2021-01-24,Inconclusive,8350,270,4,16,,,,DISCHARGED -8351,2022-07-13,25131.779081002544,120,Emergency,2022-08-06,Normal,8351,454,3,20,,,,DISCHARGED -8351,2022-10-06,37033.87748684664,380,Emergency,2022-10-23,Normal,9319,412,1,0,,,,DISCHARGED -8352,2022-03-13,46514.228528404325,193,Emergency,2022-03-17,Normal,8352,122,1,19,,,,DISCHARGED -8353,2023-10-10,41630.53578197566,438,Elective,,Normal,8353,366,4,15,,,,OPEN -8354,2020-03-22,5953.510835237855,129,Emergency,2020-04-14,Inconclusive,8354,386,1,15,,,,DISCHARGED -8355,2018-12-05,19489.62650276664,387,Emergency,2018-12-31,Abnormal,8355,338,1,27,,,,DISCHARGED -8356,2023-03-19,31614.04106601988,339,Urgent,2023-04-04,Normal,8356,265,3,20,,,,DISCHARGED -8357,2022-10-15,3492.74028433862,488,Elective,2022-10-28,Abnormal,8357,347,2,29,,,,DISCHARGED -8358,2021-02-21,36302.94733895276,202,Emergency,2021-03-03,Abnormal,8358,28,0,26,,,,DISCHARGED -8359,2020-08-30,38876.73965799117,393,Emergency,2020-09-06,Abnormal,8359,462,4,2,,,,DISCHARGED -8360,2021-12-24,19803.81853772989,293,Urgent,2022-01-23,Abnormal,8360,34,4,1,,,,DISCHARGED -8361,2020-07-05,32532.81691747898,208,Urgent,2020-07-13,Normal,8361,5,3,5,,,,DISCHARGED -8362,2023-05-21,24428.721023984035,335,Urgent,,Inconclusive,8362,395,3,10,,,,OPEN -8363,2019-02-05,36608.40121370153,195,Emergency,2019-02-17,Normal,8363,110,0,28,,,,DISCHARGED -8364,2023-02-02,36213.69220885789,293,Elective,2023-02-28,Inconclusive,8364,293,2,2,,,,DISCHARGED -8365,2019-01-15,44604.48540998071,484,Elective,2019-01-18,Abnormal,8365,76,4,25,,,,DISCHARGED -8366,2019-05-24,17034.54319927463,123,Urgent,2019-05-27,Normal,8366,348,3,0,,,,DISCHARGED -8367,2019-06-26,29317.0261830391,410,Elective,2019-07-05,Inconclusive,8367,146,4,10,,,,DISCHARGED -8368,2022-05-28,30799.123216588338,319,Emergency,2022-06-19,Normal,8368,66,1,12,,,,DISCHARGED -8369,2022-12-08,3799.468942388866,443,Emergency,2022-12-09,Normal,8369,391,4,4,,,,DISCHARGED -8370,2020-05-21,17790.948470264102,297,Urgent,2020-06-08,Abnormal,8370,7,2,17,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8371,2019-04-10,4229.62167795524,351,Urgent,2019-04-22,Inconclusive,8371,121,2,14,,,,DISCHARGED -8372,2023-10-29,28368.467860262463,156,Urgent,,Inconclusive,8372,339,4,17,,,,OPEN -8373,2022-06-14,35211.16808745828,420,Urgent,2022-07-08,Inconclusive,8373,174,1,14,,,,DISCHARGED -8374,2021-10-09,43827.82214419748,395,Urgent,2021-10-22,Inconclusive,8374,387,2,19,,,,DISCHARGED -8375,2023-07-24,34614.54207354463,236,Urgent,2023-07-30,Normal,8375,178,3,19,,,,DISCHARGED -8376,2021-07-21,9446.967428988191,311,Emergency,2021-08-03,Abnormal,8376,84,4,19,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -8377,2020-02-09,46467.227563441855,470,Urgent,2020-02-16,Inconclusive,8377,450,1,6,,,,DISCHARGED -8378,2023-09-17,33173.965493179014,276,Emergency,2023-10-02,Inconclusive,8378,44,3,16,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8379,2021-10-29,14020.030183021903,362,Elective,2021-11-05,Inconclusive,8379,135,4,28,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8380,2022-05-18,43866.4453409479,253,Emergency,2022-06-13,Abnormal,8380,342,1,7,,,,DISCHARGED -8381,2022-02-16,22936.506466698705,237,Elective,2022-02-20,Inconclusive,8381,15,3,27,,,,DISCHARGED -8382,2019-01-20,9395.849645957844,314,Urgent,2019-02-08,Abnormal,8382,332,2,12,,,,DISCHARGED -8383,2021-09-28,1621.830197776983,404,Emergency,2021-10-03,Inconclusive,8383,194,4,25,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -8384,2018-12-22,29633.272805783305,176,Urgent,2019-01-16,Abnormal,8384,495,4,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8386,2019-04-16,7645.336328339558,338,Elective,2019-04-24,Normal,8386,8,2,24,,,,DISCHARGED -8387,2021-06-01,49304.91287065599,253,Emergency,2021-07-01,Inconclusive,8387,315,0,9,,,,DISCHARGED -8388,2021-01-29,34687.19983640641,213,Elective,2021-02-08,Normal,8388,333,3,28,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8389,2021-08-09,22371.373229225308,188,Urgent,2021-08-31,Abnormal,8389,332,2,13,,,,DISCHARGED -8390,2020-05-08,13130.362308996844,409,Urgent,2020-05-11,Abnormal,8390,326,4,5,,,,DISCHARGED -8391,2021-05-05,25062.29231756852,458,Urgent,2021-05-13,Abnormal,8391,14,3,19,,,,DISCHARGED -8392,2023-02-08,8330.79358699481,157,Emergency,,Inconclusive,8392,326,3,21,,,,OPEN -8393,2018-10-31,37980.14715475678,308,Emergency,2018-11-24,Abnormal,8393,101,0,25,,,,DISCHARGED -8394,2022-02-02,47060.392877269165,369,Urgent,2022-02-14,Abnormal,8394,225,4,6,,,,DISCHARGED -8395,2022-09-03,11308.352290060144,206,Elective,2022-10-01,Abnormal,8395,424,1,5,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8396,2018-11-04,31127.817672858146,135,Elective,2018-11-14,Normal,8396,277,0,26,,,,DISCHARGED -8397,2023-01-12,12864.065641714107,248,Urgent,2023-01-22,Normal,8397,407,0,16,,,,DISCHARGED -8397,2019-04-29,17516.4482513964,157,Elective,2019-05-06,Inconclusive,8846,112,1,20,,,,DISCHARGED -8398,2023-06-15,41995.01542034207,126,Elective,2023-07-11,Abnormal,8398,484,1,23,,,,DISCHARGED -8400,2021-06-03,33308.28199451362,139,Urgent,2021-06-08,Abnormal,8400,427,0,7,,,,DISCHARGED -8401,2021-05-31,21891.33315823238,171,Elective,2021-06-08,Normal,8401,0,3,11,,,,DISCHARGED -8402,2022-01-17,19872.64758687871,379,Elective,2022-02-13,Inconclusive,8402,265,2,25,,,,DISCHARGED -8403,2019-05-18,47390.49085081662,121,Urgent,2019-06-07,Abnormal,8403,490,2,24,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -8404,2019-04-27,34257.64990300737,492,Urgent,2019-05-01,Abnormal,8404,207,0,3,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8405,2023-01-21,29924.42313750195,292,Emergency,2023-01-23,Normal,8405,109,3,9,,,,DISCHARGED -8406,2023-08-06,7867.16653361466,330,Emergency,,Inconclusive,8406,199,1,5,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",OPEN -8407,2019-12-23,12306.247538318205,431,Urgent,2020-01-20,Normal,8407,439,0,6,,,,DISCHARGED -8408,2022-07-20,42046.10932162721,495,Urgent,2022-08-09,Abnormal,8408,368,4,20,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8409,2022-09-09,37931.75165728488,259,Emergency,2022-10-03,Abnormal,8409,472,3,26,,,,DISCHARGED -8410,2019-02-18,11944.064925410736,390,Emergency,2019-02-22,Normal,8410,305,4,7,,,,DISCHARGED -8411,2022-02-14,28044.040179382213,475,Urgent,2022-03-10,Abnormal,8411,11,4,2,,,,DISCHARGED -8411,2023-07-24,12276.707696736226,377,Emergency,,Abnormal,9368,344,0,7,,,,OPEN -8412,2021-04-29,26641.207212629797,448,Emergency,2021-05-16,Inconclusive,8412,464,3,14,,,,DISCHARGED -8415,2022-03-08,7166.965465519757,258,Urgent,2022-03-12,Abnormal,8415,187,4,29,,,,DISCHARGED -8416,2021-09-22,8105.49002100708,433,Elective,2021-10-01,Inconclusive,8416,153,3,20,,,,DISCHARGED -8417,2020-10-05,14051.377062196008,118,Elective,2020-10-31,Normal,8417,493,2,0,,,,DISCHARGED -8418,2019-12-24,46112.8236345238,331,Urgent,2019-12-30,Abnormal,8418,367,4,12,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -8420,2023-01-10,10775.331426227624,324,Elective,2023-02-09,Normal,8420,333,4,21,,,,DISCHARGED -8421,2019-07-23,46831.43920374231,253,Urgent,2019-08-08,Inconclusive,8421,424,3,17,,,,DISCHARGED -8422,2019-11-02,20143.025577320837,396,Elective,2019-11-17,Inconclusive,8422,419,2,14,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -8423,2021-12-25,35745.6907787062,249,Urgent,2022-01-24,Abnormal,8423,376,4,6,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -8424,2021-06-16,1243.9728976242625,178,Emergency,2021-07-11,Inconclusive,8424,278,0,14,,,,DISCHARGED -8425,2019-01-21,49100.458363573794,244,Elective,2019-01-28,Normal,8425,170,3,24,,,,DISCHARGED -8426,2020-01-07,40953.34441089516,314,Elective,2020-01-24,Normal,8426,133,3,2,,,,DISCHARGED -8427,2020-06-28,46320.03442207755,244,Emergency,2020-07-19,Abnormal,8427,494,4,29,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8428,2023-02-08,18697.998489384427,147,Elective,2023-02-15,Inconclusive,8428,452,2,25,,,,DISCHARGED -8429,2023-02-14,15193.755609347454,384,Urgent,,Abnormal,8429,426,4,13,,,,OPEN -8430,2018-11-24,49242.05785018929,378,Urgent,2018-12-16,Inconclusive,8430,24,1,19,,,,DISCHARGED -8431,2020-06-06,19829.048590703103,365,Elective,2020-06-14,Abnormal,8431,17,4,3,,,,DISCHARGED -8432,2020-07-06,6153.377667907586,274,Urgent,2020-08-03,Abnormal,8432,189,1,3,,,,DISCHARGED -8433,2019-10-27,25524.99173845405,139,Elective,2019-11-04,Abnormal,8433,140,0,2,,,,DISCHARGED -8434,2020-06-16,7816.979418672698,211,Elective,2020-06-20,Abnormal,8434,42,3,4,,,,DISCHARGED -8435,2020-06-16,9365.924503115237,345,Emergency,2020-07-15,Inconclusive,8435,333,3,24,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -8436,2023-02-06,18833.72734981708,228,Emergency,,Inconclusive,8436,283,2,10,,,,OPEN -8437,2021-06-18,24458.46840504675,455,Urgent,2021-07-05,Abnormal,8437,145,4,7,,,,DISCHARGED -8438,2022-06-14,38765.26479449626,418,Elective,2022-06-16,Abnormal,8438,314,0,25,,,,DISCHARGED -8439,2021-05-16,11451.595848175535,309,Emergency,2021-06-02,Inconclusive,8439,443,1,1,,,,DISCHARGED -8440,2019-07-15,25133.964115481285,242,Urgent,2019-07-19,Abnormal,8440,318,2,27,,,,DISCHARGED -8441,2022-03-22,25655.6544197151,459,Elective,2022-04-15,Normal,8441,440,0,15,,,,DISCHARGED -8442,2022-07-05,16701.953527999445,379,Elective,2022-07-12,Abnormal,8442,91,0,24,,,,DISCHARGED -8443,2023-04-25,4428.433520844079,442,Emergency,2023-05-23,Abnormal,8443,178,1,27,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8444,2018-12-27,11232.31079748094,423,Elective,2019-01-02,Inconclusive,8444,55,1,9,,,,DISCHARGED -8447,2019-02-08,19608.09486574254,411,Urgent,2019-02-16,Abnormal,8447,154,3,17,,,,DISCHARGED -8448,2023-05-07,30847.13871778822,187,Emergency,2023-06-04,Normal,8448,159,4,6,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8449,2020-11-05,37106.6062018785,242,Urgent,2020-11-22,Abnormal,8449,110,2,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -8451,2021-12-01,22679.045220794484,399,Elective,2021-12-07,Inconclusive,8451,136,4,28,,,,DISCHARGED -8452,2020-05-16,32978.53380122561,500,Elective,2020-05-28,Inconclusive,8452,231,2,6,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8453,2019-04-29,7765.002313376223,465,Elective,2019-05-20,Abnormal,8453,479,0,20,,,,DISCHARGED -8454,2023-02-16,17665.08869552336,460,Emergency,2023-02-19,Abnormal,8454,467,1,27,,,,DISCHARGED -8455,2021-05-26,20572.471670862484,209,Elective,2021-06-04,Normal,8455,219,1,5,,,,DISCHARGED -8456,2023-07-25,9615.71524065711,113,Urgent,,Abnormal,8456,480,0,23,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",OPEN -8458,2019-08-17,17806.088816633313,235,Emergency,2019-09-01,Inconclusive,8458,67,0,0,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8459,2019-06-18,49333.156823314166,139,Urgent,2019-06-23,Inconclusive,8459,301,2,28,,,,DISCHARGED -8461,2021-11-09,26831.99249281976,127,Emergency,2021-11-21,Abnormal,8461,248,0,10,,,,DISCHARGED -8462,2021-03-01,14055.937364116306,166,Urgent,2021-03-17,Inconclusive,8462,481,2,12,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8463,2020-11-02,5991.611735145802,350,Emergency,2020-11-29,Inconclusive,8463,495,4,11,Sudden onset of leg cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8464,2020-09-11,2949.0432555313664,290,Emergency,2020-09-20,Normal,8464,322,1,0,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -8465,2020-07-01,5133.211233428802,375,Urgent,2020-07-04,Inconclusive,8465,409,1,20,,,,DISCHARGED -8466,2020-09-21,18000.0894935308,342,Urgent,2020-10-08,Abnormal,8466,391,1,14,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -8468,2020-11-05,17719.18614826582,399,Elective,2020-11-24,Inconclusive,8468,5,4,0,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8469,2021-02-01,27915.63103398423,206,Elective,2021-02-14,Normal,8469,463,4,2,,,,DISCHARGED -8470,2021-01-07,41588.71164822058,449,Emergency,2021-01-19,Inconclusive,8470,279,3,25,,,,DISCHARGED -8471,2019-05-28,5460.244639223006,484,Elective,2019-06-11,Abnormal,8471,431,2,14,,,,DISCHARGED -8472,2020-08-07,27221.428291092183,156,Emergency,2020-08-28,Abnormal,8472,486,2,8,,,,DISCHARGED -8473,2020-06-23,27434.39695936583,403,Elective,2020-07-06,Normal,8473,93,3,13,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -8474,2020-03-03,35822.50646468301,451,Urgent,2020-03-25,Inconclusive,8474,428,1,28,,,,DISCHARGED -8476,2019-05-29,22292.41755373483,257,Emergency,2019-06-05,Normal,8476,268,2,22,,,,DISCHARGED -8477,2021-01-05,5630.094102982314,471,Emergency,2021-01-23,Inconclusive,8477,196,2,27,,,,DISCHARGED -8478,2020-04-23,31689.33564421653,399,Emergency,2020-05-07,Inconclusive,8478,24,1,21,,,,DISCHARGED -8479,2019-06-16,13004.903544849783,496,Elective,2019-06-25,Normal,8479,147,0,23,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8480,2019-11-24,38369.256959013066,365,Elective,2019-12-16,Abnormal,8480,117,0,7,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -8481,2023-06-17,32904.538764746474,256,Emergency,2023-07-05,Abnormal,8481,337,3,21,,,,DISCHARGED -8482,2022-11-05,27262.736813076568,214,Elective,2022-11-28,Normal,8482,366,4,3,,,,DISCHARGED -8483,2022-01-06,46747.29711322217,414,Urgent,2022-01-20,Abnormal,8483,337,2,19,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -8484,2021-01-04,36305.41546759692,445,Emergency,2021-01-31,Inconclusive,8484,65,2,19,,,,DISCHARGED -8485,2023-09-21,11335.320895131854,320,Urgent,2023-10-02,Inconclusive,8485,457,3,5,,,,DISCHARGED -8486,2021-01-31,32821.591832816106,469,Urgent,2021-02-26,Normal,8486,300,3,0,,,,DISCHARGED -8487,2019-02-11,19579.094754850976,451,Emergency,2019-03-13,Inconclusive,8487,369,2,27,,,,DISCHARGED -8488,2020-10-17,47564.20759522408,272,Urgent,2020-11-05,Normal,8488,174,1,17,,,,DISCHARGED -8489,2019-07-12,46008.80490890444,280,Elective,2019-07-15,Abnormal,8489,318,1,5,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8490,2022-07-04,4360.214208595335,448,Emergency,2022-07-16,Normal,8490,75,4,29,,,,DISCHARGED -8491,2022-10-10,35038.33812167479,395,Emergency,2022-11-02,Abnormal,8491,494,2,13,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8493,2020-05-23,9156.536190512912,211,Emergency,2020-06-11,Normal,8493,460,2,10,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8494,2020-02-22,22728.26720058117,104,Emergency,2020-03-18,Normal,8494,113,2,16,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -8495,2021-03-23,1429.8886578265167,164,Urgent,2021-04-20,Abnormal,8495,110,2,8,,,,DISCHARGED -8496,2021-10-13,20796.1376382904,116,Emergency,2021-11-03,Abnormal,8496,248,3,27,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8498,2020-04-17,30490.696525128096,405,Emergency,2020-05-11,Inconclusive,8498,438,0,21,,,,DISCHARGED -8499,2019-12-16,42006.021230579536,419,Urgent,2019-12-28,Abnormal,8499,202,2,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -8500,2021-06-02,1709.9047516469795,500,Urgent,2021-06-09,Inconclusive,8500,146,0,13,,,,DISCHARGED -8501,2019-11-10,44321.09951336394,264,Urgent,2019-11-17,Normal,8501,34,1,27,,,,DISCHARGED -8502,2021-03-19,48056.68034120919,230,Urgent,2021-04-05,Inconclusive,8502,486,4,16,,,,DISCHARGED -8503,2023-06-25,17736.92969622423,490,Urgent,2023-07-10,Normal,8503,308,1,7,,,,DISCHARGED -8504,2023-06-24,17202.77293670304,360,Elective,2023-07-19,Inconclusive,8504,25,2,27,,,,DISCHARGED -8505,2023-04-29,48911.60518935587,256,Elective,2023-05-13,Normal,8505,237,1,15,,,,DISCHARGED -8506,2019-11-10,10981.158339716423,214,Emergency,2019-12-04,Abnormal,8506,13,3,11,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8507,2019-12-15,37483.69656408943,323,Elective,2020-01-14,Abnormal,8507,373,0,11,,,,DISCHARGED -8508,2020-01-08,36776.93488629535,199,Elective,2020-01-13,Inconclusive,8508,44,2,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8509,2019-05-19,6804.433924892192,250,Emergency,2019-05-25,Normal,8509,427,3,27,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -8510,2023-08-17,22140.51416288374,496,Emergency,,Abnormal,8510,215,0,4,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,OPEN -8511,2019-08-18,34642.17508574862,176,Elective,2019-09-06,Inconclusive,8511,232,3,4,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -8512,2020-09-29,38549.258757141535,202,Elective,2020-10-09,Normal,8512,192,1,13,,,,DISCHARGED -8513,2021-08-24,29359.203636483417,244,Emergency,2021-09-01,Abnormal,8513,50,2,5,,,,DISCHARGED -8515,2023-07-01,38091.43669080757,229,Urgent,,Abnormal,8515,426,1,6,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,OPEN -8516,2020-11-10,17866.98231632598,144,Emergency,2020-11-30,Abnormal,8516,374,4,22,,,,DISCHARGED -8517,2021-03-03,39887.37641348983,258,Emergency,2021-03-09,Inconclusive,8517,213,2,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -8518,2022-04-08,39210.055985093706,440,Urgent,2022-05-05,Inconclusive,8518,150,1,16,,,,DISCHARGED -8519,2019-01-08,28622.025406534613,173,Emergency,2019-01-14,Abnormal,8519,439,2,26,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8520,2022-12-02,18857.82924641502,377,Elective,2022-12-07,Inconclusive,8520,274,0,8,,,,DISCHARGED -8521,2022-05-13,34192.98585998548,127,Urgent,2022-06-12,Inconclusive,8521,337,2,21,,,,DISCHARGED -8521,2019-08-04,18930.46839702707,170,Urgent,2019-08-28,Inconclusive,9252,75,2,12,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -8522,2022-12-19,4667.545922530266,168,Emergency,2023-01-03,Inconclusive,8522,438,0,8,,,,DISCHARGED -8523,2021-05-22,47233.7122492197,312,Urgent,2021-06-16,Inconclusive,8523,219,1,26,,,,DISCHARGED -8524,2021-01-07,17269.24533018908,425,Urgent,2021-01-22,Normal,8524,347,2,15,,,,DISCHARGED -8525,2020-11-24,7602.858353111617,180,Elective,2020-12-02,Normal,8525,443,3,3,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -8526,2020-02-08,23363.75566989012,496,Elective,2020-03-08,Inconclusive,8526,186,2,1,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -8527,2019-11-29,19697.002441317363,486,Emergency,2019-12-11,Abnormal,8527,288,1,12,,,,DISCHARGED -8529,2019-09-17,28519.89276905813,311,Urgent,2019-10-02,Abnormal,8529,402,0,12,,,,DISCHARGED -8530,2019-02-24,46476.25070139772,353,Emergency,2019-03-14,Normal,8530,27,1,18,,,,DISCHARGED -8531,2021-05-04,39302.2872947826,222,Urgent,2021-05-18,Abnormal,8531,378,4,11,,,,DISCHARGED -8532,2020-10-03,35655.0123337886,183,Urgent,2020-10-18,Inconclusive,8532,179,2,3,,,,DISCHARGED -8533,2019-12-04,49527.53956308346,264,Elective,2019-12-18,Abnormal,8533,252,2,9,,,,DISCHARGED -8534,2022-08-29,18966.58485007633,253,Emergency,2022-09-17,Abnormal,8534,125,0,15,,,,DISCHARGED -8535,2021-05-17,5907.641409649576,166,Emergency,2021-06-10,Normal,8535,176,2,27,,,,DISCHARGED -8536,2019-01-03,44434.100887535686,210,Elective,2019-01-31,Inconclusive,8536,36,3,23,,,,DISCHARGED -8537,2018-12-08,28021.50789664872,469,Emergency,2019-01-07,Abnormal,8537,409,3,18,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8539,2023-04-26,43554.54860683461,340,Urgent,2023-04-30,Normal,8539,98,1,7,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8540,2022-02-22,13510.33204129477,112,Urgent,2022-03-12,Abnormal,8540,97,0,5,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8541,2022-07-01,8479.476082817766,485,Urgent,2022-07-27,Normal,8541,126,4,3,,,,DISCHARGED -8542,2021-05-14,17233.951715408184,491,Urgent,2021-06-12,Abnormal,8542,482,1,29,,,,DISCHARGED -8543,2022-10-18,35082.49600341645,447,Emergency,2022-11-14,Abnormal,8543,167,0,6,,,,DISCHARGED -8544,2019-02-22,12776.873061970577,435,Emergency,2019-02-28,Inconclusive,8544,79,0,13,,,,DISCHARGED -8545,2022-04-24,42058.64875523408,389,Urgent,2022-04-29,Abnormal,8545,293,1,26,,,,DISCHARGED -8546,2020-07-20,1939.869308973412,134,Emergency,2020-07-27,Abnormal,8546,332,1,12,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8547,2020-07-07,30126.789136248768,166,Emergency,2020-07-16,Normal,8547,125,2,20,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -8548,2022-06-16,32377.1789887482,313,Elective,2022-06-30,Normal,8548,342,4,4,,,,DISCHARGED -8549,2018-11-19,40329.92228167312,212,Urgent,2018-11-27,Inconclusive,8549,309,3,8,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -8550,2022-07-28,47145.45635650896,156,Elective,2022-08-07,Abnormal,8550,149,2,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -8551,2018-11-07,18530.373825181712,380,Emergency,2018-12-02,Abnormal,8551,15,0,2,,,,DISCHARGED -8552,2020-07-22,2488.319624128384,243,Elective,2020-08-16,Inconclusive,8552,27,4,9,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -8554,2020-01-30,37997.50845356644,444,Urgent,2020-02-06,Normal,8554,495,4,14,,,,DISCHARGED -8556,2022-06-21,14738.370173267724,105,Urgent,2022-06-29,Normal,8556,418,1,19,,,,DISCHARGED -8557,2019-06-05,36256.493265753656,261,Emergency,2019-06-27,Inconclusive,8557,443,4,20,,,,DISCHARGED -8558,2019-09-09,14482.946018131712,354,Emergency,2019-10-07,Inconclusive,8558,172,4,16,,,,DISCHARGED -8559,2020-02-17,38391.00703026782,211,Elective,2020-03-04,Inconclusive,8559,45,0,22,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -8560,2022-01-03,14181.060090229732,305,Emergency,2022-01-16,Inconclusive,8560,327,2,23,,,,DISCHARGED -8561,2022-12-23,43448.35084813244,216,Urgent,2023-01-11,Abnormal,8561,235,4,5,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8562,2023-07-28,19136.3642052854,279,Urgent,,Inconclusive,8562,438,1,24,,,,OPEN -8563,2022-09-09,16870.187481818073,441,Emergency,2022-09-23,Normal,8563,213,2,2,,,,DISCHARGED -8565,2020-02-21,11229.345585670471,177,Elective,2020-03-11,Normal,8565,84,1,17,,,,DISCHARGED -8566,2023-04-30,20964.39866902374,349,Emergency,,Abnormal,8566,281,4,4,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -8567,2019-01-08,43054.65398107384,144,Urgent,2019-01-13,Normal,8567,231,2,12,,,,DISCHARGED -8568,2020-03-09,21031.759211334345,275,Urgent,2020-03-14,Inconclusive,8568,84,4,24,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8569,2023-07-26,48989.69712204453,144,Elective,2023-08-12,Abnormal,8569,408,0,26,,,,DISCHARGED -8570,2023-07-31,19564.730353206516,382,Emergency,2023-08-15,Normal,8570,488,2,0,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -8571,2019-04-30,39561.23671708903,310,Elective,2019-05-14,Abnormal,8571,64,1,16,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -8572,2023-07-05,18235.414140711386,388,Urgent,2023-07-08,Inconclusive,8572,133,0,25,,,,DISCHARGED -8573,2019-03-09,11040.958629268,359,Emergency,2019-03-14,Abnormal,8573,150,3,2,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8574,2020-03-30,24973.48979153339,289,Urgent,2020-04-02,Inconclusive,8574,114,1,25,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8575,2023-04-27,4666.137099162626,284,Emergency,2023-05-21,Normal,8575,63,4,18,,,,DISCHARGED -8576,2020-12-28,27349.683692315084,183,Emergency,2021-01-13,Inconclusive,8576,342,1,20,,,,DISCHARGED -8577,2020-08-28,18532.066112946017,444,Urgent,2020-09-04,Inconclusive,8577,426,3,19,,,,DISCHARGED -8578,2023-03-08,47974.393515456,406,Urgent,,Normal,8578,362,1,21,,,,OPEN -8579,2022-11-18,6222.364613076986,441,Emergency,2022-12-03,Abnormal,8579,406,0,11,,,,DISCHARGED -8580,2022-09-18,9189.289369024831,462,Urgent,2022-09-26,Normal,8580,351,1,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8581,2022-05-22,5294.36063821127,218,Emergency,2022-06-05,Abnormal,8581,157,2,7,,,,DISCHARGED -8582,2020-05-22,23192.02171176258,353,Urgent,2020-05-29,Inconclusive,8582,76,3,14,,,,DISCHARGED -8583,2018-10-31,15276.018269401537,117,Elective,2018-11-26,Inconclusive,8583,490,1,10,,,,DISCHARGED -8584,2020-12-06,32769.16614446891,432,Emergency,2020-12-30,Abnormal,8584,145,3,19,,,,DISCHARGED -8585,2019-06-16,29764.49005529812,333,Emergency,2019-07-14,Abnormal,8585,342,0,0,,,,DISCHARGED -8586,2021-12-27,46969.6116791708,323,Emergency,2022-01-10,Abnormal,8586,462,2,28,,,,DISCHARGED -8587,2019-08-20,20057.983279314925,357,Urgent,2019-09-03,Inconclusive,8587,224,4,15,,,,DISCHARGED -8588,2022-03-23,9941.174376382973,394,Elective,2022-04-07,Inconclusive,8588,404,1,29,,,,DISCHARGED -8589,2020-05-31,19859.05871424804,399,Emergency,2020-06-26,Normal,8589,312,0,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -8590,2023-04-08,17782.743947627478,163,Emergency,,Abnormal,8590,102,3,6,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",OPEN -8590,2021-03-02,43354.01301421569,138,Emergency,2021-03-18,Abnormal,8784,406,3,5,,,,DISCHARGED -8591,2021-07-14,14918.85311075017,238,Urgent,2021-07-19,Abnormal,8591,346,0,20,,,,DISCHARGED -8592,2023-09-25,4419.106658496902,208,Urgent,,Inconclusive,8592,300,1,3,,,,OPEN -8593,2020-11-26,13290.726571961077,466,Elective,2020-12-26,Inconclusive,8593,427,4,21,,,,DISCHARGED -8594,2020-03-29,46913.25532663583,186,Urgent,2020-04-05,Abnormal,8594,465,1,7,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8595,2023-03-27,17431.419557387566,333,Emergency,2023-04-07,Abnormal,8595,87,2,21,,,,DISCHARGED -8596,2022-05-16,8426.391308738366,212,Emergency,2022-05-27,Inconclusive,8596,370,1,18,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -8597,2020-10-07,30698.234587921863,136,Urgent,2020-10-15,Normal,8597,302,2,24,,,,DISCHARGED -8598,2018-11-29,24187.23346855943,464,Urgent,2018-12-25,Inconclusive,8598,167,3,2,,,,DISCHARGED -8599,2022-06-10,14580.675566612226,151,Urgent,2022-07-02,Normal,8599,434,2,3,,,,DISCHARGED -8600,2022-02-04,39716.91290792697,335,Urgent,2022-02-22,Inconclusive,8600,169,4,12,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -8601,2019-03-14,19079.51775049902,110,Urgent,2019-03-15,Normal,8601,134,0,20,,,,DISCHARGED -8602,2022-08-30,32393.69761721157,177,Emergency,2022-09-02,Normal,8602,49,2,26,,,,DISCHARGED -8603,2023-06-10,22101.802132493005,311,Elective,2023-07-02,Normal,8603,431,1,1,,,,DISCHARGED -8604,2020-06-06,42442.482266730425,410,Elective,2020-06-20,Inconclusive,8604,339,2,10,,,,DISCHARGED -8605,2020-10-22,41049.0310524492,312,Urgent,2020-11-02,Abnormal,8605,346,3,15,,,,DISCHARGED -8606,2021-11-06,39397.53286950098,442,Elective,2021-11-27,Inconclusive,8606,133,2,9,,,,DISCHARGED -8607,2022-09-06,6516.217620749194,285,Elective,2022-09-22,Normal,8607,346,4,14,,,,DISCHARGED -8608,2019-05-29,1291.1943106706103,194,Emergency,2019-06-02,Normal,8608,136,2,26,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8609,2023-06-19,45275.82145895949,170,Urgent,2023-06-30,Inconclusive,8609,244,4,9,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8610,2020-04-30,40931.17346290707,285,Elective,2020-05-15,Abnormal,8610,108,1,1,,,,DISCHARGED -8612,2022-11-18,4246.625553762583,340,Urgent,2022-11-25,Abnormal,8612,312,3,5,,,,DISCHARGED -8613,2019-07-10,40806.765033179465,364,Urgent,2019-08-04,Abnormal,8613,286,0,13,,,,DISCHARGED -8614,2019-09-05,26061.870959413536,334,Elective,2019-10-05,Normal,8614,20,1,1,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8615,2020-04-12,44693.50721985696,150,Elective,2020-04-17,Inconclusive,8615,89,1,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8616,2019-10-18,33081.62932363766,483,Elective,2019-11-10,Abnormal,8616,295,0,16,,,,DISCHARGED -8617,2022-10-06,10602.809765571308,270,Emergency,2022-10-25,Inconclusive,8617,111,2,7,,,,DISCHARGED -8618,2023-02-04,6391.1608044937175,309,Urgent,2023-03-01,Abnormal,8618,300,2,25,,,,DISCHARGED -8619,2022-03-18,22625.92637723782,315,Urgent,2022-03-26,Abnormal,8619,76,2,15,,,,DISCHARGED -8620,2023-10-01,39144.88616716336,387,Urgent,2023-10-15,Abnormal,8620,176,3,13,,,,DISCHARGED -8622,2022-07-19,45671.54483160411,493,Urgent,2022-08-02,Normal,8622,342,1,9,,,,DISCHARGED -8623,2020-02-15,26591.126249455207,407,Emergency,2020-03-14,Abnormal,8623,147,4,12,,,,DISCHARGED -8624,2020-12-22,24267.37959445451,242,Elective,2021-01-09,Normal,8624,100,0,0,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -8625,2022-04-06,27608.160156980543,121,Urgent,2022-04-26,Abnormal,8625,245,1,9,,,,DISCHARGED -8626,2019-10-28,29111.892896914334,125,Emergency,2019-10-30,Abnormal,8626,116,2,29,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -8628,2021-11-03,46267.869149613405,462,Emergency,2021-11-24,Inconclusive,8628,91,0,21,,,,DISCHARGED -8629,2020-03-13,21156.64212030629,248,Urgent,2020-04-10,Inconclusive,8629,400,4,11,,,,DISCHARGED -8630,2019-04-29,33733.332286762336,492,Elective,2019-05-05,Abnormal,8630,27,1,29,,,,DISCHARGED -8631,2019-09-11,25892.405116587677,277,Emergency,2019-09-20,Abnormal,8631,424,1,16,,,,DISCHARGED -8632,2023-10-06,39163.84867732234,351,Urgent,2023-10-11,Abnormal,8632,449,3,23,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8633,2023-01-11,49167.640130179134,363,Emergency,2023-01-20,Inconclusive,8633,24,1,13,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8634,2021-09-22,28844.56025998443,108,Urgent,2021-10-12,Inconclusive,8634,57,1,4,,,,DISCHARGED -8636,2019-04-25,17631.07584104041,497,Urgent,2019-04-27,Normal,8636,497,4,18,,,,DISCHARGED -8637,2018-10-30,3700.492792020604,412,Emergency,2018-11-01,Normal,8637,296,4,4,,,,DISCHARGED -8638,2021-03-02,36627.55105054712,110,Elective,2021-03-21,Normal,8638,133,0,14,,,,DISCHARGED -8641,2020-01-08,26506.958402153617,358,Emergency,2020-02-06,Abnormal,8641,330,2,12,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8642,2021-07-31,32905.673599632544,182,Urgent,2021-08-10,Inconclusive,8642,248,4,16,,,,DISCHARGED -8644,2019-09-19,23716.221389245184,270,Emergency,2019-09-27,Abnormal,8644,37,0,0,,,,DISCHARGED -8645,2021-04-17,29720.63218212293,374,Emergency,2021-05-03,Abnormal,8645,389,1,27,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -8646,2021-02-28,35285.826961641484,454,Elective,2021-03-19,Normal,8646,428,0,13,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8647,2022-12-26,14024.970192637467,496,Urgent,2023-01-17,Normal,8647,74,0,3,,,,DISCHARGED -8648,2020-03-04,34668.08503838363,153,Elective,2020-03-09,Normal,8648,141,0,24,,,,DISCHARGED -8649,2022-09-20,6533.844231395243,330,Elective,2022-10-07,Normal,8649,321,0,29,,,,DISCHARGED -8650,2021-04-14,38349.7700935063,462,Emergency,2021-04-19,Normal,8650,167,4,8,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8651,2023-01-02,33896.988099156886,273,Urgent,2023-01-22,Normal,8651,258,2,16,,,,DISCHARGED -8652,2022-09-29,10049.968524517948,231,Emergency,2022-10-12,Normal,8652,372,0,2,,,,DISCHARGED -8654,2020-02-01,1152.310743280387,222,Urgent,2020-02-10,Abnormal,8654,354,3,12,,,,DISCHARGED -8655,2023-04-29,5718.780372449003,443,Urgent,2023-05-29,Abnormal,8655,224,1,11,,,,DISCHARGED -8656,2022-02-15,2906.538366336583,108,Urgent,2022-03-15,Normal,8656,151,1,15,,,,DISCHARGED -8657,2021-03-26,28204.476806295264,278,Elective,2021-04-03,Abnormal,8657,18,1,3,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8658,2019-12-02,49191.40004277582,452,Emergency,2019-12-23,Abnormal,8658,145,1,17,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8659,2022-03-29,2964.9539195557845,271,Emergency,2022-04-06,Inconclusive,8659,447,1,22,,,,DISCHARGED -8660,2022-02-10,31485.9006881171,356,Emergency,2022-03-03,Abnormal,8660,240,0,2,,,,DISCHARGED -8661,2019-01-28,49277.22931474176,351,Elective,2019-02-01,Inconclusive,8661,371,2,16,,,,DISCHARGED -8663,2021-08-11,17453.28206996105,128,Emergency,2021-08-18,Normal,8663,380,3,0,,,,DISCHARGED -8665,2020-11-15,16902.316175898784,471,Elective,2020-12-15,Normal,8665,343,4,18,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -8666,2022-11-09,41333.60162685347,285,Urgent,2022-12-05,Abnormal,8666,236,3,21,,,,DISCHARGED -8666,2019-07-25,22880.745670884626,262,Urgent,2019-08-24,Normal,9699,34,4,3,,,,DISCHARGED -8667,2019-06-12,15224.85975555282,458,Urgent,2019-06-17,Inconclusive,8667,189,4,16,,,,DISCHARGED -8668,2023-07-12,30026.23053735445,407,Elective,2023-07-16,Normal,8668,0,3,6,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8669,2023-06-11,4176.834899472101,477,Urgent,2023-06-24,Normal,8669,483,0,1,,,,DISCHARGED -8670,2021-08-07,15278.436974502298,393,Elective,2021-09-03,Inconclusive,8670,152,1,11,,,,DISCHARGED -8671,2023-06-24,20253.070430926316,218,Urgent,2023-06-28,Normal,8671,428,0,4,,,,DISCHARGED -8672,2023-08-25,19801.48951516921,271,Elective,2023-09-16,Inconclusive,8672,432,1,15,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -8673,2022-08-31,4211.71738280996,324,Emergency,2022-09-08,Normal,8673,125,2,7,,,,DISCHARGED -8674,2020-01-13,1582.0782060576712,164,Elective,2020-02-02,Inconclusive,8674,490,4,22,,,,DISCHARGED -8675,2020-03-27,47333.64992028892,115,Emergency,2020-04-15,Inconclusive,8675,481,3,26,,,,DISCHARGED -8676,2022-10-11,12933.87238248588,171,Emergency,2022-10-24,Inconclusive,8676,344,2,27,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -8677,2021-12-08,37392.0139747122,160,Emergency,2021-12-15,Inconclusive,8677,399,1,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -8678,2019-07-06,41412.00476419916,157,Emergency,2019-07-30,Abnormal,8678,225,0,12,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8679,2019-11-21,25917.703226027763,245,Elective,2019-12-02,Normal,8679,220,3,25,,,,DISCHARGED -8680,2023-07-11,15196.351837065124,350,Elective,2023-07-21,Inconclusive,8680,402,4,13,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8681,2023-01-24,5101.94671881426,223,Emergency,2023-01-26,Abnormal,8681,406,2,10,,,,DISCHARGED -8682,2019-11-23,43449.65348962339,135,Urgent,2019-11-27,Normal,8682,210,4,5,,,,DISCHARGED -8683,2021-07-01,45706.98479115704,270,Emergency,2021-07-11,Inconclusive,8683,24,1,15,,,,DISCHARGED -8684,2021-09-10,27895.20904586642,262,Urgent,2021-10-10,Inconclusive,8684,15,4,22,,,,DISCHARGED -8685,2021-09-18,38752.27169096681,267,Emergency,2021-09-25,Normal,8685,181,0,24,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -8686,2019-11-07,39688.13603084733,497,Emergency,2019-12-07,Normal,8686,498,2,21,,,,DISCHARGED -8687,2020-06-09,40786.13191735392,148,Emergency,2020-06-20,Inconclusive,8687,328,2,24,,,,DISCHARGED -8688,2023-02-19,29275.64954629657,440,Urgent,2023-03-07,Inconclusive,8688,128,0,14,,,,DISCHARGED -8689,2021-04-27,45653.76071716618,485,Emergency,2021-04-28,Abnormal,8689,41,4,15,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8690,2021-11-12,7396.168131341648,436,Urgent,2021-11-24,Inconclusive,8690,402,0,12,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8691,2023-06-06,27764.172527570543,140,Elective,2023-07-02,Abnormal,8691,480,3,11,,,,DISCHARGED -8692,2021-07-12,1982.235228462564,230,Emergency,2021-07-14,Normal,8692,417,0,17,,,,DISCHARGED -8693,2023-01-07,28263.44703116675,346,Emergency,,Normal,8693,335,4,28,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",OPEN -8694,2021-01-18,28889.051684635797,404,Emergency,2021-01-26,Inconclusive,8694,235,0,17,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8695,2023-08-01,14496.099640500195,298,Elective,2023-08-07,Inconclusive,8695,359,1,13,,,,DISCHARGED -8696,2023-03-04,20373.09187901853,500,Elective,2023-03-31,Normal,8696,438,0,1,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8697,2021-07-03,15159.584795588327,320,Emergency,2021-07-14,Normal,8697,401,0,21,,,,DISCHARGED -8698,2022-04-14,40266.14823042958,184,Urgent,2022-05-09,Inconclusive,8698,33,4,1,,,,DISCHARGED -8699,2020-04-13,19836.922036712956,489,Emergency,2020-05-13,Abnormal,8699,344,3,2,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8700,2018-12-22,44240.08887997178,402,Emergency,2018-12-26,Inconclusive,8700,380,3,28,,,,DISCHARGED -8701,2022-12-22,6140.662283043372,456,Emergency,2023-01-17,Abnormal,8701,44,4,23,,,,DISCHARGED -8702,2020-08-14,39318.35814839982,445,Elective,2020-09-09,Abnormal,8702,133,4,7,,,,DISCHARGED -8703,2022-05-23,16542.84340877849,376,Urgent,2022-06-02,Normal,8703,20,4,10,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -8704,2019-08-12,20309.542732046142,383,Elective,2019-09-03,Abnormal,8704,121,1,11,,,,DISCHARGED -8705,2023-05-23,23574.01952169489,238,Urgent,2023-06-22,Abnormal,8705,69,2,3,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8706,2020-11-04,31217.055872418165,412,Elective,2020-11-25,Normal,8706,351,0,8,,,,DISCHARGED -8707,2023-07-11,2894.0332957492437,469,Elective,,Inconclusive,8707,360,4,23,,,,OPEN -8708,2021-12-09,15008.772519052927,229,Urgent,2021-12-21,Abnormal,8708,47,4,16,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -8709,2018-11-01,16215.102176726516,360,Urgent,2018-11-09,Normal,8709,490,4,23,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8710,2023-08-09,3767.521151136848,177,Urgent,2023-08-27,Inconclusive,8710,38,3,15,,,,DISCHARGED -8711,2021-02-26,9527.858942146975,133,Emergency,2021-03-19,Inconclusive,8711,286,4,16,,,,DISCHARGED -8712,2019-01-12,42521.87376027004,424,Elective,2019-01-18,Normal,8712,489,0,14,,,,DISCHARGED -8713,2021-10-05,26139.54314482733,182,Urgent,2021-10-11,Inconclusive,8713,9,4,19,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8714,2023-06-12,16173.15518604218,303,Elective,,Abnormal,8714,29,0,25,,,,OPEN -8716,2022-12-01,26513.982826153024,102,Emergency,2022-12-21,Normal,8716,243,1,21,,,,DISCHARGED -8717,2023-01-07,11627.89408350979,215,Elective,2023-01-10,Normal,8717,273,2,6,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8718,2018-11-24,20523.4776346566,305,Elective,2018-11-30,Abnormal,8718,443,3,9,,,,DISCHARGED -8719,2020-08-30,21608.95622541413,141,Emergency,2020-09-07,Normal,8719,87,0,28,,,,DISCHARGED -8720,2018-12-20,44176.79850181088,226,Elective,2019-01-15,Normal,8720,243,1,3,,,,DISCHARGED -8721,2022-01-21,8920.27933496386,316,Emergency,2022-01-30,Inconclusive,8721,380,2,23,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8722,2023-08-15,1848.4853746754584,286,Urgent,,Abnormal,8722,328,2,23,,,,OPEN -8723,2020-12-28,46979.65916959913,469,Elective,2021-01-07,Abnormal,8723,478,2,13,,,,DISCHARGED -8724,2020-05-28,11245.901145231675,216,Urgent,2020-06-24,Inconclusive,8724,14,0,13,,,,DISCHARGED -8725,2019-08-05,15531.442175944569,230,Elective,2019-08-24,Normal,8725,3,1,13,,,,DISCHARGED -8725,2023-08-18,9000.789173546491,270,Emergency,2023-09-13,Normal,9189,190,4,24,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8726,2020-06-03,21093.99854085436,491,Emergency,2020-06-19,Inconclusive,8726,167,1,13,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -8727,2021-12-25,37081.56196356824,394,Emergency,2022-01-07,Inconclusive,8727,8,1,21,,,,DISCHARGED -8728,2020-07-12,13131.378059604129,450,Emergency,2020-07-31,Inconclusive,8728,108,1,19,,,,DISCHARGED -8729,2020-05-08,21820.031775058625,480,Elective,2020-05-24,Normal,8729,136,0,17,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -8730,2019-10-18,34874.32472074103,230,Urgent,2019-11-11,Abnormal,8730,153,0,14,,,,DISCHARGED -8732,2022-03-13,23389.08489101608,117,Urgent,2022-04-02,Abnormal,8732,387,0,22,,,,DISCHARGED -8733,2020-08-11,21445.767332907104,247,Emergency,2020-09-07,Abnormal,8733,208,1,25,,,,DISCHARGED -8734,2023-09-23,22962.93609582673,175,Emergency,2023-10-15,Abnormal,8734,271,0,18,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8735,2020-09-11,36032.08127354367,406,Elective,2020-10-06,Abnormal,8735,142,2,26,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8736,2021-02-10,12858.556883054562,151,Emergency,2021-02-24,Normal,8736,98,0,12,,,,DISCHARGED -8737,2022-03-17,12294.397835012687,430,Emergency,2022-04-16,Abnormal,8737,376,3,11,,,,DISCHARGED -8738,2022-08-09,24257.760765731604,268,Urgent,2022-08-13,Inconclusive,8738,307,0,18,,,,DISCHARGED -8739,2021-02-16,20948.274451910405,191,Emergency,2021-03-17,Inconclusive,8739,68,0,18,,,,DISCHARGED -8740,2021-04-01,4934.618762681976,336,Emergency,2021-04-02,Abnormal,8740,246,0,19,,,,DISCHARGED -8741,2020-06-30,28388.147738741685,461,Elective,2020-07-20,Abnormal,8741,260,0,1,,,,DISCHARGED -8742,2020-12-19,23002.28270626964,388,Elective,2021-01-09,Abnormal,8742,275,3,28,,,,DISCHARGED -8743,2019-05-17,24020.733817810364,147,Elective,2019-05-25,Abnormal,8743,78,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8744,2019-04-05,40933.05843889134,103,Emergency,2019-04-28,Normal,8744,145,0,20,,,,DISCHARGED -8745,2023-08-24,45493.200610768174,166,Emergency,2023-09-03,Abnormal,8745,110,2,2,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -8746,2022-10-27,16480.561354994497,318,Emergency,2022-11-26,Abnormal,8746,257,3,9,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -8747,2019-03-16,19364.2925443635,303,Emergency,2019-03-19,Abnormal,8747,92,4,4,,,,DISCHARGED -8748,2022-09-23,15892.99606523397,481,Urgent,2022-10-02,Abnormal,8748,12,0,11,,,,DISCHARGED -8749,2021-02-25,5043.753604038759,366,Elective,2021-03-23,Normal,8749,259,4,28,,,,DISCHARGED -8750,2022-05-24,22064.396325319965,398,Urgent,2022-06-07,Normal,8750,425,2,6,,,,DISCHARGED -8751,2019-09-30,13091.472070393673,289,Elective,2019-10-08,Abnormal,8751,108,3,8,,,,DISCHARGED -8752,2019-12-26,28550.08016377527,456,Elective,2020-01-20,Abnormal,8752,329,3,1,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -8753,2021-05-21,42537.04768272656,459,Emergency,2021-05-27,Normal,8753,188,4,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8754,2019-08-05,28236.858927967056,382,Urgent,2019-08-13,Abnormal,8754,94,0,9,,,,DISCHARGED -8755,2023-10-29,46014.45365746004,343,Urgent,2023-11-12,Normal,8755,104,1,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -8756,2021-09-18,49379.47933534483,237,Urgent,2021-10-11,Abnormal,8756,7,3,11,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8757,2020-04-29,39616.85995851848,346,Elective,2020-05-14,Abnormal,8757,66,1,5,,,,DISCHARGED -8758,2022-06-29,15613.08711872064,358,Urgent,2022-07-29,Normal,8758,495,3,26,,,,DISCHARGED -8759,2020-03-04,19944.113700528887,178,Emergency,2020-03-29,Abnormal,8759,190,0,2,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8760,2021-12-10,21113.191415002315,108,Urgent,2021-12-12,Inconclusive,8760,365,0,29,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -8761,2021-11-13,11744.960012023532,372,Elective,2021-11-28,Inconclusive,8761,255,3,9,,,,DISCHARGED -8762,2023-09-26,9932.098150870052,371,Emergency,2023-10-23,Abnormal,8762,8,4,28,,,,DISCHARGED -8763,2019-03-12,20852.64898764576,489,Emergency,2019-04-07,Normal,8763,477,0,8,,,,DISCHARGED -8764,2020-09-20,19452.34354673211,119,Elective,2020-10-16,Normal,8764,116,0,19,,,,DISCHARGED -8765,2022-03-24,36635.80930655231,240,Elective,2022-04-07,Inconclusive,8765,266,2,4,,,,DISCHARGED -8766,2020-03-04,20662.848665624497,434,Emergency,2020-03-17,Abnormal,8766,98,0,2,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -8767,2023-07-21,42660.638251246295,127,Emergency,2023-08-04,Normal,8767,484,2,4,,,,DISCHARGED -8768,2020-01-19,20474.61252069474,114,Elective,2020-01-29,Normal,8768,297,0,7,,,,DISCHARGED -8769,2019-02-19,32365.593377994377,180,Elective,2019-03-14,Normal,8769,396,0,7,,,,DISCHARGED -8770,2023-02-16,36560.36485754349,155,Elective,2023-03-13,Inconclusive,8770,163,4,13,,,,DISCHARGED -8771,2019-10-28,32722.50671498724,479,Elective,2019-11-07,Normal,8771,375,4,23,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8773,2021-10-06,9147.755775366291,226,Emergency,2021-10-11,Abnormal,8773,140,0,21,,,,DISCHARGED -8774,2019-06-13,32543.39737643392,156,Elective,2019-06-20,Normal,8774,267,3,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -8775,2019-01-17,26899.292786988943,176,Elective,2019-01-24,Abnormal,8775,36,3,10,,,,DISCHARGED -8776,2022-03-24,22863.633180661105,368,Emergency,2022-03-28,Abnormal,8776,73,0,25,,,,DISCHARGED -8777,2021-02-06,2370.594240984364,196,Emergency,2021-02-19,Normal,8777,72,3,15,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8778,2022-05-23,31802.00918426117,272,Elective,2022-06-15,Normal,8778,307,0,27,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8779,2020-02-18,13120.256411533355,106,Urgent,2020-03-14,Normal,8779,198,4,5,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8780,2022-10-25,32086.237733317244,481,Elective,2022-11-14,Abnormal,8780,129,1,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -8781,2019-12-01,10243.532588127282,459,Elective,2019-12-17,Inconclusive,8781,245,2,10,,,,DISCHARGED -8782,2021-03-08,2932.650504559624,437,Urgent,2021-04-02,Inconclusive,8782,311,3,9,,,,DISCHARGED -8783,2021-07-02,20466.53538387883,177,Urgent,2021-07-23,Abnormal,8783,59,3,22,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -8785,2019-03-08,40219.59087107677,152,Elective,2019-03-14,Normal,8785,278,4,29,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8787,2020-09-30,31385.989006774293,459,Emergency,2020-10-08,Inconclusive,8787,102,3,8,,,,DISCHARGED -8788,2023-03-05,32694.66216524664,140,Emergency,,Abnormal,8788,295,0,27,,,,OPEN -8789,2018-12-04,49995.90228322116,196,Emergency,2018-12-11,Abnormal,8789,319,0,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -8790,2020-01-13,24549.336768721707,467,Emergency,2020-02-09,Inconclusive,8790,486,1,26,,,,DISCHARGED -8791,2021-01-03,25040.73209841201,354,Emergency,2021-01-23,Normal,8791,340,1,27,,,,DISCHARGED -8792,2019-10-30,32227.05152251872,382,Elective,2019-11-13,Abnormal,8792,150,1,23,,,,DISCHARGED -8794,2021-02-06,33631.463439198706,223,Elective,2021-02-13,Abnormal,8794,156,0,14,,,,DISCHARGED -8795,2020-11-01,37441.33469240476,140,Urgent,2020-11-08,Abnormal,8795,205,1,6,,,,DISCHARGED -8796,2022-08-03,22804.329661455173,365,Elective,2022-08-11,Abnormal,8796,473,1,17,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -8797,2022-11-16,29185.08007237015,235,Emergency,2022-12-01,Inconclusive,8797,178,0,0,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8798,2020-10-28,46947.169445363215,498,Urgent,2020-10-29,Inconclusive,8798,196,4,14,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -8799,2022-03-22,14007.12618191666,475,Urgent,2022-04-09,Abnormal,8799,222,3,1,,,,DISCHARGED -8800,2020-01-07,41396.865371356296,316,Urgent,2020-01-18,Abnormal,8800,88,2,21,,,,DISCHARGED -8801,2023-02-08,5992.242186031815,182,Elective,,Normal,8801,286,0,28,,,,OPEN -8802,2021-10-28,28071.733800422026,226,Elective,2021-11-08,Abnormal,8802,433,0,1,,,,DISCHARGED -8803,2019-12-29,17768.198240682097,147,Emergency,2020-01-11,Inconclusive,8803,275,2,9,,,,DISCHARGED -8804,2019-06-28,1421.173737697727,142,Emergency,2019-07-20,Normal,8804,235,2,19,,,,DISCHARGED -8805,2021-11-29,39779.32591852544,129,Emergency,2021-12-01,Abnormal,8805,182,1,14,,,,DISCHARGED -8806,2021-01-03,29144.16909817545,180,Elective,2021-01-08,Inconclusive,8806,208,2,9,,,,DISCHARGED -8807,2021-07-09,33255.59064938876,490,Emergency,2021-07-24,Normal,8807,492,3,18,,,,DISCHARGED -8808,2023-02-01,23867.496630199785,155,Emergency,2023-02-06,Normal,8808,129,3,21,,,,DISCHARGED -8809,2020-09-19,18902.43155787442,408,Urgent,2020-10-10,Normal,8809,152,3,27,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -8810,2021-04-15,23071.51048687228,201,Emergency,2021-05-09,Abnormal,8810,12,3,27,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8811,2019-02-09,17563.329851257087,321,Urgent,2019-02-23,Normal,8811,121,3,12,,,,DISCHARGED -8813,2023-01-06,42259.15488087408,438,Emergency,2023-01-30,Abnormal,8813,358,1,29,,,,DISCHARGED -8814,2020-12-14,46972.341781159244,148,Elective,2021-01-05,Normal,8814,219,0,23,,,,DISCHARGED -8816,2020-01-14,23128.816875445504,482,Emergency,2020-01-19,Normal,8816,105,2,10,,,,DISCHARGED -8817,2023-04-22,44314.40754519525,478,Elective,,Normal,8817,374,0,21,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),OPEN -8818,2019-09-12,1207.38153187721,460,Emergency,2019-10-02,Normal,8818,69,2,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -8819,2020-12-15,32098.891980889173,334,Elective,2020-12-31,Inconclusive,8819,194,1,20,,,,DISCHARGED -8821,2020-01-28,10149.9279737987,395,Emergency,2020-02-06,Normal,8821,185,1,26,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8822,2022-06-10,38305.1269067513,428,Elective,2022-06-27,Normal,8822,98,4,12,,,,DISCHARGED -8823,2022-11-15,36158.41247639777,494,Elective,2022-12-15,Inconclusive,8823,81,4,21,,,,DISCHARGED -8824,2022-10-25,45240.42667200669,212,Elective,2022-11-24,Inconclusive,8824,74,1,24,,,,DISCHARGED -8825,2021-08-21,3446.7423231202984,301,Emergency,2021-09-13,Inconclusive,8825,373,1,21,,,,DISCHARGED -8826,2023-03-25,44771.17436831207,437,Elective,2023-04-11,Abnormal,8826,339,2,25,,,,DISCHARGED -8827,2019-01-18,31620.93575294441,135,Elective,2019-02-07,Inconclusive,8827,191,1,20,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8828,2021-10-25,18258.212595218567,488,Urgent,2021-11-12,Abnormal,8828,324,0,0,,,,DISCHARGED -8830,2020-05-18,46086.262768810186,388,Urgent,2020-06-13,Abnormal,8830,466,2,25,,,,DISCHARGED -8831,2021-07-07,15030.203473365353,380,Elective,2021-07-25,Abnormal,8831,213,1,4,,,,DISCHARGED -8832,2022-06-22,34096.99120017301,420,Emergency,2022-06-28,Abnormal,8832,314,2,20,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8833,2022-03-03,1648.6815797705244,304,Elective,2022-03-06,Abnormal,8833,443,2,21,,,,DISCHARGED -8834,2022-08-12,17437.233275508286,135,Urgent,2022-09-07,Abnormal,8834,466,3,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8835,2021-11-03,21597.844402057253,185,Urgent,2021-11-15,Abnormal,8835,381,4,12,,,,DISCHARGED -8836,2021-01-23,21970.20890031881,344,Emergency,2021-02-02,Normal,8836,366,2,12,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8838,2021-12-30,38143.40974201474,212,Emergency,2022-01-21,Inconclusive,8838,317,2,19,,,,DISCHARGED -8839,2020-12-07,26938.24038777928,111,Urgent,2021-01-04,Normal,8839,143,3,22,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -8840,2018-12-29,33250.43652797085,203,Emergency,2019-01-12,Inconclusive,8840,383,1,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -8842,2023-09-12,1057.0173328013211,417,Elective,2023-09-13,Normal,8842,215,2,5,,,,DISCHARGED -8843,2018-12-09,21290.5516115989,487,Elective,2018-12-23,Abnormal,8843,360,3,19,,,,DISCHARGED -8844,2018-12-15,34894.74191223091,138,Urgent,2018-12-19,Normal,8844,323,0,11,,,,DISCHARGED -8845,2022-10-31,35752.34683154368,128,Emergency,2022-11-02,Abnormal,8845,14,3,7,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8847,2022-09-11,48512.20574926701,271,Urgent,2022-10-08,Abnormal,8847,216,4,8,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -8848,2019-08-15,4221.521414111998,474,Emergency,2019-09-02,Inconclusive,8848,491,4,17,,,,DISCHARGED -8849,2021-08-12,45622.74088808528,127,Emergency,2021-08-18,Normal,8849,438,1,27,,,,DISCHARGED -8850,2019-07-19,21415.300355684216,300,Urgent,2019-07-29,Normal,8850,34,1,10,,,,DISCHARGED -8851,2022-12-05,37088.86760765881,182,Emergency,2022-12-17,Normal,8851,182,4,19,,,,DISCHARGED -8852,2021-11-16,42332.96341216854,173,Urgent,2021-11-22,Inconclusive,8852,269,4,10,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8853,2019-05-17,15554.63780928277,321,Elective,2019-06-05,Inconclusive,8853,432,2,23,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8854,2018-10-31,16342.647401791084,132,Emergency,2018-11-09,Normal,8854,466,4,23,,,,DISCHARGED -8855,2023-01-06,49793.61481604037,124,Emergency,,Normal,8855,357,1,14,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -8856,2020-03-11,22695.255248953174,259,Elective,2020-03-26,Normal,8856,99,4,8,,,,DISCHARGED -8857,2022-09-30,1205.0023448830134,401,Urgent,2022-10-23,Abnormal,8857,6,1,2,,,,DISCHARGED -8858,2022-03-27,27851.90957688142,376,Emergency,2022-04-14,Abnormal,8858,29,0,16,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -8859,2022-07-03,4776.335565785606,492,Emergency,2022-08-02,Inconclusive,8859,466,4,24,,,,DISCHARGED -8860,2019-07-30,34345.20255806178,427,Emergency,2019-08-14,Abnormal,8860,304,1,16,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8861,2020-05-05,46053.18340586411,169,Elective,2020-05-08,Normal,8861,472,3,2,,,,DISCHARGED -8862,2021-05-16,44332.88342638182,464,Elective,2021-05-26,Abnormal,8862,143,2,18,,,,DISCHARGED -8863,2022-10-16,36239.18123326368,470,Emergency,2022-10-24,Abnormal,8863,110,1,8,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8864,2021-07-27,8158.801358616851,302,Elective,2021-08-12,Normal,8864,231,4,16,,,,DISCHARGED -8865,2019-07-27,19640.21974211076,278,Elective,2019-08-26,Inconclusive,8865,178,4,22,,,,DISCHARGED -8866,2021-02-06,22270.216813227325,277,Urgent,2021-02-19,Normal,8866,71,0,17,,,,DISCHARGED -8867,2018-11-30,12722.916124155116,325,Elective,2018-12-01,Normal,8867,209,3,22,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8868,2020-06-14,28704.598234273,334,Emergency,2020-06-22,Normal,8868,219,1,14,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -8869,2020-11-02,13297.978057229811,212,Elective,2020-11-29,Inconclusive,8869,79,3,0,,,,DISCHARGED -8870,2020-10-16,39010.69256403665,389,Urgent,2020-11-01,Inconclusive,8870,499,0,28,,,,DISCHARGED -8871,2020-10-06,29714.10632345313,408,Emergency,2020-10-10,Abnormal,8871,82,2,25,,,,DISCHARGED -8872,2020-07-07,36090.2835690568,371,Elective,2020-07-19,Inconclusive,8872,41,3,9,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -8873,2020-10-22,17107.55128020529,370,Emergency,2020-11-02,Inconclusive,8873,272,0,7,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -8874,2020-06-08,22361.075098493384,121,Elective,2020-06-20,Normal,8874,190,1,9,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8875,2021-07-23,44852.06205789174,180,Elective,2021-08-08,Normal,8875,172,2,28,,,,DISCHARGED -8876,2023-07-15,8234.347136322793,262,Urgent,2023-07-19,Inconclusive,8876,460,4,25,,,,DISCHARGED -8877,2020-11-06,26891.698187647817,407,Elective,2020-11-19,Inconclusive,8877,6,0,1,,,,DISCHARGED -8878,2019-03-15,16118.464519963878,469,Emergency,2019-03-22,Inconclusive,8878,154,4,18,,,,DISCHARGED -8879,2020-11-01,16768.88958616399,458,Urgent,2020-11-05,Abnormal,8879,9,2,13,,,,DISCHARGED -8880,2023-06-26,19440.15245480085,110,Emergency,2023-07-26,Abnormal,8880,33,0,7,,,,DISCHARGED -8881,2023-07-20,45196.07955763424,190,Urgent,2023-08-05,Normal,8881,35,0,18,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8882,2020-02-08,42604.69830355437,197,Elective,2020-02-21,Abnormal,8882,408,2,0,,,,DISCHARGED -8883,2019-05-09,23105.48964709527,131,Emergency,2019-05-12,Abnormal,8883,5,1,15,,,,DISCHARGED -8884,2023-08-12,34805.28914653571,360,Emergency,,Abnormal,8884,407,0,24,,,,OPEN -8885,2023-10-14,45477.06014120869,431,Urgent,,Normal,8885,401,2,23,,,,OPEN -8886,2022-01-06,40869.317220283774,492,Elective,2022-01-28,Inconclusive,8886,214,3,14,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -8887,2020-12-05,11299.29708560354,445,Urgent,2020-12-28,Inconclusive,8887,133,4,19,,,,DISCHARGED -8888,2022-02-08,36884.81221275551,214,Elective,2022-02-24,Inconclusive,8888,284,0,23,,,,DISCHARGED -8889,2022-06-26,10369.077866893536,110,Emergency,2022-07-07,Abnormal,8889,125,3,29,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -8890,2019-10-28,38231.915430776746,337,Emergency,2019-11-08,Normal,8890,408,0,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8891,2022-09-02,16917.90347100207,304,Urgent,2022-09-26,Abnormal,8891,438,1,2,,,,DISCHARGED -8892,2019-06-06,27717.00745236392,477,Urgent,2019-06-15,Abnormal,8892,336,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8893,2020-04-11,43211.09093660289,237,Elective,2020-04-22,Inconclusive,8893,173,0,28,,,,DISCHARGED -8895,2022-06-09,44509.26579540538,202,Emergency,2022-06-22,Inconclusive,8895,151,2,9,,,,DISCHARGED -8896,2023-10-12,33644.878187553724,366,Emergency,,Inconclusive,8896,330,0,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",OPEN -8897,2021-10-06,45339.75780168944,351,Emergency,2021-10-19,Normal,8897,25,1,10,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8898,2020-01-13,49505.17942694056,430,Emergency,2020-02-04,Inconclusive,8898,382,1,5,,,,DISCHARGED -8899,2023-10-11,46925.43295989384,354,Emergency,2023-10-15,Abnormal,8899,114,3,3,,,,DISCHARGED -8900,2021-12-07,42997.25850307118,394,Urgent,2021-12-18,Inconclusive,8900,381,1,6,,,,DISCHARGED -8901,2022-12-23,47905.59878064817,220,Emergency,2023-01-13,Normal,8901,481,2,18,,,,DISCHARGED -8902,2023-03-03,5607.5789234838085,296,Emergency,2023-03-11,Abnormal,8902,283,1,6,,,,DISCHARGED -8903,2019-06-29,41928.02935320205,132,Elective,2019-07-04,Normal,8903,386,0,13,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8904,2021-08-20,40919.77331102932,347,Emergency,2021-09-08,Abnormal,8904,74,1,16,,,,DISCHARGED -8905,2022-05-15,14885.39641630494,250,Elective,2022-06-12,Normal,8905,165,2,22,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8906,2021-02-25,5404.22659317914,283,Urgent,2021-03-23,Inconclusive,8906,188,0,16,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -8907,2019-01-15,45155.856245248986,418,Urgent,2019-01-22,Inconclusive,8907,77,3,12,,,,DISCHARGED -8908,2022-09-19,39256.51859257606,440,Urgent,2022-10-12,Abnormal,8908,434,3,26,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8909,2023-03-09,15720.767589225248,387,Urgent,2023-03-12,Inconclusive,8909,89,3,0,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8910,2020-07-31,39576.44156529724,338,Elective,2020-08-12,Abnormal,8910,175,0,1,,,,DISCHARGED -8911,2023-08-04,34993.850535433296,493,Urgent,2023-08-20,Inconclusive,8911,20,3,17,,,,DISCHARGED -8913,2020-09-30,37608.99728979994,295,Emergency,2020-10-20,Normal,8913,53,1,3,,,,DISCHARGED -8914,2020-05-06,32822.53860908498,132,Emergency,2020-06-03,Abnormal,8914,183,0,12,,,,DISCHARGED -8915,2021-04-28,29257.6185609011,255,Urgent,2021-05-09,Inconclusive,8915,358,0,0,,,,DISCHARGED -8916,2018-12-05,17633.18863917003,429,Elective,2018-12-18,Normal,8916,221,0,3,,,,DISCHARGED -8917,2019-01-07,8574.686543798145,442,Urgent,2019-02-02,Abnormal,8917,314,4,1,,,,DISCHARGED -8918,2023-04-26,6977.992688976139,449,Emergency,2023-05-14,Normal,8918,327,2,3,,,,DISCHARGED -8919,2019-01-15,25957.890155685956,457,Urgent,2019-01-21,Normal,8919,178,4,15,,,,DISCHARGED -8920,2020-10-14,6332.782405740347,490,Urgent,2020-10-24,Normal,8920,275,4,3,,,,DISCHARGED -8921,2022-01-07,47086.46889949201,358,Elective,2022-01-13,Inconclusive,8921,111,4,24,,,,DISCHARGED -8923,2023-10-05,16076.570488251871,200,Emergency,2023-10-13,Inconclusive,8923,223,2,8,,,,DISCHARGED -8924,2022-01-01,37180.65231316765,313,Emergency,2022-01-31,Abnormal,8924,213,4,16,,,,DISCHARGED -8925,2019-01-31,10184.754974590553,220,Elective,2019-02-03,Inconclusive,8925,58,3,20,,,,DISCHARGED -8926,2019-12-26,18195.180826518423,317,Elective,2020-01-20,Normal,8926,326,0,22,,,,DISCHARGED -8927,2019-08-22,38187.57621397792,231,Elective,2019-09-19,Abnormal,8927,392,0,19,,,,DISCHARGED -8928,2022-02-15,27449.29643590696,181,Urgent,2022-02-28,Abnormal,8928,108,1,27,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -8930,2023-10-09,25969.070628162943,476,Urgent,2023-10-22,Abnormal,8930,384,3,20,,,,DISCHARGED -8931,2020-04-29,18694.21190093016,223,Emergency,2020-05-25,Inconclusive,8931,156,2,1,,,,DISCHARGED -8932,2021-04-24,49289.85116757696,478,Emergency,2021-05-07,Abnormal,8932,190,0,2,,,,DISCHARGED -8933,2022-04-08,47926.65374072431,364,Urgent,2022-05-03,Abnormal,8933,199,4,22,,,,DISCHARGED -8934,2023-04-21,23986.89677398524,251,Urgent,,Inconclusive,8934,311,1,25,,,,OPEN -8935,2020-02-05,46020.76588294241,338,Elective,2020-02-16,Inconclusive,8935,195,1,28,,,,DISCHARGED -8936,2021-05-11,26981.63482085532,340,Emergency,2021-06-06,Normal,8936,34,0,14,,,,DISCHARGED -8937,2022-09-05,31318.46582945402,236,Emergency,2022-10-02,Abnormal,8937,378,3,6,,,,DISCHARGED -8938,2018-11-08,38453.1710640005,446,Urgent,2018-11-10,Inconclusive,8938,386,1,3,,,,DISCHARGED -8939,2022-04-01,41619.30247989572,266,Emergency,2022-04-08,Normal,8939,245,0,11,,,,DISCHARGED -8940,2022-09-19,45714.63357766769,268,Emergency,2022-10-13,Inconclusive,8940,236,3,0,,,,DISCHARGED -8941,2022-11-13,9757.978910490763,477,Urgent,2022-12-02,Inconclusive,8941,103,0,16,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -8943,2018-12-01,21578.28782841036,215,Emergency,2018-12-04,Inconclusive,8943,6,0,3,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8944,2021-04-04,27788.69446378368,451,Elective,2021-04-18,Abnormal,8944,282,3,3,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8945,2023-09-11,10237.928963854469,118,Emergency,,Inconclusive,8945,0,3,21,,,,OPEN -8946,2023-07-23,27513.435346467493,326,Urgent,,Inconclusive,8946,218,3,22,,,,OPEN -8947,2020-11-08,15255.912575103685,242,Emergency,2020-11-26,Inconclusive,8947,463,0,24,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -8948,2020-04-02,39339.96760241062,288,Elective,2020-04-25,Abnormal,8948,229,1,8,,,,DISCHARGED -8949,2022-05-04,1103.5589034954205,345,Emergency,2022-05-25,Abnormal,8949,454,2,25,,,,DISCHARGED -8950,2023-04-19,2979.550097229357,187,Urgent,2023-05-06,Inconclusive,8950,171,2,27,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -8951,2019-06-19,44909.60326566342,444,Elective,2019-07-15,Normal,8951,86,0,27,,,,DISCHARGED -8953,2019-07-13,37089.49028451794,331,Urgent,2019-08-04,Normal,8953,40,0,20,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -8954,2019-09-27,14580.828009319526,224,Emergency,2019-10-01,Normal,8954,122,1,9,,,,DISCHARGED -8956,2019-04-01,16523.342250811147,234,Urgent,2019-04-27,Inconclusive,8956,330,3,26,,,,DISCHARGED -8957,2018-11-23,2342.513870137612,420,Emergency,2018-12-20,Normal,8957,297,0,18,,,,DISCHARGED -8958,2020-05-03,12478.88755864046,168,Urgent,2020-06-02,Abnormal,8958,372,4,18,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8959,2021-02-15,25017.528171226066,118,Urgent,2021-02-21,Abnormal,8959,416,3,14,,,,DISCHARGED -8960,2022-11-05,39365.920372673965,442,Urgent,2022-11-19,Inconclusive,8960,177,0,21,,,,DISCHARGED -8961,2019-08-27,20784.89707187038,182,Urgent,2019-09-06,Normal,8961,62,4,16,,,,DISCHARGED -8962,2019-11-03,21031.4641980804,279,Emergency,2019-11-25,Normal,8962,483,1,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8963,2022-04-27,35444.10057011059,434,Emergency,2022-05-17,Abnormal,8963,164,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8965,2019-06-03,41283.04620658344,468,Elective,2019-07-02,Abnormal,8965,488,0,4,,,,DISCHARGED -8966,2023-10-30,35678.113133597435,107,Emergency,2023-11-24,Inconclusive,8966,186,2,15,,,,DISCHARGED -8967,2020-08-04,46000.95491087031,289,Urgent,2020-08-10,Normal,8967,382,0,22,,,,DISCHARGED -8970,2021-12-17,25656.66716619958,414,Emergency,2021-12-24,Abnormal,8970,208,2,6,,,,DISCHARGED -8971,2021-01-06,36841.18294071179,228,Elective,2021-01-21,Inconclusive,8971,226,1,15,,,,DISCHARGED -8972,2022-10-22,19075.959559934552,415,Elective,2022-11-04,Normal,8972,431,1,8,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -8973,2020-06-27,1068.4196591442185,438,Urgent,2020-07-03,Normal,8973,388,3,0,,,,DISCHARGED -8974,2021-05-03,40613.149785464346,126,Elective,2021-05-19,Inconclusive,8974,47,3,2,,,,DISCHARGED -8975,2018-11-03,25776.085524792627,428,Urgent,2018-11-21,Abnormal,8975,223,2,24,,,,DISCHARGED -8976,2021-03-04,44064.14569972938,376,Urgent,2021-03-06,Inconclusive,8976,2,2,7,,,,DISCHARGED -8977,2019-03-21,4628.516595170861,212,Emergency,2019-03-25,Normal,8977,371,1,17,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8978,2020-07-02,11316.038568230137,445,Urgent,2020-07-24,Normal,8978,174,4,23,,,,DISCHARGED -8979,2019-11-06,6891.492220774002,149,Elective,2019-11-24,Inconclusive,8979,445,2,23,,,,DISCHARGED -8980,2020-05-27,42373.154448485846,300,Urgent,2020-06-09,Inconclusive,8980,98,2,17,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -8981,2022-07-26,8930.375011807073,215,Urgent,2022-08-04,Abnormal,8981,115,4,23,,,,DISCHARGED -8983,2022-09-18,49180.3840908525,471,Elective,2022-10-13,Inconclusive,8983,269,3,18,,,,DISCHARGED -8984,2023-10-27,38860.183285570594,127,Elective,2023-11-24,Normal,8984,446,3,6,,,,DISCHARGED -8985,2019-07-13,14467.8201216075,237,Emergency,2019-08-01,Abnormal,8985,367,2,28,,,,DISCHARGED -8986,2023-08-14,10984.12294760183,338,Urgent,,Normal,8986,252,3,24,,,,OPEN -8987,2019-02-09,17204.34905232734,258,Urgent,2019-02-16,Normal,8987,316,3,19,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -8989,2021-10-04,31899.22464201341,500,Elective,2021-10-20,Inconclusive,8989,414,3,26,,,,DISCHARGED -8990,2019-07-29,20828.840333860324,174,Elective,2019-08-27,Abnormal,8990,94,1,5,,,,DISCHARGED -8991,2023-03-26,24170.86723812414,458,Urgent,,Normal,8991,272,0,24,,,,OPEN -8992,2020-11-16,47536.94054492415,354,Emergency,2020-11-18,Inconclusive,8992,379,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8993,2020-02-01,45778.730706115326,286,Urgent,2020-02-04,Normal,8993,23,2,10,,,,DISCHARGED -8994,2020-02-04,3024.2314154897304,292,Emergency,2020-02-21,Abnormal,8994,115,1,4,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8995,2023-08-14,13651.046437620967,285,Urgent,,Normal,8995,150,0,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8997,2020-05-19,45904.67994932743,171,Elective,2020-05-30,Inconclusive,8997,337,0,0,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -8998,2021-11-05,26586.927559572134,358,Urgent,2021-11-26,Abnormal,8998,49,1,18,,,,DISCHARGED -8999,2022-09-11,15702.215911687625,170,Elective,2022-09-17,Inconclusive,8999,205,4,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9001,2022-10-12,25216.236316628874,246,Elective,2022-10-28,Abnormal,9001,497,4,14,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -9002,2021-02-22,14059.115889418728,248,Emergency,2021-03-12,Inconclusive,9002,334,0,24,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9003,2022-05-08,29362.31441022983,347,Urgent,2022-05-14,Abnormal,9003,78,4,15,,,,DISCHARGED -9004,2020-09-06,15749.302925232005,221,Urgent,2020-10-02,Inconclusive,9004,69,4,2,,,,DISCHARGED -9005,2021-09-17,43393.65425095729,137,Elective,2021-10-03,Inconclusive,9005,26,4,10,,,,DISCHARGED -9006,2020-03-28,8766.898674793429,438,Elective,2020-04-23,Inconclusive,9006,270,0,10,,,,DISCHARGED -9007,2020-04-26,13777.319364682857,464,Elective,2020-05-20,Normal,9007,49,4,9,,,,DISCHARGED -9008,2019-08-09,12926.293857749148,186,Urgent,2019-09-01,Inconclusive,9008,291,2,1,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -9010,2020-04-22,40075.6639036937,299,Elective,2020-05-21,Normal,9010,246,0,19,,,,DISCHARGED -9011,2019-01-14,14805.486471993025,217,Elective,2019-02-13,Abnormal,9011,263,1,4,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -9012,2020-08-29,42216.44940298435,129,Elective,2020-09-28,Inconclusive,9012,78,4,22,,,,DISCHARGED -9013,2019-01-15,9110.661612663942,473,Elective,2019-01-21,Inconclusive,9013,386,3,22,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -9014,2021-10-11,6635.995533243206,391,Urgent,2021-11-06,Inconclusive,9014,189,0,24,,,,DISCHARGED -9015,2018-12-23,9725.55642941671,258,Urgent,2019-01-16,Normal,9015,46,1,28,,,,DISCHARGED -9016,2021-07-22,22499.5888991289,467,Urgent,2021-08-10,Inconclusive,9016,460,2,7,,,,DISCHARGED -9017,2020-03-07,47725.05935888982,479,Emergency,2020-03-25,Normal,9017,360,1,12,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9018,2019-09-06,45814.58180829432,276,Elective,2019-09-14,Normal,9018,353,4,14,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -9020,2021-06-05,6052.482315462576,237,Emergency,2021-06-25,Abnormal,9020,471,3,1,,,,DISCHARGED -9022,2019-05-31,5402.833460534351,410,Elective,2019-06-09,Abnormal,9022,487,4,11,,,,DISCHARGED -9023,2019-04-19,48779.537910585495,235,Elective,2019-05-18,Abnormal,9023,351,1,23,,,,DISCHARGED -9024,2021-03-30,47431.90570159217,472,Urgent,2021-04-17,Normal,9024,188,0,7,,,,DISCHARGED -9025,2019-07-14,4600.008462547212,108,Elective,2019-08-05,Inconclusive,9025,415,3,20,,,,DISCHARGED -9027,2021-05-17,1739.106108275013,222,Urgent,2021-06-16,Normal,9027,255,3,28,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9028,2020-12-24,34865.241658574785,398,Emergency,2021-01-12,Abnormal,9028,221,1,18,,,,DISCHARGED -9029,2019-04-11,23130.84142407352,245,Emergency,2019-04-14,Normal,9029,371,4,24,,,,DISCHARGED -9031,2019-01-02,20414.82208651168,210,Urgent,2019-01-31,Abnormal,9031,240,1,27,,,,DISCHARGED -9032,2019-01-31,41697.874001312906,458,Urgent,2019-03-02,Normal,9032,268,3,22,,,,DISCHARGED -9033,2019-01-08,48391.14147288998,295,Urgent,2019-01-13,Abnormal,9033,0,1,0,,,,DISCHARGED -9034,2022-05-02,41756.77426243366,337,Elective,2022-05-27,Inconclusive,9034,33,3,7,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9035,2020-08-05,13041.684990853948,280,Elective,2020-08-28,Normal,9035,445,4,9,,,,DISCHARGED -9036,2022-03-30,42964.941605907065,352,Elective,2022-04-21,Normal,9036,78,0,12,,,,DISCHARGED -9037,2019-01-29,11222.608729303662,318,Elective,2019-02-11,Normal,9037,235,0,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9039,2021-12-05,5585.951554729145,477,Urgent,2021-12-15,Abnormal,9039,333,1,21,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9040,2021-02-25,27505.07437219164,464,Urgent,2021-03-01,Abnormal,9040,376,3,8,,,,DISCHARGED -9041,2019-12-11,44867.8638072376,234,Elective,2019-12-12,Abnormal,9041,348,0,9,,,,DISCHARGED -9042,2022-02-27,41457.56377363006,105,Urgent,2022-03-05,Abnormal,9042,97,3,13,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9043,2020-12-20,43405.73356794137,257,Elective,2021-01-19,Inconclusive,9043,81,4,23,,,,DISCHARGED -9044,2023-04-10,42718.14619517718,135,Urgent,,Normal,9044,454,1,29,,,,OPEN -9045,2020-02-12,14688.627736285349,143,Emergency,2020-02-22,Inconclusive,9045,476,3,10,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -9046,2019-07-19,19994.69628873585,470,Urgent,2019-07-28,Abnormal,9046,414,1,13,,,,DISCHARGED -9047,2019-08-11,12083.688667707274,485,Elective,2019-09-06,Abnormal,9047,191,3,29,,,,DISCHARGED -9048,2022-03-02,44427.00578342563,180,Urgent,2022-03-21,Normal,9048,252,3,2,,,,DISCHARGED -9049,2019-09-17,40416.1045034484,357,Urgent,2019-10-07,Inconclusive,9049,408,4,28,,,,DISCHARGED -9050,2020-07-03,37843.55399166356,120,Urgent,2020-07-04,Inconclusive,9050,37,1,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9051,2021-07-18,44415.90473238212,178,Elective,2021-07-29,Abnormal,9051,13,2,15,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9052,2021-05-16,26578.871163079235,228,Emergency,2021-05-23,Normal,9052,391,3,19,,,,DISCHARGED -9053,2020-01-14,8114.22304823118,293,Emergency,2020-02-03,Inconclusive,9053,346,3,29,,,,DISCHARGED -9054,2019-12-30,30015.78133206465,198,Elective,2020-01-19,Normal,9054,309,0,16,,,,DISCHARGED -9055,2021-05-16,36560.71526928349,301,Emergency,2021-06-01,Inconclusive,9055,385,1,4,,,,DISCHARGED -9056,2021-03-06,13414.902698189984,259,Emergency,2021-03-20,Abnormal,9056,208,2,25,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -9057,2019-01-09,33745.52133752985,302,Emergency,2019-01-19,Abnormal,9057,356,4,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9058,2020-01-01,37448.58950307509,351,Urgent,2020-01-11,Inconclusive,9058,461,2,16,,,,DISCHARGED -9059,2022-03-13,41365.99900053181,436,Emergency,2022-03-20,Abnormal,9059,88,4,19,,,,DISCHARGED -9060,2019-03-04,20613.58693324452,495,Elective,2019-03-06,Normal,9060,55,2,21,,,,DISCHARGED -9061,2023-08-27,20051.093613361045,148,Urgent,2023-09-04,Normal,9061,93,2,10,,,,DISCHARGED -9062,2023-02-03,9318.109792301088,149,Elective,2023-02-15,Abnormal,9062,92,1,11,,,,DISCHARGED -9063,2023-01-20,14688.05525672029,455,Elective,2023-02-07,Abnormal,9063,339,0,24,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9064,2023-10-19,42913.03552456971,269,Emergency,2023-10-27,Inconclusive,9064,84,2,26,,,,DISCHARGED -9065,2023-09-08,1811.5322525903173,447,Elective,2023-09-20,Abnormal,9065,444,3,23,,,,DISCHARGED -9066,2022-12-24,34238.72727724299,280,Emergency,2023-01-17,Inconclusive,9066,244,3,1,,,,DISCHARGED -9067,2020-09-30,40647.756070176656,407,Elective,2020-10-10,Inconclusive,9067,21,3,26,,,,DISCHARGED -9069,2019-08-08,29235.717758505325,121,Emergency,2019-08-16,Abnormal,9069,290,0,18,,,,DISCHARGED -9070,2020-07-13,19300.80935426816,370,Emergency,2020-07-16,Abnormal,9070,484,2,25,,,,DISCHARGED -9071,2020-01-21,7622.071570457409,224,Elective,2020-02-17,Abnormal,9071,271,4,28,,,,DISCHARGED -9073,2021-09-03,24704.99934384552,264,Emergency,2021-09-29,Normal,9073,305,4,4,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -9074,2020-07-15,28072.3500940625,262,Elective,2020-07-21,Inconclusive,9074,121,1,10,,,,DISCHARGED -9075,2019-03-20,8156.966032298364,452,Emergency,2019-04-06,Inconclusive,9075,127,0,22,,,,DISCHARGED -9076,2022-12-03,45387.88189075296,179,Urgent,2022-12-08,Inconclusive,9076,112,2,18,,,,DISCHARGED -9077,2020-08-05,38174.646162379686,146,Emergency,2020-08-23,Normal,9077,426,3,27,,,,DISCHARGED -9078,2023-10-30,11566.110209267605,409,Urgent,2023-11-03,Abnormal,9078,272,0,6,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -9079,2022-10-24,20677.59158730373,271,Emergency,2022-10-26,Inconclusive,9079,335,0,20,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9080,2022-02-27,28577.12688175262,483,Elective,2022-03-21,Normal,9080,441,2,25,,,,DISCHARGED -9081,2022-06-26,9158.547203367772,195,Elective,2022-07-17,Abnormal,9081,129,1,21,,,,DISCHARGED -9082,2019-08-06,19497.1185288297,153,Emergency,2019-08-23,Inconclusive,9082,131,1,5,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9083,2023-05-11,28022.26742703769,426,Urgent,,Abnormal,9083,84,1,10,,,,OPEN -9084,2020-09-23,31184.880606871666,385,Emergency,2020-09-30,Normal,9084,422,3,26,,,,DISCHARGED -9085,2019-06-02,27108.26641112268,241,Elective,2019-06-21,Abnormal,9085,481,3,13,,,,DISCHARGED -9086,2020-01-04,15921.235407007502,230,Emergency,2020-01-15,Normal,9086,349,2,27,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -9087,2021-08-16,32916.66277012341,122,Urgent,2021-09-10,Abnormal,9087,389,1,3,,,,DISCHARGED -9088,2019-12-18,38890.94391235366,333,Emergency,2020-01-15,Inconclusive,9088,80,2,27,,,,DISCHARGED -9090,2023-02-05,6723.376785837038,368,Emergency,2023-02-18,Normal,9090,486,1,7,,,,DISCHARGED -9091,2021-12-22,32553.871186127188,459,Urgent,2022-01-18,Inconclusive,9091,472,0,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9092,2022-01-07,14114.800108453635,295,Elective,2022-01-18,Normal,9092,324,4,1,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -9093,2020-10-09,38708.22762271941,166,Emergency,2020-10-13,Inconclusive,9093,68,4,24,,,,DISCHARGED -9094,2020-11-08,47121.86592697616,137,Emergency,2020-11-09,Abnormal,9094,147,1,10,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9095,2019-12-19,11554.0692389646,412,Elective,2019-12-24,Normal,9095,447,2,27,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9096,2022-03-12,6095.279708524971,129,Urgent,2022-03-20,Abnormal,9096,15,3,19,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -9097,2021-11-09,1540.0041442287657,145,Elective,2021-11-20,Abnormal,9097,306,1,21,,,,DISCHARGED -9098,2020-01-04,32508.75338095534,151,Urgent,2020-01-07,Inconclusive,9098,104,1,29,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9099,2022-08-30,6870.61826161369,145,Elective,2022-09-29,Inconclusive,9099,164,3,6,,,,DISCHARGED -9100,2019-01-21,38855.98088303855,478,Elective,2019-01-28,Normal,9100,487,1,3,,,,DISCHARGED -9101,2023-01-24,37962.27052585737,141,Emergency,2023-02-11,Inconclusive,9101,200,0,23,,,,DISCHARGED -9102,2021-10-02,39286.80404588618,347,Urgent,2021-10-22,Inconclusive,9102,196,3,28,,,,DISCHARGED -9103,2023-03-15,29654.08826834418,158,Urgent,2023-03-24,Abnormal,9103,425,0,13,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9104,2019-12-30,31300.28518632404,156,Elective,2020-01-26,Abnormal,9104,184,4,25,,,,DISCHARGED -9105,2022-02-19,3919.8757597064746,428,Elective,2022-02-20,Normal,9105,321,3,23,,,,DISCHARGED -9106,2022-12-29,28406.254402941053,266,Emergency,2023-01-17,Inconclusive,9106,264,3,0,,,,DISCHARGED -9107,2021-02-23,16912.606878360537,273,Emergency,2021-02-26,Inconclusive,9107,362,2,23,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9108,2022-03-12,17293.558492254306,471,Urgent,2022-04-05,Inconclusive,9108,99,2,25,,,,DISCHARGED -9109,2020-05-08,19440.584963511104,147,Emergency,2020-05-18,Normal,9109,341,3,29,,,,DISCHARGED -9111,2023-09-16,1636.173851281305,144,Elective,2023-09-28,Normal,9111,319,4,11,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -9113,2020-01-28,45709.62795360011,414,Emergency,2020-02-06,Normal,9113,213,1,18,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9114,2023-09-15,39668.90185316746,172,Elective,2023-10-10,Inconclusive,9114,277,2,4,,,,DISCHARGED -9115,2020-05-05,1880.322966540844,384,Urgent,2020-05-31,Abnormal,9115,161,4,29,,,,DISCHARGED -9116,2020-04-30,49136.017199237045,232,Emergency,2020-05-05,Inconclusive,9116,438,4,25,,,,DISCHARGED -9117,2022-10-30,18484.01112658948,240,Elective,2022-11-07,Normal,9117,156,2,7,,,,DISCHARGED -9119,2022-12-26,11421.4245875114,350,Urgent,2023-01-11,Inconclusive,9119,421,1,10,,,,DISCHARGED -9120,2023-08-03,43819.890745822966,419,Elective,2023-08-29,Abnormal,9120,250,2,21,,,,DISCHARGED -9121,2021-05-05,33593.18577373371,425,Emergency,2021-05-18,Normal,9121,365,4,3,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9122,2022-07-10,14213.243831598911,126,Elective,2022-07-15,Normal,9122,96,0,14,,,,DISCHARGED -9123,2022-12-26,30845.43076070712,207,Elective,2023-01-14,Abnormal,9123,17,2,19,,,,DISCHARGED -9124,2021-08-10,3962.8255015053296,331,Urgent,2021-08-30,Inconclusive,9124,326,4,11,,,,DISCHARGED -9125,2018-12-18,41428.57399137461,292,Elective,2018-12-21,Normal,9125,448,2,19,,,,DISCHARGED -9126,2023-09-04,28087.521955188604,200,Elective,,Normal,9126,382,4,21,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",OPEN -9127,2019-04-29,6795.909152097385,155,Elective,2019-05-12,Inconclusive,9127,96,1,22,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9128,2022-04-27,26105.81430282644,123,Urgent,2022-05-05,Inconclusive,9128,0,4,28,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9129,2020-01-14,23861.395863975704,307,Emergency,2020-01-29,Abnormal,9129,215,3,20,,,,DISCHARGED -9130,2022-04-01,46894.36288157077,395,Emergency,2022-04-10,Inconclusive,9130,131,0,9,,,,DISCHARGED -9131,2022-10-15,32665.798488631368,161,Elective,2022-10-30,Normal,9131,259,4,29,,,,DISCHARGED -9132,2022-09-05,8021.494408912946,401,Urgent,2022-09-20,Normal,9132,124,2,23,,,,DISCHARGED -9133,2023-07-10,10153.685752398243,495,Emergency,2023-07-13,Abnormal,9133,81,2,15,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9134,2019-09-19,35046.63257233002,391,Elective,2019-10-13,Inconclusive,9134,282,4,22,,,,DISCHARGED -9135,2023-05-26,32647.80942820762,348,Urgent,2023-06-07,Abnormal,9135,170,3,7,,,,DISCHARGED -9136,2020-05-18,22610.8375483538,357,Elective,2020-05-22,Abnormal,9136,58,4,19,,,,DISCHARGED -9137,2020-08-16,48790.5976304974,307,Urgent,2020-08-26,Normal,9137,31,1,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -9138,2020-01-06,31867.740481754296,140,Urgent,2020-01-22,Inconclusive,9138,160,3,28,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9139,2023-10-27,11306.550792601443,110,Urgent,2023-11-18,Abnormal,9139,283,4,5,,,,DISCHARGED -9140,2020-12-26,30646.709999666367,194,Emergency,2021-01-09,Abnormal,9140,105,0,2,,,,DISCHARGED -9141,2019-07-23,31593.6860575208,417,Elective,2019-08-12,Normal,9141,104,3,28,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9142,2022-07-14,30117.14651273541,160,Emergency,2022-08-01,Inconclusive,9142,438,4,7,,,,DISCHARGED -9143,2022-01-19,40893.66789528081,281,Emergency,2022-02-13,Abnormal,9143,227,0,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9144,2023-01-02,12707.296002540905,321,Urgent,,Abnormal,9144,187,4,22,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",OPEN -9145,2020-05-10,43962.38794955955,316,Elective,2020-06-04,Abnormal,9145,69,1,9,,,,DISCHARGED -9146,2020-01-19,23492.26290128188,484,Urgent,2020-02-14,Normal,9146,317,2,4,,,,DISCHARGED -9147,2020-06-02,46174.22599965044,275,Emergency,2020-06-13,Abnormal,9147,463,4,10,,,,DISCHARGED -9148,2021-08-07,14429.22163061138,378,Urgent,2021-08-13,Abnormal,9148,289,3,3,,,,DISCHARGED -9149,2020-05-06,24056.935522750093,471,Elective,2020-06-04,Inconclusive,9149,86,4,16,,,,DISCHARGED -9150,2019-01-21,44002.48718363696,271,Elective,2019-02-06,Normal,9150,369,4,25,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9151,2020-05-08,47390.49293494775,461,Emergency,2020-05-24,Abnormal,9151,361,4,2,,,,DISCHARGED -9152,2020-10-24,6691.812759987741,291,Emergency,2020-11-19,Inconclusive,9152,471,4,17,,,,DISCHARGED -9153,2022-08-01,37015.50889465102,193,Urgent,2022-08-12,Inconclusive,9153,55,3,7,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9154,2019-01-30,45946.51214299432,370,Urgent,2019-02-07,Inconclusive,9154,112,3,29,,,,DISCHARGED -9155,2020-07-19,28445.73494624793,239,Emergency,2020-07-22,Abnormal,9155,12,4,23,,,,DISCHARGED -9156,2022-02-16,4090.581059082534,266,Elective,2022-03-09,Inconclusive,9156,439,2,11,,,,DISCHARGED -9157,2022-12-09,33388.53859236135,310,Elective,2022-12-27,Inconclusive,9157,17,4,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9158,2020-10-10,42680.12977919788,264,Emergency,2020-10-11,Normal,9158,181,3,15,,,,DISCHARGED -9159,2022-05-19,25301.234037396716,267,Urgent,2022-05-25,Abnormal,9159,460,1,13,,,,DISCHARGED -9161,2019-04-26,24260.336634343654,254,Urgent,2019-05-07,Inconclusive,9161,112,4,20,,,,DISCHARGED -9162,2023-04-01,31811.795148321813,185,Elective,,Normal,9162,228,4,15,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,OPEN -9164,2021-05-03,45060.35200754853,453,Urgent,2021-05-20,Normal,9164,170,4,26,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9165,2022-08-06,34216.25761307277,253,Elective,2022-08-20,Abnormal,9165,294,4,3,,,,DISCHARGED -9166,2023-07-05,47306.08356532561,346,Emergency,2023-07-31,Inconclusive,9166,188,0,0,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9167,2022-10-01,39659.8386443888,181,Elective,2022-10-17,Abnormal,9167,425,4,0,,,,DISCHARGED -9168,2023-01-26,1032.6402799537905,435,Emergency,2023-02-13,Abnormal,9168,464,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9169,2021-12-26,1497.440621496697,489,Elective,2022-01-19,Inconclusive,9169,78,3,21,,,,DISCHARGED -9170,2021-05-06,13067.426497220697,452,Urgent,2021-05-14,Abnormal,9170,145,0,14,,,,DISCHARGED -9171,2021-08-13,12533.814445348706,347,Elective,2021-09-09,Normal,9171,406,4,19,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9172,2021-07-02,40389.991448140885,305,Elective,2021-07-09,Inconclusive,9172,181,2,19,,,,DISCHARGED -9173,2022-06-08,18806.551321118328,362,Urgent,2022-06-09,Normal,9173,498,4,2,,,,DISCHARGED -9176,2023-04-23,37147.200363707,399,Emergency,,Normal,9176,285,3,13,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -9177,2023-07-06,13732.020872628313,239,Emergency,2023-07-18,Normal,9177,249,1,8,,,,DISCHARGED -9178,2020-09-09,6473.06041160084,236,Urgent,2020-10-09,Normal,9178,353,1,18,,,,DISCHARGED -9179,2019-02-06,20591.37548132204,496,Urgent,2019-02-24,Abnormal,9179,313,2,7,,,,DISCHARGED -9180,2019-03-22,19699.639448510745,366,Emergency,2019-04-10,Inconclusive,9180,195,4,1,,,,DISCHARGED -9181,2018-12-05,40051.3889055392,349,Elective,2018-12-22,Abnormal,9181,322,0,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -9182,2020-01-07,23341.601693308086,125,Elective,2020-01-25,Abnormal,9182,70,4,0,,,,DISCHARGED -9183,2020-04-09,36187.796011793485,295,Urgent,2020-05-06,Abnormal,9183,247,2,10,,,,DISCHARGED -9184,2020-12-14,17809.366508878404,313,Emergency,2020-12-23,Normal,9184,145,2,4,,,,DISCHARGED -9185,2022-07-28,39649.465913420114,113,Elective,2022-08-09,Normal,9185,105,2,1,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",DISCHARGED -9186,2021-11-30,17758.48286453917,464,Urgent,2021-12-23,Inconclusive,9186,262,1,26,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9187,2021-12-17,31630.19317380787,248,Elective,2021-12-20,Normal,9187,295,4,12,,,,DISCHARGED -9188,2019-11-15,18519.21312014216,410,Emergency,2019-12-15,Normal,9188,69,4,16,,,,DISCHARGED -9190,2022-01-01,35644.04666024292,469,Elective,2022-01-10,Abnormal,9190,469,0,16,,,,DISCHARGED -9191,2022-07-10,3043.838664053392,232,Emergency,2022-07-22,Normal,9191,192,2,17,,,,DISCHARGED -9192,2023-09-02,28812.1329791255,467,Emergency,2023-09-20,Normal,9192,67,2,20,,,,DISCHARGED -9194,2021-01-25,32768.46758967712,266,Urgent,2021-02-12,Abnormal,9194,493,3,27,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9195,2021-11-06,27916.00787108927,104,Emergency,2021-11-07,Normal,9195,304,3,8,,,,DISCHARGED -9196,2022-02-18,22474.98793606993,133,Emergency,2022-03-06,Inconclusive,9196,51,1,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9197,2022-09-28,43030.7212216746,339,Emergency,2022-10-12,Normal,9197,369,4,27,,,,DISCHARGED -9198,2021-11-03,7065.089630541504,348,Emergency,2021-12-03,Normal,9198,362,0,19,,,,DISCHARGED -9199,2022-09-29,11936.925147111628,355,Emergency,2022-10-08,Abnormal,9199,284,0,2,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -9200,2019-07-24,38494.16460678756,416,Emergency,2019-08-13,Abnormal,9200,404,2,7,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9201,2021-08-12,20649.82852327101,150,Urgent,2021-08-28,Normal,9201,473,0,2,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -9203,2022-11-22,18810.1634733766,500,Urgent,2022-11-26,Inconclusive,9203,333,2,0,,,,DISCHARGED -9204,2023-05-25,40109.3980092654,450,Elective,2023-05-27,Normal,9204,8,4,19,,,,DISCHARGED -9205,2021-12-25,26442.436843884712,276,Emergency,2022-01-14,Abnormal,9205,250,0,26,,,,DISCHARGED -9206,2022-03-05,26277.13785238277,244,Emergency,2022-03-07,Inconclusive,9206,430,2,12,,,,DISCHARGED -9207,2023-07-15,33692.742282837906,112,Emergency,2023-07-18,Inconclusive,9207,331,4,20,,,,DISCHARGED -9208,2023-01-08,17786.095130184985,122,Urgent,,Normal,9208,297,4,4,,,,OPEN -9209,2019-02-05,33846.15076436708,248,Elective,2019-02-17,Abnormal,9209,434,2,15,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9210,2021-05-27,38276.2385915472,313,Elective,2021-06-08,Inconclusive,9210,183,2,20,,,,DISCHARGED -9211,2020-05-18,5416.551710982865,314,Elective,2020-06-11,Abnormal,9211,178,1,23,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9213,2022-06-10,19405.74377833543,269,Emergency,2022-07-06,Abnormal,9213,197,4,15,,,,DISCHARGED -9215,2019-03-20,10706.034589100109,136,Emergency,2019-04-17,Normal,9215,127,2,23,,,,DISCHARGED -9216,2019-07-15,28900.61587404047,292,Elective,2019-07-23,Abnormal,9216,19,4,11,,,,DISCHARGED -9217,2023-06-09,45920.88391953048,144,Elective,2023-07-06,Abnormal,9217,471,0,12,,,,DISCHARGED -9218,2022-11-26,25881.00320533265,146,Emergency,2022-12-17,Inconclusive,9218,410,3,3,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9219,2020-10-02,11079.52216643536,271,Urgent,2020-10-30,Abnormal,9219,421,3,8,,,,DISCHARGED -9220,2022-09-20,41310.60455345712,219,Urgent,2022-09-26,Normal,9220,327,2,15,,,,DISCHARGED -9221,2022-10-03,47097.00310462988,246,Elective,2022-10-18,Abnormal,9221,64,2,0,,,,DISCHARGED -9222,2019-05-18,14677.465308173922,150,Elective,2019-06-16,Inconclusive,9222,181,4,4,,,,DISCHARGED -9223,2020-03-24,20176.54747515125,194,Elective,2020-04-01,Inconclusive,9223,240,2,20,,,,DISCHARGED -9224,2021-06-21,28438.63022199069,176,Elective,2021-06-26,Abnormal,9224,368,4,4,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -9225,2023-06-18,42590.11774975663,236,Urgent,2023-06-19,Abnormal,9225,23,2,23,,,,DISCHARGED -9226,2020-10-08,8827.320776535924,148,Urgent,2020-11-06,Abnormal,9226,383,4,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9227,2020-05-02,19640.89683994048,287,Urgent,2020-05-05,Inconclusive,9227,430,2,18,,,,DISCHARGED -9228,2023-02-20,8533.906785612762,384,Urgent,,Inconclusive,9228,454,1,8,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -9229,2023-01-07,23038.82920872588,162,Urgent,,Normal,9229,82,4,28,,,,OPEN -9230,2021-03-12,24628.035065105712,306,Elective,2021-03-26,Normal,9230,469,1,26,,,,DISCHARGED -9232,2020-11-08,31961.91967515936,113,Emergency,2020-11-24,Inconclusive,9232,318,1,7,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -9233,2022-03-20,22426.243495701518,147,Elective,2022-03-27,Abnormal,9233,184,1,18,,,,DISCHARGED -9234,2019-11-02,20842.397571364767,275,Emergency,2019-11-16,Inconclusive,9234,438,1,17,,,,DISCHARGED -9235,2019-03-05,33766.84910407517,451,Emergency,2019-03-06,Normal,9235,315,0,14,,,,DISCHARGED -9236,2020-09-26,45109.45059540842,305,Elective,2020-10-18,Inconclusive,9236,98,3,3,,,,DISCHARGED -9238,2019-01-02,43350.3038008802,354,Urgent,2019-01-18,Abnormal,9238,61,0,14,,,,DISCHARGED -9239,2020-06-29,10448.804318961562,457,Urgent,2020-07-17,Normal,9239,285,2,12,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9240,2019-08-29,19038.58205291466,186,Emergency,2019-09-23,Abnormal,9240,476,2,27,,,,DISCHARGED -9241,2019-01-31,21487.35912003917,131,Emergency,2019-02-13,Abnormal,9241,21,3,17,,,,DISCHARGED -9242,2021-04-26,25595.851509823988,160,Emergency,2021-05-07,Abnormal,9242,458,3,19,,,,DISCHARGED -9243,2021-04-21,21375.61766477089,305,Elective,2021-05-16,Normal,9243,211,3,4,,,,DISCHARGED -9244,2022-01-07,7155.059016050976,254,Urgent,2022-01-08,Normal,9244,125,1,17,,,,DISCHARGED -9245,2022-10-08,46881.14090052211,256,Elective,2022-10-15,Inconclusive,9245,412,0,27,,,,DISCHARGED -9246,2018-11-07,25543.61222507702,338,Elective,2018-11-27,Inconclusive,9246,498,2,7,,,,DISCHARGED -9247,2018-11-21,36127.45278042385,125,Urgent,2018-12-11,Abnormal,9247,424,0,0,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -9249,2021-03-07,23932.090249903224,351,Elective,2021-03-27,Inconclusive,9249,41,0,18,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9250,2019-12-06,24059.718542100163,472,Elective,2019-12-21,Inconclusive,9250,97,0,22,,,,DISCHARGED -9251,2023-03-02,32678.741347794406,374,Elective,2023-03-23,Normal,9251,448,3,25,,,,DISCHARGED -9253,2023-08-31,39000.19084064411,482,Elective,2023-09-16,Inconclusive,9253,30,3,16,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -9254,2020-12-05,20629.373432074124,218,Emergency,2020-12-30,Abnormal,9254,157,2,28,,,,DISCHARGED -9256,2022-03-29,41013.94113700745,295,Urgent,2022-04-03,Inconclusive,9256,111,2,26,,,,DISCHARGED -9257,2023-09-26,29226.52072758039,195,Urgent,2023-10-04,Abnormal,9257,401,2,1,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9258,2019-02-23,31895.23822280346,210,Urgent,2019-03-10,Abnormal,9258,246,0,18,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9259,2018-11-23,28646.345338695905,364,Urgent,2018-12-09,Abnormal,9259,121,3,29,,,,DISCHARGED -9260,2023-02-04,37691.09231623789,209,Urgent,,Abnormal,9260,272,1,15,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -9261,2023-10-17,17421.4615553139,251,Elective,2023-11-12,Normal,9261,293,0,29,,,,DISCHARGED -9262,2019-02-01,19507.32151239824,468,Elective,2019-02-27,Inconclusive,9262,397,4,17,,,,DISCHARGED -9263,2022-07-08,16143.559236297968,241,Elective,2022-07-15,Abnormal,9263,470,0,1,,,,DISCHARGED -9264,2023-01-26,31769.193030406743,467,Urgent,2023-02-17,Inconclusive,9264,472,3,27,,,,DISCHARGED -9266,2021-06-07,19681.998200715934,404,Urgent,2021-06-30,Inconclusive,9266,206,4,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9267,2022-05-23,24669.582619731795,145,Urgent,2022-06-11,Normal,9267,109,0,5,,,,DISCHARGED -9269,2023-04-28,30477.159338650137,130,Urgent,2023-05-16,Normal,9269,439,3,6,,,,DISCHARGED -9270,2023-03-15,35848.73746620928,416,Emergency,2023-04-12,Normal,9270,277,3,5,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -9271,2020-10-13,42732.72129217082,166,Elective,2020-11-05,Normal,9271,450,1,26,,,,DISCHARGED -9272,2021-06-15,11341.775820989484,112,Elective,2021-06-27,Abnormal,9272,55,0,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9273,2022-10-22,27854.42974682749,459,Emergency,2022-11-03,Normal,9273,374,3,8,,,,DISCHARGED -9275,2021-12-19,21613.846233016448,396,Elective,2022-01-08,Abnormal,9275,402,2,7,,,,DISCHARGED -9276,2021-12-06,19878.80640734216,386,Urgent,2021-12-18,Normal,9276,56,3,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -9277,2020-05-22,11822.494922749092,265,Urgent,2020-05-26,Normal,9277,427,1,23,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9278,2020-08-13,25331.852437222253,199,Elective,2020-09-12,Abnormal,9278,481,3,21,,,,DISCHARGED -9279,2020-07-27,10712.844483669409,296,Urgent,2020-08-08,Normal,9279,290,0,20,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9280,2022-07-15,26731.998537993,121,Elective,2022-07-18,Normal,9280,113,0,8,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9282,2020-11-21,44202.60650873288,166,Emergency,2020-12-01,Normal,9282,380,4,11,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -9283,2019-05-20,25827.760275844485,179,Emergency,2019-06-14,Normal,9283,384,0,17,,,,DISCHARGED -9284,2019-11-21,5061.508708162552,166,Emergency,2019-12-10,Normal,9284,307,4,22,,,,DISCHARGED -9285,2020-05-03,30565.47657359989,396,Urgent,2020-05-24,Abnormal,9285,340,2,5,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9287,2022-11-21,19615.077338255043,323,Urgent,2022-12-10,Inconclusive,9287,476,1,22,,,,DISCHARGED -9288,2021-08-01,29820.11001362812,415,Urgent,2021-08-07,Inconclusive,9288,197,2,27,,,,DISCHARGED -9289,2022-02-11,9535.904015048776,168,Emergency,2022-03-03,Abnormal,9289,420,4,3,,,,DISCHARGED -9290,2020-08-30,48623.35444411356,404,Emergency,2020-09-23,Abnormal,9290,320,3,24,,,,DISCHARGED -9291,2021-08-12,27691.66794939068,152,Emergency,2021-08-29,Normal,9291,178,3,6,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9292,2023-02-06,8501.851987704971,234,Emergency,2023-03-04,Inconclusive,9292,384,2,17,,,,DISCHARGED -9293,2020-06-18,49838.14628926682,295,Elective,2020-06-20,Inconclusive,9293,218,3,28,,,,DISCHARGED -9295,2023-09-15,26099.46667518135,137,Emergency,2023-09-27,Inconclusive,9295,276,4,19,,,,DISCHARGED -9296,2021-09-19,48329.15474719292,133,Urgent,2021-10-18,Inconclusive,9296,436,1,4,,,,DISCHARGED -9297,2021-12-31,24511.625240985803,320,Emergency,2022-01-22,Normal,9297,15,0,17,,,,DISCHARGED -9298,2021-11-29,5047.726365789606,306,Urgent,2021-12-21,Normal,9298,491,4,9,,,,DISCHARGED -9299,2022-02-12,24868.731572862245,209,Urgent,2022-03-12,Normal,9299,378,4,7,,,,DISCHARGED -9300,2019-05-30,44371.56612753764,222,Emergency,2019-06-16,Abnormal,9300,60,0,0,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9301,2022-09-21,48879.92025953608,166,Elective,2022-10-01,Inconclusive,9301,53,0,14,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9302,2019-04-08,6917.4583773330405,307,Emergency,2019-04-13,Abnormal,9302,167,1,2,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9303,2018-12-31,39182.239327105686,362,Urgent,2019-01-17,Normal,9303,25,1,14,,,,DISCHARGED -9305,2023-03-16,49665.22442631546,385,Emergency,2023-04-13,Inconclusive,9305,335,1,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -9306,2021-12-12,14325.041915361202,369,Elective,2021-12-13,Abnormal,9306,475,3,0,,,,DISCHARGED -9307,2019-03-31,4777.118150278067,389,Emergency,2019-04-07,Inconclusive,9307,64,4,20,,,,DISCHARGED -9308,2019-09-29,5338.355443452173,275,Emergency,2019-10-10,Normal,9308,99,0,7,,,,DISCHARGED -9309,2019-02-02,14861.22317444336,120,Emergency,2019-02-15,Normal,9309,73,4,6,,,,DISCHARGED -9310,2019-06-03,35704.01456552509,420,Emergency,2019-07-01,Abnormal,9310,191,4,8,,,,DISCHARGED -9311,2019-09-24,37962.74655368364,352,Urgent,2019-10-15,Abnormal,9311,170,1,17,,,,DISCHARGED -9312,2020-01-27,24363.8256371307,106,Emergency,2020-02-03,Abnormal,9312,272,1,11,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -9313,2020-03-20,19209.9541309703,226,Urgent,2020-04-07,Normal,9313,376,4,7,,,,DISCHARGED -9314,2020-06-14,24081.536172408447,489,Elective,2020-07-09,Abnormal,9314,186,1,7,,,,DISCHARGED -9315,2021-12-10,12770.306970049183,450,Urgent,2021-12-30,Normal,9315,22,3,29,,,,DISCHARGED -9316,2022-01-23,1758.2493908085812,251,Elective,2022-02-07,Normal,9316,390,0,5,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9317,2018-12-19,21621.459770268644,336,Urgent,2019-01-03,Normal,9317,427,4,2,,,,DISCHARGED -9318,2023-02-04,29037.788393762683,317,Elective,2023-03-03,Normal,9318,180,0,1,,,,DISCHARGED -9320,2020-06-27,22688.33874544689,196,Elective,2020-06-29,Abnormal,9320,326,3,13,,,,DISCHARGED -9321,2022-09-11,4952.327522480191,449,Urgent,2022-09-20,Inconclusive,9321,107,1,7,,,,DISCHARGED -9323,2019-11-18,16297.872161767751,342,Elective,2019-12-18,Inconclusive,9323,334,2,5,,,,DISCHARGED -9324,2019-01-05,46451.51134859765,220,Emergency,2019-01-26,Inconclusive,9324,161,3,3,,,,DISCHARGED -9325,2020-02-26,32906.75375044161,225,Elective,2020-03-13,Inconclusive,9325,301,2,4,,,,DISCHARGED -9327,2023-04-16,1282.4935905657246,210,Elective,,Abnormal,9327,492,0,20,,,,OPEN -9329,2019-02-17,37623.28059260853,324,Elective,2019-03-12,Inconclusive,9329,451,4,12,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -9330,2022-04-15,25266.668359697534,250,Elective,2022-05-10,Inconclusive,9330,205,1,8,,,,DISCHARGED -9331,2021-10-04,11546.981424233449,408,Emergency,2021-10-24,Abnormal,9331,77,3,12,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9332,2020-01-02,20328.887634743107,278,Emergency,2020-01-03,Inconclusive,9332,15,1,28,,,,DISCHARGED -9333,2021-11-25,36342.65227117117,183,Urgent,2021-11-29,Inconclusive,9333,326,2,8,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -9334,2023-08-17,25154.555652474508,368,Elective,2023-08-28,Abnormal,9334,95,2,23,,,,DISCHARGED -9335,2019-01-06,18472.705147173838,143,Emergency,2019-01-19,Abnormal,9335,146,4,23,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9336,2020-11-25,5949.344774226577,164,Emergency,2020-11-28,Abnormal,9336,1,2,15,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -9337,2021-03-14,17451.117258502367,192,Elective,2021-04-02,Inconclusive,9337,9,4,11,,,,DISCHARGED -9338,2022-11-25,32168.443553115478,340,Urgent,2022-12-13,Inconclusive,9338,433,3,1,,,,DISCHARGED -9339,2023-08-25,47469.151036631054,373,Emergency,2023-09-10,Abnormal,9339,124,4,29,,,,DISCHARGED -9340,2019-12-29,18154.347850080874,407,Urgent,2020-01-17,Inconclusive,9340,80,2,18,,,,DISCHARGED -9341,2022-04-29,24676.963650681057,109,Urgent,2022-05-06,Inconclusive,9341,484,0,29,,,,DISCHARGED -9342,2020-10-03,32774.278099476694,389,Elective,2020-10-27,Inconclusive,9342,139,4,15,,,,DISCHARGED -9343,2021-03-16,29153.87533034293,376,Urgent,2021-04-12,Normal,9343,325,1,23,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9344,2022-09-24,39678.65823724333,313,Urgent,2022-10-01,Inconclusive,9344,149,0,12,,,,DISCHARGED -9345,2021-01-21,46876.45885847635,201,Urgent,2021-02-03,Inconclusive,9345,287,4,4,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9346,2023-01-27,38679.95763303203,294,Urgent,2023-02-10,Normal,9346,360,1,22,,,,DISCHARGED -9347,2022-10-31,19038.612746642943,153,Emergency,2022-11-09,Inconclusive,9347,339,0,29,,,,DISCHARGED -9348,2022-02-18,46066.49345544951,169,Urgent,2022-03-04,Abnormal,9348,128,4,23,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -9349,2023-09-25,42093.41236687576,285,Emergency,,Inconclusive,9349,437,3,5,,,,OPEN -9350,2020-03-01,7201.922452657804,257,Emergency,2020-03-20,Abnormal,9350,238,1,20,,,,DISCHARGED -9351,2019-03-19,35295.25308937945,191,Emergency,2019-04-03,Abnormal,9351,57,3,23,,,,DISCHARGED -9352,2020-03-15,26805.84481648384,148,Urgent,2020-04-14,Abnormal,9352,197,2,16,,,,DISCHARGED -9353,2023-09-18,23561.063561966712,486,Urgent,2023-09-26,Inconclusive,9353,210,4,16,,,,DISCHARGED -9354,2021-09-30,10544.000809207651,423,Emergency,2021-10-15,Normal,9354,401,4,16,,,,DISCHARGED -9355,2022-08-05,21427.434062808486,473,Emergency,2022-08-28,Abnormal,9355,389,1,2,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9356,2022-05-21,38694.149033370406,299,Urgent,2022-06-06,Inconclusive,9356,44,4,25,,,,DISCHARGED -9357,2020-11-14,22402.21199359324,134,Elective,2020-11-15,Inconclusive,9357,96,2,12,,,,DISCHARGED -9358,2021-09-15,28085.982626306013,272,Urgent,2021-10-03,Abnormal,9358,278,4,11,,,,DISCHARGED -9359,2021-09-21,49676.42731793135,273,Elective,2021-09-28,Inconclusive,9359,22,0,5,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -9362,2022-08-05,42393.01836700056,392,Urgent,2022-09-02,Abnormal,9362,409,3,21,,,,DISCHARGED -9363,2022-07-05,27869.598900321653,207,Emergency,2022-07-28,Normal,9363,460,2,20,,,,DISCHARGED -9364,2021-07-11,9982.07424634433,368,Elective,2021-07-15,Normal,9364,390,2,28,,,,DISCHARGED -9365,2020-08-02,22650.760475787447,451,Emergency,2020-08-17,Normal,9365,334,3,12,,,,DISCHARGED -9366,2018-11-09,40119.37505328199,185,Urgent,2018-11-27,Normal,9366,43,3,13,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9367,2021-07-05,25083.939536984348,316,Urgent,2021-07-23,Normal,9367,26,2,6,,,,DISCHARGED -9369,2019-09-08,31441.23447042926,334,Elective,2019-10-02,Normal,9369,281,3,4,,,,DISCHARGED -9371,2019-02-18,31200.18080146332,388,Elective,2019-03-18,Abnormal,9371,96,1,13,,,,DISCHARGED -9372,2020-04-27,16679.97902794942,283,Elective,2020-04-30,Inconclusive,9372,462,3,17,,,,DISCHARGED -9373,2022-02-04,34570.43253912493,202,Urgent,2022-03-05,Abnormal,9373,35,0,3,,,,DISCHARGED -9374,2018-11-23,23339.00144209056,390,Elective,2018-11-28,Abnormal,9374,108,0,0,,,,DISCHARGED -9375,2021-09-09,35204.14174780302,140,Emergency,2021-09-25,Normal,9375,54,1,6,,,,DISCHARGED -9376,2023-10-01,36422.75218530123,365,Elective,2023-10-23,Abnormal,9376,191,3,19,,,,DISCHARGED -9378,2021-06-04,15032.48734788492,432,Emergency,2021-06-25,Normal,9378,218,0,12,,,,DISCHARGED -9380,2023-05-15,47757.80644395418,343,Emergency,2023-05-26,Inconclusive,9380,184,4,3,,,,DISCHARGED -9381,2021-01-11,11247.279517713832,358,Emergency,2021-02-07,Abnormal,9381,68,3,12,,,,DISCHARGED -9382,2021-06-15,33927.88221774943,236,Emergency,2021-06-16,Normal,9382,316,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9383,2018-11-16,46118.1806193116,278,Urgent,2018-12-14,Inconclusive,9383,129,3,2,,,,DISCHARGED -9384,2020-11-22,49994.98474012479,296,Urgent,2020-11-28,Inconclusive,9384,54,2,7,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -9385,2023-02-16,46667.939352190166,232,Emergency,2023-03-13,Abnormal,9385,377,2,19,,,,DISCHARGED -9386,2019-03-14,29405.67708895468,170,Emergency,2019-03-23,Abnormal,9386,96,0,7,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -9387,2022-01-17,5314.574677601878,403,Elective,2022-01-29,Inconclusive,9387,335,2,24,,,,DISCHARGED -9388,2020-02-11,20946.11573278365,428,Elective,2020-02-15,Normal,9388,86,1,16,,,,DISCHARGED -9389,2020-10-23,33266.615764341244,118,Elective,2020-11-08,Abnormal,9389,293,0,14,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9390,2019-04-15,27881.59117570333,251,Emergency,2019-04-25,Inconclusive,9390,118,1,3,,,,DISCHARGED -9391,2020-09-23,37615.2162952283,399,Urgent,2020-10-15,Normal,9391,207,1,5,,,,DISCHARGED -9392,2022-08-06,46442.46664257765,199,Emergency,2022-09-02,Inconclusive,9392,333,2,23,,,,DISCHARGED -9393,2021-05-31,21405.019699251,380,Emergency,2021-06-19,Normal,9393,412,2,29,,,,DISCHARGED -9394,2023-08-29,27974.34037210844,496,Urgent,2023-09-09,Abnormal,9394,153,1,21,,,,DISCHARGED -9395,2022-03-23,38826.99348414473,191,Urgent,2022-03-25,Abnormal,9395,34,2,27,,,,DISCHARGED -9396,2020-09-23,18925.58099027542,494,Urgent,2020-09-29,Abnormal,9396,78,2,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9397,2021-09-17,49148.49027845049,224,Urgent,2021-09-21,Inconclusive,9397,66,2,9,,,,DISCHARGED -9398,2023-10-24,47518.05280498618,197,Urgent,2023-11-17,Abnormal,9398,342,3,3,,,,DISCHARGED -9399,2021-11-01,38332.05113260467,103,Urgent,2021-11-08,Normal,9399,412,1,8,,,,DISCHARGED -9400,2019-05-08,32331.495205226205,457,Emergency,2019-05-30,Normal,9400,33,4,15,,,,DISCHARGED -9401,2021-01-28,23091.741414290507,458,Emergency,2021-02-24,Normal,9401,96,1,6,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -9402,2019-10-11,1792.4246196991949,428,Emergency,2019-10-19,Normal,9402,168,0,13,,,,DISCHARGED -9403,2019-04-19,35201.62942549824,475,Emergency,2019-04-28,Inconclusive,9403,168,2,26,,,,DISCHARGED -9404,2019-01-20,9084.79242942949,391,Urgent,2019-01-24,Normal,9404,150,2,5,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9405,2020-10-22,7182.445706240468,188,Elective,2020-11-02,Inconclusive,9405,70,4,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9406,2021-09-22,27475.719219408817,340,Urgent,2021-10-20,Normal,9406,2,0,17,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9407,2020-11-21,17433.153686754224,367,Urgent,2020-12-13,Inconclusive,9407,313,3,11,,,,DISCHARGED -9408,2021-06-07,40652.26497962092,481,Urgent,2021-06-22,Abnormal,9408,31,1,21,,,,DISCHARGED -9409,2020-08-24,2164.925691532292,471,Elective,2020-09-12,Abnormal,9409,286,3,26,,,,DISCHARGED -9411,2019-01-17,40389.12344940273,385,Emergency,2019-02-03,Inconclusive,9411,81,0,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9412,2021-09-29,49666.21654235537,488,Urgent,2021-10-23,Normal,9412,42,4,0,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9414,2022-06-04,12741.717323206023,446,Urgent,2022-06-08,Inconclusive,9414,390,0,14,,,,DISCHARGED -9415,2020-05-31,3934.350554801208,383,Urgent,2020-06-07,Abnormal,9415,104,4,14,,,,DISCHARGED -9416,2020-01-08,34556.18080207123,494,Urgent,2020-01-10,Abnormal,9416,0,3,26,,,,DISCHARGED -9418,2023-09-24,23507.982618731963,292,Urgent,2023-09-26,Abnormal,9418,60,3,15,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9419,2021-02-19,21561.71216792462,238,Elective,2021-03-18,Abnormal,9419,269,0,20,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -9420,2022-05-30,35047.35970688111,274,Emergency,2022-06-05,Abnormal,9420,179,0,0,,,,DISCHARGED -9422,2018-11-06,37071.55079513312,476,Urgent,2018-11-08,Abnormal,9422,223,2,28,,,,DISCHARGED -9423,2019-05-24,35893.53826316144,421,Emergency,2019-06-16,Normal,9423,5,4,2,,,,DISCHARGED -9424,2021-05-13,31995.895731988447,372,Elective,2021-06-07,Normal,9424,102,2,11,,,,DISCHARGED -9425,2021-10-18,29794.51556332412,417,Emergency,2021-11-01,Abnormal,9425,9,1,27,,,,DISCHARGED -9426,2023-08-03,36944.42218527525,215,Urgent,2023-08-20,Inconclusive,9426,70,1,27,,,,DISCHARGED -9427,2021-11-07,8886.046223776952,327,Emergency,2021-11-21,Normal,9427,89,0,6,,,,DISCHARGED -9429,2021-11-11,34227.00302465879,178,Elective,2021-11-28,Normal,9429,225,3,4,,,,DISCHARGED -9430,2021-03-15,23325.616210738157,172,Emergency,2021-03-17,Normal,9430,157,1,27,,,,DISCHARGED -9431,2022-06-02,44960.75213210133,191,Urgent,2022-06-18,Normal,9431,227,1,25,,,,DISCHARGED -9432,2020-06-10,18996.551498971363,366,Emergency,2020-07-04,Inconclusive,9432,404,2,0,,,,DISCHARGED -9433,2019-09-25,31334.069244997445,171,Elective,2019-10-04,Abnormal,9433,125,2,0,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9435,2021-05-18,6894.148215034962,250,Urgent,2021-05-21,Abnormal,9435,443,1,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -9436,2021-02-15,40706.28232850206,486,Emergency,2021-02-18,Normal,9436,208,0,7,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9438,2020-06-24,21893.440392859677,135,Emergency,2020-07-08,Inconclusive,9438,96,2,10,,,,DISCHARGED -9439,2022-04-21,21771.5999866856,391,Emergency,2022-05-08,Abnormal,9439,73,1,13,,,,DISCHARGED -9440,2020-09-02,27047.145959020592,348,Emergency,2020-09-16,Inconclusive,9440,114,3,28,,,,DISCHARGED -9442,2020-11-02,45081.99019792554,320,Emergency,2020-11-14,Normal,9442,190,2,24,,,,DISCHARGED -9443,2018-11-25,20121.179009483803,115,Elective,2018-12-16,Normal,9443,494,1,22,,,,DISCHARGED -9444,2020-08-20,32826.24184837564,275,Elective,2020-09-04,Abnormal,9444,169,4,12,,,,DISCHARGED -9445,2020-08-05,5866.316845229658,468,Emergency,2020-08-31,Normal,9445,306,2,18,,,,DISCHARGED -9446,2022-03-12,47899.53619504728,408,Urgent,2022-04-07,Normal,9446,447,4,11,,,,DISCHARGED -9447,2020-05-22,41036.06865480509,372,Urgent,2020-06-15,Inconclusive,9447,203,2,21,,,,DISCHARGED -9448,2021-03-24,8697.372146952988,206,Emergency,2021-04-02,Inconclusive,9448,55,2,18,,,,DISCHARGED -9449,2019-03-08,14001.503518408868,476,Urgent,2019-03-16,Inconclusive,9449,207,4,25,,,,DISCHARGED -9450,2022-09-03,22539.709852770786,212,Urgent,2022-09-30,Abnormal,9450,40,0,3,,,,DISCHARGED -9451,2020-05-12,9156.881161793448,340,Elective,2020-05-16,Abnormal,9451,31,1,27,,,,DISCHARGED -9452,2022-03-13,18674.170884767744,114,Emergency,2022-03-28,Abnormal,9452,14,0,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -9453,2021-01-07,20987.895485764057,287,Urgent,2021-01-27,Abnormal,9453,61,0,2,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -9454,2021-12-13,3841.900370166045,258,Elective,2021-12-25,Inconclusive,9454,154,1,25,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -9455,2023-08-18,45043.78266147874,314,Urgent,2023-09-01,Normal,9455,283,3,5,,,,DISCHARGED -9456,2019-02-24,35467.44207633017,461,Emergency,2019-02-27,Normal,9456,208,0,4,,,,DISCHARGED -9457,2019-11-08,22277.64873448645,346,Elective,2019-11-29,Abnormal,9457,319,0,10,,,,DISCHARGED -9458,2018-12-09,23976.9671148463,154,Elective,2018-12-13,Inconclusive,9458,493,0,24,,,,DISCHARGED -9459,2019-05-07,38112.84266866648,350,Emergency,2019-06-06,Normal,9459,186,3,8,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9460,2020-08-31,35544.9684576915,320,Emergency,2020-09-05,Normal,9460,497,2,2,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -9461,2023-05-27,25660.622524077677,343,Emergency,2023-06-02,Abnormal,9461,441,4,28,,,,DISCHARGED -9462,2020-01-04,17973.91591587562,334,Elective,2020-02-03,Normal,9462,129,4,8,,,,DISCHARGED -9464,2019-07-26,44655.75764866704,404,Emergency,2019-08-02,Inconclusive,9464,126,3,28,,,,DISCHARGED -9465,2023-02-22,20851.09255626411,419,Elective,,Inconclusive,9465,291,0,11,,,,OPEN -9466,2019-11-17,9669.683157364569,189,Elective,2019-12-12,Inconclusive,9466,113,4,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -9467,2022-10-24,6326.766676443482,300,Emergency,2022-10-25,Inconclusive,9467,198,3,19,,,,DISCHARGED -9468,2021-06-07,24893.81409562455,270,Elective,2021-06-09,Inconclusive,9468,12,1,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -9469,2022-07-05,26273.94774221461,160,Emergency,2022-07-27,Normal,9469,270,4,20,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -9470,2020-02-03,20235.35948019497,157,Emergency,2020-02-16,Abnormal,9470,88,1,11,,,,DISCHARGED -9471,2021-07-26,23083.1476405667,339,Emergency,2021-08-11,Normal,9471,214,0,24,,,,DISCHARGED -9472,2021-01-12,28869.71412013064,477,Elective,2021-01-27,Abnormal,9472,443,4,17,,,,DISCHARGED -9473,2023-04-12,20216.30580383417,487,Elective,2023-05-05,Abnormal,9473,277,3,3,,,,DISCHARGED -9474,2021-04-01,15796.458488449449,295,Urgent,2021-04-19,Abnormal,9474,446,2,9,,,,DISCHARGED -9475,2022-11-15,36694.77298838087,124,Emergency,2022-12-05,Normal,9475,473,4,17,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -9476,2023-07-13,16087.62088676793,438,Elective,2023-07-22,Normal,9476,480,4,29,,,,DISCHARGED -9477,2019-03-25,39706.23109483318,120,Urgent,2019-04-04,Abnormal,9477,202,4,7,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9479,2018-12-12,15730.346149122504,283,Urgent,2019-01-11,Normal,9479,73,4,8,,,,DISCHARGED -9481,2022-10-14,27435.353300764546,417,Emergency,2022-10-18,Inconclusive,9481,24,3,18,,,,DISCHARGED -9483,2019-07-25,3514.00445738335,164,Elective,2019-08-02,Abnormal,9483,100,3,12,,,,DISCHARGED -9484,2019-05-04,15027.643479342656,311,Emergency,2019-05-21,Abnormal,9484,175,2,24,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -9485,2022-08-23,36845.368376636754,153,Emergency,2022-08-29,Inconclusive,9485,426,3,5,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9486,2021-02-10,29932.570757261343,401,Urgent,2021-02-14,Inconclusive,9486,116,3,21,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -9487,2019-01-13,40339.722335899256,498,Emergency,2019-02-09,Inconclusive,9487,165,0,6,,,,DISCHARGED -9488,2021-07-27,13107.239897771657,496,Emergency,2021-08-18,Inconclusive,9488,40,0,27,,,,DISCHARGED -9489,2022-04-08,41842.10834290922,227,Emergency,2022-04-24,Normal,9489,428,1,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9490,2022-07-20,38383.377799786205,280,Elective,2022-08-19,Abnormal,9490,343,2,5,,,,DISCHARGED -9491,2022-12-02,5050.940121350248,117,Emergency,2023-01-01,Inconclusive,9491,423,0,10,,,,DISCHARGED -9492,2019-07-15,30642.479451448653,493,Urgent,2019-07-19,Normal,9492,365,2,16,,,,DISCHARGED -9493,2022-09-21,22871.061343627684,236,Emergency,2022-10-17,Inconclusive,9493,119,2,18,,,,DISCHARGED -9494,2023-02-25,31725.32117221325,285,Emergency,,Normal,9494,96,4,27,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,OPEN -9495,2020-11-17,38111.29381293717,175,Emergency,2020-12-12,Abnormal,9495,144,2,24,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -9496,2023-08-16,34769.0322217827,395,Elective,2023-09-05,Abnormal,9496,215,4,11,,,,DISCHARGED -9497,2022-09-12,12988.80289254354,471,Elective,2022-10-08,Normal,9497,228,1,20,,,,DISCHARGED -9498,2020-10-31,41742.00475799513,229,Urgent,2020-11-13,Normal,9498,312,1,20,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -9499,2023-09-02,16665.621666478204,395,Urgent,2023-09-06,Normal,9499,129,1,23,,,,DISCHARGED -9500,2021-09-27,18732.85244892231,164,Elective,2021-10-24,Abnormal,9500,351,4,26,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9501,2020-12-19,18620.42327871196,170,Emergency,2021-01-03,Inconclusive,9501,376,4,26,,,,DISCHARGED -9502,2019-04-01,33858.91413381646,296,Elective,2019-04-17,Abnormal,9502,317,1,12,,,,DISCHARGED -9503,2023-06-25,47742.40124760268,466,Urgent,,Abnormal,9503,471,4,17,,,,OPEN -9504,2023-04-23,45316.06452075124,430,Emergency,2023-05-23,Normal,9504,136,3,28,,,,DISCHARGED -9505,2020-09-25,28162.98037111235,395,Elective,2020-10-08,Inconclusive,9505,323,3,6,,,,DISCHARGED -9506,2023-01-09,31633.72509066413,125,Elective,,Inconclusive,9506,336,4,24,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",OPEN -9508,2018-11-06,34022.650854211926,136,Emergency,2018-11-29,Normal,9508,272,4,22,,,,DISCHARGED -9509,2022-01-18,29665.20936050615,497,Urgent,2022-01-25,Normal,9509,116,0,27,,,,DISCHARGED -9510,2021-01-06,43285.47124727106,271,Elective,2021-01-27,Inconclusive,9510,305,0,4,,,,DISCHARGED -9511,2023-05-25,4943.335248138081,142,Emergency,2023-06-03,Inconclusive,9511,367,2,28,,,,DISCHARGED -9512,2018-11-02,25491.45995824052,243,Urgent,2018-11-29,Abnormal,9512,93,2,15,,,,DISCHARGED -9513,2019-02-09,20321.171156775617,108,Elective,2019-03-05,Inconclusive,9513,167,2,21,,,,DISCHARGED -9514,2019-05-14,15054.431375192453,426,Emergency,2019-05-22,Inconclusive,9514,441,1,3,,,,DISCHARGED -9515,2022-12-09,16119.092077507516,442,Emergency,2022-12-17,Normal,9515,202,3,29,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -9516,2021-12-10,31823.36128271307,286,Elective,2022-01-06,Abnormal,9516,340,1,27,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -9517,2019-03-05,20575.37328588353,125,Urgent,2019-04-03,Normal,9517,148,4,22,,,,DISCHARGED -9518,2020-11-06,33948.779627094314,482,Urgent,2020-12-06,Normal,9518,401,0,0,,,,DISCHARGED -9519,2021-10-31,17038.06636584955,450,Emergency,2021-11-29,Normal,9519,182,4,3,,,,DISCHARGED -9520,2022-05-24,4520.428471040106,210,Emergency,2022-05-29,Inconclusive,9520,412,4,2,,,,DISCHARGED -9521,2021-03-19,33779.91029091437,442,Elective,2021-03-27,Abnormal,9521,151,0,28,,,,DISCHARGED -9522,2022-12-16,3639.468565416816,493,Elective,2023-01-02,Inconclusive,9522,73,4,3,,,,DISCHARGED -9523,2019-09-18,8593.398870021509,298,Emergency,2019-10-15,Abnormal,9523,364,2,0,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9524,2023-08-16,17684.762010789018,325,Emergency,2023-08-29,Abnormal,9524,400,0,11,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9525,2023-09-22,42808.60659685682,105,Emergency,,Normal,9525,273,4,12,,,,OPEN -9526,2022-10-08,25360.569096716343,279,Elective,2022-10-16,Inconclusive,9526,41,2,1,,,,DISCHARGED -9527,2022-10-27,46447.27727137179,270,Elective,2022-11-18,Abnormal,9527,495,2,27,,,,DISCHARGED -9528,2023-01-30,34669.98243188253,107,Emergency,2023-02-03,Inconclusive,9528,211,3,26,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -9529,2020-10-28,1548.3368775235483,257,Emergency,2020-11-14,Abnormal,9529,100,2,28,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -9530,2020-08-10,20926.538191285246,137,Elective,2020-08-20,Inconclusive,9530,44,1,8,,,,DISCHARGED -9531,2021-08-13,8221.348155076532,372,Elective,2021-09-07,Abnormal,9531,81,0,6,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -9532,2019-10-14,24724.842171256714,491,Elective,2019-10-22,Abnormal,9532,16,0,12,,,,DISCHARGED -9533,2021-02-18,48460.2450274802,416,Emergency,2021-03-05,Abnormal,9533,72,0,21,,,,DISCHARGED -9534,2020-10-12,4979.105338812041,480,Urgent,2020-10-22,Inconclusive,9534,13,4,1,,,,DISCHARGED -9535,2022-09-12,33656.77039022831,385,Urgent,2022-10-08,Normal,9535,432,4,0,,,,DISCHARGED -9537,2020-05-31,23589.279140744387,462,Elective,2020-06-04,Normal,9537,156,1,17,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9538,2019-07-21,36036.69929517323,197,Emergency,2019-08-02,Normal,9538,222,2,6,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -9540,2022-02-03,32516.290620891294,439,Elective,2022-02-27,Abnormal,9540,131,4,17,,,,DISCHARGED -9542,2020-11-04,34759.860804141885,348,Elective,2020-11-30,Abnormal,9542,337,2,18,,,,DISCHARGED -9543,2023-04-28,4781.314784376214,202,Urgent,2023-05-24,Inconclusive,9543,403,2,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9544,2021-08-04,43560.90099564828,229,Urgent,2021-09-01,Normal,9544,375,4,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -9545,2020-02-19,40025.17456123845,238,Urgent,2020-03-02,Inconclusive,9545,375,4,11,,,,DISCHARGED -9547,2019-03-25,24197.014145831803,474,Urgent,2019-04-11,Abnormal,9547,46,1,10,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -9548,2018-11-15,32330.303114066508,148,Urgent,2018-12-08,Inconclusive,9548,106,3,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9549,2021-10-23,42219.02802517201,305,Urgent,2021-10-25,Normal,9549,107,0,29,,,,DISCHARGED -9550,2019-09-09,28750.639875588982,124,Elective,2019-09-30,Normal,9550,264,4,26,,,,DISCHARGED -9551,2019-04-16,8609.459057071082,358,Urgent,2019-05-04,Abnormal,9551,204,4,8,,,,DISCHARGED -9552,2021-08-05,21971.32859928623,379,Elective,2021-08-23,Normal,9552,78,2,27,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9553,2022-11-11,26554.52056586294,120,Emergency,2022-12-10,Normal,9553,154,3,3,,,,DISCHARGED -9554,2023-10-08,22516.2563831082,308,Urgent,2023-11-04,Abnormal,9554,270,4,6,,,,DISCHARGED -9555,2019-03-11,19400.181370063765,442,Elective,2019-04-03,Normal,9555,475,3,16,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -9556,2020-05-09,38277.62299470359,341,Emergency,2020-05-19,Abnormal,9556,484,0,10,,,,DISCHARGED -9557,2020-02-17,48914.00079112096,353,Elective,2020-03-03,Normal,9557,246,2,26,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9558,2022-01-05,12266.84149046783,158,Emergency,2022-02-01,Abnormal,9558,18,1,1,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -9559,2018-11-14,11503.794815587926,173,Elective,2018-12-06,Abnormal,9559,345,0,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -9560,2022-01-23,45007.351578048445,485,Urgent,2022-02-07,Normal,9560,435,3,17,,,,DISCHARGED -9561,2023-10-11,28805.913758427363,146,Elective,2023-11-08,Normal,9561,25,3,21,,,,DISCHARGED -9562,2019-02-28,13529.073534769725,350,Emergency,2019-03-09,Normal,9562,216,0,28,,,,DISCHARGED -9564,2020-04-29,32514.971787729737,304,Urgent,2020-05-24,Abnormal,9564,153,3,25,,,,DISCHARGED -9565,2019-10-08,37903.84442387519,286,Emergency,2019-10-25,Normal,9565,153,1,11,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9566,2020-07-18,9115.071499220208,419,Elective,2020-08-03,Normal,9566,173,1,8,,,,DISCHARGED -9568,2022-09-15,41031.31988853498,257,Urgent,2022-09-18,Abnormal,9568,91,3,10,,,,DISCHARGED -9569,2020-07-07,19786.71808836456,493,Urgent,2020-07-16,Inconclusive,9569,432,3,4,,,,DISCHARGED -9570,2019-12-24,18639.780088219784,484,Urgent,2020-01-20,Normal,9570,337,1,25,,,,DISCHARGED -9573,2021-10-30,2530.0986781064216,211,Urgent,2021-11-16,Abnormal,9573,479,3,6,,,,DISCHARGED -9574,2019-01-28,11123.52436891824,498,Emergency,2019-02-11,Abnormal,9574,180,4,28,,,,DISCHARGED -9575,2022-08-27,6078.465880220616,356,Emergency,2022-09-13,Inconclusive,9575,130,2,0,,,,DISCHARGED -9576,2019-08-02,13569.169535617571,388,Emergency,2019-08-25,Normal,9576,449,4,23,,,,DISCHARGED -9577,2019-04-08,17840.96932556043,306,Elective,2019-04-26,Normal,9577,480,3,24,,,,DISCHARGED -9578,2020-07-04,5757.23611769241,355,Elective,2020-07-29,Inconclusive,9578,297,3,28,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9579,2020-09-08,12680.731107725816,259,Emergency,2020-09-12,Inconclusive,9579,274,2,4,,,,DISCHARGED -9580,2022-09-03,37467.489815670415,293,Elective,2022-09-08,Abnormal,9580,272,3,5,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -9581,2019-01-14,47506.44548042351,448,Emergency,2019-01-29,Abnormal,9581,491,2,12,,,,DISCHARGED -9582,2020-11-30,14314.168372631711,408,Urgent,2020-12-10,Normal,9582,416,1,10,,,,DISCHARGED -9583,2021-05-06,34613.16313938826,425,Elective,2021-05-09,Abnormal,9583,75,2,7,,,,DISCHARGED -9584,2019-07-23,6220.413527115213,356,Elective,2019-08-12,Normal,9584,176,2,19,,,,DISCHARGED -9585,2022-10-17,31923.58473727357,367,Urgent,2022-11-12,Normal,9585,183,4,1,,,,DISCHARGED -9586,2023-07-21,23555.178661707552,116,Elective,2023-08-08,Abnormal,9586,318,3,14,,,,DISCHARGED -9587,2022-07-18,44028.19446047585,439,Urgent,2022-08-02,Normal,9587,130,1,9,,,,DISCHARGED -9588,2019-11-20,15929.691855087283,485,Urgent,2019-12-16,Inconclusive,9588,362,0,7,,,,DISCHARGED -9589,2019-02-11,46381.34450604894,276,Urgent,2019-02-27,Abnormal,9589,48,2,1,,,,DISCHARGED -9591,2023-04-09,12892.9774021263,371,Elective,2023-04-21,Normal,9591,54,0,20,,,,DISCHARGED -9592,2023-01-09,33264.410768208254,255,Emergency,2023-01-21,Abnormal,9592,153,3,14,,,,DISCHARGED -9593,2022-12-14,28536.187706717083,145,Elective,2022-12-25,Abnormal,9593,354,2,28,,,,DISCHARGED -9595,2021-07-20,33967.623063863786,296,Elective,2021-07-28,Normal,9595,199,0,5,,,,DISCHARGED -9597,2021-07-14,37552.19906707758,194,Urgent,2021-07-16,Abnormal,9597,307,4,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -9598,2020-08-28,24490.554625411227,390,Elective,2020-09-14,Abnormal,9598,355,0,21,,,,DISCHARGED -9599,2018-12-04,49408.03000527031,464,Emergency,2018-12-25,Normal,9599,372,4,21,,,,DISCHARGED -9600,2020-11-18,18939.732687823023,379,Elective,2020-11-21,Inconclusive,9600,117,1,2,,,,DISCHARGED -9601,2019-09-12,10703.999522457989,458,Elective,2019-10-09,Inconclusive,9601,262,3,10,,,,DISCHARGED -9602,2021-01-15,34439.13690726538,128,Urgent,2021-02-01,Normal,9602,45,0,10,,,,DISCHARGED -9603,2019-11-07,41835.3061035786,169,Emergency,2019-11-26,Normal,9603,301,2,15,,,,DISCHARGED -9604,2019-06-30,29264.76996200568,209,Urgent,2019-07-20,Normal,9604,355,3,2,,,,DISCHARGED -9605,2019-01-05,42620.34076314887,385,Elective,2019-01-20,Abnormal,9605,399,0,8,,,,DISCHARGED -9608,2019-08-06,4001.372218502296,451,Urgent,2019-08-29,Inconclusive,9608,407,2,2,,,,DISCHARGED -9609,2020-09-15,35678.65321517284,167,Emergency,2020-09-23,Abnormal,9609,188,2,18,,,,DISCHARGED -9610,2021-07-08,33989.64739884446,360,Emergency,2021-07-27,Normal,9610,309,2,10,,,,DISCHARGED -9612,2021-11-10,5651.689048138985,488,Elective,2021-12-09,Inconclusive,9612,317,2,13,,,,DISCHARGED -9613,2023-04-08,21329.582052576367,360,Urgent,2023-04-15,Abnormal,9613,128,0,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9614,2021-05-22,24040.23543122317,268,Emergency,2021-06-18,Inconclusive,9614,48,1,6,,,,DISCHARGED -9615,2021-08-04,23528.6374244111,452,Emergency,2021-08-18,Normal,9615,24,4,9,,,,DISCHARGED -9616,2020-05-24,23054.34358715714,293,Urgent,2020-05-30,Abnormal,9616,265,4,9,,,,DISCHARGED -9617,2022-05-21,1118.8311260671571,438,Urgent,2022-05-22,Inconclusive,9617,117,4,19,,,,DISCHARGED -9618,2022-08-07,20463.76918799592,482,Emergency,2022-09-03,Normal,9618,463,1,0,,,,DISCHARGED -9619,2019-06-11,39749.41489228431,378,Elective,2019-06-27,Normal,9619,143,2,5,,,,DISCHARGED -9620,2019-11-29,18682.22855805374,177,Elective,2019-12-02,Abnormal,9620,441,2,20,,,,DISCHARGED -9621,2022-10-25,26950.24528618453,298,Elective,2022-11-02,Normal,9621,199,3,13,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9622,2021-10-06,21807.003212103267,209,Elective,2021-10-23,Normal,9622,156,4,26,,,,DISCHARGED -9624,2022-03-14,28369.142535520463,336,Urgent,2022-03-21,Inconclusive,9624,486,4,1,,,,DISCHARGED -9625,2023-03-31,48532.69397319835,293,Emergency,2023-04-07,Normal,9625,347,2,5,,,,DISCHARGED -9626,2020-06-21,34251.48653543129,176,Urgent,2020-06-22,Inconclusive,9626,133,4,0,,,,DISCHARGED -9627,2021-06-19,34029.180643996275,348,Urgent,2021-07-11,Abnormal,9627,399,2,2,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9628,2022-07-11,37575.4171294518,346,Elective,2022-07-30,Abnormal,9628,147,2,3,,,,DISCHARGED -9629,2022-04-10,45440.14704771098,407,Emergency,2022-04-19,Normal,9629,335,2,12,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9630,2022-03-11,19119.35911161525,136,Elective,2022-03-28,Inconclusive,9630,70,0,2,,,,DISCHARGED -9633,2023-09-12,49331.925357798274,472,Urgent,,Abnormal,9633,232,0,14,,,,OPEN -9634,2021-02-06,16001.770406330012,155,Elective,2021-02-17,Abnormal,9634,333,0,12,,,,DISCHARGED -9635,2023-06-11,17407.914278539127,166,Emergency,2023-06-29,Normal,9635,298,0,21,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9636,2023-01-14,40591.69926562745,290,Urgent,,Abnormal,9636,153,1,10,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -9637,2019-04-24,4048.725642947292,126,Urgent,2019-05-05,Inconclusive,9637,89,3,3,,,,DISCHARGED -9638,2022-09-05,3691.849225546685,497,Elective,2022-10-04,Normal,9638,333,3,29,,,,DISCHARGED -9639,2021-02-18,12470.951401999228,452,Emergency,2021-03-03,Inconclusive,9639,198,2,16,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -9641,2022-10-27,26175.413431594963,442,Emergency,2022-11-26,Normal,9641,160,4,4,,,,DISCHARGED -9642,2021-10-01,47798.352690945954,174,Urgent,2021-10-05,Inconclusive,9642,25,0,20,,,,DISCHARGED -9643,2020-12-21,11312.338562001529,361,Emergency,2021-01-08,Abnormal,9643,120,3,24,,,,DISCHARGED -9644,2023-08-21,18171.27602925551,300,Elective,,Normal,9644,300,3,23,,,,OPEN -9645,2021-03-07,29189.589592356217,132,Elective,2021-03-24,Normal,9645,211,0,7,,,,DISCHARGED -9648,2018-12-19,35365.03687567495,423,Elective,2018-12-26,Normal,9648,62,1,20,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9649,2021-05-03,27082.46860557441,269,Elective,2021-05-17,Normal,9649,450,1,23,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9650,2020-07-08,17765.328890597513,309,Emergency,2020-07-23,Inconclusive,9650,435,3,29,,,,DISCHARGED -9651,2022-10-10,19121.81064338493,258,Urgent,2022-11-08,Abnormal,9651,67,1,9,,,,DISCHARGED -9652,2020-03-18,22691.3180079067,342,Elective,2020-04-13,Inconclusive,9652,252,0,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -9653,2019-01-11,2702.255028943887,172,Emergency,2019-01-16,Inconclusive,9653,409,3,16,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -9654,2022-12-06,42216.522948794656,490,Elective,2023-01-04,Normal,9654,458,0,27,,,,DISCHARGED -9655,2019-07-16,10475.950408255008,165,Elective,2019-08-15,Inconclusive,9655,1,1,6,,,,DISCHARGED -9656,2022-10-21,15449.024882169548,425,Urgent,2022-10-31,Abnormal,9656,397,0,26,,,,DISCHARGED -9657,2019-07-18,7498.035177188293,358,Urgent,2019-08-13,Abnormal,9657,107,1,23,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -9658,2020-01-18,16717.665164574028,345,Urgent,2020-01-24,Inconclusive,9658,285,1,18,,,,DISCHARGED -9659,2019-04-11,46941.69795646965,432,Emergency,2019-04-26,Inconclusive,9659,48,0,8,,,,DISCHARGED -9660,2019-10-15,22950.418602827987,436,Elective,2019-11-01,Abnormal,9660,139,1,23,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9661,2022-11-01,14755.68995432073,424,Emergency,2022-11-10,Abnormal,9661,217,2,1,,,,DISCHARGED -9662,2021-07-19,5870.637951863089,397,Urgent,2021-08-16,Inconclusive,9662,43,0,21,,,,DISCHARGED -9663,2021-10-16,15237.945526635076,176,Emergency,2021-10-17,Abnormal,9663,416,2,19,,,,DISCHARGED -9664,2023-04-28,12481.101145800443,348,Emergency,2023-05-06,Abnormal,9664,268,0,18,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9665,2019-12-17,42759.41513912659,491,Emergency,2020-01-13,Abnormal,9665,77,1,26,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -9666,2022-02-21,2825.8628607741107,384,Emergency,2022-03-15,Normal,9666,215,1,5,,,,DISCHARGED -9667,2019-02-18,10502.410516779371,350,Elective,2019-02-26,Inconclusive,9667,381,3,9,,,,DISCHARGED -9668,2021-04-02,9699.424772705905,293,Elective,2021-04-23,Normal,9668,97,3,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -9669,2019-05-10,20246.388784920397,182,Elective,2019-05-20,Inconclusive,9669,235,2,24,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9670,2022-10-05,20491.93058442884,183,Elective,2022-10-14,Inconclusive,9670,281,1,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -9671,2022-02-08,37989.780508136864,235,Urgent,2022-03-09,Abnormal,9671,148,3,9,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9672,2023-05-25,24899.339789045487,363,Elective,,Normal,9672,411,1,9,,,,OPEN -9673,2022-10-29,6554.936512300236,404,Emergency,2022-11-23,Inconclusive,9673,303,0,25,,,,DISCHARGED -9674,2019-03-10,37746.77903382421,463,Emergency,2019-03-21,Normal,9674,483,3,4,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -9676,2019-10-20,28148.575886522383,340,Emergency,2019-11-03,Inconclusive,9676,423,2,21,,,,DISCHARGED -9677,2022-05-29,23625.09689969844,191,Elective,2022-06-02,Inconclusive,9677,65,3,3,,,,DISCHARGED -9678,2019-04-29,19668.947533492355,250,Emergency,2019-05-23,Normal,9678,233,1,22,,,,DISCHARGED -9679,2020-09-23,17248.98840250034,420,Emergency,2020-10-08,Normal,9679,456,4,1,,,,DISCHARGED -9680,2020-11-24,17258.32127966442,357,Urgent,2020-12-16,Inconclusive,9680,86,4,6,,,,DISCHARGED -9681,2022-02-10,8639.499734471934,108,Urgent,2022-02-15,Normal,9681,78,1,17,,,,DISCHARGED -9682,2021-11-09,8106.62731560165,208,Urgent,2021-11-25,Normal,9682,204,0,16,,,,DISCHARGED -9683,2020-05-30,5818.806502327479,475,Elective,2020-06-03,Inconclusive,9683,278,3,10,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -9684,2020-04-08,32194.51375357532,178,Elective,2020-04-29,Abnormal,9684,336,4,20,,,,DISCHARGED -9685,2021-12-01,35646.35208119993,495,Urgent,2021-12-11,Inconclusive,9685,253,0,17,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9686,2019-09-03,26452.040576515148,298,Emergency,2019-09-28,Inconclusive,9686,303,1,7,,,,DISCHARGED -9687,2022-01-15,31430.89880796007,219,Elective,2022-01-16,Normal,9687,379,0,27,,,,DISCHARGED -9688,2023-09-06,47938.14487629312,193,Urgent,,Abnormal,9688,129,1,27,,,,OPEN -9690,2021-09-29,42995.60963656225,460,Urgent,2021-10-24,Normal,9690,83,3,11,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -9691,2022-10-03,7460.393199892693,396,Emergency,2022-10-14,Abnormal,9691,275,0,23,,,,DISCHARGED -9692,2019-11-23,15243.158324036942,114,Emergency,2019-11-26,Abnormal,9692,186,3,0,,,,DISCHARGED -9693,2020-09-09,11964.137562873244,320,Urgent,2020-09-26,Normal,9693,45,0,19,,,,DISCHARGED -9694,2020-08-10,6699.178105948575,172,Urgent,2020-08-14,Abnormal,9694,386,1,29,,,,DISCHARGED -9695,2023-10-26,16736.248526230556,253,Elective,2023-11-21,Inconclusive,9695,182,1,24,,,,DISCHARGED -9696,2023-01-04,11280.992523600917,138,Elective,2023-01-31,Normal,9696,267,0,20,,,,DISCHARGED -9697,2018-11-28,28638.76870546042,209,Elective,2018-12-07,Normal,9697,295,1,11,,,,DISCHARGED -9698,2020-09-28,32711.12112420037,140,Emergency,2020-10-09,Abnormal,9698,321,2,26,,,,DISCHARGED -9700,2019-04-12,5500.38352277576,339,Emergency,2019-05-11,Abnormal,9700,99,2,25,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9701,2019-04-28,28412.454889008248,220,Urgent,2019-05-07,Abnormal,9701,77,3,28,,,,DISCHARGED -9703,2019-07-27,5906.052893056745,176,Urgent,2019-08-07,Inconclusive,9703,271,2,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -9704,2020-04-12,19179.031435993384,334,Emergency,2020-05-06,Inconclusive,9704,338,2,2,,,,DISCHARGED -9705,2021-11-13,17340.573465789937,410,Emergency,2021-12-13,Abnormal,9705,161,4,4,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -9706,2018-11-02,32616.76600426902,363,Urgent,2018-11-14,Normal,9706,43,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -9707,2023-05-04,27332.66087193986,265,Elective,2023-05-29,Normal,9707,237,4,11,,,,DISCHARGED -9708,2021-07-19,28922.65913693515,149,Elective,2021-07-21,Normal,9708,133,4,12,,,,DISCHARGED -9709,2020-01-11,30019.690600064056,288,Elective,2020-02-05,Abnormal,9709,460,1,12,,,,DISCHARGED -9710,2019-11-13,45584.15560000882,263,Urgent,2019-11-27,Abnormal,9710,191,3,28,,,,DISCHARGED -9711,2020-11-22,7130.664083479242,134,Elective,2020-12-10,Normal,9711,355,3,16,,,,DISCHARGED -9712,2022-01-05,13790.50620060984,265,Urgent,2022-01-19,Normal,9712,277,2,23,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9713,2020-10-05,40687.85448176824,196,Urgent,2020-10-18,Abnormal,9713,17,3,26,,,,DISCHARGED -9714,2023-10-03,42712.67485971958,440,Elective,,Inconclusive,9714,11,2,14,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -9715,2022-08-18,43363.23023083918,170,Elective,2022-09-05,Inconclusive,9715,179,3,5,,,,DISCHARGED -9716,2022-05-19,35431.81134218681,317,Elective,2022-06-18,Inconclusive,9716,122,0,11,,,,DISCHARGED -9717,2021-05-13,13563.249041623523,161,Urgent,2021-05-23,Normal,9717,245,0,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -9718,2021-02-08,32056.25617943407,251,Urgent,2021-03-07,Abnormal,9718,221,3,3,,,,DISCHARGED -9719,2019-04-05,47026.89186132301,438,Emergency,2019-04-06,Inconclusive,9719,372,1,19,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -9720,2019-04-07,24754.647932548327,327,Elective,2019-04-22,Normal,9720,50,2,24,,,,DISCHARGED -9721,2023-10-28,43047.41106018499,405,Elective,2023-11-27,Inconclusive,9721,487,3,24,,,,DISCHARGED -9722,2020-06-14,13743.409289062054,166,Urgent,2020-07-03,Normal,9722,70,2,20,,,,DISCHARGED -9723,2023-10-05,27186.509092691125,224,Elective,2023-10-20,Abnormal,9723,479,4,11,,,,DISCHARGED -9724,2023-05-01,42847.70206225144,115,Urgent,2023-05-30,Abnormal,9724,47,3,2,,,,DISCHARGED -9725,2021-04-07,46321.489055376594,278,Emergency,2021-04-09,Abnormal,9725,18,1,16,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -9726,2023-10-07,16605.718483135443,451,Emergency,2023-10-20,Abnormal,9726,261,4,5,,,,DISCHARGED -9727,2022-04-11,38809.31012111005,240,Urgent,2022-05-03,Inconclusive,9727,83,3,23,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -9729,2019-01-16,24944.63208705401,178,Emergency,2019-01-17,Inconclusive,9729,154,0,16,,,,DISCHARGED -9730,2020-06-09,42129.350010958144,281,Emergency,2020-06-22,Normal,9730,52,3,26,,,,DISCHARGED -9731,2019-06-15,12095.117714089787,201,Urgent,2019-06-20,Inconclusive,9731,106,0,16,,,,DISCHARGED -9732,2021-11-08,21584.10229499755,272,Emergency,2021-11-26,Normal,9732,356,0,10,,,,DISCHARGED -9733,2019-10-05,22208.328318435804,318,Elective,2019-10-12,Inconclusive,9733,303,3,22,,,,DISCHARGED -9734,2022-02-19,16957.17420233623,481,Urgent,2022-02-23,Normal,9734,134,3,6,,,,DISCHARGED -9736,2022-09-24,13581.0089167484,423,Emergency,2022-10-03,Normal,9736,442,0,1,,,,DISCHARGED -9737,2022-01-07,9209.45351961647,213,Urgent,2022-02-04,Abnormal,9737,68,2,18,,,,DISCHARGED -9738,2021-10-01,11578.265499407742,236,Emergency,2021-10-23,Abnormal,9738,10,4,1,,,,DISCHARGED -9739,2022-05-31,5287.393250021994,464,Elective,2022-06-29,Normal,9739,142,1,21,,,,DISCHARGED -9740,2021-07-20,30707.487068089777,371,Emergency,2021-08-07,Inconclusive,9740,191,3,28,,,,DISCHARGED -9742,2022-11-02,25712.33842063509,236,Emergency,2022-11-19,Abnormal,9742,386,4,12,,,,DISCHARGED -9743,2019-06-20,19350.61491477125,224,Urgent,2019-07-05,Abnormal,9743,377,4,23,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9744,2019-01-30,2758.335750637233,117,Urgent,2019-02-21,Normal,9744,68,2,23,,,,DISCHARGED -9745,2021-05-07,10659.36509199032,350,Elective,2021-06-03,Inconclusive,9745,22,4,15,,,,DISCHARGED -9746,2021-02-17,40322.320481317176,146,Emergency,2021-03-13,Normal,9746,180,3,16,,,,DISCHARGED -9747,2022-07-09,49397.99886262989,382,Urgent,2022-08-03,Normal,9747,292,4,10,,,,DISCHARGED -9749,2020-06-01,29709.082207880638,404,Elective,2020-06-11,Abnormal,9749,8,3,8,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -9750,2021-08-06,18555.540732174897,355,Emergency,2021-08-25,Abnormal,9750,270,3,26,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -9751,2020-07-06,22735.21328037933,307,Elective,2020-07-07,Normal,9751,386,0,23,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9752,2022-10-03,3325.854786482901,355,Emergency,2022-10-14,Abnormal,9752,92,2,8,,,,DISCHARGED -9753,2023-08-04,34689.217904932564,237,Urgent,2023-08-26,Abnormal,9753,453,1,28,,,,DISCHARGED -9754,2020-12-18,28623.423800404795,381,Elective,2020-12-20,Inconclusive,9754,16,0,13,,,,DISCHARGED -9755,2021-08-11,47707.81839002663,270,Elective,2021-08-15,Abnormal,9755,153,1,12,,,,DISCHARGED -9756,2020-12-27,29031.933569662207,307,Urgent,2021-01-21,Normal,9756,404,3,24,,,,DISCHARGED -9757,2023-05-14,32403.867384594152,280,Emergency,2023-05-19,Inconclusive,9757,327,0,10,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -9758,2022-03-08,7013.703138185272,378,Urgent,2022-03-20,Abnormal,9758,148,4,11,,,,DISCHARGED -9759,2023-09-11,30429.17678092431,366,Urgent,2023-09-26,Inconclusive,9759,376,4,21,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9760,2022-05-23,13046.561061175236,388,Urgent,2022-06-12,Abnormal,9760,266,1,2,,,,DISCHARGED -9761,2023-03-27,30737.38612489365,150,Emergency,,Inconclusive,9761,421,3,0,,,,OPEN -9762,2022-10-06,37668.99231087265,279,Emergency,2022-10-14,Inconclusive,9762,327,1,26,,,,DISCHARGED -9763,2022-04-20,18469.36016439754,365,Emergency,2022-05-01,Normal,9763,105,2,7,,,,DISCHARGED -9765,2023-03-22,47765.5175157545,419,Urgent,2023-03-30,Abnormal,9765,471,4,25,,,,DISCHARGED -9766,2022-02-17,47699.03529922939,229,Elective,2022-03-10,Normal,9766,380,0,18,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9767,2021-04-17,23380.073571168672,396,Urgent,2021-05-08,Inconclusive,9767,34,0,12,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -9768,2022-10-04,23913.339851483797,245,Urgent,2022-10-20,Inconclusive,9768,118,0,6,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9769,2022-01-25,33910.75473829914,121,Elective,2022-02-02,Abnormal,9769,13,4,12,,,,DISCHARGED -9770,2019-08-11,6015.95267461178,176,Emergency,2019-08-28,Abnormal,9770,13,3,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -9771,2021-03-20,10800.610057635917,484,Urgent,2021-04-05,Inconclusive,9771,265,4,5,,,,DISCHARGED -9772,2019-12-03,46032.15309346579,252,Urgent,2019-12-05,Abnormal,9772,139,4,2,,,,DISCHARGED -9773,2019-02-28,36842.56870364607,157,Urgent,2019-03-23,Inconclusive,9773,293,0,5,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9774,2019-04-07,21535.95199755365,208,Emergency,2019-04-19,Normal,9774,363,4,27,,,,DISCHARGED -9775,2020-08-17,35388.82831578764,206,Emergency,2020-09-16,Normal,9775,118,0,2,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9776,2022-10-08,42470.149259777216,159,Urgent,2022-10-30,Inconclusive,9776,237,3,12,,,,DISCHARGED -9777,2020-06-27,34773.11672276814,139,Elective,2020-07-27,Abnormal,9777,33,2,12,,,,DISCHARGED -9778,2023-09-20,28835.050352851187,460,Elective,2023-09-21,Inconclusive,9778,168,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -9779,2023-01-25,40706.756367193695,382,Elective,2023-01-30,Abnormal,9779,9,1,24,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9780,2020-02-15,11879.459621555614,265,Elective,2020-03-02,Inconclusive,9780,121,2,12,,,,DISCHARGED -9781,2019-07-11,37112.45944905461,369,Elective,2019-07-12,Inconclusive,9781,400,3,0,,,,DISCHARGED -9782,2022-07-28,39823.19094686836,186,Urgent,2022-07-31,Abnormal,9782,144,2,28,,,,DISCHARGED -9783,2023-10-30,48754.92114615348,350,Elective,2023-11-18,Normal,9783,450,0,7,,,,DISCHARGED -9784,2023-06-05,23012.892520303205,438,Emergency,2023-06-19,Normal,9784,445,3,4,,,,DISCHARGED -9785,2021-06-02,2166.596844607958,361,Elective,2021-06-28,Normal,9785,222,1,19,,,,DISCHARGED -9786,2022-07-08,16899.464928324745,200,Emergency,2022-07-26,Abnormal,9786,370,0,16,,,,DISCHARGED -9787,2023-10-10,41430.88386465394,377,Elective,,Inconclusive,9787,256,0,8,,,,OPEN -9788,2020-12-06,47778.244349762965,409,Urgent,2021-01-01,Normal,9788,267,3,12,,,,DISCHARGED -9790,2023-06-08,2202.002980999018,129,Emergency,2023-07-04,Inconclusive,9790,358,3,24,,,,DISCHARGED -9792,2023-10-15,5079.171586366583,200,Emergency,2023-10-21,Abnormal,9792,3,2,12,,,,DISCHARGED -9793,2023-10-18,15276.258410256076,218,Elective,2023-11-13,Inconclusive,9793,425,1,4,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9794,2020-01-31,15014.257274069723,496,Urgent,2020-02-19,Abnormal,9794,396,2,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -9796,2020-12-17,11333.21108973169,343,Urgent,2021-01-14,Normal,9796,353,2,10,,,,DISCHARGED -9797,2020-03-23,43545.93887670325,205,Urgent,2020-03-31,Inconclusive,9797,105,0,24,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -9798,2019-07-25,3410.9377230355044,395,Emergency,2019-08-11,Normal,9798,84,3,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9799,2020-07-25,21444.502242224906,311,Emergency,2020-08-17,Inconclusive,9799,213,0,13,,,,DISCHARGED -9800,2023-02-13,44948.76988215603,257,Emergency,2023-03-15,Inconclusive,9800,120,1,24,,,,DISCHARGED -9801,2023-08-04,22781.12720747372,290,Urgent,2023-08-24,Abnormal,9801,131,2,6,,,,DISCHARGED -9802,2022-03-26,7796.311386434458,241,Elective,2022-03-31,Inconclusive,9802,337,1,23,,,,DISCHARGED -9803,2022-12-13,32113.30182993484,279,Urgent,2022-12-28,Abnormal,9803,196,3,16,,,,DISCHARGED -9805,2021-02-13,14705.97144935834,381,Urgent,2021-03-07,Normal,9805,18,3,3,,,,DISCHARGED -9807,2021-05-15,47748.71634464196,482,Elective,2021-06-05,Normal,9807,129,4,9,,,,DISCHARGED -9808,2020-03-02,42206.57159968563,369,Emergency,2020-03-28,Normal,9808,11,1,9,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9809,2022-07-30,18734.69948543802,474,Emergency,2022-08-03,Abnormal,9809,80,0,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9810,2019-02-22,39238.10515880027,328,Emergency,2019-03-13,Normal,9810,329,1,19,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9811,2019-03-19,4466.9219144162735,397,Urgent,2019-03-31,Inconclusive,9811,353,2,11,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -9812,2021-12-21,22135.06754243555,366,Elective,2022-01-19,Abnormal,9812,261,3,8,,,,DISCHARGED -9813,2020-09-01,46663.76859979641,382,Urgent,2020-09-19,Normal,9813,391,3,2,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -9814,2022-02-12,13049.755779648058,312,Urgent,2022-02-22,Inconclusive,9814,124,1,14,,,,DISCHARGED -9815,2021-02-12,17269.41067955875,456,Elective,2021-02-19,Abnormal,9815,306,1,11,,,,DISCHARGED -9816,2020-08-15,8643.200302209143,334,Elective,2020-09-07,Normal,9816,266,1,25,,,,DISCHARGED -9817,2019-11-04,34921.00392304842,329,Emergency,2019-12-03,Abnormal,9817,446,2,14,,,,DISCHARGED -9818,2019-10-10,6765.8331684450895,284,Urgent,2019-10-20,Inconclusive,9818,440,2,25,,,,DISCHARGED -9819,2020-09-18,26823.862274730447,201,Emergency,2020-10-08,Normal,9819,382,0,0,,,,DISCHARGED -9820,2019-12-12,16741.267080950478,358,Emergency,2019-12-28,Inconclusive,9820,139,1,14,,,,DISCHARGED -9821,2023-08-19,12118.785653512374,391,Emergency,2023-08-26,Abnormal,9821,328,0,10,,,,DISCHARGED -9822,2022-08-13,38642.26103114028,234,Emergency,2022-08-30,Inconclusive,9822,1,4,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -9823,2023-05-25,47915.214461528565,280,Emergency,2023-06-20,Abnormal,9823,7,2,6,,,,DISCHARGED -9825,2019-09-26,36417.61284594979,317,Emergency,2019-10-24,Inconclusive,9825,249,3,11,,,,DISCHARGED -9826,2021-03-18,37541.875298376304,113,Elective,2021-04-05,Abnormal,9826,138,4,19,,,,DISCHARGED -9827,2023-04-13,34757.78975456076,205,Elective,2023-05-06,Abnormal,9827,123,3,24,,,,DISCHARGED -9828,2021-06-09,13435.528635815212,266,Elective,2021-06-13,Normal,9828,308,4,5,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9829,2020-10-20,31488.027156085187,328,Elective,2020-11-18,Abnormal,9829,227,0,21,,,,DISCHARGED -9830,2021-06-20,21340.88365488702,165,Elective,2021-07-12,Normal,9830,9,0,2,,,,DISCHARGED -9831,2020-03-02,27189.88326150428,347,Elective,2020-03-14,Normal,9831,468,2,9,,,,DISCHARGED -9832,2021-03-13,33795.96129444848,372,Urgent,2021-03-24,Normal,9832,211,3,25,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -9833,2022-06-10,44801.62700601499,221,Elective,2022-06-30,Inconclusive,9833,111,4,20,,,,DISCHARGED -9834,2021-03-07,45206.9820431323,376,Urgent,2021-03-22,Abnormal,9834,7,1,25,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -9835,2020-09-21,42817.19779737234,285,Emergency,2020-10-18,Normal,9835,291,1,21,,,,DISCHARGED -9836,2023-05-13,28844.185454967195,246,Urgent,2023-05-31,Inconclusive,9836,476,2,29,,,,DISCHARGED -9837,2020-10-27,40771.30573754242,480,Emergency,2020-11-25,Normal,9837,361,3,3,,,,DISCHARGED -9838,2022-01-09,41197.52402614246,420,Emergency,2022-01-25,Inconclusive,9838,459,1,12,,,,DISCHARGED -9839,2022-05-21,44684.03127045113,148,Elective,2022-05-31,Abnormal,9839,252,2,18,,,,DISCHARGED -9840,2022-03-25,26692.800531825986,445,Elective,2022-04-17,Normal,9840,13,2,4,,,,DISCHARGED -9841,2020-09-11,14047.059542709438,195,Urgent,2020-10-02,Abnormal,9841,239,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9842,2023-06-19,23031.06799478597,230,Emergency,2023-06-27,Abnormal,9842,437,1,26,,,,DISCHARGED -9843,2022-12-03,37979.31092166392,352,Emergency,2022-12-25,Normal,9843,241,1,21,,,,DISCHARGED -9845,2023-03-27,26350.532740571187,272,Elective,2023-04-05,Inconclusive,9845,468,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9846,2019-06-20,38745.17587433256,275,Emergency,2019-06-22,Abnormal,9846,341,0,0,,,,DISCHARGED -9847,2021-09-06,15620.254668842545,295,Emergency,2021-09-29,Inconclusive,9847,148,1,20,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -9848,2019-07-12,20519.99016059257,220,Urgent,2019-07-23,Normal,9848,235,4,20,,,,DISCHARGED -9849,2020-08-17,42053.7688302178,338,Urgent,2020-08-19,Abnormal,9849,305,0,27,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -9850,2020-12-15,11011.46410275345,207,Elective,2021-01-13,Inconclusive,9850,477,0,15,,,,DISCHARGED -9851,2020-01-23,44496.9101828404,142,Elective,2020-02-20,Normal,9851,166,0,15,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -9852,2023-05-29,35696.85736045369,159,Urgent,2023-05-31,Abnormal,9852,19,0,15,,,,DISCHARGED -9854,2019-04-28,18184.480136417707,258,Urgent,2019-05-04,Normal,9854,215,2,27,,,,DISCHARGED -9856,2020-05-29,24240.32310302941,367,Elective,2020-06-02,Normal,9856,342,4,21,,,,DISCHARGED -9857,2022-11-19,41595.22025421151,294,Elective,2022-11-29,Inconclusive,9857,134,3,18,,,,DISCHARGED -9858,2023-03-24,42645.15112144123,252,Urgent,2023-03-25,Abnormal,9858,392,1,15,,,,DISCHARGED -9859,2020-06-30,8056.605525248469,176,Emergency,2020-07-30,Abnormal,9859,128,0,0,,,,DISCHARGED -9860,2023-10-05,34659.15796406989,414,Urgent,,Inconclusive,9860,409,3,19,,,,OPEN -9861,2023-03-22,21619.576123892017,142,Elective,2023-04-03,Normal,9861,421,2,19,,,,DISCHARGED -9862,2023-08-23,35817.969737550135,316,Emergency,2023-09-08,Inconclusive,9862,293,3,9,,,,DISCHARGED -9863,2019-12-29,48335.96428065138,146,Elective,2020-01-13,Abnormal,9863,245,0,1,,,,DISCHARGED -9864,2023-05-17,10810.151737261876,443,Urgent,2023-06-03,Inconclusive,9864,188,4,13,,,,DISCHARGED -9865,2022-05-16,23232.54753921958,382,Emergency,2022-05-24,Normal,9865,43,3,7,,,,DISCHARGED -9866,2019-04-16,31485.60579909287,390,Emergency,2019-04-20,Inconclusive,9866,85,0,5,,,,DISCHARGED -9867,2023-02-22,23193.954195134866,247,Emergency,2023-02-28,Abnormal,9867,43,0,27,,,,DISCHARGED -9868,2023-06-03,13795.300114503212,163,Elective,,Abnormal,9868,329,1,2,,,,OPEN -9870,2019-12-14,41041.61450399758,367,Emergency,2020-01-04,Inconclusive,9870,374,1,15,,,,DISCHARGED -9872,2021-06-12,4427.709908878663,398,Urgent,2021-06-21,Inconclusive,9872,445,4,16,,,,DISCHARGED -9873,2020-10-27,39196.8179375508,228,Elective,2020-11-03,Inconclusive,9873,377,1,11,,,,DISCHARGED -9874,2019-02-22,37733.90503375637,299,Urgent,2019-02-25,Inconclusive,9874,389,4,26,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9875,2021-06-27,38382.05769240431,233,Elective,2021-07-18,Inconclusive,9875,144,2,18,,,,DISCHARGED -9876,2018-11-28,40070.90994005198,107,Emergency,2018-12-18,Abnormal,9876,50,2,23,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -9879,2020-04-12,24461.09201046662,232,Emergency,2020-04-21,Abnormal,9879,241,1,19,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -9880,2023-05-28,8566.857147250108,265,Urgent,,Abnormal,9880,293,2,2,,,,OPEN -9881,2023-09-19,18698.263748536832,373,Elective,,Inconclusive,9881,407,3,12,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",OPEN -9882,2023-05-10,24288.40903048542,367,Emergency,,Inconclusive,9882,50,3,15,,,,OPEN -9883,2023-10-27,49318.25219949161,114,Emergency,2023-11-10,Normal,9883,265,3,10,,,,DISCHARGED -9886,2022-09-23,2313.393614715073,153,Urgent,2022-10-10,Inconclusive,9886,119,2,19,,,,DISCHARGED -9887,2020-12-17,14335.201916936188,326,Emergency,2020-12-30,Inconclusive,9887,199,3,26,,,,DISCHARGED -9888,2023-02-12,13307.3476128259,104,Urgent,2023-03-01,Abnormal,9888,404,4,15,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -9892,2020-11-02,32158.62433197718,319,Elective,2020-11-29,Inconclusive,9892,247,0,19,,,,DISCHARGED -9893,2022-08-04,16652.75320255519,327,Emergency,2022-08-18,Inconclusive,9893,69,1,1,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -9894,2019-02-11,39980.41430525488,142,Elective,2019-02-16,Normal,9894,340,4,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9896,2019-11-23,6858.789498835268,473,Elective,2019-12-12,Abnormal,9896,56,3,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -9897,2021-01-10,36286.222945517125,218,Emergency,2021-01-18,Inconclusive,9897,381,0,27,,,,DISCHARGED -9898,2021-11-02,9368.304069240534,409,Elective,2021-11-16,Inconclusive,9898,38,1,24,,,,DISCHARGED -9899,2022-02-23,39832.75477666103,495,Elective,2022-03-13,Normal,9899,471,4,3,,,,DISCHARGED -9901,2020-03-27,25964.156646785843,488,Emergency,2020-04-19,Inconclusive,9901,288,1,27,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9902,2019-03-14,30944.78314296131,259,Elective,2019-03-29,Abnormal,9902,442,2,16,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -9903,2023-02-24,3639.902717162287,113,Elective,2023-03-02,Normal,9903,17,3,0,,,,DISCHARGED -9904,2022-09-14,29362.847315438463,448,Elective,2022-09-15,Abnormal,9904,439,4,0,,,,DISCHARGED -9905,2018-12-04,28095.84431737133,251,Urgent,2018-12-18,Inconclusive,9905,219,4,29,,,,DISCHARGED -9906,2019-07-11,26808.05931344583,442,Emergency,2019-07-17,Inconclusive,9906,312,0,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -9907,2021-12-30,5747.392516161541,244,Urgent,2022-01-27,Inconclusive,9907,243,0,21,,,,DISCHARGED -9908,2019-05-30,47331.61914995915,454,Emergency,2019-06-24,Inconclusive,9908,351,0,11,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9909,2022-01-05,28391.15507272907,198,Emergency,2022-01-20,Abnormal,9909,459,1,5,,,,DISCHARGED -9910,2018-11-10,36241.46652564103,495,Urgent,2018-11-22,Normal,9910,303,3,5,,,,DISCHARGED -9912,2021-01-15,5656.9830731089405,234,Emergency,2021-02-06,Inconclusive,9912,297,1,24,,,,DISCHARGED -9913,2019-04-27,27286.86204746917,485,Elective,2019-05-02,Inconclusive,9913,282,3,16,,,,DISCHARGED -9914,2020-03-21,11794.209346759251,279,Emergency,2020-04-03,Inconclusive,9914,73,4,25,,,,DISCHARGED -9915,2022-10-07,20330.483167829065,296,Elective,2022-10-14,Normal,9915,109,1,21,,,,DISCHARGED -9916,2021-02-19,25956.520629540857,199,Emergency,2021-02-27,Abnormal,9916,179,1,12,,,,DISCHARGED -9917,2019-07-13,33120.34668950248,219,Emergency,2019-08-11,Abnormal,9917,425,1,7,,,,DISCHARGED -9918,2019-02-27,48186.31782177068,360,Elective,2019-03-07,Normal,9918,31,2,23,,,,DISCHARGED -9919,2019-02-06,1725.1148896641266,415,Elective,2019-02-18,Normal,9919,233,3,11,,,,DISCHARGED -9920,2018-11-17,27613.682838009183,178,Emergency,2018-12-04,Inconclusive,9920,281,3,14,,,,DISCHARGED -9921,2022-07-08,10205.114353228477,131,Urgent,2022-08-03,Abnormal,9921,24,1,18,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -9922,2020-04-20,40729.62766346608,307,Elective,2020-05-09,Inconclusive,9922,330,2,28,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9923,2023-07-29,20494.000982512905,251,Urgent,2023-08-17,Inconclusive,9923,278,1,20,,,,DISCHARGED -9925,2022-03-01,3531.068696569242,429,Elective,2022-03-23,Normal,9925,225,3,25,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9926,2023-09-06,47419.39761466359,201,Emergency,,Normal,9926,56,4,19,,,,OPEN -9927,2023-08-15,11198.217185056232,130,Elective,2023-08-27,Abnormal,9927,179,2,27,,,,DISCHARGED -9928,2019-01-30,21250.44793985744,148,Urgent,2019-02-27,Normal,9928,231,2,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9929,2021-09-27,24744.98632893047,478,Elective,2021-10-01,Normal,9929,381,1,8,,,,DISCHARGED -9930,2022-11-25,24646.93435464152,386,Emergency,2022-12-21,Inconclusive,9930,342,4,20,,,,DISCHARGED -9931,2021-01-06,21209.20306730281,360,Urgent,2021-01-26,Abnormal,9931,476,3,17,,,,DISCHARGED -9932,2023-07-17,44446.0092126594,264,Urgent,2023-07-25,Abnormal,9932,286,0,27,,,,DISCHARGED -9933,2023-07-09,18734.46151956501,154,Emergency,2023-07-27,Abnormal,9933,63,3,1,,,,DISCHARGED -9934,2019-10-15,29530.40378547967,133,Urgent,2019-11-06,Inconclusive,9934,454,3,10,,,,DISCHARGED -9935,2021-03-02,14816.249950810636,439,Elective,2021-03-14,Inconclusive,9935,231,4,22,,,,DISCHARGED -9936,2019-04-29,35092.03441461157,185,Emergency,2019-05-13,Abnormal,9936,288,2,19,,,,DISCHARGED -9937,2021-01-19,5147.765404180009,308,Elective,2021-02-04,Abnormal,9937,212,3,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9938,2022-09-21,31242.295549312053,315,Emergency,2022-09-30,Abnormal,9938,257,2,20,,,,DISCHARGED -9939,2023-02-18,11720.131219777695,342,Elective,2023-02-28,Inconclusive,9939,17,4,17,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9940,2019-11-15,46252.88787641144,175,Elective,2019-11-19,Inconclusive,9940,174,4,14,,,,DISCHARGED -9942,2020-11-11,16708.970337510567,214,Urgent,2020-11-29,Normal,9942,416,1,6,,,,DISCHARGED -9943,2019-12-12,30199.155225932805,229,Elective,2019-12-14,Inconclusive,9943,228,0,15,,,,DISCHARGED -9944,2022-04-03,6725.077713641716,185,Emergency,2022-04-21,Abnormal,9944,225,4,24,,,,DISCHARGED -9945,2023-07-21,24267.25807774405,306,Elective,2023-08-02,Normal,9945,83,4,28,,,,DISCHARGED -9946,2019-06-13,26137.619165325617,236,Elective,2019-06-18,Abnormal,9946,290,2,0,,,,DISCHARGED -9947,2019-05-04,48795.9726263526,408,Emergency,2019-05-25,Abnormal,9947,434,4,27,,,,DISCHARGED -9948,2019-12-30,27439.21562104252,125,Urgent,2020-01-10,Normal,9948,369,3,17,,,,DISCHARGED -9949,2022-02-14,4692.280656836254,451,Urgent,2022-03-10,Normal,9949,245,1,26,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9950,2023-01-10,7397.07567111418,118,Urgent,,Abnormal,9950,401,1,21,,,,OPEN -9951,2023-02-06,47210.79219383532,233,Urgent,2023-02-28,Normal,9951,109,3,7,,,,DISCHARGED -9952,2021-12-31,21104.79583255904,258,Elective,2022-01-16,Abnormal,9952,253,4,6,,,,DISCHARGED -9953,2019-07-17,10612.01005106014,333,Emergency,2019-08-03,Abnormal,9953,87,0,24,,,,DISCHARGED -9955,2023-03-11,26695.446744601653,452,Elective,2023-03-23,Abnormal,9955,71,4,29,,,,DISCHARGED -9956,2021-08-24,34762.966698467644,204,Elective,2021-09-22,Normal,9956,380,1,1,,,,DISCHARGED -9957,2020-05-29,6062.385270237259,447,Emergency,2020-06-10,Inconclusive,9957,29,0,11,,,,DISCHARGED -9958,2022-01-01,21208.288062255288,478,Urgent,2022-01-13,Normal,9958,171,2,15,,,,DISCHARGED -9959,2020-06-01,4662.825734981702,464,Elective,2020-06-12,Normal,9959,308,2,8,,,,DISCHARGED -9960,2019-07-01,31462.12268844626,478,Elective,2019-07-22,Abnormal,9960,393,4,19,,,,DISCHARGED -9961,2021-11-05,21106.01470190646,340,Elective,2021-11-22,Inconclusive,9961,342,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9962,2022-09-13,23271.652610987217,120,Elective,2022-09-27,Inconclusive,9962,435,0,14,,,,DISCHARGED -9963,2022-11-20,35072.34407888043,147,Urgent,2022-12-13,Abnormal,9963,176,0,2,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9964,2022-11-29,10615.971734907136,353,Elective,2022-12-15,Abnormal,9964,138,4,22,,,,DISCHARGED -9965,2021-10-23,11621.731148179237,245,Elective,2021-10-27,Abnormal,9965,193,1,20,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9966,2021-02-04,6929.770519816653,235,Urgent,2021-02-22,Inconclusive,9966,185,2,12,,,,DISCHARGED -9967,2023-08-21,47126.00320093231,256,Elective,2023-09-07,Normal,9967,217,0,20,,,,DISCHARGED -9968,2022-08-18,31861.53905660595,484,Elective,2022-08-26,Inconclusive,9968,163,1,27,,,,DISCHARGED -9969,2023-09-12,7716.363471943133,462,Elective,2023-09-20,Inconclusive,9969,160,4,12,,,,DISCHARGED -9970,2020-10-11,9640.998632347708,308,Emergency,2020-11-03,Abnormal,9970,430,3,1,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9971,2021-07-25,38831.70789279436,151,Emergency,2021-08-11,Abnormal,9971,12,0,5,,,,DISCHARGED -9972,2019-09-15,27648.104886261364,134,Urgent,2019-09-19,Abnormal,9972,295,3,5,,,,DISCHARGED -9973,2020-11-17,18614.469753615056,202,Urgent,2020-12-08,Abnormal,9973,88,1,11,,,,DISCHARGED -9974,2022-05-09,10021.900739617146,298,Urgent,2022-05-31,Abnormal,9974,323,2,3,,,,DISCHARGED -9975,2023-09-13,20793.03137670616,351,Urgent,2023-09-21,Normal,9975,41,1,4,,,,DISCHARGED -9976,2019-03-06,37726.18175745981,245,Elective,2019-04-05,Normal,9976,402,2,22,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9977,2020-05-24,22434.60461042568,103,Emergency,2020-05-29,Abnormal,9977,209,1,29,,,,DISCHARGED -9978,2021-03-08,4997.5802356219,170,Emergency,2021-03-31,Normal,9978,228,0,7,,,,DISCHARGED -9979,2022-01-30,14416.634915039309,307,Urgent,2022-02-19,Inconclusive,9979,349,0,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9980,2023-01-09,47369.54997726243,298,Urgent,2023-01-31,Abnormal,9980,274,3,20,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9981,2021-08-23,46629.771749257714,151,Emergency,2021-09-21,Abnormal,9981,441,1,27,,,,DISCHARGED -9982,2021-01-26,35961.40669720744,235,Elective,2021-02-13,Abnormal,9982,278,1,2,,,,DISCHARGED -9983,2022-01-22,1675.088638953351,374,Elective,2022-02-05,Abnormal,9983,250,3,22,,,,DISCHARGED -9984,2021-09-17,37181.84125741365,151,Emergency,2021-10-02,Normal,9984,309,4,7,,,,DISCHARGED -9985,2019-09-14,27476.721750744066,351,Urgent,2019-09-26,Inconclusive,9985,207,1,18,,,,DISCHARGED -9987,2022-04-18,27920.309415771462,128,Urgent,2022-05-09,Inconclusive,9987,320,1,20,,,,DISCHARGED -9989,2020-07-23,36044.46748784443,137,Elective,2020-08-15,Abnormal,9989,139,1,10,,,,DISCHARGED -9990,2020-10-30,48753.12903257892,179,Urgent,2020-11-13,Inconclusive,9990,279,4,17,,,,DISCHARGED -9991,2022-06-03,14426.402161726,265,Emergency,2022-06-07,Normal,9991,33,0,9,,,,DISCHARGED -9994,2021-12-25,16793.598395039444,341,Elective,2022-01-06,Inconclusive,9994,308,3,25,,,,DISCHARGED -9995,2022-07-29,39606.84008259848,110,Elective,2022-08-02,Abnormal,9995,391,4,27,,,,DISCHARGED -9996,2022-01-06,5995.717487831519,244,Emergency,2022-01-29,Normal,9996,17,2,19,,,,DISCHARGED -9997,2022-07-01,49559.20290467316,312,Elective,2022-07-15,Normal,9997,56,2,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9998,2020-02-06,25236.344760975877,420,Urgent,2020-02-26,Normal,9998,111,4,19,,,,DISCHARGED -9999,2023-03-22,37223.965864725855,290,Emergency,2023-04-15,Abnormal,9999,4,4,27,,,,DISCHARGED diff --git a/langchain-rag-app/source_code_step_2/requirements.txt b/langchain-rag-app/source_code_step_2/requirements.txt index d37d22fcb1..668c0b8001 100644 --- a/langchain-rag-app/source_code_step_2/requirements.txt +++ b/langchain-rag-app/source_code_step_2/requirements.txt @@ -1 +1 @@ -polars==0.20.9 +polars==1.41.2 diff --git a/langchain-rag-app/source_code_step_3/data/hospitals.csv b/langchain-rag-app/source_code_step_3/data/hospitals.csv deleted file mode 100644 index f99d3f84d6..0000000000 --- a/langchain-rag-app/source_code_step_3/data/hospitals.csv +++ /dev/null @@ -1,31 +0,0 @@ -hospital_id,hospital_name,hospital_state -0,Wallace-Hamilton,CO -1,"Burke, Griffin and Cooper",NC -2,Walton LLC,FL -3,Garcia Ltd,NC -4,"Jones, Brown and Murray",NC -5,Boyd PLC,GA -6,"Wheeler, Bryant and Johns",FL -7,Brown Inc,FL -8,"Smith, Edwards and Obrien",FL -9,Brown-Golden,NC -10,Little-Spencer,CO -11,Rose Inc,FL -12,"Malone, Thompson and Mejia",NC -13,Mcneil-Ali,GA -14,"Jones, Taylor and Garcia",CO -15,Richardson-Powell,GA -16,Castaneda-Hardy,CO -17,Burch-White,NC -18,Cunningham and Sons,TX -19,"Bell, Mcknight and Willis",CO -20,Pugh-Rogers,GA -21,"Rush, Owens and Johnson",NC -22,Pearson LLC,CO -23,Taylor and Sons,TX -24,Schultz-Powers,TX -25,Jordan Inc,FL -26,Lewis-Nelson,FL -27,Shea LLC,GA -28,Huynh PLC,CO -29,Vaughn PLC,CO diff --git a/langchain-rag-app/source_code_step_3/data/patients.csv b/langchain-rag-app/source_code_step_3/data/patients.csv deleted file mode 100644 index 8f6e0c03d2..0000000000 --- a/langchain-rag-app/source_code_step_3/data/patients.csv +++ /dev/null @@ -1,9650 +0,0 @@ -patient_name,patient_sex,patient_id,patient_dob,patient_blood_type -Tiffany Ramirez,Female,0,1994-10-06,O+ -Ruben Burns,Male,1,1973-03-31,A- -Chad Byrd,Male,2,1932-05-10,O- -Antonio Frederick,Male,3,1944-10-04,AB+ -Mrs. Brandy Flowers,Male,4,1989-01-26,AB+ -Patrick Parker,Male,5,1962-10-04,A+ -Charles Horton,Male,6,1960-11-23,B- -Patty Norman,Female,7,1990-07-23,B- -Ryan Hayes,Male,8,1947-02-26,O- -Sharon Perez,Female,9,1976-02-19,AB- -Amy Roberts,Male,10,1942-02-13,AB+ -Mrs. Caroline Farrell,Female,11,1990-02-17,A+ -Christina Williams,Female,12,1969-06-28,O- -William Page,Female,13,1961-02-10,B- -Michael Bradshaw,Female,14,1973-11-14,AB+ -Brian Dorsey,Female,15,1952-10-14,A- -Olivia Gonzalez,Male,16,1934-08-13,A+ -Teresa Caldwell,Male,17,1932-02-09,O+ -Desiree Williams MD,Male,18,1993-11-19,AB+ -Sally Shaw,Male,19,1936-08-30,A+ -William Johnson,Female,20,1944-07-17,O- -Steven Bennett,Male,21,1943-10-31,O+ -Haley Li,Male,22,1947-07-31,A+ -Angela Brown,Female,23,1978-02-06,A+ -Beverly Miller,Male,24,1987-05-01,B+ -Daniel Dickson,Female,25,1984-02-16,B+ -Kimberly Mason,Female,26,1947-07-07,B+ -Francis Newman,Female,27,1953-09-23,B- -Ronnie Hughes,Female,28,2000-04-01,AB- -Shannon Fitzpatrick DVM,Female,29,1981-11-11,AB+ -Teresa Gonzalez,Female,30,1996-05-07,B- -Rodney Maynard,Male,31,1980-06-18,A- -Kevin Johnson,Male,32,1937-07-10,O+ -Rebecca Parsons,Male,33,1999-12-16,AB- -Linda Chavez,Male,34,2002-03-26,A+ -Jennifer Rodriguez,Female,35,1930-07-09,B- -Anna Adams,Female,36,1982-05-06,B+ -Mariah Williams,Male,37,1938-03-25,AB- -Brendan Moody,Male,38,1987-08-12,A- -Michael Burns,Male,39,1935-03-15,AB+ -Miguel Baker,Male,40,1996-01-13,A- -Mr. Christopher Miller,Male,41,1933-06-21,O+ -Theresa Mendoza,Female,42,1979-01-16,O- -Laura Adams,Female,43,1961-03-13,B- -Lauren Barton,Male,44,1939-09-27,B+ -Christina Hernandez,Female,45,1940-08-26,O+ -Kyle Byrd,Female,46,1954-03-14,O- -Jasmine Singleton,Male,47,1969-09-15,B+ -John Griffin,Female,48,1989-08-16,B+ -Justin Kaufman,Female,49,1959-02-05,B+ -Dylan Mcknight,Male,50,1954-01-27,B- -Olivia Ayala,Male,51,1958-11-25,O+ -Frank Mccormick,Male,52,1958-01-27,B+ -Rachael Davidson,Female,53,1953-02-02,A- -Lori Owens,Male,54,1958-01-07,O+ -Frank Reid,Female,55,1960-02-29,AB- -Cynthia Stanton,Male,56,1995-06-06,A- -Nicole Williams,Male,57,1937-02-25,B- -Michael Miller,Male,58,1994-02-19,B+ -Kenneth Lopez,Female,59,2001-01-07,O+ -Gabrielle Russell,Male,60,1991-12-06,A+ -Mary Brown,Male,61,1989-11-17,B- -Evan Martinez,Female,62,1994-04-18,O+ -Amanda Stein DVM,Female,63,2001-05-02,AB- -Paul Graham,Female,64,1973-03-23,B+ -Lisa Gonzalez,Male,65,1976-12-24,O- -Angela Sanchez,Female,66,1963-06-03,B+ -Kimberly Wheeler,Female,67,1952-07-10,O- -Francisco Ritter,Male,68,1969-10-24,A+ -Kenneth Smith,Male,69,1938-08-19,B- -Christina Martinez,Female,70,2002-08-22,AB- -Ryan Richmond,Male,71,1934-05-05,O+ -Linda Wheeler,Male,72,1940-10-18,O+ -Anna Phillips,Male,73,1995-07-18,O- -Juan Patel,Female,74,1983-04-10,AB- -Miguel Fields,Female,75,1932-10-18,A- -Tyler Rosario,Female,76,1961-11-27,A+ -Lisa Johnson,Male,77,1959-08-02,O- -David Sanchez,Male,78,1966-09-26,O- -Teresa Marks,Female,79,1985-05-19,A+ -Jonathan Fernandez,Female,80,1951-11-16,B- -Douglas Crawford,Male,81,1956-07-15,O+ -Anthony Fisher,Female,82,1965-07-26,B- -Kimberly Vargas,Female,83,1948-10-26,AB- -Travis Walker,Female,84,1945-07-16,A- -Amanda Ortiz,Male,85,1930-06-11,B+ -Keith Johns,Female,86,1941-10-07,AB+ -Jesse Williams,Male,87,2002-09-17,AB+ -Michael Ford,Female,88,1932-09-22,AB+ -Jessica Ford,Female,89,1961-07-31,A+ -Thomas Washington,Female,90,1950-11-21,O- -Ariel Davis,Female,91,2000-10-11,A- -Joyce Vaughn,Male,92,1932-10-13,B- -Jermaine Thomas,Female,93,1996-05-27,B+ -Jason Horn,Female,94,1992-06-27,O+ -Samuel Welch,Male,95,1996-06-19,AB+ -Steven Boyer,Male,96,1993-08-25,B- -Gabrielle Francis,Male,97,1996-07-13,AB+ -Christian Guerrero,Male,98,1953-05-09,A- -Christopher Juarez,Male,99,1977-04-06,AB+ -Paul Greer,Male,100,1955-05-18,O+ -Brian Robinson,Female,101,1988-03-28,B+ -Scott Adams,Male,102,1963-05-13,AB- -Amber Solomon,Male,103,1988-02-29,AB- -Jacob Howell,Female,104,1947-05-03,A- -Monica Stevens,Female,105,1953-06-20,AB- -Kurt Sloan,Female,106,1998-08-20,A+ -Allison White,Female,107,1949-09-26,O- -Ronald Rollins,Female,108,1944-06-12,A+ -Albert Dunn,Male,109,1980-07-03,B- -Anthony Armstrong,Female,110,1975-01-13,A+ -William Jacobson,Female,111,1974-05-26,B- -Jennifer Reeves,Male,112,1951-12-03,B- -Tammy Thompson,Male,113,1937-01-12,O- -Susan Mills,Male,114,1989-10-25,O+ -Kelly Manning,Female,115,1935-07-21,B+ -Joseph Barrera,Female,116,1937-05-19,A- -Jason Hunter,Male,117,2001-05-19,O- -Martha Franklin,Male,118,1972-03-23,A- -Alyssa Osborne,Male,119,1944-05-25,AB- -Carlos Young,Male,120,1990-03-29,AB- -Jesse Sanders,Female,121,1948-06-11,A+ -Mrs. Brittany Fields,Female,122,1931-01-27,B- -Melanie Clark,Male,123,1968-04-17,AB+ -Kevin Andrews,Female,124,1964-09-05,AB+ -Caitlin Sanders,Male,125,1946-02-18,A- -Sabrina Patterson,Female,126,1939-10-02,B- -Destiny Parks,Female,127,1946-12-07,A- -Antonio Miller,Female,128,1983-05-06,O- -Matthew Oliver,Male,129,1992-01-18,O+ -Joshua Benjamin,Male,130,1952-12-23,B+ -Albert Carter,Female,131,1965-10-11,O- -James Pittman,Male,132,1971-10-18,B- -Danielle Rice,Male,133,1983-05-11,B- -John Edwards,Female,134,1994-08-12,O+ -Lori Sanders,Male,135,1936-09-20,A- -Rebecca Mcdonald,Male,136,1962-05-30,A+ -James Marsh,Female,137,1968-06-09,A+ -Patrick Bates,Male,138,1999-06-28,O+ -Sheila Castro,Female,139,1982-05-03,A+ -Tim Mercer,Female,140,1960-01-09,AB+ -Andrea Williams,Male,141,1997-03-08,A+ -Zachary Wood,Male,142,1956-09-23,A+ -Meghan Burns,Female,143,1943-11-05,A+ -Mark Grant,Male,144,1970-12-05,AB+ -Kelly Walker,Female,145,1952-03-16,A- -Kelly Miller,Male,146,1967-09-17,A+ -Tina Vargas,Female,147,1985-05-16,AB- -Christopher Gilbert,Male,148,1977-09-03,AB+ -Randall Meyer,Female,149,1995-01-29,O+ -Russell Holden,Female,150,1931-05-18,O- -Sara Bates,Male,151,1948-12-02,O+ -Jeff Cooper MD,Female,152,1964-09-24,O- -Anne Smith,Male,153,1999-09-02,B+ -Ernest Peters,Female,154,1993-11-08,O+ -Tammy Savage,Female,155,1987-02-23,AB- -Deborah Butler,Female,156,1930-07-26,O- -Amy Jensen,Female,157,1988-11-30,O- -Zachary Martinez,Male,158,1991-03-23,B- -Eric Wilson,Female,159,1995-12-31,O- -Matthew Pratt,Female,160,1994-02-13,O- -Andrew Alvarez,Female,161,1978-12-03,B- -Jocelyn Simmons,Female,162,1996-05-16,A+ -Andre Perez MD,Male,163,1973-08-17,A+ -Michael White,Male,164,1977-03-22,B- -Emily Perez,Female,165,1982-07-01,AB+ -David Casey,Male,166,1995-02-21,B+ -Joseph Bailey,Male,167,1953-12-21,O- -Raymond Cain,Female,168,1988-11-12,O- -Victoria Dunn,Female,169,1963-11-27,B- -Paula Knight,Female,170,1991-05-04,B- -Jennifer Trevino,Male,171,1979-09-02,AB+ -Mrs. Deborah Rose,Female,172,1970-07-30,AB- -Ryan Cross,Male,173,1950-09-27,A+ -Michael Morgan,Male,174,1947-06-15,O+ -Christina Armstrong,Male,175,1993-09-23,AB- -Anne Bates,Male,176,1934-08-06,A- -Scott Nicholson,Male,177,1983-09-26,A+ -Jeffrey Cross,Female,178,1987-07-21,O- -Holly Hickman,Male,179,1932-11-25,A- -Jacob Rodriguez,Female,180,1993-02-11,AB- -Jessica Joseph,Female,181,1974-05-08,B- -Stacy Williams,Male,182,1957-02-22,AB+ -Gregory Wilson,Female,183,1983-07-03,A+ -Elizabeth Sullivan,Male,184,1991-01-20,AB+ -Wendy Cantu,Female,185,1959-08-14,A- -Paul Wells,Male,187,1959-11-26,A+ -Troy Villarreal,Female,188,1956-10-20,B+ -Latoya Price,Male,189,1974-08-30,B+ -Paul Watson,Female,190,1960-10-22,AB- -Alejandro Ramirez DDS,Male,191,1937-05-17,O- -Timothy Miranda,Male,192,1968-02-22,B+ -Brian Shea,Male,193,1939-12-07,B+ -Shirley Casey,Female,194,2001-01-07,O+ -Kathy Cross,Female,195,1974-03-28,AB+ -Pam Cantu,Female,196,1957-11-08,AB+ -Heidi Parker,Male,197,1989-10-12,B+ -Lori Anderson,Male,198,1979-05-31,O+ -Colleen Swanson,Male,199,2001-06-22,AB+ -Christopher Campos,Female,200,1958-01-04,AB+ -Samantha Simpson,Male,201,1973-01-02,A+ -Terrence Edwards,Male,202,1990-03-03,A+ -Amanda Lee,Female,203,1961-06-21,O+ -Nancy Moore,Female,204,1995-02-05,A- -Rachel Williams,Male,205,1933-07-30,O- -Carolyn Murphy,Female,206,1948-07-21,AB- -Angela Beard,Male,207,1990-11-30,B+ -Vanessa Taylor,Male,208,1955-12-10,B+ -Brooke Ellison,Male,209,1950-08-10,AB- -Kevin Copeland,Female,210,1999-03-25,B+ -Timothy Lynch,Male,211,1990-02-14,B+ -Christopher Barker,Male,212,1945-02-21,A- -Stephanie Ayers,Female,213,1986-12-10,AB+ -Amber Foley,Female,214,1940-04-06,O- -Geoffrey Robertson,Female,215,1967-02-01,B+ -Laurie Mitchell,Female,216,1931-10-26,O+ -Stephanie Carter,Male,217,1935-06-22,A- -Ana Hall,Female,218,1951-11-21,B+ -Thomas Lopez,Female,219,1978-12-14,O+ -Paul Welch,Female,220,1939-01-18,A+ -David Harding,Male,221,1985-02-28,AB+ -Frederick Salazar,Female,222,1989-03-08,B- -Jose Hayes,Female,223,1979-12-07,B+ -Kara Long,Female,224,1967-10-22,O+ -David Reed,Male,225,1948-01-12,A- -Wayne Livingston,Female,226,1978-05-24,AB+ -Joel Williams,Female,227,1984-08-30,O- -Michael Daniel,Female,228,1961-11-23,A- -Deanna Moon,Male,229,1995-07-17,A+ -Wanda Moore MD,Male,230,1994-10-16,AB- -Charles Singleton,Female,231,1934-06-25,B+ -Matthew Russell,Female,232,1984-12-23,O- -Anna Davis,Female,233,1976-10-08,O+ -Emily Sanders,Female,234,1942-12-21,B+ -Erin Molina,Female,235,1969-11-07,O+ -Alyssa Wright,Female,236,1967-12-30,O- -Samantha Mora,Female,237,1932-05-04,O+ -Kyle Dean,Male,238,1997-03-18,A- -Jodi Moore,Female,239,1946-01-12,AB+ -Mark Chen,Male,240,1950-03-29,O+ -Christina Rogers,Male,241,1992-09-24,A+ -Alejandro Baxter,Female,242,1968-03-11,AB+ -Felicia Rodriguez,Female,243,1989-03-25,A- -Rebecca Campbell,Female,244,1989-01-07,B+ -Michael Pollard,Male,245,1979-07-14,B- -Willie Chan,Male,246,1945-11-09,B+ -Adam Ballard,Female,247,2002-01-12,O+ -William Mahoney,Male,248,1990-01-05,O+ -Aaron Hughes,Male,249,1943-07-03,A+ -Jeanette White,Female,250,1984-06-20,A- -Tammy Williams,Female,251,1930-07-22,A+ -Travis Morales,Male,252,1961-05-05,AB- -John Garza,Female,253,1986-05-29,A- -Elizabeth Adams,Male,254,1964-09-27,O- -Mindy Torres,Male,255,1999-05-21,O- -Nicole Smith,Female,256,1942-01-07,O- -Donna Sanchez,Female,257,1936-05-16,A+ -Stephen Manning,Female,258,1951-12-01,O- -Willie Black,Male,259,1982-11-19,A- -Jennifer Berg,Male,260,1951-04-18,O- -Lauren Ward,Male,261,1930-07-17,B- -John Briggs,Female,262,1994-05-14,O- -Yvette Scott,Female,263,1935-04-15,O+ -Eric Martinez,Female,264,1962-03-28,AB- -Jennifer Frye,Male,265,1971-04-23,A+ -Jamie Kelley,Male,266,1992-01-27,AB+ -Richard Kramer,Male,267,1998-12-14,AB- -Ashley Armstrong,Female,268,1955-07-28,B- -Jacob Meyers,Male,269,1986-08-01,A+ -Jillian Robinson,Male,270,1961-09-24,A- -Roberta Fisher,Female,271,1981-09-25,B+ -Andrew Morales,Male,272,1973-01-03,A+ -Jason Evans,Female,273,2002-03-14,O+ -Harry Thomas,Female,274,1976-08-30,A- -Natalie Jackson,Male,275,1937-09-12,AB- -Molly Houston,Male,276,1994-04-17,AB- -Ryan Lee,Female,277,1968-12-30,O- -Christopher Martin,Female,278,1947-12-04,A- -Tabitha Carr,Male,279,2001-01-13,B+ -Lisa Rojas,Male,280,1935-06-10,O+ -Mary Delgado,Female,281,1952-10-30,O- -Lisa Sanchez,Female,282,1961-03-30,O- -Kathleen Hanson,Female,283,1937-12-21,B+ -Donna Jones,Male,284,1934-10-01,A+ -Rachel Morales,Male,285,1979-11-27,AB- -Michelle Quinn,Female,286,1953-10-07,O- -Crystal Smith,Male,287,1983-01-03,B- -Tracey Martin,Female,288,1980-03-22,B- -Matthew Palmer,Female,289,1945-10-08,AB- -Kristy Donaldson,Female,290,1993-03-09,B- -Amy Jackson,Male,291,1936-07-13,B+ -Patrick Taylor DDS,Female,292,1960-06-03,A+ -Robert Carter DDS,Male,293,1942-12-20,O+ -Elizabeth Charles,Male,294,1934-12-08,AB+ -Melissa Jones,Female,295,1952-04-30,O- -Tammy Cook,Female,296,1952-03-26,AB+ -Dennis Banks,Female,297,1948-02-12,O+ -Cody Gonzales,Male,298,1969-01-13,O+ -Peter Alvarado,Female,299,1969-08-30,B+ -Timothy Melton,Male,300,1990-01-04,A+ -Donald Moreno,Female,301,1985-12-23,B- -Lori Barrett,Male,302,1975-07-30,B- -Cynthia Patterson,Female,303,1968-07-15,B+ -Angel Robles,Male,304,1992-01-27,O+ -Denise Randall,Male,305,1998-12-29,A+ -Laurie Turner,Male,306,1955-03-19,A+ -Whitney Garza,Female,307,1974-10-28,AB- -Erin Porter,Male,308,1962-05-28,A- -Victor Gardner,Female,309,1966-01-20,O- -Angelica Chen,Male,310,1935-08-12,B+ -Alan Rodriguez,Male,311,1944-11-06,A- -Angela Garcia,Male,312,1969-12-11,B+ -Julia Johnson,Female,313,1987-04-24,B- -David Hess,Male,314,1983-05-15,O+ -Jeffery Young,Male,315,1949-08-07,B+ -Louis Lewis,Female,316,1958-01-22,B+ -Jennifer Benson,Female,317,1950-04-06,AB- -Daniel Alexander,Male,318,1983-07-16,AB+ -Robert Taylor,Male,319,1957-01-13,B- -Mrs. Crystal Garcia,Female,320,1971-06-26,O- -Eduardo Davidson,Male,321,1981-01-12,A+ -Dustin Garrett,Female,322,1933-02-28,O+ -Jacqueline Sanchez,Female,323,1942-04-27,B- -Brian Foster,Male,324,1947-03-28,AB+ -Elizabeth Kline,Female,325,1991-10-29,B+ -Angela Ramos,Female,326,2001-12-06,O- -Lisa Howell,Female,327,1963-05-11,B+ -Jonathan Nielsen,Female,328,1965-04-01,O- -Rose Robinson,Male,329,1979-05-16,AB- -Timothy Mcgrath,Male,330,1945-03-02,B+ -Jonathan Brown,Female,331,1956-05-21,B- -Christopher Velasquez,Female,332,1986-05-10,AB+ -Louis Campbell,Female,333,1997-12-24,O- -William Dawson,Male,334,1972-09-03,O+ -Cindy Jones,Male,335,1937-01-01,O- -Adrian Valencia,Male,336,1945-04-24,AB+ -Alexis Chen,Female,337,1975-02-16,A+ -Kathleen Murray,Female,338,1936-01-10,A+ -Michelle Harris,Female,339,1968-10-20,AB- -Julie Mckenzie,Female,340,1938-02-09,B- -Robert Ho,Female,341,1968-11-24,AB+ -Katelyn Vincent,Male,342,1988-06-22,AB- -Anne Wallace,Female,343,1986-12-30,A- -Joseph Lynch,Male,344,1962-10-09,O- -Dr. Leah Delgado,Female,345,1937-11-09,A- -Melissa Robinson,Male,346,1977-06-23,O- -Carol Murray,Male,347,1968-04-23,A+ -Nathan Elliott,Female,348,1997-09-22,AB- -Melissa Harris,Male,349,1945-08-09,A+ -Gabriel Mccormick,Male,350,1993-11-14,O+ -Erica Santos,Male,351,1987-02-28,A- -Carrie Miller,Female,352,2000-11-05,A- -Barbara Salinas,Male,353,1988-04-21,A+ -Amanda Smith MD,Male,354,1940-12-01,O+ -Charles Simmons,Female,355,2001-06-20,O- -Christina Mccoy,Male,356,1991-04-30,AB- -Brett Montoya,Female,357,1966-10-25,O+ -Mr. Ricardo Bullock,Male,358,1933-05-03,AB- -Mrs. Kristine Hall MD,Female,359,1987-03-03,A- -Mary Jones,Male,360,1942-12-19,AB- -Jeffrey Wilson,Female,361,1960-12-05,A- -John Miller,Female,362,1942-06-22,O+ -Ashley Cherry,Male,363,1955-01-16,A- -Douglas Myers,Male,364,1952-01-16,B+ -Stephanie Fowler,Male,365,1964-12-05,B- -David Hines,Male,366,1984-04-17,A- -Robert Mcdonald,Male,367,1977-09-20,A+ -Ryan Frazier,Female,368,1948-11-15,O+ -Eric Price,Female,369,1979-06-30,B+ -Meagan Smith,Female,370,1969-05-09,O- -Jordan Nelson,Female,371,1969-11-17,AB- -Patrick Howard,Female,372,1939-05-30,B+ -Shelley Martinez,Male,373,1953-12-20,AB+ -Donna Mitchell,Male,374,1959-03-27,B+ -Lindsey Hampton,Male,375,1946-02-21,O+ -Dr. Wendy Taylor,Male,376,1984-01-16,B+ -Jodi Shannon,Female,377,1975-06-23,B+ -Nancy Peters,Male,378,1972-10-23,A+ -Vanessa Landry,Male,379,1988-04-03,A- -Carlos Bennett,Male,380,1949-03-24,AB- -Jessica Roman,Male,381,1955-01-21,B- -Mrs. Margaret Morris DDS,Female,382,1945-05-02,O- -Adam Butler,Male,383,1951-11-23,B- -Cheryl Mcgee,Male,384,1954-08-30,B+ -George Gordon,Female,385,1965-06-12,AB+ -Mrs. Ashley Simpson MD,Male,386,1995-11-23,O+ -Rose Rios,Male,387,1942-09-17,AB- -Gerald Moreno,Female,388,1960-12-21,O+ -Danielle Kim DVM,Female,389,1951-01-10,A+ -Nicole Casey,Male,390,1952-06-22,O+ -Terry Branch,Male,391,1994-12-14,O- -Michael Schmidt,Female,392,2000-09-09,AB+ -Justin Parker,Female,393,1980-11-23,B- -Donna Strickland,Female,394,1959-05-05,B+ -Jessica Garcia,Male,395,1977-10-14,B+ -David Brock,Male,396,1939-06-07,AB+ -Mark Mack,Male,397,1959-06-15,AB- -Renee Tate,Male,398,1969-07-09,O+ -Christopher Farmer,Female,399,1932-11-26,AB- -Bryan Moyer,Male,400,1981-03-25,B- -James Evans,Male,401,1939-05-14,AB- -Deborah Barrera,Male,402,1930-10-29,A+ -Laura Robinson,Female,403,1964-02-20,AB+ -Hannah Joseph,Male,404,1976-07-08,B- -Richard Smith,Female,405,1983-07-16,B- -Drew Edwards,Female,406,1931-12-01,A- -Dana Peterson,Female,407,1988-10-15,B- -David Stuart,Female,408,2000-05-28,A- -Allen Munoz,Male,409,1930-07-10,O- -Donald Mccoy,Male,410,1958-09-23,B+ -Jamie Day,Female,411,1977-07-17,A- -Corey Johnson,Male,412,1938-02-23,AB+ -Sarah Henson,Female,413,1946-09-16,AB- -Chelsea Johnson,Male,414,1978-02-06,A- -Danielle Ballard,Female,415,1983-12-20,B- -Heather Turner,Female,416,1984-02-25,AB+ -Joel Whitehead,Female,417,1997-08-20,A- -Lauren Clark,Male,418,2002-12-10,A- -Cory Miller,Female,419,1934-12-22,B- -Eric Aguirre,Female,420,1990-11-20,A+ -Cheryl Jones,Male,421,1993-03-24,A+ -Christopher Baker,Female,422,1931-07-24,A- -Thomas Stevens,Female,423,1944-11-25,A+ -Christopher Duffy,Male,424,1935-03-11,O+ -Donna Bailey,Female,425,1982-05-05,B- -John Gill,Female,426,1940-07-30,O+ -Kristina Becker,Male,427,1965-05-10,AB+ -Mrs. Christine Rodriguez,Female,428,1950-05-31,O+ -Scott Dickerson MD,Female,429,1940-12-28,AB+ -Ruth Perry,Male,430,1960-05-16,A- -Mrs. Penny Sanchez,Female,431,1979-06-23,AB+ -Benjamin Hanson,Male,432,1938-03-29,AB+ -Michael Hall,Female,433,1996-03-25,AB- -William Stokes,Female,434,1975-04-13,O+ -Tiffany White,Female,435,1959-05-18,AB- -Bradley Cross,Male,436,1933-11-10,A- -Richard Brown,Male,437,1963-07-16,B- -Megan Gibson DVM,Female,438,1932-02-24,O+ -Taylor Byrd,Female,439,1952-03-02,B- -Daniel Kline,Male,440,1950-09-13,B- -Alicia French,Female,441,1964-04-25,AB+ -Shelley Lee,Male,442,1950-02-08,B+ -Jennifer Cunningham,Male,443,1949-09-24,O+ -Robert Powell,Male,444,1990-03-07,B- -Amanda Martinez,Male,445,1945-11-19,B+ -Suzanne Clark,Female,446,1982-07-17,A+ -Cassandra Burke,Male,447,1976-04-30,B- -Mike Winters,Female,448,1946-05-23,A+ -Christopher Clark MD,Female,450,1979-11-25,O+ -Charles Wade,Male,451,1959-02-25,A- -Gabriel Vasquez,Male,452,1953-11-12,AB- -Donald Holden,Male,453,1993-12-11,O+ -Nancy Hodges,Male,454,1990-04-05,AB- -Albert Sandoval,Male,455,1982-12-08,AB- -George Morton,Female,456,1996-09-27,O+ -Peter Sutton,Female,457,1963-09-28,B- -Francisco Allen,Female,458,1943-02-02,O- -Richard Johnson,Female,459,1936-06-26,B- -Jessica Duncan,Male,460,1962-12-18,B- -William Cohen,Female,461,1948-03-22,A- -Gary Jackson,Female,462,1952-05-18,AB+ -Frederick Newman,Female,463,1942-04-23,AB+ -Jason Alvarez,Female,464,1959-10-29,B- -Linda Brown,Female,465,1999-12-12,A+ -Travis Williams,Male,466,1991-04-17,A- -Joshua Brooks,Female,467,1992-12-19,AB- -Catherine Wallace,Female,468,2000-06-24,B+ -Matthew Landry,Female,469,1966-09-12,AB+ -Nicholas Jordan,Female,470,1965-12-04,B- -Jose Brown,Female,471,1991-01-24,A- -Tami Oliver,Female,472,1960-01-10,O- -Rachel Brooks,Male,473,2002-09-18,A+ -Frank Rosario,Male,474,1932-05-03,O+ -Kayla Jackson,Female,475,1986-03-18,B- -Melissa Martinez,Female,476,1985-03-06,A- -Emily Hull,Male,477,1976-06-06,B- -Stephen Reynolds,Male,478,1978-01-01,B+ -Glen Brown,Male,479,1992-02-02,AB- -Ashley Greene,Female,480,1992-07-15,A+ -Julie Acevedo,Male,481,1995-06-02,AB+ -Micheal Duran,Male,482,1957-02-15,AB+ -Rebecca Harrison,Female,483,1943-01-30,AB+ -Johnny Johnson,Male,484,1985-05-30,B+ -Harry Brown,Female,485,1971-12-30,O+ -Tasha Smith,Female,486,1936-10-27,A- -April Young,Female,487,1971-12-20,A+ -Cathy Duncan,Male,488,1969-12-21,A+ -Megan Johnson,Male,489,1983-05-31,AB+ -Joshua Owens,Female,490,1990-06-10,AB+ -Teresa Williams,Male,491,1938-05-10,AB- -Ryan Garrison,Male,492,1973-10-01,B+ -Dr. Benjamin Jimenez,Female,493,1974-11-14,O- -Mariah Davis,Female,494,1989-02-26,O- -Nathan Schwartz,Female,495,1989-05-30,B- -Vickie Bernard,Female,496,1988-03-10,B- -Robert Brown,Male,497,1932-05-26,A+ -Daniel Mayo,Male,498,2000-01-01,A+ -Danny Farley,Male,499,1994-02-05,O+ -Maria Williams,Male,500,1941-05-05,O+ -Sally Henderson,Female,501,1971-08-16,O- -Kathy Walls,Male,502,1949-01-27,B+ -Angela Lara,Female,503,1949-05-20,B- -Terry Martinez,Male,504,1951-11-14,O- -Alicia Bartlett,Male,505,1948-08-13,B+ -Melissa Smith,Female,506,1942-03-24,O- -Bruce Atkinson,Male,507,1976-08-06,B- -Monica Hampton,Male,508,1966-09-26,A- -Travis Barrett,Male,509,1979-06-30,O+ -Kayla Herrera,Male,510,2001-11-22,AB- -Brian Gibson,Male,511,1987-11-14,AB- -Ryan Rodriguez,Male,512,1952-10-03,AB- -Jeremy Whitney,Female,513,1977-02-17,B- -Amanda Hernandez,Female,514,1968-08-07,AB+ -Steven Schaefer,Male,515,1944-03-05,AB+ -Matthew Norris,Male,516,1969-01-18,AB+ -Diana Watkins,Female,517,2001-01-13,A+ -Keith Chambers,Male,518,1999-04-25,O+ -Andrew Davis,Male,519,1952-09-30,O+ -Daniel Horne,Male,520,1946-04-16,A- -Angela Hunter,Male,521,1982-08-18,A- -Karen Clark,Female,522,1933-02-24,A+ -Walter Miller,Male,523,1995-07-23,O- -Shane Olson,Female,524,1935-04-16,B+ -Rhonda Larson,Male,525,1955-03-15,A- -Jasmine Hernandez,Female,526,1979-06-01,AB- -Christopher Delgado,Female,527,1932-12-17,AB+ -Laura Banks,Male,528,1976-04-05,AB- -John Johnson,Female,529,1966-09-16,AB+ -Craig Garcia,Male,530,1951-05-16,AB- -Stephen Wheeler,Male,531,1944-05-04,O- -Heather Walters,Female,532,1976-05-22,B+ -Alexis Huynh,Female,533,1984-11-29,AB- -Timothy Henderson,Female,534,1964-12-23,AB- -Colleen Allen,Male,535,1995-02-17,B- -Robert Cruz,Female,536,1974-06-23,B+ -Laura Torres,Male,537,1966-02-05,AB- -Laura Leonard,Female,538,1939-02-26,B- -Andrew Sharp,Male,539,1966-12-18,O+ -Jacob Jenkins,Female,540,1986-01-01,B+ -Theodore Sanchez,Male,541,1956-06-15,A+ -Robert Harris,Female,542,1976-06-12,B+ -Julie Johnston,Female,543,1971-05-31,B+ -Angela Lewis,Female,544,1994-01-13,AB- -Steven Irwin,Male,545,1952-04-05,O+ -Katelyn Barron,Male,546,1983-06-23,B+ -Karen Sanford,Male,547,1986-06-29,A- -Yvette Banks,Female,548,1934-08-07,A- -James Perkins,Female,549,1939-08-08,B- -Nicholas Marquez,Female,550,1966-05-16,AB- -Christopher Haynes,Male,551,1949-11-10,AB- -Heather Johnson,Female,552,1982-05-16,B+ -John Turner,Female,553,1955-11-01,O- -Maria Mahoney,Female,554,1989-01-23,O+ -Michelle Johnson,Female,555,1960-12-19,AB+ -Monica Serrano,Male,556,1966-05-28,AB+ -Larry Fitzpatrick,Female,557,1980-09-20,O- -Karen Dunn,Male,558,1966-04-07,B- -David Kim,Male,559,1960-07-13,AB+ -Christian Gonzalez,Male,560,1958-08-19,B+ -Martin Hines,Female,561,1992-12-22,AB+ -Sandra Rose,Male,562,1936-10-15,A- -Casey Brown,Male,563,1992-08-11,A- -Vincent Reese,Female,564,2001-10-06,A+ -Mr. John Martin DVM,Female,565,1995-03-06,O+ -Amanda Stone,Female,566,2002-02-05,B- -Timothy Hernandez,Female,567,1942-03-11,AB- -Kelly Jones,Male,568,2002-12-15,O+ -Megan Kelley,Female,569,1946-02-07,B- -Michelle Robinson MD,Female,570,1993-02-08,AB+ -Mr. Christopher Burns DDS,Female,571,1968-07-09,A+ -Deborah Kelley,Male,572,1937-10-20,O+ -Julie Long,Female,573,1950-03-27,AB+ -Natalie Johnson,Male,574,1993-10-06,B- -Steven Rodriguez,Male,575,1962-08-23,O+ -Jennifer Williams,Male,576,1936-10-25,AB- -Mark Gordon,Male,577,1956-11-23,O+ -Jon Harding,Male,578,1955-03-18,AB+ -Leslie Kennedy,Male,579,1956-02-14,B+ -Christina Roberts,Female,580,1974-10-21,B+ -Zachary Roberts,Female,581,1942-08-17,O+ -Steven Reilly,Male,582,1982-08-19,AB- -Amber Carter,Female,583,1998-03-16,A+ -Victor Edwards,Male,584,1946-02-04,A+ -Jeffery Tucker,Female,585,1974-10-04,B+ -Robert Cooper,Female,586,1999-09-27,AB+ -Victoria Velez,Female,587,1992-02-12,B- -Angela Scott,Female,588,1932-05-01,AB+ -Sarah Burke,Male,589,1979-06-24,A+ -Karen Fox,Female,590,2002-07-29,O- -Nathan Harrison,Male,591,1948-09-16,O- -Allen Chen,Male,592,1962-09-08,O+ -Bryan Williams,Female,593,1936-08-24,AB- -Stephanie Reed,Male,594,2001-07-31,B+ -Bradley Jones,Male,595,1940-12-14,A- -Francis Wheeler,Female,596,1943-11-01,A- -Ricardo Mcconnell,Male,597,1937-07-01,A- -Heather Stephens,Female,598,1990-07-21,O+ -Michael Parker,Male,599,1944-10-01,O- -Craig Leonard,Female,600,1951-11-29,A+ -Kevin Cunningham,Female,601,1945-02-27,O+ -Terrance Knapp,Female,602,1966-11-27,A- -Teresa Martinez,Male,603,1940-09-18,A- -Desiree Gordon,Female,604,1977-10-11,B+ -David Reyes,Female,605,1996-01-02,AB+ -Jessica Yates,Female,606,1986-11-07,A- -Amber Wade,Female,607,1959-02-14,AB- -Jo Clark,Male,608,1986-02-07,A- -Kevin Frederick,Female,609,1945-09-05,AB+ -Alfred Johnson,Male,610,1939-03-28,A- -Emily Mason,Female,611,1963-04-19,AB- -Terry Thompson,Female,612,1999-05-08,A+ -Michael Simon,Female,613,1935-09-14,O+ -Diana Stevens,Male,614,1999-05-30,AB- -Luis Cooper,Female,615,1993-05-02,AB+ -George Allison,Male,616,1974-07-30,O+ -David Boyd,Female,617,1971-11-27,O+ -Leonard Benton,Male,618,1956-11-17,AB+ -Kenneth Armstrong,Female,619,1960-10-31,B+ -Angela Lopez,Female,620,1931-02-22,O- -Stanley Kirby,Male,621,1997-08-07,A- -Stephanie Bryant,Female,622,1954-02-12,AB- -Daniel Barajas,Male,623,1985-09-27,AB+ -Joy Mitchell,Male,624,1938-12-12,A+ -Daniel Mccoy,Female,625,1977-02-12,B- -Latoya Liu,Male,626,1995-11-08,AB+ -Michael Thompson,Female,627,1945-09-24,A- -Daryl Torres,Female,628,2001-06-09,A- -Cindy Gomez,Female,629,1961-01-16,O+ -Sherry Williams,Male,630,1931-02-17,O+ -Kurt Gordon,Female,631,1950-08-27,AB+ -Tammy Hamilton,Male,632,1950-10-10,B- -Kevin Montoya,Female,633,1931-12-30,B+ -Dana Beck,Male,634,1994-06-22,AB+ -Crystal Green,Male,635,1999-02-19,B- -Steven Clark,Female,636,1961-12-01,B+ -Cheryl Thomas,Male,637,1946-05-25,B- -Judith Trevino,Female,638,1981-09-18,A- -Amy Keller,Female,639,1938-02-15,A- -Gerald Moore,Male,640,1969-10-10,A- -Deanna Stone,Female,641,1982-06-27,A+ -John Rios,Female,643,1973-12-09,A- -James Chung,Female,644,1977-12-06,AB- -Kimberly Mccarthy,Male,645,1986-01-10,O+ -Christine Young,Female,646,1979-02-28,O+ -Donald Walker,Female,647,1943-11-22,B- -Shane Black,Male,648,1943-12-23,O+ -Derek Henderson,Male,649,1935-11-14,O- -Pamela Miller,Male,650,2001-11-27,B+ -Allison Aguilar,Male,651,1993-06-29,B- -Ms. Katelyn Lopez MD,Female,652,1950-02-22,O+ -Alicia Evans,Female,653,1962-12-22,O- -David Collins,Male,654,1939-06-03,B+ -Lisa Marshall,Male,655,1985-03-03,A+ -Miss Courtney Navarro,Male,656,1945-06-15,O+ -Pamela Sullivan,Female,657,1958-10-19,O- -Linda Stewart,Male,658,1969-11-04,AB+ -Daniel Blevins,Female,659,1937-12-24,AB- -Kenneth Oconnell,Female,660,1988-06-17,AB+ -Tamara Salazar,Female,661,1991-01-22,O- -Tammy Lewis,Female,662,1967-03-12,B- -Christine Lewis,Male,663,1963-04-02,A- -Lynn Lowery,Male,664,1969-06-02,A- -Marie Franklin,Male,665,1954-01-22,A- -Holly Norman,Female,666,1968-11-08,B+ -Michael Russell,Male,667,1931-12-30,B- -Richard Vega,Male,668,1978-08-06,B+ -Jessica Mcdonald,Female,669,1987-02-27,O+ -Bruce Johnson,Female,670,1931-11-30,A- -Daniel Meadows,Male,671,1949-09-04,AB+ -Jesse Tucker,Female,672,1969-09-25,B- -Ryan Anderson,Male,673,1968-02-14,B- -Kaitlyn Sampson,Female,674,1975-12-10,A- -Brian York,Male,675,1950-04-06,AB+ -Ashley Martinez,Female,676,1996-12-26,A+ -Andre Burch,Female,677,1941-06-03,B- -Stephen Combs,Male,678,1941-12-09,A- -Allison Reed PhD,Male,679,1936-11-07,AB- -Abigail Mitchell,Female,680,2002-04-08,O- -Jackie Arellano,Female,681,1976-10-27,B+ -Sierra Moreno,Female,682,1982-06-23,O+ -Daniel Golden,Male,683,1988-05-26,B- -Melissa Martin,Female,684,1945-01-08,AB- -Emily Johnson,Female,685,1952-10-27,AB- -Angela Taylor,Male,686,1988-06-29,B- -Ronald Becker,Male,687,1994-10-02,A+ -Tanya Sanford DDS,Male,688,1942-04-19,O- -Jerry Roman,Male,689,1994-07-20,O+ -Adam Stephens,Female,690,1960-06-22,B- -Jane Vargas,Female,691,1990-02-27,B+ -Joseph Smith,Male,692,1950-12-13,O+ -Sydney Gill,Male,693,1984-10-24,AB+ -Katherine White,Female,694,1933-03-13,AB- -Joy Martinez,Female,695,1932-11-28,AB- -Karen Mccoy,Male,696,1980-10-05,B- -David Pierce,Female,697,1996-05-18,B- -Sandra Payne,Female,698,1988-12-27,B+ -Theresa Woodard,Female,699,1989-05-20,AB+ -Cindy Lowe,Female,700,1960-08-05,A+ -Deborah Perry,Female,701,1992-10-07,B- -Yesenia Williams,Female,702,1942-12-13,AB- -Amanda Jones,Male,703,1955-08-06,O+ -Julie Brooks,Male,704,1994-12-05,O- -Nicholas Martin,Male,705,1944-08-09,A- -Patricia Rivera,Female,706,1954-06-08,O+ -Jeffrey Lawrence,Male,707,1941-11-09,A+ -Curtis Dean,Male,708,1996-10-15,O- -Tabitha Price,Male,709,1948-08-15,O+ -Todd Hernandez,Male,710,1943-04-09,O+ -Seth Burgess,Male,711,1948-06-06,AB+ -Stephanie James,Male,712,1972-01-29,A- -Brandon Scott,Female,713,1994-09-07,B+ -Clarence Munoz,Male,714,1977-06-20,A+ -Theresa Ball,Male,715,1936-12-14,AB- -Barbara Gutierrez,Female,716,1949-04-27,AB+ -Kimberly Fernandez,Female,717,1961-07-13,O- -Eric Combs,Female,718,1961-06-20,A- -Travis Jordan,Female,719,1934-03-23,AB- -Dillon Dunlap,Female,720,1989-05-08,AB+ -Sonya Gonzales,Female,721,1968-03-26,A- -Erin Sharp,Male,722,1978-02-13,B+ -Eric Green,Female,723,1947-04-15,A+ -Tina Howard,Female,724,1993-11-08,B- -Michael Lewis,Male,725,1982-03-14,B+ -Thomas Rodriguez,Female,726,2000-08-14,B- -Linda Gillespie,Male,727,1979-01-28,O- -Terry Lawson,Female,728,1991-10-04,B- -Kelsey Perry,Female,729,1990-01-11,AB+ -Erik Wood,Male,730,1967-10-21,O- -Jeremy Jones,Female,731,1956-03-25,AB- -Elizabeth Stafford,Male,732,2002-05-15,B+ -Jason Alvarado,Female,733,1978-08-06,B+ -Mary Stein,Male,734,1953-10-18,A+ -Sandra Green,Male,735,2001-11-20,O- -Nicholas Mitchell,Male,736,1998-09-07,AB- -Joshua Gates,Male,737,1950-07-09,B+ -William Hart,Female,738,1941-10-22,O- -Leah Harrington,Male,739,1933-08-17,O+ -Victoria Kennedy,Female,740,2000-06-13,O+ -Juan Vargas,Male,741,2002-04-16,O- -Mr. Bryan Williams,Male,742,1938-08-08,B+ -Sabrina Barron,Male,743,1995-03-04,A- -Anthony Bailey,Male,744,1984-05-27,B- -Ryan Edwards,Male,745,1934-12-16,O+ -William Osborne,Male,746,1948-01-15,A- -Jennifer Perez,Female,747,1982-11-11,A- -Natasha Fischer,Male,748,1944-07-07,A+ -Jennifer Wang,Male,749,1986-04-27,AB- -Danielle Jones,Female,750,1999-03-29,AB+ -Lori Walker,Male,751,1991-03-23,O+ -Lauren Sosa,Female,752,1972-05-25,O- -John Lynch,Male,753,1962-01-27,B- -Elizabeth Johnson,Male,754,1986-07-18,AB+ -Karen Butler,Male,755,1943-01-01,AB- -Brittany Baker,Male,756,1988-02-19,A- -Melissa Dean,Male,757,1955-11-01,AB- -Sylvia Johnson,Male,758,1940-02-27,B+ -Johnny Stephens,Male,759,2000-03-31,O+ -Michele Thompson,Female,760,1992-12-24,AB- -Loretta Schmitt,Female,761,1998-07-14,AB- -Malik Phillips,Female,762,1965-11-29,B- -Andrea Thompson,Male,763,1999-09-26,B+ -Brenda James,Female,764,1956-03-21,B+ -Jeff Castillo,Female,765,1957-10-16,A- -John Kim,Male,766,1983-04-09,B- -Marie Cooper,Male,767,1947-11-18,B- -Christopher Powers,Female,768,1957-11-23,O- -Rebecca Johnson,Female,769,1970-03-15,AB- -Annette Cruz,Female,770,1931-05-20,AB- -Melissa Mcdonald,Male,771,1933-04-29,B+ -Ashley English,Female,772,1934-03-12,AB- -Kevin Thomas,Male,773,1995-08-08,A+ -Sean Sullivan,Female,774,1932-04-03,B- -Mark Proctor,Male,775,1977-05-26,AB+ -Annette Mitchell,Female,776,1943-10-09,B+ -Carl Thompson,Female,777,1966-10-07,O+ -Steven Davis,Female,778,1975-03-23,B+ -Justin Cunningham,Male,779,1935-10-07,A- -Christine Bryant,Female,780,1939-12-07,AB+ -Andrea Rich,Male,781,1965-07-08,A- -Audrey Moore,Male,782,1992-02-25,O- -Rebecca Lyons,Female,783,1935-01-27,O- -Steven Davis,Male,784,1943-06-12,A- -Ana Clark,Male,785,1986-04-16,AB- -Brandon Miller MD,Female,786,1960-02-16,AB+ -Autumn Ortiz,Female,787,1989-07-02,AB- -Ana Stone,Female,788,2000-09-16,B+ -Anthony Conner Jr.,Male,789,1967-11-26,A+ -April Williams,Male,790,1962-01-17,O- -Justin Martin,Male,791,1973-02-25,O- -Jason Whitaker,Male,792,1946-12-13,AB+ -Holly Knight,Female,793,1978-04-19,O- -Lori Phillips,Male,794,1984-02-07,A+ -Nicholas Johnson,Female,795,1945-06-16,A+ -Amy Bowman,Female,796,1984-05-27,A+ -Joshua Frey,Male,797,1984-09-02,O+ -William Farrell,Female,798,1956-04-02,A+ -Danielle Nunez,Male,799,1962-05-22,A+ -Mrs. Natasha Williams,Male,800,1952-01-19,O+ -Peter Davis MD,Female,801,1939-02-13,AB- -Angie Robinson,Male,802,1982-04-05,B+ -Elizabeth Burton,Female,803,1953-09-19,B- -Gloria Weaver,Female,804,1997-02-02,O- -David Thomas,Female,805,1949-06-24,A+ -Hector Gross,Female,806,1966-06-24,O- -Sean Holmes,Male,807,1933-09-15,AB+ -Sandra Mcclain,Female,808,1960-01-19,O- -Ashley Osborne,Female,809,1960-03-07,A- -Erin Baldwin,Female,810,1988-09-20,AB- -Kenneth Mcfarland,Female,811,1998-04-07,B+ -Timothy Wu,Female,812,1995-08-07,O+ -Margaret Hamilton,Male,813,1931-10-30,O- -Jeffery Patton,Male,814,1987-02-03,O- -Cameron Hall,Male,815,1955-07-26,O- -Matthew Olson,Male,816,1967-05-26,B- -Kevin Padilla,Female,817,1993-07-12,B- -Paul Brooks,Male,818,1940-03-08,AB+ -Crystal Allen,Female,819,1982-05-17,O+ -Brian Williams,Male,820,1950-06-28,O- -Laura Schmidt,Female,821,1931-06-24,O- -Sarah Campbell,Male,822,1943-08-05,O- -Kristen Johnson,Male,823,1943-03-29,O- -Antonio Robbins,Male,824,1985-03-12,B- -Debra Mcdaniel,Male,825,1946-07-18,AB- -Virginia Wolfe,Male,826,1970-08-16,AB- -Carolyn Nguyen DVM,Male,827,1994-04-21,AB+ -Christopher Cervantes,Female,828,1950-01-08,A- -Alan Alvarado,Female,829,1944-07-26,A+ -Kelly Taylor,Male,830,1966-03-09,O+ -Justin Perry,Male,831,1991-08-25,AB- -Kristin Proctor,Female,832,1996-06-18,A- -Danielle Hunter,Female,833,1937-08-11,B+ -Jeanne Gray,Female,834,1977-05-22,B+ -Rachel Marks,Female,835,1934-05-01,O- -Matthew Bush,Male,836,1995-12-24,B+ -Justin Buck,Female,837,1983-12-17,AB- -Julie Murray,Male,838,1964-09-16,AB+ -Travis Dyer,Male,839,1945-08-23,A+ -Matthew Good DVM,Female,840,1994-02-04,AB- -Lori Lyons,Female,841,1975-07-23,AB+ -Michael Monroe,Male,842,1943-02-26,B+ -Christopher Miller,Male,843,1979-11-22,B- -Chris Roth,Female,844,1957-10-02,A+ -Jennifer Harrison,Male,845,1930-01-10,AB+ -Jeffrey Carter,Female,846,1982-09-20,A- -Alexis Jones,Male,847,1999-06-21,AB- -Karen Mills,Female,848,1995-02-22,B- -Linda Collins,Male,849,1995-03-03,A- -Tricia Oliver,Female,850,1944-01-12,AB+ -Corey Cruz,Male,851,1932-10-12,AB+ -Christopher Adams,Female,852,2002-04-13,B+ -Michael Mccall,Female,853,1936-01-03,A- -Monica Ryan,Female,854,1953-01-15,AB- -Shannon Gonzales,Female,855,1967-02-06,A+ -Mason Boyd,Male,856,1969-09-25,B- -Laura Romero PhD,Male,857,1995-04-03,B+ -Angela Lewis,Male,858,1941-05-21,O- -Dwayne Fletcher,Female,859,1985-08-09,O+ -Robert Benitez PhD,Female,860,1949-01-31,A+ -Jamie Holland,Male,861,1948-12-30,B+ -Miss Lisa Hale,Male,862,1987-12-16,B- -Michelle Williams,Male,863,1967-09-16,A- -Mark Browning,Female,864,1985-10-23,AB+ -Heather Johnston,Female,865,1979-05-01,A- -Joy Henry,Female,866,1958-04-28,B+ -Sonya Hernandez,Female,867,1949-11-23,B- -Steven Martinez,Female,868,1953-10-29,A- -Heather Washington,Male,869,1931-01-20,A- -Michael Crawford,Male,870,1931-02-09,O+ -Andrew Harmon,Female,871,1952-05-20,AB- -Stacey Wade,Female,872,1971-07-03,B+ -Shannon Williams,Male,873,1964-12-11,O+ -Mr. Theodore Roberts,Male,874,1980-05-02,B+ -Catherine Potter,Male,875,1956-12-30,O- -Daniel Murray,Female,876,1946-05-26,O- -John Steele,Female,877,1971-05-12,O+ -Bradley Sanford,Female,878,1978-11-09,A+ -Courtney Salinas,Male,879,1994-07-18,A+ -Kevin Hernandez,Male,880,1994-05-29,A- -Lisa Gallegos,Male,881,1939-12-16,A- -Heather Hoffman,Male,882,1959-11-21,AB+ -Madeline Vaughan,Female,883,1943-03-03,O- -Susan Oconnell,Female,884,1986-04-19,B+ -Jeffrey Clark,Female,885,1966-11-04,AB+ -Robert Trevino,Male,886,1972-04-14,O- -Kayla Williams,Female,887,1994-09-11,O+ -Jeremy Duffy,Female,888,1992-12-05,A+ -Steven Lyons,Female,889,1946-06-03,A- -Linda Davis,Female,890,1935-08-11,A+ -James Roberts,Female,891,1963-10-13,O+ -Kevin Armstrong,Female,892,1987-12-12,AB+ -Tamara Scott,Male,893,1976-10-26,AB+ -Tiffany Macias,Male,894,1996-08-05,B- -Diana Brown,Female,895,1990-02-04,A- -Jeremy Gentry,Female,896,1942-06-11,A- -Rebecca Blackwell,Female,897,1943-08-17,B+ -Lauren Patterson,Male,898,1964-12-23,A- -Lisa Phillips,Male,899,1957-06-03,O- -Thomas Walsh,Male,900,2002-12-26,AB+ -Justin Cardenas,Male,901,1939-05-13,O+ -David Wright,Female,902,1969-07-05,AB+ -Renee Miller,Male,903,1949-10-27,A+ -Jeffrey Mckinney DDS,Female,904,2001-08-06,O- -David Copeland,Male,905,1969-09-02,A- -Alec Hess,Male,906,1975-07-17,B+ -Anthony Brown,Male,907,1999-02-17,B+ -Harry Johns,Male,908,1958-05-11,B+ -Roberto Beck,Male,909,1976-12-19,AB- -Jessica Hanna,Female,910,1941-12-12,B- -Daniel Evans,Male,911,1957-11-11,O- -Samantha Patel,Female,912,1977-10-22,A+ -Megan Livingston,Male,913,1953-01-27,A- -Thomas Brown,Female,914,1953-06-29,A+ -Jeremy Vasquez,Female,915,1996-06-28,A+ -Joshua Faulkner,Male,916,1943-04-21,A- -Kimberly Shelton,Female,917,1957-06-28,A+ -Marissa Dixon,Male,918,1992-10-10,B+ -Theresa May,Male,919,1987-10-12,O+ -Derek Patton,Male,920,1982-07-25,B- -Kristina Day,Female,921,1984-02-05,AB- -Andrea Nicholson,Male,922,1971-10-07,A+ -Andrew Jenkins,Female,923,1961-05-28,A+ -Kelly Graham,Female,924,1933-06-06,AB+ -David Jacobs,Male,925,1949-02-26,B- -David Garcia,Female,926,1963-05-01,O- -Sherry Petty,Male,927,1942-10-18,B- -Jonathan Snyder,Male,928,1987-04-06,B- -Wayne May,Female,929,1973-03-17,A- -Thomas Sharp,Male,930,1965-09-25,A- -Randy Huffman,Male,931,1948-11-03,A- -Chase Mooney,Male,932,1949-01-10,AB- -April Eaton,Female,933,1956-01-26,B+ -Johnny Johnson,Female,934,1991-12-12,B- -Jessica Lee,Male,935,1951-12-14,AB- -Steve Meyer,Female,936,1949-01-02,A+ -Laura Henderson,Female,937,2001-01-02,A- -Sandra Ford,Male,938,1994-01-11,A+ -Tara Graham,Female,939,1957-12-14,A- -Nicholas Lewis,Female,940,1978-07-03,O+ -Michael Jones,Male,941,1986-07-11,AB- -Bradley Durham,Female,942,1995-10-19,AB- -James Blair,Female,943,1956-02-24,B+ -Glenda Cooper,Male,944,1988-11-11,O- -Lee Clark,Female,945,1942-09-12,AB+ -Joshua Sullivan,Female,946,1943-04-17,B- -Jennifer Hoover,Male,947,1983-07-23,O- -Jacqueline Walker,Female,948,1996-01-09,AB- -Daniel Branch,Male,949,1958-04-04,O- -Christopher Barron,Male,950,1980-10-29,O+ -Marie Vargas,Male,951,1943-05-25,AB+ -William Garza,Female,952,1949-04-14,B+ -Bernard Gibbs,Female,953,1975-03-27,AB- -Mark French,Female,954,1992-03-07,AB- -Jennifer Walker,Female,955,1984-05-13,B- -Elizabeth Anderson,Female,956,1989-10-11,B+ -Theodore Zamora,Female,957,1982-08-12,B+ -Kenneth Obrien,Male,958,1984-08-28,A- -Aaron Gray,Male,959,1991-03-17,AB+ -Jennifer Le,Male,960,1941-05-27,O+ -Samuel Braun,Male,962,1951-09-29,A+ -Chloe Adams,Female,963,1969-05-24,O- -Gail Harris,Male,964,1945-04-01,B+ -Andrew Gibbs,Female,965,1941-10-10,B- -Jonathan Jimenez,Female,966,1947-03-02,AB- -James Smith,Male,967,1940-06-15,A+ -Jonathan Herring,Female,968,1962-11-24,O+ -Jasmin Scott,Male,969,1963-07-01,AB+ -Daniel Wilkinson,Male,970,1980-01-29,B+ -Kevin Robinson,Female,971,1947-02-15,O- -Lance Bradley,Female,972,1976-12-09,B+ -Jacob Franco,Male,973,1996-04-18,B- -Jennifer Nelson MD,Female,974,1950-02-15,B+ -Gabriella James,Female,975,1971-07-28,B+ -Megan Wheeler,Female,976,1947-01-30,B+ -Molly Brewer,Male,977,1946-09-04,AB- -William Williams,Male,978,1961-11-11,AB- -Drew Crane,Female,979,1991-05-16,A+ -Stacey Craig,Female,980,1995-11-27,A+ -Joel Mendoza,Male,981,1999-10-01,O- -Sarah Weaver,Male,982,1964-08-17,AB+ -Barbara Garrett,Female,983,1957-02-19,O+ -Whitney Bradley,Male,984,1953-03-13,A- -Patricia Taylor,Female,985,1980-01-10,AB+ -David Richardson,Male,986,1938-12-11,AB+ -Lee Peterson,Female,987,1931-10-29,AB+ -Kenneth Rollins,Male,988,1941-06-20,A- -Ryan Copeland,Male,989,1976-09-11,O- -Laura Jones,Female,990,1957-10-27,A- -Nicole Bullock,Female,991,1993-05-31,O- -Christopher Phillips,Male,992,1960-12-23,A- -Joshua Phillips,Male,993,1995-08-02,O+ -Zachary Collins,Female,994,1996-08-22,B+ -Natalie Navarro,Female,995,1988-11-20,AB+ -John George,Female,996,1990-02-24,B+ -April Gomez,Female,997,1965-04-18,O- -Jacob Hoover,Male,998,1943-01-30,A- -Alan Bell,Male,999,1940-09-05,O+ -Stacey Wilson,Female,1000,1993-02-20,A- -April Martin,Male,1001,1967-07-22,B+ -Kimberly Williams,Female,1002,1949-02-11,AB- -Jonathan Moore,Female,1003,1947-06-17,O+ -Paul Davidson,Female,1004,1976-04-16,AB+ -Anthony Johnson,Male,1005,1981-05-30,B- -Mark Moss,Male,1006,1981-12-16,AB+ -Greg Richardson,Female,1007,1957-10-26,B- -Philip Hall,Male,1008,2002-02-01,O+ -Judith Jackson,Female,1009,1968-09-02,AB- -Amber Perez,Male,1010,1974-07-31,B+ -Sherry Bass,Female,1011,1994-09-06,AB- -Tiffany Davies,Female,1012,1993-11-07,O- -Sabrina House MD,Male,1013,1958-09-19,AB- -Bill Garcia,Male,1014,1991-10-22,A+ -Jesse Kelly,Male,1015,1944-05-07,O+ -Emily Mosley,Male,1016,1958-08-15,B+ -Megan Garcia,Male,1017,1958-09-09,B+ -Austin Buchanan,Female,1018,1992-08-20,O- -Destiny Hicks DVM,Female,1019,1963-12-08,B+ -Joseph Johnson PhD,Female,1020,1982-09-27,AB- -Daniel Merritt,Male,1021,1986-03-15,O+ -Morgan Sanchez,Female,1022,1984-11-01,AB+ -Michael Gibbs,Male,1023,1942-02-19,AB- -Michael Phillips,Female,1024,1967-02-24,A- -Nathan Frank,Male,1025,2002-11-30,B- -John Perez,Male,1026,1968-10-26,O+ -Jason Henry,Male,1027,1978-05-09,B+ -Sarah Long,Male,1028,1990-10-08,O- -Rachel Vaughan,Female,1029,1930-10-30,AB+ -April Smith,Female,1030,1976-08-09,A+ -Kathleen Conner,Male,1031,1930-02-25,AB+ -Ryan Lopez,Female,1032,1965-08-18,AB- -Meagan Wright,Male,1033,1953-11-13,B- -Ashley Gonzales,Female,1034,1952-04-25,AB+ -Steven Simmons,Male,1035,1935-10-27,A+ -Scott Green,Male,1036,1961-06-06,A- -Jennifer Hunter,Male,1037,1973-02-09,O- -Christopher Gallegos,Female,1038,1975-11-09,O+ -Elizabeth Fernandez,Male,1039,1948-08-23,B- -Holly Meyers,Female,1040,1942-08-27,A+ -Bailey Wells,Female,1041,1971-03-01,B+ -Edward Decker,Female,1042,1967-04-20,AB- -David Wilson,Female,1043,1944-01-14,AB- -Michael Robertson,Male,1044,1944-01-10,AB- -Miss Mary Moon,Female,1045,1979-05-14,B+ -Theresa Young,Female,1046,1977-05-16,B+ -Bonnie Harding,Female,1047,1982-07-08,B- -Christopher Cabrera,Male,1048,1992-09-02,AB+ -John Carlson,Female,1049,1946-01-27,B- -Katherine Thompson,Male,1050,1934-03-12,AB- -Jessica Garcia,Female,1051,1952-05-17,A- -Christy Martinez,Female,1052,1984-01-07,A+ -Christina Perry,Male,1053,1951-01-04,O+ -Ryan Allen,Male,1054,1993-11-19,O+ -Christine Washington,Female,1055,1948-11-04,B- -Tim Rich,Female,1056,1935-03-22,AB- -Jessica Wagner,Male,1057,1938-06-14,B+ -Thomas Davis,Female,1058,1966-12-21,O- -Kelly Robertson,Male,1059,1952-04-27,A- -Terry Wong,Female,1060,1945-09-29,B- -Angela Copeland,Female,1061,1964-12-20,AB- -Anna Lopez,Female,1062,1958-02-10,AB+ -Jared Scott,Male,1063,1999-03-29,O+ -Mrs. Kristin Stephenson,Female,1064,1932-11-28,O+ -Lisa Lee,Female,1065,1980-04-08,A- -Sara Taylor,Male,1066,1978-05-29,O+ -Amanda Patel,Female,1067,1947-01-21,O- -Danielle Andrews,Female,1068,1995-10-12,AB- -Robert Thomas,Female,1069,1975-03-15,AB- -Kevin Mccormick,Male,1070,1971-06-22,A- -Joseph Hill,Male,1071,1942-09-07,AB- -Adam Burnett,Female,1072,1947-03-21,B+ -Joe Jones,Female,1073,1939-11-06,A- -Gregory Robertson,Male,1074,1961-06-02,AB- -Colleen Mann,Female,1075,1946-11-21,O- -David Turner,Male,1076,1956-10-26,A+ -Daniel Harris,Male,1077,1950-09-14,B- -Jamie Hughes,Male,1078,1952-08-11,B- -Harry Higgins,Female,1079,1975-06-30,AB- -Danielle Robles,Male,1080,2000-06-27,AB+ -Courtney Davis,Male,1081,1947-06-12,O+ -Penny Ross,Female,1082,1986-05-17,O- -Evan Fletcher,Female,1083,2001-05-17,AB+ -Brandon Scott,Male,1084,1969-05-05,B+ -George Petersen,Female,1085,1965-05-07,AB+ -Clayton Franklin,Female,1086,1951-10-01,AB- -Amanda Villegas,Female,1087,1963-05-27,O- -Brandon Thornton,Female,1088,1973-01-23,B- -Tracy Sheppard,Male,1089,1993-09-22,O+ -Lauren Carr,Male,1090,1948-06-13,B- -William Stephens,Female,1091,1973-07-27,AB+ -Autumn Proctor,Female,1092,1936-10-08,B+ -Kelly Wilson,Female,1093,1982-05-11,O+ -Cindy Combs,Female,1094,1989-08-24,A+ -Karen Ramirez,Male,1095,1972-12-05,AB+ -Isabella Powell,Male,1096,1934-10-28,B- -Matthew Greene,Male,1097,1957-11-02,B- -Karen Jackson,Female,1098,1958-11-24,AB- -Michael Martin,Female,1099,1977-04-04,B- -Morgan Collins,Female,1100,1969-02-02,O- -Jerry Welch,Female,1101,1940-06-09,AB+ -Lisa Friedman,Male,1102,2000-11-17,A- -Diane Green,Female,1103,1978-11-09,A- -Sandra Young,Female,1104,1979-08-09,B+ -Nicole Morris,Male,1105,1934-05-25,O+ -David Avila,Female,1106,1945-05-24,B- -John Powers,Female,1107,1948-07-12,AB- -Judy Anderson,Female,1108,1961-10-18,AB- -Julie Krause,Female,1109,1993-12-26,B- -David Richards,Female,1110,1984-06-27,O- -Charles Webster,Female,1111,1958-12-29,AB- -Karen Robinson,Male,1112,1968-02-09,A- -Michael Roth,Female,1113,1985-01-31,O+ -Travis Durham,Male,1114,2000-06-18,AB+ -Jessica Riley,Male,1115,1965-09-20,A+ -Rebecca Travis,Female,1116,1997-12-13,O- -Melvin Miller,Female,1117,1937-02-03,B+ -Dr. Deanna Rodriguez,Male,1118,1977-10-08,B+ -Barbara Love,Male,1119,1941-11-03,AB- -Anthony Steele,Female,1120,1959-07-15,AB+ -Matthew Hoffman,Female,1121,1954-12-12,A+ -Jennifer Ward,Female,1122,1944-08-17,B+ -Brian Charles,Male,1123,1974-11-15,B- -Regina Byrd,Female,1124,1995-05-13,B- -Karen Velazquez,Male,1125,1953-09-16,O+ -Brandon Mcbride,Female,1126,1968-06-13,A+ -Catherine Alvarado,Male,1127,1997-04-18,B- -Erika Anthony,Female,1128,1991-03-12,B+ -Mark Goodman,Male,1129,1954-03-13,B- -Maria Fuentes,Male,1130,1930-04-28,A- -Meghan Jordan,Male,1131,1968-02-08,AB- -John Klein,Male,1132,1981-11-04,B+ -Charlene Clayton,Male,1133,1969-03-06,B+ -Luke Lowery,Male,1134,1966-03-27,B+ -Robert Gould,Female,1135,1945-03-23,O+ -Heather Adams,Female,1136,1986-08-08,AB+ -Crystal Baker,Male,1137,1932-04-26,B+ -Elizabeth Murphy,Female,1138,1959-12-29,B- -Joel Butler,Male,1139,1967-07-09,A- -Jennifer Smith,Male,1140,1972-02-15,B+ -Marilyn Murray,Female,1141,1967-08-21,O- -David Crawford,Female,1142,1992-02-25,O- -Alexandra Murphy,Female,1143,1947-09-18,AB+ -Cynthia Garner DDS,Male,1144,1955-07-22,A+ -Sherry Robertson,Male,1145,2002-03-30,O+ -Sarah Strickland,Female,1146,1999-04-08,A- -Cheryl Herrera,Female,1147,1975-06-22,AB- -Michael Barajas,Male,1148,1965-02-05,A- -Elizabeth Dunn,Female,1149,1941-07-10,O- -Aaron Mack,Male,1150,1947-03-16,O- -Nicholas Castillo,Female,1151,1935-08-11,AB+ -Bryan Saunders,Male,1152,1947-01-25,A+ -Michael Soto,Male,1153,1965-06-07,A+ -Eric Thompson,Female,1154,1964-07-08,AB+ -Nicholas Carrillo,Male,1155,1956-09-26,B+ -Kayla James,Male,1156,1935-01-03,A- -Chelsea Henderson,Female,1157,1935-04-02,O- -Kimberly Carter,Male,1158,1986-06-14,A- -Ronald Mueller,Female,1159,1949-02-18,A- -Brenda Scott,Female,1160,1980-05-28,O+ -Robert Thompson,Male,1161,1969-12-16,O- -Kimberly Taylor,Male,1162,1985-02-09,A+ -Connie Stevens,Male,1163,1999-10-03,AB- -Logan Levine,Male,1164,1965-07-13,A- -Tina Ochoa,Female,1165,2002-11-14,O- -Kristin Nichols,Female,1166,1930-01-10,A- -Amanda Patrick,Female,1167,1975-07-28,O+ -Patricia Jones,Male,1168,1991-05-23,B+ -Anthony Young,Male,1169,1957-01-04,B- -Danielle Watson,Male,1170,1936-01-29,O- -Thomas Lewis,Female,1171,1949-04-12,AB+ -Brittany Smith,Female,1172,1980-07-01,B- -Mrs. Jessica Larsen MD,Male,1173,1944-06-23,A- -Christine Leonard,Male,1174,1934-06-08,AB+ -Leah Meyer,Female,1175,1953-04-22,AB+ -William Moon,Female,1176,1933-09-04,AB+ -Teresa Oconnell,Female,1177,1958-12-08,O- -Marilyn Ramsey,Female,1178,1982-08-12,A+ -Heather Yang,Male,1179,1982-08-04,A- -Jeremy Sandoval,Male,1180,1980-04-26,B- -Jamie Davis,Female,1181,1968-12-18,O+ -Lauren Gonzalez,Female,1182,2002-11-13,A+ -James Townsend,Male,1183,1939-07-23,A- -Taylor Bennett,Female,1184,1955-06-29,B+ -Justin Lane,Male,1185,1951-11-11,B+ -Nancy Lee,Male,1186,1979-04-02,O- -Robert Jenkins,Male,1187,1963-06-16,AB+ -Mercedes Estrada,Female,1188,1930-08-24,O+ -Gary Morris,Male,1189,1957-10-27,A- -Nathan Wilson,Female,1190,1935-03-24,B- -Samantha Herrera,Male,1191,1953-06-16,A- -Vickie Rogers,Male,1192,1939-09-01,A+ -Jacqueline Adams,Female,1193,1944-05-23,B+ -Heidi Burns PhD,Female,1194,1982-01-27,AB- -Samantha Peters,Female,1195,1952-05-07,A+ -Willie Perry,Female,1196,2001-08-02,A- -Kathleen Smith,Female,1197,1981-11-13,O+ -John Sandoval,Female,1198,1944-10-29,A- -Stephen Casey,Female,1199,1939-04-15,A- -Aaron Hill,Male,1200,1960-07-19,O- -Kelly Orozco,Female,1201,1946-04-18,B- -Curtis Allen,Female,1202,1989-10-30,O+ -John Smith,Male,1203,1951-12-04,A- -Kathleen Diaz,Female,1204,1954-10-26,AB+ -Brandon Wood,Male,1205,2000-09-18,B- -Carla Mitchell,Male,1206,1992-06-01,A+ -Dawn Taylor,Female,1207,1993-11-11,O+ -Chelsea Cardenas,Male,1208,2000-11-19,A+ -Jordan Miller,Female,1209,1988-01-21,B+ -Brendan Cross,Female,1210,1972-07-03,A- -Heather Watson,Female,1211,1982-10-17,A+ -Kenneth Johnston,Male,1212,1995-07-09,A+ -David Smith,Female,1213,1930-03-19,O- -Adam Daniels,Male,1214,1950-09-30,A+ -Charles Arnold,Female,1215,1986-06-07,AB+ -Sean Flores,Male,1216,1976-07-02,AB+ -Patricia Weeks,Male,1217,1968-06-30,B- -Pam Davis,Male,1218,1977-10-10,A- -Ronald Caldwell,Male,1219,1980-09-15,AB- -Blake Daniels,Male,1220,1958-11-05,B+ -Gregory Miller,Male,1221,2002-05-22,A+ -Vicki Camacho,Male,1222,1956-01-15,A+ -Melissa Henry,Male,1223,1949-01-04,O+ -Tammy James,Male,1224,1962-09-24,O- -Cynthia Davidson,Female,1225,1951-05-15,AB- -Daniel Luna,Female,1226,1947-12-23,B- -Connie Garcia,Male,1227,1946-05-21,B+ -Tina Serrano,Female,1228,1988-12-08,AB- -Jonathan Richards,Male,1229,1942-10-15,A+ -Anthony Moss,Male,1230,1980-11-08,O+ -Rhonda Young,Male,1231,1955-02-23,A- -Jessica Nguyen,Female,1232,1982-04-14,O- -Michael Robbins,Female,1233,1936-01-02,A- -Brandon Crawford,Female,1234,1933-06-02,B- -Tonya Horton,Male,1235,1960-10-16,AB- -Marcia Mckenzie,Female,1236,1965-01-07,B- -Mary Turner,Male,1237,1985-11-25,A+ -Amanda Washington,Female,1238,1980-04-29,B- -Michael Miller,Female,1239,1940-02-05,A- -Teresa Baker,Female,1240,1941-01-01,O+ -Edward Smith,Female,1241,1960-12-11,B- -Brittany Jones,Female,1242,1935-05-25,AB+ -John Murray,Male,1243,1952-12-20,O+ -Samuel Peterson,Male,1244,1990-08-23,AB- -William Cochran,Male,1245,1978-02-24,O- -Melissa Lewis,Female,1246,1997-02-17,O- -Erica Ray,Male,1247,1990-02-06,A+ -Michelle Lopez,Female,1248,1995-11-07,A+ -Julie Harris,Female,1249,1972-02-04,AB+ -Sabrina Flores,Male,1250,1990-07-31,AB- -Shane Smith,Male,1251,1945-11-06,A- -Linda Richardson,Male,1252,1944-10-22,O- -Allison Valentine,Female,1253,2002-11-10,O- -Kathleen Reyes,Male,1254,1998-08-05,O- -Courtney Elliott,Male,1255,1955-11-12,A- -Paul Vega,Female,1256,1932-07-11,O- -Sabrina Johnson,Female,1258,1931-02-24,B- -Elizabeth Alexander,Male,1259,1980-11-22,AB- -Kerry Brown,Female,1260,1959-07-17,O+ -Amy Zavala,Female,1261,1933-01-25,O+ -Crystal Brown,Female,1262,1960-10-30,AB+ -John York,Female,1263,1977-06-17,B- -Meghan Baker,Female,1264,1936-05-25,O- -Lisa Morrison,Female,1265,1944-09-17,O- -Shelby Avery,Male,1266,1936-02-22,A+ -Daniel Phillips,Male,1267,1982-02-06,A+ -Ashley Valentine,Female,1268,2002-05-16,AB+ -Mike Spears,Male,1269,1942-08-18,O- -Mark Booth,Male,1270,1968-03-08,AB+ -Darren Woods,Male,1271,1979-12-19,B- -Elizabeth Ellis,Female,1272,1960-05-27,O+ -Angela Powell,Male,1273,1966-10-08,O- -Jenny Smith,Male,1274,1991-05-13,AB- -Jamie Chavez,Female,1275,1994-12-01,A- -Courtney Duarte,Female,1276,1947-06-12,B- -Mr. Shawn Davis Jr.,Female,1277,1947-05-31,O- -Geoffrey Woods,Male,1278,1951-07-13,A- -Whitney Newman MD,Female,1279,1938-11-03,AB- -William Johnson,Male,1280,1985-01-15,A+ -Daniel Scott,Male,1281,1969-05-18,AB+ -Paul Gonzalez,Female,1282,1981-05-08,A+ -Jennifer Johnston,Female,1283,1937-12-01,O+ -Kathy Hayden,Female,1284,1940-04-14,A+ -Erica Brown,Male,1285,1986-06-05,O- -Haley Jones,Female,1286,1973-03-06,AB- -Wendy Weber,Male,1287,1975-02-12,A+ -Chad Conrad,Male,1288,1937-04-28,O- -Jonathan Carroll,Male,1290,1948-11-20,O+ -Katherine Reid,Female,1291,1957-10-13,A- -Margaret Owens,Female,1292,1932-03-04,AB- -Mindy Wood,Male,1293,2002-04-23,A+ -Tonya Smith,Male,1294,1935-10-18,AB+ -Jessica Lowe,Male,1295,1945-10-28,AB+ -Bryan Erickson,Male,1296,1963-09-03,AB- -Crystal Patterson,Male,1297,1968-10-01,AB+ -Melissa Larson,Male,1298,1960-06-03,A+ -Rachel Macdonald,Male,1299,1959-07-17,A+ -James Lloyd,Female,1300,1961-03-16,AB- -Zachary Murphy,Male,1301,1965-08-04,A+ -Diana Smith,Female,1302,1991-09-28,A- -Jessica Burke,Female,1303,1932-03-25,O- -Brandi Ramirez,Female,1304,1975-10-21,O+ -Roy Thomas,Female,1305,1958-11-11,A- -Rodney Harper,Female,1306,1998-04-12,A- -Brittany Burnett,Male,1307,1936-09-09,AB+ -William Wilson,Male,1308,1958-08-19,O- -Richard Herrera,Female,1309,1958-06-03,AB- -Donna Weaver,Male,1310,1951-04-24,B+ -Jason Hernandez,Male,1311,1961-05-31,AB+ -Gregory Russell,Female,1312,1977-07-21,O- -Ryan Randall,Female,1313,1971-12-20,A+ -Stephen Edwards,Female,1314,1996-03-09,AB- -Jonathan Rios,Male,1315,2001-10-10,B+ -Robert Campbell,Female,1316,1932-04-07,AB- -Christina Soto,Male,1317,1984-07-11,B+ -Gary Hamilton,Female,1318,1949-07-27,B+ -Edward Whitehead,Female,1319,1942-03-10,AB+ -Ryan Baldwin,Male,1320,1972-01-04,A+ -Leslie Harris,Male,1321,1967-05-02,AB+ -Nathan Smith,Male,1322,1985-06-21,B+ -Rachael Johnson,Female,1323,1946-04-26,B+ -Brian Nelson,Male,1324,1930-05-07,B- -Katelyn Thomas,Male,1325,1983-07-23,O- -Thomas David,Male,1326,1954-01-30,B- -Joseph Nelson,Male,1327,1961-11-15,O- -Bobby Osborne,Male,1328,1991-05-09,O+ -Austin Ortega,Female,1329,1988-11-05,A- -Chad Martin,Male,1330,1986-03-18,AB- -Anthony Butler,Male,1331,1949-09-14,AB+ -Christina Frank,Male,1332,1961-08-25,O+ -Lisa Campbell,Male,1333,1939-03-23,O+ -Amy Wall,Male,1334,1940-05-25,AB- -Melissa Lin,Female,1335,1971-05-20,AB- -Pamela Rodriguez,Female,1336,1967-07-24,O- -Michael Garcia,Male,1337,1934-11-28,B- -Kenneth Choi,Female,1338,1960-04-06,A+ -Margaret Casey,Male,1339,1990-07-21,O- -Matthew Stevens,Male,1340,1939-07-09,A+ -Sean Hernandez,Female,1341,1939-05-11,O+ -Courtney Graham,Female,1342,1934-07-04,A+ -Thomas Collier,Male,1343,1970-05-26,B- -Andrew Howard,Male,1344,2000-08-02,O- -Wendy Flores,Male,1345,1983-02-26,B+ -Willie Gibbs,Male,1346,1982-09-21,AB- -Samuel Johnson,Male,1347,1938-05-31,B+ -Alexander Turner,Female,1348,1935-01-29,B- -Allison Warner,Female,1349,1985-11-13,A- -Kim Galloway,Male,1350,1942-10-07,B- -Amy Johnson,Male,1351,1947-11-02,A- -Jasmine Middleton,Male,1352,1988-08-19,O- -Stephanie Berry,Male,1353,1937-06-01,AB- -Matthew Brock,Male,1354,1962-01-07,B- -Caitlin Day,Male,1355,1994-05-01,B+ -Nicole Evans,Male,1356,1956-01-29,A- -William Harris,Female,1357,1997-11-02,AB- -Brian Gomez,Male,1358,1984-06-17,AB+ -Cassandra White,Female,1359,1947-09-05,AB+ -Aaron Jones,Male,1360,1941-07-14,AB+ -Marilyn Steele,Male,1361,1966-03-17,A+ -Eric Roberts,Male,1362,1951-10-28,B- -Rebecca Knox,Male,1363,1998-11-10,O- -Alex Wright,Male,1364,1976-04-29,B+ -Clinton Moore,Female,1366,1934-06-14,O- -Tyler Sanders DVM,Female,1367,1958-03-29,A+ -Robert Olson,Female,1368,1951-10-31,O- -Michael Smith,Male,1369,1953-06-26,A- -Jaime Holmes,Male,1370,1952-02-05,AB+ -Todd Moore,Male,1371,1953-09-23,B+ -James Lopez,Male,1372,1998-06-06,B- -Thomas Long,Female,1373,1992-08-17,O- -Justin Lewis,Female,1374,1939-11-10,O- -Monique Castro,Female,1375,1948-07-28,O+ -Brian Hardin,Female,1376,1966-03-19,O+ -Kent Peters,Male,1377,1955-01-16,O+ -Michele Gardner,Female,1378,1943-08-12,B- -Joseph Perez,Male,1379,1966-12-08,AB+ -Mary Taylor,Female,1380,1978-02-27,AB- -Kelli Richardson,Male,1381,1965-06-17,AB+ -Dr. Cheyenne Chen DDS,Female,1382,1963-09-17,B+ -Peggy Miller,Male,1383,1935-06-14,AB+ -Linda Douglas,Female,1384,1944-07-05,B- -Jennifer Nelson,Male,1385,1965-08-02,A- -Bryan Harmon,Female,1386,1984-08-21,A- -Joseph Lewis,Female,1387,1991-03-21,B- -Mackenzie Ward,Male,1388,1966-11-20,O+ -David Peterson,Female,1389,1992-02-29,O- -Mr. Joshua Salazar,Female,1390,1941-12-29,A+ -Elizabeth Donovan,Female,1391,1943-01-10,A+ -Karen Martinez,Male,1392,1982-04-15,AB- -Elizabeth Tucker,Male,1393,1958-06-18,O- -Eric Campbell,Male,1394,1974-06-20,AB- -Debbie James,Male,1395,1945-04-20,O+ -Alan Ibarra,Male,1396,1977-07-03,AB- -Christine Hernandez,Male,1397,1943-07-16,O- -Lee Kramer,Female,1398,1966-09-04,B+ -Kyle Johnson,Female,1399,1984-04-03,O- -Ruth Meyer,Female,1400,1976-09-28,A+ -Tonya Ferguson,Male,1401,1941-08-14,A- -Kevin Fowler,Female,1402,1984-12-28,O+ -Felicia Ramirez,Male,1403,1998-03-22,B+ -Joshua Ellis,Female,1404,1989-01-17,B- -Patrick Farmer,Female,1405,1957-02-24,B+ -Maria Novak,Female,1406,1993-03-19,B+ -Samantha Roberts,Male,1407,1986-12-19,AB- -Michael Powell,Female,1408,1957-05-03,A+ -Jamie Santos,Male,1409,1934-10-26,AB- -John Rodriguez,Female,1410,1955-02-20,AB- -Brian Wilson,Male,1411,1936-10-18,B- -Justin Alexander,Female,1412,1996-12-02,O+ -Christopher White,Male,1413,1932-08-09,O- -Abigail Lamb,Male,1414,1999-04-07,AB+ -Ralph Kirk,Female,1415,1935-09-11,AB- -Caroline Riley,Male,1416,1937-06-10,AB+ -Susan Phillips,Male,1417,1987-03-31,O+ -Rachel Greene,Female,1418,1956-07-15,AB+ -Anthony Thompson,Male,1419,1998-01-25,AB- -Claudia Dickerson,Male,1420,1950-01-07,B- -Holly Nunez,Female,1421,1994-07-14,AB+ -Christian Holloway,Female,1422,1980-07-06,O+ -Juan Simon,Female,1423,1932-02-08,O+ -Juan Stephenson,Male,1424,1945-01-12,A- -Walter Smith,Male,1425,1972-07-13,A- -Matthew Montgomery,Male,1426,1948-03-12,B- -Virginia Morgan,Female,1427,1988-10-10,AB+ -Susan Ramirez,Female,1428,1944-04-29,AB+ -Robin Lara,Female,1429,1961-06-12,A- -Jennifer Robinson,Female,1430,1945-11-15,O- -Kevin White,Male,1431,1999-11-17,A+ -Vanessa Kim,Female,1432,1988-05-06,O+ -Daniel Wright,Male,1433,1991-05-01,O- -Ashley Hamilton,Male,1434,1983-12-28,O+ -Kristina Odonnell,Female,1435,1963-10-17,B+ -Joshua Mcdonald,Female,1436,1952-01-04,B+ -Matthew Lee,Male,1437,1973-10-24,O- -Jordan Schwartz,Male,1438,1965-10-31,B+ -Stacy Taylor,Male,1439,1943-05-06,A- -Colton Rose,Male,1440,1934-01-21,A- -Maria Williams,Female,1441,1957-08-20,A+ -Mr. Paul Simpson,Male,1442,1992-02-14,O- -Nicole Garcia,Female,1443,1984-04-22,O+ -William Christian,Female,1444,1969-06-27,AB+ -David Bauer,Male,1445,1975-01-03,O+ -Daniel Campbell,Female,1446,1950-12-05,AB- -Thomas Walters,Male,1447,2002-04-12,A- -Erin Marsh,Male,1448,1984-05-03,B- -Cassandra Koch,Female,1449,1973-01-03,B- -Gregory Morales,Female,1450,1960-11-10,A- -Cathy Martin,Male,1451,1977-02-19,AB- -Rita Cooper,Male,1452,1964-07-01,B- -Robert Washington,Female,1453,1960-02-11,B+ -Allison Hill,Female,1454,1991-02-28,A- -Jennifer Abbott,Male,1455,1969-02-20,B- -Victoria Mathews,Male,1456,1959-04-01,A- -Jennifer Lawson,Male,1457,1974-11-06,A+ -Tiffany Harper,Female,1458,1953-04-29,AB+ -Kenneth Stewart,Male,1459,1994-08-18,AB+ -Melissa Cline,Female,1460,1983-12-03,O+ -Sarah Jordan,Male,1461,1939-01-14,AB- -Alfred Wells,Female,1462,1948-05-28,A- -Belinda Castillo,Female,1463,1949-10-06,O- -Christina Clayton,Male,1464,1996-02-24,O+ -Mallory Jones,Male,1465,1984-12-02,O+ -Jimmy Gomez,Female,1466,1938-05-13,A- -Sarah Sanders,Male,1467,1967-03-03,A- -Francisco Young,Male,1468,1951-10-28,O+ -Amy Waller,Male,1469,1935-11-14,O+ -Kathy Benjamin,Male,1470,1989-02-11,AB+ -Mr. Brian Cordova,Male,1471,1956-01-08,O- -Gregory Martin,Female,1472,1971-06-24,B+ -Julia Davila,Male,1473,1981-10-22,O+ -Julie Grant,Male,1474,1963-05-03,B+ -Carla Bailey,Male,1475,1987-04-23,AB+ -Patrick Gonzalez,Male,1476,1990-03-30,O+ -Shane Rasmussen,Female,1477,1952-11-17,B- -Jesus Larson,Female,1478,1992-12-17,O+ -Brendan Peck,Male,1479,1988-07-24,A- -Spencer Good,Female,1480,1971-04-06,AB- -Matthew Barton,Male,1481,1932-04-02,AB- -Joshua Beasley,Female,1482,1977-06-10,O+ -Amanda Warren,Male,1483,1969-02-14,A+ -Danielle Singleton,Male,1484,1946-11-03,B- -Bryan Walker,Male,1485,1942-02-12,O- -Robin Nelson,Male,1486,1999-05-29,O+ -Kelly Pearson,Male,1487,1973-11-23,B+ -Brittany Ray,Female,1488,1936-01-08,O- -Cheryl Jennings,Female,1489,1986-06-22,B- -David Clayton,Male,1490,1984-12-22,O+ -Carlos Castro DVM,Male,1491,1939-06-15,A+ -Elizabeth Adams,Female,1492,1954-12-07,AB+ -Juan Walter,Male,1493,1967-12-12,A+ -Shirley Garza,Female,1494,1978-06-10,A- -Holly Clayton,Male,1495,1986-04-18,A+ -Carol Byrd,Female,1496,1953-11-01,B+ -Michelle Williams,Female,1497,1957-09-08,AB+ -Michael Delgado,Female,1498,1993-08-14,A- -Anthony Barron,Female,1499,1991-05-20,AB+ -Alexander Thomas,Female,1500,1984-09-12,AB- -Kevin Harper,Male,1501,1943-04-04,AB+ -Samuel Adams,Female,1502,1972-01-19,O+ -Jordan Chandler,Male,1503,1933-11-10,O- -Anna Morrison,Female,1504,1942-07-03,AB- -Brandy Cross,Male,1505,1961-03-01,AB- -Lauren Williamson,Female,1506,1987-02-26,O- -Bryan Payne,Female,1507,1979-02-12,B+ -Christine Scott,Male,1508,1969-12-18,AB- -Courtney Gonzales,Male,1509,1932-03-15,AB+ -Teresa Green,Male,1510,1966-03-14,A+ -Kevin Duke,Male,1511,1933-07-03,B- -Kimberly Parker,Female,1512,1966-02-13,B+ -John Reed,Male,1513,1949-05-24,AB+ -Brent Roth,Male,1514,1991-04-01,A- -Thomas Garrett,Male,1515,1990-03-30,A- -Rebecca Calderon,Female,1516,1960-05-16,A+ -Samantha Gallagher,Male,1517,1978-08-28,B+ -Joshua Rodriguez,Female,1518,1965-04-07,B+ -James Thompson MD,Male,1519,1972-06-26,A+ -Daniel Santos,Male,1520,1982-03-12,B+ -Heather Smith,Female,1521,1935-10-08,AB- -John Beck,Female,1522,1997-03-27,O+ -Jillian Hernandez,Female,1523,1974-01-16,O+ -Matthew Mayer,Male,1524,1986-06-03,B+ -Hannah Welch,Female,1525,1943-03-25,AB- -Crystal Wright,Female,1526,1982-06-09,AB- -Timothy Holt,Female,1527,1938-09-22,O- -Heather Pacheco,Male,1528,1937-01-17,O- -Kimberly Stephens,Male,1529,1965-01-25,B- -David Allen,Female,1530,1937-02-12,B- -Cassandra Greene,Male,1531,1941-01-16,B- -Tina Huff,Male,1532,1953-01-28,B- -Michael Newton,Female,1533,1933-07-28,A+ -Rachel Evans,Male,1534,1995-01-12,A+ -Adam Williams,Male,1535,1990-12-13,O- -Deborah Walker,Male,1536,1978-06-03,O+ -Omar Matthews,Female,1537,1981-10-25,AB- -Mrs. Anne Reid MD,Male,1538,1980-06-22,A- -Jeffrey Peterson,Female,1539,1993-07-02,O+ -Megan Fields,Male,1540,1953-08-21,AB+ -Sharon Tucker,Male,1541,2002-12-21,A+ -Jesse Esparza,Female,1542,1961-02-19,B- -Anthony Lee,Male,1543,1954-08-19,B- -Stephen Jones,Male,1544,1975-01-23,AB+ -Jessica Patterson PhD,Female,1545,1993-12-21,O+ -Jacqueline Hawkins,Female,1546,1944-12-28,B- -Linda Harris,Female,1547,1997-05-25,O+ -Benjamin Jackson,Female,1548,2002-12-26,AB- -Brian Jacobs,Male,1549,1949-09-02,AB+ -Steven Bryan,Female,1550,1990-09-23,A- -Paul Wilson,Male,1551,1994-05-30,O+ -Kevin Campbell,Female,1552,1965-04-02,AB- -Richard Huerta,Female,1553,1934-06-11,B+ -Daniel Garcia,Female,1554,1973-10-10,B+ -Michelle Blake,Female,1555,1952-01-07,O+ -Lawrence Bradford,Female,1556,1975-10-17,B+ -Suzanne Bailey,Female,1557,1980-07-15,O+ -Shannon Jackson,Female,1558,1951-11-19,B- -Zachary Jones,Male,1559,1972-11-02,O- -Alyssa Monroe,Female,1560,1976-08-16,B+ -Jennifer Gonzalez,Male,1561,1941-09-03,A+ -Christopher Green,Female,1562,1998-12-15,O+ -Teresa Coleman,Male,1563,1968-06-30,O+ -John Atkinson,Male,1564,1991-08-29,O+ -Mark Mcdowell,Female,1565,1971-07-01,O- -Meagan Mullins,Male,1566,1953-09-03,AB- -Scott Perez,Male,1567,2001-12-18,B+ -Lauren Fischer,Male,1568,1961-12-08,A- -Harry Moore,Female,1569,1938-02-17,A- -Katie Crane,Female,1570,1938-04-17,AB+ -Michael Browning,Female,1571,1995-10-14,B- -Chelsea Wu,Male,1572,1982-03-14,O- -Joyce Jones,Male,1573,1939-12-09,AB- -Anthony Lucas,Male,1574,1986-06-05,O+ -Jared Martinez,Male,1575,1938-05-26,AB- -Christopher Carter,Male,1576,1946-04-08,O- -Kimberly Hodges,Male,1577,1978-08-27,O- -Stephen Owen,Female,1578,1982-09-15,O- -Maria Mack,Male,1579,1987-12-20,AB+ -Katelyn Daniel,Male,1580,1961-08-21,A+ -Alan Garcia,Male,1581,1989-11-21,B- -Henry Choi,Female,1582,1965-10-25,AB+ -Tracy Diaz,Male,1583,1986-02-24,AB+ -Alicia Kennedy,Female,1584,1997-09-10,B+ -Kristopher Griffin,Female,1585,1985-05-26,A+ -Emily Vega,Male,1586,1989-09-07,AB+ -Jennifer Chavez,Male,1587,2002-12-03,O- -Jennifer Chen,Female,1588,1995-11-19,O- -Tyler Morrison,Male,1589,1948-09-02,B+ -Kimberly Fletcher,Female,1590,2000-05-25,AB- -Linda Gray,Female,1591,1997-10-18,O+ -Mr. Jason Wilson,Male,1592,1960-03-30,AB+ -Mary Rodriguez,Male,1593,2000-09-16,O+ -Mr. Taylor Williams DDS,Female,1594,1978-07-05,B- -Sylvia Oneal,Female,1595,1986-03-22,A- -Tina Williams,Male,1596,1993-05-20,O- -Renee Walker,Female,1597,1937-06-04,AB- -Danny Rojas,Female,1598,1943-04-16,B- -Jamie Holt,Female,1599,1991-11-13,B+ -Carrie Ford,Female,1600,1995-05-03,AB- -Drew Mccullough,Male,1601,1989-08-31,A- -Charles Hampton,Male,1602,2002-03-05,A- -Mr. John Wright,Female,1603,1951-02-15,B+ -Victor Thomas,Male,1604,1954-06-26,A+ -Michelle Bell,Male,1605,1972-06-16,B+ -Susan Matthews,Female,1606,1973-05-01,O- -Jodi Freeman,Female,1607,1934-10-29,B- -Stacie Snyder,Female,1608,1973-05-25,A+ -Mackenzie Curry,Female,1609,1963-03-01,A- -Jamie Zimmerman,Female,1610,1994-04-20,B- -Teresa Lynn,Male,1611,1995-11-14,AB- -Nathaniel Nichols,Female,1612,1964-08-22,A+ -Aaron Smith,Male,1613,1946-10-06,A+ -Joshua Rogers,Female,1614,1931-04-27,O- -George Harris,Female,1615,1969-10-19,B+ -Jesse Blair,Female,1616,1930-06-03,O+ -Kenneth Yu,Male,1617,1950-11-09,AB- -Christine Chavez,Female,1618,1934-03-05,AB- -Timothy Ford,Male,1619,1935-10-22,B+ -Susan Munoz,Female,1620,1971-03-15,A+ -Joanne Clark,Male,1621,1936-06-01,A+ -Steven Adams,Female,1622,1944-01-24,O- -Robin Robbins,Female,1623,1990-08-18,O+ -Adam Dominguez,Male,1624,1933-05-25,AB- -Ashley Watkins,Male,1625,1930-03-02,A- -Hunter Smith,Male,1626,1954-12-31,AB+ -Edward Wagner,Male,1627,1979-05-07,AB+ -Christopher Bray,Male,1628,1991-10-17,O+ -Debra Lambert,Female,1629,1963-09-17,B- -Steve Hunt,Male,1630,1966-07-21,O- -Johnny Howard,Male,1631,1996-09-05,O+ -Anthony Cantu,Male,1632,1964-01-01,B+ -Devon Gonzalez,Female,1633,1933-06-06,B+ -Jason Sexton,Female,1634,1986-05-14,AB+ -Benjamin Rice,Male,1635,1952-11-24,A+ -Jessica Wilson,Female,1636,1956-06-03,AB+ -Blake Wood,Female,1637,1984-07-29,A+ -Arthur James,Female,1638,1986-05-08,O- -Lauren Wilcox,Male,1639,1994-01-18,A+ -Melissa Weaver,Male,1640,1993-02-10,O+ -Amber Scott,Male,1641,1981-03-20,A+ -Jennifer Mejia,Male,1642,2001-10-07,B- -Donald Huffman,Female,1643,1974-09-01,B+ -Ian Jefferson,Male,1644,1941-03-14,O+ -Lori Smith,Female,1645,1949-01-21,B+ -Robert Simpson DDS,Female,1646,1938-03-24,O- -Theresa Holland,Female,1647,1988-12-02,O+ -Jackie Carroll,Male,1648,1975-10-05,B- -Emily White,Female,1649,1939-12-20,O- -Anthony Hunt,Female,1651,1996-09-17,AB+ -Christina George,Male,1652,1986-02-07,B- -Andrea Carr,Male,1653,1933-09-03,O- -Joel Young,Female,1654,1962-06-17,A- -Dr. Andrew Lester,Female,1655,1997-11-16,A+ -Frances Johnson,Male,1656,1930-12-05,O+ -George Cox,Male,1657,1946-02-21,O- -Timothy Smith,Female,1658,1963-07-21,O+ -Samuel Gonzales,Male,1659,1982-04-10,A+ -Timothy Perry,Female,1660,1961-01-22,O- -Kenneth Ross,Female,1661,1934-10-17,AB+ -Timothy Cox,Male,1662,1990-03-15,A- -Joseph Frazier,Male,1663,1936-08-18,A- -Angela Lowery,Male,1664,1949-06-29,B- -Kim Aguilar,Male,1665,1999-03-25,O- -Patricia Roth,Female,1666,1944-07-25,A+ -Tracy Brown,Female,1667,1973-07-10,O- -Stephanie Reyes,Male,1668,1992-12-14,O+ -Larry Martin,Female,1669,1989-08-10,AB- -David Webb,Female,1670,1962-08-19,B+ -Christopher Anderson,Female,1671,1985-10-16,O- -Tina Martinez,Female,1672,1998-08-16,A- -James Jackson,Male,1673,1996-11-18,A- -Cindy Meyer,Male,1674,1967-12-02,B+ -Mary Bennett,Male,1675,1997-05-31,A- -Jessica Rhodes,Female,1677,1943-05-06,AB+ -Deborah Camacho,Male,1678,1943-02-28,O- -Jacob Garcia,Female,1679,1953-07-11,B- -Erica Russell,Male,1680,1963-05-10,O- -Brian Evans,Male,1681,1991-01-18,AB- -Charles Rodriguez,Male,1682,1994-05-13,A- -Richard Gonzalez,Female,1683,1983-07-03,O+ -Alexis Dalton,Male,1684,1975-12-05,A- -Aaron Miller,Female,1685,1962-12-24,O- -Erica Mullins,Female,1686,1942-02-17,AB+ -Rebecca Patterson,Male,1687,1954-02-24,A+ -Leslie Hall,Male,1688,1995-11-26,O- -Dakota Hamilton,Female,1689,1941-08-03,O- -Greg Webster,Female,1690,1960-06-14,B- -Sean Hernandez,Male,1691,1971-02-18,AB+ -Antonio Robinson,Male,1692,1951-12-04,AB- -Kristy Shepherd,Male,1693,1979-01-09,A+ -Jodi Lee,Male,1694,1954-09-10,A- -Cameron Ross,Male,1695,1934-02-09,O+ -Lisa Austin,Male,1696,1948-06-12,O- -Brian Roberts,Male,1697,1939-01-08,AB- -Tommy Hines,Female,1698,1988-10-12,A+ -Shane Espinoza,Male,1699,1981-06-25,O+ -Rebecca Ibarra,Male,1700,1999-11-05,AB- -Brandon Gregory,Male,1701,1983-03-10,AB+ -Michael Herrera,Female,1702,1942-04-25,AB+ -Donald Alexander,Female,1703,1978-11-15,A+ -Lisa Bryant,Female,1704,1984-08-10,A- -Kristina Montgomery,Female,1705,1931-09-07,B+ -Sara Hines,Female,1706,1989-08-15,O+ -Denise Stein,Female,1707,1995-12-03,AB+ -Karen Osborne,Male,1708,1955-09-01,B+ -Ricardo Sullivan,Female,1709,1983-09-07,A+ -Roger Morgan,Female,1710,1994-05-27,AB+ -Matthew Ford,Female,1711,1937-04-21,AB+ -Dana Chambers,Female,1712,1996-09-15,AB- -Melissa Dominguez,Female,1713,1966-09-18,B+ -Andrew Hill,Male,1714,1975-03-20,AB- -Madison Rodriguez,Female,1715,1938-03-03,AB+ -Natasha Martin,Female,1716,1986-07-28,B+ -Douglas Wong,Male,1717,1994-05-15,B- -Kathryn Garcia,Female,1718,1964-08-21,B+ -Marissa Schultz,Female,1719,1952-07-14,AB- -Dana Wilson,Male,1720,1995-12-04,O+ -Christina Reynolds,Female,1721,1948-03-07,A+ -James Maynard,Male,1722,1962-04-02,A+ -Susan Banks,Male,1723,1989-10-30,A- -Jaime Santiago,Male,1724,1971-12-09,O+ -Pamela Medina,Female,1725,1977-05-18,O+ -Rebekah Wells,Female,1726,1950-09-17,O+ -Christina Dixon,Male,1727,1972-06-29,A- -William Baker,Female,1728,1998-08-20,O+ -Tyrone Campbell,Female,1729,1967-08-12,O- -John Carroll,Female,1730,1955-07-12,A- -Kristy Thomas,Female,1731,1971-09-12,A+ -Brett Hobbs,Male,1732,1962-01-26,O- -Amanda Wise,Male,1733,1953-04-12,A- -Amy Carpenter,Male,1734,1999-04-23,AB+ -Shannon Macias,Male,1735,1983-09-25,AB+ -Dr. Sean Hansen,Male,1736,1931-06-30,A+ -Jason York,Male,1737,1941-11-25,AB+ -Melvin Smith,Male,1738,1957-05-15,O+ -Victoria Graham,Female,1739,1973-03-11,A- -Robert Garcia,Male,1740,1968-02-10,O- -Sarah Dougherty,Male,1741,1940-06-07,O+ -Peter Mack,Male,1742,1949-09-24,AB+ -Max Montgomery,Male,1743,1954-08-28,AB- -Sara Johnson,Female,1744,1974-10-28,B+ -Jonathan Rowland,Male,1745,1963-09-21,O- -Valerie Riley,Male,1746,1980-06-03,O+ -Sonya Cisneros,Male,1747,1953-02-05,A- -Jeanne Price,Male,1748,1965-07-20,A+ -Jake Matthews,Female,1749,1930-09-29,O+ -Tammy Dillon,Male,1750,1984-06-21,AB- -Joseph Shelton,Female,1751,1979-09-16,AB+ -Tony Chen,Male,1752,2000-09-28,O- -Willie Short,Male,1753,1959-01-25,A+ -Kathryn Mcpherson PhD,Male,1754,1941-12-10,O- -Raymond Wilson,Female,1755,1949-05-10,A+ -George Stewart,Male,1756,1977-05-18,B+ -Robert Jarvis,Female,1757,1997-04-13,A- -Mr. Brian Chavez,Female,1758,1939-05-24,O- -Parker Delacruz,Male,1759,1987-01-01,AB+ -Andrea King,Female,1760,1964-09-15,A- -Kevin Miller,Male,1761,1959-08-13,A- -Shannon Carlson,Female,1762,1985-02-25,B+ -Veronica Bailey,Female,1763,1935-08-13,A+ -Kelly Hernandez,Male,1764,1962-01-05,B- -Gabriel Henderson,Female,1765,1933-03-11,O- -Joshua Fitzgerald,Female,1766,1998-04-25,O- -Brian Cox,Female,1767,1935-07-27,O+ -Thomas White,Female,1768,1992-07-25,A+ -Crystal Garrison,Male,1769,1930-05-26,AB- -Robert Reed,Female,1770,1969-01-25,B- -Reginald Marshall,Male,1771,1986-11-15,AB+ -Michael Wright,Male,1772,1951-06-12,O+ -Darrell Hall,Male,1773,1998-06-20,B+ -Christopher Robinson,Male,1774,1999-03-20,B- -Joe Mitchell,Female,1775,1997-03-27,A+ -Thomas Berry,Female,1776,1969-02-11,B- -Crystal Wright,Male,1777,1937-03-17,B+ -Evan Bradford,Female,1778,1942-04-22,A- -Greg Rogers,Female,1779,1971-06-27,O- -Oscar Thornton,Female,1780,1996-11-30,A- -Ashley Rodriguez MD,Male,1781,1995-06-04,O- -Larry Mitchell,Female,1782,1955-01-25,O+ -John Hudson,Male,1783,1958-07-19,B+ -James Williamson,Female,1784,1958-01-07,A+ -Matthew Williams,Female,1785,1935-01-03,A+ -Courtney Lane,Male,1786,1963-07-27,B- -Shaun Tran,Male,1787,1954-12-31,O+ -Jonathan Hernandez,Male,1788,1943-02-27,A+ -Jennifer Bowman,Female,1789,1932-03-17,AB- -Cheryl Sanchez,Female,1790,2001-04-17,AB- -Aaron Burnett,Female,1791,1995-05-10,A- -Kevin Rodriguez,Male,1792,1952-06-16,O- -Ian Green,Male,1793,1935-02-12,B- -Dustin Harper,Male,1794,1969-11-13,AB+ -Brian Mitchell MD,Female,1795,1972-06-21,B+ -Rebecca Olson,Male,1796,1996-06-05,O- -Leah Kemp,Male,1797,1970-10-17,O+ -Jessica Hayes,Female,1798,1990-06-09,A+ -Cindy Perkins,Female,1799,1996-04-15,O- -Christopher Rodriguez,Male,1800,1974-05-30,AB+ -Sarah Roberts,Male,1801,1973-08-17,AB+ -Derek Hughes,Male,1802,1944-11-12,AB- -Richard Mcconnell,Female,1803,1954-11-07,O+ -Andrew Morgan,Male,1804,1939-10-05,O- -Robin Long,Female,1805,1933-10-21,B- -Michael Richmond,Female,1806,1961-09-28,O- -Gary Martin,Male,1807,1949-12-01,AB- -Tiffany Dunn,Female,1808,1977-02-11,A- -Jeffrey Nelson,Male,1809,1981-01-22,AB+ -Larry Herrera,Male,1810,1977-06-03,O+ -Chad Mcknight,Male,1811,1959-06-03,O+ -Olivia Becker,Male,1812,1992-05-21,B- -Nancy Johnson,Male,1813,1968-11-16,O+ -Tony Jones,Female,1814,1985-05-21,AB- -Tiffany Collins,Male,1815,1973-06-20,AB- -Cody Mcclain,Female,1816,1979-10-11,AB- -Brad Dennis,Female,1817,1952-07-29,O+ -Richard Robinson,Female,1818,1949-10-02,O+ -Sara Robertson,Female,1819,1931-12-28,AB- -Jeffrey Hawkins,Male,1820,1982-05-08,O+ -Andres Keller,Male,1821,1967-11-15,B+ -Brandy Bridges,Female,1822,1961-02-09,O+ -Robin Foster,Female,1823,1980-02-05,B+ -Mckenzie Moore,Female,1824,2001-08-28,AB+ -Mr. David Mcconnell DDS,Male,1825,1957-09-02,O- -Timothy Arroyo,Male,1826,1950-12-19,A+ -Stanley Crane,Female,1827,1981-08-11,B+ -Cameron Bailey,Female,1828,1999-08-12,B+ -Richard Cole,Female,1829,1994-11-17,O+ -Deanna Stewart,Female,1830,1969-11-03,A+ -Lindsey Kelly DDS,Male,1831,1997-04-17,A- -Leslie Bennett,Male,1832,1951-08-25,A+ -Chloe Wolf,Female,1833,1988-03-17,AB+ -Brenda Mckenzie,Male,1834,1949-12-14,B+ -Charles Frost,Female,1835,1932-06-11,O+ -Edward Walker,Male,1836,1957-12-27,AB- -Breanna Thompson,Female,1837,1942-10-20,A+ -Jack Neal,Male,1838,1935-04-18,O+ -Amanda Kirby,Female,1839,1978-08-21,B- -Thomas Jacobs,Female,1840,1962-07-05,A- -Garrett Gomez,Female,1841,1978-05-23,AB- -Susan Rodriguez,Male,1842,1979-05-08,B- -Brian Crawford,Male,1843,1966-04-01,B- -Adrian Mooney,Male,1844,1995-05-14,A+ -Casey Holmes,Female,1846,1959-10-10,B- -Katrina Ashley,Male,1847,1999-12-28,AB+ -Amanda Edwards,Female,1848,1978-03-12,AB+ -James Lynn,Female,1849,1943-09-26,A+ -Mary Chambers,Male,1850,1993-09-12,O+ -Jeremy Merritt,Female,1851,2000-12-30,O- -Seth West,Male,1852,1967-09-18,O+ -Carlos Thomas,Female,1853,1956-09-13,O+ -Robin Barber,Female,1854,2001-03-03,O+ -Mathew Edwards,Female,1855,1977-06-21,O+ -Daniel Glover,Male,1856,1972-09-02,AB- -Debbie Becker,Female,1857,1999-12-24,O- -Juan Coleman,Female,1858,1949-12-18,AB- -Elizabeth Wright,Female,1859,1932-09-01,B- -Peggy Moody,Male,1860,1941-04-26,A- -Walter Hull,Male,1861,1970-02-23,O+ -Sherri Mckinney,Male,1862,1989-07-24,A- -Bradley Mack,Female,1863,1940-11-16,AB+ -Robert Kennedy,Female,1864,1944-07-01,A+ -Charles Henson,Male,1865,1968-02-04,A+ -Dawn Campbell,Female,1866,1954-12-06,AB- -Kelli Hartman,Male,1867,1952-07-12,AB- -Richard Sanchez,Male,1868,1957-02-11,AB+ -Curtis Fitzgerald,Female,1869,1938-04-09,O+ -James Taylor,Male,1870,1954-08-10,A- -Anthony Garcia,Male,1871,1985-11-28,B+ -Kenneth Hardy,Male,1872,1988-09-25,A- -Anita Warren,Female,1873,1965-04-07,O- -Cassandra King,Female,1874,1944-04-30,B- -Nina Lewis,Male,1875,1956-01-21,A+ -Taylor Ellison,Male,1876,1969-11-11,B- -Aaron Robinson,Male,1877,1975-09-23,O- -Annette Marshall,Female,1878,1936-07-24,AB- -Christopher Greer,Female,1879,1980-10-11,A- -Jeremy Jensen,Female,1880,1982-05-17,A+ -Clinton Gutierrez DDS,Male,1881,1934-05-11,B- -Karen Harvey,Male,1882,1960-12-12,B+ -Elizabeth Wood,Male,1883,1946-12-06,AB- -Jacqueline Oneill,Male,1884,1985-08-14,O- -Paula Gonzalez,Female,1885,2002-10-02,B+ -Carrie Hart,Female,1886,1933-08-05,B- -Anne Dougherty,Male,1887,2000-10-21,B+ -Ryan Baker,Male,1888,1986-08-30,A- -Joshua White,Male,1889,1950-01-10,O+ -Edward Hudson,Male,1890,1981-05-20,B+ -Douglas Howard,Male,1891,1983-09-23,AB- -Nathan Miranda MD,Female,1892,1935-11-10,O- -Jennifer Simmons MD,Male,1893,1970-03-20,B- -John Singh,Male,1894,1979-07-11,A- -Donald Olsen,Female,1895,1948-12-16,O+ -Lisa Caldwell,Female,1896,1930-12-29,O+ -Karina Hudson,Male,1897,1981-12-27,O- -Tiffany Cobb,Female,1898,2001-12-26,AB+ -Juan Miranda,Male,1899,1966-11-29,A- -Thomas Roberts,Male,1900,1986-08-05,A- -Stephanie Smith,Female,1901,1940-03-27,A+ -Charles Ramos,Male,1902,1936-10-05,O- -Elizabeth Jensen,Female,1903,1987-12-27,O+ -Craig Romero,Female,1904,1991-09-12,O+ -Jonathan Smith,Female,1905,1974-02-05,B+ -Chloe Jimenez,Female,1906,1976-05-19,O- -Kevin Lewis,Female,1907,1954-09-09,AB+ -Julie Mcbride,Female,1908,1937-09-09,A+ -Bradley Nelson,Female,1909,1974-10-27,B- -Stephanie Pratt,Male,1910,1988-12-16,O- -Matthew Robinson,Female,1911,1970-09-18,A+ -Michael Massey,Female,1912,1964-10-22,A- -Melissa Parker,Female,1913,1950-09-14,A+ -Erin Collins,Male,1914,1937-06-12,B+ -Rachel Bray,Female,1915,1992-09-02,AB- -Olivia Caldwell,Male,1916,1962-01-13,O+ -Lisa Irwin,Female,1917,1940-03-30,B+ -Jeremy Dixon,Male,1918,1956-09-27,B- -Chad Scott,Female,1920,1940-12-12,O- -Robert Green,Female,1921,1981-06-09,B+ -Trevor Rivera,Male,1922,1974-01-07,O+ -Brandon Webb,Male,1923,1998-11-24,AB- -Jorge Parsons,Female,1924,2002-10-18,B+ -Courtney Reed,Male,1925,2001-07-10,AB- -Alexandra Tucker,Female,1926,1930-10-22,B+ -Anthony Edwards,Male,1927,1957-11-12,O+ -Laura Preston,Male,1928,1989-06-27,AB+ -Robert Jones,Female,1929,1957-01-21,A+ -Felicia Patterson MD,Female,1930,1933-02-10,O- -Mark White,Male,1931,1935-08-27,O- -Nicholas Stokes,Male,1932,1949-03-11,O- -Brett Sexton,Female,1933,1965-07-23,O+ -Carrie Davis,Female,1934,1942-06-10,A- -Thomas Hill,Female,1935,1932-10-04,AB+ -Gregg Solis,Male,1936,1944-11-28,B- -James Rodriguez,Female,1937,1959-04-25,AB- -Taylor Munoz,Female,1938,1970-05-20,O+ -Mrs. Zoe Bartlett,Male,1939,1962-01-31,A- -Scott Alexander,Female,1940,1989-07-06,B- -Kevin Phillips,Female,1941,1955-11-05,AB- -Joseph Park,Male,1942,1966-05-13,AB- -Katherine Mcgee,Female,1943,1933-12-06,AB+ -Tristan Castillo,Female,1944,1931-07-26,A+ -Judith Sexton,Female,1945,1936-07-10,O- -Julia Williams,Male,1946,2000-09-11,B+ -Jaime Hodge,Female,1947,2002-12-29,B- -Christopher Frederick,Female,1948,1943-12-03,O+ -Barbara May,Male,1949,1975-08-14,B- -Kelly Stevens,Male,1950,1966-12-25,A+ -Andrew Smith,Female,1951,1949-04-30,O- -Janice Hancock,Male,1952,1980-01-10,B- -Kevin Pace,Female,1953,1964-12-19,A+ -Tammy Liu,Female,1954,1978-04-28,O+ -Jeremy Lowe,Male,1955,1950-07-06,AB+ -Robert Duncan,Male,1956,1969-10-10,A- -Victoria Barker,Male,1957,1977-09-15,AB- -Molly Foster,Male,1958,1970-09-07,O+ -James Thompson,Male,1959,1999-10-19,O- -Craig Jensen,Male,1960,1952-02-08,AB- -Jesus Myers,Male,1961,1954-11-08,A- -Scott Mills,Male,1962,1982-05-24,O+ -Catherine Hawkins,Female,1963,1997-05-06,B+ -Emily Johnston,Male,1964,1987-05-15,O+ -Tamara Macdonald,Male,1965,1961-03-02,O+ -Whitney Obrien,Female,1966,1974-11-04,B+ -Carrie Johnson,Male,1967,1992-04-02,O+ -Ryan Hull,Female,1968,1936-06-11,AB- -Jacob Gallagher,Male,1969,1995-03-22,O- -Bryan Nguyen,Male,1970,1943-02-21,A- -Janice Benton,Female,1971,1976-09-26,A+ -Kathy Ross,Male,1972,1998-01-24,B- -Kelsey Lawson DVM,Male,1973,1988-01-12,B+ -Kevin Cox,Male,1974,1962-09-09,AB+ -Diane Cummings,Female,1975,1999-05-17,B+ -Michael Mitchell,Female,1976,1989-06-30,A- -Jeffrey Smith MD,Male,1977,1988-08-31,B- -Derek Estrada,Male,1978,1936-08-25,B- -Felicia Ramirez,Female,1979,1988-11-22,AB+ -William Gutierrez,Male,1980,1997-05-13,A- -Terri Harmon,Female,1981,1999-10-08,AB- -Jeffrey King MD,Male,1982,1960-12-05,O- -Dawn Ortiz,Female,1983,1951-05-24,AB+ -Leroy Wright,Male,1984,1969-06-19,O- -Jamie King,Male,1985,1962-04-24,AB- -Chelsea Smith,Male,1986,1962-02-27,B- -Krista Terry,Female,1987,2001-04-07,O- -Jessica Hayes,Male,1988,1965-08-30,AB- -Paul Serrano,Male,1989,1939-03-11,AB- -Dr. Charles Burton MD,Female,1990,1998-09-12,A+ -Heather Bryan,Male,1991,1969-02-13,AB+ -Andrew Perez,Male,1992,1994-10-02,A+ -James Thomas,Female,1993,1947-11-28,B+ -Lori Hayden,Male,1994,1974-12-18,B- -Paul Hunter,Female,1995,1939-02-25,AB+ -John Walker,Female,1996,1954-11-09,B- -Sean Gardner,Female,1997,1937-10-15,A+ -Barbara Martinez,Female,1998,1958-06-19,A- -Cheryl Rodriguez,Male,1999,1977-11-12,AB- -Julie Nguyen,Male,2000,1994-02-05,B- -Katherine Medina,Male,2001,1979-11-07,AB+ -Todd Henry,Female,2002,1968-04-29,B+ -Beverly Lopez,Male,2003,1966-04-23,AB+ -April Austin,Male,2004,1983-07-01,B- -Amanda Rollins,Male,2005,1938-06-21,AB+ -John Richardson,Male,2006,1962-02-04,B+ -Seth Morris,Male,2007,1990-05-08,AB- -Devin Martin,Male,2008,1985-03-15,A- -Gerald Hernandez,Male,2009,1982-10-15,AB- -Gwendolyn Wolfe,Male,2010,1961-11-19,AB+ -Jonathan Santos,Female,2011,1971-04-19,B+ -Roger Shaffer,Female,2012,1932-09-15,B+ -Denise Thompson,Male,2013,1986-02-16,B- -Pamela Valencia,Female,2014,1947-08-26,A+ -Ryan Oliver,Male,2015,1974-09-22,AB+ -Margaret Allen,Male,2016,1986-04-20,AB+ -John Alvarado,Female,2017,1974-03-04,AB+ -Eric Burns,Male,2018,1934-08-10,AB+ -Christina Ward,Female,2019,1945-05-28,B- -Kevin Fletcher,Female,2020,1950-04-30,A+ -Joshua Crawford,Male,2021,1965-03-15,A+ -Spencer Lloyd,Female,2022,1963-04-13,O- -Tammy Diaz,Female,2023,1977-05-31,AB+ -Stephen Anderson,Female,2024,1984-09-16,AB+ -Gary Long,Female,2025,1961-04-13,O- -Stacey Martin,Female,2026,1935-06-04,A+ -Kimberly Lee,Male,2027,1972-07-01,B+ -Emily Jones,Female,2028,2002-05-14,B+ -Casey Brewer,Male,2029,1983-03-24,O+ -Deborah Arias,Female,2031,1954-08-07,AB- -Alec Wallace,Male,2032,1977-01-09,O+ -Alex Sanchez,Female,2033,1973-06-27,A+ -Eric Johnson DVM,Female,2034,2002-03-29,A- -Travis Foster,Male,2035,1944-10-04,AB+ -Melissa Singh,Male,2036,1993-01-09,O+ -Donna Flores,Male,2037,1981-01-12,B- -Frank Stephens,Female,2038,1984-09-28,B+ -Joseph Spence,Male,2039,1934-05-27,B- -Marcus Powell,Female,2040,1989-01-14,O- -Gary Ayers,Female,2041,1947-12-31,A+ -Theresa Santiago,Male,2042,1977-07-21,A+ -Erin Jackson,Male,2043,1945-10-25,O+ -Michael Mason,Female,2044,1940-01-25,AB+ -Austin Ross,Male,2045,1939-04-04,A+ -Sandra Scott,Female,2046,1953-11-07,O+ -Mr. Alex Wilson,Male,2047,1954-01-17,O+ -Patrick Higgins,Male,2048,1977-09-25,AB- -Brittney Wells,Male,2049,1968-04-28,AB- -Jennifer Singleton,Male,2050,1984-10-21,A+ -Amy Gardner,Male,2051,1947-05-14,O+ -Andrew Edwards,Male,2052,1977-06-26,O- -Samantha Boone,Male,2053,1946-08-04,O- -Nancy Campos,Male,2054,1954-04-29,AB- -Morgan Daniels,Male,2055,1945-06-26,A+ -Angel Hogan,Female,2056,1963-02-08,B+ -Bethany Smith,Female,2057,1987-02-08,AB+ -Angela Clay,Female,2058,1982-12-04,A- -Nicole Meyer,Female,2059,1971-10-04,B+ -James Ramos,Female,2060,1996-01-04,O- -Paul Ramos,Female,2061,1931-06-11,O- -Jodi Smith,Female,2062,1938-10-30,B+ -Alexander Watts,Male,2063,1971-04-05,AB- -Lisa Olson,Male,2064,1961-08-02,AB- -Amy Thompson,Male,2065,1967-02-03,A+ -Robert Adkins,Male,2066,1979-12-29,AB- -Ronald Barrett,Female,2067,1934-10-30,B- -Michael Hendrix,Male,2068,1953-11-08,A- -Caleb Moss,Female,2069,1945-11-15,B+ -Danny Ray,Female,2070,1955-03-19,B+ -Robert Bright,Male,2071,1994-04-18,O+ -Andrea Vasquez,Male,2072,1943-12-28,O- -Brenda Stewart,Male,2073,1993-01-18,B+ -Janet White,Male,2074,1975-03-06,B- -Destiny Morgan,Female,2075,1936-08-30,B+ -Julie Hall,Female,2076,1989-10-25,AB+ -Thomas Waters,Male,2077,1976-06-15,B- -Crystal Coleman,Male,2078,1998-05-14,A+ -Victoria Snyder,Male,2079,1985-03-25,AB+ -Joseph Hill,Female,2080,1941-05-30,AB+ -William Brown,Male,2081,1998-01-13,B+ -Christie Galvan,Female,2082,2002-10-19,AB- -Chad Anthony,Male,2083,1978-08-30,B+ -Jessica Adams,Male,2084,1952-11-18,B- -William Thompson,Female,2085,2001-07-30,A+ -Kelly Bishop,Male,2086,1946-11-07,O- -Julie Delgado,Female,2087,1989-09-12,A- -Barry Mayo,Male,2088,1954-06-04,AB- -Johnny Richardson,Female,2089,1980-06-14,B- -Michael Allen,Male,2090,1986-05-08,O- -Amy Mueller,Male,2091,1984-06-06,B- -Amanda Bailey,Male,2092,1976-12-27,AB- -Joseph Avila,Male,2093,1930-08-02,O- -Karen Brooks,Female,2094,1940-04-20,AB- -Mary Dodson DDS,Female,2096,1966-09-08,B- -Kathy Clark,Male,2097,1956-09-29,AB+ -Beverly Robinson,Male,2098,1959-02-18,A- -Jessica Rodriguez,Female,2099,1948-06-06,O+ -Donald Thompson,Male,2100,1983-05-24,A- -Maurice Taylor,Female,2101,1945-11-09,AB+ -Dana Kelly DDS,Male,2102,1973-04-27,AB- -Wendy Mendoza,Female,2103,1954-01-18,A- -Justin Harris,Female,2104,1967-04-18,AB- -Heather Rodriguez,Female,2105,1973-11-10,AB- -Lisa Fernandez,Female,2106,1937-06-13,O- -James Ferrell,Male,2107,1954-05-20,A+ -Tracy Malone,Male,2108,1954-12-28,AB- -Adam Callahan,Male,2109,1991-06-01,A- -Tracey Soto,Female,2110,1996-11-06,A- -Michelle Wilson,Female,2111,1974-11-11,A- -Susan Holmes,Female,2112,1947-06-09,AB+ -Nancy Mitchell,Male,2113,1968-06-26,O+ -Heather Smith,Male,2114,1963-07-03,AB- -Linda Johnson,Female,2115,1980-03-12,B+ -Timothy Lucas,Male,2116,1993-04-16,AB- -Jon Garcia,Female,2117,1969-07-26,AB- -Jack Campbell,Female,2118,1996-04-21,B+ -Beverly Adkins,Male,2119,1977-05-15,O- -Timothy Goodman,Male,2120,1983-07-20,AB- -Jacqueline Stone,Male,2121,1958-07-26,AB+ -Jill Green,Male,2122,1972-07-04,B- -Arthur Harris,Female,2123,1994-01-23,A+ -John Adams,Female,2124,1930-03-31,A- -Danielle Leon,Male,2125,1979-07-16,AB- -Benjamin Howard,Female,2126,1958-05-15,O- -Tasha Dunn,Female,2127,1974-10-26,AB+ -Bridget Marquez,Female,2128,1938-04-30,AB- -Shelly Brandt,Male,2129,1930-04-16,B+ -Anthony Winters,Female,2130,1954-11-09,O- -Jennifer Caldwell,Male,2131,1998-06-16,B- -Alexandra Tran,Female,2132,1980-01-18,O+ -Mary Hunt,Female,2133,1946-09-04,AB- -Erica Dalton,Female,2134,1998-02-25,AB+ -Keith Graham,Female,2135,1946-08-27,O- -Claudia Zimmerman,Male,2136,1976-08-05,B+ -Jessica Patterson,Female,2137,1935-04-10,O- -Lori Robinson,Female,2138,1980-06-27,AB- -Madeline Scott,Female,2139,1948-12-09,O- -Austin Peterson,Male,2141,1983-06-20,O+ -Dawn Nielsen,Male,2142,2001-03-24,O- -Deborah Wood,Female,2143,1931-07-07,A- -Jacob Harris,Female,2144,1999-03-31,A+ -Janet Kerr,Female,2145,1989-08-06,A- -Austin Thompson,Female,2146,1940-09-16,A+ -Brandi Robinson,Female,2147,2001-12-23,O- -Melissa Norris,Male,2148,1939-04-13,B+ -Pamela Ayala,Female,2149,2000-04-26,B+ -Matthew Stokes,Female,2150,1967-04-26,AB- -Kevin Munoz,Female,2151,1997-12-21,B+ -Sara Daniels,Female,2152,1936-08-27,A+ -Christina Carlson,Male,2153,2002-11-29,AB+ -Jennifer Flowers,Female,2154,1931-04-04,A+ -Derek Craig,Male,2155,1966-09-04,A- -Alexis King,Female,2156,1930-07-27,O- -Jennifer Cook,Male,2157,1932-06-18,AB- -Lisa Lopez,Male,2158,1961-11-27,B- -Thomas Weber,Male,2159,1974-12-01,AB- -Caleb Norman,Female,2160,1953-07-20,AB- -Felicia Jimenez,Male,2161,1932-06-13,AB- -Corey Lee,Female,2162,1931-05-30,AB+ -Erin Mitchell,Male,2163,1994-10-30,O+ -Michael Beck,Female,2164,1988-04-14,A- -Keith Lynch,Female,2165,1996-05-25,O- -David Moore,Female,2166,1941-04-02,O+ -Robert Neal,Male,2167,1966-04-20,B- -Jamie Powell,Male,2168,1971-12-05,O+ -Holly Smith,Male,2169,1972-01-10,O- -Robert Wilson,Male,2170,1949-08-28,A- -Jennifer Matthews,Male,2171,1958-04-10,A- -Kenneth Wilson,Female,2172,1962-04-10,O- -Victoria Bruce,Male,2173,1934-04-10,B- -Jose Taylor,Male,2174,1967-04-09,O- -Jeffrey Mcdonald,Female,2175,1978-04-29,B- -Amber Jackson,Male,2176,1984-10-26,B- -Amy Brock,Female,2177,1999-05-04,O- -Kevin Greer,Female,2178,1984-03-29,A+ -Jamie Munoz,Female,2179,1943-02-02,A- -Richard Brown,Female,2180,1980-02-19,B- -Misty Palmer,Male,2181,1962-07-26,O- -Carlos Torres,Male,2182,1936-06-14,B+ -James Larson,Female,2183,1943-02-12,A+ -Robert Smith,Male,2184,1975-09-12,A- -Thomas Erickson,Male,2185,1996-09-14,B- -Mrs. Amanda Cardenas,Female,2186,1984-11-22,A- -Amanda Hubbard,Male,2187,1957-11-16,A+ -Catherine Moreno,Female,2188,1949-04-28,A- -Alexis Adkins,Male,2189,1974-01-12,AB+ -Sherry Mendez,Male,2190,1931-10-24,AB- -Patricia Christian,Male,2191,1942-09-19,AB+ -Sheila Miller,Female,2192,1973-01-06,A+ -Calvin Odonnell,Male,2193,1998-02-20,B- -Bill Lindsey,Male,2194,1937-12-30,O- -Justin Jackson,Female,2195,2000-04-01,O+ -Daniel Conway,Male,2196,1973-10-24,O- -Michael Barnes,Female,2197,1968-05-26,A- -Brandon Swanson,Female,2198,1954-06-30,O+ -Zachary Hall,Male,2199,1964-11-10,O+ -Jasmine Sanchez,Female,2200,1947-01-28,A- -Spencer Martin,Male,2201,1974-08-27,A- -Teresa Ingram,Female,2202,1991-07-02,B- -Adam Cole,Female,2203,1967-01-05,A+ -Kristen Roberts,Male,2204,1930-12-19,B+ -April James,Female,2205,1999-10-04,O- -Thomas Torres MD,Female,2206,1949-03-07,A+ -Brian Mills,Male,2207,1968-06-06,AB+ -Daniel Campos,Male,2208,1975-04-17,B- -Tanya Jackson,Female,2209,2002-09-13,B- -Benjamin Smith,Male,2210,1932-08-14,B+ -Andre James,Female,2211,1935-09-03,AB+ -Dr. Jessica Edwards,Female,2212,1953-07-14,O- -Ronald Sanchez,Female,2213,1971-06-15,AB- -Rebecca Hebert,Female,2214,1965-01-20,AB+ -Michael Anderson,Female,2215,2001-01-31,O- -David Middleton,Male,2216,1939-06-16,O+ -Lori Davis,Male,2217,1948-04-11,A- -Adam Johnson,Male,2218,1932-08-13,B- -Patrick Mcclure,Female,2219,1947-03-28,O- -Kaitlyn Kelly,Male,2220,1973-08-04,A+ -Robin Hamilton,Male,2221,1979-07-19,B+ -Susan Riddle,Male,2222,1971-11-04,A- -Jennifer Jones,Female,2223,1942-11-17,A+ -Christopher Smith,Female,2224,1947-12-21,A- -Vickie Thomas,Male,2225,2000-10-09,B- -Timothy Herring,Female,2226,1990-04-11,AB+ -Christina Phillips,Female,2227,1962-11-12,AB- -Martin Gilbert,Female,2228,1959-08-14,AB+ -Brian Wolf,Female,2229,2001-03-26,O- -Donald Gray,Male,2230,1960-08-02,B+ -Michael Shepherd,Male,2231,2002-03-17,AB+ -Manuel Gray,Male,2232,1964-06-13,B- -James Kelly,Female,2233,1963-05-29,B+ -Jessica Salinas,Female,2234,1978-09-04,O- -Helen Smith,Female,2235,1964-02-25,O+ -Michael Haas,Female,2236,1955-11-27,AB+ -Greg Holden,Male,2237,1987-10-25,AB+ -Angela Gomez,Female,2238,1985-01-10,AB- -Shane Griffin,Male,2239,1972-09-13,O- -Elizabeth Green DDS,Female,2240,1931-06-14,A+ -Brandy Clark,Female,2241,1982-12-16,AB+ -Kimberly Ford,Female,2242,1996-07-01,B- -Deborah Adams,Female,2243,1984-09-09,AB+ -Crystal Mckee,Female,2244,1993-09-26,AB- -Douglas Johnson,Male,2245,1964-12-13,O+ -Carolyn Simpson,Male,2246,1968-02-01,AB- -Emily Mccall,Male,2247,1961-08-27,AB+ -Lauren Benson,Female,2248,1955-01-01,B+ -Timothy Hill,Female,2249,1931-06-10,A+ -William Lawson,Female,2250,1992-08-04,A- -Erica Dougherty,Female,2251,1974-11-11,AB+ -Matthew Flores,Male,2252,1931-01-10,O- -Catherine Stevens,Female,2253,1963-05-25,AB+ -Destiny Bennett,Male,2254,1942-09-23,A+ -Janet Johnson,Male,2255,1936-06-23,O- -Cindy Dixon,Male,2256,1979-01-13,B- -Joshua Mclaughlin,Female,2257,1934-07-05,B+ -Christopher Nguyen,Male,2258,1930-01-14,O- -Elizabeth Wilson,Female,2259,1942-08-05,AB- -Ashley Mays,Male,2260,1936-03-28,O+ -Sarah Jackson,Male,2261,1969-02-21,AB- -Pamela Smith,Male,2262,1938-08-22,A- -Lydia Collins PhD,Male,2263,1952-10-13,O- -Cassandra Burgess,Male,2264,1940-06-11,B- -Lauren Lawrence,Female,2265,1965-12-08,AB+ -Richard Higgins,Male,2266,1938-10-22,B+ -Regina Chang,Male,2267,2002-11-15,O- -Sarah Fisher,Male,2268,1997-05-12,AB- -Martin Merritt,Female,2269,1935-10-15,O- -Emily Benson,Female,2270,2000-09-18,O- -Christina Green,Female,2271,1986-10-14,O- -Rachel Holden,Male,2272,1958-01-12,B- -Lauren Grant,Female,2273,1967-09-04,B+ -Susan Hurley,Male,2274,1990-01-13,A+ -Emily Rose,Male,2275,1987-05-01,A+ -David Butler,Female,2276,1964-06-19,O- -Lauren Beasley,Male,2277,1994-03-12,B- -Kathleen Knight,Male,2278,1939-03-29,B- -Susan Zuniga,Female,2279,1947-08-10,A- -Alexander Wood,Female,2280,1984-05-07,O- -Joseph Long,Male,2281,1983-04-18,AB- -Shannon Mcdonald,Female,2283,1962-10-10,AB- -Travis Bauer,Female,2284,1931-09-22,O+ -Sandy Nelson,Male,2285,1975-08-06,B+ -Amy Adams,Male,2286,1959-08-28,O- -Marie Green,Male,2287,2002-09-29,O+ -Danielle Santiago,Female,2288,1945-09-03,AB- -Juan Miller,Female,2289,1991-01-02,AB- -Laura Mills,Male,2290,1960-05-06,O- -Juan Peterson,Male,2291,1966-01-01,O+ -Crystal Burnett,Female,2292,1984-04-03,O+ -Donna Ortiz,Female,2293,1955-12-08,O- -Michael Spears,Male,2294,1947-03-09,B+ -Aaron White PhD,Male,2295,1972-10-22,A- -James Bush,Female,2296,1946-02-21,O+ -Colleen Mcdonald,Female,2297,1968-04-25,A- -Danielle Fowler,Female,2298,1994-05-04,AB+ -Kelli Parker,Male,2299,1993-01-30,B+ -Harry Pennington MD,Male,2300,1958-11-22,AB- -Jermaine Reyes,Male,2301,1976-06-07,A+ -Mr. Jacob Norton,Male,2302,1994-02-07,B+ -Malik Serrano,Female,2303,1946-09-13,A- -Patrick Madden,Female,2304,1956-01-04,A- -Leslie Allen,Female,2305,1983-08-07,A- -Kevin Benson,Female,2306,1938-09-14,B- -Jennifer Hinton PhD,Male,2307,1991-06-06,B+ -Angelica Barnes,Female,2308,1982-05-06,O+ -Bryce Kennedy,Female,2309,1946-09-30,O+ -Krista Grant,Female,2310,1972-08-11,B- -Joshua Ferguson,Male,2311,1939-10-09,O+ -Donna Kim,Male,2312,1956-12-17,B- -Connor Mathews,Male,2313,2001-08-11,A- -Jared Duncan,Male,2314,1968-09-13,O- -Jake Jensen,Female,2315,1980-11-21,B+ -Yesenia Yang,Female,2316,1978-08-31,AB+ -Kyle Melendez,Male,2317,1934-10-09,A- -Jamie Boyd,Female,2318,1980-02-17,AB+ -Robin Dillon,Male,2319,1931-09-12,AB- -Jennifer Kim,Female,2320,1978-05-07,A- -Patrick Cooper,Female,2321,1977-06-23,A+ -Derek Compton,Male,2322,1935-04-24,O+ -Shane George,Male,2323,1985-09-06,A+ -Elizabeth Brooks,Male,2324,1973-10-23,O- -Amy Allen,Female,2325,1932-08-26,AB+ -Jason Browning,Female,2327,1970-08-25,B+ -Jessica Schultz,Male,2328,2000-11-21,A- -Shannon Harris,Male,2329,2000-02-22,B+ -Lucas Potter,Male,2330,1930-10-09,O- -Jesse Marquez,Female,2331,1972-01-21,O- -Jessica Nelson,Male,2332,1947-02-23,O+ -Malik Murphy,Male,2333,1932-11-24,O- -Frances Bell,Male,2334,1986-08-12,A- -Travis Oneal,Female,2335,1959-05-13,A- -Michael Williamson,Female,2336,1944-03-06,B+ -Nicholas Greene,Male,2337,1949-02-10,B+ -Rebecca Brock,Female,2338,1955-03-11,AB+ -Jamie Schneider,Male,2339,1933-05-14,A- -Katherine Lam,Male,2340,2000-02-14,A+ -Andrew Vega,Female,2341,1987-05-31,AB+ -Heidi Gonzalez,Female,2342,1953-03-08,O+ -Daniel Harris,Female,2343,1982-05-12,AB+ -John Liu,Female,2344,1936-04-08,B- -Brianna Rose,Male,2345,1933-05-24,B+ -Melissa Valdez,Female,2346,1944-09-14,A+ -Kayla Benson,Female,2347,1974-04-10,B+ -Chad Howell,Female,2348,1930-05-06,B- -Miranda Harris,Female,2349,1964-03-27,B- -Jeff Thompson,Female,2350,1995-04-27,AB- -Caitlin Mann,Female,2351,2000-08-05,A- -Jesse Stephens,Male,2352,1972-02-28,O+ -Dennis Fitzgerald,Male,2353,1989-06-26,O- -Courtney Washington,Female,2354,1994-12-26,B- -Jill Griffin,Female,2355,1948-03-05,AB+ -Rachel Gill,Female,2356,1947-12-28,O- -Todd Arellano,Male,2357,1938-11-24,AB+ -Kenneth White,Female,2358,1954-12-11,B+ -Robert Whitaker,Male,2359,1950-10-18,AB+ -Justin Willis,Female,2360,1967-04-02,O- -Dawn Russell,Male,2361,1963-03-04,O- -Charlene Green,Male,2362,1947-03-27,A- -Mary Bell,Female,2363,1992-09-23,AB+ -Judy Sanders,Female,2364,1945-10-06,O+ -Andre Bernard,Male,2365,1964-06-26,A- -Kathleen Butler,Male,2366,1935-05-24,A+ -Luke Oliver,Male,2367,1960-01-29,AB- -Tara Rodriguez,Male,2368,1977-04-19,A+ -Kelly Fields,Male,2369,1942-03-29,O+ -Hannah Clark,Female,2370,1994-07-03,A- -Timothy Thompson,Male,2371,1957-12-30,AB- -Kelsey Simpson,Female,2372,1956-03-01,A- -Jody Singleton,Female,2373,1997-08-21,O- -Shawn Munoz,Male,2374,1955-03-17,AB- -Heidi Mendoza,Male,2375,1957-05-10,B+ -Priscilla Tate,Male,2376,1993-07-05,AB+ -Richard Acosta,Male,2377,1950-08-03,A+ -Brandon Sherman,Female,2378,1967-06-05,AB- -Robin Saunders,Female,2379,1942-08-18,AB+ -Chad Garcia,Female,2380,2001-06-11,A- -Michael Carter,Male,2381,1963-11-17,O+ -Susan Williams,Female,2382,1978-02-20,AB- -Nicole Sellers,Female,2383,1972-07-31,AB+ -Joshua Berry,Female,2384,1970-02-06,A- -Sylvia Mann,Female,2385,1944-05-05,A- -James Mendez,Male,2386,1972-08-25,A- -Terri Hernandez,Male,2387,1991-07-13,O+ -Travis Dixon,Male,2388,1991-12-28,O- -Philip Gallagher,Female,2389,1972-06-13,O+ -Katherine Martinez,Female,2390,1995-12-15,O+ -Ariel Miller,Male,2391,1940-03-08,B+ -Gerald Thomas,Female,2392,1930-10-30,A+ -Terry Wright,Female,2393,1963-04-02,A- -Kimberly Salazar,Female,2394,1977-07-23,AB+ -Melissa Sexton,Female,2395,1957-07-13,AB- -Mr. Matthew Myers,Male,2396,1942-02-27,A+ -James Martin,Male,2397,1988-04-19,A- -Kelly Alvarez,Male,2398,1938-05-31,B- -Samuel Vazquez,Male,2399,1967-03-26,O+ -Derek Brown,Male,2400,1969-02-12,B- -Andrea Jones MD,Male,2401,1968-03-27,A- -Bethany Griffin,Male,2402,1983-05-31,A+ -Christine Rogers,Female,2403,1956-01-24,AB+ -Russell Fisher,Female,2404,1966-08-20,A+ -James Foster,Male,2405,1962-06-27,B+ -Omar Smith,Male,2406,1952-03-31,AB+ -Adam Callahan,Female,2407,1939-01-05,AB+ -Ryan Lee,Male,2408,1941-01-16,A- -Alicia Martin,Male,2409,1943-12-24,O- -Erin Carroll,Female,2410,1976-10-13,A- -Nicole Newton,Female,2411,1952-04-08,O+ -Andre Le,Female,2412,1976-06-06,A+ -Kerry Clark,Male,2413,1945-08-14,AB+ -Regina Dorsey,Female,2414,1951-06-28,A- -Justin Oliver,Female,2415,1989-02-12,A- -Jason Mccall,Female,2416,1965-07-11,A+ -James Patton,Female,2417,1948-12-16,A+ -Lisa Washington,Female,2418,1985-05-04,B+ -Brianna Clark,Female,2419,1983-09-14,AB+ -Rebecca Newman,Male,2420,1931-05-04,AB- -Jennifer Davidson,Male,2421,1949-06-24,B+ -Megan Miller,Male,2422,2000-12-22,B- -Antonio Clark,Male,2423,1973-02-04,O+ -Abigail Young,Male,2424,1938-09-09,O+ -Tyler Fernandez,Male,2425,1934-07-26,AB- -Douglas Navarro,Female,2426,2001-10-08,O- -Lee Ward,Female,2427,1941-04-07,B+ -Michael Fuller DDS,Female,2428,1939-09-24,AB- -Bailey Flores,Female,2429,1951-04-02,O- -Jennifer Carrillo,Male,2430,1932-09-27,O- -Kenneth Fitzgerald,Female,2431,1972-10-25,AB- -Susan Ward,Female,2432,1999-08-13,O+ -Danielle Barker,Female,2433,1978-08-29,B- -Christopher Carson,Male,2434,1944-12-03,O+ -Joel Scott MD,Female,2435,1940-03-01,A- -Patty Barnett,Male,2436,1933-09-29,O+ -Carla Grimes,Male,2437,1952-06-03,O+ -Carla Mcdonald,Male,2438,1954-09-05,B+ -Michael Wallace,Female,2439,1976-02-07,AB- -Courtney Fields,Male,2440,2001-09-25,AB- -Nicole Mcdonald,Female,2441,1982-06-13,A- -Patrick Lyons,Male,2442,1940-03-15,A- -Kylie Harris,Female,2443,1994-08-29,B+ -Derrick Lynch,Female,2444,1943-02-28,AB- -Jeffery Levine,Female,2445,1935-12-31,O+ -Kristen Freeman,Female,2446,1954-12-09,B- -Cory Sanchez,Male,2447,1963-05-06,O- -Michelle Colon,Female,2448,1937-11-15,A+ -Anthony Macdonald,Male,2449,1945-04-24,O- -Michael Kelly,Female,2450,1978-10-20,A- -Candice Marshall,Female,2451,1964-06-23,A- -Pamela Brooks,Female,2452,1954-06-11,O- -Tammy Cantu,Male,2453,1991-06-13,A+ -Thomas Cherry,Male,2454,1969-07-12,O+ -Joseph Bryant,Male,2455,1961-07-27,B- -Marissa Webb,Male,2456,1949-03-12,B- -Robert Maynard,Female,2457,1960-09-07,O- -Brittney Holmes MD,Male,2458,1994-05-06,A+ -Kristen Moore,Female,2459,1999-12-02,B+ -Julie Perry,Male,2460,1938-03-09,A- -Mark Hall,Female,2461,1962-12-19,AB+ -Angela Gray,Female,2462,1955-03-29,O+ -Nicole Jordan,Female,2463,1991-11-29,B+ -Angela Fernandez,Female,2464,1947-09-20,O- -Brittney Reed,Female,2465,1937-11-03,B- -Christopher Taylor,Male,2466,1959-04-12,A- -Anthony Dorsey,Female,2467,2002-08-14,B+ -Dominique Arias,Female,2468,1933-03-23,B+ -Eric Gallagher,Female,2469,1943-01-13,AB- -Felicia Lewis,Female,2470,1930-01-12,AB- -Mark Griffin,Female,2471,1989-03-28,A+ -Lynn Smith,Female,2472,1974-10-10,A+ -Destiny Diaz,Female,2473,1986-11-26,O- -Frank Coleman,Male,2474,1961-08-22,B+ -Reginald Mcpherson,Female,2475,1961-08-29,AB+ -Andrew Flores,Male,2476,1968-06-21,B- -Matthew Watkins,Female,2477,1960-03-06,O- -Steve Campbell,Female,2478,1952-07-18,AB+ -Karen Bishop,Male,2479,1999-11-14,A- -Penny Parker,Female,2480,1989-10-07,A+ -Megan Morrison,Male,2481,1974-04-13,AB- -Dr. Matthew Lindsey,Female,2482,1966-01-30,O+ -Lauren Young,Male,2483,1947-12-28,B+ -Janice Figueroa,Male,2484,2000-01-14,A- -Dana Graves,Male,2485,1997-05-05,AB- -Joshua Mckay,Female,2486,1931-02-11,B- -Susan Coleman,Female,2487,1955-03-17,B- -Jeremy Randall,Female,2488,1942-02-18,AB- -Brian Boyd,Male,2489,2002-04-27,A- -Joyce Johnson,Female,2490,1989-03-19,AB- -Tammy West,Female,2491,1947-11-30,AB+ -Sheryl Wright,Female,2492,1993-11-06,O- -Patrick Roberts,Female,2493,1954-05-21,A+ -Tanya Zimmerman,Male,2494,1941-05-09,AB+ -Brittany Matthews,Male,2495,1962-12-25,O+ -Nina Washington,Male,2496,1964-07-12,AB- -Kristen Gonzales,Female,2497,1965-10-20,O+ -Felicia Benjamin,Male,2498,1975-03-30,O+ -Douglas Miller,Male,2499,1943-05-15,AB+ -Elizabeth Salinas DVM,Male,2500,1968-08-22,A+ -Joshua Davis,Male,2501,1967-05-12,A- -Emma Townsend,Female,2502,1946-06-18,B- -Sara Barton,Male,2503,1977-06-30,O- -Lisa Jones,Male,2504,1949-07-31,B+ -Dana Johnson,Female,2505,1998-04-22,B- -Kevin Bryan,Male,2506,1939-11-20,A+ -Sarah Mason,Male,2507,1957-01-23,B+ -Laura Garcia,Female,2508,1948-11-16,B- -Miss Denise Webster DVM,Male,2509,1966-11-15,AB- -Laurie Craig,Male,2510,1994-11-16,AB- -Cynthia West,Male,2511,1975-02-23,AB+ -Natasha Phelps,Female,2512,1990-01-09,O+ -Ronald Wright,Female,2513,1957-01-12,B+ -Kathleen Richard,Male,2514,1963-08-25,A+ -Jamie Newton,Male,2515,1963-06-05,A+ -William Murphy,Female,2516,1959-08-25,B- -Miguel Lewis,Male,2517,1993-06-10,AB+ -Adam Hall,Female,2518,1935-11-08,B- -William Arellano,Female,2519,1987-01-11,B- -Andrea Gould,Male,2520,1984-07-10,A+ -Suzanne Delgado,Female,2521,1933-07-10,B- -Lisa Lucas,Female,2522,1973-01-05,O+ -Angela Riley,Male,2523,1961-02-18,B- -Lisa Baker,Male,2524,1973-08-28,B+ -Justin Davidson,Female,2525,1949-04-23,O+ -Mary Wilson,Female,2526,1940-01-03,A+ -Luke Vargas,Male,2527,1994-04-21,AB+ -Amanda Taylor,Male,2528,1981-04-26,AB- -Allison Rodriguez,Male,2529,1972-09-17,B+ -Nicole Choi,Female,2530,1997-01-18,O+ -Elizabeth Patrick,Male,2531,1953-08-24,AB+ -Phyllis Waters,Male,2532,1947-08-21,AB+ -Brandon Bell,Male,2533,1988-09-04,O+ -William Sherman,Female,2534,1997-05-20,A+ -Sarah Roth,Male,2535,1989-02-07,O- -Taylor Smith,Male,2536,1956-06-20,AB+ -Adriana Ochoa,Male,2537,1963-04-07,AB+ -Marisa Gray,Male,2539,1934-12-04,A+ -Andrea Poole,Male,2540,2002-05-04,A+ -Colin Lyons,Male,2541,1956-04-14,B- -Gary Brooks,Female,2542,1989-05-06,A+ -John Cooper,Female,2543,1945-01-17,AB+ -Heather Farmer,Female,2544,1957-02-08,O+ -Barbara Brown,Female,2545,1967-06-09,O- -Christopher Ortiz Jr.,Female,2546,1960-06-22,A- -Robert Jackson,Female,2547,1992-01-24,B- -Troy Morgan,Male,2548,1971-09-05,A- -Gary Bennett,Male,2549,1994-10-21,O+ -Kimberly Lee,Female,2550,1933-07-24,O- -Michael Rodriguez,Female,2551,1993-08-31,O- -Diane Williams,Male,2552,1955-11-01,O- -Kelli Salinas,Male,2553,1983-05-04,AB- -Evelyn Hines,Male,2554,1942-08-22,O+ -Judy Lucas,Female,2555,1974-11-19,B+ -Nancy Collins,Female,2556,1959-01-26,B- -Anthony Dawson,Male,2557,1945-10-01,B- -Kimberly Bryant,Male,2558,1956-12-22,O- -Michael Mueller,Male,2559,1947-03-28,O+ -Tammy Stephens,Male,2560,1988-01-16,AB- -Christopher Collins,Male,2561,1977-10-17,O- -Monique Foster,Male,2562,1938-10-31,A+ -Jennifer Everett,Female,2563,1933-08-09,B+ -Jessica Carter,Female,2564,1990-06-18,A- -Hannah Myers,Female,2565,1963-10-12,B- -Courtney Turner,Female,2566,1948-08-21,A- -Sophia Jones,Female,2567,1993-02-17,AB+ -John Stone,Female,2568,1940-02-01,O- -Leah Richardson,Male,2569,1949-10-15,A+ -Jennifer Cooper,Female,2570,1938-12-18,B- -Mr. Jeffrey Ellis,Male,2571,1994-01-09,A- -Noah Gillespie,Female,2572,1930-05-26,B+ -Michael Gregory,Male,2573,1943-09-20,AB- -Robert Riggs,Male,2574,1973-11-26,O+ -Edwin Harris,Male,2575,1938-04-29,B- -Jennifer Johnson,Male,2576,1956-06-07,B+ -Catherine Foster,Female,2577,2001-08-16,A- -Michelle Wiley,Male,2578,1976-03-06,O+ -Victoria Cobb,Male,2579,1983-07-25,A- -Rebecca Diaz,Male,2580,1978-04-12,O+ -Theresa Lambert,Female,2581,1976-08-01,AB- -Jake Martin,Male,2582,1971-01-22,AB- -James Perez,Female,2583,1974-09-23,O- -Edward Mcpherson,Female,2584,1954-03-29,O- -Sally Williams,Male,2585,1962-01-08,B- -Nathan Bailey DDS,Female,2586,1937-10-23,AB- -Rhonda Hernandez,Female,2587,1973-11-05,A+ -Joseph Pratt,Male,2588,1932-09-14,A- -Michelle Smith,Male,2589,1950-11-14,A- -Jade Sanchez,Male,2590,1994-12-02,A- -Kristin Newman,Male,2591,2001-07-09,B- -James Buck,Female,2592,1999-01-24,A- -Ryan Jacobs,Male,2593,1955-01-30,AB+ -Kyle Wolf,Female,2594,1977-11-14,O+ -Lisa Moore,Male,2595,1948-03-19,A- -Cynthia Howell,Female,2596,1998-06-29,B+ -Laura Lawson,Female,2597,1950-04-27,O+ -Jared Williams,Male,2598,1988-08-04,O- -Elizabeth Evans,Female,2599,1932-02-09,A- -Andrew Jarvis,Male,2601,1978-07-15,B+ -Vicki Jacobs,Female,2602,1968-08-23,A+ -Jacqueline Stevens,Female,2604,1941-12-07,B+ -Andrea Wood,Male,2605,2001-08-09,AB- -Megan Stephens,Female,2606,1993-06-03,AB- -Trevor Hurley,Male,2607,1992-12-07,O- -Brian Schwartz,Male,2608,1961-08-09,AB+ -Douglas Smith,Male,2609,1981-04-16,B- -Meredith Hall,Female,2610,1945-08-09,B- -Ryan Howard,Female,2611,1978-04-04,A+ -Susan Carrillo,Female,2612,1933-01-30,O- -Steven Jimenez,Male,2613,1959-07-21,O- -Miranda Frey,Female,2614,2000-07-18,AB+ -Jessica Walter,Male,2615,1948-07-09,A- -Toni Turner,Female,2616,1988-10-28,B- -Lauren Hines,Female,2617,1963-09-28,A- -Margaret Hayes,Male,2618,1965-09-05,O- -Miss Lisa Lopez,Female,2619,1968-06-22,A- -Mary Adams,Male,2620,1964-08-10,AB- -Pamela Santiago,Male,2621,1951-06-23,A+ -Margaret Jones MD,Male,2622,1968-11-27,B- -Mary Case,Male,2623,1975-01-21,AB+ -Ashley Howard,Female,2624,1989-11-03,A+ -William Norton,Female,2625,1957-09-02,O+ -John Parks,Male,2626,1944-03-17,AB- -Dawn Bradley,Female,2627,1936-10-08,AB+ -Mary Floyd,Male,2628,1976-10-17,B+ -Justin Robertson,Male,2629,1979-10-19,A+ -Leah Perez,Female,2630,1948-05-10,O- -Alan King,Male,2631,1940-03-02,O+ -Carla Cooper,Male,2632,1943-10-31,AB+ -Sarah Gibbs,Female,2633,1959-06-14,O- -Jonathan Stevens,Female,2635,1936-10-11,AB- -Carol Rodriguez,Male,2636,1939-11-20,B+ -Eric Mendez,Female,2637,1941-08-26,O+ -Sarah Price,Female,2638,1969-08-28,B- -Dylan Brown,Female,2639,1995-02-10,B+ -Vanessa Mcdowell,Male,2640,1934-10-02,O- -Andrew Wood,Female,2641,2001-08-17,A+ -Mary Rojas,Female,2642,1952-08-11,A- -Martha Ford,Male,2643,1951-11-06,AB+ -Ian Lewis,Female,2644,1936-08-25,O+ -Mark Wright,Female,2645,1963-10-20,O- -Melissa Lozano,Male,2646,1950-05-02,B- -Travis Kelly DVM,Male,2647,1953-05-13,A- -Jacob Hudson,Female,2648,1944-05-16,AB+ -Michael Hopkins,Female,2649,1989-05-06,AB+ -Angela Jordan,Female,2650,1982-07-28,O- -Hannah Walker,Female,2651,2000-08-29,B- -Brenda Reyes,Female,2652,1985-06-19,AB- -Stephen Lopez,Female,2653,1956-07-09,A- -Christina Mcconnell,Male,2654,1968-08-18,AB- -Bryan Smith,Female,2655,1986-05-22,O+ -Michael Hunt,Female,2656,1931-10-24,O- -Jeffrey Jones,Male,2657,1963-01-23,A- -Kevin Smith,Male,2658,1970-06-28,O+ -Rachel Evans,Female,2659,1957-07-18,B+ -Justin Swanson,Male,2660,1973-05-11,AB- -Tracy Gentry,Male,2661,1958-10-27,B+ -Daniel Miller,Female,2662,1939-03-29,B+ -Katie Perez,Female,2663,2000-01-26,A- -Meghan Lee,Male,2664,1930-07-27,AB+ -Charles Holt,Male,2665,1937-04-19,O+ -Richard Walker,Female,2666,1981-09-07,B+ -Jennifer Carroll,Male,2667,1993-07-06,B- -Lance Haynes,Male,2668,1931-09-25,A+ -Brandi Jones,Female,2669,1938-06-11,AB- -Brandi Henson,Female,2670,1967-07-17,AB- -Kelly Howell,Male,2671,1957-09-19,B- -Ian Jackson,Male,2672,1985-01-15,A- -Rachel May,Male,2673,1949-07-03,A- -Tina Combs,Male,2674,1959-06-12,A- -Michael Powell,Male,2675,1934-08-07,O+ -Matthew Hall,Male,2676,1973-07-15,O- -Edward Smith,Male,2677,1930-08-25,B+ -Lori Hill,Male,2678,1950-05-22,AB+ -Elizabeth Robinson,Male,2679,1942-03-02,A+ -Mary Scott,Female,2680,1993-05-24,O- -Paul Salazar,Female,2681,1972-05-03,O- -Phillip Rivera,Female,2682,2001-07-03,B- -Sabrina Williams,Female,2683,1991-07-23,O+ -Todd Phillips,Female,2684,1953-06-04,AB- -Jennifer Graham,Female,2685,1981-05-05,AB- -Sergio Wilson,Male,2686,1975-08-22,B- -Michelle Webb,Male,2687,1930-05-29,O+ -Rachel Mcmillan,Male,2688,1966-09-04,B- -Corey Mcguire,Female,2689,1985-11-29,AB- -Tracy Sanford,Male,2690,1992-10-15,O- -Timothy Rose,Male,2691,1994-05-10,AB+ -James Delacruz,Female,2692,2002-02-14,B+ -Steven Petersen,Male,2693,1943-05-28,A- -Laura Valdez,Male,2694,1989-04-25,O+ -Kimberly Boone,Female,2695,1977-08-18,B+ -Robin Bishop,Female,2696,1960-03-07,A+ -Haley Baker,Female,2697,1959-04-18,A+ -Antonio Mitchell,Male,2698,1956-08-07,O- -Elizabeth Mercado,Female,2699,1982-06-26,B- -Troy Parker,Female,2700,1985-01-21,B- -Nancy Smith DDS,Male,2701,1974-04-03,AB- -Taylor Moore,Male,2702,1987-05-22,O- -Robert Webb,Male,2703,1945-10-31,AB- -James Moses,Male,2704,1991-12-28,AB- -David Estes,Male,2705,2001-09-02,A+ -Glenn Weber,Male,2706,1981-06-14,AB- -Julie Velasquez,Male,2707,1975-10-16,B+ -Andrew Smith,Male,2708,1937-09-18,A- -Angela Carey,Female,2709,1971-05-02,AB- -Kristi King DVM,Male,2710,1981-09-10,A+ -Isabella Rose,Female,2711,1991-03-08,A- -Deborah Goodman,Male,2712,1944-07-05,B- -Thomas Decker,Female,2713,1957-02-25,O+ -Nicole Garcia,Male,2714,1995-08-06,AB+ -Travis Hamilton,Male,2715,1979-06-26,AB- -Austin Benjamin,Female,2716,1938-12-12,B+ -Cory Heath,Female,2717,1942-01-24,A- -Javier Gray,Male,2718,1998-01-01,O+ -Andrea Neal,Male,2719,1978-10-22,A+ -Stacy Farmer,Male,2720,1998-05-25,O+ -Tracy Davidson,Female,2721,1958-06-05,AB+ -Jenny Harris,Male,2722,1942-02-24,B+ -Patricia Brown,Male,2723,1944-11-18,O+ -Brandon Delgado,Male,2724,1997-12-14,B+ -Ashley Solis,Male,2725,1941-03-31,A- -Rebecca Anderson,Male,2726,1931-07-15,O+ -Dr. Stacy Gibson PhD,Male,2727,1963-10-04,B+ -William Austin,Male,2728,1998-11-29,O+ -Damon Brady,Male,2729,1990-01-18,O+ -Bethany Hicks,Female,2730,1935-01-01,O- -Daniel Obrien,Female,2731,1961-04-09,AB- -Angela Stephens,Male,2732,1963-08-01,A+ -Martha Singleton,Female,2733,1950-11-21,AB+ -Nancy Garcia,Female,2734,1952-10-17,A+ -Carly Johnson,Male,2735,1983-06-14,O- -Shannon Wood,Male,2736,1951-01-24,O- -Zachary Luna,Female,2737,1952-08-17,A- -Richard Fields,Female,2738,1964-09-25,O- -Katherine Smith,Female,2739,1967-07-22,AB- -Cole George,Female,2740,1996-04-30,O- -Nancy Velasquez,Male,2741,1948-05-27,O+ -Dana Moody,Female,2742,1994-01-11,A+ -Melinda Curtis,Female,2743,1986-06-05,B- -Tabitha Jenkins,Male,2744,1983-01-05,AB+ -Jacqueline Mejia,Male,2745,1950-03-10,O- -Susan Dunlap,Female,2746,1946-03-05,A+ -Lisa Beck,Female,2747,1991-07-21,A- -Billy Ross,Female,2748,1974-02-26,O- -Belinda Combs,Female,2749,1945-06-27,AB- -Connor Chen,Female,2750,2002-09-21,O- -Bradley Fisher,Male,2751,1954-08-07,O- -Sara Berry,Female,2752,1986-07-09,B+ -Lisa Thompson,Female,2753,1952-09-08,B+ -David Myers,Male,2754,1946-02-27,O- -Mary Daniels,Male,2755,2000-05-22,A- -Kimberly Matthews,Female,2756,1943-06-19,B+ -Robert Navarro,Female,2757,1953-01-29,O- -Danielle Schultz,Female,2758,1970-04-17,AB+ -Kevin Harris,Female,2760,1973-03-31,A+ -Steven Moody,Female,2761,1960-06-30,B+ -Robert Dillon,Male,2762,1936-12-05,B+ -Rhonda Sherman,Female,2763,1980-03-23,AB- -Cynthia Wagner,Female,2764,1994-02-23,O- -Tammy Marshall,Male,2765,1977-09-23,O- -Benjamin Anderson,Male,2766,1945-10-21,O- -Colleen Boyd,Male,2767,1972-05-16,O- -Stephanie Sellers,Female,2768,1981-10-13,B+ -Frank Conner,Male,2769,1973-02-15,O+ -Vanessa Little,Female,2770,1938-02-12,O+ -Daniel Rice,Male,2771,1949-07-17,B- -Jordan Smith,Male,2772,1977-06-30,O- -Maria Mccarthy,Female,2773,1976-04-29,B- -Edwin Bailey,Female,2774,1968-01-13,AB+ -Michael Miranda,Male,2775,1950-02-05,B- -Danielle Smith,Female,2776,1994-07-07,A+ -Lori Brown,Female,2777,1951-10-25,O+ -Ashley Clark,Female,2778,1963-12-29,O+ -Kenneth Little,Female,2779,1962-07-03,O- -Barbara Ibarra,Female,2780,1962-08-17,B+ -Rebecca Collins,Male,2781,1953-11-30,O- -Tammy King,Female,2782,1932-04-25,AB+ -Brian Acosta,Female,2783,1990-09-04,AB- -Alexandra Davidson,Female,2784,1983-03-04,AB+ -Robert Williams,Female,2785,1991-02-21,A+ -Nathan Cain,Female,2786,1936-10-30,O- -Brittany Snyder,Female,2787,1964-09-16,O- -Alyssa Levine,Male,2788,1982-04-21,AB+ -Zachary Turner,Female,2789,1980-01-07,AB+ -Robert Ali,Female,2790,1963-10-05,AB+ -Dana Zavala DDS,Male,2791,1986-10-07,O+ -Jeremiah Lawrence,Female,2792,1944-03-07,B- -Veronica Morris,Male,2793,1948-02-06,B- -Luis Aguilar,Male,2794,1947-08-10,O- -Kimberly Obrien,Male,2795,1949-08-03,O+ -Tamara Gomez,Female,2796,1967-11-11,AB+ -Jessica Martinez,Female,2797,1957-10-11,O- -Lisa Ferguson,Female,2798,1947-10-07,O+ -Elizabeth Bryant,Female,2799,1987-10-30,A+ -Todd Hernandez,Female,2800,1992-09-21,AB- -Eric Owens,Male,2801,1940-07-17,O+ -Jeffrey Downs,Female,2802,1976-09-29,A- -Frank Bird,Male,2803,1967-02-20,O- -Sheri Gray,Female,2804,2002-08-17,B+ -Jennifer Gilmore,Male,2805,1989-01-10,B- -Daniel Wilkins,Female,2806,1998-07-15,A- -Jennifer Jackson,Female,2807,1943-11-27,AB+ -Thomas Kelly,Male,2808,1963-04-26,AB- -Jason Ortiz,Male,2809,1944-12-01,B+ -Amy Taylor DDS,Female,2810,1978-02-01,A+ -Paula Anderson,Female,2811,1954-11-05,B+ -Andrea Taylor,Male,2812,1947-07-17,AB- -Caleb Flores,Female,2813,1998-05-19,B+ -Richard Kelly,Female,2815,1993-10-08,AB- -Eric Williams,Female,2817,1954-02-04,O+ -Shannon Martinez,Female,2818,1968-07-23,O- -Sandra Jones,Male,2819,1934-06-27,B+ -Mrs. Tracie Solis,Female,2821,1990-05-21,B+ -Ashley Elliott,Female,2822,1993-10-29,O- -Stephen Preston,Female,2823,1958-04-24,AB- -Jodi Pope,Female,2824,1933-10-14,AB+ -Carlos Bush,Female,2825,1933-11-04,O- -Anita Oconnor,Male,2826,1954-09-03,AB- -Tammy Elliott,Female,2827,1939-01-06,O- -Beverly Hansen,Female,2828,1954-09-03,AB+ -Nancy Harper,Female,2829,1931-02-24,A+ -John Hayes,Male,2830,1963-12-25,A- -Nicole Miller,Male,2831,1942-05-15,AB- -Lindsay Dominguez,Female,2832,1983-11-25,B- -Loretta Long,Male,2833,1996-05-15,B- -Charles Fields,Female,2834,1972-03-23,AB- -Kelly Hill,Male,2835,1956-07-23,O+ -Amy James,Male,2836,1996-05-28,A+ -Kenneth Brown,Female,2837,1945-08-03,O+ -Samantha Murphy,Male,2838,1932-02-07,A- -Kelli Harris,Male,2839,1980-06-15,B- -Alexander Howard PhD,Male,2840,1970-07-28,AB+ -Angela Mcgee,Female,2841,1934-03-30,AB- -Megan Gallegos,Female,2842,1957-04-05,A- -Brent Rodriguez,Male,2843,1946-10-24,B+ -Diana Sanchez,Male,2844,1959-09-03,B+ -Lawrence Collins,Female,2845,1940-03-05,O- -Jay Smith,Female,2846,1942-04-09,B- -Emily Bright,Female,2847,1996-06-25,A+ -Luke Baker DDS,Male,2848,1947-12-06,B- -Jerry Ochoa,Male,2849,1981-02-19,A+ -Lisa Raymond,Female,2850,1943-03-31,A+ -Angela Smith,Male,2851,1951-03-30,AB- -Dana Rhodes,Male,2852,1959-11-05,A+ -Jeremy Jones DDS,Male,2853,1993-06-16,O+ -John Lewis,Male,2854,1995-10-09,B+ -John Smith,Female,2855,1951-11-20,A- -Elizabeth Reilly,Male,2856,1991-04-22,AB+ -Lisa Mann,Female,2857,1945-03-05,B- -Sylvia Grimes,Male,2858,1999-10-02,AB+ -Elizabeth Martin,Female,2859,1992-04-05,A- -Brian Rodriguez,Female,2860,2002-10-15,O- -Richard Hammond,Male,2861,1997-12-12,A- -Michael Thomas,Female,2862,1970-08-07,B- -Rebecca Sexton,Female,2863,1995-01-24,B+ -Danielle Shannon,Female,2864,1973-12-13,AB+ -Jon Schultz,Male,2865,1936-07-13,AB+ -Lauren Morales,Female,2866,1969-03-05,AB- -Randall Baker,Female,2867,1986-07-18,AB- -Gerald Rodriguez,Female,2868,1931-11-03,A- -Laurie Lamb,Female,2869,1930-06-13,A- -Amanda Williams,Female,2870,1953-09-13,O- -Jeffery Johnson,Female,2871,1960-10-04,A+ -Daniel Decker,Male,2872,1987-06-07,B- -Molly Mitchell,Female,2873,1943-02-17,AB- -Robert Conley,Male,2874,1959-02-12,B- -Megan Rogers,Male,2875,1943-02-20,O- -Adam Cooper,Female,2876,1991-05-21,AB- -Crystal Lang,Female,2877,1981-04-22,AB- -Charles Fowler,Male,2878,1990-12-23,A+ -Jonathan Lynch,Female,2879,1996-08-27,B- -Jessica Sanchez,Male,2880,1959-06-07,B+ -Valerie Simpson,Female,2881,1945-12-15,B- -Ricky Mccarthy,Female,2883,1998-10-12,B- -Greg Kane,Female,2884,1942-12-03,A+ -Linda Curtis,Female,2885,1931-08-17,AB- -Jay Walker,Male,2886,1988-02-09,O- -Timothy Gillespie,Female,2887,1950-03-31,B- -Danielle Williams,Male,2888,1968-06-26,AB+ -Dalton Brooks,Female,2889,2001-04-13,B+ -Barbara Sanders,Male,2890,1984-06-03,B+ -Wayne Wallace,Female,2891,1991-09-26,A+ -Matthew Ramirez Jr.,Female,2892,1959-02-14,O+ -Victoria Moore,Female,2893,1982-03-05,O- -Jessica Archer,Female,2894,1986-05-11,AB+ -Benjamin Martin,Female,2895,1930-01-17,B- -Jennifer Obrien,Female,2896,1938-09-27,O+ -Thomas Griffith,Male,2897,1931-01-28,O- -Kathleen Roman,Female,2898,1998-06-13,A+ -Christina Carlson,Female,2899,1947-03-05,O+ -Leah Scott,Female,2900,1976-06-03,AB- -Nicole Edwards,Female,2901,1939-12-11,A- -Jennifer Thompson,Female,2902,1946-11-25,O+ -Kristie Hall,Male,2903,1955-07-01,A- -Louis Coleman,Female,2904,1994-07-05,B+ -Sharon Baker,Female,2905,1997-12-12,AB+ -Cassidy Cooper,Male,2906,1985-07-12,O- -Shawn Cline,Male,2907,1997-02-05,AB+ -Laura Mckinney,Female,2908,1981-02-05,AB+ -Javier Sanford,Female,2909,1999-06-12,B- -Daniel Stevens,Male,2910,1995-04-05,A+ -Ryan Smith,Female,2911,1954-05-21,O+ -Kimberly Allen,Male,2912,1976-12-24,O- -Richard Porter,Female,2913,1993-08-31,B+ -Brian Rodgers,Male,2914,1981-01-04,AB- -Julia Powell,Male,2915,1994-04-07,A+ -Yolanda Ramirez,Female,2916,1975-01-27,A+ -Diane Williams,Female,2917,1952-02-15,O- -Bryan Wilkinson,Male,2918,1949-06-09,A+ -Adam Thompson,Female,2919,1985-08-10,B- -Todd Murphy,Male,2920,1999-08-18,A+ -Thomas Perez DDS,Male,2921,1994-12-15,B+ -Jessica Chavez,Female,2922,1970-11-03,B+ -Angela Howard,Female,2923,1949-05-24,B- -Emily Harris,Male,2924,1991-12-01,O+ -Brian Jenkins,Male,2925,1955-04-03,O+ -Michael Daniels,Male,2926,1943-07-12,AB+ -David Payne,Female,2927,1983-10-25,B+ -Brandon Fitzpatrick,Male,2928,1939-06-19,B- -Mr. Richard Johnson,Male,2929,1951-04-29,AB- -Ashley Miller,Male,2930,1998-05-27,O+ -Denise Williams,Female,2931,1995-10-21,A+ -Douglas Hill,Male,2932,1937-06-04,O- -Patricia Chan,Male,2933,1960-11-19,O- -Scott Morrison,Male,2934,1979-06-05,A- -Maria Clark,Male,2935,1975-04-06,B+ -Jerome May,Female,2936,1992-06-08,B- -Richard Stone,Female,2937,1963-02-06,AB- -Patrick Wall,Female,2938,1957-10-08,AB+ -Dr. Terry Austin DDS,Male,2939,1975-11-10,A+ -Maria Smith,Female,2940,1972-09-04,B- -Nicole Rush,Female,2941,1957-01-05,A- -David Page,Female,2942,1942-05-29,O- -Matthew Nelson,Female,2943,1964-09-25,B- -Joshua Braun,Female,2944,1944-08-05,A+ -Michelle Hess,Female,2945,1945-02-01,AB- -Michael Drake,Female,2946,1998-10-29,B+ -Michele Mann,Male,2947,1954-07-18,AB- -Christina Moore,Male,2948,1947-10-12,O+ -Nicolas Shah,Male,2949,2002-11-12,A+ -Lori Garcia,Female,2950,1959-06-17,A- -David Zhang,Male,2951,1944-11-22,O+ -Brett Key,Male,2953,1969-08-17,O+ -Ashlee Larson,Female,2954,1956-09-26,O+ -James Carlson Jr.,Female,2956,1966-05-11,B- -Alejandro Perkins,Male,2957,1947-10-30,A- -Sherry Copeland,Female,2958,1961-06-10,O- -Robert Maldonado,Female,2959,1995-05-28,AB- -Miss Maria Bates DDS,Female,2960,1978-04-09,B+ -Marvin Underwood Jr.,Male,2961,1985-05-15,B- -Mary Ware,Male,2962,1998-04-09,O- -Seth Johnson,Male,2963,1936-07-04,AB- -Jessica Murray,Male,2964,1983-02-05,B+ -Kimberly Patel,Female,2965,1999-12-03,A- -Ricardo Roth,Male,2966,1962-05-17,B+ -John Valentine,Female,2967,1979-11-11,A- -Angel Grant,Female,2968,1949-02-09,A+ -Andrew Watson,Male,2969,2001-09-14,B+ -William Murray,Male,2970,1956-12-02,AB- -David Marquez,Female,2971,1964-03-27,AB- -Melanie Hendrix,Male,2972,1998-04-27,A- -Jordan Thomas,Male,2973,1986-08-04,AB- -Gregory Baker,Male,2974,1948-12-02,AB+ -Amy Soto,Male,2975,1998-04-19,A+ -Kevin Bryant,Male,2976,1968-07-29,B- -Sheila Martinez,Male,2977,1936-01-06,B+ -Mary Anderson,Female,2978,1985-02-12,B- -Jason Rivera,Female,2979,1999-01-26,O- -Stephanie Rodriguez,Male,2980,1946-05-15,B- -Sydney Moore,Female,2981,1990-03-18,O+ -Alexa Phelps,Male,2982,1976-12-18,AB- -Edwin Valenzuela,Male,2983,1932-02-20,B- -Victoria Mills,Male,2984,1957-02-16,O- -Carol Martin,Male,2985,1947-04-05,O- -Justin Gallagher,Female,2986,1970-03-18,O+ -Terri Lewis,Male,2988,1940-11-27,O- -Seth Woods,Female,2989,1956-01-08,A- -Jamie Coleman,Female,2990,1998-09-19,AB+ -Deborah Benson,Female,2991,1976-04-14,A- -Michael Martin,Male,2992,1965-10-14,AB- -Christopher Meyer,Male,2993,1999-11-06,AB- -Mathew Martin,Male,2994,1995-08-01,AB- -Maurice Garcia,Male,2995,1963-06-29,A+ -Stephen Ward,Male,2996,1990-09-11,B- -Brandy Walters,Male,2997,1942-07-20,AB+ -Lynn Dixon,Male,2998,1946-04-13,B- -Sherry Aguirre,Male,2999,1988-05-21,AB+ -Victor Fox,Female,3000,1992-01-07,B- -Mr. Randy Pierce,Male,3001,1974-11-03,O+ -Lori Robertson,Male,3002,1949-07-08,B+ -Brittany Reed,Female,3003,1962-07-21,A- -Travis Miller,Female,3004,1963-08-11,O- -Joshua Jackson,Female,3005,1936-09-27,O- -Nicholas Garrett,Male,3006,1969-02-16,A- -Bridget Velazquez,Male,3007,1968-06-06,O+ -Holly Pierce,Female,3008,1961-04-23,AB+ -Linda Robinson,Male,3009,1931-11-17,A- -Jennifer Houston,Female,3010,1980-10-09,A+ -Kelly Johnson,Female,3013,1994-02-09,AB+ -Toni Jackson,Female,3014,1963-07-25,O- -Seth Smith,Male,3015,2001-07-30,A+ -Michael Murray DDS,Female,3016,1989-06-25,B- -Alexander Woods,Male,3017,1973-10-12,A+ -Jeremy Hubbard,Female,3018,1974-12-18,AB+ -Pamela Ayers,Female,3019,1959-05-25,O+ -Caitlin Diaz,Female,3020,1943-05-08,B- -Paula Dean,Female,3021,1978-04-19,AB+ -Lori Parrish,Female,3022,1960-08-13,B- -Martin Jordan,Female,3023,1995-12-07,A+ -Brandy Brown,Female,3024,1936-01-06,O- -Jorge Wells,Female,3025,1949-08-14,AB+ -Mario Smith,Male,3026,1973-10-19,B+ -Zachary Marshall,Female,3027,1968-12-02,O+ -Todd Harris,Male,3028,1930-10-29,B+ -Michelle Nichols,Male,3029,1995-06-20,B+ -Sharon Jones,Male,3030,1992-04-30,A- -Cynthia Valencia,Female,3031,1976-08-17,A+ -John Davis,Male,3033,1969-11-23,AB+ -Mia Travis,Male,3034,1957-03-31,O+ -Mrs. Kimberly Hogan DDS,Male,3035,1998-12-03,AB+ -Rachel Schroeder,Male,3036,1999-02-05,A+ -Jackie Fuller,Male,3037,1986-09-18,AB+ -Mr. John Mcpherson,Male,3038,2001-01-12,B- -Tina Ibarra,Female,3039,1959-07-01,A+ -Caitlin Bartlett,Male,3040,1994-01-12,AB+ -Brandon Hudson,Female,3041,1974-03-11,A- -Keith Smith,Female,3042,1984-07-17,O- -Maureen Osborne,Male,3043,1965-10-01,AB+ -Jennifer Roberts,Male,3044,1964-03-23,B- -Wendy Sanchez,Male,3045,1987-05-04,O+ -Christopher Carpenter,Male,3046,1992-11-14,A- -Maria Anderson,Male,3047,1998-01-22,O+ -Isabella Fisher,Male,3048,1973-08-04,B+ -Andrea Lloyd,Female,3049,1962-07-02,A- -Crystal Ramos,Male,3050,2001-05-10,O+ -Nicole Mcfarland,Male,3051,1941-03-06,O- -Crystal Coleman,Female,3052,1967-07-24,B- -Susan Tate,Male,3053,1986-04-24,B+ -Mary Harper,Male,3054,1998-07-19,A+ -Heather Richmond,Male,3055,1958-10-18,O+ -Tamara Suarez,Male,3056,1940-04-12,A- -Edward Johnson,Female,3057,1934-09-21,B- -Jacqueline Cooper,Male,3058,1933-10-08,AB+ -Ms. Debra Ramirez,Male,3059,1953-11-02,O- -Tracey Moon,Female,3060,1954-05-09,B- -John Stark,Female,3061,1979-05-21,B- -Richard Erickson,Female,3062,1980-07-07,A+ -William Vance,Male,3063,1974-12-02,B- -William Butler,Male,3064,1981-08-05,A+ -Paul Spencer,Male,3065,1946-03-24,O- -Thomas Cabrera,Female,3066,1947-02-12,O- -Tyler Koch,Male,3067,1956-01-01,AB+ -John Manning,Male,3068,1994-10-31,A+ -Elizabeth Coleman,Male,3069,1939-01-14,A+ -Gloria Larson,Male,3070,1992-01-19,O+ -David Curry,Male,3071,1953-06-02,O+ -Shelby Gardner,Female,3072,1994-12-28,AB+ -Jessica Molina,Male,3073,1940-03-16,O- -Jeffrey Rodgers,Male,3074,1992-01-12,AB- -Rachel Gutierrez,Male,3075,1991-04-10,O+ -Kimberly Martin,Female,3076,2000-10-20,B- -Anthony Flores,Female,3077,1976-04-07,O- -Andrew Nunez,Female,3078,1976-02-01,AB- -Jessica Hubbard,Female,3079,1946-06-25,B+ -Sean Miller,Female,3080,1972-05-03,B- -Sarah Mcintosh,Male,3081,1989-06-27,A- -Jacqueline Meza,Male,3082,1957-07-05,A+ -Brandy Wilkins,Male,3083,1996-11-07,O- -Luke Lee,Female,3085,1962-03-08,A- -Bryan Newton,Female,3086,1936-11-25,AB+ -Michael Simmons,Female,3088,1938-06-09,A+ -Kaitlin Miller,Female,3089,1933-11-29,A+ -Dawn Mullins,Female,3090,1940-11-11,B- -Matthew Davidson,Female,3091,1947-08-25,A- -Christine Rocha,Male,3092,1969-11-18,A+ -Robert Clark,Female,3093,1968-06-12,O+ -Matthew Jones,Female,3094,1999-10-24,O- -Michele Moore,Male,3095,1961-01-07,O+ -Scott Day,Male,3096,1935-11-30,B- -Cody Thomas,Female,3097,1944-01-20,AB- -Cody Green DDS,Female,3098,1981-10-31,B+ -Kristen Smith,Male,3099,1983-01-06,B- -Timothy Perez,Male,3100,1970-11-20,O- -Carl Mccann,Female,3101,1958-09-04,A+ -Scott Cruz,Female,3102,1982-02-10,A- -Amanda Harrell,Male,3103,1998-02-22,A- -Jeffrey Wilkerson,Female,3104,1959-08-02,AB+ -Edward Vargas,Male,3105,1938-06-11,B- -Mr. Hayden Rubio,Male,3106,1977-09-12,O- -Jessica Estes DVM,Male,3107,1968-03-06,AB+ -Jenny Welch,Male,3108,1984-05-30,A+ -Lisa Lester,Female,3109,1950-10-27,AB- -Brandon Curtis,Female,3110,1995-07-07,B- -Dr. Robert Sherman MD,Female,3111,1972-02-09,AB- -Stephanie Bradshaw,Female,3112,1982-01-26,O- -Tracey Carroll,Male,3113,1940-11-27,AB- -Mr. Samuel Elliott,Male,3114,1934-11-14,AB- -Christopher Jones,Female,3115,1996-06-29,O- -Joshua Barrera,Male,3116,1943-12-29,O- -Mark Simpson,Male,3117,1989-01-24,B- -Lucas Buchanan,Male,3118,1963-02-04,AB- -Brianna Christensen,Female,3119,1995-01-22,AB+ -Julie Spencer DDS,Male,3120,1977-12-08,B+ -Nicole Hernandez,Male,3121,1976-10-07,O- -Rachel Myers,Male,3122,1935-12-20,A+ -Michael Barnett,Male,3123,1956-04-10,AB- -Margaret Dean,Female,3124,1944-05-18,O- -Samantha Knight,Female,3125,1955-04-15,AB+ -Sara Ford,Female,3126,1980-02-21,A- -Donna Davis,Male,3127,1970-09-19,B- -Nicole Shea,Male,3128,1932-10-10,AB- -Gary Robinson,Female,3129,1975-06-24,A- -Gina Davidson,Female,3130,1994-11-26,O- -Travis Clark,Female,3131,1935-01-03,O- -Julia Gonzalez,Female,3132,1951-08-28,A+ -Cassandra Short,Female,3133,1945-04-20,A+ -Troy Walker,Male,3134,1965-11-22,AB- -Sally Franklin,Male,3135,1935-07-17,A- -Jennifer Yu,Male,3136,1988-06-15,B+ -Samantha Bailey,Male,3137,1969-10-20,A- -Belinda Sanchez,Female,3138,2002-12-30,O- -Margaret Anderson,Female,3139,1946-02-17,B+ -Savannah Phillips,Female,3140,1932-12-16,AB- -Ashley Tran,Male,3141,1943-10-16,O- -Haley Cummings,Female,3142,1972-02-09,A+ -Jennifer Martinez DDS,Male,3143,1959-08-19,AB+ -Julia Johnson,Male,3144,1937-01-07,O+ -Linda Bean,Female,3145,1939-01-06,B+ -Jeffrey Bradford,Male,3146,1939-10-27,O+ -Ashley Novak,Female,3147,1974-01-17,O- -Lauren Myers,Female,3148,1974-01-30,A- -Jack Benton,Female,3149,1986-12-28,A+ -Gary Smith,Female,3150,1993-08-03,B- -Derrick Gonzalez,Male,3151,1948-03-10,B- -Erika Whitehead,Male,3152,1940-11-03,O+ -Jackson Williams,Female,3153,1960-02-18,AB+ -Michelle Powers,Female,3154,1959-07-03,O+ -Bailey Rich,Male,3155,1930-06-11,O- -Anthony Freeman,Female,3156,1973-11-20,AB+ -Joseph Collins,Male,3157,1976-06-25,B- -Lee Murray,Male,3158,1968-12-13,A- -Kimberly Romero,Female,3159,1960-07-16,A+ -Zachary Mccormick,Male,3160,1963-01-28,B+ -Thomas Peck,Female,3161,1939-04-14,A+ -Joseph Foster,Male,3162,1946-06-03,O- -Karen Jenkins,Female,3163,1992-04-03,O+ -Alexandria Nelson,Male,3164,1964-10-02,O- -Patrick Haley,Male,3165,1976-09-03,B+ -Mark Burke,Male,3166,1955-07-13,A+ -Bradley Day,Male,3167,1931-06-26,B+ -Melissa Clayton,Female,3168,1989-09-25,B- -Erika Phelps,Female,3169,1943-12-12,A+ -Samantha Sanchez,Male,3170,1966-10-07,AB+ -Eric Dixon,Male,3171,1960-07-28,A- -Isabel Lawson,Male,3172,1977-03-26,B+ -Stephen Jones,Female,3173,1973-12-24,A- -Taylor Young,Male,3174,1958-02-01,AB- -Karl Mason,Female,3175,1998-06-20,A+ -Jasmine Wilkerson,Female,3176,1973-12-05,A+ -Todd Rangel,Female,3177,1944-12-22,A- -Dr. Richard Thompson,Female,3179,1947-02-17,AB- -Robert Lopez,Male,3180,2000-08-03,AB+ -Holly Sanford,Male,3181,1959-05-09,O+ -Deborah Douglas,Male,3182,1933-03-15,B+ -Kellie Mcdonald,Male,3183,1932-04-10,B+ -Karen Faulkner,Male,3184,1934-07-10,A+ -Anne Mcdaniel,Male,3185,1977-12-20,A- -William Hansen,Female,3186,1982-07-21,O- -Johnny Harrison,Male,3187,1998-08-03,A+ -Elizabeth Anderson,Male,3188,1956-01-23,O- -Amanda Lee,Male,3189,1966-04-20,AB+ -Timothy Williamson,Female,3190,1974-04-24,A+ -Julie Hobbs,Male,3191,1932-10-16,B+ -Tracey Ford,Male,3192,1989-03-13,A- -Pamela Howard,Female,3193,1957-06-16,AB+ -Shawn Guerrero,Male,3194,1964-01-31,AB+ -James Dominguez,Male,3195,1964-03-08,O+ -Michelle Ray,Female,3196,1933-07-07,A+ -Sandra Smith,Female,3197,1976-08-30,O- -Joseph Weaver,Female,3198,1980-05-12,O- -Miss Danielle Boyd DVM,Male,3199,1998-05-18,A+ -Melissa Malone,Female,3200,1934-09-30,AB- -Tara Wong,Female,3201,1980-09-04,O+ -Amy Molina,Male,3202,1980-10-20,O+ -Brian Cooper,Male,3203,1997-06-28,O+ -Larry Armstrong,Female,3204,1974-06-09,O- -Ashley Marquez,Male,3205,1969-08-16,AB+ -William Mathews,Male,3206,1965-04-16,A- -Kristine Miller,Female,3207,1939-07-04,AB- -Laura Walker,Male,3208,1954-09-20,B+ -Tonya Wilkinson,Male,3209,1990-04-04,O+ -Andrew Webb,Female,3210,1998-08-27,O- -Kathleen Lee,Female,3211,1952-10-21,O- -Brooke Cox,Female,3212,1935-09-29,B+ -Joshua Davis,Female,3213,1968-07-22,AB+ -Amanda Cox,Male,3214,1988-09-25,B+ -Alan Fields,Male,3215,1968-02-21,A+ -Angela Baker,Male,3216,1957-08-04,A+ -Ruth Galloway,Male,3217,1947-07-08,A- -Regina Stevens,Female,3218,1937-07-20,B+ -Jessica Carrillo,Male,3219,1985-08-04,A- -Christine Hahn,Female,3220,1997-04-09,O+ -Laura Moss,Female,3221,1980-01-23,A- -Arthur Hicks,Female,3222,1982-01-02,O+ -Amanda Harris,Male,3223,1993-10-01,AB- -Jim Spencer,Male,3224,1978-10-29,A- -Dawn Johnson,Male,3225,1998-10-13,AB+ -Amber Stout,Female,3226,1943-09-27,O+ -Kayla Pineda,Female,3227,1974-10-27,AB+ -Christine Thornton,Male,3228,1951-11-26,O- -Darin Manning,Female,3229,1991-06-06,O+ -Mary Thomas,Male,3230,1957-11-30,O- -Kelsey Williamson,Male,3231,1935-09-28,B- -Nicole Wells,Female,3232,1972-04-03,AB+ -Stephanie Kim,Male,3233,1999-03-19,B- -Sandra Maynard,Female,3234,1992-05-23,O+ -Jason Davis,Female,3235,1959-01-04,O- -Heather Nguyen,Male,3236,1973-08-24,O+ -Kimberly King,Male,3237,2001-09-26,B- -Christine Jordan,Female,3238,1983-12-24,B+ -Phillip Jones,Male,3239,1971-04-14,B+ -Jacob Smith,Male,3240,1995-04-16,O+ -Kayla Lambert,Female,3241,1943-12-24,AB- -Debra Hunter,Male,3242,1983-01-05,A+ -Jason Perry,Female,3243,1937-10-10,B- -Duane Hayes,Female,3244,1939-04-08,O+ -Emily Swanson,Male,3245,1959-09-17,O- -David Rodriguez,Male,3246,1957-07-11,O+ -Allison Gallegos,Female,3247,1966-12-11,B+ -James Perez,Male,3248,1976-09-25,O- -Richard Mack,Female,3249,1968-09-17,A+ -Heather Middleton,Male,3250,1950-08-15,O+ -Jason Robinson,Female,3251,1941-09-23,A- -Heather Strong,Female,3252,1951-03-08,B+ -Ashley Bradley,Male,3253,1951-02-10,A- -Erika Johnson,Male,3254,1934-06-08,A+ -Austin Davies,Female,3255,1968-04-06,B- -Roy Beck,Female,3256,1965-02-21,O- -Jennifer Lawrence,Female,3257,1993-08-30,A- -Mariah Smith,Male,3258,1971-10-14,AB- -Jonathan Vargas,Female,3259,1933-12-02,B- -Michael Stephens,Male,3260,1954-10-29,O- -Amanda Bryan,Male,3261,1942-11-27,B+ -Steve Lindsey,Male,3262,1956-03-02,B+ -Shannon Long,Male,3263,1955-11-01,B+ -Gina Johnston MD,Male,3264,1943-09-08,A+ -April Wilkerson,Male,3265,1930-06-12,A- -Jason Miller,Male,3266,1935-05-29,B+ -Cody Ibarra,Female,3267,1983-11-14,AB+ -Rebekah Martin,Female,3268,1953-03-02,B+ -Leslie Williams,Female,3269,1976-08-02,O+ -Amanda Reynolds,Female,3270,1977-05-03,A+ -Annette Joseph,Male,3271,1935-07-08,O- -Benjamin Harrison,Male,3272,1956-12-03,O- -David Carter,Male,3273,1951-08-15,O- -Stephen Browning,Female,3274,1930-07-24,O- -Antonio Drake,Female,3275,1976-06-13,O+ -Thomas Clark,Male,3276,1990-05-25,B- -Cathy Terrell,Male,3277,1954-09-24,AB- -Jason Simmons,Male,3278,1944-08-22,AB+ -Michael Harper,Male,3279,2001-12-29,O+ -Zachary Hicks,Male,3280,1937-03-28,O- -Nicholas Brown,Female,3281,1951-12-14,O+ -Tommy Barry,Male,3282,1981-02-23,A+ -Dr. Sonia Martinez,Male,3283,1977-04-02,AB- -Matthew Davis,Male,3284,1945-03-23,O- -Kevin Daniel,Female,3285,1973-07-06,AB+ -Katherine Harper,Male,3286,1969-10-14,O- -Tony Mckinney,Female,3287,1976-09-29,AB- -Tyler Jackson,Female,3288,1940-12-14,AB+ -Rhonda Baxter,Male,3289,2001-03-07,AB- -Michael Solis,Male,3290,1969-02-14,AB+ -Patrick Schultz,Female,3291,1976-09-11,B- -Kimberly Russell,Female,3292,1951-09-15,A- -Elizabeth Fernandez,Female,3293,1972-08-10,B- -Erin Jackson,Female,3294,1933-03-17,O+ -Stacy Douglas,Male,3295,1990-03-02,O+ -Zachary Merritt,Female,3296,1962-08-19,B+ -Christopher Gentry,Male,3297,1955-01-05,AB+ -Jordan Howe,Male,3298,1947-05-14,B+ -William Simmons,Female,3299,1978-10-29,B+ -Terry Jones,Female,3300,1962-08-30,O- -Kaitlyn Holmes,Female,3301,1936-12-14,A- -Rickey Payne,Female,3302,1940-11-03,A+ -Douglas White,Female,3303,1966-02-04,A+ -Angela Bowers,Male,3304,1992-01-25,O- -Grant Munoz,Female,3305,1944-11-15,O- -Lucas Miller,Male,3306,1986-07-10,B- -Jacob Miller,Female,3307,1981-04-28,A+ -Casey Navarro,Male,3308,1991-09-26,AB+ -Joshua King,Male,3309,1984-11-27,AB- -Jesse Gay,Female,3310,1934-10-20,B+ -Pamela Nguyen,Male,3311,1997-01-13,O+ -Susan Horne,Female,3312,1980-03-01,B+ -Matthew Pennington,Female,3313,1998-04-20,B+ -Katie Shannon,Male,3314,1991-03-22,AB- -Matthew Campbell,Female,3316,1957-09-19,B- -Henry Benson,Male,3317,1974-11-02,A+ -Jennifer Ellis,Male,3318,1948-01-15,B+ -Ryan Salazar,Female,3319,1998-06-13,A- -Timothy Green,Female,3320,1947-04-06,O- -Sharon Cain,Male,3321,1950-02-10,A- -Brianna Garcia MD,Male,3322,1996-06-02,A- -Aaron Frank,Female,3323,1999-09-26,A+ -Craig Davidson,Female,3324,1993-01-07,AB+ -Angela Ortiz,Female,3325,1972-01-13,B- -Jason Mendez,Female,3326,1931-08-21,B+ -Ronald Smith,Male,3327,1983-03-30,B+ -Carly Henderson,Male,3328,1936-05-25,B+ -Shawn Watson,Female,3329,1957-01-18,O- -Jason Rodriguez,Male,3330,1931-07-27,AB- -Emily Phillips,Male,3331,1950-08-05,AB+ -Kim Franklin,Male,3332,1946-11-24,AB- -Jordan Munoz,Male,3333,1994-04-16,O+ -Jose Hawkins,Female,3334,1980-07-31,B- -Dr. Donald Ferguson,Male,3335,1968-04-23,AB+ -Joel Kelly,Male,3336,1992-11-01,AB+ -Mark Reid,Male,3337,1962-06-23,B+ -Charles Harris,Male,3338,1964-02-16,AB- -Cole Woodward,Male,3339,1987-07-09,O- -Bradley Leonard,Male,3340,1934-06-22,O+ -Cheryl Burke,Male,3341,1979-01-05,B+ -Jamie Castro,Male,3342,1964-03-08,B+ -Mr. Jared Bell,Female,3343,1959-09-15,B+ -Randall Callahan,Male,3344,1939-12-28,AB- -Catherine Potter,Female,3345,1971-07-22,AB+ -Brian Torres,Female,3346,1965-12-23,B- -Brett Jordan,Female,3347,1979-01-25,AB+ -Samantha Munoz,Female,3348,1969-04-23,A+ -Karen Newman,Male,3349,1966-08-08,B- -Jason Eaton,Female,3350,1938-08-04,B+ -Lisa Miller,Female,3351,1993-12-25,B- -Patricia Clark,Female,3352,1930-04-08,AB+ -Jeremy Gutierrez,Male,3353,1961-03-26,O- -Ross Lee,Female,3354,1964-10-31,B+ -Elizabeth Figueroa,Male,3355,1965-05-21,B- -Robert Phillips,Female,3356,1940-04-08,A+ -Todd Rodgers,Male,3357,1953-05-15,AB- -Jessica Miller,Female,3358,1997-03-28,O- -Robert Long,Female,3359,1997-01-16,O- -Jennifer Fischer,Female,3360,1989-09-05,O- -Crystal Simpson,Male,3361,1942-10-11,B- -Scott Burch,Male,3362,1973-10-31,O- -Daniel Collins,Female,3363,1976-07-12,AB+ -John Huffman,Female,3364,1934-09-24,O- -Raven Lucas,Male,3365,1935-01-29,A+ -Melissa Perkins DVM,Female,3366,1959-07-28,B+ -Anthony Jones,Male,3368,1943-11-04,B+ -Stephanie Knox,Female,3369,1958-02-14,O+ -Sharon Rose,Male,3370,1981-03-22,A+ -Wayne Tran,Male,3371,1965-02-05,B- -Cheryl Frazier,Female,3372,1955-08-27,O- -Heather Taylor,Male,3373,1955-06-02,O- -Michael Burton,Female,3374,1966-01-23,AB+ -Alexis Bailey,Female,3375,1945-10-23,AB- -Victoria Lawrence,Male,3376,1947-11-07,O- -James Villanueva,Female,3377,1960-01-27,A- -Brittany Randall,Female,3378,1979-08-25,A+ -Timothy Hill,Male,3379,1970-11-26,B- -Pamela Rice,Male,3380,1932-02-21,B+ -Rachel Alvarez,Male,3381,1974-07-31,O+ -Daniel Moore,Female,3382,1995-07-11,O- -John Brown,Male,3383,1948-09-06,O+ -Emily Young,Female,3384,1980-08-15,O- -Donald Ramsey,Female,3385,1985-06-12,B- -John Harper,Female,3386,1949-09-11,AB- -Jacqueline Harvey,Female,3387,1988-06-25,A+ -Michael King,Male,3388,1935-10-15,B+ -Richard Mason,Female,3389,1974-07-29,B- -Christian Robertson,Male,3390,1990-12-15,O+ -Mr. William Bentley Jr.,Male,3391,1967-02-21,O- -Susan Watkins,Male,3392,1985-09-23,O+ -Carol Allen,Female,3393,1957-11-18,A+ -Ann Morgan,Male,3394,2000-03-17,A- -Aaron Patel,Female,3395,1994-09-30,B+ -Elizabeth Johnson,Female,3396,1979-03-06,B- -James Kerr,Female,3397,1955-03-14,O+ -Jennifer Stewart,Male,3398,1981-01-31,O+ -Roger Curry,Female,3399,1988-03-10,A+ -Jennifer Sutton,Male,3400,1973-03-31,A- -Alex Patel,Female,3401,2002-04-03,O- -Derek Sims,Female,3402,1993-04-28,A- -Lisa Davis,Male,3403,1981-07-02,O+ -Javier Green,Male,3404,1966-12-07,A+ -Derek Elliott,Female,3405,1945-03-09,O- -Joyce Ramirez,Female,3406,1948-10-05,A- -Tara Morris,Male,3407,1936-12-26,B+ -Joseph Woods,Female,3408,1947-07-22,A- -David Taylor,Male,3409,1974-11-17,B+ -Pamela Garcia,Male,3410,1996-12-31,A- -Dawn Hawkins,Male,3411,1981-11-08,AB- -Cory Williams,Female,3412,1931-04-21,O- -Stacy Moody,Female,3413,1989-09-08,A- -Gabriel Rodriguez,Male,3414,1958-06-26,AB- -Danny Scott,Female,3415,1998-08-12,B- -Kenneth Garcia,Male,3416,1949-10-27,A+ -Diane Martinez,Male,3417,1948-05-16,A- -Kathryn Mitchell,Female,3418,1988-07-19,B+ -Rebekah Thomas,Male,3419,1987-08-08,O- -Marissa French,Male,3420,1952-02-13,B+ -Nicole Bradley,Female,3421,1991-06-17,AB- -Jo Reyes,Male,3422,1936-04-04,AB- -Thomas Gonzales,Male,3423,1944-04-20,B- -George Day,Female,3424,1967-01-08,B+ -Victoria Fleming,Female,3426,1970-10-07,AB+ -Felicia Casey MD,Male,3427,1949-02-01,A+ -Julian Savage,Female,3428,1984-07-05,B+ -Scott Barr,Male,3429,1961-07-28,AB+ -Lisa Wong,Female,3430,1970-04-22,O- -Melissa Weaver,Female,3431,1982-08-02,A+ -Carlos Floyd,Male,3432,1943-07-15,B+ -Vanessa Morgan,Male,3433,1947-11-18,B- -Russell Elliott,Female,3434,1960-06-08,O- -Terry Gonzalez,Male,3435,1930-09-16,A+ -Richard Kline,Female,3436,1930-10-10,B+ -Julia Stuart,Female,3437,1968-02-28,B+ -Amanda Garza,Male,3438,1935-03-14,A+ -Patrick Rodriguez,Female,3439,1941-04-28,AB+ -Marc Ellis,Male,3440,1948-02-25,O- -Diane Knight,Male,3441,1960-07-30,B- -Alison Kennedy,Female,3442,1983-08-15,B- -Jacqueline Cisneros,Female,3443,1988-11-06,O- -Heather Garcia,Male,3444,1994-06-25,O- -Evan Graham,Male,3445,1931-09-05,AB- -Tiffany Hines,Female,3446,1968-11-20,O+ -Miranda White,Female,3447,1976-09-27,B+ -Thomas Klein,Male,3448,1984-12-17,AB+ -Lisa Owens,Female,3449,1998-12-18,O- -Dana Hall,Male,3450,1936-04-26,O- -Amanda Levy,Male,3451,1949-07-13,O+ -Heather Lewis,Female,3452,1960-09-05,O+ -Harold Molina,Female,3453,1992-09-05,A+ -Diamond Andrews,Male,3454,2002-03-01,A- -Scott Hunt,Female,3455,1946-03-04,B- -Ricardo Reyes,Male,3456,1937-02-04,AB+ -Debra Hamilton,Male,3457,1971-06-24,A+ -Catherine Cohen,Male,3458,1963-04-08,O- -Daniel Jennings,Male,3459,1949-09-01,B+ -Oscar Allen,Male,3460,1989-03-24,O+ -Ronald Estes,Female,3461,1998-11-10,AB- -Carol Steele,Female,3462,1957-08-29,B- -Wesley Rogers,Male,3463,1988-11-04,A+ -Mrs. Donna Bishop,Male,3464,1984-09-22,AB- -Curtis Tran,Male,3465,1976-09-09,B- -Charles Winters,Female,3466,1986-10-22,A- -Willie Brewer,Male,3467,1994-12-04,A- -Laura Rodriguez,Female,3468,1933-07-07,AB- -Kaitlin Khan,Female,3469,1932-07-12,O+ -Morgan Flores,Female,3470,1933-01-30,A+ -David Johnson,Male,3471,1934-03-10,A+ -Brian Lee,Male,3472,2001-08-26,A- -Jessica Haynes,Male,3473,1953-02-07,B- -Sandra Leonard,Female,3474,1985-01-07,AB- -Vincent Mason,Female,3475,1974-03-25,O+ -Joshua Banks,Female,3476,1951-12-01,O- -Jessica Wolf,Male,3477,1956-09-13,A+ -Joseph Thompson,Male,3478,1992-01-14,B+ -Laurie Gonzalez,Female,3479,1959-01-01,O- -Janice Mccall,Male,3480,1940-07-31,O+ -Betty Sandoval,Female,3481,2002-08-06,A- -Michael Booth,Female,3482,1996-04-21,B+ -Eric Rojas,Female,3483,1993-06-11,A+ -David Oconnell,Female,3484,1930-08-15,A+ -Kristy Palmer,Male,3485,1971-03-03,AB- -Katie Hernandez,Female,3486,1962-02-21,B+ -Kevin Contreras,Male,3487,1975-08-01,O- -Amanda Daniels,Female,3488,1956-04-01,A- -Gerald Johnson,Female,3489,1962-03-03,AB- -Travis Golden,Male,3491,1931-10-08,AB+ -Scott Williams,Female,3492,1974-08-17,O- -Steven Owen DDS,Male,3493,1995-07-07,O- -Margaret Steele,Male,3494,1990-02-08,AB+ -Albert Gordon,Female,3495,1983-01-17,O+ -Dylan Parks,Female,3496,1967-06-11,B+ -Craig Howard,Male,3497,2002-06-27,B+ -Paul Jones,Female,3498,1981-09-18,O+ -Brenda Norton,Female,3499,1960-01-08,A+ -Paul Thompson,Male,3500,1974-01-17,B- -Theresa Douglas,Female,3501,1967-01-24,AB- -Paige Hunt,Male,3502,1966-05-01,B- -David Garcia MD,Female,3503,1955-08-04,A+ -John Gonzalez,Male,3504,1931-08-11,B+ -Patricia Hill,Female,3505,1964-12-11,B- -Randy Mitchell,Male,3506,2002-04-10,O- -Hunter Munoz,Female,3507,1955-02-16,O- -Linda Turner,Female,3508,1941-03-03,AB+ -Brianna Flores,Female,3510,1939-03-03,AB+ -Faith Miranda,Male,3511,1992-02-08,A+ -Kayla Snyder,Male,3512,1985-05-07,A+ -Heidi Brown,Female,3513,2000-09-07,A- -Jose Mullen,Male,3514,1997-10-21,A+ -Benjamin Gomez,Male,3515,1999-12-21,O- -Helen Meyer,Male,3516,2001-12-08,B- -Rachel Mcguire DDS,Male,3517,1979-07-22,AB- -Nancy Oconnor,Female,3518,1959-07-13,A- -Jessica Christensen,Male,3519,1963-10-03,A- -Mario Stone,Female,3520,1947-08-30,B+ -Lucas Hernandez,Female,3521,1966-03-23,A- -Mary Smith,Female,3522,1944-11-16,A+ -Brian Alvarado,Female,3523,1933-01-03,A+ -Kathy Harvey,Female,3524,1949-06-06,O- -Shannon Hunter,Male,3525,1981-03-24,AB- -Richard Jones,Female,3526,1961-04-27,O- -Christina Mills,Female,3527,1954-11-18,AB- -Gary Lee,Female,3528,1973-11-12,O- -Jay Yates,Male,3529,1947-07-27,B- -Andres Adams,Male,3530,1949-02-10,B+ -Lori Lee,Female,3531,1993-05-17,A+ -Alexandra Davis,Male,3532,1979-06-11,O+ -William Doyle,Male,3533,1960-05-24,O+ -Casey Foster,Male,3534,1951-10-08,B+ -Kevin Martinez,Female,3535,1954-12-23,A+ -Lisa Castro,Female,3536,1964-06-07,A- -Matthew Spencer,Female,3537,1999-04-08,A+ -Derek Brown,Female,3538,1991-06-03,A+ -Adam Taylor,Male,3539,1932-12-25,B+ -Jacqueline Wilson,Female,3540,1942-07-15,A+ -Alexis Ortega,Male,3541,1954-12-28,A- -Kristin Hill DVM,Female,3542,1958-09-18,AB- -Ashley Wallace,Male,3543,1930-06-05,B+ -Daniel Wilson,Male,3544,2000-03-20,B- -Ronald Bell,Female,3545,1935-05-13,O+ -Beth Frazier,Female,3546,1959-04-12,B+ -Lynn Sawyer,Female,3547,1947-05-16,AB+ -Adriana Murphy,Male,3548,1945-10-28,O+ -Christine Waller,Male,3549,1991-09-06,O+ -Debra Stokes,Female,3550,1988-09-20,A- -Jason Ruiz,Female,3551,1940-06-27,O- -Patrick Swanson,Female,3552,1954-10-08,A+ -Monica Harris,Female,3553,1999-01-14,A+ -Kim Bowen,Male,3554,1956-10-25,A+ -Paul Beck,Male,3555,1993-02-02,O- -Rebecca Allen,Female,3556,1931-03-18,A- -Robert Walsh,Male,3557,1991-05-25,B+ -Vincent Arroyo,Male,3558,1991-01-30,B- -Jesse Davis,Female,3559,1969-08-22,B- -Jacob Murphy,Male,3560,1995-01-02,A- -Pamela Martinez,Female,3561,1942-09-03,AB+ -Kelly Floyd,Male,3562,1947-06-11,B- -Ricky Marsh,Female,3563,1956-02-02,A- -James Pearson,Female,3564,1977-06-15,B+ -Richard Garrett,Female,3565,1961-08-31,B- -Melanie Best,Male,3566,1952-05-24,A+ -Carol Villanueva,Male,3567,1973-11-04,AB- -Lisa Morrow,Female,3568,1991-08-08,A- -Amber Atkinson,Male,3569,1976-02-12,O+ -Alexandra Bailey,Male,3570,1995-07-31,B- -Derek Lopez,Male,3571,1987-07-31,B- -Heather Carey,Male,3572,1931-01-28,O- -Jose Wilson,Male,3573,1963-03-19,AB+ -Jay Stephenson,Female,3574,1979-10-02,AB- -John Williams,Male,3575,1995-01-18,B+ -Colleen Johnson,Male,3576,1958-08-11,O- -Marc Nguyen,Male,3577,1977-12-22,A+ -Joseph Coleman,Male,3578,1987-11-03,O+ -Joanna Taylor,Male,3579,1950-04-24,AB+ -Cheryl Jones,Female,3580,1992-04-11,O- -Elizabeth Jones,Female,3582,1936-09-20,A- -Jordan Rose,Male,3583,2001-04-20,B- -Brian Mosley,Male,3584,1984-12-01,B- -Robert Black,Male,3585,1978-08-18,AB+ -Danielle Rodriguez,Male,3586,1971-09-06,B- -Jenna Jacobson,Female,3587,1948-05-07,A- -Scott Tyler,Male,3588,1937-02-10,O- -Shannon Warren,Female,3589,1930-05-22,O- -Rebecca Torres,Female,3590,1937-04-13,B- -James Harris,Female,3591,1987-06-11,B- -Sara Roberts,Male,3592,1954-09-23,A+ -Stephen Dalton,Male,3593,1971-03-04,O+ -Elizabeth Rivera,Male,3594,1968-04-01,B+ -Lindsay Higgins,Female,3595,1945-07-02,AB+ -Patrick Pennington,Female,3596,1946-10-26,O- -Adam Vega,Male,3597,1963-02-26,AB+ -Peter Hardy,Male,3598,1990-04-06,A+ -Emily Parker,Male,3599,1954-01-22,O- -April Johnson,Female,3600,1957-08-23,A+ -Daniel Good,Female,3601,1953-03-13,A+ -Jason Porter,Female,3602,1976-01-07,AB- -Stephanie Hensley,Female,3604,1994-01-08,B- -Austin Lucas,Male,3605,1941-08-20,A- -Kelli Martinez,Female,3606,1970-12-06,AB- -Melissa Jefferson,Female,3607,1934-10-17,B+ -Alicia Brown,Female,3608,1987-11-19,AB+ -Darryl Carter,Male,3609,1980-03-30,A- -John White,Male,3610,1941-03-12,AB+ -Lee Cuevas,Female,3611,1986-04-19,B- -Brandy Martin,Female,3612,1996-03-08,A- -Casey Evans,Male,3613,1971-11-04,AB- -Cynthia Brown,Male,3614,1982-12-04,AB+ -Mr. Charles Myers DVM,Female,3615,1956-05-25,AB- -Rhonda Martinez,Male,3616,1989-08-17,B- -James Lopez,Female,3617,1996-06-07,A- -Amber Cunningham,Female,3618,1943-11-24,A- -Tonya Perkins,Female,3619,1958-07-05,O- -Carolyn Moran,Female,3620,1972-12-12,A+ -Caroline Gordon,Male,3621,1949-10-18,A+ -Jeffrey Carr,Male,3622,1972-04-02,AB- -Nicholas Young,Female,3623,1960-02-15,A- -Elizabeth Mckee,Male,3624,1968-03-09,AB+ -James Bennett,Female,3625,1967-06-22,AB- -Clinton Martin,Male,3627,1979-01-19,AB- -Gregory Simpson,Male,3628,1965-10-18,O+ -Jeanette Hines,Male,3629,1983-01-17,B+ -Brian Richardson,Female,3630,1994-06-13,A- -Teresa Kennedy,Male,3631,1942-04-21,A+ -Mark Mitchell,Male,3632,2000-06-01,A- -Kimberly Franco,Male,3633,1977-05-31,B- -Charles Johnson,Male,3634,1933-12-31,AB- -Ronald Ashley,Female,3635,1968-09-18,O+ -Jessica Ross,Male,3636,1982-04-25,O+ -Tyler Black,Male,3637,1959-04-23,A+ -Lisa Ryan,Male,3638,1975-08-22,A+ -Melanie Alvarado,Male,3639,1975-08-01,A+ -Manuel Reid,Male,3640,1948-08-30,B- -Diane Holmes,Female,3641,1961-11-13,O+ -Dennis Bullock,Male,3642,1969-06-29,AB+ -Laura White,Male,3643,1968-03-27,B- -Catherine Roth,Female,3644,1979-09-07,O- -Stephen Ramos,Female,3645,1960-10-10,B+ -Joseph Hendricks,Female,3646,1930-02-10,B+ -Jessica Neal,Male,3647,1945-12-15,AB- -Jason Underwood,Male,3648,1952-08-12,B+ -Jason Buchanan,Female,3649,1977-07-24,A+ -Lisa Jarvis,Female,3650,1970-08-28,O+ -Michelle Lewis,Male,3651,1974-06-11,B+ -Nathan Martinez,Female,3652,1951-05-15,AB- -Dorothy Abbott,Male,3653,1996-03-08,B+ -Whitney Nelson,Male,3654,1990-07-06,A- -Maurice Watson,Female,3655,1983-08-13,B- -Meredith Koch,Female,3656,1944-09-18,O- -Jacob Moore,Male,3657,1987-12-22,A- -Jennifer Hanson,Male,3658,1994-07-11,B- -Eric Cobb,Male,3659,1936-11-29,B- -Roy Dickerson,Male,3660,1955-05-27,AB+ -Elizabeth Smith,Female,3661,1981-08-24,B+ -Adam Bryant,Male,3662,1957-01-24,AB- -Matthew Reynolds,Male,3663,1988-12-20,AB+ -Kathryn Knight,Male,3664,1932-02-18,B- -Mrs. Kimberly Gray,Female,3665,2001-08-17,B+ -Elizabeth Mata,Female,3666,1934-02-01,O- -Gregory Singleton,Male,3667,1976-08-31,O+ -Caleb Brock,Female,3668,1978-07-20,O+ -Bradley Peterson,Female,3669,1967-04-12,B+ -Elizabeth Pope,Female,3670,2000-11-04,A- -James Hernandez,Male,3671,1963-03-21,AB- -Kyle Berry,Male,3672,1957-11-13,A+ -Lindsay Sullivan MD,Male,3673,1951-07-01,A+ -Keith Reyes,Male,3674,1974-08-06,O+ -Jennifer Turner,Female,3675,1949-08-05,B- -Andrew Johnson,Female,3676,1935-08-07,B- -Brian Martinez,Female,3677,1950-03-05,AB+ -Darren Roberts,Female,3678,1984-06-26,B+ -David Murphy,Male,3679,1967-05-02,AB- -Terry Elliott,Female,3680,2000-03-08,B+ -Jennifer Martinez,Male,3681,1955-02-07,B+ -Diana Jones,Male,3682,1987-05-23,AB+ -Jesus Miller,Female,3683,1976-11-06,A+ -Teresa Todd,Male,3684,1961-01-06,B+ -Jonathan Fitzpatrick,Male,3685,1966-06-20,O+ -Damon Kelley,Female,3687,1995-04-22,A- -Frederick Flynn,Female,3688,1930-12-09,B+ -Christopher Watson,Male,3689,1933-12-18,B- -Robert Phelps,Male,3690,1948-01-08,B+ -Amanda Williams,Male,3691,1962-06-13,O+ -Juan Patton,Female,3692,1947-04-19,O- -Daniel Moreno,Male,3693,1976-04-19,O+ -Joy Sheppard,Female,3694,1957-08-15,O- -Regina Bates,Female,3695,1965-06-12,AB+ -Diane Bennett,Male,3696,2002-12-18,AB+ -Andrew Rivera,Male,3697,1993-05-02,A+ -Rodney Vazquez,Male,3698,1975-12-20,O+ -Robert Harrington,Male,3699,1969-11-19,O+ -Dr. Derrick Robinson,Female,3700,1970-09-16,O- -Kathleen Ramsey,Male,3701,1996-09-21,AB+ -James Cook,Male,3702,1956-09-26,O- -Edwin Roberson,Female,3703,1985-02-05,AB+ -Mary Green,Male,3704,1964-02-18,O- -Julie Anderson,Female,3706,1979-11-30,AB+ -Larry Mitchell Jr.,Female,3707,1978-11-27,O- -Erica Brown,Female,3708,1958-12-27,A- -Shane Daniel,Male,3709,1932-02-11,AB+ -Chad Chen,Male,3710,1989-12-26,AB- -Eduardo Alexander,Male,3711,1974-08-18,O- -Melanie Richardson,Male,3712,1954-01-05,O+ -Christy Phillips,Male,3713,1960-05-16,A+ -Lisa Wilson,Female,3714,1967-10-17,AB- -Charles Fernandez,Female,3715,1930-07-13,AB- -Christina Villanueva,Female,3716,1935-07-01,O- -Joseph Castillo,Male,3717,1978-02-07,A+ -Philip Ward,Male,3718,1981-05-31,O+ -Jillian Davis,Male,3719,1960-08-21,AB- -Caleb Hughes,Female,3720,1957-05-03,O+ -Caleb Green,Female,3721,1955-06-21,AB+ -Cheryl Ramirez,Female,3722,1985-10-28,B+ -Victoria Thomas,Female,3723,1950-05-05,A- -Patricia Silva,Female,3724,1936-03-11,B+ -Jennifer Hernandez,Male,3725,1985-02-01,B+ -Michael Carter,Female,3726,2002-08-03,A+ -Jennifer Rodriguez,Male,3727,1948-05-22,A- -Mr. Tyler Parks MD,Female,3728,1988-03-16,B- -Crystal Johnson,Male,3729,1954-06-05,AB+ -Angela Pennington,Male,3730,1941-12-27,A+ -Amber Ruiz,Female,3731,1951-05-26,O- -Terry Tapia,Female,3732,1967-09-22,A- -Dana Baldwin,Female,3733,1984-04-22,O- -Aaron Davis,Female,3734,1995-09-17,O+ -Michelle Freeman,Female,3736,1964-11-06,B+ -Courtney Jones,Male,3737,1958-04-16,AB- -Jennifer Best,Female,3738,1956-12-06,A- -Steven Bates,Female,3739,1937-09-01,B- -Makayla Frey MD,Female,3740,1952-10-25,O- -Holly Stuart,Female,3741,1944-10-24,A+ -Stacey Trevino,Female,3742,1978-11-04,A- -Danielle Duke,Male,3743,1993-09-23,A- -Darren Obrien,Female,3744,1945-11-26,AB- -Omar Merritt,Male,3745,1948-08-10,AB- -Amber Gonzales,Female,3746,1987-12-28,A+ -Kaitlyn Bailey,Male,3747,1988-10-20,AB- -Angela Browning,Female,3748,1958-03-03,O- -Samantha Martinez,Female,3749,1978-06-27,A+ -Vincent Curtis,Male,3750,1988-06-25,B+ -Raymond Perry,Female,3751,2000-08-10,A+ -Jeffrey Williams,Female,3752,1978-01-12,O+ -Tina Alexander,Male,3754,1942-09-25,B- -Robert Allen,Male,3755,1943-08-28,A- -Mark Walker,Female,3756,1971-08-14,O+ -Christopher Chavez,Male,3757,1942-11-11,B- -Jeffrey Bell,Female,3758,1975-10-16,A+ -Michael Moore,Male,3759,1940-06-25,A- -Andrew Daniel,Female,3760,1980-03-31,AB- -Kara Chapman,Male,3761,1976-10-13,B- -David Skinner,Male,3762,1964-07-06,A+ -Karen Wade,Male,3763,1945-01-04,A+ -Robin Rice,Female,3764,1992-04-25,O+ -Mary Murray,Male,3765,1979-10-15,O+ -Robert Knight,Male,3766,1944-12-16,AB- -Sarah Burton,Male,3767,1967-12-13,B+ -Amber Matthews,Female,3768,1943-06-14,AB+ -Dawn Davis,Male,3769,1942-09-23,O- -Donald Campbell,Female,3770,1932-05-05,AB+ -Claudia Sanders,Female,3771,2002-04-01,AB+ -Amy Alvarez,Female,3772,1937-11-06,A- -Thomas Jacobs,Male,3773,1962-05-27,B+ -Tom Gallagher,Male,3774,1974-08-12,A- -Amber Olson,Female,3775,1975-05-11,AB- -Diamond Garcia,Female,3776,1938-07-10,A- -Mrs. Kelly Berry DVM,Female,3777,1990-05-20,B- -Kenneth Harrison,Female,3778,1942-04-20,AB- -Emily Spence,Male,3779,1990-10-20,AB- -Louis Martinez,Female,3780,1971-05-20,A+ -William Snyder,Male,3781,1934-02-26,A+ -Rachel Thomas,Male,3783,1973-11-09,A+ -John Mullins,Female,3784,1988-07-21,O- -Kevin Mack,Male,3785,1978-07-28,B- -Michael Shaw,Female,3786,1984-10-17,B- -Terry Turner,Male,3787,1984-10-16,A+ -Tyler Rivera,Female,3788,1961-04-19,AB+ -Susan Salinas,Male,3789,1952-06-24,O- -Amy Knight,Female,3790,1961-09-30,AB+ -Jimmy Wilson,Female,3791,1965-03-29,O+ -Meagan Johnson,Female,3792,1964-11-21,B- -Richard Thomas,Female,3793,1991-08-25,B- -John Wood,Male,3794,1955-07-13,AB+ -Christopher Reese,Male,3795,1961-07-28,O- -Nicole Johnson,Female,3796,1948-01-15,B- -William Rowe,Female,3797,1939-01-25,AB+ -Shane King,Male,3798,1991-06-02,AB- -Dr. Susan Wagner,Male,3799,1991-12-17,AB- -Mark Avila,Female,3800,1932-09-14,A- -Steven Coleman,Female,3801,1939-02-04,O- -Charles Novak,Female,3802,1973-04-17,AB+ -Nicole Roberts,Female,3803,1942-08-21,A- -Deanna Rodriguez,Male,3804,1972-06-21,AB- -Shelley Jennings,Female,3805,1965-12-29,O- -Melinda Nelson,Male,3806,1997-10-05,B+ -Claire Drake,Female,3807,1967-05-21,A- -Stacey Sanchez,Male,3808,1985-02-06,B+ -Robert Mccormick,Male,3809,1938-05-11,A+ -Rebecca Baxter,Female,3810,1992-11-09,O- -Jerry Collins,Female,3811,1931-12-28,O+ -Anthony Page,Female,3812,1940-04-18,A+ -Harold Dixon,Male,3813,1990-10-03,A- -Teresa Moyer,Female,3814,1935-02-19,AB+ -Larry Contreras,Male,3815,1994-01-02,A+ -Kevin Stephens,Female,3816,1968-03-31,A+ -Andrew Quinn,Female,3818,1941-01-16,A- -Scott Hicks,Male,3819,1944-11-26,AB+ -Meagan Franklin,Female,3820,1977-07-26,AB+ -Jon Garza,Male,3821,1940-04-02,AB- -Jill Duarte,Female,3822,1998-06-08,O+ -Dylan Simmons,Female,3823,1976-06-25,AB+ -Sarah Martin,Male,3824,1934-11-10,B- -Kenneth Allen,Male,3825,1959-03-01,B- -Angelica Bennett,Male,3826,1932-07-24,O+ -Margaret Rios,Male,3827,1966-09-04,O- -Mrs. Stephanie Mcbride,Male,3828,1940-06-05,A- -Michael Bean,Male,3829,1975-10-07,O- -Eric Randall,Female,3830,1961-11-15,B- -Patricia Bailey,Male,3831,1996-07-19,AB+ -Tiffany Bishop,Female,3832,1982-04-04,O+ -Michelle Zimmerman,Male,3833,1969-05-12,O- -Matthew Holmes,Female,3834,1946-02-15,O- -Todd James,Male,3835,1943-11-03,B+ -Lisa Ward,Female,3836,1940-08-04,A- -Michael Ross,Male,3837,1986-05-11,A+ -Matthew White,Female,3838,1975-05-30,B- -Darryl Martin,Female,3839,1981-09-11,AB+ -Malik Sullivan,Female,3840,1935-01-17,O+ -Shannon Horton,Female,3841,1957-07-16,O- -Matthew Carter,Female,3842,2002-10-02,A- -Sarah Serrano,Male,3843,1954-12-02,A+ -David Lara,Female,3844,1964-03-20,B- -Tammy Fowler,Female,3845,1942-10-03,B- -Charles Johnson,Female,3846,1961-02-28,A- -Emily Ponce,Female,3847,1950-08-28,B+ -Erin Garcia,Female,3848,1951-02-18,O+ -Adam Allen,Female,3849,1967-12-04,O- -Diane Soto,Female,3850,1976-12-19,O+ -Todd Strong,Female,3851,1983-07-01,A- -Matthew Thompson,Female,3852,1962-03-31,A- -Sandra Robinson,Male,3853,1934-06-17,O+ -Scott Jones,Male,3854,1931-01-22,AB- -Frank Olson,Female,3855,1946-07-07,A+ -Jessica Fox,Female,3856,1947-08-19,B- -Jose Henderson,Male,3857,1992-05-20,AB- -Laura Taylor,Female,3858,1966-09-01,AB+ -Jamie Clark,Female,3859,1985-10-31,B- -Julie Patterson,Male,3860,1981-08-11,B- -Allison Frederick,Male,3861,1936-04-01,A+ -Jill Rosario,Female,3862,1935-01-31,AB+ -Jennifer Robles,Female,3863,1972-11-26,O- -Rebekah Cherry,Male,3864,1996-09-15,AB+ -George Houston,Female,3865,1935-06-22,O- -Danielle Anthony,Male,3867,1944-12-29,B+ -Wesley Johnson,Female,3868,1955-10-25,B+ -Patricia Harris,Female,3869,1942-10-14,AB+ -Erica Walker,Male,3870,1963-10-11,O+ -Angel Dennis,Female,3871,1955-07-31,A- -Wanda Gilbert,Female,3872,1986-09-06,AB+ -Mrs. Karen Garza,Female,3873,1949-05-05,AB- -Austin Harrison,Female,3874,1950-05-22,AB- -Emily Maddox,Male,3875,1978-10-11,A+ -Sara Pineda,Male,3876,1945-05-26,A- -Mariah Weaver,Female,3877,1950-06-06,A- -Brian Tate,Male,3878,1934-12-25,O- -Juan Diaz,Female,3879,1958-10-17,B- -Shelby Snyder,Male,3880,1967-08-24,A+ -Edward Jones,Male,3881,1977-12-14,AB- -Paul Graham,Male,3882,1992-10-29,AB- -Cheryl Smith,Female,3883,1937-04-12,B+ -Pamela Lewis,Female,3884,1939-08-02,O- -Megan Davis,Male,3885,1998-04-24,AB- -Mary Owens,Female,3886,1935-10-22,AB- -Whitney Stewart,Male,3887,1941-01-03,O- -Howard Hayes,Male,3888,1957-12-18,AB- -Mr. James Coleman DDS,Female,3889,1938-12-04,B- -Vincent Middleton,Female,3890,1957-08-08,O+ -Heather Stein,Male,3891,1934-12-29,A+ -Jacob Morrison,Female,3892,1978-11-23,B- -Joanna Schmidt,Female,3893,1980-12-30,B- -Jessica Herrera,Female,3894,1966-11-15,O+ -Gary Rivera,Female,3895,1983-09-27,B+ -Phillip Knight,Female,3896,1949-02-20,A- -Alison Jones,Female,3897,1988-12-26,A+ -Kyle Smith,Female,3898,1938-08-01,B+ -Jo Ramirez,Male,3899,1980-07-11,B+ -David Mckenzie,Male,3900,1975-11-04,B- -Mr. Bobby Johnson,Male,3901,1972-04-04,AB- -Elizabeth Ramirez,Male,3902,1971-02-02,B+ -Kelly Shaw,Male,3903,1958-01-07,O+ -Elizabeth Baldwin,Male,3905,1974-11-04,A- -Robert Morales,Male,3906,1933-02-15,A+ -Vanessa Rice,Male,3907,1979-05-03,AB+ -Patrick Joseph,Female,3908,1985-10-23,O- -Jaime Maxwell,Male,3909,1957-10-01,AB- -Angelica Cook,Male,3910,1965-07-02,O+ -Tara Schroeder,Female,3911,1939-03-16,O- -Richard Morrow,Male,3912,1992-11-18,A- -Dr. Melissa Johnson MD,Female,3913,1951-06-15,A- -Daniel Riggs,Female,3914,1960-08-03,AB+ -Nicole Lee,Female,3915,1974-11-16,B+ -Jennifer Bowen,Male,3916,1938-12-12,B- -Christopher Wallace,Male,3917,1947-12-22,B- -Pamela Morales,Female,3918,2001-08-23,A+ -Stephanie Powers,Male,3919,1988-05-08,O+ -Cynthia Welch,Female,3920,1981-12-29,O+ -Kayla Barnes,Female,3921,1961-03-30,B+ -Stephanie Allen,Female,3922,1946-03-04,A- -Steven Lopez,Female,3923,1973-11-19,A+ -Jason Mcguire,Female,3924,1983-10-27,B+ -Steven Jackson,Male,3925,1950-11-03,O- -Briana Mendoza,Female,3926,1977-05-11,B- -Anna Green,Male,3927,1935-07-05,B- -Drew Jones,Male,3928,1978-10-22,A- -Scott Underwood,Female,3929,1990-01-16,O+ -Diane Allen,Female,3930,1960-10-16,A- -Tammy Wright,Male,3931,1967-10-04,B+ -Patrick Booker,Female,3932,1962-02-20,O+ -Richard Carter,Female,3933,1970-05-01,A+ -Jo Lindsey,Female,3934,1960-06-12,B+ -Anthony Perry,Male,3935,1979-11-13,AB+ -Donald Martinez,Male,3936,1954-01-02,O- -Michael Meza,Male,3937,1992-07-26,AB- -Carlos Morgan,Male,3938,1967-07-09,AB+ -Wyatt Edwards,Female,3939,1932-07-18,B+ -Shane Conway,Male,3940,1962-09-21,AB+ -Jose Wheeler,Female,3941,1984-12-26,O+ -Jason Bailey,Female,3942,2001-04-17,O+ -Sarah Johnson,Female,3943,1973-05-20,O+ -Pamela Chavez,Male,3944,1977-09-29,AB+ -Thomas Wilson,Male,3945,1973-02-11,A- -David Wells,Male,3946,1945-09-23,O- -Ronald Campbell,Male,3947,1980-01-23,A- -Rebecca Galloway,Male,3948,1956-06-02,O+ -John Wilson,Male,3949,1949-02-10,B+ -John Jordan,Female,3950,1949-05-10,B+ -Linda Perry,Male,3951,1956-04-05,B- -Kristi Long,Female,3952,1984-03-17,A- -Robert Hayes,Male,3953,1931-03-19,O- -Timothy Baker,Female,3954,1991-11-19,B+ -Nancy Wilson,Male,3955,1942-09-27,B- -Bonnie Cobb,Male,3956,1996-08-05,O- -Mikayla Hood,Female,3957,1996-04-21,O+ -Brian Rice,Female,3958,1955-08-28,A- -Steven Perez,Female,3959,1950-10-20,AB- -Molly Watts,Female,3960,1969-03-22,A+ -Katherine Garcia,Male,3961,1942-03-17,O+ -Sandy Miller,Female,3962,1948-01-18,B+ -Robin Salas,Female,3963,1974-10-03,AB+ -Sandra Sanchez,Female,3964,2000-09-23,AB- -Matthew Lynn,Female,3965,1962-05-19,AB+ -Dominique Wade,Male,3966,2002-04-30,O- -Sergio Colon,Male,3967,1981-03-07,AB+ -Alan Taylor,Male,3968,1968-09-16,AB- -Charles Alvarez,Male,3969,1992-01-08,AB- -Debbie Warren,Female,3970,1977-05-08,O+ -Raymond Reyes,Female,3971,1986-09-28,B- -Nicole Alvarez,Male,3972,1985-11-01,O+ -Grace Chavez,Male,3973,1993-01-02,O- -Kendra Hodges,Female,3974,1935-12-10,B+ -Kelly Harris,Male,3975,1980-10-21,AB+ -Karen Walker,Male,3976,1990-05-18,B- -Terri Gentry,Male,3977,1947-04-15,A- -Shawn Nichols,Male,3978,1952-10-07,A+ -Brittney White,Female,3979,1952-01-02,AB- -Charles Myers,Male,3980,1993-06-12,B- -Sarah Hendricks,Male,3981,1932-02-25,B+ -Caleb Fisher,Male,3982,1946-10-23,A- -Doris Bray,Female,3983,1947-05-16,B- -Jamie Martin,Female,3984,1981-06-22,O+ -Cathy Chavez,Female,3985,1999-06-20,A- -Kyle Jacobson MD,Female,3986,1986-03-26,A+ -Marcus Gray,Male,3987,1970-12-30,B+ -Crystal Henderson,Female,3988,1945-05-21,AB- -Samantha Diaz,Female,3989,1935-04-21,B+ -Katherine Harmon,Male,3990,1940-06-04,O- -Jennifer Burton,Female,3991,1949-07-31,O- -Charles Rodgers,Male,3992,1955-12-29,B- -Willie Jimenez,Female,3993,1963-10-30,A- -Michael Morales,Female,3994,1938-11-11,B- -Robert Sandoval,Female,3995,1973-05-23,AB+ -Amanda Smith,Female,3996,1936-06-10,A+ -Robert Cruz,Male,3997,1935-04-17,AB- -Cassandra Myers,Female,3998,1959-11-18,B- -Ronald Brown,Male,3999,1953-06-05,AB+ -Sandra Morris,Male,4000,1988-04-26,A- -Cheryl Freeman,Female,4001,1945-01-20,A+ -Jason Howard,Male,4002,1958-12-22,AB- -Ms. Megan Hale,Male,4003,1977-06-13,O- -Carrie Zimmerman,Female,4004,1967-12-18,AB+ -Mia Davis,Male,4005,1956-03-14,A- -Monica Garcia,Female,4006,1978-10-19,A+ -Lawrence Chavez,Female,4007,1996-01-09,AB+ -Jackie Fields,Male,4008,1943-04-20,B- -Brendan Grimes,Female,4009,1930-12-07,O+ -Michael Myers,Female,4010,1960-08-12,O- -Travis Saunders,Female,4012,1975-11-27,B- -Ann Weeks,Male,4013,2001-07-19,B- -Joshua Sanders,Female,4014,1953-04-01,A- -Rachel Tate,Female,4015,1930-05-19,A- -Debra Stanley,Male,4016,1930-12-25,A+ -Maria Cisneros,Female,4017,1988-05-11,A- -David Burgess,Male,4018,1956-08-06,AB+ -Gloria Anderson,Female,4019,1984-04-27,O- -Renee Ramsey,Female,4020,1934-06-16,B- -Larry Gibson,Female,4021,2000-11-08,A+ -Michael Padilla,Female,4022,1973-10-18,B+ -Dr. Joseph Roberts,Male,4023,1992-12-31,B+ -Daniel Tucker,Female,4024,1943-09-14,O- -Benjamin Rivera,Male,4025,2000-05-23,A- -Sarah Olson,Female,4026,1966-05-15,A- -Victoria Moran,Male,4027,1948-03-19,AB+ -Anthony Singh,Male,4028,1992-06-04,A- -Joshua Rivera,Female,4029,1983-07-16,B+ -Heather Stevens,Male,4030,1985-05-11,B- -Wayne Gutierrez,Male,4031,1996-10-22,B+ -Martha Thomas,Male,4032,1935-11-22,AB- -Larry Mccoy,Female,4033,1955-10-26,B- -David Donovan,Male,4034,1968-07-12,B- -Mitchell Keller,Female,4035,1962-08-28,A- -Shelby Gallagher,Female,4036,1948-11-27,O- -Stephen Weeks,Female,4037,1982-08-14,A- -Megan Thompson,Female,4038,1964-02-04,O- -Theresa Bailey,Female,4039,2000-01-08,O- -Jessica Lopez,Female,4040,1974-05-22,B+ -Ryan Mathews,Male,4041,1981-11-20,O- -Ronald Lindsey,Female,4042,1933-07-31,A+ -Justin Kemp,Male,4043,1970-08-31,O+ -Brooke Brown,Male,4044,1999-01-31,A- -Ethan Farley,Male,4045,1937-04-14,A+ -Jimmy Johnson,Female,4046,1958-06-26,B- -Melissa Brown,Male,4047,2002-07-07,A+ -Terry Flores,Male,4048,1985-01-26,AB+ -Robin Mayer,Male,4049,1958-01-12,AB- -Lori Jones,Male,4050,1946-12-30,O- -Paula Weaver,Female,4051,1983-07-08,A- -Taylor Blanchard,Male,4052,1933-02-14,AB+ -Joseph Ramirez,Female,4053,1998-01-06,A- -Tyler King,Female,4054,2002-05-04,B+ -Jessica Burns,Female,4055,1934-09-05,AB- -Travis Wood,Male,4056,1939-12-10,AB+ -David Miller,Female,4057,1983-08-26,A- -Jennifer Garcia,Male,4058,1958-09-16,B- -Christopher George,Male,4059,1962-11-30,O- -Lauren Savage,Male,4060,1992-10-04,AB+ -Paige Hansen,Female,4061,2001-06-03,B- -Melissa Smith,Male,4062,1976-02-28,O- -David Logan,Male,4063,1951-01-15,O+ -Nicholas Stewart,Female,4064,1999-12-17,B- -Kristi Stephens,Female,4065,1933-04-22,A+ -Susan Brooks,Male,4066,1966-07-02,A- -Terri Reed,Female,4067,1935-05-15,B+ -Linda Walker,Female,4068,1931-07-12,O- -Gail Jones,Female,4069,1973-06-27,AB+ -Alyssa Leonard,Male,4070,1968-01-15,AB- -Ronald Bishop,Female,4071,1932-06-01,AB+ -Dana Turner,Male,4072,1943-01-14,A+ -Ms. Gina Ross,Male,4073,1946-01-24,A- -Dana Horton,Female,4074,1993-12-03,A+ -Nicole Carroll,Female,4075,1965-03-27,AB+ -Leslie Chapman,Male,4076,1949-08-15,B+ -Lisa Curry,Female,4077,1965-07-18,A- -Paige Diaz,Male,4078,1951-09-17,AB- -Jeremy Carroll,Female,4079,1944-08-22,O- -Kathryn Flynn,Male,4080,1949-11-26,A- -Nicole Griffin,Female,4081,2001-09-11,B- -Norma Adams,Male,4082,1997-02-07,A- -Lisa Perez,Female,4083,1967-01-14,A+ -Edwin Jordan,Female,4084,1936-09-20,A+ -Jared Robinson,Female,4085,1987-03-01,A+ -Gregory Atkins,Female,4086,1980-03-09,AB- -Joseph Tucker,Female,4087,1965-07-27,A- -Kim Mckee,Male,4088,1937-09-09,B+ -Daniel Burns,Female,4089,1948-03-09,B+ -Laura Barrett,Male,4091,1940-06-22,A- -Amanda Stevenson,Female,4092,1939-09-07,B+ -Brett Rogers,Female,4093,1991-06-22,O+ -Tiffany Mccormick,Female,4094,1971-12-01,AB- -Jennifer Sanchez,Male,4095,1940-05-30,O- -James Johnson,Male,4096,1987-09-22,O- -Andrew Tucker,Female,4097,1980-04-02,O- -Danielle Morales,Male,4098,1990-10-03,O- -Danielle Hansen MD,Female,4100,1946-10-26,O- -Wendy Hill,Male,4101,1982-07-30,B+ -Whitney Curry,Female,4103,1954-11-25,AB+ -David Reeves,Female,4104,1930-12-31,A+ -Kurt Perkins,Female,4105,1986-07-08,AB- -David Morris,Male,4106,1983-05-26,AB+ -Ellen Mccoy,Male,4107,1972-12-14,AB- -Leah Kelley,Male,4108,1935-02-07,O+ -Tammy Brown,Male,4109,1975-03-05,A- -Kenneth Frederick III,Female,4111,1949-05-25,B- -Kim Gay,Female,4112,1951-12-13,A+ -Ryan Russell,Female,4113,1936-07-12,O+ -Kristi Cox,Male,4114,1971-04-08,AB+ -Carlos Ruiz,Male,4115,1940-10-10,B- -John Strickland,Male,4116,1965-12-10,A- -Kayla Young,Female,4117,1969-08-26,O+ -Monica Horne,Female,4118,1951-03-14,A- -Chad Stone,Female,4119,1974-04-05,A- -Isaiah Adams,Male,4120,1989-10-04,B+ -Daniel Weiss,Male,4121,1936-10-26,AB- -Chris Cook,Male,4122,1993-12-20,B- -Travis Thompson,Male,4123,1966-06-25,AB- -Linda Nixon,Male,4124,1999-11-13,A- -Tiffany Adams,Male,4125,1995-11-01,B+ -Paul Rogers,Male,4126,1979-07-31,O+ -David Boyer,Female,4127,1997-04-05,A- -Kenneth Mason,Female,4128,1982-06-08,AB+ -Jeffrey Johnson,Male,4129,1933-02-11,A- -Tim Green,Female,4130,1986-02-17,AB- -Scott Hodge,Male,4131,1939-05-14,B- -Taylor Mayo,Female,4132,1946-01-02,O+ -David Martinez,Male,4133,1987-12-10,AB- -Angie Murphy,Female,4134,1940-09-11,A- -Tiffany Payne,Female,4135,1984-10-25,AB+ -Charles Hurst,Male,4136,1982-12-11,A+ -Brenda Lara,Male,4137,1991-02-03,B+ -Randall Torres,Female,4138,1963-12-27,AB+ -Candice Gallegos,Female,4139,1930-10-04,A- -Rebecca Brown,Female,4140,1980-05-01,AB+ -Tammie Christian,Male,4141,1978-03-21,B+ -Amanda Christensen,Female,4142,1947-05-09,A+ -John Long,Male,4143,1962-09-14,AB+ -Renee Young,Female,4144,1985-01-31,A+ -Douglas Faulkner,Female,4145,1973-07-20,A- -Anthony Gonzales,Female,4146,1976-10-05,A+ -Valerie Gardner,Female,4147,2000-11-14,AB- -Cassandra Castillo,Female,4148,1986-03-24,AB- -William Wood,Female,4149,1996-06-28,A+ -Patrick Quinn,Male,4150,1995-04-24,O+ -James Thomas,Male,4151,1963-09-11,B- -Elizabeth Burns,Male,4152,1995-06-30,O+ -Cody Rush,Male,4153,1958-10-04,A+ -Victoria Kim,Female,4154,1982-08-21,B- -Jacob Walton,Male,4155,1941-07-10,AB- -Bruce Hudson,Male,4156,1961-09-25,B- -Kyle Freeman,Female,4157,1998-10-08,A+ -Mia Williams,Male,4158,1959-10-22,AB- -Brittany Lucero,Male,4159,1965-03-24,B- -David Roberson,Male,4160,1932-12-24,B- -Jamie Joyce,Male,4161,1939-03-18,O+ -Kenneth Garcia,Female,4162,1930-01-25,B- -Anthony Kelly,Female,4163,1956-09-25,A- -Margaret Massey,Female,4164,1991-09-06,A+ -Benjamin Taylor,Female,4165,1990-05-18,O- -Elaine Palmer,Female,4166,1986-06-16,O- -Adriana Griffin,Female,4167,1957-04-08,O- -Cynthia Mclean,Male,4168,1965-06-01,A+ -Wyatt Jones,Male,4169,1952-02-03,O- -Steven Gray,Female,4170,1980-12-23,O+ -Tyler Howard,Male,4171,1949-12-22,A+ -Sarah Gates,Female,4172,1952-12-23,A- -Dr. Janet Ramos,Female,4173,1961-03-09,AB- -Lisa Bush,Male,4174,1953-02-17,A- -Courtney Moore,Male,4175,1985-02-12,A+ -Christopher Hudson,Female,4176,1958-07-26,A+ -Michelle Johnson,Male,4177,1971-03-05,B- -Scott Long,Male,4178,1983-07-21,B- -Beverly Monroe,Female,4179,1961-07-25,B- -Virginia Hunter,Female,4180,1988-04-07,B+ -Frank Lindsey,Male,4181,1988-08-25,B+ -Valerie Willis,Female,4182,1973-02-07,AB+ -Amber Powell,Male,4183,1995-03-12,B+ -Chloe Clark,Male,4184,1953-07-24,O+ -Hannah Scott,Female,4185,1935-07-08,A+ -William Garcia,Male,4186,1933-10-13,A- -Clayton Scott,Male,4187,1933-01-03,A+ -Cole Johnson,Female,4188,1984-03-28,B- -Haley Andrade,Female,4189,1984-11-12,A+ -Tammy Mckinney,Female,4191,1996-08-04,AB- -Megan King,Male,4192,1954-12-02,B+ -Mark Martinez,Male,4193,1930-07-07,A+ -Adam Jones,Female,4194,1962-09-18,A- -Jessica Kaufman,Male,4195,1957-12-12,O- -Sharon Rivers,Male,4196,1989-09-01,AB- -Eric Long,Female,4197,1935-09-24,AB- -Nichole Alvarez,Male,4198,1980-09-09,A+ -Christian Mckenzie,Female,4199,1944-05-09,AB+ -Roger Scott,Female,4200,1953-05-29,B- -James Dunn,Female,4201,1990-04-27,O+ -Alexander Perkins,Female,4202,1944-03-13,O+ -Jessica Gomez,Female,4203,1971-10-24,O- -Albert Salas,Male,4204,1945-10-25,O+ -Anita Cook,Male,4205,1964-02-01,O+ -Mrs. Michelle Berry,Male,4206,1996-07-10,B- -Larry Welch,Male,4207,1995-07-10,B+ -Curtis Shaw,Male,4208,1951-06-03,B- -Eugene Romero,Male,4209,1973-01-12,AB+ -Arthur Stephenson,Female,4210,1950-02-20,A- -Ashley Donovan,Female,4211,1947-09-14,O- -Samantha Mccoy,Female,4212,1964-11-15,O+ -Tracy Hill,Female,4213,1978-12-16,AB+ -Angela Cole,Female,4214,1966-06-25,O- -Crystal Rose,Male,4215,1958-05-04,AB- -Christopher Clark DDS,Male,4216,1936-12-30,O+ -Anna Reyes,Female,4217,1989-09-01,O+ -Norman Golden,Female,4219,1938-01-30,B- -Troy Rhodes,Female,4220,1978-04-01,A+ -Stephanie Rivera,Male,4221,1999-12-14,O- -Tara Allison,Male,4222,1942-12-11,O+ -Brittney Thomas,Male,4223,1985-09-18,B+ -Richard Hanson,Male,4224,1945-07-27,O- -Jillian Smith,Female,4225,2000-02-29,A- -Morgan Johnson,Male,4226,1940-02-19,B+ -Fred Sullivan,Male,4227,1937-08-12,AB+ -Nathaniel Parker,Male,4228,1995-02-11,B+ -Monica Obrien,Male,4229,1979-03-17,AB+ -Cassandra Warner,Male,4230,1936-06-26,A+ -Rachel Sanchez,Male,4231,1972-09-09,O+ -Mason Phelps,Female,4232,1990-09-16,B+ -Rachael Henderson,Female,4233,1931-03-13,A- -Matthew Miller,Female,4234,1937-09-29,B- -Tamara Miller,Male,4236,1934-04-06,O+ -Darren Barnes,Female,4237,1995-08-02,O- -Bryan Mayer,Male,4238,1966-08-04,AB- -Yolanda Smith,Female,4239,1995-05-04,AB+ -Jessica Greene,Female,4241,2000-11-09,O- -Desiree Giles,Male,4242,1971-03-28,A+ -Carlos Gonzales,Female,4243,1958-12-16,AB+ -Mary Torres,Male,4244,1975-05-11,B- -Jessica Moore,Male,4245,1949-09-08,AB+ -Dr. Kenneth Ford,Male,4246,1993-03-02,AB- -Elizabeth Ayers,Male,4247,1945-03-28,B+ -Jennifer Carter,Female,4248,1994-09-07,A- -Timothy Holland,Male,4249,1972-01-30,B+ -Richard Wells,Male,4250,1995-10-22,O+ -Jessica Lynch,Male,4251,1990-02-14,AB- -Robert Stewart,Male,4252,1934-05-09,A- -Cynthia York,Male,4253,2001-08-19,AB- -Rachael Green,Female,4254,1999-02-03,O+ -Steven Smith,Male,4255,1930-06-09,AB+ -Joseph Duran,Male,4256,1963-04-03,A+ -Lisa Thomas,Female,4257,1972-02-03,O+ -Paul Dudley,Male,4258,1947-12-13,O+ -Andrea Willis,Female,4259,1974-06-16,A- -Jaclyn Jones,Female,4260,1955-03-14,B- -Sara Ward,Female,4261,1952-07-28,B+ -Deanna Marsh,Male,4262,1970-05-14,AB+ -Annette Jones,Male,4263,1966-07-04,O+ -Jeffrey Davis,Female,4265,1966-07-12,A+ -Todd Saunders,Female,4266,1993-08-08,O- -Raymond Boyer,Female,4267,1981-03-05,AB+ -Logan Castillo,Male,4268,1933-05-13,B- -Shawna White,Female,4269,1994-08-23,AB- -Angelica Allen,Male,4270,1945-04-22,O+ -David Williams,Female,4271,1993-10-20,A+ -Tracy Lopez,Female,4272,1945-04-17,AB+ -Thomas Munoz,Male,4273,1955-04-07,A+ -Jennifer Zuniga,Female,4274,1946-07-22,A+ -Sherri Scott,Female,4275,1963-07-04,B+ -Cody Bates,Male,4276,1972-11-05,A- -Randy Stewart,Female,4277,1943-07-17,AB- -Ann Joseph,Female,4278,1951-09-15,B- -Elizabeth Webb,Female,4279,1964-08-11,B+ -Erika Miller,Female,4280,1973-10-20,AB+ -Carlos Esparza,Female,4281,1966-08-26,O+ -Jill Cummings,Male,4282,1949-03-18,B- -Michael Rodriguez,Male,4283,1968-05-28,O+ -Vanessa Mcmillan,Female,4284,1973-08-03,O- -Janet Macias,Male,4285,1996-02-06,A+ -Andrew Brown,Male,4286,1967-08-27,O- -Leslie Ross,Female,4287,1988-10-13,A- -Kristen Hobbs,Male,4289,2000-09-30,A+ -Ronald Riddle,Female,4290,1994-06-19,AB- -Russell Bell,Male,4291,1980-01-07,B- -Joseph King,Female,4292,1979-10-24,O+ -Gabriel Wallace,Female,4293,1938-09-03,B+ -Jeffrey Carrillo,Male,4294,1962-10-29,A- -Julie Dunlap,Female,4295,1992-04-01,AB- -Joshua Myers,Female,4296,1999-07-11,O+ -Dr. Michael Smith PhD,Female,4297,1968-07-27,B- -Christopher Alvarado,Male,4298,1991-06-10,AB+ -Brian Fox,Male,4299,1936-09-03,A- -Charles Butler,Female,4300,1992-07-26,O- -Steven Osborne,Male,4301,1971-10-28,O- -Kelly Baker,Female,4302,1999-09-20,B+ -Randy Buchanan,Female,4303,1991-02-25,O+ -Anne Hernandez,Female,4304,1944-06-12,O+ -Daniel Carter,Male,4305,1954-04-04,O+ -Valerie Williams,Male,4306,1951-05-29,A- -Jonathan Austin,Female,4307,1942-12-12,B- -Andrew Mills,Male,4308,1982-01-16,AB+ -Luis Fisher,Female,4309,1945-09-17,O- -Debra Smith,Female,4310,1986-06-12,AB- -Brendan Stanley,Female,4311,1945-11-11,A+ -John Byrd,Male,4312,1942-05-21,A- -Darin Mosley,Female,4313,1945-04-03,A- -Scott Oconnor,Female,4314,1974-05-19,B- -Angela Williams,Female,4315,1971-09-29,O- -John Hoffman,Male,4316,1999-07-12,B+ -James Green,Female,4317,1958-06-03,AB+ -Shelby Brown,Female,4318,2000-04-25,B- -Robert Cook,Female,4319,1936-02-03,AB- -John Brandt,Female,4320,1952-12-20,O- -Michael Mueller,Female,4321,1973-08-10,B- -Tina Lee,Male,4322,1991-07-15,O- -Monica Jackson,Male,4323,1961-12-28,O- -Danny Allison,Male,4324,1959-02-18,B+ -Daniel Wilson,Female,4325,1953-09-19,A- -Linda Allen,Female,4326,1947-06-02,AB+ -Rebecca Gomez,Male,4327,1935-05-03,A- -Misty Meyers,Male,4328,1963-02-08,A+ -Olivia Green,Male,4329,2002-10-16,AB+ -Amber Sharp,Male,4330,1962-11-01,O- -Michael Ellis,Male,4331,1994-04-13,B- -Katherine Bailey,Female,4332,1947-04-20,AB- -Monique Yang,Male,4333,1985-04-02,B+ -Thomas Alexander,Female,4334,1963-05-08,AB+ -Jocelyn King,Male,4335,1930-08-23,A+ -Nancy Perez,Male,4336,1972-02-02,O- -Richard Baxter,Male,4337,1999-10-30,AB- -Renee Collins,Male,4338,1984-09-25,AB+ -Dana Davis,Female,4339,1996-11-17,A- -Bradley Cohen,Male,4340,1931-06-07,A- -Steve Melendez,Female,4341,1991-01-09,AB+ -Alexander Sellers,Female,4342,1964-10-27,AB+ -Marilyn Owens,Male,4343,1988-03-29,AB+ -Eric Mason,Male,4344,1956-11-21,AB- -Jessica Werner,Female,4345,1945-12-20,A- -Lisa Diaz,Female,4346,1965-02-06,B- -Drew Tyler,Female,4347,1974-05-21,A+ -Michael Wong,Male,4348,1949-07-02,A+ -Sara Hill,Male,4349,1945-12-30,B+ -Megan Hernandez,Female,4350,1933-08-09,O- -William Cox,Male,4351,1966-02-21,O+ -Mary Bauer,Female,4352,1977-12-08,B- -Wendy Davis,Male,4353,1990-04-01,A- -Lauren Johnson,Male,4354,1989-09-15,O- -Laura Williams,Female,4355,1971-08-20,B+ -Dr. Ronald Gutierrez,Male,4356,1981-12-10,O- -Cindy Romero,Female,4357,2000-02-02,AB+ -William Maynard,Female,4358,1990-05-22,O+ -Carrie Bautista,Female,4359,1933-10-10,A- -Crystal Marshall,Male,4360,1984-02-05,O+ -Karen Chavez,Female,4361,1934-02-28,B- -Isabel Vang,Female,4362,1990-09-04,O+ -Bonnie Page,Female,4363,1951-09-23,O- -Carolyn Smith,Male,4364,1946-09-07,O+ -Alexis Wilson,Male,4365,1997-11-27,O+ -Timothy Higgins,Female,4366,1944-08-30,A+ -Michelle Carney,Female,4367,1988-06-17,A- -Christian Owen,Male,4368,1954-11-14,A- -Stephen Richardson,Female,4369,1945-04-06,O- -Yolanda Rogers,Female,4370,1986-01-03,AB- -Charles Ray,Female,4371,1966-06-25,O+ -Beverly Bryant,Male,4372,1936-03-07,O+ -Julie Fisher,Male,4373,1998-05-16,AB+ -Sydney Mills,Female,4374,1966-09-20,A- -Jasmine Palmer,Female,4375,2002-12-23,O+ -Yesenia Walker,Female,4376,1971-09-16,A- -Ryan Kirby,Male,4377,1973-07-01,O+ -Cheryl Martinez,Female,4378,1986-12-21,A+ -Jorge Sweeney,Female,4379,1983-09-21,O- -Eric Lopez,Male,4380,1985-07-08,A- -Darlene Santiago,Female,4381,1935-06-29,B- -Danielle Wallace,Male,4382,1980-05-18,O- -Mark Johnson,Male,4383,1959-09-26,AB+ -Adrian Lopez,Male,4384,1957-07-28,O- -Kimberly Bowen,Male,4385,1955-09-15,O+ -Lisa Lewis,Male,4386,1979-09-17,AB+ -Caleb Mccarty,Male,4387,1997-09-23,O- -Christopher Lee,Female,4388,1985-09-29,B+ -Samuel Rodriguez,Female,4389,1979-08-27,AB+ -Richard Schwartz,Female,4390,1999-05-30,B+ -Kimberly Brown,Female,4391,1995-03-15,B- -Russell Hawkins,Female,4392,1969-12-31,O- -Christopher Cantu,Female,4393,1994-06-28,A- -Andrew Mclaughlin,Male,4394,1992-07-27,A- -George Steele,Female,4395,1974-10-20,AB- -Megan Woods,Male,4396,1999-11-10,O+ -Mark Solomon,Male,4397,1983-09-04,B+ -John Lawrence,Male,4398,1976-05-02,AB+ -Chad Meyer,Female,4399,1970-08-02,AB- -Chris Velez,Female,4401,1978-11-10,AB- -Tonya Sanchez,Female,4402,1989-01-19,A+ -James Small,Female,4403,1953-05-27,B+ -Nicole Pineda,Female,4404,1961-07-12,AB+ -Sheila Mullins,Female,4405,1930-08-23,AB- -Monica Smith,Male,4406,1969-11-14,A+ -David Arias,Female,4407,1979-02-05,AB- -Carmen Horne,Female,4408,1950-06-25,O+ -Emily Moore,Female,4409,1941-07-15,B- -Seth Cochran,Female,4410,1958-03-08,B+ -Andrew Yu,Male,4411,1934-08-01,A+ -Michael Wells,Female,4412,1993-03-23,B- -Grace Franco,Female,4413,1996-09-17,AB+ -Katherine Alexander,Male,4414,1935-10-02,O+ -Monica Romero,Male,4415,1962-06-11,A+ -April Bridges,Male,4416,1985-02-13,AB+ -Angela Solomon,Female,4417,1983-07-19,AB- -Michele Campbell,Female,4418,1979-10-30,A- -Wendy Perez,Male,4419,1940-07-08,O- -Lauren Donaldson,Male,4420,1957-12-02,AB+ -Cynthia Reid,Female,4421,1951-12-13,B- -Michael Campbell,Female,4422,1949-03-13,O+ -Aaron Wilson,Male,4423,1942-04-21,O+ -Jaime Morgan MD,Male,4424,1976-09-14,AB+ -Leslie Obrien,Female,4425,1997-01-01,AB- -Allen Jackson,Male,4426,1953-06-27,O- -Brandon Payne,Female,4427,1935-11-29,B+ -Kimberly Briggs,Female,4429,1982-02-22,B- -Lawrence Dixon,Female,4430,1935-08-27,AB+ -Jon Steele,Female,4431,1938-11-28,AB+ -Stephen Jackson,Male,4432,1988-06-28,A- -Ashley Smith,Female,4433,1995-12-13,O+ -Adrian Werner,Male,4434,1965-02-14,B- -Jessica Clark,Female,4435,1999-04-24,O- -Margaret Perez,Female,4436,1933-11-02,O+ -Corey Martin,Male,4437,1983-10-13,AB+ -Patrick Poole,Male,4438,1971-08-07,O+ -Brittany Allen,Male,4439,1963-02-13,O+ -Anna Glass,Male,4440,1985-08-07,A+ -Michelle Christian,Female,4441,1941-07-16,O+ -Brent Robinson,Male,4442,1983-09-11,AB- -Brandy West,Female,4443,1960-03-07,O+ -John Clark,Male,4444,1962-09-20,B+ -Stacey Ramirez,Male,4445,1959-04-23,AB- -Stephanie Lyons,Female,4447,1958-04-27,B- -Kristy Benton,Female,4448,1962-06-29,O+ -Shawn Sexton,Female,4449,1937-07-08,O- -James Robbins,Male,4450,1991-07-15,AB- -Virginia Brown,Male,4451,1940-08-02,AB- -Tammy Martinez,Male,4452,1962-09-26,AB+ -Kara Gilbert,Male,4453,1945-12-06,B- -Troy Pineda,Male,4454,1980-12-10,O+ -Kyle Harrison,Male,4455,1974-01-23,A- -Lauren Savage,Female,4456,1982-07-03,O- -Jonathan Bryant,Male,4457,2001-12-07,AB+ -Tabitha Jackson,Male,4458,1972-06-02,B- -Natalie Bradley,Female,4459,1985-12-25,B+ -Christine Wood,Female,4460,1979-01-12,AB- -William Grant,Male,4461,1952-07-08,O- -Brandi Blake,Female,4462,1991-10-30,B+ -Eric Anderson,Female,4463,1941-01-08,O+ -Ian Norton,Male,4464,1981-11-19,A- -Mary Schmidt,Female,4465,1982-07-14,A+ -David Pratt,Male,4466,1985-01-05,A+ -Gary Gonzalez,Female,4467,1946-11-08,B- -Nathaniel Meyer,Male,4468,1967-11-22,A- -Tiffany Griffin,Male,4469,1931-12-21,O- -Jason Robinson,Male,4470,1970-10-08,AB+ -Stephen Alvarez,Female,4471,1992-09-12,O- -Christina Olson,Male,4472,1987-05-25,A- -Mary Ruiz,Female,4473,1977-07-09,B+ -Mr. Gregory Perez,Male,4474,1985-01-14,AB- -Eric Vincent,Female,4475,1995-02-08,A+ -Heather Rose,Female,4476,1986-11-29,B- -Terrence Reid,Male,4477,1987-04-28,O+ -Laura Monroe,Female,4478,1980-11-25,O- -Gary Rodgers,Female,4479,1942-02-13,A+ -Vanessa Jones,Female,4480,1993-10-20,AB+ -Jessica Brown,Female,4481,1964-04-04,B- -Breanna Gordon,Female,4482,1971-03-31,O+ -Roy Barton Jr.,Male,4483,1967-09-11,O- -Alexander Stein,Male,4484,1960-12-17,AB+ -Nicholas Wade,Male,4485,1961-06-04,O+ -Joshua Duncan,Female,4486,1999-01-18,AB- -Bryan Coffey,Female,4487,1965-04-30,A+ -Joshua Harper,Female,4488,1997-10-26,AB- -Lucas Carroll,Female,4489,1953-10-07,A+ -Charles Jones,Female,4490,1936-01-14,AB+ -Nathaniel Martin,Male,4491,1989-06-29,B+ -Kathleen Webb,Male,4492,1983-10-30,AB- -Robert Rodriguez,Female,4493,1933-01-07,A+ -Nancy Wolfe,Male,4495,1944-05-10,B- -Elizabeth Huff,Female,4496,1948-02-10,AB+ -Lisa Chavez,Female,4497,1974-08-17,A+ -Russell Thompson,Male,4498,2000-09-07,O- -Karina Russell,Male,4499,1953-11-03,A+ -William Howell,Female,4500,1968-02-04,AB- -Emily Cole,Female,4501,1989-02-27,B- -Dr. Scott Armstrong,Male,4502,1998-05-12,O+ -Felicia Jacobs,Male,4503,1931-09-23,B+ -Sarah Chapman,Male,4504,1962-08-09,O+ -Christine Watson,Male,4505,2002-05-06,A+ -Jonathan Ward,Male,4506,1959-09-13,O+ -Kevin Hunt,Female,4507,1955-02-10,A+ -Steven Brock,Male,4508,1964-10-30,B- -Kelly Carter,Female,4509,1993-02-26,O+ -Michael Fernandez Jr.,Male,4510,1975-08-14,AB- -Stephanie Dixon,Male,4511,1975-06-30,AB- -Stacy Berry,Male,4512,1956-09-05,O- -Carolyn Watson,Female,4514,1945-07-31,A+ -Linda Phillips,Male,4515,1966-09-10,O+ -Sarah Collins,Female,4516,1950-12-21,AB- -James Maldonado,Female,4517,1959-01-10,A- -William Hall,Male,4518,1962-01-17,B- -Terry Booth,Female,4519,1930-01-26,B+ -Lisa Hurley,Male,4520,1972-02-14,B- -Donna Evans,Male,4521,1967-07-11,A- -Lindsay Evans,Male,4522,1995-04-22,A- -Jessica Alvarez,Male,4523,1992-05-29,O- -Chris Fox,Male,4524,1953-09-09,B- -Kristin Evans,Female,4525,1985-03-01,B- -Joseph Anderson,Male,4526,1992-12-04,O+ -Claudia Miles,Female,4527,1966-08-19,A+ -Nathan Patterson DDS,Male,4528,1988-10-29,AB+ -Jesse Young,Female,4529,1949-03-08,B+ -Dr. Jeffrey Leon,Female,4530,1984-05-24,B- -Brandon Roberts,Female,4531,1980-04-26,B+ -Erica Wood,Male,4532,1953-10-09,B+ -Makayla Reynolds,Female,4533,1932-12-08,B+ -Andrea Chavez,Male,4535,1993-03-22,B- -Angela Houston,Female,4536,1930-08-04,AB+ -Laura Sanchez,Male,4537,1995-09-06,B- -Laura Washington,Female,4538,1957-02-23,O+ -Jeremy Davenport,Male,4539,1956-10-15,O+ -Timothy Flores,Male,4540,1981-12-29,AB+ -Mary Tran,Female,4541,1997-09-20,AB- -Lisa Dillon,Female,4542,1970-08-03,B- -Ashley Smith,Male,4543,1987-12-13,AB- -Ricky Burns,Female,4544,1939-01-27,B+ -Betty Velazquez,Male,4545,1960-03-17,B- -Robin Patterson,Female,4546,1957-04-17,A+ -Stacey Rios MD,Female,4547,1974-06-20,B- -Steven Rush,Male,4548,2002-11-27,O+ -Heidi Martinez,Male,4549,1996-02-11,O- -Kevin Meza,Female,4550,1946-04-06,A- -James Hammond,Male,4551,1970-03-28,O- -Christopher Herring,Female,4552,1970-07-04,O- -Johnny Martinez,Female,4553,1936-04-14,O- -Lisa Jones,Female,4554,1990-06-04,A- -Amanda Lamb,Male,4555,1934-08-24,AB- -Andrea Bass,Female,4556,1960-08-16,A- -Kim Hart,Male,4557,1980-03-09,AB- -Phillip Cook,Female,4558,1962-11-10,A- -Justin Maxwell,Female,4559,1969-04-16,A- -James Rios,Female,4560,1982-06-24,B- -Ann Griffin,Male,4561,1939-12-24,AB- -Aaron Gonzales,Female,4562,1989-03-17,B- -Bobby Hurst,Female,4563,1947-07-31,A+ -Victoria Mccormick,Female,4564,1995-07-20,B- -Kevin Cain,Female,4565,1962-05-30,O- -Alexander Navarro,Female,4566,1982-02-06,AB+ -Jeremy Johnson,Female,4567,1992-11-24,AB+ -Casey Oliver,Male,4568,1947-05-25,O+ -Brandon Rodriguez,Male,4569,1958-11-11,O+ -Shelly Martinez,Male,4570,1935-04-17,B+ -Melinda Osborne,Female,4571,1961-06-13,B- -Robert Grimes,Male,4572,1934-10-24,A- -Stephanie Lee,Male,4573,1943-12-04,A- -Suzanne Hoffman,Male,4574,1945-06-08,AB+ -Cynthia Welch,Male,4575,1933-01-21,O- -Briana Miller,Male,4576,1959-06-17,AB- -Randy Warren,Female,4577,1962-01-04,O- -Mary Wilson,Male,4578,1931-05-08,B+ -Ms. Raven Smith,Male,4579,1954-02-15,O- -Robert Wood,Male,4580,1996-06-15,B- -Robert Davis,Male,4581,1947-09-23,B- -Jennifer Greene,Male,4582,1969-05-21,A+ -Paul Dean,Female,4583,1956-08-30,B+ -Charles Anderson,Female,4584,1988-06-07,O- -Kenneth Rios,Female,4585,1968-04-10,A- -Dr. Erica Williams,Male,4586,1962-03-09,A- -Kimberly Sanchez,Female,4587,1956-10-28,B+ -Mrs. Melissa Griffin,Female,4588,1969-12-29,O- -Tammy Perkins,Male,4589,1965-03-25,B- -Joseph Matthews,Female,4590,2002-06-18,B- -Mallory Rodgers,Female,4591,2000-10-11,A+ -Anthony Coleman,Male,4592,1982-05-15,A+ -David Smith,Male,4593,1951-07-16,O+ -Amanda Richard,Male,4594,1972-04-19,B+ -Jonathan Barber,Female,4595,1959-04-04,AB+ -Sherry Davis,Male,4596,1994-06-18,O- -Tammy Stone,Female,4597,1944-12-04,B+ -Dr. Matthew Evans,Female,4598,1989-04-03,A- -Tiffany Olson,Male,4599,1953-05-28,O- -Mr. Ryan Bradley,Female,4600,1949-09-04,A+ -Kevin Rowland,Male,4601,1946-09-16,A+ -Sandra Sloan,Female,4602,1999-09-01,O+ -Michael Sanders,Male,4603,1999-09-17,AB+ -Robert Coleman,Male,4604,2002-10-07,O+ -Caitlin Park,Female,4605,2000-10-19,A- -Nicholas Morales,Female,4606,1931-09-12,AB+ -Timothy Moore,Female,4607,1932-06-01,AB- -Krista Johnson,Male,4608,1999-06-20,O- -Lauren Mcdaniel,Male,4609,1939-12-22,O+ -Brandon Anderson,Male,4610,1933-07-20,A+ -Kim Hughes,Female,4611,1968-08-31,O+ -Alexander Davis,Male,4612,1997-12-15,AB- -Roy Jacobs,Female,4613,1937-12-05,O+ -Stephen Davis,Female,4614,1992-11-28,O- -Jennifer Floyd,Female,4615,1977-05-27,AB- -Sarah Castaneda,Male,4616,1944-09-10,B+ -Todd Wilkinson,Female,4617,1953-11-07,B+ -Matthew Bass,Male,4618,1983-08-27,B+ -Patricia Rodriguez MD,Female,4621,1981-06-15,A+ -Anna Wilkerson,Male,4622,1952-06-13,A+ -Jeffery Mora,Male,4623,1959-05-06,B+ -Wendy Bryant,Female,4624,1939-05-17,B+ -Pamela Cain,Female,4625,1957-12-16,B+ -Devin Mcneil,Female,4626,1964-12-30,B- -Diane Herrera,Male,4627,1993-12-16,B+ -Nathan Medina,Male,4628,1995-08-26,AB- -Mary Norman,Female,4629,1988-12-24,B- -Terri Duke,Female,4630,1964-02-26,B- -Rebecca Miller,Female,4631,1940-01-16,O- -Barry Hernandez,Female,4632,1991-03-19,O+ -Kelly Jones,Female,4633,1991-12-07,A+ -Carmen Welch,Female,4634,1952-08-30,A+ -Michelle Rodriguez,Female,4635,1964-01-07,O+ -Raymond Williams,Female,4636,1981-08-13,A+ -Sean Reyes,Female,4637,1991-11-18,O+ -Cory Peterson,Female,4638,1984-10-07,AB- -Jessica Davis,Female,4639,1979-05-04,O- -Mark Barnes,Male,4640,1952-04-30,B+ -Jason Moore,Male,4643,1939-10-24,O- -Bradley Wilson,Female,4644,1972-06-24,A- -Betty Burke,Female,4645,1940-12-23,O- -Gina Morris,Female,4646,1983-12-19,O+ -Jason Benton,Female,4647,1958-07-03,A- -Sierra Conley,Female,4648,1997-03-02,O+ -Kimberly Cruz,Female,4649,1980-12-05,B+ -David Wall,Male,4650,1943-08-08,AB+ -Lisa Smith,Female,4651,1981-05-06,A- -Lisa Clark,Male,4652,1984-10-26,B+ -Laurie Mosley,Male,4653,1959-04-14,B+ -Antonio Davidson,Male,4654,1955-01-05,A+ -Marcus Charles,Male,4655,1945-09-01,A+ -Patricia Carlson,Male,4656,1972-06-23,AB+ -Blake Bell,Female,4657,1960-06-20,AB+ -Elizabeth Spencer,Female,4658,1942-03-03,O- -Denise Moore,Male,4659,1950-11-10,B+ -Douglas Powell,Male,4660,1985-08-31,AB+ -Julian Fernandez,Female,4661,1979-06-13,O+ -Mario Mills,Male,4662,1933-04-11,B+ -Benjamin Velasquez,Female,4663,1963-09-02,B- -Lori Mendez,Female,4664,1937-08-19,O+ -Don Parker,Female,4665,1995-03-17,A- -Samuel Simpson,Female,4666,2001-04-15,AB+ -Patricia Baker,Female,4667,1951-09-15,A+ -Christian Cook,Female,4668,1983-12-11,O+ -Joshua Campbell,Male,4669,1999-02-10,A+ -Justin Carroll,Female,4670,1993-03-04,O+ -Jesse Gallegos,Male,4671,1935-12-17,A+ -Andrew Thompson,Male,4672,1985-02-08,AB- -Kevin Sweeney,Male,4673,1954-01-27,O+ -Charles Sawyer,Female,4674,1986-12-19,A- -Katelyn Davila,Male,4675,1985-04-30,A+ -Erica Fox,Female,4676,1955-02-10,B- -Richard Wood,Male,4677,1936-09-17,A- -Amanda Allen,Male,4678,1931-09-21,O- -Casey Stevens,Female,4679,1956-11-21,O+ -John Hubbard,Female,4680,1951-04-19,B- -Michele Olson,Female,4681,1940-02-14,O- -Mike Goodman,Male,4682,1984-12-01,O+ -Nancy Morgan,Male,4683,1985-08-13,B- -Christopher Campbell,Female,4684,1982-06-06,B- -Alyssa Taylor,Male,4685,1986-10-27,A- -Kim Martinez,Male,4686,1965-07-08,AB- -Diane Larson,Female,4687,1952-09-29,B- -Denise Anderson,Male,4688,1943-07-28,AB- -Luke Kelley,Male,4689,1957-11-30,AB+ -Parker Conrad,Male,4690,1976-10-02,A- -Wendy Hendrix,Female,4691,1983-07-08,B+ -Debbie Moore,Male,4692,1933-01-10,A+ -Angel Smith,Male,4693,1983-02-04,A- -Gerald Garcia,Male,4694,1980-10-10,O- -Abigail Horn,Male,4695,1972-03-18,A+ -Jason Wright,Male,4696,1997-09-15,A+ -Wesley Campbell,Male,4697,1968-11-05,B+ -Jose Ochoa,Male,4698,1984-12-26,AB- -Michael Castillo Jr.,Male,4699,1964-07-03,B+ -Michele Perez,Female,4700,1985-03-23,B+ -Robin Rodriguez,Male,4701,1955-05-06,A+ -Caleb Coleman,Male,4702,1986-05-11,B- -Carla Flowers,Female,4703,1968-11-29,AB- -Joe Daniels,Male,4704,1935-03-29,A+ -Kristin Nolan,Female,4705,2000-08-13,AB- -Megan Thomas,Female,4706,1989-12-21,AB+ -Kathryn Owens,Female,4707,1959-01-02,AB- -David Fletcher,Male,4708,1934-11-08,O+ -Theresa Jones,Female,4709,2002-08-27,B- -Danielle Massey,Male,4710,1982-06-21,O- -Kimberly Lopez,Female,4711,1965-08-01,O+ -Nathan Rodriguez,Female,4712,1995-03-08,O+ -Paul Berry,Female,4713,1937-11-11,B+ -Jerome Evans,Female,4714,1966-03-27,B+ -Kristin Mccann,Male,4715,1976-08-31,O+ -Amy Hickman,Female,4716,1991-12-13,A+ -Thomas Hickman,Male,4717,1958-10-22,AB- -Wendy Harmon,Female,4718,1959-02-20,AB- -Deanna Clark,Male,4719,1933-02-06,A- -Kaylee Hill,Female,4720,1931-12-01,A+ -Patrick Smith,Male,4721,1969-10-17,B- -Melissa Roth,Male,4722,1995-04-24,A+ -Cheryl Lynch,Female,4723,1958-01-04,A+ -Brendan Garrett,Female,4724,1947-03-30,A+ -Jason Lewis,Female,4725,1965-02-25,B- -Chase Johnson,Female,4726,1951-05-23,A- -Heidi Avila,Female,4727,1942-06-24,B- -Tricia Wells,Female,4728,1935-12-20,AB+ -Angel Martin,Male,4729,1960-03-14,A- -Tiffany Hudson,Male,4730,1954-10-27,AB+ -Jeremiah Lawson,Female,4732,1952-08-28,AB+ -Calvin Santos,Female,4733,1978-10-02,AB+ -Janet Hunt,Male,4734,1971-04-25,AB- -Lauren Henry,Female,4735,1938-09-16,O+ -Rebecca Delgado,Female,4736,1986-09-04,O+ -Debra Wright,Male,4737,1948-05-02,AB+ -Erin Bond,Male,4738,1956-03-28,AB+ -Sylvia Bradley,Male,4739,1976-07-16,O- -John Jackson,Male,4740,1967-12-22,B+ -Amber Taylor,Female,4741,1962-03-11,O+ -Melissa Pitts,Male,4742,1987-05-16,B+ -Tyler Little,Male,4743,1975-08-07,B+ -Julie Robles,Female,4744,1963-07-25,O- -Abigail Grant,Female,4745,1936-10-04,B+ -John Norris,Female,4746,1968-11-25,A- -Tracy Bradley,Female,4747,1971-03-09,O- -Jeremy Floyd III,Female,4748,2001-02-03,B+ -Matthew Roberts,Male,4749,1972-10-26,B+ -Paul Williams,Male,4750,1961-08-12,A+ -Steven Hickman,Female,4751,1963-10-02,B+ -John Sexton,Male,4752,1969-01-26,AB- -Diane Mccarthy,Female,4753,1972-07-02,A- -Justin Galloway,Female,4754,1969-02-25,B- -Karen Smith,Male,4755,1984-09-25,O+ -Rebecca Gilbert,Male,4756,1959-07-03,AB+ -Vanessa Thompson DDS,Female,4757,1963-08-01,B+ -Amanda Wilson,Female,4758,1983-04-12,A- -Brittany Vega,Female,4759,1975-08-26,AB+ -Terry Richardson,Female,4760,1997-02-02,B- -Joshua Mcbride,Female,4761,1948-02-10,A- -Michael Small,Female,4762,1938-11-27,O+ -Brian Bates,Male,4763,1950-04-21,A- -Calvin Wilson,Female,4764,1993-05-25,AB+ -Joshua Alexander,Female,4765,1975-08-15,AB+ -Carlos Lopez,Female,4766,1960-06-08,A+ -Anthony Decker,Male,4767,1976-06-12,B+ -Michael Becker,Male,4768,1943-07-30,O- -Heather Moreno,Male,4769,1997-12-24,A- -Stephanie Cooley,Male,4771,1941-09-16,AB+ -Andrea Dawson,Male,4772,1996-10-02,AB- -Theresa Anderson,Male,4773,1943-01-29,O+ -Zachary Williams,Female,4774,1977-02-11,AB- -Michael Arellano,Female,4775,1940-06-29,B- -Kelsey Jensen,Female,4776,1999-03-15,A- -Kimberly Davis,Male,4777,1970-10-19,A+ -Linda Rodriguez,Female,4778,1944-11-28,O+ -Steve Martin,Female,4779,1933-10-12,A+ -Lee Hall,Female,4780,1957-01-04,O- -Karen Mann,Female,4781,1992-09-30,AB+ -Brian Figueroa,Female,4782,1968-02-17,B+ -Pamela Chavez,Female,4783,1983-07-02,O+ -Brian Alvarez,Male,4784,1961-09-15,B- -Ronald James,Female,4785,1986-08-26,B+ -Olivia Walsh,Male,4786,1945-06-05,A- -Kelly Colon,Female,4787,1998-05-03,O- -Jimmy Nicholson,Female,4788,1945-11-28,O- -Katherine Arnold,Male,4789,1998-03-22,A+ -Francis Brown,Male,4790,1991-02-08,O- -Richard Garcia,Male,4791,1957-11-14,O+ -John Silva,Female,4792,1963-07-18,A+ -Peter Bennett,Female,4793,1965-12-14,B+ -Christopher Fernandez,Male,4794,1983-05-16,O- -Ana Hale,Male,4795,1986-01-13,A- -Jamie Obrien,Male,4796,1964-10-16,B+ -Brandon Mann,Female,4797,1983-09-24,B- -Laurie Martin,Female,4798,2002-09-24,A- -Jordan Gordon,Male,4799,1991-05-13,AB- -Jamie Martin,Male,4800,1979-12-03,O+ -Benjamin Johnson,Female,4801,1998-02-14,B- -Nicole Young,Male,4803,1937-07-12,B- -Hannah Cruz,Female,4804,1966-01-08,A+ -Daniel Morris,Male,4805,1993-02-23,AB+ -Susan Carlson,Male,4806,2000-05-24,A+ -Kevin Allison,Female,4807,1975-06-03,O+ -Michael Pacheco,Male,4808,1994-12-27,O+ -Joseph Rivera,Male,4809,1987-06-06,A+ -Nicholas Henderson,Female,4810,1939-06-13,AB+ -Christina Blankenship,Male,4811,1949-10-02,A- -Scott Wong,Male,4812,1985-04-17,A+ -Courtney Harris,Male,4813,1962-05-07,O+ -Lindsey Jacobs,Male,4814,1944-01-29,AB+ -Anthony Hale,Male,4815,1998-02-18,O+ -Jason Dixon,Male,4816,1937-06-01,AB+ -Noah Evans,Female,4817,1980-04-23,AB+ -Shannon Vazquez,Male,4818,1971-04-24,B+ -James Cummings,Female,4819,1998-01-11,A+ -Robin Harper,Male,4820,1962-05-27,A+ -Kimberly Watkins,Female,4821,1963-08-14,A+ -Brian Cabrera,Male,4822,1957-06-02,AB+ -Billy Johnson,Female,4824,1938-12-18,AB+ -Michael Castro,Male,4825,1969-05-03,O+ -Amanda Thompson,Female,4826,1942-06-05,B- -Kirk Jones,Female,4827,1964-05-03,A+ -Susan Li,Female,4828,1953-11-08,B+ -Jennifer Spencer,Male,4829,1955-02-07,AB- -Carlos Graham,Female,4830,1985-01-18,O+ -Heather Allen,Male,4831,1939-09-22,O+ -Kelly Hebert,Male,4832,1963-09-02,O- -Kevin Farmer,Male,4833,1960-01-09,A+ -Cynthia Farley,Female,4834,1937-10-03,A- -Thomas Arnold,Female,4835,1990-05-29,O+ -Mike Duarte,Female,4836,1992-11-14,O- -Justin Brady,Female,4837,1966-10-01,AB- -Robert Burton,Male,4838,1930-06-02,B+ -Kenneth Cunningham,Male,4839,1990-08-12,AB- -Jonathon Perez,Female,4840,1960-07-18,A- -Julie Wolfe,Male,4841,1960-05-31,A+ -Andrew Mcdonald,Male,4842,1937-09-01,AB+ -Latoya Carpenter DDS,Male,4843,1944-07-16,O- -Ronald Singleton MD,Female,4844,1957-03-24,AB+ -Gregory Adams,Male,4845,1937-02-23,AB- -Mr. Tyler Baxter,Female,4846,1963-01-15,AB- -Thomas Evans,Female,4847,1933-01-09,B- -Mrs. Lydia Jones,Female,4848,1959-05-17,B- -Mr. Terry Jackson,Male,4849,1995-01-05,B+ -Kathleen Whitaker,Male,4850,1986-05-10,A- -Stephen Chavez,Male,4851,1985-05-30,B- -Brian Roach,Male,4852,1949-11-20,B- -Andrea Davis,Female,4853,1935-03-30,A- -Roger Leonard,Female,4854,1995-01-09,O+ -Lindsay Oneill,Female,4855,1983-04-09,B- -Kimberly Morales,Female,4856,2000-01-16,O+ -Justin Jones,Female,4857,1931-02-11,O+ -Donald Sparks,Female,4858,1967-06-25,A+ -Jason Smith,Male,4859,1930-06-16,O+ -James Robinson,Male,4860,1931-05-24,O+ -Dennis Todd,Female,4861,1979-05-29,B- -Shannon Brooks,Female,4862,1940-01-13,O+ -Alexandra Wilson,Female,4863,1984-05-30,AB+ -Brandi Brown,Male,4864,1965-09-24,A- -Robin Lee,Male,4865,1931-11-12,B- -Tonya Smith,Female,4866,1981-10-08,A- -Laura Warner,Female,4867,1980-08-30,O- -Candice Brown,Female,4868,1989-04-05,B- -Nicole Porter,Male,4869,1941-12-06,O+ -Jesus Nelson,Male,4870,1933-09-25,AB+ -Natalie Thomas,Female,4871,1956-01-28,A- -Caroline Moody,Female,4872,1936-04-11,B- -David Cunningham,Male,4873,1934-03-19,AB+ -Brittney Boone,Female,4874,1939-05-02,A- -Jason Hernandez,Female,4876,1996-01-21,O- -Jennifer Bishop,Male,4877,1953-12-18,AB- -Courtney Parker,Male,4878,2000-04-18,B+ -Robert Taylor,Female,4879,1980-01-26,B+ -Jeremiah Ewing,Female,4880,1930-06-24,O- -Ryan Decker,Male,4881,1936-02-09,AB- -Aaron Calderon,Female,4882,1941-09-27,A+ -Jacob Morris,Female,4883,1986-04-01,AB- -Katie Moody,Female,4884,1963-03-01,A+ -Oscar Lane,Female,4885,1949-06-16,B- -Dr. Vanessa Barnes,Male,4886,1956-07-12,A+ -Zachary Aguirre,Female,4887,1962-12-25,B+ -Mrs. Charlene Young,Female,4888,1983-07-17,B+ -Wesley Vincent,Male,4889,1979-02-24,AB+ -Michelle Branch,Male,4890,1933-02-25,A+ -Crystal Williams,Male,4891,1950-11-11,AB+ -Erica Roberts,Female,4892,1946-07-09,B+ -Thomas Oliver,Male,4893,1953-06-09,A- -Scott Thompson,Male,4894,1943-07-18,A- -Edward Jackson,Female,4895,1997-05-27,AB- -Benjamin Duncan,Female,4896,1935-03-23,AB- -Adrian Sandoval,Female,4897,1939-07-23,AB- -Megan Hayes,Male,4898,1981-10-19,A+ -Morgan Wallace,Male,4899,1941-06-05,AB- -Timothy Chandler,Male,4900,1960-04-18,A+ -Anthony Hanna,Male,4901,2002-04-13,A+ -Henry Hays,Male,4902,1978-05-26,O+ -Stephen Malone,Female,4903,1943-01-22,O+ -Jose Santiago,Male,4904,1943-02-18,A+ -Michele Mendoza,Male,4906,1965-09-20,A- -Courtney Martin,Male,4907,1968-11-28,AB+ -Lori Woodard,Male,4908,1993-09-02,B+ -Jason Fox,Male,4909,1982-12-30,B+ -Julia Jackson,Male,4910,1985-08-06,B- -Sarah Lopez,Female,4911,1943-09-07,O- -Janice Ibarra,Female,4912,1994-02-10,O+ -James Huff,Male,4913,1977-07-29,A+ -David Bailey,Male,4914,1952-03-18,O- -Julie Compton,Female,4915,1944-06-23,O+ -Miss Cynthia Massey,Male,4916,1958-12-18,B- -Robert Franklin,Male,4917,1980-12-28,B+ -Evan Jimenez,Male,4918,1978-11-25,AB+ -Michael Wilson,Female,4919,1947-08-06,A+ -Gregory Carpenter,Female,4920,1961-10-04,B- -Danielle Johnson,Female,4921,1931-01-25,B+ -Hannah Solomon,Female,4922,1932-09-26,A- -Valerie Williams,Female,4923,1965-01-29,O+ -Justin Bennett,Male,4924,1972-09-16,A+ -Anna Martin,Male,4925,1935-01-30,O- -Gary Cook,Female,4926,1952-03-31,A- -Kenneth Rivers,Female,4927,1967-10-08,B+ -Amy Nichols,Male,4928,1999-02-02,A- -Sandra Johnson,Male,4929,1937-07-26,AB- -Austin Oneal,Female,4930,1984-11-20,AB+ -Elizabeth Mcintyre,Male,4931,1943-08-27,B+ -Justin Bean,Male,4932,1934-01-21,A- -Michael Chavez,Female,4933,1994-09-22,O+ -Mitchell Ruiz,Male,4934,1940-03-20,AB+ -Amanda Peterson,Female,4935,1994-09-28,A+ -Bonnie Brooks,Male,4937,1976-02-04,AB- -Andrew Miller,Female,4938,2001-06-30,B+ -Anna Rubio,Female,4939,1983-04-30,B- -Nicole Daugherty,Female,4940,1977-04-10,AB+ -Desiree Williams,Female,4941,1986-12-05,O- -Dustin Davis,Male,4942,1985-12-30,O+ -Tracy Smith,Female,4943,1959-06-16,B+ -Michelle Hawkins,Female,4944,1983-10-31,O- -Joseph Daniels,Male,4945,1974-08-29,AB+ -Rodney Zimmerman,Male,4946,1953-06-15,B+ -Amanda Chase,Male,4947,1962-07-21,AB- -Joy Jones,Female,4948,1996-08-17,B- -Elizabeth Ponce,Female,4949,1960-10-24,B- -Todd Peck,Male,4950,1987-09-13,O- -Caitlyn Fisher,Male,4951,1961-04-30,A+ -Kevin Watson,Female,4952,1967-01-08,A+ -Shawn Brooks,Female,4953,1987-06-10,AB- -Joel Moore,Female,4954,1942-06-26,B- -Kathryn West,Male,4955,1974-05-09,O- -Nathan Holloway,Female,4956,1949-12-18,O- -Autumn Cardenas,Male,4957,1952-05-05,B+ -Lisa Long,Female,4958,1930-04-23,B+ -Joseph Mendoza,Female,4959,1988-11-27,O- -Jennifer Moran,Male,4960,1983-08-12,B+ -Richard Johnson,Male,4961,1973-08-07,AB+ -Edgar Compton,Female,4962,2002-07-22,B+ -Paul Parker,Female,4963,1975-03-29,AB- -Kevin King MD,Female,4964,1933-11-25,A+ -Justin Davis,Female,4965,1982-12-07,A+ -Deborah Salazar,Female,4966,1983-07-14,AB+ -Mrs. Tricia Porter,Male,4967,1998-09-13,O+ -Ronald Deleon,Male,4968,1959-08-05,AB+ -Chase Cooke,Male,4969,1946-07-19,AB- -Larry Barnes,Male,4970,1949-02-19,O- -Derrick Hoffman,Male,4971,1994-09-02,AB+ -Anthony Burton,Female,4972,1947-02-22,O- -Tammy Lopez,Male,4973,1932-06-06,AB- -James Garner,Female,4974,1983-05-11,A- -Jeremy Johnson,Male,4975,1974-12-29,AB- -Alexandria Lewis,Female,4976,1985-09-04,B- -Regina Vargas,Female,4977,1984-08-09,O- -Brian Black,Female,4978,1974-11-28,A+ -Sarah Medina MD,Female,4979,1988-01-22,AB+ -Nathaniel Fuller,Male,4980,1992-03-20,A- -Nicole Morris,Female,4982,1996-12-02,AB- -Keith Lindsey,Female,4983,2001-04-27,O- -Willie White,Male,4984,1963-07-20,A- -Randy Anthony,Female,4985,1981-12-29,O+ -Louis Evans,Male,4986,1951-06-26,B- -Rachel Smith,Female,4987,1998-07-10,O+ -Justin Peterson,Male,4988,1947-08-12,AB- -Timothy Leon,Female,4989,1966-10-31,O+ -Joseph Adams,Male,4990,1966-09-04,O+ -Cory Clark,Male,4991,1940-04-23,B- -Emily Campbell,Male,4992,1981-07-14,B- -Tara Murray,Male,4994,1973-09-02,B+ -Angela Cervantes,Female,4995,1964-03-25,B- -Rodney Harris,Female,4996,1956-09-02,A- -Ruth Mason,Female,4997,1992-04-07,B+ -Leonard Oneill,Male,4998,1997-08-20,B- -Jennifer White,Female,4999,1946-04-08,O+ -Donna Miller,Female,5000,1995-10-15,A+ -John Shaffer,Female,5001,1943-04-18,A+ -Joshua Kelly,Male,5002,1992-10-13,B+ -Garrett Sullivan,Male,5003,1994-07-24,B- -Anita Hill,Male,5004,1991-01-16,A- -Melissa Spencer,Female,5005,1992-08-08,AB+ -Shelby Moore,Female,5006,1971-07-11,O- -Sandra Fernandez,Female,5007,1982-06-02,AB- -Mary White,Female,5008,1987-01-22,A- -Jessica Marquez,Male,5009,2001-02-28,AB+ -Aaron Hicks,Female,5010,1992-04-10,AB- -Nancy Kim,Female,5011,1990-06-12,AB+ -Makayla Brady,Female,5012,1945-11-06,AB+ -Ashley Robinson,Male,5013,1930-07-21,B+ -Tiffany Wang,Female,5014,1991-09-22,A+ -Adam Richmond,Female,5016,1958-12-01,O- -Jennifer Williams,Female,5017,1976-04-10,AB+ -Samantha Morgan,Female,5018,1951-03-09,B- -Stephanie Murphy,Female,5019,2000-12-16,AB- -Tony Obrien,Female,5020,1935-06-12,A- -Pamela Miller,Female,5021,1972-04-11,A+ -John Fry,Male,5022,1962-02-19,AB- -Dustin Owens,Male,5023,1969-01-12,B+ -Erika Walker,Female,5024,1985-04-08,B- -Stacey Cohen,Male,5025,1990-10-05,B- -Jamie Novak,Female,5026,1949-08-11,AB+ -John Reynolds,Male,5028,1965-10-09,B- -Crystal Hatfield,Female,5029,1991-12-12,O- -Andrew Garrett,Male,5030,1968-08-23,B+ -Diamond Wright,Female,5031,1952-12-30,B- -Allison Davidson,Female,5032,1945-06-04,AB+ -Andrea Macdonald,Male,5033,1945-10-04,AB- -Henry Kim,Female,5034,1959-08-22,B+ -Jennifer Spencer,Female,5036,1992-02-18,B- -Shirley Allen,Female,5037,1941-04-10,A+ -Kathryn Rodriguez,Male,5038,1997-09-15,B+ -Monica Perez,Female,5039,1934-02-27,B+ -Benjamin Duran,Female,5040,1991-09-25,A- -Mark Farmer,Female,5041,1974-10-03,A+ -Cameron Martin,Male,5042,1937-02-13,A+ -Zachary Ortega,Male,5043,1966-03-30,AB- -Tiffany Richmond,Female,5044,1980-11-13,O+ -Karen James,Male,5045,1939-09-25,A- -Shannon Valentine,Male,5046,1974-05-03,A+ -Deborah May,Male,5047,1982-08-29,A+ -Robert Anderson,Female,5048,1971-10-06,O+ -Sean Ramirez,Female,5049,1974-05-04,AB- -Denise Fischer,Female,5050,1934-10-09,A- -Christopher Williams,Female,5051,1933-07-30,A+ -Matthew Perry,Male,5052,1940-07-16,AB+ -Jason Johnson,Female,5053,1963-11-04,AB- -Yolanda Ross,Female,5054,1964-12-16,A- -Mary Walters,Female,5055,1995-06-12,A+ -Craig Moore,Male,5056,1965-09-06,A+ -Daniel Norman,Male,5057,1941-06-27,O+ -Mark Carlson,Male,5058,1989-01-13,A- -Henry Skinner,Female,5059,1981-11-08,AB+ -Michael Torres,Male,5060,1981-03-03,AB- -James Wallace,Male,5061,1950-11-11,B- -Mary Holmes,Female,5062,1955-05-30,O- -Elizabeth Mccoy,Male,5063,1937-03-27,AB+ -Bradley Humphrey,Male,5064,1955-08-27,B- -Christopher Day,Male,5065,1969-02-21,AB+ -Daniel Patrick,Female,5066,1992-05-28,A- -Gordon Thompson,Female,5067,1972-04-08,B- -Alicia Brewer,Female,5068,1972-11-30,A- -Ebony White,Female,5069,1943-01-10,B- -Peter Bishop,Female,5070,1938-03-14,AB+ -Lisa Stewart,Male,5071,1998-10-26,O+ -Danielle Flores,Male,5072,1971-09-09,AB+ -Dr. Harold Fischer,Female,5073,1933-06-25,A- -Nicole Shelton,Female,5074,1934-12-19,AB+ -Katrina Schultz,Female,5075,1998-12-15,B+ -Kimberly Hill,Female,5076,1981-08-06,B+ -Andrea Morgan,Male,5077,1986-02-20,B- -Sheri Dixon,Female,5078,1991-08-17,B+ -Lisa White,Female,5079,1953-03-16,O- -Sara Moody,Male,5080,1942-01-14,B- -Alyssa Mcdonald,Female,5081,1955-06-02,B+ -Zachary Norton,Male,5082,1966-06-19,A+ -Douglas Yates,Male,5083,1977-02-03,AB+ -Don Davis,Male,5084,1994-11-09,AB- -Colleen Mitchell,Female,5085,1994-12-06,AB+ -Tamara Doyle,Female,5086,1930-03-24,B+ -Matthew Frost,Male,5087,1935-04-05,O+ -Penny Hebert,Female,5088,1951-05-28,A- -Kevin Lopez,Male,5089,1961-12-27,AB- -Jordan Finley,Male,5090,1961-01-14,B- -Eugene Bates MD,Male,5091,1972-09-13,O+ -Thomas Barnes,Female,5092,1935-09-25,AB+ -Sarah Brown,Male,5093,1965-05-02,B+ -Sarah Benjamin,Male,5094,1994-03-21,B- -Michelle Anthony,Male,5095,1996-09-02,B- -Alexandria Gonzalez,Female,5096,1952-11-28,A+ -Christopher Gonzalez,Female,5097,1944-06-21,A+ -Julie Davis,Male,5098,1959-11-01,B+ -Sandra Carter,Male,5099,1943-07-09,B+ -Kirk Berry III,Female,5100,1975-11-14,O- -Desiree Oconnor,Female,5101,1979-11-02,A+ -Daniel Flores,Male,5102,1980-08-11,A- -David Schultz,Female,5103,1965-07-13,AB- -Bruce Torres,Male,5104,1984-05-31,B- -Jennifer Willis,Male,5105,1979-09-24,A+ -Jeffrey Murphy,Male,5106,1951-01-05,B+ -Kevin Vazquez,Male,5107,1978-08-05,O- -Andrea Lambert,Female,5108,1994-10-30,B+ -Jose Flores,Male,5109,1940-01-25,B+ -Nicholas Wright,Female,5110,1936-08-23,B+ -Alan Velasquez,Female,5111,1997-06-26,AB+ -Diane Clark,Female,5112,1997-01-02,AB- -Nathan Sanders Jr.,Male,5113,1938-02-10,A+ -John Hill,Male,5114,1932-05-09,B- -Christina Simmons,Female,5115,1962-12-27,AB+ -Sarah Calhoun,Female,5116,1941-05-01,B+ -Mason Washington,Female,5117,1936-08-21,A- -David Gonzalez,Male,5118,2000-03-14,B- -Chad Riley,Female,5119,1958-07-02,AB+ -Jenny Vazquez,Female,5120,1940-12-31,A- -Darren Anderson,Male,5121,1958-08-13,A- -Melissa Taylor,Female,5122,1958-02-21,AB- -Dr. Christopher Rogers,Female,5123,1998-04-18,B- -Lynn Koch,Female,5124,1960-02-09,A+ -Lauren Garner,Female,5125,1997-09-12,A+ -Michael Munoz,Male,5126,1933-02-08,O- -Susan Cochran,Male,5127,1989-01-01,AB+ -Kelly Barnes,Male,5128,1944-01-07,O- -Joseph Brooks,Female,5129,1945-08-04,O+ -Monique Rodriguez,Female,5130,1991-08-29,A+ -Brian Watkins,Male,5132,1989-11-16,AB+ -Justin Caldwell,Female,5134,1941-05-27,AB- -Shannon Osborne,Male,5135,1981-04-13,O- -Rebecca Eaton,Female,5136,1943-10-19,AB- -Anne Coleman,Female,5137,1988-04-07,AB- -Samantha Wilson,Female,5138,1970-01-22,B+ -Austin Hull,Female,5139,1958-08-04,B+ -Paula Clark,Male,5140,1952-08-05,AB- -Laura Walton,Female,5141,1988-08-29,O- -Brianna Hardy,Female,5142,1985-07-16,B+ -Jacob Pierce,Female,5143,1978-07-09,O+ -Tyler Benjamin,Female,5144,1978-02-06,A- -Kent Carrillo,Female,5145,1986-12-23,A- -Brandon Obrien,Male,5146,1934-04-01,B+ -Lindsey Burgess,Male,5147,1964-07-26,O- -Steven Jenkins,Male,5148,1934-06-18,A- -Rebecca Davis,Female,5149,2000-12-02,B- -Courtney Hansen,Male,5150,1979-01-14,A- -Juan Flynn,Male,5151,2001-11-13,A+ -Jeremy White,Female,5153,1933-09-23,O- -Darin Rhodes,Female,5154,2001-08-05,B+ -Shawna Young,Female,5155,1941-12-19,B+ -Jon Thomas,Female,5156,1944-06-19,A- -Sean Brown,Male,5157,1950-11-02,O- -Christopher Scott,Male,5158,1958-11-28,O+ -Michael Ashley,Male,5160,1970-11-11,B- -Joseph Brown,Female,5161,1970-08-18,B+ -Connie Alvarez,Female,5162,1962-09-19,O- -Rachel Stewart DDS,Female,5163,1959-02-04,B+ -Alexis Miller,Female,5164,1935-06-17,B+ -Rachel Davis,Male,5165,1932-05-19,A+ -Natasha Goodwin,Female,5166,1932-10-11,A- -Nancy Johnson,Female,5167,1957-08-30,A+ -Holly May,Female,5168,1976-07-04,A- -Adam Mueller,Male,5170,1962-11-22,B+ -Mrs. Kristin Trujillo,Female,5171,1931-11-22,O- -Lisa Graves,Male,5172,1998-08-21,AB- -Alice Roth,Female,5173,1976-03-13,A- -Logan Adams,Male,5174,1993-08-26,AB- -Jessica Michael,Male,5175,1994-09-06,B- -Robert Hunter,Male,5176,1959-06-06,A+ -Angela Wheeler,Male,5177,1996-03-05,AB- -Ryan Jackson,Female,5178,1951-12-21,A+ -Jessica Schultz,Female,5179,1975-08-31,A- -Cindy Robinson,Male,5181,1945-01-10,A- -Kendra Walker,Female,5182,1985-11-19,B- -Eugene Fisher DDS,Female,5183,1960-03-19,A- -Michael Harding,Male,5184,1982-10-31,B+ -Lauren Davis,Female,5185,2001-12-27,B- -Robert Cowan,Female,5186,1987-11-06,AB- -Zachary Pearson,Male,5187,1979-12-27,A- -Jamie Smith,Female,5188,1965-03-13,O- -Michelle Charles,Female,5189,1983-10-12,AB+ -Cheryl Mason,Male,5190,1937-09-18,O+ -Angie Peterson,Female,5191,1998-07-03,B+ -Stacey Wright,Female,5192,1984-10-29,AB+ -John Johnson,Male,5193,1942-03-17,AB+ -Patricia Sullivan,Male,5195,1944-07-13,A+ -Debra Figueroa,Female,5196,1954-06-17,B+ -Benjamin Adams,Male,5197,1980-06-12,B+ -Tammy Gomez,Female,5198,1976-09-19,B- -Daniel Brown,Female,5199,1959-03-09,A+ -Margaret Chung,Female,5200,1945-09-17,AB- -Carolyn Stanley,Female,5201,1945-07-09,O+ -Aaron Hamilton,Male,5202,2001-01-02,AB- -Melissa Thomas,Male,5203,1969-07-02,O- -Christine Edwards,Male,5204,1951-01-28,O+ -Gina Gonzales,Female,5205,1996-11-07,A+ -Sandra Ingram,Male,5206,1975-01-11,A- -Christopher Davis,Male,5207,1951-06-09,A- -Mr. Chad Gray PhD,Male,5208,1959-06-09,A+ -Mathew Reilly,Female,5209,1966-10-29,AB- -Victoria Castillo,Male,5210,1950-02-17,A+ -Raymond Morton,Female,5211,1967-01-03,A+ -Amy Barnes,Female,5212,1993-10-16,AB+ -Tiffany Stewart,Male,5213,1952-10-18,O- -Joseph Schneider,Male,5214,1939-12-24,B+ -Lorraine Key,Male,5215,1988-06-19,A- -Jody Taylor,Male,5217,1951-11-30,AB+ -Sierra Johnson,Female,5218,1938-12-23,A+ -Lindsay Johnson,Female,5219,1949-12-23,B- -Edward Ramirez,Male,5220,1999-07-16,AB+ -Elizabeth Jones,Male,5221,1938-06-02,A+ -Christine Jones,Female,5223,1966-04-23,A- -Nicholas Jacobs,Male,5224,1960-08-04,B+ -Daniel Goodwin,Male,5225,1952-10-04,A+ -Shane Holland,Male,5226,1995-07-15,O- -Pamela Jones,Male,5227,1934-06-26,AB- -Todd Oneill,Female,5228,1967-05-19,O+ -Kevin Browning,Female,5229,1943-12-22,AB+ -James Friedman,Male,5230,1999-10-26,AB+ -Courtney Holmes,Female,5231,1976-08-15,AB+ -Christopher Day,Female,5232,1935-07-26,A+ -Cory Carter,Female,5233,1937-07-24,B+ -Elizabeth Hernandez,Female,5234,1971-08-09,O- -Sean Clarke,Female,5235,1980-07-09,B+ -Jennifer Meza,Male,5236,1975-07-09,A+ -Stacy Martin,Female,5237,1937-04-22,A+ -James Nelson,Male,5238,1970-01-29,AB- -Daniel Rodriguez,Male,5239,1973-09-06,B- -Jennifer Brown,Female,5240,1977-01-20,O- -Jordan Bass,Female,5241,1988-09-16,AB+ -Patrick Simpson,Female,5242,1963-10-31,O+ -Glenda Miles,Male,5243,1930-07-15,AB+ -Ronald Mcguire,Female,5244,1935-12-28,B+ -Charlene James,Female,5245,1962-01-20,A+ -Kathleen Chambers,Male,5246,1936-05-19,O- -Charles Davis,Male,5248,1988-02-11,A- -Bryan Beasley,Female,5249,1939-11-16,O- -Ryan Espinoza,Male,5250,1998-01-16,O- -Francis Fitzpatrick,Male,5251,1930-03-02,B- -William Deleon,Male,5252,2002-07-11,AB+ -Tina Ramsey,Male,5253,1969-05-23,B- -Matthew Livingston,Male,5254,1940-10-02,A- -Jeanne Perez,Female,5255,1947-03-29,A- -Alexander Henderson,Female,5256,1967-04-19,AB- -Monica Lang,Male,5257,1968-09-03,B+ -Christopher Contreras,Male,5258,1937-02-04,O+ -Nicole Anderson,Female,5259,1998-11-02,AB- -James Lane,Female,5260,1963-03-16,A+ -Robert Bates,Male,5261,1973-02-12,B- -Cynthia Smith,Male,5262,2001-08-03,B- -Robyn Griffith,Male,5263,1946-10-05,AB- -Stephen Hernandez,Male,5264,1933-04-15,A+ -Hannah Moore,Male,5265,1973-01-16,O- -Stacy Stewart,Male,5267,1982-09-03,A+ -Brooke Robinson,Male,5268,1960-05-10,AB+ -Jeffery Scott,Male,5269,1994-02-02,AB- -Jonathon Brown,Male,5270,2000-09-02,B+ -Rhonda Ball,Female,5271,1949-02-02,A+ -Charles Mitchell,Female,5272,1930-05-17,O- -Charles Watts,Female,5273,1977-09-04,A+ -Derek Woodard,Female,5274,1972-01-07,B- -Sean Harris,Male,5275,1981-12-17,O+ -Kelly Carr DVM,Male,5276,1994-08-03,B- -Diane Reese,Male,5277,1931-10-24,B+ -Jacob Buckley,Female,5278,1936-10-08,A- -Stephanie Blake,Male,5279,1930-03-28,O+ -James Avery,Male,5280,1959-04-23,A- -Ashley Ortiz,Female,5281,1947-01-11,A+ -Monica Gonzalez,Female,5282,1997-02-25,AB+ -Kimberly Livingston,Female,5283,1974-09-09,B+ -Benjamin Finley,Male,5285,1970-05-20,A+ -Maria Rodriguez,Male,5286,1949-01-29,O- -Nicole Hull,Female,5287,1982-06-14,A+ -Sarah Morgan,Male,5288,1967-03-24,O+ -Kimberly Adams,Male,5289,1934-08-28,B- -Andrew Lopez,Male,5290,1937-05-24,AB+ -Steven Snyder,Female,5291,1993-07-08,A- -Christine Trevino,Male,5293,1962-05-14,A+ -Erica Pruitt,Female,5294,1979-05-15,A+ -John Pitts,Male,5295,1991-05-23,B- -Marcus Russell,Female,5296,1988-12-30,AB+ -Rachel Carter,Female,5297,1945-02-11,AB- -Rachel Gray,Female,5298,1961-07-07,A- -Javier Fox,Male,5299,1940-02-05,A+ -Douglas Lyons,Female,5300,1976-06-28,A+ -Holly Clark,Male,5301,1987-04-21,AB- -Jonathan Keller DVM,Male,5302,1998-08-12,A- -Jessica Moore,Female,5303,1954-03-13,O+ -Mrs. Gabrielle Willis,Male,5304,1970-12-12,O+ -Michele Scott,Female,5305,1960-11-20,B+ -Morgan Christensen,Male,5306,1968-02-08,B+ -Christopher Zamora,Male,5307,1943-01-10,O- -Savannah Terry,Female,5308,1965-09-19,B- -Diana Thornton,Male,5310,1986-11-11,AB+ -Jody Hernandez,Male,5311,1954-05-27,A+ -Paul Golden,Male,5312,1942-12-17,A- -Sarah Anderson,Male,5313,1949-05-22,A+ -Kenneth Lowery,Male,5314,1953-10-17,B+ -Shelly Zavala,Female,5316,1994-05-06,O- -Vincent Young,Male,5317,1987-10-22,A- -Ashley Santiago,Female,5318,1934-08-01,A- -Connie Taylor,Male,5319,1969-03-15,A+ -Mr. Jared Barry,Male,5320,1997-08-07,B- -Melanie Walker,Female,5321,1960-08-02,O- -Miranda Cohen,Female,5322,2002-01-15,B- -Raymond Cruz,Male,5323,1967-02-01,O- -Kathleen Graham,Male,5324,1962-04-26,A+ -Joshua Simpson,Male,5325,1994-07-06,O- -Mariah Dalton,Male,5326,1936-04-13,O+ -Nicole Santiago,Male,5327,1939-12-10,A- -Erik Wilson,Male,5328,1971-04-29,AB+ -Kathryn Castillo,Male,5329,1975-04-05,A+ -Gerald Knox,Male,5330,1969-07-28,AB- -Angel Armstrong,Male,5331,1963-05-02,AB+ -Katherine Freeman,Female,5332,1939-06-16,A+ -Cathy Rhodes,Female,5333,1942-05-05,AB+ -Samuel Gilbert,Male,5334,1990-09-10,O+ -Lori Kim,Female,5335,1996-01-30,AB+ -Michael Nielsen,Female,5336,1959-01-11,O- -Robert Henderson,Female,5337,1945-05-30,B+ -Mark Ruiz,Male,5338,1952-10-20,AB+ -Kimberly Nichols,Male,5339,1972-07-13,A+ -Matthew Cruz,Male,5340,1984-01-22,AB- -Victoria Johnson,Male,5341,1983-02-01,AB- -Courtney Suarez,Female,5342,1939-09-23,B+ -Ashley Thompson,Female,5343,1974-11-28,B- -Jasmine Smith,Female,5344,1936-02-21,B+ -Joanne Smith,Female,5345,1970-02-25,A- -Ashley Barron,Female,5346,1992-02-27,AB+ -Deborah Robinson,Male,5347,1943-12-16,AB- -Lee Smith,Male,5348,1953-08-28,B+ -William Smith,Female,5349,1935-05-03,AB+ -Denise Lee,Male,5350,1999-11-16,A- -Nathaniel Durham,Female,5351,1945-05-20,AB- -Ronald Lee,Male,5352,1941-08-07,A- -Tanya Robinson,Male,5353,1993-10-02,AB+ -Brandon Miller,Male,5354,1935-04-05,A+ -Janice Savage,Male,5355,1960-07-31,AB+ -Christina Robbins,Male,5356,1941-06-20,B+ -Sarah Moore,Male,5357,1963-06-04,A- -Samuel Christensen,Female,5358,1930-08-27,A+ -Thomas Moran,Male,5359,1930-07-24,A+ -David Gonzales,Female,5360,1959-07-27,B- -Catherine George,Male,5361,1945-03-15,AB- -Amanda Aguilar,Female,5362,1943-06-29,O- -Tracy Hale,Male,5363,1960-07-26,A+ -Bradley Ryan,Male,5364,1942-01-08,A- -Richard Lee,Female,5365,1982-03-20,AB- -Jesus Griffin,Female,5366,1988-05-31,O+ -Mr. Victor Austin,Male,5367,1972-10-28,AB+ -Charles Hampton MD,Male,5368,1946-11-13,B+ -Nicholas Hayden,Female,5369,1989-08-11,A- -Michelle Reilly,Male,5370,2000-12-23,O+ -Diane Wallace,Male,5371,1973-04-15,A- -Bonnie Young,Female,5372,1944-01-14,AB+ -Linda Lawrence,Female,5373,1932-03-27,B- -Michele Jones,Female,5374,1966-09-23,A- -Donna Lewis,Female,5375,1999-07-14,A+ -Jeffrey Garcia,Female,5376,1930-07-12,O- -Shannon Smith,Male,5377,1979-09-21,A+ -George Townsend,Male,5378,1939-12-25,AB+ -Lori Atkinson,Male,5379,1965-02-02,A- -Lindsey Johnson,Male,5380,1947-04-16,O- -Erik Curtis,Male,5381,1997-12-21,A+ -Daniel Castillo,Female,5382,1979-10-03,O- -Kelly Collins,Female,5383,1950-03-11,B+ -Melissa Pacheco,Female,5384,1940-02-18,AB+ -Mckenzie Roberson,Male,5385,1959-03-05,B- -Maria Schmitt,Male,5386,1971-06-04,B- -Andrew Cantrell,Male,5387,1955-08-17,A- -Heather Watkins,Male,5388,1940-08-29,A+ -Kimberly Bond,Female,5389,1948-08-25,O+ -Lisa Alvarado,Male,5390,1955-06-07,AB+ -Dennis King,Male,5391,1982-03-12,A+ -Shawn Mcintyre,Female,5392,2002-05-06,A+ -Christopher Campbell,Male,5394,1985-07-19,B- -Cynthia Clark,Male,5395,1994-09-26,A- -Joseph Williams,Female,5396,1931-05-20,O- -Caleb Chandler,Male,5397,1956-11-13,AB+ -Michael Sanchez,Female,5398,1970-03-03,B+ -Mr. Andrew Dunn,Female,5399,1959-05-27,O- -Vincent Willis,Male,5400,2001-01-31,AB- -Miguel Miranda,Female,5401,1960-08-17,AB- -Deanna Deleon,Female,5402,1948-07-18,AB+ -Tina Lin,Female,5403,1940-06-13,A- -Shannon Lloyd,Female,5404,1931-12-19,O+ -Andrea Fernandez,Male,5405,1961-12-20,AB- -Miranda Armstrong,Male,5406,1942-02-21,B- -William Robbins,Male,5407,1976-08-29,O+ -Danielle Lee,Female,5408,1943-11-06,A+ -Nicholas Scott,Male,5409,1985-10-31,AB- -Kayla Hughes,Female,5410,1943-09-04,B- -Mackenzie Reed,Male,5411,1941-08-05,A+ -Daniel Howard,Male,5412,1940-04-22,O+ -Justin Suarez,Female,5413,1960-08-12,AB+ -Elizabeth Taylor,Female,5415,1942-09-12,A+ -Joseph Price,Female,5416,1935-10-06,O- -Mark Rhodes,Male,5417,1955-11-13,AB+ -Mark Sanders,Female,5418,1993-06-24,AB+ -Julie Allen,Male,5419,1959-03-24,O+ -Jackson Ward,Male,5420,1998-05-03,O+ -Dawn Barry,Male,5421,1981-12-30,B- -Nicole Santos,Male,5422,1952-12-16,B- -Kenneth Gonzalez,Male,5423,1962-11-08,O- -Robert Figueroa,Male,5424,1940-03-08,AB+ -Mark White,Female,5425,1937-01-25,B+ -Dakota Norton,Male,5426,1981-11-18,A- -Erin Mclean,Male,5427,1937-07-26,O- -Samantha Phillips,Male,5428,1992-03-08,O- -Eric Whitaker,Female,5429,1946-05-28,A- -Traci Henderson,Female,5430,1958-11-01,A- -John Larson,Male,5431,1984-03-08,A- -Jill Davis,Male,5432,1999-04-16,O+ -John Kirk,Female,5433,1960-04-17,O- -Steven Cohen,Female,5434,1960-12-21,O- -Elizabeth Macdonald,Male,5435,1943-02-02,A+ -Michaela Smith,Female,5436,1941-06-09,A- -Sally Thomas,Female,5437,1971-07-14,A- -Cynthia Thomas,Female,5438,1947-09-25,B- -Richard Eaton,Female,5439,1981-12-27,B- -Joseph Rodriguez,Male,5440,1997-04-04,AB+ -Kristin Jones,Female,5441,1936-07-10,B- -Steven Ortiz,Male,5442,1976-04-24,AB- -Matthew Strong,Male,5443,1991-07-03,AB+ -Jennifer Hughes,Male,5444,1964-03-31,B+ -Shawn Mcintosh,Female,5446,1931-09-27,A- -Kimberly Oconnell,Male,5447,2002-02-17,A+ -Rebecca Keller,Female,5448,1962-11-05,B- -Christina Nelson,Male,5449,1968-10-10,A+ -Craig Klein,Female,5450,1974-11-12,B- -Ryan Gibson,Male,5451,1968-05-06,B- -Peter Jones,Female,5452,1952-12-28,A+ -Richard Johnson DDS,Male,5453,1991-02-25,O- -Christopher Calderon,Male,5454,1963-10-02,O- -Tanner Davis,Female,5455,1969-05-30,O- -Tracy Coleman,Male,5456,1990-04-06,AB- -Julie Gould,Female,5457,1996-01-18,O- -Alexis Rice,Male,5458,1991-04-18,B- -Victoria Jackson,Female,5459,1937-11-30,A- -Maria James,Female,5460,1959-09-24,O+ -Parker Carson,Male,5461,1991-12-10,A+ -Christopher Adkins,Male,5462,1951-12-23,A- -Randy Herrera,Male,5463,1939-01-20,O+ -Mrs. Jill Jones,Male,5464,1932-06-16,A- -Robert Mcguire,Male,5465,1955-05-27,AB- -Michelle Hill,Male,5466,1955-12-07,O+ -Daniel Hammond,Female,5467,1970-10-14,B+ -Danielle Rice,Female,5468,1971-09-23,AB+ -Kristine Wilson,Female,5469,1970-03-15,O- -Amber Thomas,Male,5470,1931-11-02,B+ -Justin Thomas,Male,5472,1994-10-27,AB- -Dr. Caitlyn Miller,Female,5473,1978-12-24,A- -Leslie Oconnor,Female,5474,1992-07-18,B- -Miranda Martin,Male,5475,1962-03-21,O- -Thomas Smith,Male,5476,1965-08-11,B+ -Patricia Robinson,Female,5477,1989-01-02,O- -Lindsey Yang,Female,5478,1973-03-04,O+ -Timothy Martinez,Female,5479,2002-08-22,AB+ -Kevin Howard,Male,5480,1989-03-31,O- -Stephen Campbell,Female,5481,1975-07-17,A- -Melinda Howard,Male,5482,1992-07-15,A- -George Robinson,Female,5483,1935-03-08,A+ -Joseph Bennett,Male,5484,1939-06-02,A+ -Richard Weaver,Female,5485,2002-05-12,O- -Cheryl Peterson,Female,5486,1937-10-25,O+ -Michelle Krause,Female,5487,2001-05-27,O+ -Kimberly Perry,Female,5488,1961-09-12,B- -Daniel Baldwin,Female,5489,1962-03-17,AB- -Edward Bryan,Female,5490,1985-03-29,AB- -Thomas Allen,Male,5491,1961-10-23,B+ -Ryan Chen,Male,5492,1989-06-14,AB- -Robert Chandler,Female,5493,1996-05-29,AB+ -Nathan Meyers,Female,5494,1952-07-19,O+ -Courtney Osborne,Female,5495,1984-09-30,B- -David Mcdonald,Male,5496,1937-03-03,A+ -Thomas Hall,Female,5497,1987-09-01,A- -Rebecca Rose,Male,5498,1938-08-30,AB- -Tiffany Jones,Female,5499,2000-10-24,A+ -Jeffrey Oliver,Male,5500,1938-01-21,A+ -Carla Ortiz,Female,5501,1997-11-20,O- -Crystal Cox,Female,5502,1935-04-10,AB+ -Spencer Morgan,Male,5503,1938-02-20,B- -Mary Campbell,Male,5504,1962-01-18,AB+ -Kristine Thomas,Female,5505,1959-02-18,O- -Paul Harris,Female,5506,1960-01-10,B- -Lindsey Clements,Male,5507,1977-07-27,B- -Heather Burnett,Male,5508,1960-06-30,O+ -Cynthia Wright,Female,5509,1979-10-27,AB+ -Jodi Torres,Female,5510,1973-08-18,AB+ -Scott Singh,Male,5511,1965-12-28,O+ -Sara Craig,Male,5512,1999-06-27,B+ -Brandi Johnson,Female,5513,1931-05-05,A+ -Austin Castillo,Female,5514,1962-03-02,O- -Mark Sexton,Female,5515,1990-12-12,AB+ -Jackie Ryan,Male,5516,2001-05-17,O+ -Omar Fry,Female,5517,1984-11-02,A- -Jennifer Davidson,Female,5518,1994-03-31,B+ -Maurice Davis,Male,5520,1982-10-10,B- -Carol Tate,Female,5521,2001-12-15,AB- -Taylor Walton MD,Female,5522,1939-08-18,A- -Anthony Wilson,Female,5523,1984-01-02,O+ -Tracy Buchanan,Female,5524,1947-07-21,AB- -Karen Ortega,Female,5525,1930-02-23,A+ -Christopher Mason,Male,5526,1981-11-28,O- -Douglas Rogers,Female,5527,1976-07-17,AB- -Heather Weeks,Male,5528,1946-04-11,B+ -Madison Myers,Male,5529,1950-04-10,A+ -Thomas Diaz,Female,5530,1932-08-12,AB- -Matthew Kline,Male,5531,1959-02-03,B- -Deanna Patterson,Male,5532,1934-06-18,B- -Laura Cruz,Female,5533,1960-01-17,B+ -Victoria Arroyo,Female,5534,1948-10-12,B- -Zachary Fletcher,Female,5535,1954-03-17,B- -Amy Valdez,Female,5536,1958-11-09,O+ -Jaclyn Shepherd,Female,5537,1964-09-21,B- -Andrea Walker,Male,5538,1938-12-23,A- -Kimberly Rodriguez,Male,5539,1989-10-17,B- -Karen Turner,Female,5540,1985-04-07,A- -William Benitez,Female,5541,1981-11-14,O+ -Laura Gonzalez,Female,5542,1947-11-27,B- -Brian Meza,Female,5543,1975-11-15,B+ -Eric Mercado,Female,5544,1932-05-07,A+ -Christopher Ellis,Male,5546,1943-05-19,B+ -Amanda Sanchez,Female,5547,1965-06-11,A+ -Jessica Anderson,Female,5548,1950-06-30,AB+ -Allen Gibson,Male,5549,1967-06-16,A+ -Angela Bryant,Female,5550,1975-11-28,O- -Robin Miller,Female,5551,1969-06-02,O- -Destiny Evans,Female,5552,1959-06-02,O- -Daniel Taylor,Male,5554,1941-11-13,O+ -Tina Tucker,Female,5555,1986-08-09,B+ -Pamela Gomez,Female,5556,1982-04-27,A+ -Robert Cabrera,Female,5557,1963-06-23,B+ -Samuel Knight,Female,5558,1991-11-05,A- -Natalie Love,Female,5559,1966-10-19,O- -Jodi Foster,Male,5560,1971-02-15,AB+ -Amy Coleman,Male,5561,1991-08-04,O+ -Emily Glenn,Female,5562,1941-08-22,AB+ -Brittany Jacobs,Female,5564,1963-05-08,A+ -John Miller,Male,5565,1974-03-11,B- -Cameron Sellers,Female,5567,1932-07-11,AB+ -Ashley Palmer,Male,5568,1982-11-03,B- -Regina Castillo,Female,5569,1951-10-15,O+ -Kenneth Fletcher,Male,5570,1983-03-14,AB+ -Bonnie Jones,Male,5571,1973-04-01,AB+ -Theresa Sloan,Female,5572,1999-12-15,AB- -Nathaniel Thomas,Male,5573,1933-05-15,O+ -Kelly Erickson,Male,5574,1959-02-05,O+ -Jessica Lyons,Male,5575,1995-10-18,O- -Adrienne Stanley,Male,5576,1957-05-25,A+ -Joe Norton DVM,Female,5577,1943-07-05,AB+ -Dave Bass,Male,5578,1969-02-20,B+ -Ian Martin,Male,5579,2001-01-07,AB+ -Luis Ellis,Male,5580,1974-11-03,A- -Kyle Dunlap,Female,5581,1985-08-24,O+ -Richard Manning,Male,5582,1992-08-10,B+ -Madison Franklin,Male,5583,1930-07-23,O+ -Randy Trevino,Female,5584,1975-04-19,A+ -Crystal Smith,Female,5585,1973-07-13,O+ -Dylan Cooper,Female,5586,1999-05-23,B- -Amanda Walker,Female,5587,1940-04-06,B- -Dr. Richard Mitchell MD,Male,5588,1948-05-24,AB- -Abigail Smith,Female,5590,1981-12-04,B- -Sara Johnson,Male,5591,1932-12-29,B- -David Padilla,Male,5592,1971-09-11,A+ -Kiara Miller,Female,5593,1987-03-07,AB+ -Justin Lee,Male,5594,1998-12-13,B- -Laura Hughes,Female,5595,1973-11-25,B+ -Chelsey Hamilton,Female,5596,1945-08-20,AB- -David Olson,Female,5597,1956-08-24,O+ -Daniel Wong,Female,5598,1982-09-24,B- -Christine Young,Male,5599,1938-09-27,AB- -Keith Olson,Male,5600,1979-11-21,A+ -Jillian Riggs,Female,5601,1931-11-21,A- -Beth Perry,Female,5602,1985-02-24,A- -Rachel Thomas,Female,5603,1935-10-05,A- -Audrey Hall,Female,5604,1931-01-01,O+ -Robert Decker,Female,5605,1968-05-11,AB- -Erica Barrett,Male,5606,1962-03-21,B- -Katie Santos,Male,5607,1974-02-02,AB+ -Tiffany Hodges,Female,5608,1997-01-05,O+ -Bonnie Robinson,Female,5609,1964-11-20,O+ -Ashley Mitchell,Female,5610,1963-12-05,A- -Mr. Eric Simpson MD,Female,5611,1941-06-04,AB+ -Mary Clark,Female,5612,1991-05-18,A- -Johnathan Smith,Male,5613,1972-10-10,O+ -Lori Holland,Female,5614,1936-07-06,B- -Charles Smith DDS,Female,5615,1978-02-27,A- -Hailey Scott,Male,5616,1988-07-07,A- -Michael Duncan,Male,5617,1962-12-10,B+ -Tammy Howard,Male,5618,1945-07-10,A- -Kevin Ford,Male,5619,1937-06-28,O+ -Chad Davis,Male,5620,1957-01-06,B- -Teresa Richardson,Male,5621,1953-03-31,AB+ -Angela Obrien,Female,5622,1932-08-14,O- -Melissa Montoya,Female,5623,1955-06-25,AB+ -Allison Howard,Female,5624,1948-02-19,B- -David Dunn,Male,5625,1970-10-26,A+ -Sandra Roman,Female,5626,1978-11-23,A- -Kevin Matthews,Female,5627,1942-03-19,AB+ -Dean Gomez,Male,5628,1994-01-11,A+ -Carla Marshall,Female,5629,1968-04-17,A+ -John Wright,Female,5630,1964-08-08,B- -Amy Casey,Male,5632,1992-05-15,B- -Charles Lawson,Male,5633,1982-08-08,B+ -Robert Lucas,Male,5634,1937-10-21,A- -Sonya Foster,Male,5635,1966-05-31,O- -Danny Duncan,Male,5636,1959-04-17,AB- -Jennifer Hebert,Male,5637,1982-12-22,O+ -Henry Wagner,Female,5638,1942-07-31,AB+ -Theresa Schmidt,Female,5639,1999-11-20,B- -Gene Anderson,Male,5640,1969-02-07,AB+ -Lauren Miller,Male,5641,1974-08-03,AB- -Cheryl Richards,Male,5642,1969-03-31,AB- -Jeremy Barrett,Female,5643,1948-03-11,A- -Marcus Love,Male,5644,1937-10-21,A+ -Whitney Reese,Male,5645,1970-11-20,A- -Susan Rodriguez,Female,5646,1930-06-15,O+ -Erin Scott,Male,5647,1959-04-20,O- -Joseph Weiss,Female,5648,1932-07-08,AB+ -Kevin Maynard,Male,5649,1952-09-27,O+ -Eric Wade,Female,5650,1984-06-14,B+ -Kimberly Brown,Male,5651,1977-07-28,O- -Michael Perez,Male,5652,1973-01-10,AB+ -Sarah Pennington,Female,5653,1991-06-01,O+ -Debbie Hernandez,Male,5654,1940-07-06,B- -Clayton Tyler,Female,5655,1978-04-21,AB+ -Deborah Jordan,Male,5656,1995-09-10,O+ -Yolanda Smith,Male,5657,1961-10-23,AB- -Michael Cook,Male,5659,1998-09-11,O- -Christy Bradshaw,Male,5660,1967-01-06,O+ -Madeline Warner,Male,5661,1988-01-05,B- -Amanda Johnson,Male,5662,1959-07-04,A- -Daniel Johnson,Female,5663,1930-03-09,AB+ -Andrew Chang,Female,5664,1956-10-19,B+ -Billy Bowman,Female,5665,1945-07-01,AB+ -Jeremiah Martinez,Female,5667,1942-04-06,AB+ -Michael Johnson,Female,5668,1952-06-24,B- -Stephanie Wilson DVM,Male,5669,1959-11-27,O- -Courtney Wallace,Female,5670,1939-08-23,AB+ -Wanda Jackson,Female,5671,1931-07-27,O- -Stephanie Nguyen,Male,5672,1949-05-23,O+ -Jeremy Martin,Female,5673,1996-04-20,AB- -Paul Thomas,Male,5674,1944-10-09,B+ -Debra Lee,Female,5675,1972-03-08,AB- -Katherine Scott,Female,5676,1981-01-15,O- -Nathaniel Macdonald,Female,5677,1960-05-17,O- -Megan Guerrero,Male,5678,1991-05-24,AB- -Allison Bowman,Female,5679,1931-10-13,AB+ -Alexis Johnson,Female,5680,1945-09-20,A+ -Jonathan Harrell,Male,5681,1966-05-13,A+ -Michael Maddox,Male,5682,1948-09-21,B- -James Jones,Male,5683,1981-12-10,B+ -Kendra Mcdonald,Male,5684,1996-06-03,A- -Paula Garrett,Female,5685,1938-12-07,AB- -Maria Lambert,Female,5686,1978-07-10,AB- -Ryan Dodson,Female,5687,1943-09-06,B- -Megan Drake,Female,5688,1962-05-19,B+ -Joshua Moore,Male,5689,1990-09-07,A+ -Jennifer Ryan,Male,5690,1937-09-28,O+ -Kathleen Shaw,Female,5691,1968-11-28,AB+ -Matthew Kim,Female,5692,1944-04-29,AB+ -Stacey Ferguson,Female,5693,1936-01-27,O+ -Melanie Lopez,Female,5694,1984-07-19,O+ -Kyle Villanueva,Female,5695,1996-05-03,B+ -Allen Lynch,Female,5696,1968-12-19,A+ -Rachel Myers,Female,5697,2000-02-16,B- -Jerome Carr,Female,5698,1968-05-27,O+ -Briana Lang,Female,5699,1986-11-10,B- -Timothy Avila,Male,5700,1982-12-19,B+ -Jacob Vaughn,Male,5701,1983-09-10,A- -Charles Wilson,Female,5702,1967-12-31,O- -Brianna Mercado,Male,5703,1948-09-20,AB+ -Daniel Palmer,Female,5704,1949-04-02,A+ -George Monroe,Female,5705,1970-07-16,AB+ -Erika Fischer,Male,5706,2000-04-17,A+ -Lori Schneider,Male,5707,1999-11-10,B+ -Robert Shelton,Female,5708,1940-03-05,O- -Larry Dennis,Male,5709,1939-05-08,AB+ -Kristina Spencer,Female,5710,1978-10-28,O- -Justin Rice,Male,5711,1931-07-25,B+ -Casey Griffin,Male,5712,1982-10-23,A+ -Aaron Owen,Female,5714,1966-05-20,O+ -Richard Bailey,Male,5715,1981-09-19,A- -Katie Johnson DVM,Female,5716,1932-07-06,AB+ -Jason Mcdowell,Male,5717,1957-07-24,O- -Valerie Wright,Female,5718,1949-02-12,AB- -Anthony Lewis,Female,5719,1995-03-12,AB+ -Kiara Martinez,Female,5720,1947-05-08,AB+ -Richard King,Male,5721,1979-06-15,AB+ -Mason Hunter,Female,5723,1976-07-17,B- -Craig White,Male,5724,1957-03-21,O- -Allison Woods,Female,5725,1994-04-05,O- -Sharon Mathews,Female,5726,1963-11-24,AB+ -Henry Davis,Female,5727,1987-11-11,B+ -Christine Martinez,Female,5728,1984-06-15,B+ -Hector Barajas,Female,5729,1961-12-11,O+ -Lawrence King,Female,5730,1942-05-27,AB+ -Scott Smith,Male,5731,1977-12-19,B- -Theresa Welch,Female,5732,1963-05-20,A+ -Todd Cross,Female,5733,1953-06-15,B- -Steven Wood,Male,5734,1949-10-14,B+ -Kathy Hunt,Female,5735,1944-02-19,O+ -Kathy Phillips,Female,5736,1975-06-04,B+ -Evelyn Stone,Female,5737,1988-03-16,B+ -David Jennings,Male,5738,1933-08-12,B+ -Brian Allen,Female,5739,1933-02-15,AB+ -Gregory Lynch,Male,5740,1942-09-02,B+ -Nancy Lopez,Male,5741,1995-02-02,O- -Krystal Nguyen DDS,Male,5742,1969-09-14,A- -Kaitlyn Bender,Male,5743,1937-05-14,AB- -Robert Frederick,Male,5744,1950-01-19,AB+ -Timothy Robinson,Male,5745,1938-11-30,O+ -Lauren Webster,Male,5746,1997-07-13,O- -Monica Hunter,Female,5747,1944-04-10,B- -Jeffrey Greer,Male,5748,1941-04-01,B+ -Samantha Wagner,Female,5749,1983-02-16,A+ -William Nunez,Male,5750,1979-12-11,A+ -Michael Burgess,Male,5751,1999-06-28,A- -Glenn Sanchez,Male,5752,1999-11-15,AB+ -Ronald Edwards,Female,5753,1982-06-30,B- -Ashley Gill,Female,5754,1985-06-20,A- -Curtis Osborne,Female,5755,1995-09-06,AB- -Cindy Mccullough,Male,5756,1956-11-02,AB- -Shawn Byrd,Female,5757,1997-02-17,A- -Lindsey Hanson,Female,5758,1991-06-09,O+ -Katie Hunter,Female,5759,1985-06-27,A+ -John Norman,Female,5760,1961-04-01,B- -Jessica Owen,Female,5761,1971-01-21,AB+ -Jerry Swanson,Male,5762,1994-07-03,B+ -Mary Ramirez,Female,5763,1964-06-14,O- -Stacy Hernandez,Female,5764,1994-05-18,AB+ -Kelly Bell,Female,5765,1943-10-01,AB+ -Virginia Barnett,Male,5766,1987-10-28,B- -Angela Brown,Male,5767,1981-05-24,A+ -John Ford,Female,5768,1948-01-09,B- -Debra Jones,Female,5769,1966-11-03,O- -Miranda Lopez,Male,5770,1999-11-12,A- -Sabrina Martinez,Female,5772,1965-11-30,B- -Christine Melton,Male,5773,1990-12-02,O+ -Jon Robinson,Female,5774,1981-11-19,AB+ -Cassandra Chan,Male,5775,1977-07-12,A+ -Grace Moses,Male,5776,1994-08-09,B+ -Wanda Morrison,Male,5777,1999-11-25,AB- -Tiffany Davis,Male,5778,1933-06-16,O- -Timothy Alexander,Female,5779,1988-09-04,AB- -Mark Williams,Female,5780,1999-11-14,AB+ -Melissa Jackson,Male,5781,1950-03-19,B- -Alison Stewart,Female,5782,1991-12-02,AB- -Danielle Wallace,Female,5783,1939-02-10,O+ -Stacey Decker,Female,5784,1990-04-10,B- -Gregory Murray,Male,5785,1981-01-16,AB+ -Joshua Browning,Male,5786,1957-06-08,AB- -Tamara Hart,Female,5787,1978-04-20,B+ -Elizabeth Peters,Male,5788,1976-02-17,A- -Jeff Marks,Female,5789,1968-07-02,O- -Mariah Stewart,Male,5790,1983-11-17,AB- -Rhonda Martin,Male,5791,1948-07-19,B+ -Michael Bradley,Male,5792,1971-07-05,A- -Cathy Guzman,Male,5793,1995-03-16,A- -Clifford Avila,Male,5794,1933-05-15,AB- -Karen Cooper,Female,5795,1954-11-07,A+ -Holly Johnson,Male,5796,1940-06-02,AB- -Kimberly Clark,Male,5797,1992-06-07,AB+ -Jason Brennan,Male,5798,1970-04-16,A- -Terri Gilbert,Male,5799,1945-09-29,O- -Margaret Jones,Female,5800,1972-10-14,AB+ -Mr. John Pierce,Male,5801,1966-03-25,O+ -William Gaines,Male,5802,1985-06-01,B- -Shannon Le,Male,5803,1938-08-02,AB- -Tyler Bean,Male,5804,1949-01-14,A+ -Allison Robbins,Female,5805,1999-10-26,O- -Marco Maddox,Male,5806,1991-05-19,A+ -William Bowers,Male,5807,1987-06-04,A+ -Darlene Jones,Female,5808,1934-03-27,A+ -Alexandria Sparks,Male,5809,1972-04-27,AB- -Ryan Gomez,Male,5810,1991-06-19,O- -Sara Clark,Male,5811,1977-11-08,O- -Jesse Hudson,Male,5812,1936-08-08,A- -Robert King,Male,5813,1982-01-09,A+ -Lauren Phillips,Female,5814,1968-08-22,A- -Christy Gregory,Female,5815,1999-05-17,A- -Richard Jones,Male,5816,1941-05-08,B- -Kyle Williams,Female,5817,1937-08-07,AB- -Robert Bell,Female,5818,1966-02-14,AB- -Andrew Wilson,Male,5819,1965-03-09,AB+ -Gregory Hill,Male,5820,1965-10-14,B+ -Joseph Hunt,Male,5821,1993-01-02,A- -Nicholas Moore,Male,5822,1983-07-01,AB- -David Mendoza,Male,5823,1940-11-14,A+ -Melissa Russell,Female,5824,1996-09-07,B+ -Suzanne Phillips,Male,5825,2002-11-15,O+ -Cindy Johnson,Female,5826,1968-08-28,A+ -Elizabeth Scott,Female,5827,1998-11-19,O- -Betty Pierce,Male,5828,1989-09-07,AB- -Austin Davenport,Female,5829,1941-11-10,B+ -Tiffany Scott,Male,5830,1958-03-10,AB- -David Vazquez,Male,5831,1935-04-27,AB+ -Kyle Adams,Male,5832,1991-05-11,A- -Daniel Henderson,Male,5833,1997-08-02,O+ -Jennifer Dunn MD,Male,5835,1975-05-20,AB- -Kathryn Smith,Female,5836,1999-10-05,AB+ -Sarah Long,Female,5837,1966-09-13,AB+ -Jessica Thomas,Male,5838,1932-05-11,O+ -Lisa Myers,Male,5839,1993-03-26,A+ -Dennis Walter,Female,5840,1955-05-25,A+ -Adriana Reynolds,Male,5842,1976-08-20,A+ -Heather Lester,Male,5844,1941-04-27,B- -Allison Kelly,Female,5845,1962-04-26,A- -Stephanie Cox,Female,5846,1972-03-09,B+ -Angela Williams,Male,5847,1995-08-19,A- -Kelly Hicks,Female,5849,1999-01-11,A+ -Sierra Bowers,Male,5850,1977-09-11,O+ -Steven Brown,Male,5851,1974-10-08,B- -Pamela Shelton,Male,5852,1941-04-24,A- -Benjamin Martinez,Female,5853,1980-09-27,A+ -Isaac Thomas,Female,5854,1963-01-05,B- -Ellen Thomas,Female,5855,1961-01-27,B+ -John Avery,Female,5856,1961-06-13,O+ -Patrick Shields,Male,5857,1944-12-10,A+ -James Warner,Female,5858,1946-08-24,B+ -Dorothy Wright,Female,5859,1964-02-05,O- -Jennifer Daugherty,Female,5860,1981-07-06,B+ -Krista Sellers,Male,5861,1980-01-02,AB- -Michael Robbins,Male,5862,1963-04-16,O+ -Haley Bright,Male,5863,1973-01-30,B+ -Amanda West,Male,5865,1973-05-05,B+ -Nancy Nixon,Female,5866,1971-05-31,AB+ -Jeremiah Leblanc,Male,5867,1962-08-06,AB+ -Susan Jackson,Male,5868,1995-07-05,B+ -David White,Female,5869,1963-09-03,B+ -James Paul,Female,5870,1935-07-05,O+ -Andrew Brooks,Female,5871,1939-03-28,AB+ -Stephen Clark,Female,5872,1958-04-19,A- -Frederick Sherman,Female,5873,1995-01-01,O+ -Tiffany Gomez,Male,5874,1959-04-11,O- -Rebecca Buchanan,Female,5875,1969-10-10,O+ -Carlos Moore,Male,5876,1964-12-21,A+ -Jonathan Gonzalez,Female,5877,1933-07-13,A+ -Melanie Smith,Male,5878,1933-12-18,B- -Cindy Smith,Male,5879,1983-08-14,AB+ -Maria Duncan,Female,5880,1992-04-30,B+ -Tina Allison,Female,5881,2002-08-10,AB- -Sara Bradley,Male,5882,1995-06-15,AB+ -Michael Stevens,Female,5884,1991-06-13,A- -Darren Ramos,Male,5885,1983-07-29,O+ -Autumn Medina DDS,Female,5886,1968-09-17,AB- -William Davis,Female,5887,1967-09-01,AB- -Brianna Moore,Female,5888,1944-12-15,B+ -Mr. Gary Miller,Female,5889,1983-08-31,B+ -Sabrina Hall,Female,5890,1983-06-12,AB+ -Wendy Spears,Female,5891,1983-12-11,AB- -Matthew Lopez,Female,5892,1982-06-23,AB- -Lori Mcclain,Female,5893,1999-12-31,A+ -Albert Holder,Female,5894,1950-12-19,O- -Troy Sanchez,Male,5895,1943-06-22,B+ -Ellen Ward,Female,5896,1958-04-29,O+ -Jodi Griffin,Male,5897,1992-03-04,AB+ -Jade Turner,Female,5898,1992-03-07,B+ -Candice Rodriguez,Female,5899,1953-01-17,A+ -Patricia Bright,Male,5900,1976-12-25,A- -Helen Ward,Female,5901,1944-04-05,B+ -Joann Hendrix,Female,5902,1931-11-19,A- -Gary Grant,Female,5903,1976-04-22,B- -Tyrone Roach,Female,5904,1988-09-24,AB- -Emily Solis,Male,5905,1966-03-16,AB- -Sarah Garcia,Female,5906,1952-02-15,AB+ -Matthew Webster,Female,5907,1989-12-19,O- -Brittany Glover,Male,5908,1980-10-02,O- -Michael Young,Male,5909,1955-12-22,AB+ -Raven Dunlap,Female,5910,1946-09-08,AB+ -Pedro Stevens,Female,5912,1993-12-14,A+ -Thomas Marquez,Male,5913,2001-06-19,A- -Jason Owens,Female,5914,1987-12-06,AB+ -Austin Myers,Male,5915,1951-01-23,A- -Alexandra Cross,Female,5916,1960-05-11,B+ -Juan Randolph,Female,5917,1938-07-01,B+ -Lori Mathis,Female,5918,1936-09-06,B- -Scott Brewer,Female,5919,1986-03-07,A- -Dr. Barbara Foster,Male,5920,1949-07-04,A+ -Rachel Gibbs,Male,5921,1989-02-05,B+ -Scott Bates,Male,5922,1977-03-03,AB- -Michael Fischer,Female,5923,1968-06-01,AB- -Megan Kline,Female,5924,1969-10-19,B+ -Anna Pace,Male,5925,1931-03-23,B+ -Jonathan Sanford,Female,5926,1940-09-20,B+ -Kelly Moore,Male,5927,1973-03-23,A- -Nicole Brewer,Female,5928,1983-05-16,AB- -Selena Cooper,Female,5929,1978-03-28,AB- -Calvin Simmons,Female,5930,1948-01-14,O+ -Benjamin King,Male,5931,1930-08-15,B+ -Eric Nelson,Male,5932,1986-03-15,B- -Charles Hernandez,Female,5933,1994-07-13,B+ -Kathryn Davies,Female,5934,1960-07-13,A+ -Mark Bryant,Female,5935,1945-03-21,A+ -Samantha Baker MD,Male,5936,2002-04-19,AB- -Barbara Duran,Male,5937,1962-10-11,B+ -Christopher Shaffer,Male,5938,1930-07-06,O- -Caitlin Miller,Male,5939,1970-03-12,A+ -Daniel Pitts,Female,5940,1969-11-11,B+ -Veronica Price,Male,5941,1960-04-22,B- -Jordan Price,Male,5942,1936-12-10,AB+ -Nicholas Nash,Female,5943,1935-04-17,B+ -Darren Shea,Female,5944,1999-08-11,B- -Ryan Sanchez,Female,5945,1935-07-26,AB- -Madison Li,Female,5946,1933-06-06,AB- -Ruth Jarvis,Female,5947,1945-01-31,O+ -Kristen Branch,Male,5948,1943-11-23,A- -Heather Huffman,Female,5949,1968-01-22,A+ -Kara Beck,Male,5950,1969-10-06,A- -Darren Parker,Female,5951,1935-02-25,B+ -Christopher Taylor,Female,5952,1930-09-27,A- -Megan Short,Male,5953,1934-06-19,A+ -Joseph Martin PhD,Male,5954,1986-12-02,A+ -Steven Sutton,Male,5955,1991-09-01,B+ -Samantha Kim,Female,5956,1979-03-03,AB- -Ariel Estrada,Female,5957,1966-08-23,A+ -Nina Rich,Male,5958,1974-03-23,O- -Erica Parker,Female,5959,1960-05-07,O- -Melissa Jackson,Female,5960,1934-08-23,AB+ -John Reed,Female,5961,1983-10-12,A+ -Devin Mcbride,Male,5962,1970-07-31,O+ -Mary Long,Male,5963,1938-12-07,AB+ -Heather Schneider,Female,5964,1933-12-16,AB- -Brooke Smith,Female,5965,1992-01-03,A+ -Nicole Briggs,Female,5966,1997-11-20,O- -Debra Vazquez,Female,5968,1975-01-01,O+ -Ryan Powers DDS,Male,5969,1957-03-29,B+ -Emily Petty,Female,5970,1990-02-09,AB+ -Laurie Washington,Female,5971,1995-08-11,O+ -Alexandra Larson,Male,5972,1979-06-03,A+ -Henry Morris,Male,5974,1948-11-23,B- -Linda Neal,Male,5975,1982-06-26,O+ -Monica Lester,Male,5976,1931-12-21,O+ -Mrs. Erin Lee,Male,5977,1953-07-16,AB- -Kevin Bell,Male,5978,1948-10-08,O- -Jeremy Fernandez,Male,5979,1981-02-20,B+ -Shane Drake,Female,5980,1952-08-16,A+ -Eric Pierce,Male,5981,1969-10-03,O+ -Cynthia Jackson,Female,5982,2002-11-28,A+ -Cynthia Bright,Male,5983,2000-08-26,O- -Mr. Joshua Owen,Female,5984,2001-07-30,AB- -Brenda Johnson,Female,5985,1962-07-06,A+ -Cassandra Ryan,Female,5986,1987-02-17,A- -Edward Rodriguez,Female,5987,1968-07-19,O- -Kimberly Hardy,Male,5988,1976-10-08,O- -Melissa Collins,Female,5989,1949-10-31,B+ -Daniel Diaz,Male,5990,1954-09-10,AB+ -Amanda Hall,Male,5991,1991-01-23,AB- -Gabriel Turner,Female,5992,1975-10-24,AB- -Joshua Pennington,Male,5993,1989-07-28,B+ -Nathan Jackson,Female,5994,1963-02-17,A- -Daniel Berger,Male,5995,1996-05-27,A+ -Michael Fields,Female,5996,1975-09-13,B- -Rachel Dillon,Male,5997,1984-03-18,A- -Paige Thompson,Female,5998,1943-03-14,AB+ -Kimberly Singh,Female,5999,1960-02-14,AB- -Logan Gonzalez,Female,6000,1968-01-29,O- -Frank Fuentes,Male,6001,1984-08-07,AB- -Jonathan Taylor,Female,6002,1987-02-13,A- -Kimberly Phillips,Female,6003,1961-12-13,B- -Donna Singleton,Female,6005,1992-09-27,O+ -Christina Burns,Male,6006,1987-07-05,O+ -Tammy Mcmahon,Female,6007,1973-07-30,B+ -Edward Reed,Female,6008,1959-10-14,AB- -Michael Sims,Male,6009,1938-03-05,AB- -Rebecca Weeks,Male,6010,1952-03-18,AB+ -Kevin Roy,Male,6011,1953-03-08,AB- -Nicole Benton,Male,6012,1981-10-31,B- -Stephanie Lynch,Male,6013,1930-12-03,AB- -Kristin Blake,Male,6014,1957-10-31,A+ -Matthew Nguyen,Male,6015,1983-01-06,A- -Margaret Brown,Male,6016,1964-12-16,B+ -Teresa Friedman DVM,Female,6017,1940-11-12,B- -Hailey Johnson,Female,6018,1932-06-29,AB+ -Alex Maynard,Female,6019,1980-04-28,A+ -Hannah Fields,Female,6021,1972-10-19,A+ -Erica Stephens,Male,6022,1974-07-28,A- -John Weber,Female,6023,1938-07-27,O+ -Jessica Rogers,Female,6024,1944-11-30,B- -Dr. Jose Bartlett,Male,6025,1946-10-13,A- -Cindy Savage,Male,6026,1946-01-07,A+ -Michael Williamson,Male,6027,1986-05-15,AB+ -Nancy Ellis,Male,6028,1950-05-22,A- -Ariana Silva,Male,6029,1962-09-19,O+ -Diana Diaz,Male,6030,1953-04-29,A+ -Parker Compton,Female,6031,2002-03-19,A- -Glenda Hernandez,Male,6032,1930-11-11,B- -Elizabeth Wong,Male,6033,1962-02-19,O+ -Cesar Williams,Male,6034,1933-02-08,B- -Michelle Hernandez,Male,6035,1959-12-13,B- -Christopher Alexander,Female,6036,1988-03-17,B- -Jesse Brown,Female,6037,1997-01-15,A- -Patricia Martin,Male,6038,1972-09-05,O+ -Robert Payne,Male,6039,2001-06-13,A- -Kristen Aguirre,Female,6040,1952-11-08,A- -Sarah Reed,Male,6041,1945-04-24,A- -Jared Townsend,Female,6042,1979-07-31,A+ -Molly Keith,Female,6043,1984-01-05,AB- -Kaitlin Armstrong DDS,Male,6044,1977-04-14,O- -Brandon Hanson,Female,6045,1960-02-10,A+ -Kenneth Davis,Male,6046,1931-12-23,O+ -Philip Brown,Male,6047,1995-11-18,O- -Jacob Clark,Female,6048,1954-12-05,O- -Evan Mckinney,Female,6049,1984-01-19,O- -Brandon Lee,Male,6050,1932-05-20,AB- -Valerie Riley,Female,6051,1948-06-26,A- -Eric Duncan,Male,6052,1976-03-21,B+ -Kathleen Johnson DDS,Female,6054,1934-10-23,AB+ -Timothy Reynolds,Female,6055,1933-01-22,O+ -Amy Moore MD,Female,6056,1961-10-06,B+ -Jessica Perez,Male,6057,1937-09-29,AB- -Javier Johnson,Female,6058,1971-01-22,AB- -Nicole Mccoy,Female,6059,1979-05-15,AB+ -Leslie Jennings,Female,6060,1967-12-31,O- -Nicholas Kemp,Female,6061,1949-02-22,A- -Laurie White,Female,6062,1967-09-22,AB+ -Lisa Diaz,Male,6063,1948-07-16,B+ -Briana Johnson,Male,6064,1975-04-01,B+ -Charles Singh,Female,6066,1982-06-02,AB+ -Randy Rodriguez,Female,6067,1939-05-29,AB- -Brent Young,Male,6068,1948-02-18,O+ -Steve Moody,Male,6069,1965-03-10,B- -Linda Barker,Male,6070,1970-07-16,A- -Hayley Perry,Female,6071,1959-02-01,B+ -Michael Lindsey,Male,6072,1994-03-19,B+ -Jonathan Miranda,Male,6073,1987-03-19,AB+ -Terry Cooper,Female,6074,1935-01-23,A- -Suzanne Smith,Male,6075,1937-05-20,AB+ -Nicholas Vasquez,Male,6076,1934-09-14,O- -Michelle Coleman,Female,6077,1983-04-09,A- -Michele Burns,Female,6078,1955-05-09,O- -Brendan Bailey,Female,6079,1937-08-18,B+ -Reginald Rodriguez,Female,6080,1968-10-02,AB- -Robert Rose,Male,6081,1966-09-18,O- -Melanie George,Male,6082,1940-05-19,A- -Margaret Winters,Male,6083,2000-10-24,A+ -Gregory Williams,Female,6084,1940-08-07,A- -Bruce Boyle,Male,6085,1934-12-12,AB+ -Jonathan Mitchell,Male,6086,1978-12-23,O- -John Reynolds,Female,6087,1983-12-01,O+ -Joshua Lawrence DDS,Female,6088,1994-05-06,A+ -Ricky Parker,Female,6089,1966-06-05,AB- -Danny Matthews,Female,6090,1988-09-05,B- -Amber Day,Female,6091,1997-06-25,AB+ -Stephanie Murray,Male,6092,1979-06-27,AB+ -Leslie Reyes,Male,6094,1972-07-28,O+ -Deborah Castro,Female,6095,2000-12-19,B- -Stephanie Villegas,Female,6096,1939-01-17,B+ -Katie Green,Male,6097,1983-05-20,B- -Raymond Hudson,Female,6098,1973-12-22,AB- -Ashley Vaughn,Female,6099,1999-09-14,AB- -Megan Jones,Female,6100,1996-05-08,A+ -Robyn Anthony,Female,6101,1971-08-12,B+ -Eric Tapia,Female,6102,1992-06-04,AB+ -Joseph Ayala,Female,6103,1978-12-23,O- -Taylor Lopez,Female,6104,1959-03-05,AB- -Richard Burke,Female,6105,1954-06-08,O+ -Linda Chung,Male,6106,1957-03-20,O+ -Dana Wiggins,Male,6107,1940-09-29,O+ -Brian Wallace,Male,6109,1998-06-12,A- -Jennifer Flores,Male,6110,1956-10-14,B+ -Dylan Alvarez,Male,6111,1942-04-13,B+ -Wesley Brown,Male,6113,1964-07-30,AB- -Cody Vaughn,Male,6114,1966-03-26,AB- -Whitney Grant,Female,6115,1965-04-28,O+ -Michelle Wade,Female,6116,1997-01-13,B+ -Thomas Porter,Female,6117,1998-08-20,B+ -Heather Norris,Female,6119,1930-07-11,AB- -Melissa Davis,Female,6120,1998-08-26,A- -Bryan Dougherty,Female,6121,1943-06-19,O- -Cameron Willis,Male,6122,1945-12-19,O- -Anthony Mcmillan,Female,6123,2000-09-22,A+ -Kim Adams,Female,6124,1957-10-26,B+ -Jasmine Howard,Male,6125,1986-09-10,AB+ -Jessica Villarreal,Male,6126,1967-06-18,O- -Desiree Brooks,Female,6127,1994-01-08,A+ -Michelle Thompson,Male,6128,1999-07-10,B- -Holly Fletcher,Male,6129,1994-10-18,AB+ -Jacqueline Jackson,Male,6130,2001-04-27,B+ -Holly Sandoval,Male,6131,2000-04-05,O- -Danielle Shaw,Female,6132,1963-12-05,A- -Theresa Anderson,Female,6133,1935-02-18,B- -Michael Yu PhD,Female,6134,1954-10-24,A+ -Christopher Washington,Female,6135,1943-01-16,O- -Emily Reeves,Male,6136,1958-01-08,B+ -Scott Brown,Female,6137,1998-01-12,O- -Carol Campos,Male,6138,1955-04-01,AB- -Michelle Cole,Female,6139,1961-03-29,B- -Ryan Jenkins,Male,6140,1969-10-02,O- -Matthew Smith,Male,6141,1932-11-17,O+ -Micheal Allen,Female,6142,1963-06-22,A- -Theresa Lee,Male,6143,1956-09-26,AB- -Stefanie Vance,Male,6144,1961-03-01,AB- -Devin Lara,Female,6145,1964-06-11,O- -Diane Reid,Female,6146,1995-07-01,A- -Katherine Webster,Male,6147,1995-02-24,AB- -Emily Terry,Male,6148,1962-10-29,AB+ -Courtney Wilson,Male,6149,1992-02-29,B- -Jamie Murphy,Female,6150,1962-09-09,AB+ -Jose Powell,Female,6151,1980-08-15,A+ -Zoe Henderson,Female,6152,1930-11-04,AB+ -Jamie Jennings,Female,6153,1996-01-16,A- -Gary Casey,Female,6154,1939-03-14,O+ -Jessica Orozco,Male,6155,1938-09-12,AB- -Heather Hernandez,Female,6156,1933-06-05,A- -Brian Duncan,Male,6157,1944-09-10,AB- -Charles Poole,Female,6158,1979-01-05,B+ -Phyllis Arellano,Male,6159,1947-01-18,O+ -Sarah Wang,Female,6160,1989-05-20,AB- -Briana Bray,Male,6162,2001-01-22,AB+ -Kimberly Tanner,Female,6163,1990-12-05,B+ -Terri Solomon,Female,6164,1996-11-13,B+ -Christina Duffy,Male,6165,1969-03-27,A+ -Susan Griffin,Male,6166,1943-05-24,B+ -Jennifer Grant,Male,6167,1943-09-02,B+ -Stacy Villa,Male,6168,1935-05-16,O- -Jessica Sullivan,Male,6169,1964-03-20,O+ -Lindsey Wagner,Male,6170,1982-09-12,AB+ -Brittney Brady,Female,6171,1959-09-14,A- -Kristine Vega,Male,6172,1992-12-08,AB+ -Russell Chase,Female,6173,1966-04-17,AB+ -Daisy Warner,Female,6174,1942-07-04,O- -Elizabeth Reed,Male,6175,1974-01-09,B- -Randy Steele,Female,6176,1947-11-01,AB- -Vanessa Dixon,Male,6177,1971-09-18,AB- -Brian Guerrero,Female,6178,1985-10-28,A- -Matthew Gutierrez,Male,6179,1962-03-09,B+ -Jessica Adams,Female,6180,1999-10-24,A+ -Philip Wright,Female,6181,1960-07-13,A- -Shelley Fleming,Female,6182,1975-05-12,B- -Haley Hancock,Male,6183,1996-02-03,AB- -Shane Joseph III,Female,6184,1939-03-13,A+ -Jessica Brown,Male,6185,1992-12-20,A- -Gregory Duncan,Male,6186,1956-04-04,A+ -Melissa Kirby,Male,6187,1993-06-20,AB+ -Earl Lee,Female,6188,1960-02-01,O+ -Terri Guzman,Female,6189,1998-10-03,AB+ -Jose Contreras,Male,6190,1951-01-09,O- -Aaron Vargas,Female,6191,1945-08-08,B+ -Robert Deleon,Female,6192,1933-06-27,AB- -James Vazquez,Male,6193,1993-01-27,A+ -Dr. Brittany Hill,Male,6194,1960-10-11,A- -Debra King,Male,6195,1977-11-10,B+ -Raymond Hays,Female,6196,1956-01-02,O+ -Makayla Mcguire,Female,6197,1954-12-08,A- -Lindsay Williamson,Female,6198,1960-11-12,AB- -Mary Cole,Female,6199,1951-11-29,A+ -Marcus Sanders,Female,6200,1941-08-18,A+ -Sherry Walters,Female,6201,1955-03-31,AB+ -Susan Raymond,Male,6202,1989-05-29,O+ -Brenda Miller,Male,6203,2002-09-13,O+ -Jennifer Orozco,Male,6205,1984-01-16,AB- -Brenda Perry,Female,6206,1959-04-22,A+ -Joel Robertson,Female,6207,1972-05-12,B+ -Joshua Howard,Female,6208,1975-08-07,O+ -Kelsey Ward,Male,6209,1978-02-08,O+ -Thomas Carlson,Female,6210,1963-12-06,A- -David Dennis,Male,6211,1962-09-26,AB- -Ian Wilson,Male,6212,1972-10-28,AB+ -Marvin Watson,Male,6213,1968-04-29,A- -Thomas Phillips,Female,6214,1947-04-07,A- -John Stark,Male,6215,1981-06-04,B- -Gabrielle Mcclain,Male,6216,1964-10-30,O- -Charles Baldwin,Female,6217,1949-02-25,B- -April Harrison,Male,6218,1964-01-10,O+ -Dr. Christopher Williams,Male,6219,1967-09-26,A+ -Richard Williams,Female,6220,1994-11-04,O- -Adam Boyd,Female,6221,1986-04-23,O- -Rebecca Bright,Male,6222,2001-12-21,A+ -Paul Golden,Female,6223,1936-02-09,O- -John Garcia,Male,6224,1947-10-30,A+ -Andrew Torres,Male,6225,1975-03-18,O- -Dorothy Delgado,Female,6226,1955-11-27,A- -Aaron Coleman,Male,6227,1984-11-29,B+ -Kathryn Glenn,Male,6228,2001-09-02,AB- -Brian Brock,Female,6230,1943-01-18,AB- -Todd Guerrero,Female,6231,1985-09-23,B- -Christopher Nguyen MD,Male,6232,1995-07-08,A- -Crystal Koch,Male,6233,1966-05-04,O- -Timothy Brown,Female,6234,1945-03-15,AB+ -Julie Cooper,Female,6235,1931-09-20,A+ -Lacey Graham,Male,6236,1962-10-29,A- -Julie Trujillo,Male,6237,1967-09-24,O- -Ann Johnson,Male,6238,1948-01-16,AB- -James Stuart,Female,6239,1935-08-07,AB- -Joanne Townsend,Male,6240,1966-01-23,A+ -Dustin Nelson,Female,6241,1981-04-08,AB+ -Michael Johnson,Male,6242,1946-02-10,O- -Jessica Berg,Female,6243,1952-05-30,O- -Phyllis Bell,Male,6244,1930-09-07,AB+ -David Atkinson,Male,6245,1982-11-13,AB+ -Ashley Jones PhD,Male,6246,1988-08-31,AB+ -David Pittman,Male,6247,1977-07-11,AB- -Kristen Turner,Male,6248,2000-11-30,A+ -Heather Ferguson,Female,6249,1994-07-20,A- -Mrs. Ashley Cook,Female,6250,1955-02-14,B+ -Maurice Lyons,Male,6251,1999-09-20,AB+ -William Martin,Male,6252,1974-07-09,A+ -Douglas Bradley,Female,6253,1937-04-26,B- -Marie Bowen,Male,6254,1949-12-06,O- -Heidi Anderson,Female,6255,1995-06-24,O- -Anna Schultz,Male,6256,2000-12-01,B+ -Daniel Jones,Female,6257,1953-09-19,B+ -Monica Davis,Female,6258,1935-06-11,O+ -Tiffany Vaughan,Male,6259,1975-02-08,B- -Mary Lee,Male,6260,1998-09-26,A- -Natasha Miller,Female,6261,1965-06-14,B+ -Frederick Rodriguez,Female,6262,1985-12-21,AB+ -Tammy Maldonado,Female,6263,1965-08-31,AB+ -Cheryl Sweeney,Male,6264,1937-08-05,A- -Nicholas Morrison,Male,6265,1966-01-11,AB- -Michelle Parks,Male,6266,1957-01-17,B- -Tammy Benson DVM,Female,6267,1997-10-23,AB+ -Katherine Curry,Male,6268,1957-11-13,B+ -Joan White,Female,6269,1995-02-22,O+ -Wendy Taylor,Male,6270,1958-05-31,A+ -John Black,Male,6271,1987-01-06,O- -William Miller,Female,6272,1950-02-12,B- -Laura Sanchez,Female,6273,1932-10-05,O- -James Powell,Female,6274,1940-05-11,A+ -William Gould,Male,6275,1993-01-20,B- -Lisa Tran,Male,6276,1941-10-08,B+ -Jonathan Garcia,Female,6277,1942-10-13,A+ -Mark Mclean,Female,6278,1986-08-06,AB+ -Angel Ross,Male,6279,1935-08-15,A- -Amy Harris,Female,6280,1991-04-24,AB+ -Jennifer Horn,Female,6281,1934-09-13,B+ -Brian Martin,Female,6282,1930-11-07,A- -Lauren Ortiz,Male,6283,1969-05-27,AB+ -Connor Brown,Female,6284,1987-04-14,A+ -Charles Patel,Female,6285,1933-06-14,A+ -Gregory Salazar,Female,6286,1966-01-09,A+ -Joshua Callahan,Male,6287,1985-08-16,O- -Megan Bailey,Male,6288,1961-05-18,B+ -Megan Allison,Male,6289,1976-06-16,A+ -Margaret Bauer,Female,6290,1995-09-17,AB+ -James Daniel,Male,6291,1998-04-09,O+ -Janet Johnson,Female,6292,1968-05-12,B+ -Elizabeth Kane,Male,6293,1937-11-06,A+ -Scott Bartlett DVM,Female,6294,1969-05-01,O+ -Erica Cortez,Male,6295,1946-02-24,A- -Barbara Love,Female,6296,1980-05-13,AB+ -Stephen Cook,Male,6297,1947-02-12,A+ -Wayne Simmons,Female,6298,1943-07-11,O- -Edward White,Male,6299,1940-12-20,O- -Erica Beasley DVM,Male,6300,1934-06-14,A- -Linda Young,Female,6301,1959-12-31,O+ -Heather Myers,Male,6302,1977-04-18,AB- -Lisa Lopez,Female,6304,1946-08-23,O- -Traci Carpenter,Female,6305,1994-02-14,B+ -Mary Williamson,Male,6306,1954-06-07,O- -Alvin Robbins,Female,6307,1940-11-05,O- -Tyler Hoover,Male,6308,1981-09-18,AB+ -Brandi Moody,Male,6309,1954-02-10,O- -Karen Bryant DDS,Female,6310,1985-04-12,B- -Ashley Weeks,Female,6311,1991-07-24,A+ -Michael Martinez,Female,6312,1979-07-26,A- -Jacqueline Hanson,Female,6313,1967-02-14,O- -Lucas Hernandez,Male,6314,1948-04-22,AB- -Antonio Gonzales,Female,6315,1934-05-07,B+ -Bryan Johnson,Female,6316,1994-01-09,AB- -Beth Palmer,Male,6317,1956-11-03,O- -Mikayla Baker,Female,6318,1977-04-24,O- -Joseph Flores,Male,6319,1990-01-28,B- -Rhonda King,Female,6320,1998-01-17,O- -Donald Harris,Female,6321,1987-08-01,O- -Mr. Kenneth Long,Male,6322,2001-10-07,A+ -Denise Tanner,Male,6323,1958-05-04,AB- -Sharon Richardson,Male,6324,1981-07-08,B- -Melissa Bruce,Female,6325,1985-07-19,AB- -Jesse Hicks,Female,6326,1961-05-12,B- -Barbara Potter,Female,6327,1973-05-24,AB- -Ana Powell,Female,6328,1948-09-20,O- -Kevin Dean,Female,6329,1933-12-20,AB- -Courtney Morgan,Female,6330,1987-03-07,AB- -Hunter Miller,Female,6331,1944-12-07,B- -Matthew Bryant,Female,6332,1955-10-21,A- -Joseph Hughes,Male,6333,1941-04-10,O+ -Kristin Harrington,Female,6334,1954-04-14,B- -Pamela Cunningham,Female,6335,1959-09-16,B- -Margaret Moore,Female,6336,1980-05-30,B- -Andrew Bailey,Male,6337,1969-04-09,AB+ -Ray Patterson,Female,6338,1948-09-28,A- -Jimmy Moreno,Male,6339,1985-02-23,AB+ -Mr. Gary Lynn,Male,6340,1991-01-09,AB+ -Zachary Yates,Male,6341,1942-08-30,B- -Jillian Gregory,Male,6342,2002-11-12,O+ -Kevin Chang,Male,6343,1954-03-24,B- -Patrick Payne,Male,6344,1975-04-24,O- -Mary Arellano,Male,6345,1965-12-19,O+ -Thomas Ortiz,Male,6346,1987-06-06,AB+ -Taylor Dyer,Female,6347,1931-08-13,B+ -Ashley Brock MD,Male,6348,1987-03-31,AB- -Jose Lewis,Female,6349,1982-08-01,AB- -Carmen Harris,Male,6350,1947-10-28,A- -Antonio Evans,Female,6351,1951-01-24,B+ -Gwendolyn Gordon,Female,6352,1955-11-20,A+ -Scott Howard,Female,6353,1975-01-20,A- -Mark Hall,Male,6354,1962-01-21,O+ -Yolanda Rodriguez,Female,6355,1965-06-08,AB+ -Thomas Wood,Male,6356,1984-08-29,O+ -Angela Luna,Female,6357,1996-08-28,O+ -John Haynes,Male,6358,1975-08-05,AB- -David Graham,Male,6359,1957-04-17,B- -Christopher Brown,Male,6360,1936-09-28,O- -Cynthia Hernandez,Female,6361,1955-11-26,A+ -Elizabeth Larson,Male,6362,1932-10-12,AB+ -Julia Hill,Female,6363,1955-05-25,O+ -Anthony Shah,Female,6364,1966-05-01,A+ -Bonnie Randall,Male,6365,1996-09-19,O+ -Dr. Lisa Leblanc,Male,6366,1931-02-11,B+ -Anita Davis,Female,6367,1950-03-21,AB- -Lisa Stein,Female,6368,1991-06-03,O- -Shawn Gould,Female,6369,1991-10-01,AB- -Carol Warner,Male,6371,1996-09-17,A+ -Jonathan Hatfield,Male,6372,1960-11-07,AB+ -Teresa Mendoza,Female,6373,1977-07-22,O+ -Jeffrey Brown,Female,6374,1962-04-18,O- -Matthew Cox,Female,6375,1942-04-13,B+ -Alexander Logan,Male,6376,1954-05-16,AB- -Heather Chapman,Female,6377,1937-03-03,B+ -Karen Taylor,Female,6378,1992-01-29,A+ -Joseph Mathews,Female,6379,1956-04-17,AB- -Michael Garza,Male,6380,1948-12-20,O+ -Gregory Mahoney,Male,6381,1944-09-12,O+ -Kari Morris,Female,6382,1942-08-27,B+ -Jessica Mays,Female,6383,2001-05-09,AB+ -Cameron Holt,Male,6384,1970-04-20,O- -Angela Evans,Male,6385,1960-06-18,B- -Jamie Frederick,Male,6386,1950-09-19,AB- -John Meyers,Female,6387,1963-09-11,O+ -Melissa Clark,Female,6388,1987-08-24,A+ -Alex Vargas,Female,6389,1995-10-29,AB- -Daniel Cole,Male,6390,1971-04-22,AB+ -Albert Cohen,Female,6391,1977-08-09,AB+ -Scott Graham,Female,6392,1995-05-28,O+ -Roy Carter,Male,6393,1981-08-11,O+ -Jay Doyle,Male,6394,2002-08-05,B+ -Veronica Bishop,Male,6395,1980-03-02,O+ -Vanessa Foster,Female,6396,1979-05-03,B+ -Maria Carter,Female,6397,1957-01-29,A- -Dalton Craig,Male,6398,1952-03-01,B- -Diane Paul,Female,6399,1992-01-05,O+ -John Bartlett,Female,6400,1964-10-28,AB- -Sharon Fry,Female,6401,1958-02-26,AB- -Katelyn Wilson,Male,6402,1980-01-18,B+ -Brandon Farmer,Female,6403,1968-12-18,A- -Daniel Scott,Female,6404,1992-09-20,A- -Penny Garcia,Female,6405,1970-03-30,O- -Richard Solomon,Female,6406,1977-10-18,A+ -Stephanie Price,Male,6408,1944-03-12,O+ -Andrea Cunningham,Male,6409,1936-07-30,B+ -Joshua Bailey,Female,6411,1943-05-28,AB- -Michael Adams,Male,6412,1994-12-06,A- -Carrie Hoover,Male,6413,1961-03-23,AB- -Matthew Houston,Female,6414,1971-07-06,AB- -Raymond Walker,Female,6415,1955-08-01,A- -Shane Palmer,Male,6416,1959-02-15,B- -Catherine Harris,Female,6417,1935-05-11,A- -Matthew Little,Female,6418,1949-03-25,A- -Brendan Shaffer,Male,6419,1968-07-02,A+ -Jesse Ayala,Male,6420,1969-03-30,B+ -Michael Thornton,Male,6421,1940-09-12,B+ -Miranda Smith,Female,6422,1932-03-18,A- -Phyllis Kim,Female,6423,1997-10-18,AB+ -Samantha Young,Male,6424,1968-06-01,B+ -Gregory Taylor,Female,6425,1943-03-21,B+ -Laura Jones,Male,6426,1967-07-05,B+ -Claire Cooper,Female,6427,1942-05-22,A- -Jeffery Johnson,Male,6428,1971-08-07,AB- -Ashley Obrien,Male,6429,2000-11-12,O+ -Steven Miller,Male,6430,1974-06-02,AB- -Donald Church,Female,6431,1981-02-10,A+ -Travis Rodriguez,Female,6432,1944-07-19,AB+ -Jacqueline Smith,Male,6433,1967-03-26,A- -Darryl Garrett,Female,6434,1965-10-02,B- -Alicia Howard,Female,6435,1976-12-06,O- -Heather Harris,Male,6437,1943-05-20,A- -Anthony Cole,Female,6438,1940-07-21,O+ -Barbara Patel,Male,6439,1964-02-10,O- -William Hall,Female,6440,1969-10-19,B- -Felicia Nichols,Female,6441,1939-09-29,A+ -Robert Cameron,Male,6442,1956-10-03,A+ -Jesse Cochran,Female,6443,1977-06-28,B- -Carol Yates,Male,6444,1985-05-23,AB- -Jim Green,Female,6445,1993-04-10,B- -Jonathan Alexander,Male,6446,1939-10-16,B+ -Alyssa Olsen,Male,6447,1999-09-07,B+ -Tammy Flores,Female,6448,1936-08-15,A- -Ronald Rodriguez,Male,6449,1941-06-30,O+ -Ashley Vincent,Male,6450,1932-09-28,B+ -Lauren Morris,Male,6451,1989-03-20,AB+ -Rachel Smith,Male,6452,1949-06-29,A- -Jennifer Lucas,Female,6453,1985-12-28,A- -Debra Harmon,Female,6454,1982-08-25,A- -Megan Perez MD,Female,6455,1956-06-26,O- -Anthony Williams,Female,6457,1999-02-01,O- -Mark Shah,Male,6458,1944-07-22,A+ -Megan Mcdonald,Male,6459,1974-06-23,A- -Julia Estrada,Male,6460,1976-01-06,AB- -Christina Ellis,Male,6461,1993-03-30,B+ -Matthew Walsh,Male,6462,1962-07-05,A+ -Frank Brewer,Female,6463,1941-09-06,O+ -Roger Lopez,Male,6464,1950-09-02,B- -Jason Smith,Female,6465,1992-02-25,O- -Cameron Johnson,Female,6466,1982-04-12,A- -Jim Rodriguez,Male,6467,1998-07-11,O+ -Jason Williams,Male,6468,1958-12-29,A+ -Colton Williams DDS,Female,6469,1996-12-13,A+ -Patrick Stevens,Female,6470,2002-09-11,O- -Monique Harris,Female,6472,1934-07-16,A+ -Melissa Benton,Male,6473,1981-10-25,AB- -David Woods,Female,6474,1948-07-08,A+ -Molly Wong,Male,6475,1983-04-12,AB+ -Carrie Simmons,Male,6476,1938-08-31,B+ -James Nguyen,Male,6477,1980-06-24,B- -Kristina Fuentes,Male,6478,1953-03-20,A+ -Peter Allen,Female,6479,1945-09-16,B+ -Erin Martinez,Female,6480,1983-09-01,B+ -Ronnie Padilla,Male,6481,1978-10-27,AB+ -Joseph Fisher,Male,6482,1946-06-15,O+ -Dawn Wilson,Male,6483,1976-07-09,A+ -Steven Shaw,Male,6484,1942-06-19,AB- -Mr. Craig Richards,Male,6485,1979-09-09,O+ -Darrell Rice,Female,6486,1955-10-14,B+ -Rebecca Gilbert,Female,6487,2000-09-01,B+ -Joshua Watkins,Female,6488,1955-04-01,A- -Courtney Stokes,Male,6489,1937-04-25,A+ -Ashley Glover,Female,6490,1947-11-07,O- -Mark Morgan,Female,6491,1940-11-06,AB+ -Matthew Cannon,Male,6492,1964-11-12,AB+ -Albert Riley,Male,6493,1965-12-05,O- -Robert Torres,Female,6494,1983-07-23,B- -Teresa Martin,Female,6496,1940-03-11,B+ -Theresa Woods,Male,6497,1943-06-08,A- -Jacqueline Kennedy,Male,6498,1949-11-20,AB- -Kevin Steele,Female,6499,1967-07-05,AB+ -Douglas Hanson,Male,6500,1988-09-11,O+ -Jason Hampton,Female,6501,2001-04-29,B+ -Tracy Webb,Female,6502,1960-05-11,AB- -Xavier Dawson,Female,6503,1932-03-19,AB+ -Courtney Warner,Female,6504,1955-02-09,A- -Sandra Cline,Female,6505,1974-07-09,B- -Larry Jensen,Female,6506,1976-11-04,A- -Nicholas Fields,Female,6507,1959-04-12,O+ -Linda White,Female,6508,1951-02-01,A- -Anthony Steele,Male,6509,1978-03-10,AB- -Paul Carter,Female,6510,1985-12-13,B+ -Miss Melissa Ward,Male,6511,1980-11-15,O+ -Adam Haynes,Male,6512,1968-11-08,B+ -Angela Rodriguez,Female,6513,1982-07-17,O- -Michelle Herrera,Male,6514,1999-06-02,A+ -Kathy Freeman,Male,6515,1977-07-09,O- -Daniel Klein,Male,6516,1990-04-14,AB- -Reginald Kelley,Male,6517,1967-07-10,A+ -Michael Miles,Male,6518,1995-05-07,O- -Vicki Wilson,Male,6519,1935-10-25,A+ -Theresa Taylor,Male,6520,1998-12-04,AB+ -Kathryn Avery,Male,6521,1961-07-30,A- -Matthew Green,Female,6522,1975-06-22,O+ -John Martinez,Male,6523,1969-07-23,A+ -Stephanie Lopez,Male,6524,1969-12-08,AB+ -Olivia Mccarthy,Female,6525,1999-08-03,A- -Dr. Sherry Taylor,Female,6526,1934-12-20,A- -Amanda English,Female,6527,1965-08-06,B- -Heather Vasquez,Male,6528,1977-11-20,B+ -Jessica Roberts,Female,6529,1975-03-14,O- -Lisa Ramos,Female,6530,1983-09-30,B- -Jessica Campos,Male,6531,1966-08-20,B+ -Charles King,Male,6532,1972-03-07,B+ -Lindsay Garner,Male,6533,1938-01-10,AB- -Eric Lewis,Female,6534,1967-02-23,AB+ -Tamara Smith,Male,6535,1968-06-08,B- -Joseph Stevens,Female,6536,1963-09-22,B- -Melissa Anderson,Male,6538,1938-02-19,B+ -Albert Perkins,Male,6539,1935-07-11,A- -Cynthia Butler,Female,6540,1995-02-28,AB+ -Helen Mclaughlin,Male,6541,1936-08-12,A- -Becky Kelley,Male,6542,1983-05-03,O+ -Sherry Sanchez,Male,6543,1934-05-29,A+ -Jennifer Peterson,Female,6544,1931-12-19,AB- -Randy Smith,Female,6545,1984-08-10,AB- -Derek Sanchez,Male,6546,2000-01-26,O- -Steven Gray,Male,6547,1964-09-01,A- -Jasmine Hardy,Male,6548,1948-07-27,A+ -Gail Moore PhD,Female,6549,2002-08-27,B+ -Jeremy Adkins,Male,6550,1932-11-14,O- -John Jensen,Male,6551,2001-01-01,AB- -Joseph Simpson,Female,6552,1961-10-23,A+ -Dr. Kenneth Kirby,Female,6553,1952-09-29,B- -Megan Whitehead,Female,6554,1951-08-24,O+ -Derek Austin,Male,6555,1957-05-12,B+ -Amanda Pitts,Male,6556,1958-04-22,B- -Cody Bell,Female,6557,1945-04-10,O+ -Carla Young,Female,6558,1967-11-17,B+ -Steve Hansen,Female,6559,1979-04-18,A- -Kim Porter,Female,6560,1947-12-06,AB+ -Ernest Ellis,Male,6561,1950-03-18,O- -Dana Cooper,Female,6562,1987-12-12,O- -Bruce Hernandez,Female,6563,1985-03-29,AB+ -Robin Fisher,Female,6564,1938-01-20,A+ -Michael Maldonado,Male,6565,1945-08-05,AB+ -Scott Foster,Male,6566,1947-07-12,A- -Amanda Boyd,Female,6567,1971-07-24,AB- -Brandon Larson,Female,6568,1969-07-31,AB+ -Wayne Alexander,Female,6569,1965-11-10,O+ -Angela Parker,Female,6570,1999-12-18,AB- -Amanda Fowler,Female,6571,1946-12-20,AB+ -Ryan Ward,Female,6572,1944-12-03,O- -Derek Lloyd,Female,6573,1999-06-07,B- -Lauren Good,Male,6574,1997-12-11,O+ -Kathy Chapman,Male,6575,1990-12-10,A- -Steven Morales,Male,6576,1979-02-10,O+ -Brandon Kirk,Female,6577,1977-08-18,B+ -Joshua Bruce,Female,6578,1952-12-09,A+ -Angela Warren,Female,6579,1935-02-25,B- -Sherry Bauer,Male,6580,1948-08-13,O+ -Brian Chen,Female,6581,1969-12-19,B+ -Christopher Newman,Male,6582,1967-06-11,AB+ -Scott Wilson,Female,6583,1942-07-23,O+ -Ronald Potter,Female,6585,1998-06-19,O+ -Jenny Douglas,Male,6586,1953-01-30,O+ -Sabrina Gonzales,Female,6587,1992-07-05,A+ -Ann Fisher,Female,6588,1936-06-03,O+ -Blake Moyer,Male,6589,1975-01-24,O+ -Jacob Atkins,Male,6590,1956-02-22,A+ -David Simpson,Female,6591,1946-02-03,B+ -Kyle Russell,Female,6592,1948-07-30,AB- -Debra Hill,Female,6593,1973-05-08,B- -Charles Lewis,Female,6594,1943-06-24,B+ -Amanda Kelley,Male,6595,1997-01-03,A- -Teresa Brown,Female,6596,1981-03-28,AB- -Tammy Cruz,Female,6597,1942-10-31,O- -Allison Elliott,Male,6598,1969-06-12,A+ -Mike Garcia,Male,6599,1980-01-25,A+ -Monica Collins,Male,6600,1963-06-02,O+ -Lauren Castaneda,Male,6601,1987-08-24,O+ -Ronald Richardson,Male,6602,1994-06-01,A- -Mary Sanders,Male,6603,1966-01-31,O- -Dana Nguyen,Female,6604,1980-06-30,O+ -Trevor Mckenzie,Female,6606,1975-03-30,AB+ -Andrea Lutz,Male,6607,1979-10-04,O+ -Jordan Berg,Female,6608,1930-01-17,O+ -Manuel Moore,Female,6610,1966-08-14,AB+ -Brian Montgomery,Male,6611,1976-02-17,O- -Adam Espinoza,Male,6612,1987-02-06,AB+ -Rachel Taylor DDS,Male,6613,1979-11-11,A+ -Brandon Hart,Female,6614,1998-09-16,AB+ -Justin Thornton,Female,6615,1946-04-23,B- -John Walker,Male,6616,1975-02-07,A+ -William Barber,Female,6617,1943-03-09,O+ -Angela Knox MD,Male,6618,1982-08-31,A- -Caleb Stevens,Female,6619,1937-10-14,A+ -Kimberly Hunt,Male,6620,2002-06-12,O- -Devin Cantu,Male,6621,1973-09-24,O- -Katie Hill,Female,6622,1999-10-27,AB+ -William Hicks,Female,6623,1992-10-09,A+ -Emily Harrington,Female,6624,1991-01-06,O+ -Jerry Clarke,Female,6625,1977-07-06,O- -Kelsey Wagner,Male,6626,1932-12-30,AB- -James Woodard,Male,6627,1946-10-08,O+ -Marie West,Male,6628,1994-12-22,AB- -Kathy Campbell,Female,6629,1983-08-10,B- -Joshua James,Female,6630,1933-11-05,AB- -Molly Davis,Female,6631,1993-11-10,B+ -Vanessa Green,Male,6632,1986-08-09,O- -Penny House,Male,6633,1940-11-26,AB+ -Brian Goodman,Female,6634,1964-04-07,B- -Eric Hernandez,Male,6635,1973-03-26,A+ -George Bauer,Female,6637,1963-06-02,O+ -Drew Rivera,Female,6638,1990-01-25,O- -Tammy Henry,Male,6639,1996-08-20,B- -Tyler Crane,Male,6641,1964-11-26,B- -Mary Marquez MD,Female,6642,1987-10-06,B+ -Latasha Briggs,Female,6643,1938-06-20,O- -Kristin Valencia,Female,6644,1986-03-31,A+ -Jesse Anderson,Male,6645,1992-02-17,A+ -Gary Cole,Male,6646,2002-12-19,AB+ -Jamie Wade,Female,6647,1995-05-02,A- -Lisa Keller,Male,6648,1998-01-24,AB- -Troy Rodgers,Female,6649,1968-04-02,A+ -Jacob Snow,Male,6650,1970-01-07,B+ -Nicholas Edwards,Male,6651,1943-07-05,AB+ -Kelly Perry,Male,6652,1943-06-28,AB- -Troy Gomez,Male,6653,2000-07-15,B- -Mr. Kenneth Reynolds,Male,6654,1940-11-13,O- -Debra Reed,Male,6655,1938-02-13,A+ -Patrick Brock,Female,6656,1941-10-29,AB+ -Deborah Watson,Female,6657,1954-07-29,B- -Emily Hodges,Male,6658,1949-06-18,A+ -Anthony Wood,Female,6659,1955-01-11,O+ -Scott Keith,Female,6660,1985-08-23,A- -Robert Blackwell,Male,6661,1974-12-24,B- -Marissa Miller,Male,6662,1934-12-16,B+ -Erika Smith,Male,6664,1987-05-12,B+ -Todd Taylor,Male,6665,1958-02-16,A+ -Amanda Cook,Female,6666,1954-09-13,B+ -Christina Matthews,Female,6667,1980-02-01,B- -Kristen Webb,Female,6668,1947-06-05,O- -Ashley Johnson,Female,6669,1937-01-25,O- -Jeffrey Williams,Male,6670,1931-11-23,A- -Tamara Perez,Male,6671,1932-07-20,O- -Erika Cruz,Male,6672,1965-12-11,AB- -Kendra Wallace,Male,6673,1996-07-07,O+ -Tammy Fox,Female,6674,1968-12-13,O- -Jeremy Richard,Male,6675,1967-12-14,B+ -Anna Arnold,Female,6676,1972-05-15,O+ -Pamela Long,Male,6677,1992-05-01,O- -Douglas Cook,Male,6678,1939-04-30,AB- -Rodney Giles,Female,6679,1952-10-31,B+ -Austin Travis,Female,6680,1977-09-07,B- -Timothy West,Male,6681,1978-06-13,A+ -Emily Bishop,Female,6682,1953-06-28,A+ -Zachary Brown,Male,6683,1938-07-19,O- -Bryan Haynes,Female,6684,1979-12-27,A+ -Henry Fleming,Female,6685,1999-10-17,O- -Heather Palmer,Female,6686,2002-06-06,O- -Jonathan Brady,Male,6687,1993-06-04,B+ -Thomas Sellers,Male,6688,1973-08-29,A- -Don Evans,Male,6689,1940-04-06,AB+ -Dan Nash,Male,6690,1930-10-05,AB+ -Christina Barajas,Female,6691,2002-09-13,A- -Sierra Patton,Female,6692,1979-12-13,AB+ -Sandra Cunningham,Female,6693,1961-08-29,O+ -Sabrina Fox,Male,6694,1991-02-03,AB+ -Barbara Robertson,Male,6695,1948-08-06,O- -Jeanette Johnson,Male,6696,1987-10-06,AB- -Renee Neal,Female,6697,1968-02-09,AB- -Daniel Young,Male,6698,1958-05-28,B- -Steven Yoder,Female,6699,1942-10-20,B+ -Timothy Miller,Male,6701,1933-03-16,AB+ -Holly Carter,Female,6702,1953-10-08,AB- -Thomas Higgins,Male,6703,1959-05-06,AB+ -Pamela Harrington,Female,6704,2000-07-10,B+ -Sean Curtis,Male,6705,1964-02-02,B- -Casey Chan,Male,6706,1959-03-30,AB- -Audrey Howard,Female,6707,1957-07-26,O- -Dominique Jackson,Male,6708,1989-05-23,O+ -John May,Male,6709,1936-09-28,A- -Ashley Edwards,Female,6710,1967-05-17,A- -Krystal Miller,Male,6711,2001-10-01,A- -Joshua Li,Female,6712,1930-10-15,AB+ -Jackson Mitchell,Female,6713,1991-02-27,AB- -Kyle Madden,Female,6714,1986-08-01,B+ -Brian Johnson,Male,6715,1980-01-30,B+ -Melissa Pena,Female,6716,1933-03-07,AB- -Kristin Bishop,Male,6717,1975-03-19,B- -Cindy Davis,Male,6718,1992-03-17,O- -Dr. Aaron Todd,Female,6719,1936-06-21,A+ -Kayla Gardner,Female,6720,1997-03-05,AB- -Lori Holder,Male,6721,1946-05-20,O+ -Lori Brown,Male,6722,1975-04-02,B- -Chad Pruitt,Female,6723,1952-06-21,AB- -David Adams,Male,6724,1995-04-23,AB- -Karen Green,Female,6725,1970-05-29,B- -Antonio Webb,Female,6726,1930-09-02,B- -Samantha Myers,Male,6727,1977-05-24,AB+ -Melissa Jimenez,Female,6728,1938-09-14,AB- -James Peterson,Female,6729,1935-12-17,A+ -Jennifer Lee,Male,6730,1943-09-12,O+ -Douglas Hopkins,Female,6731,1932-06-05,O- -Joanne Miller,Male,6732,1998-03-21,O- -Kimberly Rosario,Male,6733,2002-11-26,A+ -Michael Cervantes,Female,6734,1984-02-29,B+ -Nicholas Graves,Female,6735,1967-07-27,B- -Katherine Roach,Male,6736,1963-03-31,B- -James Stewart,Male,6738,1998-02-14,B+ -Lisa Lawson,Female,6739,1999-10-09,B- -Holly Oliver,Male,6740,1937-04-08,B+ -Catherine Thompson,Female,6741,1962-10-24,AB- -Zachary Hicks,Female,6742,1995-02-05,B+ -Mark Maxwell,Male,6743,1978-08-12,B- -Patrick Santana,Female,6744,1949-07-15,B- -Rachel Cox,Female,6745,1930-11-17,AB- -Scott Murillo,Male,6746,1942-09-29,B+ -Robert Turner,Male,6747,1989-05-15,AB- -Michele Wheeler,Female,6748,1993-05-15,A+ -Justin Carr,Male,6749,1993-08-16,AB+ -Brandi Hall,Female,6750,1989-12-06,AB- -Christina Thompson,Female,6752,1974-03-02,O+ -Gregory Banks,Female,6753,2000-05-20,B- -Patricia Thomas,Male,6754,1959-06-28,AB+ -Alejandro Black,Female,6755,1947-12-11,O- -Derek Edwards,Female,6756,1985-12-04,A+ -Kristy Lara,Male,6758,1961-08-25,B+ -Robert Richardson,Male,6759,1954-09-01,AB+ -Donald Terry,Female,6760,1966-11-30,AB- -Brandon Dalton,Male,6761,1950-07-13,B- -Danielle Simon,Female,6762,1948-03-03,B- -Andrew Morris,Male,6763,1950-02-27,B- -Michael Bennett,Male,6764,1974-11-21,AB+ -Sara Miller,Female,6765,1975-05-23,B- -David Townsend,Female,6766,1936-12-12,AB- -Cynthia Maynard,Female,6767,1982-08-22,B+ -Margaret Brady,Male,6768,1971-08-30,AB+ -Denise Garcia,Male,6769,1980-12-17,B- -Joanne Wilcox,Female,6770,1938-03-29,O- -Adam Lynch,Female,6771,1996-09-19,O- -Laura Cervantes,Female,6772,1968-11-26,O+ -Christina Hernandez,Male,6773,1972-12-01,B- -Jonathan Small,Female,6774,1971-02-24,B- -Michael Morgan,Female,6775,1935-09-09,AB+ -James Gross,Female,6776,1968-01-29,AB+ -Adrienne Jackson DVM,Female,6777,1996-05-03,A- -Amanda Bray,Female,6778,1940-08-03,B+ -Stephanie Day,Male,6779,1974-03-23,B- -Whitney Anderson,Female,6780,1943-05-06,O+ -Ashley Roberts,Male,6781,1953-08-23,B+ -James Bell,Male,6782,1930-10-25,B- -Thomas Nelson,Female,6784,1965-11-08,B+ -Samantha Griffin,Female,6785,1990-11-22,AB- -Michael Saunders,Female,6786,1954-09-28,AB+ -Scott Hess,Female,6787,1932-10-12,B- -Erika Kidd,Male,6788,1933-10-16,B+ -Julie Morales,Male,6789,2001-02-10,AB+ -Lauren Bates,Female,6790,1953-12-11,B- -Corey Rose,Female,6792,1981-04-17,A+ -Eileen Price,Female,6793,1978-05-02,AB+ -Rebecca Clark,Female,6794,1933-06-14,B+ -Curtis Smith,Female,6795,1951-02-01,O+ -Alex Nguyen,Male,6796,1997-10-16,A+ -Amanda Gomez,Female,6797,1987-05-09,AB- -Joshua Kelley,Female,6798,1993-09-28,B- -Ashley Chen,Male,6799,1990-05-22,A- -Kyle Powell,Male,6800,1958-06-24,AB- -Kyle Arnold,Female,6801,1972-06-28,AB+ -Matthew Browning,Female,6802,1990-03-04,A+ -Patrick Murphy,Male,6803,1962-06-26,AB- -Brandon Thomas,Female,6804,1972-12-07,O+ -Julia Carroll,Male,6805,1991-09-17,A- -Sheri Dominguez,Female,6806,1945-03-06,AB+ -Jeffrey Rivera,Female,6807,1994-09-06,A+ -Craig Bryant,Female,6808,1987-09-06,AB- -Thomas Durham,Male,6809,1980-01-04,A+ -Benjamin Brooks,Female,6810,1964-03-11,A+ -Sara Cox,Female,6811,1998-09-18,AB- -Amanda Fuentes,Female,6812,1957-08-06,O- -Cameron Smith,Female,6813,1959-06-02,B- -Mckenzie Santiago,Female,6814,1940-06-06,B+ -Miguel Robinson,Female,6815,1990-10-04,AB+ -Charlotte Torres,Female,6817,1988-03-24,AB+ -Rachel Tran,Female,6818,1949-09-24,A- -Elizabeth Kennedy,Male,6819,1986-03-27,A- -Paul Gilbert,Male,6820,1987-08-27,A- -Charles Vaughn,Female,6821,1967-08-21,AB+ -Nicole Lane,Male,6822,1973-10-17,A+ -Philip Anderson,Male,6823,1973-11-26,A- -John Obrien,Female,6824,1961-12-15,AB- -Douglas Hickman,Male,6825,1966-03-03,B- -Richard Payne,Female,6826,1978-09-19,O+ -Angel Duke,Male,6827,2001-12-04,AB+ -Nicholas Luna,Female,6828,1944-03-25,AB- -Jonathan Small,Male,6829,1972-08-01,B- -Pamela Calderon,Male,6830,1950-05-28,B- -Tabitha Gray,Female,6831,1953-11-14,O- -Christopher Greene,Male,6832,1970-09-07,B+ -Barbara Alexander,Male,6833,1935-12-13,AB- -John Meza,Female,6834,1966-01-10,AB+ -Christina Jordan,Female,6835,1975-08-16,A- -Megan Phillips,Male,6836,1985-09-30,A+ -James Fox,Male,6837,1982-03-02,A- -Thomas Bell,Male,6838,1960-05-08,B- -Michelle Garcia,Female,6839,1996-04-13,B- -Justin Hernandez,Female,6840,2002-01-30,O+ -Kendra Barnett,Male,6841,1940-11-25,A- -Stephanie Anderson,Male,6842,1987-12-01,B+ -Patrick Bryant PhD,Female,6843,1944-05-14,B+ -Sue Allen,Male,6844,1958-11-23,O- -Michael Mccormick,Male,6845,1986-12-24,B+ -Kenneth Castro,Female,6846,1946-10-19,B- -Evelyn Bowman,Female,6847,1945-04-05,B- -Jason Sanchez,Male,6848,1986-03-03,B+ -Matthew Downs,Female,6849,2001-12-18,A+ -Shawn Woods,Female,6850,1967-08-06,A+ -Christopher Harmon,Male,6851,1949-09-07,B+ -Tiffany Hancock,Female,6852,1969-10-24,O+ -Kevin Sutton,Female,6853,1959-10-14,AB- -James Lindsey,Male,6854,1960-05-10,O+ -Christopher Mora,Male,6855,1967-06-03,O+ -Michelle Hunter,Male,6856,1987-04-11,B+ -Sandra Jacobs,Female,6857,1937-08-08,A+ -Joshua Andrade,Female,6858,1955-06-30,A- -Kimberly Stephens,Female,6859,1951-01-28,A- -Carla Griffin,Male,6860,1970-01-20,B+ -Gloria Mendoza,Male,6861,1952-12-17,A- -Jason Kelley,Male,6862,1976-09-02,AB- -Gregory Bentley,Female,6863,1998-08-07,A+ -Miguel Taylor,Male,6864,1952-01-10,B+ -Shawna Barnes,Female,6865,1986-05-29,O- -Lisa Ross,Female,6866,1956-04-29,AB+ -Stephen Gonzales,Female,6867,1971-03-01,AB+ -Rachel Church,Male,6868,1943-11-09,B+ -Jessica Marsh,Female,6869,1959-11-05,B+ -Erica Mcneil,Male,6870,1990-12-10,O- -Michael White,Female,6871,1945-04-13,A- -Deborah Ford,Female,6872,1935-07-08,AB+ -Melissa Bryan,Female,6873,1985-03-26,AB- -Ryan Perez,Male,6874,1965-08-02,B+ -Rebecca King,Female,6875,1959-02-13,A+ -John Baker,Male,6876,1999-10-13,AB+ -Lori Sloan,Female,6877,1967-05-15,AB- -Stephanie Weaver,Male,6878,1949-07-28,A+ -James Shields,Male,6879,1996-02-14,B+ -Jenny Cook,Female,6880,1981-05-01,AB- -Michael Caldwell,Male,6881,1968-05-23,O- -Micheal King,Female,6882,1984-10-17,B+ -Rachel Li,Male,6883,1946-03-17,O+ -Richard Grant,Male,6884,1973-06-30,O- -Andrew Adams,Female,6885,1990-05-25,AB+ -Steven Torres,Male,6886,1999-02-24,A+ -Jeremy Willis,Female,6887,1948-03-05,AB- -Troy Smith,Male,6888,1942-09-26,AB+ -Dale Henderson,Male,6889,1931-09-02,AB+ -Steven Benson,Male,6890,1951-09-28,B+ -Elaine Glenn,Male,6891,1958-05-02,O+ -Lawrence Meadows,Female,6892,1940-08-02,A- -Tammy Dunlap,Female,6893,1975-11-16,AB+ -Melissa Mcknight,Female,6894,1994-01-07,O+ -Pamela West,Male,6896,1976-07-17,A+ -Eric Stark,Female,6897,1993-10-12,A+ -Vanessa Cook,Female,6898,1991-04-25,AB- -Teresa Jones,Male,6899,1936-03-03,A- -Shannon Olson,Female,6900,1943-07-14,O+ -Ashley Barnes,Male,6901,1963-10-05,O- -Tanya Porter,Female,6902,1932-05-14,A+ -Robert Dickerson,Female,6903,1933-06-22,B+ -Jennifer Mack,Female,6904,1950-05-30,A- -Morgan Ballard,Female,6905,1967-06-02,AB- -Heather Maxwell,Male,6906,1999-06-08,O- -Kelli Jensen,Female,6907,1987-05-17,A+ -Jamie Graham,Male,6908,1963-11-14,A+ -Gary Blankenship,Female,6909,1944-04-26,AB- -Andrea Byrd,Female,6910,1974-08-27,AB- -Kevin Powell,Female,6911,1980-12-25,B- -Ricky Nelson,Female,6912,1941-02-06,B+ -Joanne Hall,Female,6914,1932-07-24,AB+ -Chloe Scott,Female,6915,1963-04-30,AB+ -Scott Sherman,Male,6916,1992-05-13,O- -Lauren Dominguez,Male,6917,1996-06-18,AB+ -Karen Kelly,Male,6918,1958-10-31,O- -Sandra Wallace,Male,6919,1972-08-08,A- -Christopher Walker,Male,6920,1974-03-27,A+ -Justin Garcia,Male,6921,1975-10-01,B- -Megan Wagner,Female,6922,1956-08-18,B- -Brittany Pena,Male,6923,1951-04-15,B+ -Jeffrey Bonilla,Female,6924,1985-06-06,B+ -Collin Miller,Male,6925,1935-06-09,A+ -Steven Watts,Male,6926,1969-01-08,AB- -Caleb Pitts,Female,6927,1988-05-12,B+ -Tony Carter,Male,6928,1942-08-09,B+ -Erin Brooks,Female,6930,1982-06-19,O+ -James Richard,Male,6931,1973-09-12,O+ -James Choi,Female,6932,1955-11-28,AB+ -Dennis Gray,Female,6933,1999-01-15,AB- -Angela Weber,Male,6934,1968-10-14,O- -Kimberly Prince,Female,6935,1951-03-26,A- -Rachel Rodriguez,Female,6936,1969-01-02,B- -William Price,Male,6937,1941-03-02,AB+ -Steve Glenn,Male,6938,1965-03-11,B+ -Molly Oliver,Male,6939,1978-08-08,A+ -Catherine Anderson,Female,6940,1941-01-25,AB- -Janet Nelson,Male,6941,1974-08-02,B+ -John Powell,Male,6942,1969-05-25,B- -Kaitlyn Juarez,Male,6943,1937-01-19,O- -Kelli Cowan,Male,6944,1948-06-29,O- -Laurie Moses,Female,6945,1979-03-10,O+ -Kimberly Valdez,Male,6946,1935-06-10,AB+ -Stacy Lewis,Female,6947,1980-12-28,B+ -Dalton Dunn,Female,6948,1985-09-19,A+ -Terry Brown,Male,6949,1995-09-05,B- -Charles Cook,Female,6950,1972-05-10,B+ -Francis Aguirre,Female,6951,1997-08-21,A- -Leslie Garcia,Female,6952,1946-05-05,O- -Brent Brown,Female,6953,1999-08-14,B+ -Shannon Miller,Male,6954,1950-07-08,B- -Mary Davis,Female,6955,1941-03-27,A+ -Rachel Hunt,Male,6956,1935-09-08,B- -Amy Robinson,Female,6957,1989-03-07,AB+ -David Fitzgerald,Male,6958,1938-03-14,O+ -Brandon Hayes,Female,6959,1940-04-02,B- -Theresa Robertson,Female,6960,1969-08-10,AB- -Paul Horne,Female,6961,1969-10-06,B+ -Angela Meadows,Male,6962,1945-04-26,O+ -Antonio Mendoza,Female,6963,1950-08-15,A+ -Gloria Taylor,Female,6964,1950-03-08,O+ -Ashley Nelson,Female,6965,1969-10-30,B- -Shane Franklin,Female,6966,1979-05-12,B- -Melissa Schultz,Male,6967,1938-08-11,AB- -Sue Peters,Female,6968,1968-04-21,O- -Candace Thomas,Female,6969,1968-07-23,B+ -Amy Dunlap,Female,6970,1975-07-10,AB- -Michael Hicks,Female,6971,1986-01-16,B- -Allison Berry,Male,6972,1951-10-12,A- -Melissa Thompson,Male,6973,1949-11-26,O+ -Noah Murphy,Female,6974,1949-07-10,AB- -John Brooks,Male,6975,1948-09-11,AB- -Michaela Hoffman,Female,6976,1997-10-02,B+ -Victoria Jones,Female,6977,1954-03-20,A- -Paige Young,Female,6978,1968-12-07,A- -Donald Mack,Female,6979,1947-05-03,A- -Scott Oneill,Male,6980,1984-06-22,B+ -Edward King,Male,6982,1966-09-06,O- -Paula Scott,Male,6983,1978-12-18,B- -James Preston,Male,6984,1958-03-06,B- -Charles Powers,Female,6985,1980-10-07,A+ -Pamela Cervantes,Male,6986,1957-10-30,B+ -Manuel Castillo,Male,6987,1988-12-28,O- -Alison Palmer,Female,6988,1958-08-12,A+ -Jessica Thompson,Male,6989,1985-12-01,A+ -Nicole Evans,Female,6990,1935-07-29,A+ -Lauren Bowers,Male,6991,1961-05-21,B+ -Philip Reeves,Male,6992,1951-11-04,AB+ -Lisa Lowery,Male,6993,1977-03-16,A+ -Tamara Bautista,Male,6994,1985-04-29,AB- -Joshua Thomas,Female,6995,1993-05-24,O+ -Jose Woodward,Female,6996,2000-02-28,AB- -Christy Johnson,Male,6997,1963-05-10,AB- -Jeffrey Powell,Male,6998,1930-10-26,B- -Terry Noble,Male,6999,1994-09-10,AB+ -William Ray,Male,7000,1932-07-12,B+ -Tyler Valenzuela,Male,7001,1986-06-12,A+ -Debra Mitchell,Female,7002,1966-07-02,B- -Lee Rodriguez,Male,7003,1986-08-25,O- -Allen Crawford,Female,7004,1982-07-10,O- -Kevin Bishop,Male,7005,1948-01-05,B+ -Fred Simon,Female,7006,1943-05-08,B- -Stacy Jennings,Female,7007,1989-06-10,O+ -Jennifer Potts,Male,7008,1963-07-21,B+ -Jonathan Graves,Male,7010,1992-11-17,B- -Willie Hendricks,Male,7011,1979-10-17,B- -Whitney Brown,Male,7012,1959-11-10,AB+ -Christopher Chapman,Female,7013,1966-07-24,B+ -Cassandra Rogers,Female,7014,1973-06-26,O- -Sandra Bell,Male,7015,1982-02-18,O- -Angela Griffith MD,Male,7016,1984-01-08,A+ -Sandra Myers,Female,7017,1956-06-16,AB- -Michael Castillo,Female,7018,1982-12-07,B+ -Dennis Ruiz,Male,7019,1932-07-30,B- -Patricia Herrera,Male,7020,1935-03-23,B+ -Joan Miller,Female,7021,1943-03-31,B- -Cynthia Mason,Female,7022,1967-06-16,O+ -Thomas Hill,Male,7023,1997-01-18,B+ -Caleb Peterson,Female,7024,1978-04-06,A- -Amanda Richard,Female,7025,1945-08-06,A- -William Clark,Male,7026,1974-06-05,O- -Robert Garcia,Female,7027,1967-01-30,O+ -Donald Osborne,Male,7029,1964-07-16,AB+ -Carla Johnson,Male,7030,1934-01-06,A+ -Paul Walsh,Female,7031,1985-09-10,O+ -Austin Fleming,Male,7032,1980-03-29,O- -Suzanne George,Female,7033,1931-01-11,AB+ -Mary Castaneda,Male,7034,1930-09-20,B- -Beverly Kim,Female,7035,1986-10-20,AB+ -Melissa Moon,Male,7037,1992-08-29,AB- -Ryan Riley,Male,7039,1961-09-15,B+ -Cynthia Scott,Female,7040,1957-10-02,O+ -Kathryn Brooks,Female,7041,1951-06-13,O- -Sharon Reed,Female,7042,1935-03-09,O+ -Mrs. Emily Lambert MD,Female,7043,1952-03-12,B- -Katie Boyd,Female,7044,1962-05-19,A- -April Martinez,Female,7045,1934-07-11,B- -Katelyn Ryan,Male,7046,1990-01-10,O- -Aimee Bartlett,Male,7047,1985-07-07,AB- -Jacqueline Johnson,Female,7048,1931-08-23,A+ -Marcus Rodriguez,Female,7049,1988-01-16,B+ -Ricardo Harrington,Male,7050,1980-02-04,B+ -Troy Travis,Female,7051,2000-10-28,AB+ -Brittany Henry DDS,Female,7052,1954-01-27,AB+ -Rebecca Boone,Female,7053,1998-04-30,B- -Jonathan Washington,Male,7054,1986-05-24,O+ -Daniel Freeman,Male,7055,1939-12-17,A- -Cassandra Wu,Female,7056,1958-05-09,O+ -Christina Cortez,Male,7057,1973-10-11,AB- -Louis Haney,Female,7058,1955-06-09,A+ -Dennis Pineda,Male,7059,1945-05-01,B+ -Michael Gray,Female,7060,1992-07-06,O+ -John Middleton,Female,7061,1969-04-08,B+ -Justin Boyd,Male,7062,1998-04-15,AB+ -Willie Collins,Female,7063,1968-03-07,B+ -Teresa Hernandez,Female,7064,1959-06-20,A- -Yolanda Richards,Female,7065,1969-03-09,B+ -Seth Pratt,Female,7066,1950-03-19,O+ -Kyle Pena,Male,7067,1954-08-05,A- -Chelsea Ramos,Female,7068,1984-08-18,B+ -Nicole Cunningham,Female,7069,1951-02-07,A+ -Christina Riley,Female,7070,1976-11-25,AB+ -Bethany Dyer,Female,7071,1998-02-21,B+ -Bradley Alvarez,Male,7072,1942-09-08,A- -Manuel Black,Male,7073,1977-05-18,O+ -Susan Brown,Female,7074,1955-05-19,AB+ -Thomas Hernandez,Female,7075,1967-09-22,B- -Jeffrey Pacheco,Male,7076,1949-03-10,B- -Jonathan Brown,Male,7077,1972-07-02,AB- -Mr. Gregory Pitts,Female,7078,1981-05-18,B- -Eric Wells,Male,7080,1939-11-28,O+ -John Davila,Female,7081,1999-06-21,A+ -Alexis Villegas,Female,7082,1987-01-09,AB+ -Jennifer Gonzalez,Female,7083,1930-09-30,A- -Teresa Riggs,Female,7084,1965-08-12,O- -Jeremy Rodriguez,Female,7085,1979-09-18,B- -Kevin Cruz,Male,7086,1936-12-22,B- -Timothy West,Female,7087,1938-08-31,O- -Madison Mata,Female,7088,1987-12-12,A- -Abigail Watson,Male,7089,1969-06-19,A- -Daniel Chapman,Male,7090,1969-03-24,O- -David Mathews,Female,7091,1972-08-24,A- -Robert Herman,Female,7092,1932-08-04,O+ -Kristin Garcia,Male,7094,1970-03-25,A- -Thomas Anderson,Male,7096,1976-03-30,AB+ -Kyle Ho,Male,7097,1972-07-19,A- -Thomas Moore,Female,7098,1948-05-25,B+ -Jay Collins,Male,7099,1953-02-04,B+ -Andrea Parsons,Female,7100,1998-09-02,B- -Donald Alvarez,Female,7101,1961-01-28,A+ -Kristie Hardin,Male,7102,1992-04-09,O+ -Cameron Wheeler II,Female,7103,1995-10-28,O+ -Tina Campbell,Female,7104,1939-10-31,A- -Stephen Wade,Male,7105,1957-07-22,A+ -Adam Patel,Male,7107,1978-02-14,A+ -Brianna Durham,Male,7108,1978-11-13,AB- -Alexis Bryant,Female,7109,1931-01-26,A+ -Amy Richardson,Male,7110,1990-03-26,A- -Robert Sherman,Female,7111,1964-09-07,A- -William Wilcox,Female,7112,1961-09-04,O- -Mary Ellis,Male,7113,1965-09-03,B- -John Hernandez,Female,7114,1991-07-30,B+ -Dana Robinson,Male,7115,1965-11-20,AB- -Christopher Ayers,Female,7116,1999-02-16,A- -Karen Stephenson,Female,7117,1937-01-04,O- -John Reid,Female,7118,1946-01-24,AB- -Joyce Scott,Male,7119,1971-11-06,B- -Doris Perez,Female,7121,1933-04-26,AB- -Angel Cameron,Female,7122,1954-12-22,O- -Regina Terry,Male,7123,1934-03-20,AB+ -Joshua Moore,Female,7125,1999-10-14,B+ -Samuel Arellano,Female,7126,1976-08-14,A- -Reginald Miller,Male,7127,1953-10-20,B+ -David Wood,Female,7128,1954-06-05,B- -Holly Robinson,Female,7129,1978-05-16,O+ -Brittany Rodriguez,Female,7130,1995-11-20,B- -Regina Waters,Male,7131,1958-03-25,B- -Anthony Duncan,Male,7132,1994-12-20,B- -Natalie Sanders,Female,7133,1964-11-22,AB+ -Steven Bruce,Male,7134,1942-01-04,A- -Joshua Franco,Male,7135,1977-05-17,O- -Jason Kaiser,Male,7136,1963-07-09,A- -James Oliver,Male,7137,1981-04-06,O+ -Stephen Henson,Male,7138,1969-01-13,O- -Amy Ryan,Male,7139,1954-07-01,AB- -Andrew Zimmerman,Female,7140,1968-03-08,AB- -Alyssa Delgado,Male,7141,1946-03-28,AB- -Mary Walker,Male,7142,1944-10-16,O- -Rachael Hutchinson,Male,7143,1990-05-13,A+ -Charles Villa,Male,7144,2002-05-28,AB+ -Charles Chase,Male,7145,1973-11-08,A+ -Sabrina Holland,Male,7146,1989-04-20,A- -Thomas Cabrera,Male,7147,1931-05-23,AB- -Ann Simmons,Male,7148,1933-12-07,AB+ -Ashley Hester,Female,7149,1961-10-23,O- -Rodney Clark,Female,7150,1953-12-16,AB- -Richard Parker,Male,7151,1974-02-21,O- -Tyler Walters,Female,7152,1950-02-19,AB+ -Susan Cooper,Female,7153,1960-12-03,O- -Lisa Cunningham,Female,7154,1987-03-23,O- -Victoria Rodriguez,Male,7155,1967-11-23,O+ -Michael Valentine,Male,7156,1984-10-10,A- -Jamie Gonzales,Female,7158,1942-01-17,A+ -Kristopher Freeman,Female,7159,1943-10-17,B+ -Colton Peterson,Female,7160,1997-01-24,A+ -Christopher Oconnell,Male,7161,1973-05-23,A+ -Kelsey Mills,Female,7162,1940-03-04,B- -Karen Adams,Female,7163,1970-09-25,O+ -Tracy Oliver,Female,7164,1951-06-17,B+ -Hannah Sanders,Female,7165,1933-07-25,AB- -Margaret Caldwell,Female,7166,1950-03-07,AB- -Donald Arnold,Female,7167,1989-01-20,AB- -Michael Jacobs,Male,7168,1980-10-04,A+ -Kari Garcia,Male,7169,1947-07-22,A- -Kimberly Gonzalez,Male,7170,1947-06-06,A+ -Cameron Baxter,Female,7171,1972-04-19,B+ -Robert James,Male,7174,1931-11-24,A- -Tracy Sexton,Female,7175,1934-01-18,O+ -Thomas Arnold,Male,7176,1947-07-07,A- -Bryan Harper,Male,7177,1953-02-17,B+ -Dr. Jenna Chase,Female,7178,1959-01-31,O- -Beth Long,Female,7179,1976-01-25,A+ -Debra Lee,Male,7180,1957-07-31,AB- -Madison Lozano,Male,7181,1937-03-31,O- -Phillip Trevino,Female,7182,1944-04-06,A+ -Ryan Howard,Male,7183,1947-11-21,AB+ -Amanda Jackson,Female,7184,1987-08-31,B- -Steven Rocha,Female,7185,1949-09-29,A+ -Julia Young,Female,7186,1957-03-07,AB+ -Richard Thomas,Male,7187,1962-08-28,B+ -Roy Nelson,Male,7188,1982-02-06,O+ -Carrie Merritt,Male,7189,1997-05-03,AB+ -Stephen Collins,Male,7190,1955-07-05,O+ -Cynthia Cameron,Female,7191,1963-05-05,A+ -Jeffrey Vazquez,Female,7192,1959-09-12,O+ -Brian Austin,Male,7193,1951-09-21,AB+ -John Johnston,Female,7194,1944-12-29,A- -Ashley Fuller,Male,7195,1967-12-06,B- -Brian Ryan,Male,7196,1951-09-16,O- -Gina Chavez,Female,7197,1935-09-12,O- -Edward Sheppard,Female,7198,1946-09-03,B- -Sharon Barton,Female,7199,1995-02-09,AB- -Kenneth Hayes,Male,7200,2001-07-10,O- -Miss Sara Shaw,Female,7201,1951-05-08,B+ -Megan Ayala,Female,7202,1977-03-20,A+ -Wanda Mcdonald,Female,7203,1952-11-07,AB- -Mark Fisher,Female,7204,1984-06-04,A+ -Renee Taylor,Male,7205,1932-06-23,AB+ -Laura Kennedy,Male,7206,1978-05-02,B+ -Melanie Roman,Female,7207,1975-12-19,AB+ -Penny Pitts,Female,7208,1999-08-06,AB- -Jason Jones,Female,7209,1957-04-23,AB- -Colton Nelson,Female,7210,2001-07-27,B+ -Joshua Hayes,Female,7211,1933-03-30,B+ -James Trevino,Female,7212,1999-05-01,AB- -David Calderon,Female,7213,1934-09-22,AB- -Nancy David,Female,7214,1961-02-27,O+ -Kenneth Perry,Female,7215,1998-01-10,A- -Jason Carter,Male,7216,1965-10-01,AB- -Christina Sutton,Female,7217,1990-10-08,B+ -Dana Costa,Male,7218,1945-05-08,A- -Mark Edwards,Female,7219,1940-10-31,AB- -Kayla Lee,Male,7220,1975-04-30,AB+ -Bradley Goodman,Male,7221,1998-01-13,A+ -Rebecca Simmons,Male,7222,1981-03-04,A- -Craig Stevens,Female,7223,2000-06-16,AB+ -Martin Smith,Female,7225,2001-12-16,O- -Kevin Garner,Female,7226,1974-01-11,B+ -Paul Terry,Female,7227,2002-02-19,O+ -James Williams,Female,7228,1931-02-26,O+ -Jordan Pittman,Female,7229,1945-03-03,A+ -William Perry,Male,7230,2000-08-06,AB- -Lisa Ramirez,Male,7231,1974-08-06,AB+ -Kenneth Guerra,Female,7232,1973-09-18,O- -Stephanie Garcia,Male,7233,1973-06-26,AB+ -Todd Nguyen,Male,7234,1942-10-20,B+ -Patricia Nguyen,Male,7235,1954-11-13,B+ -Kenneth Anderson,Male,7236,1965-08-14,AB- -Tony Woods,Male,7237,1948-06-23,AB- -Bryan Rhodes,Male,7238,1946-09-17,B+ -Cassandra Bradford,Female,7239,1978-11-22,B- -Alyssa Pierce,Male,7240,1983-09-27,B+ -Bryan Bradley,Female,7241,1980-10-30,AB+ -Julie Patel,Female,7243,2001-04-03,A+ -Brian Williams,Female,7244,1983-05-03,AB+ -Nicole Cowan,Male,7245,1993-01-20,O+ -Beth Simmons,Male,7246,1961-01-26,O- -Michael Moody,Male,7247,1956-10-13,A- -Jacob Bush,Female,7248,1946-02-08,A+ -Kimberly Lara,Male,7249,1991-03-28,B- -Larry Phillips,Male,7250,1945-11-16,O- -Kathryn Le,Male,7251,1956-05-11,O- -Adam Collins,Female,7252,1953-01-15,A- -Stephen Ramirez,Male,7253,1997-11-20,O+ -Michael Blankenship,Male,7254,1964-02-18,O+ -Melissa Powell,Male,7255,1956-12-16,O+ -Melanie Berger,Female,7256,1964-10-29,A+ -Benjamin Henderson,Male,7257,1998-01-04,AB+ -Robert Harrell DDS,Male,7258,1955-01-15,O- -Nicholas Cook,Male,7259,1942-05-22,AB+ -Erika Brown,Female,7260,1947-12-17,AB+ -Joshua Lee,Female,7261,1950-11-12,O+ -Richard Cooper,Male,7262,1982-06-15,AB+ -Anthony Thomas,Male,7264,1990-05-23,O- -Susan Nichols,Female,7265,1938-07-22,O- -Allison Wilkins,Female,7266,1953-09-28,AB- -Ariana Garcia DDS,Female,7267,1962-01-19,B- -Ruben West,Male,7268,1978-07-25,A+ -Kimberly Davenport,Male,7269,1963-01-18,AB+ -Kathleen Evans,Male,7270,1999-09-21,A+ -Julie Johnson,Male,7271,1985-05-30,A+ -Teresa Nelson MD,Male,7272,1952-04-09,A+ -Thomas Nichols,Male,7273,1932-07-13,A- -Dylan Smith,Female,7274,1980-10-19,B+ -Samantha Francis,Female,7275,2002-06-30,AB- -Donna Gray,Female,7276,1945-01-28,A+ -Dawn Davidson,Female,7277,1967-05-17,B+ -John Dougherty,Female,7278,1936-07-23,B+ -Alyssa Webster,Female,7279,1997-05-13,AB- -Dr. Chris Smith,Female,7280,1971-12-02,O- -Angela Meyers,Female,7282,1952-07-10,A- -Jacqueline Graves,Male,7283,1962-04-04,AB+ -Heather Jenkins,Male,7284,1945-02-06,AB- -Darren Andrews,Female,7285,1982-03-03,B- -Deborah Hester,Male,7286,1939-03-20,B+ -Frank Sutton,Female,7287,1976-06-20,A+ -Stephen Johnson,Female,7288,1961-03-29,B+ -Robert Potts,Female,7289,1983-06-14,A- -Anne Meyers,Female,7290,1954-11-26,B- -Christine Ware,Female,7291,1993-02-06,O- -Eric Schwartz,Male,7292,1986-01-17,O- -Isabella Collier,Male,7293,1958-05-15,O+ -Sarah Salazar,Male,7295,1953-05-11,A+ -Austin Webb,Female,7296,1941-09-10,O+ -Shannon Harris,Female,7297,1991-05-04,A- -Amy James,Female,7298,1957-02-14,B- -Edwin Vega,Female,7299,1976-05-19,B+ -Kent Mcgrath,Female,7300,1996-10-27,AB+ -Karen Stone,Female,7301,1960-11-18,O+ -Tyler Hernandez,Male,7302,1944-12-05,O- -Christian Trevino,Female,7303,1984-08-16,A+ -Kristina Payne,Female,7304,2002-12-01,B+ -Brandi Montgomery,Male,7306,1985-07-14,B- -Tabitha Sloan,Female,7307,1947-09-26,AB- -Brianna Johnson,Female,7308,1995-05-24,A- -Alyssa Davis,Male,7309,1977-08-22,A- -Jonathan Thomas,Male,7310,1947-09-19,O- -Ms. Ashley Kennedy DVM,Male,7311,1935-08-25,AB- -Jennifer Cochran,Female,7312,1954-09-22,A- -James Nunez,Male,7313,2001-10-08,AB+ -Casey Sparks,Female,7314,1986-09-09,B+ -Jeffrey Diaz,Female,7315,1984-06-06,A+ -Gabriela Atkins,Female,7316,1934-12-19,B+ -Shane Durham,Female,7317,1961-12-15,AB+ -Rachel Dickerson,Male,7319,1991-12-27,A- -John Hicks,Male,7320,1969-03-05,AB+ -Joan Santos,Female,7321,2001-04-05,B+ -Todd Miller,Female,7322,1936-05-02,A- -Dalton Oconnell,Male,7323,1956-07-29,A+ -William Burns,Male,7325,1978-03-25,A+ -Kelly Porter,Female,7326,1956-12-07,AB- -Audrey Edwards,Female,7327,1945-12-19,AB+ -Jon Williamson,Male,7328,1983-01-26,B- -Eric Moore,Male,7329,1984-04-11,AB- -Angela Osborn,Female,7330,1941-02-08,A+ -Dominique Howard,Male,7331,1930-11-02,O- -Ernest Freeman,Male,7332,1969-04-13,A- -Amy Gay,Female,7333,2002-01-02,AB- -Lisa Tucker,Female,7334,1934-08-17,O+ -Martin Espinoza,Male,7335,2001-06-10,B- -Stephen Jensen,Male,7336,1940-09-22,A- -Patricia Rodriguez,Female,7337,1994-03-30,AB- -Adam Bush,Male,7338,1998-06-08,A+ -Scott Hawkins,Male,7339,1938-01-15,B+ -Alexander Gallegos,Female,7340,1940-07-29,A+ -Jill Knight,Female,7341,1969-09-19,B- -Bill Buchanan,Female,7342,1969-03-15,O+ -Cheyenne Miller,Female,7343,1971-11-22,AB- -Joseph Turner,Female,7344,2001-04-04,B+ -Joshua Bender,Male,7345,1945-06-20,AB- -Derrick Jacobs,Male,7346,1983-10-15,AB+ -Allison Krueger,Male,7347,2000-06-22,O- -Diane Cruz,Male,7348,2002-05-28,A+ -Rebecca Boyd,Female,7349,1979-11-03,AB- -Cory Barnes,Male,7350,1972-11-30,AB- -Randall Holmes,Female,7351,1978-07-14,A- -Amanda Reed,Male,7352,1945-03-23,A- -Vicki Mcclain,Female,7353,1972-04-21,AB- -Daisy Brown,Female,7354,1980-12-14,O+ -Scott Harvey MD,Female,7356,1932-12-15,O- -Michael Stevens,Male,7357,1968-04-14,AB- -Suzanne Gonzales,Female,7358,1986-05-17,B- -Jennifer Lewis,Female,7359,1992-01-20,A+ -Michelle Jones,Female,7360,1971-12-19,AB+ -Brenda Coleman,Male,7361,1964-12-03,A- -Jake Meyers,Male,7362,1949-10-23,B- -Brittany Gibson,Female,7363,1977-01-31,A+ -Meghan Horne DVM,Male,7364,1988-10-16,B+ -Tyrone Harris,Female,7366,1935-07-25,A- -Tristan Torres,Female,7367,1953-04-24,O+ -Malik Simmons,Male,7368,1954-11-26,A- -Michael Weiss,Female,7369,2001-07-04,O- -Jorge Meyers,Male,7370,1969-02-12,O- -Veronica Griffith,Male,7372,1946-03-09,A+ -Christopher Matthews,Female,7373,1962-01-08,B- -Donald Calderon,Female,7374,1982-02-14,AB+ -Ronald Greene,Female,7375,1939-02-23,O+ -Joan Lawson,Female,7376,1951-07-26,A+ -Paula Mullins,Male,7377,1973-07-10,B+ -Tiffany Anderson,Female,7378,1964-01-18,O+ -Thomas Bishop,Female,7379,1933-02-15,O- -Katrina Leonard,Male,7380,1999-08-12,AB- -Marcus Guerrero,Female,7381,1998-04-16,AB- -John Cruz,Female,7383,1982-10-16,AB+ -Larry Thompson,Male,7384,1955-05-31,O+ -Jonathan Mills,Male,7385,1985-12-03,A+ -Colleen Harris,Male,7386,1935-08-01,AB+ -Elizabeth Clark,Male,7387,1941-09-10,A- -Tonya Clark,Female,7388,1957-07-04,A- -Christopher Page,Female,7389,1942-10-28,B+ -Scott Wright,Female,7390,1976-03-18,B- -Carol Barry,Female,7391,1949-06-26,AB- -Mary Powers,Male,7392,1934-11-20,A+ -Dustin Franco,Male,7393,1984-06-20,O+ -Michael Mcneil,Male,7394,1940-05-14,AB+ -Carlos Evans,Male,7395,1989-04-11,A+ -Raymond Jackson,Female,7396,1955-03-01,AB+ -Catherine Yang,Female,7397,1944-11-11,AB+ -Daniel Jones,Male,7398,1948-04-17,AB+ -Jamie Ford,Male,7399,1948-11-15,O+ -Douglas Booth,Male,7400,1964-08-31,A+ -Benjamin Bright,Male,7401,1970-10-10,O- -Patricia Duran,Female,7402,1956-05-27,O- -Samantha Brown,Female,7403,1957-03-23,O+ -Hannah Rogers,Female,7404,1958-09-03,A- -John Wiggins,Male,7405,1965-07-28,O+ -Benjamin Bean,Male,7406,1987-08-12,AB- -Heather Austin,Male,7407,1994-04-01,AB+ -Stanley Jenkins MD,Male,7408,1960-06-18,A+ -Lori Benjamin,Male,7409,1948-10-22,A+ -Jose Reeves,Female,7410,1995-09-08,B- -Tyler Frost,Female,7411,1950-12-31,B- -Douglas Berry,Female,7412,1961-08-04,B+ -Michael Logan,Female,7413,1957-07-23,O- -Justin Mcbride,Female,7414,1991-11-20,B- -Heather Cruz,Male,7415,1987-04-10,B- -Sheila Woodard,Male,7416,1991-03-25,O- -Stacy Perkins,Female,7417,1957-11-06,AB- -Diane Hall,Female,7418,1999-03-14,A- -Michael Key,Female,7419,1978-06-14,O- -Cheryl Middleton,Female,7420,1938-02-10,A- -John Harvey,Male,7421,1967-12-04,B+ -Mr. John Padilla III,Male,7422,1982-11-26,B- -Justin Smith,Male,7423,1965-07-15,A+ -Anthony Miller,Male,7424,1983-08-12,B- -Brian Cunningham,Female,7425,1944-07-02,AB+ -James Alexander,Male,7426,1994-08-01,B+ -Rebecca Miller,Male,7427,1970-05-16,A- -Mary Miller,Male,7428,1945-09-09,A- -Alexis Simpson,Male,7431,1968-02-12,AB+ -Beth Williams,Male,7433,1930-05-07,AB+ -James Chang,Female,7434,1945-05-04,AB- -Mr. Matthew Rivas IV,Female,7435,1978-02-13,O+ -Francisco Daniels,Female,7436,1982-01-31,AB+ -Tammy Martin,Female,7437,1964-06-12,A- -Kimberly Brewer,Female,7438,1973-10-19,A+ -Amanda Weeks,Female,7439,1978-08-07,A- -Barbara Woodward,Male,7440,1955-03-22,A- -Sheryl Sanchez,Female,7441,1992-07-11,AB- -Erin Patel,Male,7442,1971-01-23,O+ -Timothy Rodriguez,Female,7443,1948-04-07,O+ -Nancy Frost,Male,7444,1993-02-26,AB+ -James Owens,Female,7445,1963-08-07,B+ -Krista Atkinson,Female,7446,1987-04-15,B- -John Oneill,Male,7447,1954-04-21,A- -Gregory King,Male,7448,1937-11-27,O- -Mike Turner,Male,7449,1956-06-07,B- -Jesse Edwards,Male,7450,1941-03-10,B- -Thomas Cruz,Female,7453,1981-01-18,O+ -Julia Coleman,Female,7454,1941-06-12,O+ -Jonathan Cunningham,Male,7457,1937-10-12,AB- -Latasha Wright,Female,7458,2002-02-15,AB- -Lacey Miller,Male,7459,1946-07-16,O+ -Dakota Browning,Male,7460,1984-08-09,A+ -Beth Elliott,Male,7461,1958-03-19,A+ -Andrea Miller,Male,7462,1943-01-11,O- -Timothy Hernandez,Male,7463,1976-07-28,O+ -Chelsey Howard,Male,7464,1974-06-13,AB+ -Jorge Schultz,Male,7465,1943-09-24,AB- -Philip Thomas,Female,7466,1933-10-07,O+ -Joseph Cunningham,Male,7467,1933-03-27,A+ -William Yates,Female,7468,1990-06-27,O+ -Linda Rowe,Female,7469,1931-05-06,A+ -Aaron Patel,Male,7470,1940-03-18,O+ -Catherine White,Female,7471,1946-05-11,A- -Wesley Lewis,Female,7472,1984-07-14,AB+ -Michael Andrews,Female,7473,1983-11-19,B+ -Jeffrey Mcdonald,Male,7474,1980-03-03,O- -Derrick Robertson,Male,7475,1988-08-02,A- -Cindy Robinson,Female,7476,1935-02-26,AB+ -Stephanie Huang,Female,7477,1988-04-18,A+ -Bradley Macias II,Female,7478,1938-03-07,AB- -Vicki Carter,Male,7479,1945-04-17,AB- -Andrea Murray,Male,7480,1938-08-26,B- -Jennifer Ayers,Male,7481,1942-05-28,AB+ -Dr. Ryan Lee,Male,7482,1976-09-21,O+ -Emily Grant,Male,7484,1989-03-30,O- -Aimee Farmer,Male,7485,1932-12-09,O+ -April Harris,Male,7486,1967-08-18,O+ -Craig Galloway,Female,7487,1981-05-24,AB+ -Jeremy Garcia,Female,7489,1937-05-17,B+ -Mr. Dustin Thomas,Female,7490,1956-03-07,O- -Tiffany Smith,Female,7491,1941-11-19,B- -Kyle Rivera,Male,7492,1935-11-27,A- -Luke Kelly,Female,7493,1974-04-24,O+ -Victor Douglas,Female,7494,1951-10-24,O- -Jane Anderson,Female,7495,1937-01-24,B- -Timothy Sharp,Female,7496,1949-11-14,A- -Laura Newman,Male,7497,1935-11-30,O+ -Lori Ponce,Male,7498,1974-04-12,O- -Timothy Taylor,Female,7499,1968-01-22,A- -Cody Collier,Male,7500,1961-04-28,AB+ -Aaron Lee DVM,Female,7501,1970-03-10,B+ -Cheryl White,Male,7502,1969-07-11,AB- -Stacy Lindsey,Female,7503,1962-11-30,AB- -Joseph Mullins,Female,7504,1948-07-17,O+ -Michael Woods,Male,7505,1934-06-16,O+ -Jon Hammond MD,Female,7506,1961-12-08,A- -Sharon Myers,Male,7507,1952-07-03,O- -Kenneth Rose,Male,7508,1994-03-30,AB- -Rebecca Wallace,Male,7509,1980-04-17,O+ -Monica Hodge,Male,7510,1956-08-05,B- -Julie Martin,Male,7511,1953-03-29,O+ -Angela Black,Male,7513,1935-12-22,AB- -Karen Watson,Male,7514,1961-09-29,A+ -Michael Casey,Male,7515,1981-02-22,B+ -Charles Hendrix,Female,7516,1949-08-13,AB- -Alexander Harris,Male,7517,1981-12-20,B- -April Forbes,Male,7518,1932-06-20,O- -Judith Gardner,Female,7519,1991-06-14,B- -Angela Todd,Male,7520,1955-06-09,A+ -Robert Reed,Male,7521,1979-06-14,A+ -Heather Hicks,Male,7522,1937-11-21,O+ -Curtis Gilbert,Female,7523,1965-10-02,O+ -Nicole Barnes,Female,7524,1945-05-24,AB- -Jennifer Goodwin,Female,7525,1996-11-26,AB+ -Jack Williams,Female,7526,1933-10-10,B+ -Darren Vega,Male,7527,1978-04-11,B- -Ryan Hughes,Female,7528,1945-06-21,AB- -Tamara Hatfield,Male,7529,1964-01-16,AB+ -Timothy Rivera,Male,7530,1991-07-03,AB- -John Gilbert,Male,7531,1955-11-22,B+ -Kathleen Walker,Female,7532,2002-07-05,B+ -Rebecca Costa,Female,7533,1949-04-07,A+ -Sheri Edwards,Female,7534,1947-10-06,O+ -Lisa Burke,Male,7535,1977-10-03,O+ -Darius Lindsey,Male,7536,1980-06-19,B+ -Joseph Johnson,Male,7537,1991-08-08,AB- -Brandi Rose,Female,7539,1941-08-19,B+ -Theresa Jennings,Female,7540,1981-08-21,O+ -Patricia Morris,Female,7541,1942-08-09,O- -Anthony Martin,Male,7542,1984-08-02,AB- -Dr. Hannah Cox,Female,7543,1964-08-02,A+ -Kayla White,Male,7545,2002-02-09,A- -Katelyn Miller,Male,7547,1930-08-09,AB- -Amy Coffey,Female,7548,1968-12-13,AB- -Alexander Sanford,Female,7549,1943-03-12,O+ -Christopher Kelly,Female,7550,1994-07-20,A+ -Shelly Smith,Male,7551,1987-07-08,AB- -James Phillips,Male,7552,1950-02-14,O+ -Steven Stone,Male,7553,1945-05-20,B+ -Mark Vasquez,Male,7554,1956-12-26,B- -Daniel Robertson,Male,7555,1994-08-06,A+ -Sara House,Female,7556,1942-07-13,AB+ -Willie Montes,Male,7557,1979-12-25,O- -Robert Perkins,Male,7558,1996-07-12,AB+ -Stephanie Moreno,Male,7559,1971-08-21,A- -Jerome Fry,Male,7560,1934-01-02,B+ -Carol Alvarado,Male,7561,1989-12-22,A+ -Jamie Moreno,Male,7562,1973-07-19,AB- -Elizabeth Reynolds,Male,7563,1998-03-25,O+ -Marcus Rhodes,Female,7565,1974-07-01,A- -Nicole Bell,Male,7566,1952-07-20,A+ -Vickie Murphy,Male,7567,1951-05-24,O- -Eric Miles,Female,7568,1935-08-31,A+ -Brandon Miller,Female,7569,1945-10-02,A- -Brittany Palmer,Female,7571,1949-10-25,O+ -Carla Smith,Male,7572,1968-10-23,AB+ -Mark Thomas,Female,7573,1994-01-25,B- -Maria Black,Female,7574,1946-12-14,AB+ -Gina Briggs,Male,7575,1979-01-02,O+ -Jeffery Evans,Female,7577,1981-12-21,A- -Timothy Murray,Male,7578,1970-01-13,O+ -Randall Becker,Male,7579,1932-09-28,B+ -Jasmine Lopez,Male,7580,1977-09-08,O- -Amanda Gonzales,Male,7581,1970-09-25,A+ -Sarah Love,Female,7582,1958-01-06,B+ -Lorraine Scott,Female,7583,1993-09-30,A+ -James Shaw,Male,7584,1998-01-13,AB+ -Steven Tucker,Male,7585,1988-09-08,A- -Connie Benitez,Female,7586,2002-02-27,B- -Christopher French,Female,7587,1942-04-04,B- -Brian Gray,Male,7588,1976-03-02,O- -Sierra Torres,Female,7589,1931-05-31,O+ -Paige Davis,Male,7590,1964-03-01,O- -Frank Lester,Male,7591,1933-04-06,A+ -Lisa Price,Female,7592,1959-09-26,AB- -Ms. Leah Lane DDS,Female,7593,1966-10-27,AB- -David Austin,Male,7594,1947-03-30,AB- -Anne Perry,Male,7595,2001-02-24,O+ -Robert Ellis,Female,7596,1975-08-08,O- -Michael Walker,Male,7597,1952-10-26,B+ -Stephen Jackson,Female,7598,1996-02-26,A- -Michael Vazquez,Male,7599,1946-06-14,AB+ -Richard Wilson,Male,7600,1951-11-14,A+ -Trevor Compton,Male,7601,1939-02-15,AB- -Sierra Jenkins,Male,7602,1932-02-27,A- -Tanya Dudley,Male,7603,1947-01-14,B- -Adam James,Male,7604,1957-01-12,B+ -David Jones,Male,7605,1976-07-24,O- -Robin King,Male,7606,1985-05-17,A+ -Isabel Hughes,Male,7607,1940-01-25,A+ -Terri Jefferson,Female,7608,1937-01-16,B- -Brittany Haynes,Female,7610,1948-12-07,B+ -Shane Parker,Female,7611,1943-10-13,B- -Tyler Campbell,Female,7612,1951-04-29,B- -Lance Gonzalez,Female,7614,1972-12-15,AB- -Eugene Peterson,Male,7615,1961-05-10,B+ -Christina Webb,Female,7616,1989-02-18,AB- -Carlos Lin,Male,7617,1942-11-26,O- -Shirley Jones,Male,7618,1930-03-08,B- -Jennifer Richards,Female,7619,1973-05-30,AB+ -Cody Dalton,Female,7620,1964-03-01,A+ -Edward Stewart,Male,7621,1950-08-17,B+ -Michelle Collins,Female,7622,1971-05-09,B- -Chelsea Ellis,Male,7623,1942-08-22,B+ -Francis Winters,Male,7624,1966-05-09,A+ -Daniel Haynes,Female,7626,1977-12-24,O+ -Stacy Williams,Female,7627,1945-09-09,A- -James Lynch,Male,7628,1959-05-13,O+ -Steven Elliott,Female,7629,1962-03-26,B- -Jessica Villegas,Female,7630,1995-04-19,A+ -Jeffrey Long,Male,7631,1974-07-17,A- -Elizabeth Whitehead,Female,7632,2000-07-15,O+ -Peter Baker,Male,7633,1987-02-06,B- -Angela Hunt,Female,7634,1965-06-06,A+ -Mary Hernandez,Male,7635,1984-01-01,B- -Courtney Lee,Male,7636,1976-05-11,AB- -Alexandria Jones,Male,7637,1995-11-15,A+ -Jorge Parker,Female,7639,1997-06-26,O+ -Samantha Murray,Female,7640,1970-02-03,B- -Rachel Robinson,Male,7641,1930-07-18,B+ -Scott Campos,Male,7643,2002-03-01,O+ -Kevin Ferguson,Male,7644,1976-06-03,B- -Misty Kelly,Male,7645,1977-01-08,B+ -Richard Gallagher,Female,7646,1956-11-30,B+ -William Esparza,Female,7647,2002-04-20,O- -Jason Carr,Male,7648,2002-05-14,B+ -Michele Riddle,Male,7649,1967-10-12,O+ -Sheila Gonzales,Female,7650,1978-01-27,O+ -Michaela Wright,Male,7651,1961-05-27,AB+ -Michael Atkinson,Female,7652,1930-06-28,A- -Kristen Ortega,Male,7653,1981-01-01,AB- -Mary West,Male,7654,1986-01-17,O+ -Christopher Liu,Female,7655,1976-11-13,A+ -Megan May,Female,7656,1991-12-03,A- -Tyler Baker,Female,7657,1932-03-09,B+ -Elizabeth Wilson,Male,7658,1950-10-24,B- -Ana Riley,Male,7659,1999-06-11,O- -Michael Hernandez,Male,7660,1937-08-27,A+ -Sean Edwards,Male,7661,1964-03-19,A- -Nicholas Estes,Female,7662,1942-07-25,A+ -Jacob Lindsey,Male,7663,1949-12-24,A+ -April Lee,Male,7664,1938-06-12,A+ -Melvin Arnold,Female,7665,1960-06-02,A- -Julie Miller,Female,7666,1932-01-02,O- -Ryan Larson,Male,7667,1933-02-03,B+ -Elizabeth Crosby,Male,7668,1934-05-25,AB+ -Billy Jackson PhD,Female,7669,1962-10-10,AB- -Julie Anderson,Male,7670,1959-12-12,B+ -Kevin Patton,Female,7671,1961-02-09,O+ -Sarah Williams,Female,7672,1938-01-12,A- -Melanie Martinez,Male,7673,1971-08-01,A+ -Catherine Walsh,Female,7674,2000-08-12,B+ -Jacob Gibson,Male,7675,1998-03-05,O+ -Adrian Lee,Male,7676,1943-11-23,A- -Sheila Wilson,Male,7677,1968-06-07,O+ -Ashley Atkins,Female,7678,2002-05-09,A+ -Brianna Hill,Male,7679,1949-06-09,AB+ -Amanda Holloway,Male,7680,1978-12-09,A- -Marie Huang,Male,7681,1932-06-12,O+ -Keith Wilson,Female,7682,1933-10-22,B- -Sarah Jenkins,Male,7683,1984-02-20,O+ -Jasmine Patel DDS,Male,7684,1941-08-10,AB- -Michael Hamilton,Female,7685,1987-02-14,A+ -Kathleen Brown,Male,7686,1981-01-20,O- -Karen Coleman DDS,Male,7687,1939-05-26,O+ -Debra Miller,Male,7688,1936-06-29,AB+ -Amy Brown,Male,7689,1986-08-31,B- -Mr. Jordan Miller,Female,7690,1934-02-24,B- -Shaun Hawkins,Male,7691,1973-07-20,O- -Alexis Schultz,Male,7692,1947-04-28,B+ -Thomas Jones,Male,7693,1969-12-27,AB- -Scott Hart,Male,7694,1994-04-07,O- -Allen Lowe,Female,7695,1945-04-18,AB- -Terri Smith,Female,7696,1937-12-27,O+ -Elizabeth Hudson,Male,7697,1990-07-20,A+ -Michael Flores Jr.,Female,7698,1995-11-26,AB+ -Michael Ramos,Female,7699,1973-07-15,B- -Joseph Lee,Female,7700,1978-01-20,O- -Chris Robertson,Male,7701,1997-08-03,AB+ -Mary Mcintyre,Female,7702,1988-11-05,AB- -Jennifer Arroyo DDS,Female,7703,1986-09-15,A+ -James Parker,Female,7704,1990-10-07,B- -Ashley Peterson,Male,7705,1984-11-12,B- -Brian Keith,Female,7706,1940-05-21,AB- -Patricia Roberts,Male,7707,1957-03-27,A+ -Faith Allen,Male,7708,1973-06-03,B- -Melanie Robinson,Female,7709,1993-04-22,A+ -Latoya Phelps,Male,7710,1934-04-27,B- -Tracy Mays,Female,7711,1955-12-24,O+ -Nicole Harrison,Male,7712,1980-12-08,AB- -Timothy Frazier,Female,7713,1955-02-03,A+ -James Wiggins,Male,7714,1932-10-27,AB+ -Jason Luna,Male,7716,1973-06-25,B+ -Sheila Edwards,Male,7717,1959-07-13,O+ -Sherry Morris,Male,7718,1948-04-27,A- -Kerry Pittman,Male,7719,1985-10-15,AB+ -Brandon Esparza,Female,7720,1977-05-11,AB- -Kim Powers,Female,7721,1947-05-30,B- -Deborah Taylor,Male,7722,1980-10-30,A- -Kimberly Cohen,Female,7723,1983-08-12,AB+ -Jonathan Cervantes,Male,7724,1991-05-25,O+ -Jasmine Sandoval,Male,7725,1934-01-02,A- -Carlos Hernandez,Female,7726,1972-06-20,A- -Jacqueline Morgan,Male,7727,1958-12-10,A+ -Nathan Campbell,Male,7728,1973-07-11,O- -Sonya Williams,Female,7729,1961-11-20,AB+ -Lisa Powell,Male,7730,1972-05-14,O- -Chad Martinez,Female,7731,1949-04-08,AB- -Christina Jackson,Male,7732,1956-01-04,AB+ -Cassidy Harrison,Female,7733,1988-07-13,AB+ -Katherine Spencer,Female,7734,1966-08-26,A+ -Joshua Cook,Female,7735,2000-07-17,B- -Richard Norton,Female,7736,1989-05-23,O+ -Madison Wilson,Male,7737,1947-01-13,O+ -Hannah Bennett,Male,7738,1994-04-09,O+ -Kevin Neal,Male,7739,1951-04-10,B+ -Thomas Parsons,Male,7741,1976-09-27,AB- -Larry Robinson,Female,7742,1969-04-22,A- -Elizabeth Owens,Female,7743,1987-08-15,B- -Michele Anderson,Male,7744,2000-08-04,O- -Marcus Harris,Female,7746,1980-01-17,O+ -Dana Mcgee,Male,7748,1950-03-26,B+ -Tracy Reynolds,Female,7749,1943-06-24,O- -Adam Soto,Female,7750,1967-05-06,B- -Alexis Holt,Female,7751,1992-03-02,AB- -Anthony Parker,Male,7752,1957-05-22,B- -Michelle Jones,Male,7753,1983-07-29,A+ -Pamela Gonzalez,Male,7754,1985-04-03,A- -Alice Juarez,Female,7755,1944-03-06,O+ -Stephanie Ware,Male,7756,1971-09-23,AB- -Susan Taylor,Female,7758,2001-10-15,A+ -Philip Thompson,Female,7759,1940-11-12,O+ -Bridget Williams,Female,7760,1937-06-09,B- -Michael Gregory,Female,7761,1975-05-19,B- -Jimmy Sanchez,Male,7762,1966-12-29,B+ -Patrick Wallace,Male,7763,1978-07-07,AB+ -Joanne Ortiz,Female,7764,1952-05-26,AB+ -Sandra Perez,Male,7765,1965-07-31,B- -Misty Sanders,Female,7766,1960-12-07,B- -Chelsea Greene,Male,7767,1975-11-23,O- -Lisa Williams,Male,7768,1985-05-05,B+ -Sherry Ho,Female,7769,1947-06-21,A- -Maria Spencer,Female,7771,1931-09-08,O- -Daniel Braun,Female,7772,1981-03-28,A- -Joshua Edwards,Female,7773,1979-08-30,A+ -Sarah Thomas,Female,7774,1931-04-09,AB+ -Tracie Oconnell,Male,7775,1955-01-28,AB+ -Patrick Hartman,Male,7776,1986-07-17,B+ -Karen Ross,Female,7778,1938-08-25,B- -Patricia Roberts,Female,7780,1984-10-12,B- -James Elliott,Male,7781,1966-10-13,A+ -Dr. Christian Lee,Male,7782,1943-07-10,AB- -Amy Gonzalez,Female,7783,1944-10-31,AB- -Michael Gutierrez,Male,7784,1991-04-19,B+ -Katherine Garcia,Female,7785,1954-04-26,AB- -Isaiah Parker,Female,7786,1945-05-05,AB+ -Margaret Gordon,Female,7787,1936-01-22,O- -Tricia Perez,Male,7789,1991-08-13,AB- -Daniel Powell,Male,7790,1990-10-15,O+ -Tracy Hunt,Female,7791,1975-11-27,B+ -John Silva,Male,7792,1981-01-13,A+ -Michelle Walls,Male,7793,1962-01-08,AB- -Joanna Carpenter,Male,7794,1978-09-22,O+ -Abigail Nixon,Female,7795,1956-10-06,AB- -Heather Robinson,Male,7796,1969-11-11,O- -Ariana Hansen,Female,7797,1946-10-30,O- -Brooke Alvarez,Male,7798,1931-01-07,AB- -Brandon Carey,Male,7799,1990-10-03,B+ -Nathan Williams,Female,7800,1945-03-28,B+ -Teresa Zimmerman,Female,7801,1954-02-06,O+ -Kelly Moore,Female,7802,1952-09-29,A+ -Joseph Baker,Female,7803,1950-05-13,O+ -William Owens,Male,7804,1931-03-23,A+ -Thomas Morris,Female,7805,1933-10-23,AB- -Joel Rodriguez,Female,7806,1961-07-13,A+ -Trevor Schneider,Male,7807,1978-07-12,B- -Cindy Stephenson,Female,7808,1972-04-24,AB+ -Beverly Johnson,Female,7809,1982-11-27,A- -Stephen Mccoy,Female,7810,1962-07-23,AB+ -Keith Guerra,Male,7811,1971-01-24,O- -Jacob Wells,Female,7812,1946-05-06,B- -Heidi Yang,Male,7813,1955-05-15,AB+ -Jody Garcia,Male,7814,1973-06-05,AB- -Matthew May,Female,7815,1988-01-14,A+ -Donna Alvarado,Female,7816,1984-08-18,A+ -Lindsay French,Female,7817,1944-12-07,O+ -Jay Williams,Male,7818,1938-08-17,O+ -Samantha Ruiz,Male,7819,2001-09-06,B+ -Kenneth Phillips,Male,7820,1972-02-16,A+ -Mrs. Catherine Yates MD,Female,7821,1947-07-25,B+ -Andres Bennett,Female,7822,1942-10-02,AB- -Gary Clarke,Female,7823,1993-11-17,A+ -Katherine Mullins,Male,7824,1958-09-17,O+ -James Sloan,Female,7825,1996-08-09,AB+ -Barbara Adams,Female,7826,1984-11-19,B+ -Stephanie Williamson,Female,7828,1987-02-17,B+ -Zachary Mccann,Male,7829,1987-12-29,O- -Sara Davis,Male,7830,1970-10-12,O+ -Hailey Ali,Male,7831,1988-09-25,AB- -Richard Romero,Female,7832,1945-01-02,B+ -Kristen Singleton,Male,7833,1951-12-30,AB+ -Debra Carter,Male,7834,1932-09-10,AB+ -Robert Colon,Female,7835,1990-03-18,AB+ -Sandra Hernandez,Male,7837,1953-05-23,B- -Erin Mathews,Female,7838,1957-02-24,B- -Ronald Le,Female,7839,1957-10-09,A- -Gary Wall,Male,7840,2000-10-15,AB+ -Bonnie Wood,Male,7841,1972-08-29,B+ -Gary Gray,Female,7843,1935-03-23,AB- -Bridget King,Male,7844,1993-10-25,A+ -Ryan Farmer,Female,7845,1955-03-27,AB- -Aaron Daugherty,Male,7846,1953-12-03,B- -Cheryl Moss,Male,7847,1967-09-01,O+ -Dr. Lawrence Bowen,Male,7848,1941-06-06,B+ -Jessica Mora,Male,7849,1999-09-20,A- -Erica Padilla,Male,7850,1973-01-03,B- -Diamond Campbell,Male,7851,1994-10-01,A+ -Patricia Simmons,Male,7852,1955-06-16,O- -Raymond Butler,Female,7853,1935-06-14,A- -Brenda Hughes,Male,7854,1945-04-28,B- -Annette Rosales,Male,7855,1974-10-31,AB- -Emily Miranda,Male,7856,1985-10-21,A- -Jordan Garcia,Female,7857,1940-05-03,B+ -Carl Burns,Male,7858,1999-10-22,AB- -Samantha Costa,Female,7859,1987-07-30,AB+ -Travis Williams,Female,7860,1980-07-02,AB+ -Jay Salazar,Male,7861,1987-02-22,AB+ -Sarah Murphy,Female,7862,1973-01-01,A- -Gregory Martinez,Female,7863,1970-02-05,O- -Matthew Miller,Male,7864,1967-06-04,A+ -Angela Stewart,Female,7865,1973-09-12,B+ -Krystal Hamilton,Male,7866,1961-02-04,A- -Dorothy Chase,Female,7867,1942-02-22,O+ -Dalton English,Female,7868,1982-02-05,B+ -Gary Henderson,Female,7869,1973-04-09,AB- -Dr. Cassandra Austin,Female,7870,1977-09-20,AB- -Lindsay Sutton,Female,7871,1970-01-17,A- -Amy Giles,Male,7872,1951-10-09,A- -Danielle Lloyd,Male,7873,1947-08-29,A+ -James Jimenez,Male,7874,1982-03-14,O- -Tiffany Horton,Female,7875,1938-10-05,A- -Daniel Peters,Male,7876,1948-07-13,AB+ -Collin Mcdonald,Male,7877,1954-12-31,A+ -Linda Jones,Male,7878,1995-03-25,O+ -Paul Black,Female,7879,1953-08-21,AB+ -Andrew Silva,Male,7880,1981-11-03,O+ -April Clements,Male,7881,1941-07-27,B- -Roger Jordan,Male,7882,1976-06-28,O+ -Joel Roman,Male,7883,1946-07-30,AB+ -Carrie Hancock,Female,7884,1934-02-14,B- -Stacy Carter,Female,7885,1954-10-15,AB+ -Jamie Evans,Female,7886,1973-02-13,AB- -Stephanie Parsons,Female,7887,1959-08-29,AB+ -Sarah Farmer,Male,7888,1974-10-01,B- -Chad Clark,Female,7889,1992-07-26,O+ -Claire Glass,Male,7890,1994-09-02,AB- -Jordan Pope,Male,7891,1970-06-23,O- -Kenneth Martin,Female,7892,1934-04-01,O- -Dana Mathews,Female,7893,1971-06-29,B+ -Hannah Shelton,Male,7894,1967-10-13,O- -Monique Baker,Male,7895,2002-01-15,O- -Christopher Johnson,Male,7896,1948-10-05,A+ -Sandra Gardner,Male,7897,1933-12-20,O- -Stephen Ingram,Female,7898,1991-02-27,B- -Derek Mitchell,Male,7899,1998-01-04,A- -Frederick Kaufman,Female,7900,1996-11-16,O- -Zoe Adkins DVM,Female,7901,1937-04-13,AB+ -Shawn Hancock DVM,Male,7902,1950-07-24,A- -Tammy Collier,Female,7903,1996-06-20,O- -Katherine Powell,Female,7904,1995-03-30,A- -Sarah Estes,Female,7905,1937-06-14,O+ -John Richmond MD,Male,7906,2001-04-16,B- -Robert Nichols,Female,7907,1964-01-27,B- -Kevin Hill,Male,7908,1956-05-21,B+ -Amber Wong,Female,7909,1958-09-21,A- -Eric Norman,Male,7910,1938-01-04,B+ -Crystal Gardner,Male,7911,1956-11-24,AB- -Calvin Wright,Female,7912,1994-04-23,A+ -Maria Chavez,Male,7914,1947-02-01,AB+ -Terry Archer,Female,7915,1976-04-05,A- -Bradley Carr,Female,7916,1930-08-04,B- -Tonya Gentry,Female,7917,1949-12-26,B+ -Lori Jimenez,Female,7918,1961-07-20,O+ -Kelly Burgess,Female,7919,1958-05-18,O- -Jessica Moyer,Male,7920,1938-08-20,B- -Joseph Rogers,Female,7921,1995-04-04,O+ -Blake Barnett,Female,7922,1934-09-03,O- -Wendy Davis,Female,7923,1958-03-13,A+ -Garrett Mccann,Male,7924,1934-04-17,B- -Douglas Holland,Female,7925,1958-06-23,B+ -Elizabeth Robertson,Male,7926,1958-04-29,B- -Rachel Jackson,Female,7927,1933-02-02,A- -Rebecca Ortega,Female,7928,1984-06-20,A- -Joshua Blackburn,Female,7929,1951-07-17,O+ -Stephen Miller,Male,7930,1981-05-02,B+ -Bethany Farrell,Female,7931,1945-04-15,AB- -Jeremy Perez,Female,7932,1943-05-30,A- -Jacob Fields,Female,7933,1990-07-07,AB+ -Latasha Stokes,Male,7934,1946-06-07,A+ -Jill Thompson,Female,7936,1960-06-05,AB+ -Shawn Avila,Male,7937,1942-07-04,B- -Mercedes Mitchell,Male,7938,1955-05-21,AB+ -Daniel Kim,Female,7939,1969-04-14,O- -Wendy Harper,Female,7940,1962-01-16,A+ -Alexandra Lara,Female,7941,1966-06-30,AB+ -Steven Ferguson,Male,7942,1937-07-04,O- -Linda Jackson,Male,7943,1983-02-16,O+ -Donald Olson,Female,7944,1947-02-17,AB+ -Patricia Oliver,Female,7945,1930-08-17,A+ -Lindsay Sosa,Female,7946,1997-10-02,O- -Ashley Beck,Male,7947,1975-08-31,AB+ -Melissa Barnes,Female,7948,1941-09-24,O+ -Stephanie Smith,Male,7949,1998-06-14,AB+ -Jennifer Johnson,Female,7951,1966-04-26,O- -Mr. Jeff Jenkins,Female,7952,1966-08-30,AB+ -Jose Johnson,Male,7953,1993-06-24,A+ -Rebecca Wilkerson,Male,7954,1932-07-07,B- -Jose Peterson,Male,7955,1961-05-03,B+ -Seth Marshall,Female,7957,1931-05-14,B+ -John Jenkins,Female,7958,1937-09-10,O- -Ricky Rollins,Male,7959,1943-08-02,O- -Erik Liu,Male,7960,1954-09-09,O- -Amanda Hale,Female,7961,1940-05-07,O- -Chelsea Mitchell,Male,7962,1957-07-08,AB+ -John Lopez,Female,7963,1935-10-20,A+ -Scott Hall,Male,7964,1947-07-02,B+ -Amy Rivera,Female,7966,1930-05-26,O+ -David Morse,Male,7967,1968-02-20,B+ -Darryl Gill,Female,7968,1996-08-08,A+ -Eric Finley,Male,7969,1970-11-04,O- -Haley Schmidt,Female,7970,1942-07-02,AB- -Mark Oconnor,Female,7971,1975-05-21,AB+ -Jeff Sparks,Female,7972,1989-01-22,AB- -Barbara Schwartz,Male,7973,1948-03-04,AB+ -Mitchell Hampton,Male,7974,1952-07-27,O- -Jeremy Dunn,Female,7975,1936-08-07,AB+ -Patrick Nelson,Male,7976,1934-12-26,O- -Deanna Yu,Male,7977,1982-12-22,A+ -Lisa Winters,Female,7978,1936-11-26,A- -Aaron Williamson Jr.,Female,7979,2002-05-28,B- -Guy Nichols,Female,7981,1981-11-21,AB+ -Denise Norman,Female,7982,1946-02-08,O- -Sarah Cherry,Female,7983,1935-02-11,AB- -Brandon Garcia,Male,7984,1950-06-10,O- -Emma Chen,Male,7985,1995-09-03,AB- -Victor Young,Female,7986,1961-05-19,B+ -Tracy Brown,Male,7988,1983-08-14,AB+ -Madeline Robles,Male,7989,1946-09-17,O+ -Brian Smith,Female,7990,1963-05-25,AB- -Scott Anderson,Male,7991,1972-03-25,O- -Whitney Caldwell,Female,7993,1973-12-14,AB+ -Maria Thomas,Male,7994,1930-08-29,O- -Heather Burgess,Male,7995,1984-04-11,O+ -Misty Robbins MD,Male,7996,1942-09-06,B- -Steven Sanchez,Female,7997,1956-04-13,A- -Rachel Olsen,Male,7998,1962-01-07,A- -Amy Townsend,Male,7999,1997-07-06,O+ -Lorraine Zuniga,Female,8000,1943-11-26,A+ -Vanessa Ford,Male,8001,1940-04-26,AB+ -Micheal Young,Male,8002,1955-01-12,O+ -Rebecca Chavez,Male,8003,1951-11-22,B- -Misty Murray,Male,8004,1998-12-16,O- -Emma Farmer,Male,8005,1992-06-17,AB+ -Ashley Cox,Female,8006,1966-05-08,B+ -Caroline Sanders,Male,8007,1984-09-23,AB- -Amber Pruitt,Male,8008,1964-11-24,O+ -Sarah Gutierrez,Male,8009,1961-06-02,B+ -Ashlee Black,Female,8010,1980-10-22,B+ -Michael Williams,Male,8011,2001-06-15,B- -Michael Lewis,Female,8012,1947-12-26,B+ -Sheryl Hudson,Female,8013,1937-02-14,O+ -Rebecca Ryan,Female,8014,1982-02-18,A+ -Keith Carroll,Male,8016,1946-08-25,A- -Robert Morris,Female,8017,1967-12-07,A- -Diana Valenzuela,Male,8018,1994-11-30,AB+ -Christopher Potter,Female,8019,1935-11-30,O- -Denise Jimenez,Female,8020,1985-05-06,B- -Derek Nichols,Female,8022,1952-10-05,O+ -Jason French,Female,8023,1941-12-17,AB+ -Joseph Lopez,Female,8024,1933-08-10,O+ -Sherry Dennis,Female,8025,1987-02-28,AB+ -David Dunlap,Male,8026,1966-05-04,A- -Nicole Carter,Female,8027,1933-05-15,B+ -Andrea Smith,Female,8028,1977-12-17,A+ -Emily Moon,Female,8029,1995-09-08,O+ -Victoria Mendoza,Male,8030,1933-07-25,A+ -David Sawyer,Female,8031,1973-08-10,AB- -Jackson Johnson,Female,8032,1935-03-26,AB- -Derek Coleman,Male,8033,1996-12-26,B+ -Anna Wallace,Male,8034,1970-10-22,A- -Tammy Cox,Female,8035,1952-03-13,B- -Jason Cooper,Male,8036,2001-05-29,A+ -Joel Brown,Female,8037,1996-09-05,AB+ -Leslie Harvey,Male,8038,1980-02-08,B- -Sue Gray,Female,8039,1994-01-05,O+ -Ethan Cooper,Female,8040,1937-07-20,O+ -Carla Chavez,Female,8041,2002-08-23,AB+ -Thomas Colon,Male,8042,1947-09-13,O- -Ellen Clark,Male,8043,1975-05-07,B+ -Jessica Weaver,Male,8044,1954-11-19,O- -Eric Jones,Female,8045,1992-04-11,B+ -Ashley Davis,Male,8046,1971-05-30,O+ -Dr. James Williams,Female,8047,1969-01-16,B+ -Kara Sweeney,Female,8048,1956-09-04,A- -Jeffrey Lowe,Female,8049,1953-10-10,A- -Karen Wolfe,Female,8050,1930-03-02,AB+ -Julie James,Female,8051,1955-05-19,O- -Dr. Jillian Graves,Female,8052,1993-02-24,A+ -Steven Byrd,Female,8053,1937-12-05,O+ -Kenneth Vaughn,Male,8054,1971-12-15,AB- -Amanda Miller,Female,8055,1963-10-27,A+ -Bradley Ruiz,Female,8056,1962-07-07,AB+ -Manuel Jones,Male,8057,1976-06-17,AB- -Robert Williams,Male,8058,1945-12-11,A+ -Debra Anderson,Female,8059,1962-10-02,O- -Sheri Jones,Female,8060,1931-06-19,B+ -Brooke Wilson,Female,8061,1984-05-03,A- -Isaiah Rodriguez,Male,8062,1940-12-25,O- -Lisa White,Male,8063,1984-02-29,AB- -Stephanie Hensley,Male,8064,1935-11-26,B+ -Katherine Brooks,Female,8065,1991-03-12,B+ -Christine Hurley,Female,8066,1994-12-04,B+ -Vickie Flynn,Male,8067,1949-01-18,B- -Erik Smith,Male,8068,1955-03-07,A- -Gregory Webb,Male,8070,1959-04-10,O+ -Kayla Hill,Male,8071,1989-06-09,AB- -David Mack,Female,8072,1966-06-28,AB+ -Christopher Robertson,Female,8073,1998-03-07,O+ -Kimberly Cruz,Male,8074,1987-09-26,A+ -Joseph Shaffer,Female,8075,1937-05-30,A- -John Marshall,Male,8076,1930-01-02,AB+ -Nicole Harris,Male,8077,1955-04-05,AB+ -Natasha Meyer,Male,8078,1997-08-17,O- -David Kelly,Male,8079,1977-11-18,A+ -Shannon Riley,Female,8080,1970-07-30,O- -Eric Hall,Female,8081,1959-10-27,O- -Debra Henson,Female,8082,1935-02-05,B+ -Rachel Matthews,Female,8083,1944-06-05,A- -Richard Gould,Female,8084,1993-11-13,B- -Gilbert Gordon,Female,8085,1960-06-04,O- -Christopher Robinson,Female,8086,1972-12-25,O+ -Melanie Murphy,Female,8087,1952-10-12,AB+ -Adrian Curry,Male,8088,1976-01-21,A- -Robert Hensley,Female,8089,1988-02-16,O- -Eric Houston,Male,8090,1959-05-29,AB- -Jeremy Stein,Male,8091,1938-07-27,O+ -Erik Macias,Male,8092,2000-08-18,A+ -Jason Kent,Female,8093,1996-12-25,AB+ -Kimberly Powell,Male,8094,1977-04-29,A- -Alison Nguyen,Male,8095,1969-05-16,AB- -Brooke Sutton,Female,8096,1961-02-07,A- -Matthew Salas,Male,8097,1944-10-12,A- -Barbara Sanford,Male,8098,1993-02-21,AB- -Jeremiah Young,Female,8099,1945-02-20,A+ -Patrick Russo,Male,8100,1992-12-09,AB- -Donald Watkins,Male,8101,1940-09-23,O+ -Wesley Jackson,Male,8102,1977-10-12,B+ -Laura Burton,Male,8103,1974-12-06,A- -Richard Flores,Male,8104,1948-12-29,A+ -Deanna Jones,Male,8105,1994-09-30,A- -Laurie Bates,Female,8106,1949-06-28,AB- -Maria Salas MD,Female,8108,1976-05-10,A+ -Daniel Ramos,Male,8109,1959-09-26,A+ -Bryan Martin,Female,8110,1998-11-02,O- -Richard Kelly,Male,8111,1999-03-19,O- -Anne Case,Male,8112,1944-08-13,B+ -Carolyn Allen,Male,8113,1964-02-24,O- -Shawn Zuniga,Female,8114,1938-08-07,AB- -Johnny Gillespie,Female,8115,1951-11-23,AB+ -Robert Wright,Female,8117,1972-05-29,O+ -James Kelly III,Female,8118,1979-03-19,AB- -Christine Taylor,Male,8119,1968-11-18,A- -Christina Andrews,Male,8120,1951-04-17,O- -Jason Barr,Female,8121,1943-07-15,A+ -Jenna Rodriguez,Female,8122,1965-04-13,AB- -Andrew Taylor,Female,8123,1954-08-20,A+ -Kelsey Bass,Female,8124,1951-05-09,B+ -Erik Robinson,Female,8125,1985-03-28,A- -Matthew Grant,Male,8126,1978-07-29,A+ -Lisa Harper,Female,8127,1952-02-27,A+ -Steve Johnson,Male,8128,1938-10-31,B+ -Larry Riddle,Male,8129,1962-05-03,B- -Brett Walker,Female,8130,1970-11-01,AB+ -Alfred Wang,Female,8131,1936-09-26,O+ -Jeremy Solis,Male,8132,1953-12-03,O+ -Mr. Matthew Murray,Male,8133,1968-02-11,O- -Danny Schultz,Female,8135,1982-04-30,B- -Kathy Moses,Male,8137,1993-04-10,AB- -Anna Frazier,Male,8138,1959-06-12,B+ -Stephanie Nelson,Male,8139,1995-05-05,AB- -Daniel Ellis,Male,8140,2002-12-24,O+ -Frank Johnson,Male,8142,1992-06-18,AB+ -Alexander Guzman,Female,8143,1959-08-30,A+ -Cassandra Mclaughlin,Female,8144,1938-07-12,A- -Peggy Brooks,Male,8145,2002-07-24,O- -Hannah Garcia,Male,8146,1976-07-18,AB+ -Mitchell Miller,Male,8147,1972-01-21,O+ -David Baird,Male,8148,1984-11-01,B- -Debbie Mclean,Male,8149,1992-06-01,O- -Whitney Bullock,Female,8150,1978-02-25,B+ -James Stephens,Female,8151,1957-03-31,O+ -Tracy Murray,Female,8152,1937-01-09,AB- -Brian Garrison,Male,8153,1938-09-10,O- -Bradley Burton,Female,8154,1983-04-18,B+ -Austin Burke,Male,8155,1937-03-15,O+ -Gregg Fowler,Female,8156,1938-08-28,AB- -Ariel Fletcher,Female,8157,1941-10-31,A- -Wayne Watson,Female,8158,1999-02-13,AB- -Amanda Andrews,Male,8159,1966-02-25,A+ -Christian Kim,Male,8160,1992-01-09,B+ -Aaron Edwards,Female,8161,1949-06-09,B+ -Roberto Roberts,Male,8162,1995-01-20,B- -Sarah James,Male,8164,1961-02-07,B+ -Elizabeth Singh,Female,8165,1958-03-28,A+ -Lori Hansen,Male,8166,1966-12-20,O+ -Matthew Smith,Female,8167,1986-01-09,A- -Matthew Henry,Male,8168,1945-11-19,AB+ -Megan Gentry,Male,8169,1968-09-08,A- -Anthony Nguyen,Male,8170,1969-01-27,A- -Alfred Hernandez,Male,8171,1974-01-05,B+ -David Lang,Male,8173,1941-05-14,A- -Jordan Lee,Male,8174,1954-05-26,B+ -Curtis Wilson,Male,8175,1981-12-23,A+ -Brianna Griffith,Female,8176,1991-10-07,AB+ -Sue Perez,Female,8177,1965-03-19,AB- -Emma Watson,Male,8179,1931-10-29,B+ -Kyle Lutz,Male,8180,1975-08-20,O+ -Elizabeth Martinez,Male,8181,1945-12-28,B- -Lisa Houston,Male,8182,1939-10-06,AB+ -Jamie Fernandez,Male,8183,1958-07-19,O+ -Christopher West,Female,8184,1987-06-08,B+ -Mrs. Virginia Marshall MD,Female,8185,1978-11-14,AB+ -Matthew Barrett,Female,8186,1997-08-22,B+ -Samuel Rose,Female,8187,1987-10-27,A+ -Adam Lee,Female,8188,1991-12-28,O+ -Thomas Williams,Female,8189,1950-03-03,A+ -Rodney Wright,Female,8190,2002-12-05,O- -Tiffany Mahoney DVM,Male,8191,1972-10-17,O+ -Pamela Johnson,Female,8192,1984-11-29,AB+ -Ashley Sanchez,Female,8193,1950-03-19,O- -Shawn Carrillo,Female,8194,1992-11-22,A+ -Ebony Fleming,Female,8195,1974-03-20,A+ -Donna Davis,Female,8196,1973-06-15,AB+ -Rebecca Hernandez,Male,8197,1966-05-05,O- -Crystal Ward,Female,8199,1932-09-19,A- -Cindy Kim,Female,8200,1948-10-11,AB- -Michael Dominguez,Male,8201,1935-10-23,B- -Jesse Morales,Male,8202,1963-12-02,AB+ -Robert Dominguez,Male,8203,1980-12-11,A+ -William Welch,Female,8204,1987-03-29,O+ -Kelly Watson,Female,8205,1983-08-03,O- -Richard Woodard,Female,8206,1983-09-21,B+ -Todd Washington,Female,8207,1941-04-29,AB- -Kim Mills,Male,8209,1975-10-19,B- -Chelsea Williams,Female,8210,1964-08-23,O+ -Danielle Griffin,Female,8211,1972-05-19,O- -Heidi Douglas,Male,8213,1987-09-27,AB- -Edward Williams DDS,Female,8214,1943-03-17,AB+ -Eddie Barber,Male,8215,1943-06-22,B+ -Matthew Wyatt,Female,8216,1983-08-16,AB- -Candice Cunningham,Female,8217,1944-12-24,AB+ -Allison Wilson,Male,8219,1977-04-16,B+ -Aaron Yang,Female,8220,2002-11-18,B+ -Melissa Johnson,Female,8221,1956-02-07,A- -Holly Silva,Male,8222,1949-07-07,O- -Javier Guzman,Female,8223,1940-03-09,B+ -Jacob Sanders,Female,8224,1982-10-02,AB- -Lauren Williams,Female,8225,1972-12-22,B+ -Ruben Cisneros,Female,8226,1986-05-23,B- -Christopher Miller,Female,8227,1993-12-01,AB- -Alejandra Nunez,Male,8228,1981-06-21,O- -Ronald Bauer,Male,8229,2000-05-06,O+ -Elizabeth Nunez,Female,8230,1983-01-28,O+ -Emily Mendez,Female,8231,1979-08-14,AB- -Jonathan Thomas,Female,8233,1933-09-26,AB- -Miguel White DVM,Female,8234,1937-06-01,AB+ -Garrett Gutierrez,Female,8236,1965-07-18,O- -Autumn Mcdowell,Male,8238,1977-05-22,AB+ -Tina Evans,Female,8239,1930-06-01,B- -Tyler Gamble,Male,8240,1998-11-21,A- -Ian Porter,Male,8241,1996-11-18,O+ -Gabriel Phillips,Female,8242,1977-05-10,B+ -Julia Combs,Male,8243,1936-05-10,B+ -Anthony Vega,Male,8244,1967-12-18,A+ -Blake Cannon,Female,8245,1931-05-11,A+ -Connor Pierce,Male,8246,1962-10-27,O- -James Porter,Male,8247,1935-11-19,B+ -Ashley Greer,Female,8248,1931-07-11,O- -Mark Vargas,Female,8249,1966-09-02,A+ -Michael Holmes,Male,8250,1934-04-02,O- -Derek Morris,Female,8251,1980-08-30,O+ -Katherine Greer,Male,8252,1938-06-13,B- -Jessica Sanders,Male,8253,1984-06-14,B- -Daniel Barrett,Female,8255,1930-06-06,B+ -Jane Perez,Male,8256,1954-06-10,AB+ -Mr. James Thomas,Male,8258,1995-05-29,O+ -Calvin White,Female,8260,1949-08-11,A- -Kyle Morris,Female,8261,1989-12-24,O- -Tyler Freeman,Male,8262,1995-07-06,O- -Dustin Myers,Male,8264,1952-01-21,B+ -Jennifer Hale,Female,8265,1942-09-29,A- -Jennifer Estrada,Female,8266,1991-12-21,AB+ -Carrie Rice,Female,8267,1961-05-26,AB+ -Mark Peterson,Male,8268,1994-09-12,O- -Brandon Kim,Female,8269,1930-06-04,O- -David Zavala,Female,8270,1951-10-08,A- -Anthony Norris,Female,8271,1971-12-15,B+ -Alexandra Richardson,Female,8272,1977-08-02,O+ -Daniel Gregory,Male,8273,1942-09-01,A- -Amanda Gardner,Male,8274,1982-10-24,AB+ -Joann Johnson,Female,8275,1969-01-15,A- -Breanna Nielsen,Male,8276,1970-09-21,A- -Alexander Turner,Male,8277,1965-08-21,A- -Sierra Hansen,Male,8278,1955-08-27,O+ -Timothy Le,Female,8279,1930-06-03,AB- -Lauren Pena,Female,8280,1951-07-03,O- -Brett Rush,Male,8281,1963-11-23,A+ -Katherine Ward,Female,8282,1973-03-28,B+ -Jackie Owens,Male,8283,1992-08-08,A- -Kevin Barrett,Male,8284,1945-05-01,B+ -Kyle Francis,Female,8285,1979-07-23,A+ -Donald Mcclain,Male,8286,1970-06-25,AB- -Bradley Swanson,Female,8287,1960-04-02,O- -Alejandro Gray,Male,8288,1932-02-26,AB+ -Allison Rodgers,Female,8289,1941-12-17,A+ -William Robinson,Female,8290,1997-01-09,B+ -Jason Little,Male,8291,1970-11-10,B+ -Jason Phillips,Female,8292,1941-09-12,B+ -Christopher Hernandez DDS,Female,8293,1985-03-04,AB+ -Curtis Gonzalez,Male,8294,1999-01-17,A+ -Gregory Wilson,Male,8295,1946-05-31,B+ -Philip Cline DVM,Male,8296,1994-08-13,AB+ -Lori Scott,Female,8297,1999-02-09,A- -Tonya Blair,Male,8298,1984-03-28,B+ -Kendra Cox,Female,8299,1985-03-20,A+ -Rachel Diaz,Female,8300,1989-09-19,AB+ -Gabriel Flores,Female,8301,1949-03-13,AB- -David Miles,Female,8302,1996-11-26,O+ -Lauren Gomez,Female,8303,1984-12-28,AB+ -Matthew Gregory DDS,Female,8304,1968-07-26,O+ -Karen Walker,Female,8305,1955-05-11,O+ -James Murray,Male,8307,1981-04-16,O- -Harry Moon,Male,8308,1949-03-13,A- -Julie Schmidt,Male,8309,1994-03-05,AB- -Amy Salazar,Male,8310,1933-04-27,O+ -Gabriel Sanders,Female,8311,1993-12-05,B- -Rebecca Shaw,Female,8313,1968-09-19,A- -Susan Wilkerson,Male,8314,1955-08-02,O+ -Zachary Allen,Female,8316,1948-05-10,AB+ -Lawrence Watkins,Male,8317,1973-07-10,O+ -Rhonda Colon,Male,8318,1995-03-18,AB+ -Austin Rogers,Male,8319,1981-09-25,B+ -Travis Gomez,Female,8320,1930-05-24,AB+ -Evan Pittman,Female,8321,1959-03-31,B- -Christine King,Female,8322,1950-03-04,O+ -Ryan Nichols,Female,8323,1938-11-03,O+ -Todd Glass,Male,8324,1942-07-19,A+ -Thomas Lowery,Female,8325,1965-12-30,A- -Rachel Jones,Female,8326,1961-03-16,A+ -Sandra Rice,Female,8327,1946-07-07,O- -Mike Palmer DVM,Male,8328,1941-08-14,AB+ -Eric Quinn,Male,8330,1967-05-14,B- -Christian Bender,Female,8331,1961-06-23,A+ -Felicia Boyd,Male,8332,1956-02-23,O+ -Joshua Holmes,Female,8333,1971-06-21,O- -Michelle Kelly,Male,8334,1982-04-15,B- -Jennifer Stevens,Female,8335,1941-06-17,AB- -Jade Waters,Male,8336,2001-01-01,O+ -Jordan Rogers,Female,8337,1964-03-09,O+ -Barry Bryant,Male,8338,1950-01-24,B+ -John Green,Female,8339,1987-07-18,AB- -Robert Rodriguez,Male,8340,1983-08-07,AB+ -Catherine Osborne,Male,8341,1975-09-06,AB+ -Joyce Austin,Female,8342,1976-11-02,A+ -Charles Simpson,Male,8343,1990-06-13,A+ -Dr. Kimberly Khan,Female,8344,1938-03-30,O+ -David Shah,Male,8345,1945-03-18,A- -Dorothy Ingram,Male,8346,1930-03-09,O+ -Ricardo Wilkins,Female,8347,1963-05-13,A+ -Kayla Hayden,Male,8348,1981-09-20,AB- -Colton Jones,Male,8349,1934-03-18,A+ -Melissa Snyder,Male,8350,1975-12-12,O+ -Thomas Garcia,Male,8351,1961-08-15,B- -Chelsey Shepherd,Male,8352,1945-07-21,O+ -Jamie Ward,Male,8353,2000-06-21,B- -John Cook,Female,8354,1988-01-26,B- -Paul Roberts,Male,8355,1953-12-13,O+ -Nancy Davila,Male,8356,1991-06-02,A- -Alexis Shaw,Male,8357,1971-05-22,A- -Noah Nelson,Male,8358,1984-11-18,O- -Barbara Ross,Female,8359,2002-01-30,A+ -Stephanie Byrd,Male,8360,1938-01-20,A- -Jay Ray,Female,8361,1959-09-15,AB+ -Ricky Matthews,Female,8362,1949-05-08,O+ -Shannon English,Male,8363,1988-10-18,B- -Anthony Stein,Female,8364,1957-10-17,O+ -Kevin Tate,Male,8365,1979-03-30,A+ -David Rice,Male,8366,1978-11-29,AB- -Tracy Dalton,Male,8367,1991-12-01,A- -Shawn Nguyen,Female,8368,2000-04-21,A- -Danny Wright,Female,8369,1983-10-30,A- -Ricky Daniels,Male,8370,1971-06-01,B- -Joseph Whitney,Female,8371,1972-09-30,AB+ -Traci Henry,Female,8372,1947-08-27,B+ -Margaret Mayo,Male,8373,1945-01-21,AB+ -Samantha Hicks,Male,8374,1947-03-06,A- -Mackenzie Ross,Male,8375,1933-07-23,AB+ -Dakota Howard,Male,8376,1990-10-15,AB- -Jason Mcdonald,Male,8377,1948-05-07,A- -Kelly Peterson,Female,8378,1943-09-04,O- -Angel Sweeney,Female,8379,1972-10-14,B- -Erin Terry,Male,8380,1950-07-04,AB- -Lisa Kelly,Female,8381,2001-06-28,B+ -Terry Irwin,Female,8382,1952-08-22,B- -Barry Williams,Female,8383,1937-10-02,B+ -Caitlin Carter,Male,8384,1961-10-07,A- -Thomas Kelly,Female,8385,1982-04-23,AB- -Karen Moore,Male,8386,1962-05-12,A- -Carrie Nguyen,Female,8387,1979-01-20,B+ -Angela Cohen,Female,8388,1997-12-08,B+ -Mary Love,Female,8389,1989-03-29,AB- -Isaac Hernandez,Female,8390,1935-06-20,A- -James Browning,Male,8391,1989-05-26,O- -Lauren Maddox,Female,8392,1961-10-24,B- -John Barrett,Female,8393,1975-08-14,AB- -Michael Gordon,Male,8394,1938-06-17,O- -Mr. Ryan Smith,Female,8395,1931-06-08,O+ -Patrick Robinson,Female,8396,1986-07-25,A- -Kevin Alvarez,Female,8397,1963-12-24,A+ -Isabel Wilson,Female,8398,1989-07-19,AB- -Jorge Day,Female,8400,1973-01-27,AB+ -Pamela Sawyer,Male,8401,1983-05-29,O- -Hannah Navarro,Male,8402,1952-05-12,O- -Crystal Avila,Female,8403,1944-03-18,AB- -Kelsey Hansen,Female,8404,1942-07-12,B+ -Dominique Morales,Male,8405,1951-02-27,O- -Erik Fletcher,Male,8406,1972-02-08,O+ -Melinda Hill,Male,8407,1934-12-03,O- -Jose Mora,Female,8408,1935-11-02,A+ -Tyler Nelson,Female,8409,1994-11-27,A+ -Tanya Rodgers,Male,8410,1970-10-18,B+ -Amy Wilson,Female,8411,1992-08-27,A- -Tonya Simpson,Female,8412,1977-02-02,A- -Joseph Rodriguez,Female,8413,1998-07-01,B+ -Crystal Cooper,Female,8415,1961-01-10,AB+ -Sheila Deleon,Female,8416,1948-04-02,O+ -Sheryl Crawford,Male,8417,1975-04-01,A+ -Luke Johnson,Male,8418,1964-03-02,B+ -Mary Powers,Female,8419,1933-11-11,AB- -Mathew Bennett,Female,8420,1964-09-04,B- -Deborah Leonard,Female,8421,1931-06-19,B- -Tammy Powell,Female,8422,2001-12-26,B- -Melanie Gonzalez,Male,8423,1939-03-19,A- -Scott Hines,Female,8424,1977-09-07,AB- -Angela Martinez,Female,8425,1939-02-25,O- -Thomas Brewer,Male,8426,2001-02-23,AB- -Donna Campbell,Female,8427,1991-07-09,O- -David Warren,Female,8428,1966-11-13,B- -Alyssa Richmond,Female,8429,1942-04-28,AB+ -Mark Tran,Female,8430,1933-03-18,AB+ -David Chan,Female,8431,1999-09-20,B+ -Mr. Glenn Hampton,Female,8432,1987-03-24,O- -Robert Waters,Male,8433,1951-12-04,B- -Steven Evans,Female,8434,1934-06-30,AB- -John Franco,Male,8435,1976-02-24,AB+ -Tammie Hansen,Female,8436,1982-11-28,O- -Aaron Oliver,Male,8437,1953-12-04,B+ -Matthew Burke,Female,8438,1942-12-10,AB- -Laura Smith,Female,8439,1962-04-12,B- -Matthew Stephenson,Male,8440,1995-11-10,O+ -Donald Decker,Male,8441,1960-03-01,B- -Anna Davenport,Female,8442,1985-01-19,A- -Christopher Williamson,Male,8443,1930-12-30,B- -Nathan Hodge,Female,8444,1958-05-12,B+ -Paul Williams,Female,8446,1939-01-23,AB- -Beth Jensen,Male,8447,1976-05-08,B+ -Angel Gill,Male,8448,1938-11-15,AB- -Brittany Rice,Male,8449,1948-04-01,A+ -Timothy Smith,Male,8450,1965-05-18,A+ -Michelle Mata,Male,8451,1935-04-21,AB- -William Peters,Male,8452,1968-03-30,AB- -Diana Maynard,Female,8453,1999-12-03,O+ -Melissa Willis,Male,8454,1960-08-28,O+ -Christy Steele,Female,8455,1962-11-07,B- -Thomas Camacho,Female,8456,1932-06-01,B+ -Laura Roberts,Female,8458,1985-05-16,A- -Rose Gonzalez,Female,8459,1948-12-15,B+ -Lisa Smith,Male,8460,1999-09-02,AB+ -Andre Clay,Male,8461,1987-06-26,B+ -Carlos Cooper,Female,8462,1967-07-14,A- -Mallory Carter,Female,8463,1999-08-28,O+ -Gail Garza,Female,8464,1944-04-01,B- -Jack Ware,Male,8465,1949-12-15,A- -Erin Williams,Female,8466,1938-10-09,B+ -Kimberly Tanner,Male,8467,1936-02-23,O- -Brandon Walker,Male,8468,1930-01-19,A+ -Ms. Emily Baxter,Female,8469,1976-08-12,A- -Sarah Davis,Male,8470,1938-06-11,AB+ -Mark Warren,Male,8471,1989-02-04,B- -James Watson,Female,8472,1953-05-01,A- -Mariah Rodriguez,Female,8473,1977-03-24,AB- -Eduardo Rasmussen,Female,8474,1932-02-13,B+ -Garrett Wagner,Female,8476,1942-12-16,O- -Michael Price,Female,8477,1984-06-28,A+ -Sara Mann,Female,8478,1948-08-09,O- -Luis Sullivan,Male,8479,1949-02-14,B- -Jesse Huber MD,Female,8480,1937-01-11,B+ -Shelby Sutton,Female,8481,1974-02-20,O+ -Amanda Brown,Female,8482,1934-08-02,A+ -George Bradley,Female,8483,1959-10-11,B+ -Shawn Fuller,Female,8484,1961-09-07,O- -Bianca Moore,Female,8485,1932-01-10,O+ -Karen Zuniga,Female,8486,1934-03-26,AB+ -Elizabeth Hebert,Male,8487,1955-07-16,B- -Gary Brown,Female,8488,1944-01-15,B- -Carol Davis,Male,8489,1993-11-17,A+ -Ryan Delgado,Male,8490,1992-12-25,O- -Eric Schroeder,Male,8491,1954-10-27,AB+ -Beverly Johnson,Male,8492,1987-05-01,AB- -Tyler Ellison,Male,8493,1958-09-23,A+ -Christina Willis,Female,8494,1990-04-25,B+ -Alicia Delacruz,Male,8495,1999-05-06,AB- -Jennifer Campbell,Female,8496,1967-08-24,A+ -Richard Lee,Male,8497,1994-05-13,O- -Miss Brianna Peterson,Female,8498,1954-10-07,AB+ -Megan Miles,Female,8499,1985-01-28,O- -Kristen Cook,Female,8500,1981-02-09,B- -Sarah Malone,Female,8501,1956-01-26,AB- -Amy Burton,Female,8502,1953-09-26,O+ -Joseph Gonzales,Female,8503,1960-11-22,A- -George Bryant,Male,8504,1949-02-28,B+ -Troy Gilmore,Male,8505,1966-10-19,B- -Larry Hernandez,Male,8506,1964-10-06,B- -Rebecca Harris,Male,8507,1967-08-08,AB- -Savannah Reed,Male,8508,1989-09-05,B+ -Jennifer Chapman,Female,8509,1933-06-23,A+ -Destiny Watson,Female,8510,1951-07-18,B- -Mary Crawford,Male,8511,1963-11-17,A- -Julie Becker,Female,8512,1981-12-26,AB+ -Courtney Clark,Female,8513,1946-04-28,B- -John May,Female,8514,1973-01-29,AB+ -Thomas Gonzalez,Female,8515,1956-06-14,O- -Bobby Odom,Male,8516,1953-06-18,B+ -Melinda Dunn,Male,8517,1950-09-10,A+ -Jessica Mckenzie,Female,8518,1979-06-17,AB+ -Philip Martin,Male,8519,1953-02-02,B- -Zachary Thompson,Female,8520,1972-11-09,A+ -Daniel Kennedy,Female,8521,1954-12-12,A- -Margaret Russell,Male,8522,1945-07-23,A+ -Melissa Mendoza,Female,8523,1972-05-19,AB+ -Kaitlyn Werner,Male,8524,1971-03-14,B+ -Ellen Sanchez,Female,8525,1952-02-19,AB+ -Robert Hardy,Female,8526,1989-07-21,O+ -Steven Willis,Female,8527,1975-01-18,O+ -Charles Mitchell,Male,8528,1985-08-08,A+ -Brian Huynh,Male,8529,1946-12-23,AB- -Cathy Lee,Male,8530,1958-02-21,B+ -Russell Mata,Male,8531,1935-07-01,AB- -Lisa Burch,Male,8532,1999-06-24,O+ -Ryan Stewart,Female,8533,1973-04-07,B- -Jessica Boyle,Male,8534,1966-06-30,O- -Angela Zhang,Female,8535,1997-02-01,A+ -Jenna Jensen,Female,8536,1937-08-11,O- -Amanda Lane,Male,8537,1988-04-30,O+ -Kyle Lynch Jr.,Male,8539,1932-01-26,AB+ -Dana Barrett,Female,8540,1947-10-14,A- -Nicole Adkins,Male,8541,1957-11-22,A+ -Jason Clay,Female,8542,1991-02-09,O+ -Victor Davidson,Female,8543,1956-01-18,B+ -Paul Blair,Male,8544,1981-03-28,B- -Mark Hanson,Female,8545,1990-06-24,A- -Linda Robertson,Male,8546,1997-08-02,A+ -Carolyn Martin,Male,8547,1977-08-22,A+ -Nicole Oconnor,Female,8548,1950-02-12,B+ -Andrew Ponce,Female,8549,1969-01-05,AB- -Felicia Hamilton,Female,8550,1970-09-27,AB+ -Todd Warren,Female,8551,1968-06-27,A+ -Justin Hancock,Male,8552,1963-01-05,AB+ -Catherine Eaton,Female,8554,1997-05-09,O+ -Roger Fuller,Male,8556,1943-07-10,B- -Cody Watts,Female,8557,1982-08-18,A- -Stephanie Jackson,Female,8558,1932-01-08,A- -Regina Robinson,Female,8559,1946-12-23,B- -Kenneth Morgan,Male,8560,1952-12-02,A+ -Felicia Webb,Male,8561,1975-06-29,A+ -Tara Holmes,Male,8562,1980-02-09,O+ -Jonathan Gibson,Male,8563,1953-05-14,AB- -Andrew Miller,Male,8564,1991-01-23,AB- -Todd Collier,Female,8565,1937-03-08,AB- -April Villegas,Male,8566,1953-09-03,AB+ -Whitney Cochran,Male,8567,1967-01-30,AB- -Rebecca Edwards,Male,8568,1992-05-20,B- -Brenda Shepard,Male,8569,1965-02-03,A- -Tami Gonzales,Female,8570,1994-03-22,A- -Jessica Noble,Female,8571,1981-02-02,AB+ -David Kelley,Female,8572,1995-02-06,O+ -Gary Lopez,Male,8573,1998-12-01,B- -Steven Jones,Male,8574,1985-06-19,A- -Drew Jarvis,Male,8575,1987-04-06,B- -Christopher Villanueva,Female,8576,1994-06-22,A- -Crystal Barnes,Male,8577,1942-04-25,O- -Herbert Collier,Female,8578,1951-09-21,O+ -Jason Melendez,Male,8579,1980-09-14,O+ -Zachary Gallagher,Male,8580,1948-06-02,B+ -Carolyn Fisher,Male,8581,1963-04-14,O- -Angela Harvey,Male,8582,1979-02-22,AB+ -Christine Richmond,Female,8583,1975-09-14,A- -Brenda Bowman,Female,8584,1998-03-23,B+ -David Walker,Male,8585,1953-08-15,A- -Richard Harris,Male,8586,1952-11-29,A- -Wendy Rojas,Female,8587,1975-03-28,AB- -Vanessa Johnson,Male,8588,1975-05-22,AB- -Jamie Martin DVM,Male,8589,1983-10-11,AB- -Michelle Martinez,Male,8590,1972-08-25,AB- -Jacob Warner,Male,8591,1983-09-19,AB- -Tony Young,Female,8592,1966-11-20,O- -Kenneth Gutierrez,Male,8593,1932-07-31,O+ -Corey Garrison,Male,8594,1942-08-26,AB+ -Tracy Love,Female,8595,1990-07-09,B- -Jenna Pierce,Female,8596,1974-05-05,AB- -Joseph Jones Jr.,Male,8597,1960-07-16,O- -Kevin Haley,Male,8598,1947-05-25,B+ -Louis Knight,Female,8599,1988-06-06,B+ -Michael Vega,Male,8600,1955-01-15,A- -Tracey Bell,Female,8601,1955-12-30,AB+ -Michael Chambers,Female,8602,1967-02-18,B+ -Jonathan Franklin,Female,8603,1984-02-12,AB+ -Robert Howell,Female,8604,1990-11-05,AB+ -Lance Blankenship,Female,8605,1937-11-20,O- -Preston Long,Male,8606,1988-03-28,B- -Stephanie Robbins,Male,8607,1931-06-30,AB- -Gregory Oliver,Male,8608,1968-09-10,AB+ -Garrett Acosta,Male,8609,1966-06-05,O- -Phillip Alvarez,Female,8610,1935-04-12,A- -Aaron Miller,Male,8611,1986-03-24,O+ -Daniel Williamson,Male,8612,1974-11-14,A- -Allison Mora,Female,8613,1961-12-17,O- -Tammy Osborne,Male,8614,1990-01-03,O- -Daniel Reyes,Female,8615,1972-02-02,O- -Andrew Lutz,Female,8616,2001-01-06,AB+ -Julie Chang,Male,8617,2002-04-09,O- -William Thomas,Male,8618,1989-08-01,O+ -Zachary Garrett,Female,8619,1991-12-04,AB+ -Jessica Russell,Female,8620,1937-04-17,A- -Caitlin Copeland,Female,8622,1971-02-28,O+ -Zachary Smith,Female,8623,1955-12-01,B+ -Michael Joseph,Male,8624,1939-02-09,A+ -Allison Brown,Male,8625,1940-01-08,A- -Michael Jackson,Male,8626,1977-12-15,O- -Miguel Anderson,Male,8628,1943-01-16,AB- -Michael Silva,Female,8629,1993-04-21,AB- -Kevin Mills,Male,8630,1959-08-25,AB+ -Matthew Dickson,Male,8631,1970-07-30,AB- -Michelle Cunningham,Male,8632,1960-09-21,A- -Joseph Harris,Male,8633,1960-09-11,AB+ -William Patel,Female,8634,1967-02-25,A- -Rebekah Simmons,Female,8636,1943-12-11,O- -Jennifer Reid,Male,8637,1946-06-28,B- -Barbara Jones,Female,8638,1964-05-31,B- -Michael Martinez,Male,8640,1983-07-05,O+ -Dylan Allen,Male,8641,1967-01-02,O- -Vanessa Jones DDS,Male,8642,1946-11-12,AB- -Edward Cooper,Female,8644,1994-11-23,O- -Stephen Mitchell,Male,8645,1966-03-16,A+ -Richard Moore,Female,8646,1953-02-14,B- -Justin Estrada,Male,8647,1989-05-22,AB- -Kendra Carroll,Male,8648,1998-03-09,A- -George Taylor,Female,8649,1960-03-06,A- -Ashley Rosario,Female,8650,1938-05-03,B- -Scott Woods,Male,8651,1956-04-26,O- -Jennifer Harris,Male,8652,1945-06-07,AB- -Richard Williams,Male,8653,1961-09-28,O+ -Robert Wong,Female,8654,1974-04-19,A- -Alejandra Hall,Female,8655,1937-12-02,O- -Kelly Fowler,Male,8656,1989-05-03,O+ -Evelyn Phillips,Female,8657,1945-11-30,B+ -Toni Lopez,Female,8658,1931-10-17,AB- -Kevin Carter,Male,8659,1989-11-12,B- -Christopher Mcclure,Male,8660,1976-12-08,B+ -James Robertson,Female,8661,1993-06-05,A+ -Joseph Smith,Female,8662,1934-12-04,B+ -Sharon Brown,Female,8663,1944-02-16,AB+ -Emily Johnson,Male,8664,1961-10-23,B- -Leslie Morris,Male,8665,1953-02-15,O+ -Thomas Webb,Female,8666,1989-04-07,O- -Emily Ramsey,Female,8667,1940-06-20,B+ -Jennifer Reed,Male,8668,1974-01-29,A- -Dawn Lane,Male,8669,1979-12-30,AB- -Kathryn Walters,Female,8670,1991-09-16,B+ -Karen Pruitt,Male,8671,1951-04-28,B- -Melissa Moore,Female,8672,1960-08-27,A- -Eric Jenkins,Male,8673,1987-03-23,A- -Carol Johns,Male,8674,1985-01-30,A+ -John Holland,Male,8675,2000-09-10,AB- -John Mcguire,Male,8676,1991-03-18,B+ -Jennifer Fry,Male,8677,1993-01-13,O+ -Frank Rogers,Female,8678,1989-07-10,AB- -Amanda Young,Female,8679,1947-06-21,B+ -Oscar Wright,Male,8680,1977-08-14,AB- -Robert Lindsey,Female,8681,1986-09-02,O- -Brenda Khan,Female,8682,1956-07-25,AB+ -David Blanchard,Female,8683,2002-08-26,B+ -Amy Anderson,Female,8684,1981-09-22,A- -Nichole Munoz,Male,8685,1987-11-20,O+ -Darius Hodge,Male,8686,1937-05-06,B+ -Nathan Patel,Male,8687,1994-11-16,B+ -Karen Torres,Male,8688,1932-09-16,O- -Amanda Henry,Female,8689,1964-02-28,A- -Debra Sanchez,Male,8690,1953-02-15,AB+ -Garrett Patterson,Female,8691,1942-11-25,O- -Arthur Davis,Female,8692,1947-09-28,AB+ -Mason Hill,Female,8693,1993-12-04,AB+ -Barbara Mora,Male,8694,1966-01-13,AB+ -Michael Brown,Female,8695,1970-01-26,O- -Hannah Alexander,Male,8696,1952-02-10,AB- -Billy Obrien,Male,8697,1987-01-18,B+ -Richard Chang,Female,8698,1997-12-26,AB+ -Sydney Lopez,Male,8699,1932-10-04,AB- -Terrance Ramirez,Male,8700,1992-08-23,B+ -Adam Lyons,Female,8701,2002-02-03,A- -Sean Davis,Male,8702,1951-01-19,B+ -Carly Morgan,Male,8703,1959-06-21,A- -Alexander White,Female,8704,1940-09-13,O+ -Chad Walters,Female,8705,1982-07-14,A+ -Kara Calderon,Female,8706,1962-09-27,AB- -Kevin Howell,Female,8707,1941-12-28,B+ -Gregory Garner,Male,8708,1975-02-16,A- -Joan Kennedy,Female,8709,1997-10-28,A+ -Courtney Martinez,Male,8710,1932-05-27,AB+ -Jo Gillespie,Male,8711,1972-09-02,A+ -Nathan Gentry,Female,8712,1979-12-22,A+ -Alex Hester,Female,8713,1982-02-26,AB+ -Jason Sanders,Male,8714,1978-08-29,AB- -Ann Fisher,Male,8715,1981-06-21,B+ -Abigail Mack,Male,8716,1998-11-05,AB+ -David Clark,Male,8717,1937-03-22,O+ -Christian Mccoy,Female,8718,1949-10-30,B- -Jamie Lowe,Female,8719,1955-05-07,B+ -Jerry Cox,Male,8720,1953-08-01,O- -Joseph Wood,Male,8721,1937-11-23,AB+ -Jessica Holland,Female,8722,1933-04-19,AB+ -Jennifer Miller,Female,8723,1976-05-07,A+ -Shawn Norris,Female,8724,1962-05-24,O+ -Mark Miller,Female,8725,1972-05-04,A- -Melinda Reyes,Female,8726,1978-03-17,A- -Jeffrey Holmes,Female,8727,1983-07-18,A+ -Charles Martinez,Female,8728,1999-05-22,AB- -Jordan Austin,Male,8729,1992-07-08,B+ -Jeffrey Koch,Female,8730,1968-04-25,AB+ -Christopher Quinn,Male,8732,1947-11-08,B+ -Gregory Shaw,Female,8733,1931-10-17,B+ -Mason Terry,Male,8734,1993-07-14,AB+ -Lisa Wood,Female,8735,1981-07-22,A+ -Savannah Johnson,Female,8736,1990-12-28,B+ -Marvin Hays,Male,8737,1953-01-12,AB+ -Casey Day,Male,8738,1940-01-15,AB- -Gary Tapia,Male,8739,1941-09-17,B+ -Cody Pollard,Male,8740,1986-11-29,B- -Samuel Herman,Female,8741,1981-11-22,O- -Michelle Thomas,Female,8742,1945-02-06,O- -Douglas Hernandez,Male,8743,1955-03-16,O- -John Lee,Male,8744,2002-11-26,B- -Robert Lawrence,Male,8745,1971-08-12,AB+ -Brianna Parker,Male,8746,1940-11-29,A+ -Andrea Gonzales,Male,8747,1965-12-18,A- -Breanna Poole,Male,8748,1952-05-12,O+ -Jeffrey Ortiz,Male,8749,1950-05-24,AB+ -Shannon Kaufman,Female,8750,1986-08-29,B- -Bradley Cisneros,Female,8751,1983-02-15,B+ -Brent Taylor,Male,8752,1940-01-30,AB- -Nicole Barker,Female,8753,2001-03-28,B- -Steven Morgan,Female,8754,1986-05-07,B+ -Laura Cohen,Male,8755,1976-06-04,A- -Robert Solomon,Female,8756,1956-01-29,O- -Jason White,Female,8757,1943-01-06,AB+ -Dale Frederick,Female,8758,1949-05-23,A- -Jennifer Marshall,Female,8759,1940-12-16,O- -Stephen Sanchez,Female,8760,1945-05-31,O+ -Ana Stein,Female,8761,1963-08-14,B+ -Isaac Parker,Female,8762,1953-01-17,B+ -Stephanie Gibbs,Male,8763,1986-05-11,AB- -Kent Graves,Male,8764,1935-06-21,O- -Michelle Holmes,Female,8765,1954-07-17,O+ -Destiny Mora,Female,8766,1973-03-20,B+ -Tammy Hernandez,Male,8767,1995-03-07,B- -Sarah Lynch,Female,8768,1942-05-22,O- -Samuel Crosby,Female,8769,1998-06-22,O- -Brian Lopez,Male,8770,1939-05-01,A+ -Christopher Yates,Male,8771,1948-06-06,AB- -Catherine Sanders,Male,8773,1951-05-06,AB- -Linda Baldwin,Female,8774,1961-01-10,A- -Ms. Melissa Bowman,Male,8775,1999-08-28,B- -Summer Nicholson,Male,8776,1982-07-04,A+ -Tammy Hall,Male,8777,1994-12-09,A- -Wesley Green,Female,8778,1937-12-21,O+ -Regina Sharp,Male,8779,1996-08-18,A- -John Henderson,Female,8780,1981-06-21,O+ -Amanda Gray,Male,8781,1975-07-18,B- -Daniel Ross,Male,8782,1971-08-08,B+ -Carolyn Nixon,Female,8783,1943-07-23,AB- -Michelle Martinez,Female,8784,1952-03-04,B+ -Latasha Cross,Female,8785,1989-05-04,O+ -Stephanie Lee,Female,8786,1974-02-16,B- -Joseph Bass,Male,8787,1952-03-08,B+ -Jason Howell,Male,8788,1994-09-23,A- -Daniel Hall,Male,8789,1945-03-28,O+ -Donald Jones,Female,8790,1992-06-25,AB+ -Mr. Christopher Diaz,Male,8791,1999-10-20,O- -Nicole George,Male,8792,1933-03-19,A- -James Garcia,Female,8794,1953-08-12,AB- -Wendy Smith,Female,8795,1969-05-30,B+ -Brandi Bennett,Male,8796,1966-04-18,A- -William Reeves,Female,8797,1932-04-15,AB+ -Christian Alvarado,Female,8798,1981-01-19,B- -Mrs. Carolyn Barnes MD,Female,8799,1999-09-29,B- -William Foster,Female,8800,1962-05-17,A- -Stacy Howard,Female,8801,1942-07-04,AB+ -Rhonda Bryant,Male,8802,1940-06-12,B+ -Natasha Williams,Female,8803,1975-07-14,A- -Nicholas Cunningham,Male,8804,1936-08-26,O- -Joshua Hall,Female,8805,1955-02-21,O- -Bianca Duffy,Female,8806,1954-12-19,A+ -Erin Meadows,Male,8807,1961-11-04,O+ -Keith Sullivan,Male,8808,1989-05-02,A+ -Brian Bridges,Male,8809,1937-02-20,B+ -Jonathan Hall,Male,8810,2000-03-24,O- -Kevin Abbott,Male,8811,1946-03-28,AB+ -Willie Baker,Female,8813,1941-01-05,O+ -Rebecca Young,Female,8814,1962-10-31,B+ -Christina Williams,Male,8815,1987-12-16,AB+ -Janice Vega,Female,8816,1948-02-13,B+ -Robert Eaton,Female,8817,1938-08-18,A+ -Katrina Reynolds,Female,8818,1945-04-12,B- -Lucas Lamb,Female,8819,1949-04-25,AB+ -Eric Johnson,Female,8821,1995-12-16,A+ -Katrina Sanders,Female,8822,1950-11-11,A+ -Ryan Carr,Female,8823,1973-04-28,A+ -Brittany Morales,Male,8824,1966-04-09,B- -Justin Vega,Male,8825,1942-07-10,B- -Jill Mason,Female,8826,1971-12-31,A- -Frederick Williams,Male,8827,1939-07-24,B- -Robert Gonzalez,Female,8828,1931-12-08,O+ -Paul Mendez,Male,8830,1973-01-23,B- -Whitney Williams,Female,8831,1949-02-27,B- -Tanya Navarro PhD,Male,8832,1944-04-30,B- -Daniel Crosby,Female,8833,1999-05-08,B+ -Johnny Combs,Male,8834,1945-10-04,AB+ -Cynthia Patton,Male,8835,1993-11-30,B- -Brenda Jackson,Male,8836,1998-11-23,O+ -Brent Preston,Female,8838,1978-07-06,B+ -Robert Ramirez,Male,8839,1990-02-27,A+ -Jordan Reyes,Female,8840,1979-12-01,AB+ -Joshua Hutchinson,Female,8842,1948-10-04,O- -Shannon Sanchez,Female,8843,1963-03-15,B+ -Juan Pope,Female,8844,1994-08-08,B- -Keith Lopez,Male,8845,1951-07-15,B+ -Kevin Alvarez,Male,8846,1963-03-07,A- -Jacob Carter,Female,8847,1939-01-31,A- -James Moore,Female,8848,1963-06-09,B+ -Tyrone Adkins,Female,8849,1961-01-25,A+ -Patrick Jackson,Female,8850,1958-06-13,A+ -Heather Wiggins,Female,8851,1993-07-04,AB+ -Andrea Macias MD,Male,8852,1970-09-11,A- -Bonnie Bowman,Female,8853,1975-04-23,O- -Tanya Flores,Male,8854,1949-05-01,AB- -Larry Cox,Female,8855,2002-10-04,A- -Stephanie Alvarez,Female,8856,1972-06-13,B+ -Tiffany Johnson,Female,8857,1938-05-16,A- -Dr. Ryan Meyer,Male,8858,2002-12-29,O+ -Charles Baker,Male,8859,1942-02-15,AB- -Charles Hayes,Male,8860,1931-02-07,A+ -Travis Evans,Male,8861,1953-07-24,AB- -Kerry Singleton,Female,8862,1997-05-29,A- -Joshua Lopez,Male,8863,1973-02-25,A+ -Michelle Brown,Female,8864,1992-03-29,AB- -Theresa Perkins,Female,8865,1986-03-29,A+ -Ryan Blair,Male,8866,1932-05-17,A+ -Kristina Taylor,Female,8867,1967-09-23,AB+ -Brandon Williamson,Male,8868,1971-06-30,O- -Valerie Charles,Male,8869,1952-06-24,A+ -Jonathan Hansen,Female,8870,1930-12-31,O+ -Aaron Franklin,Male,8871,1995-04-21,A- -James Martinez,Male,8872,1972-01-27,A- -James Marshall,Female,8873,1947-12-29,O+ -Suzanne Contreras,Male,8874,1976-06-11,B- -Steve Rodriguez,Female,8875,1995-11-14,A+ -Sharon Gordon,Female,8876,1998-10-12,B+ -Miss Bonnie Davis,Female,8877,1968-05-18,A+ -Matthew Marks,Female,8878,1947-09-17,A+ -Ethan Allen,Male,8879,1941-05-13,B+ -Bradley Hansen,Female,8880,1965-10-09,AB- -Anita Donaldson,Male,8881,1983-03-07,A+ -Tiffany Long,Male,8882,1941-04-30,A+ -Bonnie Anderson,Female,8883,1963-07-03,O+ -Kyle Roth,Male,8884,1976-02-05,O- -Theresa Navarro,Female,8885,1963-04-11,O- -Christopher Patrick,Female,8886,1992-10-03,B- -Reginald Watts,Female,8887,1967-11-16,O+ -Madison Smith,Male,8888,1933-10-13,A+ -Logan Davis,Female,8889,1952-04-29,O- -Erin Gomez,Male,8890,1934-01-07,AB+ -Jon Barnett,Female,8891,1966-10-18,AB+ -Lisa Perkins,Male,8892,1982-05-10,AB+ -Destiny Stephens,Female,8893,1995-08-04,A+ -David Williams,Male,8894,2000-08-13,A+ -Herbert Day,Male,8895,1993-05-01,B+ -Christina Young,Male,8896,1977-04-08,B- -Alison Love,Male,8897,1962-11-15,A- -Jon Rhodes,Female,8898,1938-08-16,B- -Jennifer Hall,Male,8899,1997-07-08,B- -Calvin Spence,Female,8900,1951-08-11,AB- -William Buchanan,Male,8901,1986-03-16,AB+ -Daniel Graham,Female,8902,1974-03-07,A+ -Michael Ortega,Female,8903,1933-03-14,AB+ -Steven Gutierrez,Male,8904,1963-10-31,B- -Cindy Perez,Male,8905,1938-07-27,A+ -Michelle Kemp,Female,8906,1971-02-27,O+ -Lindsey Hill,Male,8907,1984-11-02,B+ -Mary Lowery,Male,8908,1936-12-01,O- -Sherri Larson,Male,8909,1960-04-12,O- -Michael Joyce,Female,8910,1939-08-18,B- -Bridget Rodriguez,Female,8911,1984-01-29,A- -Tyler Oneal,Female,8913,1994-12-13,AB+ -Andrew Mcgrath,Male,8914,1958-06-09,O+ -Brandon Quinn,Female,8915,1939-09-26,A+ -Michael Ray,Female,8916,1973-11-03,A- -Robert Porter,Female,8917,1968-10-05,AB+ -Dillon Hunter,Male,8918,1943-12-30,B- -Carrie Hood,Female,8919,1948-06-27,AB+ -Jennifer Adams,Male,8920,1976-01-29,B- -Brenda Pena,Male,8921,1947-06-05,AB- -Paige Davis,Female,8922,1939-12-06,O- -Robin Tucker,Female,8923,1985-11-08,A- -Robert Forbes,Female,8924,1940-08-11,O- -Rebecca Summers,Female,8925,1945-01-19,AB+ -Matthew Vincent,Female,8926,1973-10-01,O+ -Jeremy Smith,Female,8927,1961-07-26,A+ -Scott Robertson,Female,8928,1991-12-09,B- -Amanda Thompson,Male,8929,1975-07-29,A+ -Michelle Torres,Female,8930,2002-05-07,O- -Mark Cummings,Male,8931,1988-07-11,B+ -Jessica Gregory,Male,8932,1966-08-22,O+ -Marissa Alvarez,Female,8933,1941-01-08,O+ -Shawn Ward,Male,8934,1958-08-20,A+ -Robert Palmer,Female,8935,1967-11-27,O- -Christy Cummings,Male,8936,1997-07-15,B+ -Oscar Mason,Male,8937,1986-06-02,A+ -Kimberly Hampton,Female,8938,1941-06-07,AB+ -Allison Jones,Male,8939,1955-02-13,O+ -Debra Mejia,Male,8940,1939-06-06,O+ -John Arnold,Female,8941,1988-07-30,AB+ -Erin Garcia,Male,8942,1959-05-14,O- -Angela Roberts,Female,8943,1931-11-25,O+ -Natalie Rojas,Male,8944,1952-11-08,A- -Scott Reed DDS,Male,8945,1962-04-03,B+ -Neil Martinez,Male,8946,1979-10-27,AB- -Jason Riley,Female,8947,1967-11-24,AB- -Amy Santana,Female,8948,1969-01-10,AB- -Thomas Mckenzie,Male,8949,1968-05-22,B- -Russell Peters,Male,8950,1966-08-08,A- -Robert Freeman,Female,8951,1945-09-03,B- -Sarah Johnson,Male,8952,1933-11-08,O- -John Fleming,Male,8953,1951-12-29,AB+ -Ashley Rojas,Female,8954,2000-08-13,A+ -Blake Davis,Female,8956,1969-11-24,A- -Andrew Duran,Female,8957,1978-09-20,B+ -Catherine Cabrera,Male,8958,1984-06-07,O- -Trevor Brown,Female,8959,1986-10-30,A+ -Lisa Burns,Male,8960,1950-03-31,O- -Michael Dickerson,Female,8961,1976-05-14,B- -Walter Ramirez,Female,8962,1961-09-21,AB- -Rachel Rodriguez MD,Female,8963,2000-07-04,AB+ -Brandon Mcknight,Male,8965,1965-05-23,B- -Stephanie Simpson,Female,8966,1986-09-20,AB+ -Tamara Chandler,Male,8967,1932-09-24,A- -Michelle Webb,Female,8969,1986-01-07,A+ -Briana Byrd,Female,8970,1969-05-26,O- -Dylan Maynard,Female,8971,1946-09-13,O+ -Sharon Lewis,Female,8972,1990-01-25,O+ -Joseph Jacobs,Male,8973,1985-12-14,AB+ -Joyce Williams,Female,8974,1989-05-18,AB- -Ethan Howard,Female,8975,1997-01-31,AB- -Timothy Trevino,Female,8976,1991-07-26,AB+ -Anne Lowe,Female,8977,1966-12-27,B- -Miss Holly Freeman,Male,8978,1945-01-12,O+ -Jonathan Wagner,Male,8979,1998-04-22,B- -Kathleen Johnson,Male,8980,1945-05-18,A+ -Christine Smith,Male,8981,1973-09-10,O+ -Anita Moore,Male,8983,1936-02-27,A+ -Mrs. Kimberly Walker,Female,8984,1977-03-07,O- -Justin Moore,Female,8985,1959-06-06,B- -Richard Abbott,Female,8986,1958-10-15,AB+ -Stephanie Dillon MD,Female,8987,1992-04-03,O+ -Christina Lynch,Female,8989,1953-10-22,B- -Wanda Patterson,Male,8990,1952-02-05,AB+ -Ryan Hobbs,Female,8991,1954-05-09,O- -Kevin Jones,Female,8992,1984-10-13,O+ -Edward Vasquez,Male,8993,1975-09-20,A+ -Benjamin Parrish,Female,8994,1971-05-29,O- -John Young,Female,8995,1936-07-04,AB- -Robert Lopez,Female,8996,2000-02-19,AB+ -Stephanie Chung,Female,8997,1941-12-27,B+ -Nicole Richards,Male,8998,1960-08-13,O+ -Dr. Jacob Hart,Male,8999,1997-12-28,O+ -Alexander Steele,Male,9001,1931-07-29,A- -Andre White,Female,9002,1966-07-01,A- -Patrick Vargas,Male,9003,2001-07-15,O- -John Cole,Male,9004,1990-02-24,O+ -Brandi Young,Male,9005,1989-11-23,AB+ -Justin Stanley,Male,9006,1954-07-03,O- -Kristin Braun,Female,9007,1982-07-21,A+ -Jeffery Kelley,Male,9008,1997-02-16,O- -Tamara Grant,Female,9010,2000-04-23,O- -Sheila Perez,Female,9011,1945-07-11,B+ -Sarah Dorsey,Male,9012,1995-12-25,A+ -Johnny Hodges,Female,9013,1947-12-25,AB- -Hannah Foley,Female,9014,1964-10-25,A- -Lisa Richardson,Male,9015,1984-04-30,AB+ -Megan Diaz,Male,9016,1946-10-01,AB- -Monica Brooks,Female,9017,1985-10-15,AB- -Tonya Pineda,Female,9018,1951-06-17,AB- -Tyler Black,Female,9019,1975-06-01,A- -Angel Davis,Male,9020,1969-10-14,B- -Scott Smith,Female,9021,1982-06-16,A- -Bobby Keller,Male,9022,1980-04-24,AB- -Jesse Weaver,Female,9023,1980-12-31,B- -Elizabeth Allen,Female,9024,1953-04-08,A+ -Melanie Taylor,Female,9025,1979-06-24,A- -Julie Hartman,Male,9027,1941-04-02,AB+ -Chelsea Sanchez,Male,9028,1979-12-14,AB- -Ann Davis,Male,9029,2002-08-28,O+ -Amy Day,Female,9031,1989-01-11,A+ -Annette Chapman,Male,9032,1976-11-01,B- -Amber Myers,Male,9033,1999-06-03,A- -Christina Hayes,Male,9034,1967-01-08,AB+ -Gregory Acosta,Female,9035,1953-11-16,O- -Sydney Hernandez,Male,9036,1943-05-26,AB+ -Aaron Hayes,Male,9037,1975-10-19,AB+ -Michael Kelly,Male,9038,1989-08-21,AB- -Dr. Jordan Gutierrez II,Male,9039,1952-12-31,AB- -Nathaniel Crawford,Male,9040,1987-10-29,A- -Bryan Willis,Male,9041,1984-03-08,A- -Mr. David Gibbs Jr.,Female,9042,2000-11-16,B+ -Kelli Good,Female,9043,1969-12-28,B- -Danielle Cantrell,Female,9044,1957-10-05,B+ -Daniel Rose,Female,9045,1977-05-17,A- -Sally Hudson,Female,9046,1990-10-16,B- -Cathy Long,Female,9047,1935-08-07,AB- -Martha Galvan,Male,9048,1976-01-02,AB- -Derek Martin,Male,9049,1979-08-25,O+ -Miss Morgan Collier PhD,Male,9050,1995-01-22,O+ -Mrs. Michelle Hill,Male,9051,1977-11-13,A+ -Tina Hess,Male,9052,1939-04-16,AB- -Anthony Beasley,Female,9053,1982-06-13,O- -Timothy Sullivan,Female,9054,1959-03-22,O+ -Keith Michael,Female,9055,1969-07-19,B- -Paula Wright,Male,9056,1948-07-29,AB+ -Dr. Kimberly Jones,Male,9057,1979-02-02,A- -Dylan Hart,Female,9058,1932-12-06,A- -Tammy Sanchez,Female,9059,1992-09-18,A+ -David Cobb,Male,9060,1935-01-25,O+ -Stephanie Watson,Female,9061,1988-09-10,AB+ -Chelsea Miller,Female,9062,1963-12-04,AB+ -Michael Sullivan,Male,9063,1938-01-18,O+ -Justin Quinn,Male,9064,1957-08-22,O- -William Diaz,Female,9065,1974-08-19,O- -Daniel Lee,Male,9066,1949-09-12,A+ -Ronald Johnson,Female,9067,1946-01-08,B+ -James Garza,Female,9069,1993-02-16,O- -Shawna Dunn,Male,9070,1974-11-04,A+ -Sarah Fitzpatrick,Female,9071,1931-11-10,B+ -James Perkins,Male,9072,1932-09-15,B+ -Linda Fox,Male,9073,2001-09-08,B- -Loretta Day,Male,9074,1934-02-11,B+ -Calvin Martin,Male,9075,1979-10-04,O+ -Angel Mitchell,Female,9076,1989-04-26,B+ -Timothy Torres,Male,9077,1974-05-08,AB+ -Ryan Mata,Female,9078,1988-08-15,A+ -Amanda Vincent,Female,9079,1978-10-05,A- -Brandon Norman,Female,9080,1973-06-11,O- -Blake Martin,Male,9081,1969-01-22,A- -Miss Amanda Walker,Female,9082,1948-03-21,A+ -Justin Ramirez,Male,9083,1936-09-06,AB- -Devin Vazquez,Female,9084,1958-01-08,A+ -Peter Matthews,Male,9085,1993-08-18,O- -Lori White,Male,9086,1950-03-04,AB- -Samantha Bishop DVM,Male,9087,2000-10-14,AB- -Thomas Martinez,Female,9088,1966-12-08,B+ -Joshua Harris,Female,9090,1937-02-07,O- -Denise White,Male,9091,1987-09-12,AB- -Chloe Wilson,Female,9092,1981-07-12,O+ -Rachael Williams,Female,9093,1945-02-08,AB+ -Daniel Knox,Female,9094,1955-03-30,A- -Angela Paul,Female,9095,1947-04-12,O+ -Jordan Mclaughlin,Female,9096,1939-09-10,O+ -Nicole Sandoval,Female,9097,1970-05-15,O- -Laura Lewis,Male,9098,1984-05-24,B+ -Jordan Porter,Male,9099,1995-01-15,O- -Susan Clarke,Female,9100,1980-12-29,A- -Meredith Simpson,Male,9101,1947-06-19,AB+ -Kenneth Long,Male,9102,1982-06-06,A+ -Tony Ramos,Female,9103,1955-08-23,O+ -Renee Moore,Male,9104,1961-04-10,AB- -Michael Conway,Male,9105,1943-06-13,AB+ -Scott Terry,Female,9106,1931-02-08,O+ -Phyllis Barker,Male,9107,1966-02-01,A+ -Dr. Kelly Krueger DVM,Male,9108,1984-02-13,B+ -Thomas Robinson,Female,9109,1941-05-26,AB- -Edwin Harris,Female,9110,1995-10-01,O+ -Amy Foster,Female,9111,1975-02-05,B- -Joshua Petersen,Male,9113,1969-04-02,A- -Nancy Lozano,Male,9114,2000-06-16,AB+ -Beth Fields,Male,9115,1990-10-13,A- -Mr. Christopher Hill MD,Male,9116,1944-12-23,O- -Heather Patterson,Male,9117,1970-12-10,O+ -Melissa Johnson,Male,9118,1947-03-09,AB- -Samantha Bell,Female,9119,1945-09-18,AB- -Elizabeth Peterson,Male,9120,1986-07-23,AB+ -Alexis Wheeler,Female,9121,2001-01-25,AB+ -Meghan Robinson,Male,9122,1947-11-11,A- -Lori Williams,Female,9123,1988-07-22,AB- -Mary Howard,Female,9124,1996-11-12,AB- -Sierra Williams,Female,9125,1971-01-19,AB- -Travis Carter,Female,9126,1965-03-31,O+ -Brandon Smith,Female,9127,1992-12-11,AB- -Thomas Mccarthy,Female,9128,1966-09-28,O- -Andrew Williams,Female,9129,1969-08-01,AB- -Chad Ruiz,Male,9130,1935-08-27,O- -Brenda Dyer,Female,9131,1944-07-21,O+ -Kristen Miranda,Male,9132,1958-12-06,AB+ -Kelly Madden,Female,9133,1930-11-14,B+ -Carlos Potts,Female,9134,1978-12-21,O- -Sydney Williams,Female,9135,1946-10-14,O+ -Amber Willis,Female,9136,1950-04-25,B+ -Derek Arnold,Male,9137,1935-08-05,B+ -Wesley Parker,Female,9138,1942-08-04,AB- -Carmen Atkins MD,Female,9139,1957-12-19,O+ -Mark Alvarez,Male,9140,1930-04-29,B+ -Sierra Rosario,Male,9141,1931-12-11,AB- -Richard Martin,Male,9142,1973-06-01,A- -Maria Hale,Male,9143,1984-08-06,O+ -Sara Hall,Male,9144,1964-07-02,B+ -Natasha Brown,Male,9145,1938-11-25,AB+ -Charles Scott,Male,9146,1952-01-27,O- -Trevor Blankenship,Male,9147,1953-07-28,A- -Veronica Solis,Male,9148,1937-02-16,AB+ -Thomas Pope,Male,9149,1962-12-25,B- -Felicia Reynolds,Male,9150,1977-11-15,AB- -Rebecca Adams,Female,9151,1986-12-18,B+ -Ronald Moss,Female,9152,1951-07-07,O- -Danielle Barnes,Female,9153,1961-10-25,AB+ -Michaela Jimenez,Male,9154,1952-05-22,O- -Jill Brandt,Male,9155,1991-07-06,B- -Brandon Wheeler,Male,9156,1993-02-01,A+ -David Cruz,Male,9157,1981-01-18,AB- -Tammy Yoder,Male,9158,1996-10-26,AB- -Luke Young,Male,9159,1962-05-19,O+ -William Harris,Male,9160,1968-01-12,B+ -Brooke Anderson,Male,9161,1976-04-01,AB- -Karen Hansen,Male,9162,1981-05-16,AB- -Dean Wilkins,Male,9164,1999-03-03,AB+ -Michelle Estrada DDS,Male,9165,1987-11-14,A- -Kevin Meyers,Male,9166,1967-11-13,AB- -Richard May,Female,9167,1955-12-20,AB- -Stacy Thomas,Male,9168,1945-01-17,B+ -Michael Roberts,Female,9169,1960-11-06,B- -Julie Jackson,Female,9170,1983-08-24,A- -Anna Graves,Female,9171,1950-04-04,B- -James Allen,Male,9172,1948-06-18,B+ -Kiara Roberts,Female,9173,1990-04-28,O- -James Johnson,Female,9174,1944-02-28,O- -Joseph Price,Male,9175,1973-10-27,AB- -Laurie Young,Male,9176,1996-06-17,AB- -Bruce Macias,Female,9177,1975-09-30,O+ -Shane Sanchez,Female,9178,2002-09-29,O- -Derek Taylor,Female,9179,1965-08-09,AB+ -Melanie Buckley,Male,9180,1960-01-06,AB- -Holly Haynes,Male,9181,1959-07-03,AB+ -Ronald Hernandez,Male,9182,1939-09-28,AB- -John Mcclure,Female,9183,1939-10-28,B+ -Theresa Pope,Male,9184,1975-04-10,AB+ -Darrell Burgess,Female,9185,1932-08-12,A+ -Gina Peters,Female,9186,1967-10-08,AB+ -Gregory Ray,Female,9187,1986-10-12,A- -Jose Harrison,Female,9188,1994-06-18,O- -Mark Miller,Male,9189,2000-07-19,AB- -Susan Morris,Male,9190,1931-11-19,O- -Nathan Mitchell,Female,9191,1953-04-11,A- -Dr. Gerald Summers,Female,9192,1971-06-13,A- -Mariah Cameron,Female,9194,1956-07-17,AB+ -Jason Franklin,Male,9195,1938-07-25,B- -Karen Richardson,Female,9196,1993-05-17,B- -Rebekah Kennedy,Male,9197,1964-12-08,A- -Allen Young,Female,9198,1961-08-25,B- -Ashley Kline,Male,9199,1970-07-06,AB- -Meagan Mitchell,Male,9200,1939-04-19,O+ -Nancy Jones,Male,9201,1999-07-07,A+ -Richard Escobar DDS,Female,9203,1932-04-25,AB+ -Samantha Hampton,Male,9204,1933-03-10,O+ -Candice Taylor,Male,9205,1965-06-20,B- -Russell Taylor,Male,9206,1946-03-02,AB+ -Rodney Barnes,Male,9207,1967-08-06,O+ -Amanda Grant,Male,9208,2002-02-15,O- -Sarah Hayes,Female,9209,1989-07-14,B- -Elijah Evans,Male,9210,1930-12-21,B+ -Heather Roberts,Female,9211,1979-12-26,O+ -Kathryn Brown,Female,9213,1980-05-26,B+ -Jordan Long,Male,9215,1937-09-18,AB- -Manuel Ford,Female,9216,1940-06-29,O- -Gregory Villanueva,Male,9217,1964-02-19,B- -Jesse Adams,Female,9218,1952-08-10,A+ -Barbara Woods,Female,9219,1965-11-20,A- -Heather Powers,Male,9220,1964-02-10,B- -Kimberly Reed,Male,9221,1959-05-02,B+ -Andrew Hernandez,Male,9222,1937-01-25,AB- -Anthony Fernandez,Male,9223,1956-03-27,A+ -Cameron Gonzalez,Female,9224,2000-05-19,A+ -Bradley Stewart,Female,9225,1981-08-31,A+ -John James,Male,9226,1999-07-28,AB+ -Justin Johnson,Female,9227,1953-01-18,AB+ -Paige Jackson,Male,9228,1981-07-19,B+ -Shelby Kim,Female,9229,1999-04-12,A- -Arthur Ross,Female,9230,1969-06-24,A+ -Angelica Dudley,Female,9232,1962-05-07,A- -Nathan Lee,Male,9233,1932-11-02,O- -Margaret Lara,Male,9234,1957-06-12,A+ -Carlos Phillips,Male,9235,1959-12-07,O+ -Brian Moore,Female,9236,1998-08-20,A+ -Justin Alexander,Male,9237,1950-05-11,B+ -Tracy Walton,Female,9238,1934-03-29,AB+ -Courtney Morris,Female,9239,2000-06-01,AB+ -Marcus Smith,Male,9240,1943-11-14,O+ -Beth Fuentes,Female,9241,1992-08-23,O+ -Tim Chandler,Male,9242,1991-10-15,B- -Zachary Cantrell,Male,9243,1985-09-10,O- -David Elliott,Female,9244,1939-05-01,O- -Dr. John Fischer,Female,9245,1931-10-02,B+ -Melissa Atkins,Female,9246,1930-06-22,B+ -Sandra Compton,Male,9247,1945-07-07,B+ -Justin Kemp,Female,9248,1941-12-03,B+ -Cesar Obrien,Female,9249,1985-09-12,B+ -Sarah Hernandez MD,Male,9250,1998-09-13,B+ -Christina Miller,Female,9251,1998-09-19,O- -Daniel Kennedy,Male,9252,1957-09-05,AB- -Tara Knight,Male,9253,1937-11-26,AB+ -William Park,Male,9254,1935-12-05,O- -Jonathan Rich,Female,9256,2002-07-27,B+ -Brian Hernandez,Female,9257,1940-10-20,B- -Brandi Goodman,Female,9258,1989-03-11,B- -Mr. Michael Hernandez,Female,9259,1958-06-24,O- -Kevin Hall,Female,9260,1951-03-18,O+ -Ryan Wright,Female,9261,1962-10-15,B- -Joshua Villa,Male,9262,1981-12-13,A- -David Carlson,Female,9263,1951-03-26,O+ -Danny Parrish,Female,9264,1972-09-13,A- -Jeanne Davis,Female,9266,1988-05-14,AB+ -John Potter,Male,9267,1986-01-07,AB- -Nicole Smith,Male,9268,1944-03-13,B- -Carl Stone,Male,9269,1932-12-29,O+ -Ashley Moore,Female,9270,1940-08-16,B+ -Troy Alexander,Female,9271,1959-04-05,A- -Michael Ruiz,Female,9272,1992-10-25,O- -Jacqueline Cook,Female,9273,1959-06-29,A- -James Williams,Male,9274,1959-03-30,A- -Steven Wilson,Male,9275,1937-08-17,AB+ -Ian Brooks,Male,9276,1991-06-19,A+ -Christopher Wade,Male,9277,1970-07-09,A+ -Mrs. Sandra Wood,Male,9278,1974-07-29,O- -Justin Mitchell,Female,9279,1947-11-27,AB+ -Kathryn Hughes,Female,9280,1979-03-03,AB+ -April Smith,Male,9281,1973-11-07,B+ -Ashley Huff,Female,9282,1990-05-26,AB+ -John Mcconnell,Male,9283,1970-05-01,AB+ -Christian Adams,Male,9284,1958-12-05,A+ -James Huffman,Male,9285,1952-01-26,O+ -Daniel Johnson,Male,9286,1940-12-04,AB+ -Crystal Moody,Male,9287,1989-02-14,O+ -William Moore,Male,9288,1988-02-15,A- -Kim Lewis,Male,9289,2000-04-12,A- -Kelly Sanchez,Female,9290,1978-02-11,AB+ -Robert Acosta,Male,9291,1982-03-22,B- -Tabitha Sanders,Female,9292,1941-03-19,AB- -Timothy Garcia,Male,9293,1969-11-01,B- -Jason Bailey,Male,9294,1979-12-29,A- -Edward Forbes,Female,9295,1996-02-16,AB- -Keith Nguyen,Male,9296,1984-03-08,B- -Samantha Gonzalez,Female,9297,1957-04-28,AB+ -Jesus Davis,Male,9298,1985-08-16,O+ -Steven Wolfe,Female,9299,2001-09-08,AB- -William Fry,Female,9300,1997-06-02,A+ -Eric Watson,Male,9301,1944-10-22,O- -Jeffery Williams,Male,9302,1985-06-06,AB- -Ashley Adams,Female,9303,1968-02-28,AB- -Sarah Weeks,Female,9305,1995-02-19,A+ -Terry Keller,Female,9306,1937-10-04,AB+ -Todd Ross,Male,9307,1944-06-21,B- -Kristy Valencia,Female,9308,1956-04-03,B- -Albert Marquez,Male,9309,1970-04-09,A- -Lindsay Robertson,Female,9310,1968-08-25,O+ -Laura Le,Male,9311,1950-12-07,AB+ -Caroline Lopez,Female,9312,1962-11-27,A+ -Deborah Casey,Male,9313,1999-07-25,AB+ -Scott Graves,Female,9314,1959-10-25,AB+ -Cory Benson,Female,9315,1943-01-30,B- -David Hart,Male,9316,1973-10-16,A+ -Tammy Arias,Female,9317,1937-06-28,B+ -Madison Aguilar,Female,9318,1967-04-08,O- -Jacqueline Gonzalez,Female,9320,1997-07-05,AB- -Brandon Moore,Male,9321,1997-07-10,B- -Jeffrey Hodges,Male,9323,1947-06-09,A+ -Thomas Jensen,Male,9324,2002-12-08,O+ -Julie Lee,Female,9325,1977-02-08,AB- -Charles Lewis,Male,9326,1995-06-18,AB- -Erin Mcgee,Female,9327,1930-06-12,B+ -Scott James,Female,9329,1951-04-18,B+ -Alejandro Pratt,Female,9330,1970-08-28,B- -Emily Jacobson,Male,9331,1980-02-24,A- -Katie Saunders,Female,9332,1939-09-06,O+ -Tyler Aguilar,Female,9333,1991-03-02,B- -Cynthia Warren,Male,9334,1984-04-17,AB+ -Gloria Kelly,Female,9335,1966-09-12,A- -Matthew Guzman,Female,9336,1969-09-29,A+ -Edward Miller,Female,9337,1982-07-01,B+ -Jose Finley,Female,9338,1982-04-09,O+ -William Vincent,Male,9339,1951-10-17,AB- -Larry Hall,Male,9340,1940-10-08,B- -Cynthia Bradley,Male,9341,1939-04-09,B+ -Mr. Aaron Boone,Male,9342,1993-01-10,AB- -Clayton Garcia,Female,9343,1932-07-11,O+ -Francisco Stephens,Male,9344,1997-01-02,B+ -Juan Hill,Female,9345,1958-05-21,B+ -James Barrett,Female,9346,1967-08-12,AB- -Michael Sparks,Female,9347,2001-08-14,B- -Anthony Mack,Female,9348,1931-07-19,A- -Destiny Cook,Male,9349,1983-10-12,B- -Russell Anthony,Male,9350,1959-07-17,O- -Kara Hatfield,Female,9351,1936-11-05,B+ -Juan Murphy,Male,9352,1987-05-12,AB- -Elizabeth Mercer,Male,9353,1999-12-28,O- -Sherry Nguyen,Female,9354,1948-11-03,A- -Phillip Smith,Female,9355,1939-12-16,O- -Kristina Brown,Female,9356,1991-05-15,AB- -Derek Munoz,Female,9357,1930-08-12,O+ -Jane Wilson,Female,9358,1947-03-30,AB+ -Diana Evans,Female,9359,1970-10-13,A- -Anthony Thompson,Female,9360,1930-12-17,B- -Lisa Williams,Female,9361,1994-11-19,A+ -Leslie Washington,Female,9362,1980-02-20,A- -Jamie Jones,Female,9363,1996-01-22,O- -Mary Bailey,Male,9364,1998-03-29,O+ -Jared Santos,Female,9365,1942-12-16,AB- -Matthew Reid,Female,9366,1932-10-14,O+ -Ronald Mills,Female,9367,1980-12-14,O+ -Colton Leblanc DDS,Male,9369,1994-08-03,AB- -Charles Stout,Male,9371,1971-09-12,A+ -Matthew Hansen,Female,9372,1949-08-19,AB- -Chad Baker,Male,9373,1966-06-04,A+ -Daniel Williams,Male,9374,1946-12-30,AB- -Hannah Sawyer,Female,9375,1963-09-21,O- -Brian Pollard,Female,9376,1936-08-16,A+ -Megan Davis,Female,9377,1947-02-01,O- -Dawn Harrison,Female,9378,1935-03-09,A- -Joshua Ramos,Male,9380,1967-08-28,A+ -Susan Martinez,Male,9381,1944-07-28,A+ -Abigail Wilson,Male,9382,1960-10-02,AB- -Brian Thomas,Male,9383,2002-12-13,A+ -Teresa Buchanan,Male,9384,1995-12-28,O- -Jason Davidson,Female,9385,1993-09-09,B+ -Natalie Davis,Female,9386,1977-12-09,A- -Erik Taylor,Female,9387,1938-07-15,B+ -Janice Torres MD,Male,9388,1941-05-24,AB- -Shane Singleton,Male,9389,1972-07-02,B- -Laura West,Female,9390,1941-01-25,A- -Sabrina Berry,Female,9391,1942-02-20,B+ -Kaitlyn Jimenez,Female,9392,1968-05-17,A- -Alan Warren,Male,9393,1998-07-05,B+ -Robert Faulkner,Female,9394,1937-04-12,O- -Bruce Perez,Female,9395,1959-11-15,B+ -Robert Edwards,Male,9396,1984-05-24,A- -Amber Adams,Female,9397,1938-01-23,B- -Sean Cobb,Male,9398,1949-09-28,O+ -Jesse Huerta,Male,9399,1995-10-24,AB- -Janice Blair,Female,9400,1954-01-22,O+ -Theresa Gross,Male,9401,1935-06-10,AB- -Frank Dickson,Female,9402,1959-12-17,A- -Dustin Mullins,Female,9403,1977-10-19,AB- -Victor Paul,Male,9404,1963-04-19,B+ -Danny Nichols,Male,9405,1986-08-24,O- -Anna Golden,Male,9406,1938-03-27,B- -Deanna Gonzales,Male,9407,1932-08-27,AB- -Steven Ward,Female,9408,1954-01-07,B- -Austin Johnson,Male,9409,1937-09-25,AB- -Jennifer Gibson,Male,9411,1933-04-26,B- -Nicholas Miller,Male,9412,1930-08-18,O+ -Joseph Morales,Female,9414,1986-08-03,O- -Erin Norris,Male,9415,1973-03-10,AB- -Jared Mitchell,Female,9416,1969-04-11,AB+ -James Jones,Female,9417,1938-09-21,B- -Jacob Welch,Female,9418,1971-02-06,B- -Elizabeth Morgan,Female,9419,1976-03-25,B+ -Carrie Lowe,Male,9420,1930-02-18,AB+ -Mary Stuart,Male,9422,1984-08-15,O- -Christopher Ho,Female,9423,1971-07-18,B- -Matthew Jacobs,Female,9424,1983-03-23,O- -Jose Alvarez,Male,9425,1999-03-04,B- -Melinda Miller,Male,9426,1975-12-01,A- -Steven Hebert,Male,9427,1932-08-27,A+ -Samantha Woodard,Female,9429,2000-01-15,A- -Anna Nelson,Male,9430,1969-11-05,B- -Heidi White,Female,9431,1945-12-08,A+ -Charles Fleming,Male,9432,1969-02-17,AB- -Margaret Potter,Male,9433,1938-05-11,O- -Mason Collins,Female,9435,1961-10-14,B- -Kristine Crane,Male,9436,1995-02-10,B+ -Ryan Salazar,Male,9437,1936-04-21,O+ -Mrs. Ashley Pearson DDS,Female,9438,1936-04-02,B+ -Noah Jordan,Male,9439,1972-02-15,O+ -Mark Gardner,Male,9440,1956-10-30,AB+ -Amanda Daniels,Male,9441,1972-10-07,O+ -David Lewis,Male,9442,1986-10-24,A+ -Andrea Hardin,Male,9443,1930-05-03,O+ -Tammy Ware,Female,9444,1993-06-22,O+ -Jose Mendoza,Male,9445,1955-12-08,O+ -Douglas Moore,Male,9446,1940-03-16,B- -Cody Chang,Female,9447,1967-08-07,AB+ -Richard Soto,Female,9448,1997-12-29,O- -Sean Clayton,Female,9449,1999-11-18,AB+ -Mark Robinson,Male,9450,1943-07-30,B+ -Joanne Alvarez,Male,9451,1931-06-09,A+ -Robert Mack,Male,9452,1954-11-10,B- -Don Zamora,Male,9453,1952-12-30,AB- -Robert Bean,Female,9454,1975-04-07,B- -Mr. Jeremy Clark,Male,9455,1996-10-06,A- -Jennifer Gomez,Female,9456,1976-01-21,O+ -Sean Ross,Female,9457,1958-06-17,B+ -Andrew Fisher,Female,9458,1940-04-07,O+ -Samuel Higgins,Female,9459,1961-01-31,A+ -Gina Clark,Male,9460,1968-05-10,AB- -Kelly Burch,Female,9461,1997-04-09,B+ -Tina Townsend,Female,9462,1987-01-19,A- -Brenda Miller,Female,9463,1961-04-25,B- -Jason Jackson,Female,9464,1944-08-11,AB- -Wendy Turner,Male,9465,1942-06-18,O- -Bryan Randolph,Female,9466,1937-09-24,AB+ -Stephanie Golden,Female,9467,1990-07-17,B- -Kathryn Lin,Female,9468,1965-05-13,AB- -David Green,Male,9469,1971-07-12,O- -Cynthia Carr,Female,9470,1953-10-04,O- -Melody Cook,Male,9471,1970-09-16,A- -George Tate,Female,9472,1952-12-22,A- -Catherine Fowler,Male,9473,1964-08-28,AB+ -Larry Massey,Female,9474,1980-04-14,O- -Jamie Rodriguez,Male,9475,1994-01-05,B+ -Kayla Moore,Male,9476,1956-06-16,A+ -Mrs. Sophia Wilson,Male,9477,1936-04-30,O- -Dr. Robert Rogers,Male,9479,1949-10-13,AB- -Diane Richardson,Male,9481,1961-08-31,A- -Melissa Day,Male,9483,1958-02-13,A+ -Eric Hill,Male,9484,2001-06-14,B+ -Amanda Mendoza,Male,9485,1967-02-16,A- -Richard Simpson,Male,9486,1976-07-06,B+ -Jason Perkins,Female,9487,1997-03-29,A- -Scott Romero,Male,9488,1973-09-17,A- -Ryan Mckay,Male,9489,1945-11-03,O- -Dennis Horton,Female,9490,2001-03-02,O+ -Tara Miller,Female,9491,1987-06-12,O- -Dr. Diane Barron,Male,9492,1996-02-07,A- -Linda Cabrera,Female,9493,1963-01-15,A+ -Alicia Rios,Male,9494,1995-06-25,O- -Jared Green,Male,9495,1953-12-06,A- -Amy Hall,Male,9496,1967-05-20,A- -Glen Rowe,Male,9497,1977-02-25,O- -Joseph Hernandez,Male,9498,1940-06-12,O- -Tammy Adams,Female,9499,1977-03-06,A+ -Sandra Chavez,Male,9500,1942-11-23,B+ -John Jones,Female,9501,1942-05-05,O- -Mr. Matthew Moore,Female,9502,1948-01-02,AB+ -Charles Bowen,Male,9503,1943-01-26,AB- -Jorge Hale,Male,9504,1964-01-29,AB+ -Amy Pierce,Male,9505,1987-02-03,A+ -Corey Reyes,Male,9506,1958-08-26,O+ -Steven Walters,Male,9508,1973-06-08,AB+ -Matthew Williamson,Male,9509,1989-01-27,B+ -Justin Allen,Female,9510,1939-02-03,A- -Darrell Johnson,Male,9511,1959-06-08,AB- -Alexandra Jones,Male,9512,1942-11-12,B- -Brandon Gaines,Female,9513,1986-08-30,AB- -Rhonda Allen,Female,9514,2002-10-02,AB+ -Janice Wilson,Male,9515,1984-11-30,B- -Thomas Holmes,Male,9516,1979-02-21,A+ -Lauren Wilson,Female,9517,1979-11-24,B+ -Heather Glenn,Male,9518,1946-08-03,AB- -Brian Hughes,Male,9519,1994-05-20,O+ -Kara Mcbride,Male,9520,1931-12-28,B- -Zoe Moore,Male,9521,2000-09-10,B- -Emily Fields,Female,9522,1948-05-03,AB- -Steven Castillo,Female,9523,1962-08-11,AB+ -Andrew Bradford,Male,9524,1955-05-07,B- -Charles Smith,Male,9525,1965-06-29,A+ -Tyler Ramirez,Female,9526,1975-08-19,AB- -Eric Mills,Female,9527,1932-12-17,A+ -Jennifer Diaz,Female,9528,1985-06-30,AB- -Jennifer Merritt,Female,9529,1982-09-30,A+ -Ashley Reyes,Female,9530,1959-07-04,AB+ -Bradley Johnson,Female,9531,1968-11-13,AB- -Kenneth Guerrero,Female,9532,1982-12-28,B+ -Cheryl Watts,Male,9533,1955-08-02,A- -Paul Tapia,Male,9534,1973-09-10,O+ -Justin Wells,Female,9535,1993-12-25,AB+ -Charles Hernandez,Male,9536,1962-01-02,A+ -Mr. Thomas Sanchez,Female,9537,1977-06-14,B+ -Jeffrey Cox,Male,9538,1943-01-13,AB- -Dr. Victoria Brown,Male,9540,2001-12-27,AB+ -Brandon Thompson,Female,9542,1966-10-15,A+ -Joshua Pratt,Female,9543,1930-03-08,O- -William Everett,Male,9544,1999-01-11,O- -Ashley Nichols,Male,9545,1998-02-22,B- -Robert King,Female,9546,1931-07-19,O+ -Shawn Mitchell,Female,9547,2001-09-02,O- -Matthew Brooks,Male,9548,1999-07-19,A- -Emily Mullins,Male,9549,1966-09-02,A+ -Mitchell Hooper,Male,9550,1940-01-19,AB+ -David Terry,Male,9551,2000-02-04,AB- -Allison Stanley,Female,9552,1936-03-01,AB+ -Justin Price,Female,9553,1965-06-15,B- -Candace Ward,Female,9554,1932-03-15,B+ -Chelsea Gray,Female,9555,1987-07-16,AB+ -Taylor Schmitt,Male,9556,1956-03-28,O- -Bobby Powers,Male,9557,1978-03-29,AB+ -Cynthia Johnson,Female,9558,1993-04-04,O- -Peter Reed,Female,9559,1963-06-21,O- -Carol Howard MD,Male,9560,1993-10-07,O+ -Katherine Cherry,Male,9561,1946-06-22,B- -Amanda Leon,Male,9562,1965-09-10,A- -Richard Green,Female,9564,1984-07-29,A- -Michael Peters,Male,9565,1963-12-06,A+ -Louis Ross,Male,9566,1951-09-26,A- -Kyle Brown,Male,9568,1941-05-04,O- -Nicholas Hoffman,Male,9569,1993-12-06,AB- -Debra Turner,Male,9570,1956-02-20,B- -Micheal Newman,Female,9573,1944-08-10,A+ -Amy Quinn,Female,9574,1943-11-26,A- -Kristy Clark,Female,9575,1966-04-09,A- -Robin Roth,Female,9576,1945-05-13,AB- -Daniel Hartman,Female,9577,2002-04-25,AB+ -David Andrews DVM,Male,9578,1952-02-24,B- -Alexandra Lopez,Female,9579,1937-12-02,AB- -Jesse Guerrero,Female,9580,1945-04-09,A- -Tiffany Murray,Male,9581,1984-10-06,B- -Justin Phillips,Female,9582,1979-02-16,B- -John Zimmerman,Male,9583,1948-04-19,A- -Tanner Johnson,Male,9584,1934-02-16,AB+ -Mark Nolan,Female,9585,1974-09-22,AB+ -Marie Wilson,Female,9586,1935-08-26,A- -Dawn Benson,Female,9587,1984-10-30,B- -Michael Watkins,Female,9588,1935-06-24,AB- -Heidi Hawkins,Female,9589,1972-08-14,O+ -Matthew Pacheco,Female,9591,1933-07-18,O- -Tiffany Hernandez,Male,9592,1971-05-02,AB+ -Denise Clark,Female,9593,1941-02-17,A- -Daniel Mason,Female,9595,1968-07-30,B+ -James Richard,Female,9596,1996-10-19,O+ -Chelsea Huff,Male,9597,2002-02-01,AB+ -Jeffery Norman,Male,9598,1979-04-01,B+ -Nicholas Bowman,Female,9599,1978-06-24,B- -Joshua Horton,Female,9600,1991-03-02,A- -Madison Gentry,Female,9601,1981-07-17,O+ -Joel Lawson,Female,9602,1977-11-12,A- -Gabriel Pierce MD,Female,9603,1988-09-30,AB- -Nancy Scott,Male,9604,2001-05-29,AB- -Arthur Lara,Male,9605,1955-07-07,A+ -Carol Duncan,Male,9608,1953-03-29,O- -Charles Harvey,Male,9609,1960-10-11,O- -Gabriella Ware,Female,9610,1958-07-10,AB+ -Patrick Camacho,Male,9612,1972-08-22,O- -Allen Nelson,Female,9613,1971-11-24,A- -Russell Davis,Female,9614,1970-02-10,A- -Jack Hancock,Female,9615,1966-07-21,A+ -Hunter Sandoval,Male,9616,1985-03-24,B+ -Larry Luna,Male,9617,1935-09-28,AB- -Bruce Morales,Male,9618,1962-04-24,B+ -Mark Clark,Female,9619,1980-11-26,B+ -Joseph Garner,Male,9620,1991-04-03,O+ -Mary Pacheco,Female,9621,1975-05-04,O+ -Douglas Perez,Male,9622,1949-08-18,AB- -Dennis Brown,Female,9624,1966-05-20,B- -Rodney Perez,Female,9625,1991-04-29,AB- -Eric Robertson Jr.,Female,9626,1959-04-13,O+ -Jennifer James,Male,9627,1963-05-19,B+ -Erik Lucas,Female,9628,1979-06-04,AB+ -Benjamin Miller,Male,9629,1959-05-26,A+ -Patrick Cook,Male,9630,1999-02-19,B+ -Jill Eaton,Male,9633,1979-11-07,AB- -Erik Miranda,Male,9634,1944-02-04,B- -Michelle Erickson,Male,9635,1978-07-28,B+ -Amy May,Male,9636,1983-04-09,AB+ -Jennifer Delacruz,Male,9637,1983-10-13,AB- -Edgar Mitchell,Female,9638,1946-12-22,AB+ -Cody Moran,Female,9639,1931-07-01,B+ -Amy Weaver,Female,9641,1944-04-28,AB- -Amanda Pratt,Male,9642,1951-10-23,AB+ -Ms. Jessica Carney PhD,Female,9643,1980-07-24,A- -Jasmine Forbes,Female,9644,1935-08-03,O- -Anthony Ward,Female,9645,1987-04-10,AB+ -David Moore,Male,9647,1934-10-19,A- -James Irwin,Female,9648,2001-09-16,B+ -Catherine Kline,Female,9649,1935-01-24,O- -Michael Knight,Female,9650,1937-03-27,O+ -Jeffrey Maxwell,Male,9651,1934-05-20,O- -Martin Miller,Female,9652,1968-03-13,AB+ -Nathan Gray,Female,9653,1986-11-29,A+ -Jennifer Morales,Male,9654,1962-04-20,A+ -Mark Patterson,Male,9655,1985-04-05,O+ -Maria Johnson,Male,9656,1976-07-20,AB+ -Shane Colon,Female,9657,1933-02-06,O- -Patricia Murray,Male,9658,1945-01-13,A+ -Alison Cline,Female,9659,1945-11-13,AB- -Vickie Rubio,Female,9660,1958-11-01,B- -George Smith,Female,9661,1959-12-06,AB+ -Lisa Henderson,Female,9662,1950-11-25,A- -Denise Zavala,Female,9663,1978-12-06,A- -Joshua Moran,Female,9664,1996-05-06,AB- -Jack Anderson,Female,9665,1943-09-19,AB- -Michael Shelton,Male,9666,2001-07-20,AB+ -Yesenia Marks,Female,9667,1935-10-15,B- -Deborah Valentine,Male,9668,1932-11-10,A+ -Jennifer Hartman,Female,9669,1968-02-14,B- -Lisa Frey,Male,9670,1936-08-28,O+ -Carl Torres,Male,9671,1996-09-14,O- -Michelle Zuniga,Female,9672,1968-02-17,O- -Brandon Lopez,Female,9673,1934-05-02,AB- -Andrew Turner,Female,9674,1969-05-10,A+ -Erika Kidd,Female,9675,1933-08-01,B- -Emily Owens,Male,9676,1988-04-27,AB- -Melinda Martinez,Male,9677,1954-01-28,AB+ -Tammy Walker,Female,9678,1934-06-09,AB- -Belinda Stevens,Female,9679,1995-05-27,AB+ -Cheryl Simpson,Male,9680,1943-01-19,AB+ -Tina Haynes,Female,9681,1989-07-16,O+ -Kendra Romero,Male,9682,1944-03-20,O+ -Kaitlyn Griffin,Male,9683,1948-02-18,AB+ -Teresa Davis,Female,9684,1946-09-07,B+ -Karen Henry,Female,9685,1993-03-19,A+ -Traci Melendez,Male,9686,1975-02-18,O+ -Dan Potter,Male,9687,1993-01-31,O+ -Christopher Church,Male,9688,1990-12-11,O- -Megan Phillips,Female,9689,1986-07-21,AB- -Dawn Hernandez,Female,9690,1930-08-26,O- -Miguel Weaver,Male,9691,1994-08-23,A+ -Robert Newton,Male,9692,1996-11-06,O+ -Matthew Dougherty,Female,9693,1989-02-22,A- -Wanda Rivera,Male,9694,1985-11-17,B+ -Lindsey Cross,Female,9695,1960-06-02,O+ -Michelle Peterson,Male,9696,1946-08-18,B- -Jessica Ibarra,Male,9697,1936-12-17,A+ -Lindsey James,Male,9698,1971-11-04,A- -Eric Taylor,Female,9700,1957-11-30,AB- -Hannah Marshall,Male,9701,1934-03-18,AB- -Lauren Delacruz,Male,9703,1976-12-03,A- -Erin Sullivan,Male,9704,1961-08-26,AB- -Kristina Lane,Female,9705,1966-10-13,B+ -Mrs. Christina Hodges MD,Female,9706,1950-04-02,A- -Jillian Price,Female,9707,1996-04-11,A+ -Jessica Gentry,Male,9708,1989-12-08,A- -Lindsay Lin,Female,9709,1986-06-15,A- -Alyssa Hernandez,Male,9710,1976-05-03,B- -Michael Davis,Male,9711,1989-12-11,B- -Rhonda Adams,Female,9712,1998-01-09,O- -Linda Monroe,Female,9713,1996-07-23,A+ -Amanda Stewart,Female,9714,1944-01-19,A+ -Eric Garrison,Female,9715,1953-10-24,B- -Scott Randall,Female,9716,1977-12-13,AB+ -Matthew Hart,Female,9717,1958-02-14,AB+ -Charles Hall,Female,9718,1938-08-12,O- -Sylvia Hill,Male,9719,1965-11-13,B+ -Kristi Jones,Male,9720,1998-04-11,AB+ -Angela Thomas,Male,9721,1985-01-16,AB+ -Brandy Maynard,Male,9722,2001-04-10,AB+ -Erica Rhodes,Female,9723,1941-02-19,B+ -Justin Martinez,Female,9724,1941-06-27,O+ -Jeffrey Scott,Male,9725,2001-11-21,O- -Katherine Jimenez,Male,9726,1955-04-24,B- -Jesse Gonzalez,Male,9727,1949-12-08,AB+ -Jonathan Moore,Male,9728,1936-11-14,AB- -Stephanie Hart,Female,9729,1988-08-04,A- -Stephanie Wallace,Female,9730,1972-06-11,O+ -Daniel Travis,Female,9731,1947-11-21,B+ -Michelle James,Male,9732,1987-10-20,B+ -Roberto Archer,Female,9733,1976-09-21,B+ -Michael Lara,Male,9734,1970-03-02,AB+ -Stephanie Garza MD,Male,9736,1940-10-07,A- -Jenny Watson,Male,9737,1969-12-17,A- -Kirk Martin,Male,9738,1965-09-15,O+ -Veronica Taylor,Male,9739,1945-03-23,O- -Laura Stokes,Female,9740,1940-12-30,B+ -Anthony Johnson,Female,9741,1994-12-14,AB- -Debra Hall,Male,9742,1931-12-21,AB- -Julie Williams,Female,9743,1930-03-16,AB- -Catherine Garrett,Male,9744,2000-10-29,B+ -Priscilla Farrell,Male,9745,2002-07-20,AB+ -Jerry Gibson,Female,9746,1986-03-29,O+ -William Smith DVM,Male,9747,1966-01-13,B+ -Charles Davidson,Female,9749,1998-02-28,AB- -Stephanie Landry,Male,9750,1935-11-20,A- -Jerry Reyes,Male,9751,2001-04-06,B+ -Megan Alexander,Male,9752,1968-06-03,A- -Jamie Dyer,Male,9753,2001-07-18,A+ -Jeffrey Gregory,Female,9754,1993-03-28,B+ -Kaylee Macdonald,Male,9755,1941-07-09,A+ -Ashley Rivera,Female,9756,1994-05-30,O+ -Regina Rios,Female,9757,1998-07-19,B+ -Audrey Park,Female,9758,1971-03-10,AB+ -Dalton Cooley,Female,9759,1954-11-09,AB+ -William Franco,Female,9760,1962-02-07,O- -Stacey Perez,Male,9761,1940-10-11,O- -William Valencia,Male,9762,1955-06-26,AB- -Jasmine Brooks,Male,9763,1977-10-20,B- -Mark Shaw,Female,9765,1985-06-21,A- -Dylan Hawkins,Female,9766,1942-08-21,O- -Tasha Valentine,Female,9767,1949-11-22,AB+ -Steven Ramirez,Female,9768,1992-04-28,A- -James Gutierrez,Male,9769,1957-09-12,B- -Jay Whitehead,Male,9770,1973-01-28,O- -Crystal Maxwell,Male,9771,1968-01-14,O+ -Anna Mccarthy,Female,9772,1999-10-28,A+ -Shawn Rodriguez,Male,9773,1942-09-27,O- -Susan Adams,Female,9774,1993-06-15,B+ -John Hall,Female,9775,1958-09-04,O- -Alexa Jensen,Male,9776,1955-04-27,B+ -Hayden Lopez,Female,9777,1995-04-10,O+ -David Hurley,Male,9778,1987-08-28,AB+ -Sara Burns,Female,9779,1976-05-04,AB- -Samantha Mcguire,Female,9780,1935-12-02,O+ -James Cole,Female,9781,1981-01-08,AB- -Jorge Chavez,Male,9782,2000-03-02,O- -Danielle Steele,Male,9783,1987-05-15,AB+ -Jerry Williams,Male,9784,1982-05-16,B- -Collin Ballard,Female,9785,1969-12-10,O- -Tracy Garza,Male,9786,1963-01-09,O+ -Theresa Fletcher,Female,9787,1946-07-17,B- -Nicole Foster,Male,9788,1964-09-12,A+ -Lorraine Scott,Male,9789,1987-08-29,B- -Ian Miranda,Male,9790,1934-04-10,O+ -Lauren Beard,Female,9792,1962-09-24,A- -Brett Stark,Male,9793,1978-01-17,B- -Jessica Warner MD,Male,9794,1971-04-14,O+ -Jeremy Nelson,Female,9796,1944-11-02,A- -Laura Perez,Female,9797,1937-06-15,O- -Mrs. Kimberly Weber,Female,9798,1958-11-20,A- -Eric Parks,Female,9799,1976-02-23,AB+ -Jonathan Anderson,Male,9800,2001-03-01,A+ -Stephanie Thompson,Male,9801,1934-01-08,A- -Stacey Hernandez,Female,9802,1996-07-22,AB+ -Lisa Wagner,Male,9803,1932-03-19,AB+ -George Barnes,Male,9805,1997-10-03,AB+ -Natalie Strong,Female,9807,1948-05-25,A- -Angel Scott,Male,9808,1974-10-20,O+ -David Cole,Female,9809,1958-12-31,B+ -Thomas Underwood,Female,9810,1943-11-22,O+ -Justin Williams,Female,9811,1951-12-09,A+ -Brian Daniel,Female,9812,1979-05-13,O+ -Janet Daniel,Male,9813,1968-01-14,AB- -Darrell Valenzuela,Female,9814,1952-08-02,O+ -Daniel Lewis,Male,9815,1977-12-13,O+ -Chelsea Moore,Male,9816,1971-06-22,O+ -Samantha Stephens,Male,9817,1978-07-25,O- -Jerry Brown,Male,9818,1932-02-07,A+ -Ronald Miller,Female,9819,1940-08-31,AB- -Lori Finley,Male,9820,1999-02-26,O+ -Nina Delacruz,Male,9821,1984-04-25,B+ -Bethany Murphy,Female,9822,1957-12-05,A+ -Micheal Gardner,Female,9823,1950-01-25,B- -Carrie Brown,Female,9825,1971-12-24,O- -Dillon Barton,Male,9826,1970-01-12,A- -Nancy Walker,Male,9827,1961-01-12,B+ -Robert Olsen,Female,9828,1979-10-05,O+ -Adam Miller,Male,9829,2001-05-01,B+ -John Chen,Female,9830,1932-06-04,AB- -Benjamin Garcia,Male,9831,1951-03-06,O- -Paul Morgan,Male,9832,1940-09-11,AB- -Antonio Smith,Male,9833,1942-04-20,A- -Marc White,Female,9834,1956-08-22,A- -Amber Irwin,Female,9835,1935-09-05,B+ -Kayla Hickman,Female,9836,1975-09-18,O- -Tammy Rodriguez,Female,9837,1947-03-02,B- -Pamela Mcclure,Female,9838,1989-06-01,B+ -Christine Atkinson,Female,9839,1977-01-28,A+ -Jason Shepard,Male,9840,1948-09-24,O- -Randy Terrell,Female,9841,1959-12-30,AB+ -Stephanie Summers,Female,9842,1935-07-26,A- -Tracy Harrison,Male,9843,1956-07-22,B- -Cynthia Moore,Male,9845,1964-11-15,B+ -Kimberly Rivas,Female,9846,1959-06-20,A- -Kayla Nelson,Male,9847,2002-06-22,AB+ -Christine Raymond,Female,9848,1949-07-09,B- -Jennifer Davis,Female,9849,1982-04-07,A- -Nathaniel Pearson,Male,9850,1954-01-23,AB+ -Jason Allen,Female,9851,1935-11-18,AB+ -Edwin Moore,Male,9852,1931-09-08,A- -James Vang,Female,9854,1932-08-05,B+ -Kimberly Ross,Male,9856,1945-07-18,A- -Shelly Evans,Female,9857,1987-08-05,AB- -Ashley Gray,Female,9858,1951-07-16,O- -Tammy Franco,Male,9859,1935-07-07,O- -Edward Lopez,Female,9860,1984-12-24,B- -Sydney Olson,Male,9861,1976-03-14,A+ -Christopher Tucker,Male,9862,1986-10-08,A- -Laura Nunez,Female,9863,1981-07-04,B+ -Melissa Rojas,Female,9864,1943-08-28,AB- -Casey Shaw,Male,9865,1953-11-29,O- -James Fowler,Female,9866,1955-12-15,O- -Dr. Michael Mann,Female,9867,1956-11-25,B+ -Christy Moran,Female,9868,1988-04-30,AB- -Brandon Lee,Female,9869,1938-01-05,O+ -Raymond Roth,Male,9870,2000-12-27,AB- -Olivia Wright,Female,9872,1949-12-09,B+ -Chad Nguyen,Male,9873,1972-10-22,O- -Anthony Crawford,Male,9874,1973-05-22,A+ -Mr. Terry Herrera,Male,9875,1986-11-03,O+ -Teresa Kaiser,Female,9876,1955-12-26,B+ -Audrey Horne,Male,9879,1988-03-09,B+ -Brenda Maynard,Male,9880,1949-02-16,AB+ -Ethan Craig,Female,9881,1948-10-15,AB- -Jamie Williams,Female,9882,1963-04-17,AB+ -Jamie Daniel,Male,9883,1942-02-10,O+ -Matthew Norris,Female,9884,1958-08-12,O+ -James Ochoa,Female,9886,1993-09-01,O+ -Mark Reeves,Male,9887,1952-05-04,B- -Samantha James,Male,9888,1935-09-05,AB- -Jeremy Rodriguez,Male,9890,1991-10-02,B+ -Kevin Carpenter,Male,9892,1976-10-11,A- -Tyler Williams,Female,9893,1957-09-07,A+ -James Schmidt,Female,9894,1997-01-26,A+ -Joseph Hall,Female,9896,1948-09-08,B+ -Jonathan Collins,Male,9897,1959-03-02,AB+ -Albert Galvan,Male,9898,1964-02-06,B+ -Samuel Garza,Female,9899,1996-05-25,AB+ -Melissa Greer,Female,9901,1986-07-14,A- -Tina Wiley,Female,9902,1951-10-26,AB+ -Arthur Murphy,Male,9903,1997-02-28,AB- -Anthony Warner,Female,9904,1964-04-08,O- -Paul Henry,Female,9905,1969-02-15,AB+ -Jane Rich,Female,9906,1951-04-17,O+ -Douglas Acosta,Female,9907,1953-06-07,AB+ -Michelle Young,Male,9908,1953-11-15,O+ -Jonathan Perry,Male,9909,1943-05-19,B- -Heather Stewart,Female,9910,1985-08-19,O- -Laura Mullen,Female,9912,1942-08-25,O- -Paula Chang,Male,9913,1989-01-26,A- -Jeffrey Soto,Male,9914,1968-03-18,AB- -Samuel Lawson,Male,9915,1958-04-29,B+ -Erin Davis,Male,9916,1948-10-28,AB- -Justin Morales,Male,9917,1957-08-27,A+ -Jenna Harrison,Male,9918,1951-07-06,B- -Jamie Brown,Female,9919,1944-10-15,A- -Benjamin Stone,Male,9920,1938-04-11,AB- -John Randolph,Male,9921,1961-12-19,O+ -John Ramirez,Male,9922,1959-11-17,B- -Todd Evans,Female,9923,1945-09-17,O- -Eric Allen,Male,9925,1971-06-01,B+ -Matthew Willis,Male,9926,1991-03-30,B+ -Megan Walker,Male,9927,1934-11-06,O+ -Amy Tyler,Male,9928,1963-09-10,A- -Mariah Cox,Male,9929,1957-04-18,A- -Earl Christensen,Female,9930,1963-12-18,B- -Jessica Johnson,Male,9931,1954-08-12,O- -Logan Espinoza,Female,9932,1938-10-21,AB- -Angela Wade,Male,9933,1962-10-20,O+ -Cynthia Pena,Female,9934,1948-04-30,O+ -Karen Rodriguez,Male,9935,1983-01-03,O- -Alicia Love MD,Female,9936,1985-02-02,O+ -Yvonne Lopez,Female,9937,2001-12-21,B+ -Christine Murphy,Female,9938,1976-12-01,AB- -Becky Roberts,Female,9939,1959-03-11,AB- -Matthew Jackson,Male,9940,1933-10-24,AB- -Amanda Hall,Female,9941,1948-08-03,O- -Marisa Jennings,Male,9942,1969-05-21,AB+ -Jacqueline Peterson,Male,9943,1976-09-17,AB+ -Victoria Lee,Male,9944,1930-04-16,A- -Benjamin Mcintyre,Female,9945,1961-06-06,A- -Jennifer Russell,Female,9946,1987-11-15,B+ -Jamie Thompson,Male,9947,1935-05-01,O+ -Alec Olson,Female,9948,1945-03-07,AB- -Dustin Garcia,Male,9949,1977-11-09,O+ -Patricia Foley,Male,9950,1966-05-07,O- -Katrina Beck,Male,9951,1949-02-15,O+ -Omar Bailey,Female,9952,1934-11-18,A+ -Thomas Lloyd,Male,9953,1987-04-17,AB+ -David Woods,Male,9954,1983-10-11,O+ -Lindsay Gill,Male,9955,1947-01-05,O+ -Anthony Mathews,Female,9956,2002-10-03,B- -Alicia Peters,Female,9957,1969-08-29,B+ -Samuel Wilkins,Female,9958,1972-09-22,O+ -Oscar Burton,Female,9959,1943-05-02,A+ -Leslie Wood,Female,9960,1979-02-18,AB+ -Joseph Wilson,Female,9961,1985-10-29,B- -Jenny Ho,Male,9962,1957-01-06,B+ -Adrienne Goodman,Male,9963,2000-05-11,O- -Darren Jones,Female,9964,1940-11-25,A- -Dawn Shah MD,Male,9965,1955-12-29,O- -Jane Cole,Male,9966,1945-07-23,AB+ -Alejandro Smith,Male,9967,1945-10-31,A- -Emma Mccann,Female,9968,1977-06-10,O- -Darius Smith,Female,9969,1987-04-26,B+ -Steven Day,Female,9970,1955-01-07,A+ -Gregory Torres,Female,9971,1976-07-02,O+ -Sharon Sanchez,Male,9972,1965-08-17,AB+ -Thomas Weaver,Female,9973,1992-04-25,A- -Nathaniel Hudson,Female,9974,2001-03-02,B- -Brett Frazier,Female,9975,1934-03-05,O+ -Colton Weaver,Female,9976,1985-03-03,O- -James Calhoun,Male,9977,1975-07-18,O- -Melissa Campbell,Female,9978,2001-07-07,B- -Jacob Wade,Female,9979,1930-03-20,A+ -Danielle Salinas,Female,9980,1938-07-21,B+ -Catherine Carrillo,Male,9981,1999-09-29,B+ -Danielle White,Female,9982,1949-05-05,B- -Mark Gross,Male,9983,1965-10-12,AB+ -Erica Crawford,Male,9984,1953-01-17,B- -Amanda Baker,Male,9985,1966-08-02,O- -Richard Mack,Male,9986,1933-04-24,A+ -Bobby Pierce,Female,9987,1944-02-10,A+ -Julie Johnson,Female,9988,1943-05-31,AB- -Amy Lucas,Female,9989,1980-10-27,B- -Tracy Johnson,Male,9990,1959-10-07,AB+ -John Holder,Female,9991,1950-11-02,O- -Jorge Obrien,Male,9994,1960-04-30,O+ -James Hood,Male,9995,1973-03-27,B+ -Stephanie Evans,Female,9996,1999-03-19,B+ -Christopher Martinez,Male,9997,1936-12-19,B+ -Amanda Duke,Male,9998,1945-02-13,A+ -Eric King,Male,9999,1936-06-28,B+ diff --git a/langchain-rag-app/source_code_step_3/data/payers.csv b/langchain-rag-app/source_code_step_3/data/payers.csv deleted file mode 100644 index 104cc0ac0b..0000000000 --- a/langchain-rag-app/source_code_step_3/data/payers.csv +++ /dev/null @@ -1,6 +0,0 @@ -payer_name,payer_id -Medicaid,0 -UnitedHealthcare,1 -Aetna,2 -Cigna,3 -Blue Cross,4 diff --git a/langchain-rag-app/source_code_step_3/data/physicians.csv b/langchain-rag-app/source_code_step_3/data/physicians.csv deleted file mode 100644 index 511760ceb7..0000000000 --- a/langchain-rag-app/source_code_step_3/data/physicians.csv +++ /dev/null @@ -1,501 +0,0 @@ -physician_name,physician_id,physician_dob,physician_grad_year,medical_school,salary -Joseph Johnson,0,1970-02-22,2000-02-22,Johns Hopkins University School of Medicine,309534.15507605654 -Jason Williams,1,1982-12-22,2012-12-22,Mayo Clinic Alix School of Medicine,281114.5035585275 -Jesse Gordon,2,1959-06-03,1989-06-03,David Geffen School of Medicine at UCLA,305845.5846360554 -Heather Smith,3,1965-06-15,1995-06-15,NYU Grossman Medical School,295239.7666886809 -Kayla Hunter DDS,4,1978-10-19,2008-10-19,David Geffen School of Medicine at UCLA,298751.35520122456 -Christopher Jordan,5,1989-11-04,2019-11-04,NYU Grossman Medical School,316681.6994348657 -Elaine Medina,6,1957-12-24,1987-12-24,Baylor College of Medicine,283743.02626834356 -Donna Mcintyre,7,1987-03-12,2017-03-12,Perelman School of Medicine (University of Pennsylvania),319166.7313781032 -Richard Tucker,8,1983-04-02,2013-04-02,Perelman School of Medicine (University of Pennsylvania),347019.2359991686 -Kimberly Oliver,9,1989-06-02,2019-06-02,Stanford University School of Medicine,310293.2724885527 -Christopher Williamson,10,1974-01-22,2004-01-22,"University of California, San Francisco School of Medicine",276537.12944182596 -Cory Campbell,11,1988-11-08,2018-11-08,Stanford University School of Medicine,281549.4596598061 -Cathy Church,12,1951-12-30,1981-12-30,NYU Grossman Medical School,292552.1129764465 -Kristopher Wiley Jr.,13,1951-11-30,1981-11-30,Yale School of Medicine,282153.29108791304 -Denise Chavez,14,1969-09-04,1999-09-04,Columbia University Vagelos College of Physicians and Surgeons,270264.5907116985 -Jason Merritt,15,1989-09-25,2019-09-25,Johns Hopkins University School of Medicine,304632.2183088508 -Jacqueline Mcneil DVM,16,1988-02-14,2018-02-14,Columbia University Vagelos College of Physicians and Surgeons,293364.08004822605 -Veronica Moore,17,1970-04-06,2000-04-06,University of Chicago Pritzker School of Medicine,305691.62650674174 -Steven Watson,18,1961-06-03,1991-06-03,Columbia University Vagelos College of Physicians and Surgeons,335591.62236645864 -Ryan Brown,19,1961-12-09,1991-12-09,Harvard Medical School,292909.4149822692 -Ashley Pena,20,1956-11-07,1986-11-07,Columbia University Vagelos College of Physicians and Surgeons,264437.3998595907 -Erin Grimes,21,1965-01-08,1995-01-08,Stanford University School of Medicine,288033.2252323935 -Kimberly Johnson,22,1972-10-27,2002-10-27,Mayo Clinic Alix School of Medicine,323112.75651349925 -Tyler Lopez,23,1962-04-19,1992-04-19,University of Texas Southwestern Medical School,320303.1081215087 -Karen Clark,24,1980-06-22,2010-06-22,Mayo Clinic Alix School of Medicine,315559.189428407 -Abigail Fuller,25,1970-12-13,2000-12-13,Perelman School of Medicine (University of Pennsylvania),281258.7983051369 -Ryan Vasquez,26,1953-03-13,1983-03-13,University of Texas Southwestern Medical School,322557.07854098093 -Lisa Wilkinson,27,1952-11-28,1982-11-28,University of Michigan Medical School,329306.972341112 -Jason Little,28,1980-08-05,2010-08-05,Johns Hopkins University School of Medicine,279137.3511033007 -Heather Smith,29,1962-12-13,1992-12-13,Johns Hopkins University School of Medicine,298752.89707372425 -Denise Perez,30,1975-08-06,2005-08-06,Harvard Medical School,360612.05891046335 -Joseph Roman,31,1964-08-09,1994-08-09,Yale School of Medicine,277803.7717060984 -Elizabeth Beck,32,1974-06-08,2004-06-08,Stanford University School of Medicine,248847.39992268826 -Deborah Wright,33,1961-11-09,1991-11-09,Perelman School of Medicine (University of Pennsylvania),341487.13303394394 -Renee Hicks,34,1968-08-15,1998-08-15,Baylor College of Medicine,334098.1431511368 -Keith Reed,35,1963-04-09,1993-04-09,University of Chicago Pritzker School of Medicine,286290.98029267724 -Beverly Jordan,36,1968-06-06,1998-06-06,Yale School of Medicine,296610.2465439574 -Ronald Hernandez Jr.,37,1992-01-29,2022-01-29,Johns Hopkins University School of Medicine,263251.94849433145 -Colleen Ward,38,1956-12-14,1986-12-14,Mayo Clinic Alix School of Medicine,302668.5681782911 -Lauren Rojas,39,1969-04-27,1999-04-27,Columbia University Vagelos College of Physicians and Surgeons,334977.411461142 -Logan Diaz,40,1981-07-13,2011-07-13,Columbia University Vagelos College of Physicians and Surgeons,283721.85474725167 -Joshua Jenkins,41,1981-06-20,2011-06-20,University of Michigan Medical School,326313.0593635888 -Joyce Brown,42,1954-03-23,1984-03-23,Perelman School of Medicine (University of Pennsylvania),313911.715721713 -Christina Richards,43,1988-03-26,2018-03-26,Stanford University School of Medicine,317334.50672643416 -Ryan Curry,44,1967-04-15,1997-04-15,Stanford University School of Medicine,285470.72458240896 -Lauren Williams,45,1987-10-21,2017-10-21,"University of California, San Francisco School of Medicine",289361.27451199514 -Nathan Fischer,46,1976-03-25,2006-03-25,NYU Grossman Medical School,244596.82696585794 -Tanya Sharp,47,1973-10-18,2003-10-18,Washington University in St. Louis School of Medicine,282999.91762469686 -Amber Thomas,48,1970-07-09,2000-07-09,Johns Hopkins University School of Medicine,334904.5637409378 -Alan Watkins,49,1961-10-22,1991-10-22,Stanford University School of Medicine,272120.0341769318 -Derek Phillips,50,1953-08-17,1983-08-17,University of Michigan Medical School,276590.95038429287 -Patricia Quinn,51,1958-08-08,1988-08-08,Mayo Clinic Alix School of Medicine,319205.6947112137 -Brian Rivera,52,1954-12-16,1984-12-16,Perelman School of Medicine (University of Pennsylvania),312083.0487597928 -Raymond Berry,53,1968-01-15,1998-01-15,University of Chicago Pritzker School of Medicine,320695.89749388903 -Sabrina Rodriguez,54,1964-07-07,1994-07-07,"University of California, San Francisco School of Medicine",265103.3837972879 -Tonya Warner,55,1992-05-25,2022-05-25,University of Michigan Medical School,376921.7384790104 -Lori Burns,56,1982-01-27,2012-01-27,David Geffen School of Medicine at UCLA,263527.3987749825 -Michael Olson,57,1963-01-01,1993-01-01,Harvard Medical School,304627.41941202205 -Jesse Hall,58,1975-11-01,2005-11-01,University of Chicago Pritzker School of Medicine,295240.3351239424 -Jonathan Lucas,59,1960-02-27,1990-02-27,NYU Grossman Medical School,264400.7544790486 -Jenna Taylor,60,1985-11-29,2015-11-29,David Geffen School of Medicine at UCLA,288893.7173156025 -Denise Murray,61,1976-03-21,2006-03-21,Baylor College of Medicine,300699.2280265761 -Stephanie Vargas,62,1977-10-16,2007-10-16,NYU Grossman Medical School,280500.8036440959 -Gabrielle Pitts,63,1967-11-18,1997-11-18,Columbia University Vagelos College of Physicians and Surgeons,328116.7086460455 -Breanna Cruz,64,1977-11-23,2007-11-23,Harvard Medical School,295151.22763612587 -Dean Hart,65,1990-03-15,2020-03-15,Johns Hopkins University School of Medicine,259761.7598694514 -Kim Gray,66,1951-05-20,1981-05-20,Mayo Clinic Alix School of Medicine,257216.2340199211 -Jonathan Decker,67,1953-04-29,1983-04-29,Harvard Medical School,318184.9527183437 -Scott Barton,68,1954-03-12,1984-03-12,NYU Grossman Medical School,255396.8765189899 -Terry Leon,69,1952-04-03,1982-04-03,Washington University in St. Louis School of Medicine,309492.78219147254 -Gerald Smith,70,1963-10-09,1993-10-09,David Geffen School of Medicine at UCLA,313339.6555700088 -Jennifer Baldwin MD,71,1986-10-07,2016-10-07,Johns Hopkins University School of Medicine,270139.3390822795 -Amy Smith,72,1955-10-07,1985-10-07,University of Texas Southwestern Medical School,326722.14251324674 -Carmen Larsen,73,1959-12-07,1989-12-07,Washington University in St. Louis School of Medicine,248466.19128715104 -Robert Pratt,74,1985-07-08,2015-07-08,Columbia University Vagelos College of Physicians and Surgeons,308893.76801995677 -David Lopez,75,1955-01-27,1985-01-27,Washington University in St. Louis School of Medicine,298774.2619921197 -Miguel Davidson,76,1963-06-12,1993-06-12,"University of California, San Francisco School of Medicine",296430.0607280732 -Zachary Campbell,77,1980-02-16,2010-02-16,"University of California, San Francisco School of Medicine",264663.1007105828 -Dr. Parker Joseph,78,1987-11-26,2017-11-26,Baylor College of Medicine,271889.3398680022 -Catherine Haynes,79,1982-01-17,2012-01-17,NYU Grossman Medical School,348564.06075061794 -John Johnson,80,1993-02-25,2023-02-25,Perelman School of Medicine (University of Pennsylvania),336454.65026615263 -Casey Reyes,81,1966-12-13,1996-12-13,University of Chicago Pritzker School of Medicine,322262.53765571397 -Rebecca Wallace,82,1965-06-16,1995-06-16,University of Chicago Pritzker School of Medicine,328195.44310589065 -Kayla Lawson,83,1976-04-02,2006-04-02,University of Texas Southwestern Medical School,325380.40634013806 -Zachary Turner,84,1982-05-22,2012-05-22,University of Texas Southwestern Medical School,290299.31363141374 -Jesus Snyder,85,1972-01-19,2002-01-19,Johns Hopkins University School of Medicine,301428.10655443056 -Kyle Nichols,86,1959-02-13,1989-02-13,Columbia University Vagelos College of Physicians and Surgeons,255824.74865876973 -Nancy Nichols,87,1973-09-19,2003-09-19,Stanford University School of Medicine,297309.13119577424 -Andrew King,88,1969-06-24,1999-06-24,Baylor College of Medicine,335502.4274861756 -Bryan Jones,89,1986-06-24,2016-06-24,"University of California, San Francisco School of Medicine",280178.78255228593 -Jordan Sparks,90,1953-09-15,1983-09-15,Johns Hopkins University School of Medicine,330694.2361406168 -Madison Hardin,91,1980-01-19,2010-01-19,Stanford University School of Medicine,302747.5721608129 -Doris Rodriguez,92,1980-03-07,2010-03-07,University of Chicago Pritzker School of Medicine,258438.84402990804 -Jose Carroll,93,1951-10-30,1981-10-30,Perelman School of Medicine (University of Pennsylvania),266780.41459961067 -Johnny White MD,94,1975-07-26,2005-07-26,Washington University in St. Louis School of Medicine,327579.08609123266 -Karen Collier,95,1987-05-26,2017-05-26,"University of California, San Francisco School of Medicine",316575.7225577516 -Julie Zimmerman,96,1960-03-08,1990-03-08,Johns Hopkins University School of Medicine,303052.92218962876 -Timothy Martinez,97,1970-06-28,2000-06-28,Harvard Medical School,291779.0455725616 -Jennifer Walker,98,1951-06-24,1981-06-24,Stanford University School of Medicine,306317.03932885756 -Joel Copeland,99,1963-08-05,1993-08-05,Washington University in St. Louis School of Medicine,326408.88747759745 -Lisa Brewer,100,1963-03-29,1993-03-29,"University of California, San Francisco School of Medicine",344275.5984146185 -Edward Miller,101,1966-07-18,1996-07-18,University of Chicago Pritzker School of Medicine,345710.52598321816 -Leslie Williams,102,1990-08-16,2020-08-16,University of Michigan Medical School,311158.79702275497 -Miss Maria King,103,1970-01-08,2000-01-08,Columbia University Vagelos College of Physicians and Surgeons,294842.04928906437 -Kristin Phillips,104,1964-07-26,1994-07-26,Stanford University School of Medicine,304387.44023456564 -Maria Thompson,105,1986-03-09,2016-03-09,University of Chicago Pritzker School of Medicine,315663.61071765237 -Mark Vang,106,1957-08-11,1987-08-11,"University of California, San Francisco School of Medicine",315542.0083153527 -Elizabeth Henderson,107,1954-05-01,1984-05-01,Stanford University School of Medicine,339239.5991142031 -Troy Wilson,108,1984-09-16,2014-09-16,Baylor College of Medicine,363472.6716574996 -Candice Manning,109,1965-08-23,1995-08-23,Washington University in St. Louis School of Medicine,293842.3611115774 -Deborah Sampson,110,1963-02-26,1993-02-26,Yale School of Medicine,364676.5472647339 -Joshua Martinez,111,1977-10-02,2007-10-02,"University of California, San Francisco School of Medicine",335167.1774027518 -Ronald Taylor,112,1950-01-10,1980-01-10,Baylor College of Medicine,296975.31029444374 -Rebecca Mckinney,113,1964-01-12,1994-01-12,David Geffen School of Medicine at UCLA,344956.9451659524 -Crystal Wallace,114,1952-10-12,1982-10-12,Johns Hopkins University School of Medicine,350569.44904257497 -Katrina Torres,115,1956-01-03,1986-01-03,University of Michigan Medical School,286191.1366741846 -Michael Watson,116,1973-01-15,2003-01-15,University of Texas Southwestern Medical School,351966.45757456945 -Natalie Browning,117,1987-02-06,2017-02-06,Washington University in St. Louis School of Medicine,332252.4846310789 -Todd Mccormick,118,1989-09-25,2019-09-25,Stanford University School of Medicine,371056.77383937576 -Christopher Zhang,119,1961-05-21,1991-05-21,Columbia University Vagelos College of Physicians and Surgeons,287278.84254001506 -Maurice Lane,120,1969-01-31,1999-01-31,University of Chicago Pritzker School of Medicine,289397.1976879201 -Emily Lucas,121,1968-12-30,1998-12-30,University of Texas Southwestern Medical School,239200.1361076998 -Matthew Marks,122,1987-09-16,2017-09-16,Harvard Medical School,317135.81761703885 -Linda Morris,123,1978-04-28,2008-04-28,University of Chicago Pritzker School of Medicine,311257.53766856156 -Christy Huff,124,1969-11-23,1999-11-23,Stanford University School of Medicine,283110.18985393 -Anthony Lynch,125,1973-10-29,2003-10-29,University of Michigan Medical School,297544.4780553583 -Jessica Rodriguez,126,1951-01-20,1981-01-20,NYU Grossman Medical School,260663.36969474654 -Rick Herrera,127,1951-02-09,1981-02-09,University of Chicago Pritzker School of Medicine,335953.34858495055 -Kathleen Evans,128,1972-05-20,2002-05-20,NYU Grossman Medical School,285309.0157641507 -Dustin Perez,129,1991-07-03,2021-07-03,Johns Hopkins University School of Medicine,392821.47046862857 -Charles Kim,130,1984-12-11,2014-12-11,University of Michigan Medical School,294731.960978669 -Justin Anderson,131,1976-12-30,2006-12-30,"University of California, San Francisco School of Medicine",277211.4347685507 -Louis Sullivan,132,1966-05-26,1996-05-26,Baylor College of Medicine,287630.6064379541 -Samuel Hill,133,1991-05-12,2021-05-12,Harvard Medical School,257641.17070367245 -Rhonda Diaz,134,1959-12-16,1989-12-16,Mayo Clinic Alix School of Medicine,314468.1567210883 -Melissa Garrett,135,1979-11-21,2009-11-21,Stanford University School of Medicine,287403.0090066263 -Alexis Hutchinson,136,1963-03-03,1993-03-03,Perelman School of Medicine (University of Pennsylvania),333937.5837119321 -Samantha Barrett,137,1986-11-04,2016-11-04,Mayo Clinic Alix School of Medicine,291757.57514476747 -Melissa Paul,138,1992-04-14,2022-04-14,University of Chicago Pritzker School of Medicine,341533.2633505694 -Angelica Houston,139,1966-06-03,1996-06-03,University of Texas Southwestern Medical School,322723.67247951124 -Joseph Jones,140,1955-08-11,1985-08-11,Stanford University School of Medicine,300857.9033015503 -Miguel Stout,141,1983-10-13,2013-10-13,Baylor College of Medicine,347406.97762052465 -Andrew James,142,1962-06-11,1992-06-11,David Geffen School of Medicine at UCLA,328568.8038311163 -Russell Morris,143,1963-08-17,1993-08-17,Baylor College of Medicine,388386.38479989674 -David Hicks,144,1984-12-23,2014-12-23,Perelman School of Medicine (University of Pennsylvania),287716.34265065385 -Michael Miranda,145,1977-06-03,2007-06-03,Harvard Medical School,302298.4831637538 -Shawn Ellis,146,1959-05-13,1989-05-13,Baylor College of Medicine,347061.2703303279 -Lauren Williams,147,1989-07-05,2019-07-05,Columbia University Vagelos College of Physicians and Surgeons,253693.86564494664 -Jennifer Mccall,148,1969-10-27,1999-10-27,David Geffen School of Medicine at UCLA,339508.3068969769 -Erik Guerrero,149,1989-09-02,2019-09-02,Mayo Clinic Alix School of Medicine,313179.08273044415 -Kerry Hart,150,1978-05-11,2008-05-11,"University of California, San Francisco School of Medicine",273353.67733658256 -Kyle Campbell,151,1961-12-12,1991-12-12,Johns Hopkins University School of Medicine,259108.81024346635 -Tamara Potter,152,1977-11-11,2007-11-11,Columbia University Vagelos College of Physicians and Surgeons,279825.3158060915 -Tracy Garza,153,1973-01-27,2003-01-27,Yale School of Medicine,231455.41283023285 -Mr. Justin Bryant,154,1973-06-29,2003-06-29,David Geffen School of Medicine at UCLA,285313.8166892549 -Richard Miller,155,1963-04-21,1993-04-21,"University of California, San Francisco School of Medicine",318676.6900002775 -Melissa Conway,156,1977-06-28,2007-06-28,"University of California, San Francisco School of Medicine",285710.9807709352 -Jessica Cain,157,1991-10-07,2021-10-07,Stanford University School of Medicine,341649.38104301423 -Christopher Stanley,158,1981-05-28,2011-05-28,David Geffen School of Medicine at UCLA,349798.4280817586 -Roger Craig,159,1953-06-06,1983-06-06,Harvard Medical School,338269.33447877323 -Yvonne Jacobs,160,1969-02-26,1999-02-26,University of Chicago Pritzker School of Medicine,306919.22730793094 -Teresa Frost,161,1983-05-01,2013-05-01,Perelman School of Medicine (University of Pennsylvania),230259.62182540592 -Andrew Bates,162,1962-10-18,1992-10-18,Yale School of Medicine,278889.0752390218 -Eric Marquez,163,1993-03-17,2023-03-17,Perelman School of Medicine (University of Pennsylvania),295738.8441967684 -Michael Bates,164,1985-09-25,2015-09-25,Mayo Clinic Alix School of Medicine,273183.9705148557 -Jessica Anderson,165,1968-11-03,1998-11-03,Mayo Clinic Alix School of Medicine,295814.8357354029 -William Bailey,166,1969-01-10,1999-01-10,Perelman School of Medicine (University of Pennsylvania),348302.02406080137 -Johnny Morgan,167,1976-01-26,2006-01-26,Baylor College of Medicine,250626.70411454045 -Rachel Oneill,168,1971-12-14,2001-12-14,Harvard Medical School,354350.7616835708 -Crystal Cruz,169,1969-01-02,1999-01-02,NYU Grossman Medical School,326541.79265262414 -Tiffany Hodges,170,1977-12-14,2007-12-14,Baylor College of Medicine,308046.5042483309 -Sarah Gardner,171,1976-02-24,2006-02-24,University of Texas Southwestern Medical School,278591.5033277771 -Benjamin Stevens,172,1962-09-12,1992-09-12,Baylor College of Medicine,273781.4896352572 -Tony Mason,173,1963-04-17,1993-04-17,Johns Hopkins University School of Medicine,251213.4685623378 -Courtney Walton,174,1978-04-04,2008-04-04,Washington University in St. Louis School of Medicine,351502.9644094316 -Catherine Howard,175,1963-05-25,1993-05-25,University of Chicago Pritzker School of Medicine,346128.34680222126 -Scott Scott,176,1969-04-14,1999-04-14,Johns Hopkins University School of Medicine,257811.46114250153 -April Shea,177,1961-05-27,1991-05-27,Stanford University School of Medicine,283421.16015281394 -Derrick Krause,178,1971-09-29,2001-09-29,Washington University in St. Louis School of Medicine,312994.3430769573 -Elizabeth White,179,1989-05-24,2019-05-24,Washington University in St. Louis School of Medicine,291014.7258548338 -Patrick Williams,180,1965-04-01,1995-04-01,David Geffen School of Medicine at UCLA,242439.75728904546 -Kelsey Dillon,181,1961-10-10,1991-10-10,Harvard Medical School,280266.8171833294 -Jamie Fisher,182,1967-03-02,1997-03-02,Harvard Medical School,358531.0289406006 -Tamara Potter,183,1960-06-15,1990-06-15,Washington University in St. Louis School of Medicine,282300.6422875667 -Beth Hall,184,1982-11-24,2012-11-24,University of Texas Southwestern Medical School,295095.9798989338 -Derek Edwards,185,1983-07-01,2013-07-01,Baylor College of Medicine,265644.6772789386 -Tara Payne,186,1967-02-15,1997-02-15,David Geffen School of Medicine at UCLA,317632.8895585124 -Carla Miller,187,1970-02-15,2000-02-15,University of Chicago Pritzker School of Medicine,303454.5539707375 -Angela Vance,188,1991-07-28,2021-07-28,Washington University in St. Louis School of Medicine,277739.40775329067 -Jon Prince,189,1967-01-30,1997-01-30,Columbia University Vagelos College of Physicians and Surgeons,260860.33812577726 -Sally Jones,190,1966-09-04,1996-09-04,Mayo Clinic Alix School of Medicine,342136.3012203263 -Sean Best,191,1981-11-11,2011-11-11,Mayo Clinic Alix School of Medicine,251833.6978007676 -Lisa Esparza,192,1984-08-17,2014-08-17,Johns Hopkins University School of Medicine,315114.4708676867 -Kelly Scott MD,193,1977-02-19,2007-02-19,Stanford University School of Medicine,235383.6226586528 -Steven Rivera,194,1973-03-13,2003-03-13,University of Michigan Medical School,321216.35049037146 -John Novak,195,1958-12-11,1988-12-11,University of Michigan Medical School,329108.9666178018 -Connie Tucker,196,1951-10-29,1981-10-29,Mayo Clinic Alix School of Medicine,332843.5113491974 -Barbara Warner,197,1961-06-20,1991-06-20,NYU Grossman Medical School,295163.745942904 -Laura Garrett,198,1977-10-27,2007-10-27,"University of California, San Francisco School of Medicine",347520.1081669109 -Sarah Brewer,199,1980-12-23,2010-12-23,Johns Hopkins University School of Medicine,369233.750849882 -Kevin Warner,200,1985-04-18,2015-04-18,University of Michigan Medical School,290351.3059186211 -Heather Anderson,201,1963-01-30,1993-01-30,Mayo Clinic Alix School of Medicine,286469.8490961022 -Kyle Vasquez,202,1960-09-05,1990-09-05,Stanford University School of Medicine,304475.31781034806 -Robert Chen,203,1987-07-22,2017-07-22,University of Michigan Medical School,285669.5956231738 -Karen Klein,204,1969-02-11,1999-02-11,Baylor College of Medicine,281283.8941196964 -James Mckinney,205,1967-06-17,1997-06-17,Baylor College of Medicine,283897.8437927547 -Joe Mendoza,206,1977-10-26,2007-10-26,Harvard Medical School,351472.6802401873 -Sarah Lane,207,1988-09-02,2018-09-02,University of Texas Southwestern Medical School,323156.459851063 -Erica George,208,1994-07-31,2024-07-31,Harvard Medical School,285571.61618225725 -Katie Huber,209,1978-09-19,2008-09-19,University of Chicago Pritzker School of Medicine,226346.24922833144 -Steven Smith,210,1964-05-07,1994-05-07,Washington University in St. Louis School of Medicine,253666.06519180597 -Allison Steele,211,1978-08-15,2008-08-15,Columbia University Vagelos College of Physicians and Surgeons,315102.87247805635 -Erika Ingram,212,1978-09-09,2008-09-09,Harvard Medical School,236353.32175833549 -Ann Joseph,213,1983-12-08,2013-12-08,Yale School of Medicine,308789.80582355865 -Amy Daniels,214,1962-02-19,1992-02-19,University of Michigan Medical School,268033.08825404925 -Meagan Herrera,215,1987-02-24,2017-02-24,NYU Grossman Medical School,302754.1732374202 -David Lopez,216,1988-10-26,2018-10-26,David Geffen School of Medicine at UCLA,301915.6890400243 -Terry Short,217,1950-10-30,1980-10-30,Mayo Clinic Alix School of Medicine,303617.6980167213 -Patricia Stewart,218,1950-02-25,1980-02-25,David Geffen School of Medicine at UCLA,288167.3445876444 -Robert Davis,219,1985-08-18,2015-08-18,Yale School of Medicine,287181.43123176805 -Joy Yoder,220,1973-11-13,2003-11-13,Stanford University School of Medicine,278376.28743190685 -Julie Walker,221,1972-04-25,2002-04-25,Harvard Medical School,314516.7695172567 -Destiny Lloyd,222,1955-10-27,1985-10-27,Columbia University Vagelos College of Physicians and Surgeons,324155.7802434284 -Karen Smith,223,1981-06-06,2011-06-06,Stanford University School of Medicine,263430.8243239162 -Mary Mahoney,224,1993-02-09,2023-02-09,"University of California, San Francisco School of Medicine",298451.1458312319 -Kathy Smith,225,1968-08-23,1998-08-23,"University of California, San Francisco School of Medicine",305897.4622046321 -Kathryn Johnson,226,1962-08-27,1992-08-27,David Geffen School of Medicine at UCLA,305513.13403869123 -Chad Peterson,227,1991-03-01,2021-03-01,Washington University in St. Louis School of Medicine,305003.08858789556 -April Bailey,228,1987-04-20,2017-04-20,Johns Hopkins University School of Medicine,287938.9556896433 -Alisha Figueroa,229,1964-01-14,1994-01-14,Washington University in St. Louis School of Medicine,308370.9127638762 -Julia Hoffman,230,1964-01-10,1994-01-10,University of Michigan Medical School,318540.8613295086 -Virginia Robinson,231,1966-01-27,1996-01-27,Yale School of Medicine,304231.09967467695 -Dennis Edwards,232,1954-03-12,1984-03-12,Baylor College of Medicine,315178.19509601174 -William Hart,233,1972-05-17,2002-05-17,University of Chicago Pritzker School of Medicine,329710.60233112524 -Karen Klein,234,1971-01-04,2001-01-04,Washington University in St. Louis School of Medicine,244471.78926314195 -Ashley Jackson,235,1968-11-04,1998-11-04,University of Texas Southwestern Medical School,328303.915255961 -Danielle Herring,236,1955-03-22,1985-03-22,University of Chicago Pritzker School of Medicine,310272.83295663825 -Frederick Ellis,237,1958-06-14,1988-06-14,Yale School of Medicine,266651.2401678382 -Thomas Middleton,238,1986-12-21,2016-12-21,University of Chicago Pritzker School of Medicine,324074.12646959064 -Michael Robinson,239,1972-04-27,2002-04-27,Columbia University Vagelos College of Physicians and Surgeons,288050.3728192811 -David Foster,240,1965-09-29,1995-09-29,Harvard Medical School,292141.0069104434 -Samantha Mendez,241,1984-12-20,2014-12-20,Columbia University Vagelos College of Physicians and Surgeons,284769.6065260301 -Isabel Mason,242,1978-02-10,2008-02-10,University of Chicago Pritzker School of Medicine,309071.96532714675 -Leah Meadows,243,1952-11-28,1982-11-28,Stanford University School of Medicine,276439.40572463843 -Rebecca Hernandez,244,1967-01-21,1997-01-21,"University of California, San Francisco School of Medicine",327044.23889843357 -Victor Dean,245,1991-06-22,2021-06-22,University of Chicago Pritzker School of Medicine,295834.1223841598 -Miranda Meza,246,1962-09-07,1992-09-07,Columbia University Vagelos College of Physicians and Surgeons,289073.92549536185 -Toni Caldwell,247,1967-03-21,1997-03-21,NYU Grossman Medical School,322586.2703284191 -Joseph Gonzales,248,1959-11-06,1989-11-06,Yale School of Medicine,290413.29713042756 -Tammy Hart,249,1981-06-02,2011-06-02,Stanford University School of Medicine,328445.304760869 -Vicki Thornton,250,1966-11-21,1996-11-21,Columbia University Vagelos College of Physicians and Surgeons,329387.78852522594 -William Soto,251,1976-10-26,2006-10-26,Washington University in St. Louis School of Medicine,259955.88485343067 -Michael Bennett,252,1970-09-14,2000-09-14,Mayo Clinic Alix School of Medicine,333277.8060666877 -Joshua Brewer,253,1972-08-11,2002-08-11,David Geffen School of Medicine at UCLA,256138.92085494343 -Debra Crawford,254,1967-06-12,1997-06-12,Johns Hopkins University School of Medicine,335147.4158064753 -Natalie Mitchell,255,1989-05-05,2019-05-05,Baylor College of Medicine,360850.71576690715 -Timothy Riley,256,1985-05-07,2015-05-07,Columbia University Vagelos College of Physicians and Surgeons,326245.03314807394 -Kyle Campbell,257,1971-10-01,2001-10-01,University of Texas Southwestern Medical School,235290.5806590098 -Joseph Santiago,258,1983-05-27,2013-05-27,Johns Hopkins University School of Medicine,331906.9715815806 -Christine Perkins,259,1993-01-23,2023-01-23,Yale School of Medicine,367383.86897808034 -Kristine Watson,260,1968-06-13,1998-06-13,NYU Grossman Medical School,290909.0507700591 -Isaac Walker,261,1993-07-27,2023-07-27,Perelman School of Medicine (University of Pennsylvania),298958.9003991033 -Sean Williams,262,1956-10-08,1986-10-08,Columbia University Vagelos College of Physicians and Surgeons,264345.398342207 -Elizabeth Meyer,263,1992-12-05,2022-12-05,Mayo Clinic Alix School of Medicine,309362.3825645901 -John Henderson,264,1954-10-28,1984-10-28,Johns Hopkins University School of Medicine,338075.31547629385 -Tara Harris,265,1977-11-02,2007-11-02,Baylor College of Medicine,320932.1138444836 -Michael Delgado,266,1978-11-24,2008-11-24,University of Chicago Pritzker School of Medicine,394259.00931863394 -Michael Watson,267,1989-02-02,2019-02-02,Columbia University Vagelos College of Physicians and Surgeons,300990.8112889739 -Michael Gibbs,268,1960-06-09,1990-06-09,Harvard Medical School,251079.7989775421 -Angela Stein,269,1954-05-25,1984-05-25,NYU Grossman Medical School,305129.1291470466 -James Cooper,270,1965-05-24,1995-05-24,Yale School of Medicine,227506.4470436253 -Jennifer Quinn,271,1968-07-12,1998-07-12,David Geffen School of Medicine at UCLA,284006.8822540646 -Lance Gonzalez,272,1981-10-18,2011-10-18,Mayo Clinic Alix School of Medicine,348731.46175800636 -Jamie Wiley,273,1978-12-29,2008-12-29,University of Michigan Medical School,309754.00945895317 -Jeremy Arnold,274,1988-02-09,2018-02-09,University of Michigan Medical School,305382.50438493805 -Valerie Smith,275,1985-09-20,2015-09-20,University of Texas Southwestern Medical School,354623.4113014607 -Katherine Jones,276,1957-02-03,1987-02-03,Johns Hopkins University School of Medicine,291882.0032500989 -Steven Watson,277,1961-11-03,1991-11-03,Mayo Clinic Alix School of Medicine,337854.6123880233 -Daniel Martinez,278,1979-07-15,2009-07-15,Stanford University School of Medicine,303879.2092549902 -Julia Lam,279,1974-12-12,2004-12-12,Baylor College of Medicine,311401.4239037708 -Willie Gutierrez,280,1964-08-17,1994-08-17,David Geffen School of Medicine at UCLA,263480.8543241096 -Stephen Johnson,281,1994-11-15,2024-11-15,University of Chicago Pritzker School of Medicine,285538.5961551535 -Timothy Gibson,282,1973-09-16,2003-09-16,Columbia University Vagelos College of Physicians and Surgeons,258074.4530146838 -Edgar Harris,283,1988-06-13,2018-06-13,Columbia University Vagelos College of Physicians and Surgeons,297142.64765323966 -Erin Ramirez,284,1974-03-13,2004-03-13,University of Michigan Medical School,311712.070317488 -Robert Haynes,285,1950-04-28,1980-04-28,Columbia University Vagelos College of Physicians and Surgeons,266698.8568472564 -Anthony Miller,286,1988-02-08,2018-02-08,Yale School of Medicine,361475.3676805447 -Ryan Craig,287,1989-03-06,2019-03-06,David Geffen School of Medicine at UCLA,308343.18057275884 -Austin Alvarado,288,1986-03-27,2016-03-27,Harvard Medical School,301733.86756755656 -Sheri Howard,289,1965-03-23,1995-03-23,Perelman School of Medicine (University of Pennsylvania),323089.73254036874 -Ashley Le,290,1952-04-26,1982-04-26,University of Texas Southwestern Medical School,275132.15757402236 -Antonio Stark,291,1979-12-29,2009-12-29,"University of California, San Francisco School of Medicine",304904.3243750236 -Brandy Anderson,292,1987-07-09,2017-07-09,Washington University in St. Louis School of Medicine,278494.01338927227 -Jonathan Obrien DDS,293,1992-02-15,2022-02-15,University of Texas Southwestern Medical School,346760.3973026695 -Adrienne Johnson,294,1987-08-21,2017-08-21,Johns Hopkins University School of Medicine,268240.81951808755 -David Carter,295,1967-09-18,1997-09-18,Harvard Medical School,301894.96377921524 -Amber Parker MD,296,1975-07-22,2005-07-22,University of Texas Southwestern Medical School,309879.4735545533 -Amanda Rogers,297,1985-02-05,2015-02-05,University of Chicago Pritzker School of Medicine,311844.77233223105 -John Williams,298,1961-07-10,1991-07-10,University of Michigan Medical School,282562.944807515 -Anthony Lowery,299,1967-03-16,1997-03-16,NYU Grossman Medical School,273134.71793564706 -Vicki Foster,300,1955-08-11,1985-08-11,Johns Hopkins University School of Medicine,282996.144808617 -Mr. Adrian Pittman II,301,1967-01-25,1997-01-25,Columbia University Vagelos College of Physicians and Surgeons,315849.76302630844 -Mark Martin,302,1985-06-07,2015-06-07,Mayo Clinic Alix School of Medicine,295684.6268726411 -Matthew Ward,303,1984-07-08,2014-07-08,University of Chicago Pritzker School of Medicine,323886.26425357565 -James Jackson,304,1976-09-26,2006-09-26,Johns Hopkins University School of Medicine,314310.1115818522 -Barbara Warner,305,1955-01-03,1985-01-03,NYU Grossman Medical School,231692.61905701176 -Lacey Gomez,306,1955-04-02,1985-04-02,Baylor College of Medicine,307424.93390511634 -Jamie Marks,307,1969-02-18,1999-02-18,Columbia University Vagelos College of Physicians and Surgeons,367513.6430344881 -Melissa Brown,308,1989-12-16,2019-12-16,University of Texas Southwestern Medical School,339758.0715311499 -Leah Meadows,309,1985-07-13,2015-07-13,University of Texas Southwestern Medical School,312660.3948212091 -Ryan Kirk,310,1950-01-10,1980-01-10,Johns Hopkins University School of Medicine,268218.2360859017 -Paula Hall,311,1977-01-04,2007-01-04,Mayo Clinic Alix School of Medicine,314326.6114837694 -Krystal Webb,312,1956-01-29,1986-01-29,Baylor College of Medicine,322192.4981963478 -Mark Nichols,313,1969-04-12,1999-04-12,Columbia University Vagelos College of Physicians and Surgeons,292387.59957517247 -Michael Hodges,314,1964-06-23,1994-06-23,NYU Grossman Medical School,309502.2617641331 -Michelle Williams,315,1954-06-08,1984-06-08,Perelman School of Medicine (University of Pennsylvania),345289.8737518812 -Cody Olson,316,1973-04-22,2003-04-22,University of Texas Southwestern Medical School,274281.7674077482 -Veronica Moore,317,1953-09-04,1983-09-04,NYU Grossman Medical School,268251.0118512262 -Ryan Thomas,318,1978-12-08,2008-12-08,Harvard Medical School,320780.97977982636 -Daniel Morgan II,319,1988-12-18,2018-12-18,University of Texas Southwestern Medical School,313726.2790859424 -Carol Sanchez,320,1959-07-23,1989-07-23,NYU Grossman Medical School,330865.1488623844 -Carolyn Clark,321,1975-06-29,2005-06-29,Stanford University School of Medicine,317093.8143571131 -Cheryl Smith,322,1971-11-11,2001-11-11,University of Michigan Medical School,282967.3481047742 -Teresa Brown,323,1983-06-16,2013-06-16,Washington University in St. Louis School of Medicine,312965.77954396216 -Matthew Wyatt,324,1950-08-24,1980-08-24,David Geffen School of Medicine at UCLA,265736.2037011148 -William Mclaughlin,325,1977-10-27,2007-10-27,University of Michigan Medical School,292490.4386480102 -Mary Owens,326,1955-03-24,1985-03-24,Yale School of Medicine,315083.97692899214 -Christine Rogers,327,1973-06-16,2003-06-16,Washington University in St. Louis School of Medicine,289184.5734982833 -Greg Clark,328,1959-09-01,1989-09-01,University of Chicago Pritzker School of Medicine,374041.5654668948 -Dorothy Palmer,329,1964-05-23,1994-05-23,NYU Grossman Medical School,243234.47253529 -Luis Powell MD,330,1972-05-07,2002-05-07,Washington University in St. Louis School of Medicine,283575.28929003567 -Teresa Scott,331,1964-10-29,1994-10-29,Yale School of Medicine,271866.6049839027 -Erin Oliver,332,1959-04-15,1989-04-15,Columbia University Vagelos College of Physicians and Surgeons,278989.5357762614 -Mark Woods,333,1980-07-19,2010-07-19,Perelman School of Medicine (University of Pennsylvania),280710.0532955736 -Nicole Holland,334,1966-04-18,1996-04-18,Stanford University School of Medicine,260207.3793942302 -Wesley Davidson,335,1971-12-04,2001-12-04,Harvard Medical School,322581.0644571788 -Tanya Mccarty,336,1974-10-26,2004-10-26,NYU Grossman Medical School,283587.141078387 -Gary Swanson,337,1992-07-03,2022-07-03,Harvard Medical School,304907.20006765967 -Brittany Harris,338,1950-03-19,1980-03-19,Mayo Clinic Alix School of Medicine,286955.22714269266 -Kenneth Glass,339,1970-09-30,2000-09-30,University of Texas Southwestern Medical School,279273.5876314137 -Jacqueline Johnson,340,1988-06-30,2018-06-30,NYU Grossman Medical School,350168.3770826055 -Jason Martinez,341,1978-11-05,2008-11-05,David Geffen School of Medicine at UCLA,327687.9654662822 -Anthony Phillips,342,1976-01-15,2006-01-15,NYU Grossman Medical School,243953.98800134566 -Abigail Cummings,343,1969-01-04,1999-01-04,Johns Hopkins University School of Medicine,240775.87654992339 -Christina Miller,344,1982-09-24,2012-09-24,Perelman School of Medicine (University of Pennsylvania),331278.2650690946 -Lisa Anderson,345,1971-05-15,2001-05-15,Johns Hopkins University School of Medicine,284404.39825353737 -Jessica Wallace,346,1967-12-23,1997-12-23,NYU Grossman Medical School,250527.52998197332 -Kathy Watkins,347,1966-05-21,1996-05-21,Stanford University School of Medicine,331372.05397621024 -Jeffrey Williams,348,1962-10-15,1992-10-15,Washington University in St. Louis School of Medicine,305073.7215029727 -Lindsay Martinez,349,1975-02-23,2005-02-23,Harvard Medical School,307547.1325449696 -Kevin Hodges,350,1956-01-02,1986-01-02,Stanford University School of Medicine,324286.1781601772 -Robert Clements,351,1953-06-02,1983-06-02,NYU Grossman Medical School,260700.6852515282 -Samuel Martinez,352,1980-10-16,2010-10-16,Yale School of Medicine,251054.97535847506 -Amy Rios,353,1985-01-07,2015-01-07,Washington University in St. Louis School of Medicine,347428.62884709606 -Joanne Hernandez,354,1960-02-05,1990-02-05,Yale School of Medicine,256884.99717773122 -Nathan Parker,355,1961-01-01,1991-01-01,Harvard Medical School,263332.86608773307 -James Sparks,356,1980-12-11,2010-12-11,Washington University in St. Louis School of Medicine,269326.938613627 -Jennifer Johnson,357,1955-05-25,1985-05-25,David Geffen School of Medicine at UCLA,362398.37771071563 -Ashley Goodwin,358,1972-12-20,2002-12-20,Perelman School of Medicine (University of Pennsylvania),314801.4990123457 -Shannon Lam,359,1992-02-04,2022-02-04,University of Michigan Medical School,328962.2392330614 -Chase Mcpherson Jr.,360,1965-11-06,1995-11-06,Baylor College of Medicine,305885.02636736183 -Matthew Nelson,361,1964-10-22,1994-10-22,University of Chicago Pritzker School of Medicine,281943.383663963 -Dawn Haley,362,1975-11-12,2005-11-12,Stanford University School of Medicine,318938.738497805 -Karl Bruce,363,1952-07-11,1982-07-11,University of Texas Southwestern Medical School,253301.5208760959 -Molly Dean,364,1951-02-24,1981-02-24,Stanford University School of Medicine,267141.4964371052 -Michael Harris,365,1979-07-17,2009-07-17,Baylor College of Medicine,321989.25537784444 -Miss Valerie George,366,1953-01-25,1983-01-25,University of Michigan Medical School,259282.3430751966 -Chelsey Davis,367,1980-10-30,2010-10-30,"University of California, San Francisco School of Medicine",294327.5559251438 -Scott Rivera,368,1956-05-25,1986-05-25,Columbia University Vagelos College of Physicians and Surgeons,295694.62966933765 -Andrew Miller,369,1964-09-17,1994-09-17,David Geffen School of Medicine at UCLA,284140.13989988517 -David Perez,370,1956-02-22,1986-02-22,Yale School of Medicine,241466.44575453427 -Louis Chambers,371,1962-08-18,1992-08-18,NYU Grossman Medical School,281132.13326433924 -Richard Richmond,372,1988-03-08,2018-03-08,David Geffen School of Medicine at UCLA,275250.94869202544 -Elaine Page DVM,373,1980-05-27,2010-05-27,Baylor College of Medicine,304843.19589863095 -Laura Brown,374,1986-10-08,2016-10-08,NYU Grossman Medical School,303314.71616098407 -Michael Berger,375,1967-06-12,1997-06-12,University of Texas Southwestern Medical School,311338.84379810625 -Gabriela Garcia,376,1967-05-31,1997-05-31,Johns Hopkins University School of Medicine,279720.41181076807 -Dustin Griffin,377,1971-07-13,2001-07-13,Washington University in St. Louis School of Medicine,315683.3385139768 -Jo Beard,378,1958-11-03,1988-11-03,Columbia University Vagelos College of Physicians and Surgeons,253319.79801678951 -Jennifer Murray,379,1989-05-18,2019-05-18,Perelman School of Medicine (University of Pennsylvania),245342.85802042938 -Christopher Murphy,380,1957-12-01,1987-12-01,Perelman School of Medicine (University of Pennsylvania),229932.81827500116 -Nicole King,381,1960-04-14,1990-04-14,Baylor College of Medicine,285021.08281284006 -Alex Anderson,382,1993-03-06,2023-03-06,David Geffen School of Medicine at UCLA,277401.0532698433 -Robert Thomas,383,1957-04-28,1987-04-28,Perelman School of Medicine (University of Pennsylvania),323679.468355638 -Antonio Campbell,384,1968-11-20,1998-11-20,University of Texas Southwestern Medical School,280540.1223885339 -Jennifer Evans,385,1977-10-13,2007-10-13,Yale School of Medicine,308201.290438328 -Emily Anderson DDS,386,1952-03-04,1982-03-04,"University of California, San Francisco School of Medicine",324398.8972974923 -Jessica Matthews,387,1955-10-18,1985-10-18,Stanford University School of Medicine,279410.42773052654 -Steven Henry,388,1965-10-28,1995-10-28,Mayo Clinic Alix School of Medicine,308941.5663032153 -Jonathan Baker,389,1983-09-03,2013-09-03,University of Texas Southwestern Medical School,330057.82646865584 -Alyssa Watts,390,1988-10-01,2018-10-01,NYU Grossman Medical School,262855.116755833 -Edgar Harris,391,1980-06-03,2010-06-03,University of Chicago Pritzker School of Medicine,300745.5701473393 -Rebecca Hernandez,392,1979-07-17,2009-07-17,Baylor College of Medicine,279538.9685040206 -Nicole Keith,393,1981-03-16,2011-03-16,Johns Hopkins University School of Medicine,264765.3035252058 -Brent Brewer,394,1985-08-04,2015-08-04,Washington University in St. Louis School of Medicine,253906.44778529313 -Aaron Johnson,395,1952-03-25,1982-03-25,University of Chicago Pritzker School of Medicine,264280.54283463897 -Linda Johnson,396,1978-11-11,2008-11-11,Washington University in St. Louis School of Medicine,301800.8701725604 -Amy Daniels,397,1956-09-09,1986-09-09,Harvard Medical School,251674.66633314762 -Shaun Little,398,1978-08-19,2008-08-19,University of Chicago Pritzker School of Medicine,283478.1892773409 -Richard Garcia,399,1978-06-03,2008-06-03,Mayo Clinic Alix School of Medicine,324395.83220558695 -Michael Morales,400,1971-04-24,2001-04-24,David Geffen School of Medicine at UCLA,313470.3289025681 -Amanda James,401,1981-05-31,2011-05-31,"University of California, San Francisco School of Medicine",284084.7713118553 -Robin Rose,402,1991-12-20,2021-12-20,Stanford University School of Medicine,350690.7124007617 -Brittany Harris,403,1952-04-07,1982-04-07,Stanford University School of Medicine,356791.0924173498 -Monique Hall,404,1969-07-27,1999-07-27,"University of California, San Francisco School of Medicine",300783.6729461918 -Christopher Webster,405,1962-03-10,1992-03-10,Yale School of Medicine,225943.71252347075 -Logan Hansen,406,1992-01-04,2022-01-04,Columbia University Vagelos College of Physicians and Surgeons,326593.4459104878 -Donna Williams,407,1987-05-02,2017-05-02,Harvard Medical School,231180.70979899244 -Mr. Andrew Keller,408,1966-04-26,1996-04-26,Washington University in St. Louis School of Medicine,344284.383321602 -Lori Jackson,409,1950-05-07,1980-05-07,Mayo Clinic Alix School of Medicine,332507.547022269 -Richard Aguilar,410,1974-01-30,2004-01-30,Perelman School of Medicine (University of Pennsylvania),353226.37512414064 -Mario Kelly II,411,1981-11-15,2011-11-15,University of Chicago Pritzker School of Medicine,307807.9667510318 -Christina Anderson,412,1969-09-14,1999-09-14,Harvard Medical School,289158.42698454484 -Tina Wall,413,1981-08-25,2011-08-25,University of Texas Southwestern Medical School,286496.9659892933 -James Allen,414,1959-03-23,1989-03-23,Baylor College of Medicine,283612.1948690731 -Heidi Melton,415,1960-05-25,1990-05-25,University of Chicago Pritzker School of Medicine,329432.0596102411 -Andre Johnson,416,1991-05-20,2021-05-20,Mayo Clinic Alix School of Medicine,321368.1446851763 -Gary Baldwin,417,1987-07-24,2017-07-24,Johns Hopkins University School of Medicine,303606.76900302636 -Matthew Perez,418,1954-11-28,1984-11-28,Johns Hopkins University School of Medicine,278334.56076219084 -Jasmine Perkins,419,1980-04-06,2010-04-06,NYU Grossman Medical School,378876.37893900817 -Laura Hamilton,420,1959-07-09,1989-07-09,Harvard Medical School,327371.2384188861 -Kathleen Mitchell,421,1959-05-11,1989-05-11,David Geffen School of Medicine at UCLA,252068.64240679774 -Sandra Porter,422,1954-07-04,1984-07-04,Mayo Clinic Alix School of Medicine,284512.3195218862 -Cristina Ortega,423,1990-05-26,2020-05-26,Mayo Clinic Alix School of Medicine,327953.28292226116 -Kelly Massey,424,1958-05-31,1988-05-31,"University of California, San Francisco School of Medicine",276013.83236301946 -Renee Young,425,1955-01-29,1985-01-29,University of Texas Southwestern Medical School,310546.4387647767 -Vicki Foster,426,1962-10-07,1992-10-07,David Geffen School of Medicine at UCLA,328523.88901008444 -Jason Johnston,427,1967-11-02,1997-11-02,University of Texas Southwestern Medical School,198347.15752030822 -Alexis Nolan,428,1957-06-01,1987-06-01,Yale School of Medicine,296758.86900632246 -Brittany Mullen,429,1982-01-07,2012-01-07,Washington University in St. Louis School of Medicine,297936.27460695367 -Megan Guzman,430,1976-01-29,2006-01-29,Washington University in St. Louis School of Medicine,287637.8263294863 -Aaron Graves,431,1967-09-05,1997-09-05,Perelman School of Medicine (University of Pennsylvania),309050.8540483812 -Robert Schmidt,432,1961-07-14,1991-07-14,NYU Grossman Medical School,319725.58822487626 -Stephanie Ward,433,1986-03-17,2016-03-17,Stanford University School of Medicine,304261.5283297383 -Sara Lopez,434,1971-10-28,2001-10-28,Johns Hopkins University School of Medicine,288785.17817851703 -Miranda Hunt,435,1954-06-14,1984-06-14,Baylor College of Medicine,318978.6389935281 -Pamela Hendrix,436,1978-03-29,2008-03-29,Washington University in St. Louis School of Medicine,301471.6022782307 -Nathan Davis,437,1971-10-31,2001-10-31,David Geffen School of Medicine at UCLA,293078.98760413565 -Rhonda Wall,438,1973-06-26,2003-06-26,Mayo Clinic Alix School of Medicine,260631.6184398324 -Amy Payne,439,1972-02-05,2002-02-05,Baylor College of Medicine,253120.35644201766 -Jared Diaz,440,1973-09-23,2003-09-23,University of Michigan Medical School,260063.1062185779 -Ashley Torres,441,1959-11-10,1989-11-10,University of Texas Southwestern Medical School,308349.8718366065 -Joseph Jackson,442,1968-07-28,1998-07-28,Washington University in St. Louis School of Medicine,297627.63757180946 -Julie Long,443,1986-03-19,2016-03-19,Mayo Clinic Alix School of Medicine,255591.4770537761 -Ryan Gutierrez,444,1975-01-16,2005-01-16,Washington University in St. Louis School of Medicine,319377.5347738143 -Nathan Smith,445,1963-08-12,1993-08-12,Johns Hopkins University School of Medicine,341229.28539537283 -Amy Bryant,446,1986-12-08,2016-12-08,University of Michigan Medical School,282045.1914985099 -Joshua Guerrero,447,1985-06-17,2015-06-17,University of Chicago Pritzker School of Medicine,247770.54427894877 -Geoffrey Jacobson,448,1983-09-17,2013-09-17,Washington University in St. Louis School of Medicine,278726.2084529426 -Alyssa Thomas,449,1955-06-14,1985-06-14,Yale School of Medicine,325633.81880384084 -Lisa Wallace,450,1964-07-05,1994-07-05,David Geffen School of Medicine at UCLA,316455.8957560432 -Gerald Green,451,1985-08-02,2015-08-02,Washington University in St. Louis School of Medicine,272327.0194196556 -Christopher Esparza,452,1986-11-20,2016-11-20,Stanford University School of Medicine,345635.1641329423 -Rhonda Wolf,453,1961-12-29,1991-12-29,Baylor College of Medicine,340448.401977792 -Hannah Roberts,454,1963-01-10,1993-01-10,Baylor College of Medicine,278009.81810170074 -Ashley Young,455,1978-06-18,2008-06-18,Johns Hopkins University School of Medicine,277701.299911051 -Tasha Griffin,456,1994-06-20,2024-06-20,David Geffen School of Medicine at UCLA,282215.1618786153 -Mary Medina,457,1965-04-20,1995-04-20,University of Michigan Medical School,284780.01673834363 -Taylor Williams PhD,458,1963-07-16,1993-07-16,Yale School of Medicine,328516.14023785334 -Trevor Cook,459,1986-09-04,2016-09-04,"University of California, San Francisco School of Medicine",312759.8718142978 -Marissa Shepherd,460,1961-08-14,1991-08-14,David Geffen School of Medicine at UCLA,326312.3630805176 -Thomas Harrell,461,1977-02-24,2007-02-24,Baylor College of Medicine,320206.954295601 -Marc Romero,462,1977-05-03,2007-05-03,Stanford University School of Medicine,351435.81204581197 -David Fisher,463,1954-10-26,1984-10-26,University of Chicago Pritzker School of Medicine,268218.4336857258 -Ronald Chen,464,1975-02-20,2005-02-20,Johns Hopkins University School of Medicine,311410.7559115175 -Christie Kelly,465,1956-10-18,1986-10-18,"University of California, San Francisco School of Medicine",234785.36231295907 -Paige Morris,466,1952-08-09,1982-08-09,Stanford University School of Medicine,260491.33277709424 -Timothy Wilson,467,1955-09-11,1985-09-11,University of Michigan Medical School,297754.3984219546 -Bryan Smith,468,1957-06-10,1987-06-10,University of Texas Southwestern Medical School,312546.19838263607 -James Brown,469,1976-07-15,2006-07-15,University of Michigan Medical School,296945.5277391129 -Alexander Jimenez,470,1970-01-07,2000-01-07,Stanford University School of Medicine,282984.2274356196 -Vickie Collins,471,1952-02-08,1982-02-08,University of Texas Southwestern Medical School,288317.46367520886 -Ryan Jarvis,472,1965-01-12,1995-01-12,Harvard Medical School,341083.2292927231 -Alexander Rodriguez,473,1992-07-13,2022-07-13,Johns Hopkins University School of Medicine,288479.0346635958 -George Lee,474,1968-03-12,1998-03-12,David Geffen School of Medicine at UCLA,352477.2486613058 -Renee Brown,475,1964-04-29,1994-04-29,University of Texas Southwestern Medical School,323820.512206234 -Terry Chan,476,1981-06-12,2011-06-12,NYU Grossman Medical School,313726.1203844469 -Ivan Doyle,477,1965-11-15,1995-11-15,University of Texas Southwestern Medical School,264192.09269037016 -Drew Sanchez,478,1983-10-17,2013-10-17,Mayo Clinic Alix School of Medicine,328057.1448419888 -Richard Carter,479,1972-01-04,2002-01-04,University of Chicago Pritzker School of Medicine,285186.882667545 -Daniel Mack,480,1993-10-24,2023-10-24,Mayo Clinic Alix School of Medicine,264166.807259829 -Larry Campbell,481,1985-10-31,2015-10-31,David Geffen School of Medicine at UCLA,315385.3083923813 -Jennifer Roberts,482,1963-05-06,1993-05-06,David Geffen School of Medicine at UCLA,258361.6181830038 -Alan Johnson,483,1954-01-21,1984-01-21,Johns Hopkins University School of Medicine,277132.75613611256 -Victoria Chavez,484,1977-08-20,2007-08-20,David Geffen School of Medicine at UCLA,299696.52265593264 -Kevin Walls,485,1989-06-27,2019-06-27,Baylor College of Medicine,366552.6427234418 -Janet Williams,486,1970-12-05,2000-12-05,University of Texas Southwestern Medical School,279392.52732622536 -Carla Dougherty,487,1993-01-03,2023-01-03,University of Texas Southwestern Medical School,286253.50442098273 -Sara Newman,488,1980-11-10,2010-11-10,Harvard Medical School,321970.35163264937 -Shelby Mathews,489,1984-07-01,2014-07-01,"University of California, San Francisco School of Medicine",262851.1293487186 -Shawn Bryant,490,1980-02-11,2010-02-11,David Geffen School of Medicine at UCLA,313284.1914306275 -Heather Fisher,491,1989-02-20,2019-02-20,Mayo Clinic Alix School of Medicine,336177.80422849767 -Shelley Cobb,492,1979-04-01,2009-04-01,David Geffen School of Medicine at UCLA,290787.153458667 -Amy Watson,493,1994-11-06,2024-11-06,University of Michigan Medical School,330784.62844190595 -Eric Patton,494,1973-04-29,2003-04-29,Harvard Medical School,308743.49769635417 -James Johnson,495,1959-01-14,1989-01-14,Baylor College of Medicine,278079.5410858866 -Andrew Wallace,496,1968-05-28,1998-05-28,Baylor College of Medicine,294065.8594231048 -Phillip Weaver,497,1969-10-06,1999-10-06,Washington University in St. Louis School of Medicine,288607.27980059275 -Craig Brooks,498,1958-05-13,1988-05-13,University of Texas Southwestern Medical School,297370.8522655057 -Bernard Miller,499,1987-03-03,2017-03-03,Baylor College of Medicine,304581.5369765948 diff --git a/langchain-rag-app/source_code_step_3/data/reviews.csv b/langchain-rag-app/source_code_step_3/data/reviews.csv deleted file mode 100644 index fd685fc27f..0000000000 --- a/langchain-rag-app/source_code_step_3/data/reviews.csv +++ /dev/null @@ -1,1006 +0,0 @@ -review_id,visit_id,review,physician_name,hospital_name,patient_name -0,6997,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Laura Brown,Wallace-Hamilton,Christy Johnson -9,8138,"The hospital's commitment to patient education impressed me. The medical team took the time to explain my diagnosis and treatment options, empowering me to make informed decisions about my health.",Steven Watson,Wallace-Hamilton,Anna Frazier -11,680,The hospital's commitment to patient safety was evident throughout my stay. The stringent hygiene protocols and vigilant staff instilled confidence in the quality of care provided.,Chase Mcpherson Jr.,Wallace-Hamilton,Abigail Mitchell -892,9846,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Jason Martinez,Wallace-Hamilton,Kimberly Rivas -822,7397,"The medical team at the hospital was exceptional, and the facilities were state-of-the-art. The only downside was the noise level in the shared rooms, affecting my rest.",Chelsey Davis,Wallace-Hamilton,Catherine Yang -434,9946,"While the medical care was excellent, the wait times for tests and results were quite frustrating. Improvement in this area would greatly enhance the overall experience.",Ashley Le,Wallace-Hamilton,Jennifer Russell -169,4902,"The medical team was attentive, and the facilities were clean. Unfortunately, the noise levels in the hallway were disruptive, affecting the overall peacefulness of the environment.",Tanya Mccarty,Wallace-Hamilton,Henry Hays -93,5297,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Amy Watson,Wallace-Hamilton,Rachel Carter -97,3267,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Jennifer Mccall,Wallace-Hamilton,Cody Ibarra -146,3332,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -604,3332,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -597,2955,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Terry Short,Wallace-Hamilton,Michael Smith -807,2955,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Terry Short,Wallace-Hamilton,Michael Smith -913,7962,"While the hospital had state-of-the-art equipment, the staff's lack of coordination resulted in delays and confusion regarding my treatment.",Robert Chen,Wallace-Hamilton,Chelsea Mitchell -136,1496,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Sara Lopez,Wallace-Hamilton,Carol Byrd -922,9374,"I was pleased with the level of care I received at the hospital. The only downside was the confusing layout, making it easy to get lost in the corridors.",Troy Wilson,Wallace-Hamilton,Daniel Williams -744,7721,"The nursing staff was caring, and the hospital had a calming ambiance. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Jennifer Evans,Wallace-Hamilton,Kim Powers -205,8663,"I appreciate the hospital's commitment to patient safety, and the cleanliness standards were commendable. However, the lack of entertainment options for patients during recovery was a downside.",Christopher Murphy,Wallace-Hamilton,Sharon Brown -224,6400,"I had a mixed experience at the hospital. The medical team was attentive, but the lack of communication about the potential risks of a procedure was concerning. The facilities, however, were modern and clean.",Tanya Sharp,Wallace-Hamilton,John Bartlett -228,7954,"I had a positive experience with the hospital's medical team, who provided excellent care. Nevertheless, the administrative processes, especially the check-in and discharge, could be more streamlined.",Yvonne Jacobs,Wallace-Hamilton,Rebecca Wilkerson -236,9106,"My stay at the hospital was great. The nurses were friendly and efficient, and the doctors were knowledgeable and thorough in their examinations.",John Henderson,Wallace-Hamilton,Scott Terry -266,5374,"The hospital's facilities were modern and well-maintained. However, the lack of communication about changes in my treatment plan created unnecessary stress.",James Johnson,Wallace-Hamilton,Michele Jones -294,8882,"The hospital staff was caring and attentive. However, the lack of communication between different departments led to some confusion about my treatment plan.",Mr. Andrew Keller,Wallace-Hamilton,Tiffany Long -873,6168,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Mr. Andrew Keller,Wallace-Hamilton,Stacy Villa -301,1974,"The hospital staff was efficient, and the facilities were clean. However, the lack of personalized attention and communication left me feeling a bit neglected.",Christopher Esparza,Wallace-Hamilton,Kevin Cox -390,8306,"The hospital staff was accommodating to my needs, but the noise levels in the hallway were disruptive and affected my ability to rest.",Victoria Chavez,Wallace-Hamilton,David Kim -799,4305,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Mark Vang,Wallace-Hamilton,Daniel Carter -867,99,"I had a mixed experience at the hospital. The medical attention was top-notch, but the wait times for tests were frustratingly long. The cafeteria food was surprisingly tasty, though.",Brian Rivera,Wallace-Hamilton,Christopher Juarez -633,2477,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Wallace-Hamilton,Matthew Watkins -767,7323,"The hospital facilities were outdated, and the lack of modern equipment was noticeable. However, the medical staff was dedicated and provided good care.",Karl Bruce,Wallace-Hamilton,Dalton Oconnell -525,8152,"Unfortunately, my hospital experience was subpar. The nursing staff seemed overwhelmed, and the facilities were outdated. Communication regarding my treatment plan was lacking, leaving me feeling uneasy.",George Lee,Wallace-Hamilton,Tracy Murray -933,952,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Raymond Berry,Wallace-Hamilton,William Garza -931,4575,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jennifer Roberts,Wallace-Hamilton,Cynthia Welch -733,1950,"The doctors were knowledgeable and took the time to answer my questions. The outdated medical equipment, however, was a concern.",Crystal Cruz,Wallace-Hamilton,Kelly Stevens -840,2472,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Miss Valerie George,Wallace-Hamilton,Lynn Smith -751,672,"The doctors were skilled, and the hospital had a clean environment. The constant interruptions during the night, however, affected my ability to rest.",Karen Smith,Wallace-Hamilton,Jesse Tucker -756,5717,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Heidi Melton,Wallace-Hamilton,Jason Mcdowell -856,2331,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Steven Smith,Wallace-Hamilton,Jesse Marquez -1001,3240,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Ronald Hernandez Jr.,Wallace-Hamilton,Jacob Smith -1,761,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Vicki Foster,"Bell, Mcknight and Willis",Loretta Schmitt -658,7151,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Robert Davis,"Bell, Mcknight and Willis",Richard Parker -585,4525,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Robert Pratt,"Bell, Mcknight and Willis",Kristin Evans -821,5920,"I am grateful for the care I received from the hospital staff. They were attentive and explained everything thoroughly. However, the billing process was confusing.",Erika Ingram,"Bell, Mcknight and Willis",Dr. Barbara Foster -954,1077,"Unfortunately, my experience at the hospital was less than satisfactory. The communication among the staff was poor, and it led to confusion about my treatment plan.",Mark Martin,"Bell, Mcknight and Willis",Daniel Harris -76,9171,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Logan Hansen,"Bell, Mcknight and Willis",Anna Graves -693,5246,"My overall experience was positive, thanks to the skilled medical team and their prompt response to my needs. The only downside was the limited parking space, causing inconvenience for visitors.",Tara Harris,"Bell, Mcknight and Willis",Kathleen Chambers -463,3607,The hospital's commitment to patient satisfaction was evident. They actively sought feedback and made adjustments to improve the overall experience.,Terry Leon,"Bell, Mcknight and Willis",Melissa Jefferson -132,1564,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Antonio Campbell,"Bell, Mcknight and Willis",John Atkinson -439,7131,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,"Bell, Mcknight and Willis",Regina Waters -686,6970,"The hospital's commitment to patient education was commendable. The medical staff took the time to explain my condition and treatment plan thoroughly, empowering me to actively participate in my recovery.",Tamara Potter,"Bell, Mcknight and Willis",Amy Dunlap -974,5714,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Danielle Herring,"Bell, Mcknight and Willis",Aaron Owen -700,8728,I was disappointed with the lack of privacy in the shared hospital rooms. The constant noise and lack of personal space made it challenging to rest and recover peacefully.,Troy Wilson,"Bell, Mcknight and Willis",Charles Martinez -380,4544,"I had a mixed experience. The medical care was excellent, but the noise levels in the ward were disruptive, making it challenging to rest.",Courtney Walton,"Bell, Mcknight and Willis",Ricky Burns -218,3173,"The hospital's facilities were modern and well-equipped, creating a comfortable environment. However, the lack of communication about potential side effects of medications was a concern during my stay.",Michael Bates,"Bell, Mcknight and Willis",Stephen Jones -847,1544,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Bernard Miller,Cunningham and Sons,Stephen Jones -223,5436,"The hospital's medical team was knowledgeable and caring, ensuring a smooth recovery process. However, the limited options for vegetarian meals in the cafeteria were disappointing.",William Bailey,"Bell, Mcknight and Willis",Michaela Smith -551,849,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Bryan Jones,"Bell, Mcknight and Willis",Linda Collins -249,6791,"The hospital facilities were top-notch, and the medical team was highly skilled. Unfortunately, the cafeteria food left much to be desired in terms of taste and variety.",John Novak,"Bell, Mcknight and Willis",William Davis -335,1263,"The hospital's facilities were top-notch, and the rooms were comfortable. However, the bureaucratic red tape made simple tasks, like scheduling appointments, unnecessarily complicated.",Michelle Williams,"Bell, Mcknight and Willis",John York -353,2124,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Thomas Harrell,"Bell, Mcknight and Willis",John Adams -393,4431,"The medical team was compassionate, and the hospital provided a comfortable environment. Unfortunately, the TV in my room was malfunctioning.",James Jackson,"Bell, Mcknight and Willis",Jon Steele -962,9376,The hospital staff went above and beyond to accommodate my needs. I appreciate their dedication to patient care.,Sean Best,"Bell, Mcknight and Willis",Brian Pollard -341,5275,"The hospital staff was attentive and caring, ensuring my comfort during the stay. Yet, the billing process was confusing, and I received multiple invoices with different amounts.",Tracy Garza,"Bell, Mcknight and Willis",Sean Harris -753,7086,"The medical care was outstanding, and the hospital had a welcoming atmosphere. Unfortunately, the cafeteria food was subpar and lacked variety.",Karl Bruce,"Bell, Mcknight and Willis",Kevin Cruz -988,700,"The hospital's commitment to providing affordable healthcare services to all was evident. However, the long wait times in the emergency room were a drawback.",Robert Thomas,"Bell, Mcknight and Willis",Cindy Lowe -568,8556,"My experience at the hospital was overall positive. The staff was attentive, and the modern facilities contributed to a comfortable stay.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -673,8556,"The hospital staff went above and beyond to make me feel comfortable during my stay. The modern facilities and state-of-the-art equipment were reassuring, and I felt well taken care of.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -623,6837,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Phillip Weaver,"Bell, Mcknight and Willis",James Fox -666,3619,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Ashley Pena,"Bell, Mcknight and Willis",Tonya Perkins -999,9810,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Dorothy Palmer,"Bell, Mcknight and Willis",Thomas Underwood -844,3514,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Vicki Foster,Burch-White,Jose Mullen -156,9406,"The medical team demonstrated expertise and empathy. Despite the high-quality care, the outdated decor and uncomfortable beds made the stay less pleasant than it could have been.",Jesse Gordon,Burch-White,Anna Golden -321,1618,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Robert Pratt,Burch-White,Christine Chavez -556,1068,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Jenna Taylor,Burch-White,Danielle Andrews -51,8031,The hospital's commitment to patient safety was evident in their strict adherence to infection control measures. I felt reassured knowing that my well-being was a top priority for the medical team.,Scott Rivera,Burch-White,David Sawyer -55,7308,The hospital's billing process was confusing and left me with unexpected expenses. Transparent and clear billing practices are essential to avoid financial stress for patients already dealing with health issues.,Kelly Scott MD,Burch-White,Brianna Johnson -571,1186,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",Kelly Scott MD,Burch-White,Nancy Lee -107,7953,"The hospital provided top-notch medical care, and the facilities were modern and clean. The entire staff, from doctors to janitors, contributed to a positive and comfortable environment.",Sara Lopez,Burch-White,Jose Johnson -402,1029,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Mr. Justin Bryant,Burch-White,Rachel Vaughan -620,2441,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Kimberly Oliver,Burch-White,Nicole Mcdonald -211,5247,"The hospital provided comprehensive care, and the nursing staff was exceptional. Yet, the delayed response to calls for assistance was a minor inconvenience during my stay.",Courtney Walton,Burch-White,Taylor Smith -610,9372,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Marc Romero,Burch-White,Matthew Hansen -225,2142,"The hospital provided excellent care, and the nursing staff was compassionate. On the downside, the lack of coordination between shifts resulted in some confusion about my treatment plan.",Kayla Lawson,Burch-White,Dawn Nielsen -870,3976,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Kayla Lawson,Burch-White,Karen Walker -768,9212,"The hospital staff was caring and understanding, which made my stay more bearable. The facilities, though, could use some improvement.",Erin Oliver,Burch-White,Joshua Cook -478,3666,"I am grateful for the incredible care I received at the hospital. The medical team was skilled, and the cleanliness of the facilities exceeded my expectations.",Alex Anderson,Burch-White,Elizabeth Mata -272,9685,"I appreciate the hospital's commitment to cleanliness and hygiene. However, the lack of communication about changes in my treatment plan created unnecessary stress.",Joshua Brewer,Burch-White,Karen Henry -884,3927,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Kevin Warner,Burch-White,Anna Green -282,6611,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",Jasmine Perkins,Burch-White,Brian Montgomery -310,616,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Vicki Foster,Burch-White,George Allison -322,5533,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Rebecca Mckinney,Burch-White,Laura Cruz -339,7078,"The hospital's cleanliness standards were exceptional, and the nursing staff provided excellent care. However, the parking situation was inconvenient, and finding a spot was always a hassle.",Gabriela Garcia,Burch-White,Mr. Gregory Pitts -713,9853,"I had a mixed experience. While the doctors were competent, the waiting times were quite long. The facility was clean and organized.",Molly Dean,Burch-White,Brian Johnson -373,2240,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were clean and comfortable.",Lauren Williams,Burch-White,Elizabeth Green DDS -656,2586,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Steven Watson,Burch-White,Nathan Bailey DDS -619,3042,"The nursing staff was top-notch, and the cleanliness of the hospital was impressive. On the downside, the Wi-Fi was unreliable and frustrating.",Jonathan Lucas,Burch-White,Keith Smith -572,9262,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Amy Daniels,Burch-White,Joshua Villa -705,8421,"The medical staff's expertise and dedication to patient care were evident throughout my stay. However, the outdated hospital equipment raised concerns about the institution's commitment to staying current with medical advancements.",Kelly Massey,Burch-White,Deborah Leonard -584,4426,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Jonathan Decker,Burch-White,Allen Jackson -663,8243,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Kyle Campbell,Burch-White,Julia Combs -876,197,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Robert Haynes,Burch-White,Heidi Parker -787,3350,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alan Watkins,Burch-White,Jason Eaton -945,1961,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Ronald Hernandez Jr.,Burch-White,Jesus Myers -964,371,"The hospital had a warm and welcoming environment. The support from the nursing staff was exceptional, making my stay more pleasant.",Rick Herrera,Burch-White,Jordan Nelson -2,5067,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Kathy Smith,Mcneil-Ali,Gordon Thompson -124,1331,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Matthew Marks,Mcneil-Ali,Anthony Butler -983,3460,"The hospital's dedication to community outreach and health education was impressive. However, the outdated magazines in the waiting area could use an upgrade.",Joy Yoder,Mcneil-Ali,Oscar Allen -82,6933,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Ashley Goodwin,Mcneil-Ali,Dennis Gray -299,7073,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Mr. Adrian Pittman II,Mcneil-Ali,Manuel Black -481,7424,"The hospital staff was courteous, and the rooms were clean and comfortable. Unfortunately, the noise level at night was quite disruptive, affecting my sleep.",Amy Daniels,Mcneil-Ali,Anthony Miller -682,6863,"I appreciated the hospital's efforts to create a patient-friendly atmosphere. The recreational activities and support groups provided a sense of community, making the hospital feel less clinical and more comforting.",Tina Wall,Mcneil-Ali,Gregory Bentley -494,1004,"I had a positive experience at the hospital. The staff was friendly, and the medical care was top-notch. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Isaac Walker,Mcneil-Ali,Paul Davidson -774,6702,"The hospital had a welcoming environment, and the staff was accommodating. The medical care was satisfactory, but the facilities could use some modernization.",Mary Owens,Mcneil-Ali,Holly Carter -163,583,"The hospital staff was responsive and caring. Yet, the outdated magazines in the waiting area and the lack of entertainment options made the long waits more tedious.",Kimberly Oliver,Mcneil-Ali,Amber Carter -816,5427,"My stay at the hospital was excellent. The medical team was compassionate, and the facility was clean and well-maintained.",James Cooper,Mcneil-Ali,Erin Mclean -973,1663,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Perez,Mcneil-Ali,Joseph Frazier -523,4622,"I encountered both positives and negatives during my hospital stay. The medical care was satisfactory, but the administrative processes were confusing and led to unnecessary stress.",Kevin Warner,Mcneil-Ali,Anna Wilkerson -291,9046,"The hospital staff was professional, and the facilities were well-maintained. Unfortunately, the billing process was confusing, and it took a long time to sort out the financial aspects of my stay.",James Allen,Mcneil-Ali,Sally Hudson -827,5858,The hospital facilities were modern and well-equipped. The only drawback was the lack of communication regarding the daily schedule and procedures.,Kathleen Evans,Mcneil-Ali,James Warner -660,9563,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",David Lopez,Mcneil-Ali,John Silva -769,9563,"I had a positive experience overall. The medical team was knowledgeable, and the facilities were well-maintained. However, the food options were limited and not very appetizing.",David Lopez,Mcneil-Ali,John Silva -801,4792,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michelle Williams,Brown-Golden,John Silva -596,1088,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Tracy Garza,Mcneil-Ali,Brandon Thornton -612,1123,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Michael Miranda,Mcneil-Ali,Brian Charles -532,3341,"I appreciated the efforts of the hospital staff in ensuring my well-being. The medical care was satisfactory, but the facilities could use some updating for a more modern and comfortable experience.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -683,3341,"The hospital's dedication to innovation was evident in the advanced technology used for diagnostics. My treatment felt personalized, and I left with confidence in the medical team's expertise.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -886,1809,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Jason Merritt,Mcneil-Ali,Jeffrey Nelson -407,968,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Dean Hart,Mcneil-Ali,Jonathan Herring -416,9621,"The hospital had a comfortable environment, and the medical team was thorough in their examinations. Unfortunately, the Wi-Fi was slow and unreliable.",Sarah Brewer,Mcneil-Ali,Mary Pacheco -428,1915,"My stay at the hospital was fantastic. The medical team was compassionate, and the room had a beautiful view. I couldn't have asked for better care.",Jennifer Walker,Mcneil-Ali,Rachel Bray -462,5215,"I had a positive experience at the hospital overall. The medical team was attentive, and the support staff made every effort to ensure my comfort.",Brittany Harris,Mcneil-Ali,Lorraine Key -719,5931,"The medical care was excellent, and the amenities were good. Unfortunately, the lack of communication between departments caused some issues with my treatment plan.",Renee Young,Mcneil-Ali,Benjamin King -605,6008,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Steven Rivera,Mcneil-Ali,Edward Reed -872,6008,"The medical team was attentive and answered all my questions. However, the lack of personalized attention from the support staff left me feeling overlooked during my stay.",Steven Rivera,Mcneil-Ali,Edward Reed -812,6599,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Candice Manning,Mcneil-Ali,Mike Garcia -587,3413,"The hospital staff was responsive and caring. However, the lack of privacy in the shared rooms was a drawback.",Raymond Berry,Mcneil-Ali,Stacy Moody -621,8512,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Lisa Esparza,Mcneil-Ali,Julie Becker -649,3036,"I had a generally positive experience at the hospital. The medical care was excellent, but the noise from other patients was disruptive.",Jonathan Baker,Mcneil-Ali,Rachel Schroeder -960,5083,"The administrative staff at the hospital were efficient, and the check-in process was smooth. However, the billing department made errors that took weeks to rectify.",Destiny Lloyd,Mcneil-Ali,Douglas Yates -858,4010,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Pamela Hendrix,Mcneil-Ali,Michael Myers -887,3448,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Heather Anderson,Mcneil-Ali,Thomas Klein -940,4812,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Willie Gutierrez,Mcneil-Ali,Scott Wong -235,8678,"The hospital provided exceptional care, and the nursing staff was compassionate. However, the lack of communication about potential side effects of medications was a concern during my stay.",Kathy Smith,"Malone, Thompson and Mejia",Frank Rogers -7,4107,"The nurses were exceptional in providing personalized care. Unfortunately, the outdated facilities were a drawback, and the hospital could benefit from modernizing its infrastructure.",Heather Fisher,"Malone, Thompson and Mejia",Ellen Mccoy -788,4114,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Chase Mcpherson Jr.,"Malone, Thompson and Mejia",Kristi Cox -14,4985,"The hospital's staff demonstrated professionalism and empathy, making my stay more bearable. The cafeteria, though, lacked variety in food options, affecting the overall patient experience.",Christina Anderson,"Malone, Thompson and Mejia",Randy Anthony -728,4785,"The medical staff was professional and caring. The lack of privacy in the shared rooms, however, made the stay less comfortable.",Laura Hamilton,"Malone, Thompson and Mejia",Ronald James -40,8654,"The hospital's technology and equipment were state-of-the-art, contributing to an accurate diagnosis and effective treatment. The investment in modern medical technology positively impacted my recovery.",Joanne Hernandez,"Malone, Thompson and Mejia",Robert Wong -98,5875,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Kathy Watkins,"Malone, Thompson and Mejia",Rebecca Buchanan -734,4975,"The nursing staff was attentive and caring. The lack of a comfortable waiting area for family members, though, was disappointing.",Cathy Church,"Malone, Thompson and Mejia",Jeremy Johnson -289,5266,"The hospital provided excellent care, and the communication between the medical team and me was clear. However, the food options were limited and not very appetizing.",Megan Guzman,Vaughn PLC,Jeremy Johnson -154,6491,"The level of care I received from the nurses exceeded my expectations. However, the billing process afterward was confusing, and it took multiple calls to resolve the issues.",Tamara Potter,"Malone, Thompson and Mejia",Mark Morgan -594,6232,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Julie Walker,"Malone, Thompson and Mejia",Christopher Nguyen MD -784,6194,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",John Henderson,"Malone, Thompson and Mejia",Dr. Brittany Hill -598,7330,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",David Fisher,"Malone, Thompson and Mejia",Angela Osborn -292,5279,"The hospital staff went above and beyond to make me comfortable. The facilities were modern and clean, and the medical care exceeded my expectations.",Thomas Harrell,"Malone, Thompson and Mejia",Stephanie Blake -916,5090,"The hospital's emergency services were prompt and efficient. However, the follow-up care was not as thorough as I expected, leaving me with unanswered questions.",Jason Johnston,"Malone, Thompson and Mejia",Jordan Finley -328,3561,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Sean Best,"Malone, Thompson and Mejia",Pamela Martinez -675,359,"Kudos to the efficient and friendly nursing staff who made my recovery journey much smoother. The hospital's commitment to patient care is evident, and I left feeling grateful for the positive experience.",Ryan Gutierrez,"Malone, Thompson and Mejia",Mrs. Kristine Hall MD -641,7046,"The hospital staff was compassionate and caring, but the lack of clear signage made it challenging to navigate the large facility.",Catherine Howard,"Malone, Thompson and Mejia",Katelyn Ryan -896,4957,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Jason Merritt,"Malone, Thompson and Mejia",Autumn Cardenas -902,1782,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Amanda James,"Malone, Thompson and Mejia",Larry Mitchell -715,4213,"The hospital had a welcoming atmosphere, and the rooms were comfortable. However, the billing process was confusing and frustrating.",Tammy Hart,"Malone, Thompson and Mejia",Tracy Hill -564,9525,"The medical team was efficient and professional. However, the billing process was confusing and took a long time to resolve.",Jamie Wiley,"Malone, Thompson and Mejia",Charles Smith -625,4736,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Toni Caldwell,"Malone, Thompson and Mejia",Rebecca Delgado -1004,3573,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Krystal Webb,"Malone, Thompson and Mejia",Jose Wilson -828,9769,"The medical staff was efficient, and the hospital rooms were clean and comfortable. On the downside, the cafeteria food was bland, and the menu was repetitive.",Kristopher Wiley Jr.,"Malone, Thompson and Mejia",James Gutierrez -845,9444,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Crystal Cruz,"Malone, Thompson and Mejia",Tammy Ware -797,323,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Angelica Houston,"Malone, Thompson and Mejia",Jacqueline Sanchez -949,3392,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Matthew Nelson,"Malone, Thompson and Mejia",Susan Watkins -269,9429,"The hospital provided excellent medical care, and the nursing staff was attentive and supportive. However, the lack of communication about the expected recovery timeline was a drawback.",Kathy Smith,"Jones, Brown and Murray",Samantha Woodard -15,4723,"I had an excellent experience with the dedicated nursing staff. Unfortunately, the outdated entertainment options for patients made the recovery period more tedious than necessary.",Christine Perkins,"Jones, Brown and Murray",Cheryl Lynch -17,1061,"The hospital's commitment to community outreach and education impressed me. However, the lack of adequate parking facilities added unnecessary stress to my visits.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -317,1061,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -477,8671,"The hospital staff was outstanding. They were empathetic, caring, and made me feel at ease. However, the wait times were a bit too long, causing some frustration.",Alexis Nolan,"Jones, Brown and Murray",Karen Pruitt -41,8264,I was disappointed by the lack of follow-up care after my discharge. It left me feeling unsupported in my recovery journey. Comprehensive post-discharge care is vital for patients' overall well-being.,Sandra Porter,"Jones, Brown and Murray",Dustin Myers -644,7674,"The hospital provided exceptional care, but the billing process was confusing and frustrating. Clearer communication about costs would have been appreciated.",Sandra Porter,"Jones, Brown and Murray",Catherine Walsh -50,8664,"The hospital's facilities were outdated and in need of renovation. The environment did not feel conducive to healing, and modernization is essential to provide a comfortable and welcoming space for patients.",Chelsey Davis,"Jones, Brown and Murray",Emily Johnson -252,5219,"The nursing staff was exceptional, providing both medical expertise and emotional support. Unfortunately, the hospital's Wi-Fi connectivity was unreliable and frustrating.",Andrew Bates,"Jones, Brown and Murray",Lindsay Johnson -77,4563,"The hospital staff were accommodating and supportive, making my stay as comfortable as possible. The attention to detail and personalized care contributed to a positive experience.",Stephanie Vargas,"Jones, Brown and Murray",Bobby Hurst -642,4994,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of amenities for families made it difficult for my loved ones.",Alexander Jimenez,"Jones, Brown and Murray",Tara Murray -152,7133,"I encountered a mix of experiences during my stay. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays and disorganization.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -183,7133,"The hospital provided quality care, and the staff was accommodating. On the downside, the limited visitation hours made it challenging for family members to spend time with me.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -563,5223,"The hospital had a warm and welcoming atmosphere. The only downside was the noise, which made it difficult to rest at times.",Ronald Taylor,"Jones, Brown and Murray",Christine Jones -158,8765,"The facilities were clean, and the nurses were attentive to my needs. Unfortunately, the Wi-Fi was unreliable, making it challenging to stay connected with loved ones during my stay.",Michael Delgado,"Jones, Brown and Murray",Michelle Holmes -232,3758,"The hospital's medical team was attentive and thorough, ensuring a successful recovery. However, the limited availability of certain medical specialists was a drawback to an otherwise positive experience.",Ashley Young,"Jones, Brown and Murray",Jeffrey Bell -239,4232,I was disappointed with the lack of communication from the medical team. It felt like I was constantly in the dark about my treatment plan and prognosis.,Ivan Doyle,"Jones, Brown and Murray",Mason Phelps -549,6443,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Katherine Jones,"Jones, Brown and Murray",Jesse Cochran -298,8013,"I am grateful for the compassionate care I received during my hospital stay. The medical team was knowledgeable, and the facilities were comfortable.",Joe Mendoza,"Jones, Brown and Murray",Sheryl Hudson -312,9243,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Allison Steele,"Jones, Brown and Murray",Zachary Cantrell -857,950,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Michael Watson,"Jones, Brown and Murray",Christopher Barron -761,1683,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Austin Alvarado,"Jones, Brown and Murray",Richard Gonzalez -396,4845,"I had a satisfactory experience. The medical care was good, but the parking situation at the hospital was inconvenient for both patients and visitors.",Jason Merritt,"Jones, Brown and Murray",Gregory Adams -452,1506,"The hospital's commitment to a holistic approach to healing was evident. They offered complementary therapies like art and music, contributing positively to my recovery.",Ryan Craig,"Jones, Brown and Murray",Lauren Williamson -466,4064,"The hospital had a friendly and supportive nursing staff. On the downside, the lack of clear communication about post-discharge care instructions was a bit concerning.",Andre Johnson,"Jones, Brown and Murray",Nicholas Stewart -474,9793,"The hospital provided excellent care, and the nursing staff was compassionate. However, the limited visiting hours made it difficult for my family to offer consistent support.",Renee Young,"Jones, Brown and Murray",Brett Stark -714,6816,"The nurses were amazing, providing excellent care. Unfortunately, the food options were limited and not very appetizing.",Matthew Perez,"Jones, Brown and Murray",Lauren Johnson -678,9840,"The hospital's commitment to patient safety was evident in their strict adherence to hygiene protocols. I felt secure throughout my stay, and the staff's dedication to cleanliness did not go unnoticed.",Kristopher Wiley Jr.,"Jones, Brown and Murray",Jason Shepard -971,2384,I appreciated the hospital's emphasis on patient education. The doctors took the time to explain my condition and treatment options in a way that was easy to understand.,Derek Edwards,"Jones, Brown and Murray",Joshua Berry -848,1427,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Gary Baldwin,"Jones, Brown and Murray",Virginia Morgan -984,3919,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Gary Baldwin,"Jones, Brown and Murray",Stephanie Powers -868,2294,"The hospital had state-of-the-art equipment, and the medical staff was highly professional. However, the lack of parking space and confusing signage made navigating the facility a challenge.",Sarah Lane,"Jones, Brown and Murray",Michael Spears -975,7060,"The hospital's dedication to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Katrina Torres,"Jones, Brown and Murray",Michael Gray -379,4988,"The cleanliness of the hospital impressed me, and the medical staff took the time to explain procedures thoroughly.",Kathy Smith,"Burke, Griffin and Cooper",Justin Peterson -227,1604,"The hospital's facilities were clean and well-maintained, creating a comfortable environment for recovery. However, the limited options for dietary restrictions made it challenging to find suitable meals.",Ashley Goodwin,"Burke, Griffin and Cooper",Victor Thomas -12,9911,"I encountered a few hiccups in the billing process, which caused unnecessary stress during an already challenging time. Improved transparency and communication regarding financial matters are essential.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -717,9911,"The hospital environment was calming, and the support staff was helpful. On the downside, the Wi-Fi connection was unreliable.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -811,9911,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -1000,730,"The hospital's dedication to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Thomas Middleton,"Burke, Griffin and Cooper",Erik Wood -25,1827,"The hospital's commitment to diversity and inclusion was evident in their culturally sensitive approach to patient care. However, the administrative delays in processing paperwork created unnecessary stress during my admission.",Mr. Adrian Pittman II,"Burke, Griffin and Cooper",Stanley Crane -34,1134,"The medical team at the hospital demonstrated exceptional professionalism. They took the time to explain my treatment plan thoroughly, and I felt confident in their expertise. A commendable level of care.",Rebecca Wallace,"Burke, Griffin and Cooper",Luke Lowery -39,5070,"I had a mixed experience at the hospital. While some nurses were exceptional, others seemed disinterested in providing quality care. Consistency in the level of care is crucial for patient satisfaction.",Jenna Taylor,"Burke, Griffin and Cooper",Peter Bishop -186,4840,"The hospital staff was friendly and professional, providing excellent medical care. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",April Bailey,"Burke, Griffin and Cooper",Jonathon Perez -56,8058,I was disappointed with the lack of coordination among the different departments at the hospital. It resulted in unnecessary delays in my treatment and a less-than-optimal overall experience.,Renee Brown,"Burke, Griffin and Cooper",Robert Williams -593,2785,"The hospital's medical team was efficient and professional. However, the lack of communication about my treatment plan was frustrating.",Matthew Perez,Shea LLC,Robert Williams -631,6535,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Amy Daniels,"Burke, Griffin and Cooper",Tamara Smith -329,7204,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Tanya Mccarty,"Burke, Griffin and Cooper",Mark Fisher -103,6940,"The hospital staff was incredibly supportive during my stay. They made sure I felt comfortable and well-cared for, which made a significant difference in my recovery.",Lisa Wilkinson,"Burke, Griffin and Cooper",Catherine Anderson -541,9263,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Alexander Jimenez,"Burke, Griffin and Cooper",David Carlson -143,5602,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Ryan Thomas,"Burke, Griffin and Cooper",Beth Perry -202,6847,"I was impressed by the hospital's state-of-the-art equipment and technology. However, the lack of communication about the treatment plan was a bit frustrating at times.",Sabrina Rodriguez,"Burke, Griffin and Cooper",Evelyn Bowman -177,3401,"The hospital staff was professional and caring, providing excellent medical care. However, the cafeteria food was subpar, and the options were limited.",Patricia Stewart,"Burke, Griffin and Cooper",Alex Patel -346,3431,"The medical team was thorough and efficient in their care. However, the lack of available amenities for families made it challenging for my loved ones during the extended hospital stay.",Patricia Stewart,"Burke, Griffin and Cooper",Melissa Weaver -421,3942,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Burke, Griffin and Cooper",Jason Bailey -829,7313,"I had a mixed experience at the hospital. The doctors were skilled, but the administrative processes were confusing, leading to frustration and delays.",James Cooper,"Burke, Griffin and Cooper",James Nunez -201,174,"The hospital's medical team was outstanding, providing thorough explanations and personalized care. On the downside, the cafeteria food left much to be desired in terms of taste and variety.",Julie Walker,"Burke, Griffin and Cooper",Michael Morgan -881,9736,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Joseph Jackson,"Burke, Griffin and Cooper",Stephanie Garza MD -371,4453,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -771,4453,"I was disappointed with the cleanliness of the hospital. The staff was friendly, but the lack of hygiene was a concern for me.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -251,1467,"The hospital's cleanliness and hygiene standards were impressive. However, the communication between different departments could be more streamlined for better coordination.",Joseph Jones,"Burke, Griffin and Cooper",Sarah Sanders -261,8074,"The hospital's medical team was skilled, and the facilities were modern. However, the administrative processes were confusing, leading to delays in my treatment.",Sheri Howard,"Burke, Griffin and Cooper",Kimberly Cruz -323,6418,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Michael Watson,"Burke, Griffin and Cooper",Matthew Little -331,1505,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable, and the support staff was friendly. The food, however, left much to be desired.",Charles Kim,"Burke, Griffin and Cooper",Brandy Cross -342,5479,"The hospital's infrastructure was modern and well-maintained. However, the lack of coordination between different departments led to delays in my treatment.",Zachary Campbell,"Burke, Griffin and Cooper",Timothy Martinez -465,7492,"The hospital staff was accommodating, and the facilities were well-maintained. Unfortunately, the limited TV channels in the patient rooms made leisure time less enjoyable.",Karl Bruce,"Burke, Griffin and Cooper",Kyle Rivera -486,7341,"The hospital staff was compassionate, and the doctors were thorough in their examinations. On the downside, the waiting area was crowded, making it uncomfortable for patients and their families.",Jonathan Lucas,"Burke, Griffin and Cooper",Jill Knight -498,4774,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were slow and disorganized, leading to some frustration.",Gary Swanson,"Burke, Griffin and Cooper",Zachary Williams -950,3712,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jonathan Obrien DDS,"Burke, Griffin and Cooper",Melanie Richardson -688,5683,The hospital's state-of-the-art equipment and modern facilities were reassuring. The medical team's expertise and dedication to patient care made my stay as comfortable as possible.,Ryan Jarvis,"Burke, Griffin and Cooper",James Jones -655,9,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -889,9,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -731,2881,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Richard Garcia,"Burke, Griffin and Cooper",Valerie Simpson -958,5418,"I had a mixed experience at the hospital. While the medical care was top-notch, the waiting times were frustratingly long.",Derek Phillips,"Burke, Griffin and Cooper",Mark Sanders -383,6747,"The hospital had a friendly and supportive environment. Unfortunately, the discharge process was slow and took longer than expected.",Kathy Smith,"Wheeler, Bryant and Johns",Robert Turner -786,3839,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Teresa Frost,"Wheeler, Bryant and Johns",Darryl Martin -13,2185,"The hospital's state-of-the-art technology greatly contributed to the accuracy of my diagnosis. However, the lack of emotional support from the medical team made the overall experience less comforting.",Lauren Williams,"Wheeler, Bryant and Johns",Thomas Erickson -790,5488,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Christina Anderson,"Wheeler, Bryant and Johns",Kimberly Perry -735,6764,"The hospital had a clean and organized environment. The constant beeping of machines in the ward, however, was disruptive to my rest.",Natalie Mitchell,"Wheeler, Bryant and Johns",Michael Bennett -737,6019,"The hospital had a welcoming atmosphere, and the medical staff was efficient. The limited menu options in the cafeteria, however, were a downside.",Victor Dean,"Wheeler, Bryant and Johns",Alex Maynard -616,3288,"The hospital staff was compassionate and understanding. However, the food options were limited and not very appetizing.",Tasha Griffin,"Wheeler, Bryant and Johns",Tyler Jackson -170,1652,"The nursing staff was caring, making my hospital stay more bearable. However, the outdated TV in the room and limited channel options made leisure time less enjoyable.",Renee Brown,"Wheeler, Bryant and Johns",Christina George -148,5124,"The nursing staff was compassionate and attentive. However, the lack of communication between shifts caused some confusion about my treatment plan.",Elaine Page DVM,"Wheeler, Bryant and Johns",Lynn Koch -471,1860,"The hospital's commitment to patient safety was evident. However, the lack of clear signage made it challenging to find specific departments within the facility.",Aaron Graves,"Wheeler, Bryant and Johns",Peggy Moody -120,4804,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Lisa Brewer,"Wheeler, Bryant and Johns",Hannah Cruz -91,9652,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Michael Bennett,"Wheeler, Bryant and Johns",Martin Miller -112,918,"My hospital stay was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Kimberly Johnson,"Wheeler, Bryant and Johns",Marissa Dixon -122,7490,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Isaac Walker,"Wheeler, Bryant and Johns",Mr. Dustin Thomas -241,6881,"I appreciate the hospital's efforts in ensuring a safe and clean environment. The hygiene protocols were strictly followed, which gave me peace of mind.",Danielle Herring,"Wheeler, Bryant and Johns",Michael Caldwell -368,6157,"The nursing staff was compassionate and attentive, ensuring my needs were met. Unfortunately, the administrative processes were a bit convoluted, causing confusion and delays in my treatment.",Jennifer Evans,"Wheeler, Bryant and Johns",Brian Duncan -214,9505,"The medical team at the hospital was efficient and caring, ensuring a smooth recovery process. However, the lack of privacy in shared patient rooms was a drawback to an otherwise positive stay.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -397,9505,"The hospital had a welcoming atmosphere, and the medical team was thorough in their examinations. However, the wait times for appointments were long.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -533,1043,"The hospital staff was accommodating and understanding of my needs. However, the cleanliness of the facilities was questionable, and that detracted from an otherwise positive experience.",Joseph Johnson,"Wheeler, Bryant and Johns",David Wilson -268,4175,"The hospital's medical team was dedicated and caring, providing personalized attention. However, the administrative delays in processing paperwork were frustrating.",Logan Diaz,"Wheeler, Bryant and Johns",Courtney Moore -418,6723,"The cleanliness and hygiene standards at the hospital were commendable. However, the lack of variety in the hospital menu made meals repetitive.",Lisa Anderson,"Wheeler, Bryant and Johns",Chad Pruitt -779,9942,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Andre Johnson,"Wheeler, Bryant and Johns",Marisa Jennings -503,3150,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of clear communication about the treatment plan was a bit frustrating.",William Soto,"Wheeler, Bryant and Johns",Gary Smith -566,8543,"The hospital provided excellent care, but the lack of communication between the departments led to some misunderstandings.",Johnny Morgan,"Wheeler, Bryant and Johns",Victor Davidson -934,1910,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Raymond Berry,"Wheeler, Bryant and Johns",Stephanie Pratt -738,3181,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Edgar Harris,"Wheeler, Bryant and Johns",Holly Sanford -854,9269,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Amy Payne,"Wheeler, Bryant and Johns",Carl Stone -915,2303,"The hospital had a comforting ambiance, and the nursing staff was exceptional. Unfortunately, the outdated entertainment options made the stay a bit dull.",Amber Parker MD,"Wheeler, Bryant and Johns",Malik Serrano -3,4858,"Unfortunately, my stay was marred by a lack of cleanliness in the facilities. It's essential for the hospital to maintain a hygienic environment to prevent infections and ensure patient well-being.",Teresa Frost,Vaughn PLC,Donald Sparks -16,6120,"The hospital's commitment to holistic care was evident in the inclusion of alternative therapies. However, the limited availability of these services hindered my access to complementary treatments.",Robert Davis,Vaughn PLC,Melissa Davis -759,9905,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Robert Davis,Vaughn PLC,Paul Henry -506,2629,"I had a mixed experience at the hospital. The medical care was exceptional, but the noise level in the ward was higher than expected, affecting my rest.",Jesse Gordon,Vaughn PLC,Justin Robertson -762,2974,"My stay at the hospital was excellent. The medical team was professional, and the facilities were clean and comfortable.",Monique Hall,Vaughn PLC,Gregory Baker -324,508,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Elizabeth Henderson,Vaughn PLC,Monica Hampton -71,7675,"The hospital staff were professional and caring. They took the time to explain my treatment plan and address any concerns I had, making me feel confident in the care I was receiving.",Rebecca Hernandez,Vaughn PLC,Jacob Gibson -355,7974,"The hospital's medical team was thorough in their examinations and treatments. However, the lack of a proper explanation of the billing process left me feeling confused and frustrated.",Benjamin Stevens,Vaughn PLC,Mitchell Hampton -78,4535,"My stay at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Craig Brooks,Vaughn PLC,Andrea Chavez -113,7127,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Connie Tucker,Vaughn PLC,Reginald Miller -128,7150,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Nathan Davis,Vaughn PLC,Rodney Clark -233,232,"I appreciate the hospital's dedication to patient well-being, and the facilities were modern and well-equipped. However, the administrative processes, particularly the billing, were confusing and time-consuming.",Ronald Taylor,Vaughn PLC,Matthew Russell -664,7198,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Lance Gonzalez,Vaughn PLC,Edward Sheppard -835,9650,"I had a positive experience with the medical team. The hospital rooms were comfortable, but the cafeteria food options were limited, and the quality was mediocre.",Miranda Hunt,Vaughn PLC,Michael Knight -406,1481,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Cristina Ortega,Vaughn PLC,Matthew Barton -810,7433,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Danielle Herring,Vaughn PLC,Beth Williams -775,6072,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of personal attention from the staff was disappointing.",Amy Smith,Vaughn PLC,Michael Lindsey -180,755,"The medical team was knowledgeable, and the facilities were clean. However, the lack of privacy curtains in the shared rooms affected my sense of personal space.",Carol Sanchez,Vaughn PLC,Karen Butler -187,9428,"The nursing staff was attentive and caring, making my hospital stay more comfortable. However, the lack of a bedside table made it challenging to keep personal items organized.",Vickie Collins,Vaughn PLC,Heather Smith -624,1210,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Erin Oliver,Vaughn PLC,Brendan Cross -823,107,"The hospital staff was friendly and professional. The cleanliness and hygiene standards were impressive. However, the discharge process felt rushed and disorganized.",Logan Diaz,Vaughn PLC,Allison White -441,2238,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. However, the administrative staff seemed overwhelmed, leading to delays in paperwork.",Jesus Snyder,Vaughn PLC,Angela Gomez -495,3777,"The hospital staff was caring and attentive. The facilities were clean, and the medical care was excellent. However, the noise level in the ward was higher than expected, affecting my rest.",Michael Watson,Vaughn PLC,Mrs. Kelly Berry DVM -333,7583,"I appreciate the hospital's effort to maintain a clean environment. The janitorial staff did an excellent job. On the downside, the waiting times for tests were longer than expected.",Christopher Webster,Vaughn PLC,Lorraine Scott -608,3870,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Gabriela Garcia,Vaughn PLC,Erica Walker -360,9276,"I appreciate the hospital's commitment to patient well-being. However, the lack of a designated quiet area for relaxation and meditation made it difficult to find moments of peace during my stay.",Lori Burns,Vaughn PLC,Ian Brooks -865,5659,"The hospital staff was friendly and efficient. The cleanliness and hygiene were impressive. Unfortunately, the Wi-Fi was unreliable, making it difficult to stay connected with loved ones.",Lauren Williams,Vaughn PLC,Michael Cook -377,4,I am grateful for the attentive care I received during my stay. The hospital environment was calm and conducive to healing.,Mark Vang,Vaughn PLC,Mrs. Brandy Flowers -424,6978,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",Amy Bryant,Vaughn PLC,Paige Young -484,364,"The hospital staff was friendly and attentive. The facilities were clean, and the medical care was top-notch. However, the cafeteria food was subpar, and more diverse options would be appreciated.",Matthew Ward,Vaughn PLC,Douglas Myers -639,5729,"The hospital provided great care, but the lack of communication between different departments led to some confusion about my treatment plan.",Matthew Perez,Vaughn PLC,Hector Barajas -711,3086,"My stay at the hospital was outstanding. The medical team was skilled, and the facilities were top-notch. I felt well taken care of.",Jamie Marks,Vaughn PLC,Bryan Newton -258,81,"I had a mixed experience at the hospital. The medical care was adequate, but the lack of privacy in the shared rooms made it challenging to rest and recover.",Teresa Frost,Rose Inc,Douglas Crawford -130,4786,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Michael Morales,Rose Inc,Olivia Walsh -599,726,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Joy Yoder,Rose Inc,Thomas Rodriguez -27,9062,"The hospital's commitment to patient privacy and confidentiality was reassuring. However, the lack of communication about the potential side effects of prescribed medications left me feeling uninformed about my treatment plan.",Doris Rodriguez,Rose Inc,Chelsea Miller -651,6746,"The hospital staff was compassionate and understanding, but the lack of clear communication about my treatment plan was frustrating.",Victor Dean,Rose Inc,Scott Murillo -697,6964,The hospital's commitment to community outreach and health education was admirable. It reflected a genuine desire to improve the overall well-being of the community beyond just treating illnesses.,Rebecca Wallace,Rose Inc,Gloria Taylor -712,1120,"The hospital staff was friendly and compassionate. However, the noise level in the ward made it challenging to rest properly.",Nicole Keith,Rose Inc,Anthony Steele -990,5456,"The hospital's commitment to continuous improvement was evident in the ongoing renovations. However, the construction noise during my stay was bothersome.",Chelsey Davis,Rose Inc,Tracy Coleman -681,6915,"The medical team was fantastic, providing top-notch care. However, the lack of communication between shifts led to misunderstandings about my treatment plan. Coordination needs improvement.",Shelley Cobb,Rose Inc,Chloe Scott -64,3983,"I had a mixed experience at the hospital. While the medical care was satisfactory, the administrative process was confusing, and it took a long time to get answers to my questions.",Amy Daniels,Rose Inc,Doris Bray -420,6895,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Amy Daniels,Rose Inc,John Lewis -65,886,"The hospital staff were friendly and empathetic. They made me feel heard and supported, which greatly contributed to my overall positive experience during a challenging time.",Elaine Page DVM,Rose Inc,Robert Trevino -479,2975,"The hospital atmosphere was welcoming, and the nurses were always available to address my concerns. However, the billing process was confusing, and it took a while to sort out.",Andrew Bates,Rose Inc,Amy Soto -115,6629,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alexander Jimenez,Rose Inc,Kathy Campbell -141,9908,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Robert Clements,Rose Inc,Michelle Young -164,5152,"The medical team was knowledgeable, and the facilities were clean. Unfortunately, the loud announcements over the intercom were disruptive and made it challenging to rest.",Lance Gonzalez,Rose Inc,Matthew Williams -948,1785,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Leslie Williams,Castaneda-Hardy,Matthew Williams -179,4416,"I appreciate the dedication of the hospital staff in ensuring my well-being. Nonetheless, the lack of variety in the hospital menu made the dining experience monotonous.",Erin Ramirez,Rose Inc,April Bridges -736,118,"The medical team was thorough, and the facilities were modern. Unfortunately, the lack of communication about my treatment plan was frustrating.",Vickie Collins,Rose Inc,Martha Franklin -555,4964,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Rhonda Diaz,Rose Inc,Kevin King MD -220,8531,"I appreciate the hospital's commitment to patient well-being, and the medical staff was attentive. However, the administrative processes, especially the discharge paperwork, were time-consuming and confusing.",Jo Beard,Rose Inc,Russell Mata -559,2421,"My stay at the hospital was excellent. The medical team was responsive, and the facilities were clean and comfortable.",Kayla Lawson,Rose Inc,Jennifer Davidson -755,5775,"The doctors were knowledgeable, and the hospital had a clean environment. The lack of privacy in the shared rooms, however, was a drawback.",Yvonne Jacobs,Rose Inc,Cassandra Chan -250,9873,"I felt like a priority at the hospital, thanks to the attentive medical staff. However, the lack of communication about the potential side effects of my medication was concerning.",Dustin Griffin,Rose Inc,Chad Nguyen -255,8276,"The hospital's medical team was knowledgeable and efficient, but the lack of clear communication about my treatment plan left me feeling anxious and uncertain.",Kyle Campbell,Rose Inc,Breanna Nielsen -414,3056,"The nursing staff at the hospital was compassionate and supportive. However, the billing process was confusing and took a while to resolve.",April Shea,Rose Inc,Tamara Suarez -279,7844,"I had a positive experience overall at the hospital. The nursing staff was caring and attentive, and the facilities were modern and well-equipped.",Tara Payne,Rose Inc,Bridget King -306,3129,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",Victoria Chavez,Rose Inc,Gary Robinson -903,3200,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jason Johnston,Rose Inc,Melissa Malone -577,6289,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Edgar Harris,Rose Inc,Megan Allison -457,4724,"The hospital's commitment to cleanliness was evident. However, the lack of greenery and natural light in the patient rooms made the environment feel a bit sterile.",Karen Klein,Rose Inc,Brendan Garrett -838,6450,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of coordination between departments led to delays in my treatment.",Sara Newman,Rose Inc,Ashley Vincent -825,5980,"The hospital provided excellent care, and the doctors were thorough in their examinations. However, the parking situation was inconvenient, and the fees added up quickly.",Eric Patton,Rose Inc,Shane Drake -704,8255,I appreciated the hospital's emphasis on preventive care and wellness. The educational materials provided valuable insights into maintaining a healthy lifestyle beyond just treating illnesses.,Mary Medina,Rose Inc,Daniel Barrett -745,5250,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Kristin Phillips,Rose Inc,Ryan Espinoza -891,5725,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Andrew Miller,Rose Inc,Allison Woods -925,9446,"The hospital's facilities were impressive, and the medical staff was professional. However, the lack of communication about my discharge plan caused some anxiety.",Joshua Guerrero,Rose Inc,Douglas Moore -364,6471,"The nursing staff provided excellent care, and the medical facilities were modern and well-equipped. However, the lack of coordination between different departments led to delays in my treatment plan.",Teresa Frost,Taylor and Sons,David Johnson -470,8814,"The hospital staff was compassionate, and the facilities were modern. However, the lack of Wi-Fi in the patient rooms made it challenging to stay connected with loved ones.",Robert Davis,Taylor and Sons,Rebecca Young -32,1695,"I cannot thank the hospital staff enough for their kindness and dedication. The doctors were knowledgeable, and the nurses made sure I felt supported every step of the way. A truly positive experience.",Shawn Bryant,Taylor and Sons,Cameron Ross -38,8701,The hospital staff displayed genuine empathy and compassion. It made a significant difference in my overall experience. I felt like more than just a patient; I felt cared for as an individual.,Ryan Curry,Taylor and Sons,Adam Lyons -45,9499,My experience at the hospital was overshadowed by the unavailability of essential medications. This oversight significantly impacted my recovery and raised concerns about the hospital's pharmacy management.,Dustin Perez,Taylor and Sons,Tammy Adams -147,9499,"My stay at the hospital was a breeze. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout.",Dustin Perez,Taylor and Sons,Tammy Adams -60,9657,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Elizabeth Henderson,Taylor and Sons,Shane Colon -62,5353,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Mark Martin,Taylor and Sons,Tanya Robinson -536,7640,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Maria Thompson,Taylor and Sons,Samantha Murray -560,9335,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the waiting times were a bit frustrating.",Shawn Ellis,Taylor and Sons,Gloria Kelly -951,1760,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Logan Hansen,Taylor and Sons,Andrea King -109,4728,"The hospital staff was attentive and compassionate, making my stay more bearable. However, the long wait times for certain procedures were a significant drawback to my overall experience.",Christie Kelly,Taylor and Sons,Tricia Wells -172,1157,"The hospital staff was friendly and caring, creating a positive atmosphere. However, the lack of proper signage made it challenging to navigate the large hospital building.",Lindsay Martinez,Taylor and Sons,Chelsea Henderson -131,5704,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Elaine Medina,Taylor and Sons,Daniel Palmer -138,4318,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Lisa Wallace,Taylor and Sons,Shelby Brown -188,5469,"I received quality care from the medical team, and the facilities were clean. However, the lack of a designated relaxation space for patients was a missed opportunity.",Robert Clements,Taylor and Sons,Kristine Wilson -589,6323,"The hospital provided top-notch medical care, and the facilities were modern and comfortable. However, the parking situation was inconvenient.",Elizabeth Meyer,Taylor and Sons,Denise Tanner -161,7224,"The hospital staff was friendly and accommodating, but the lack of transparency in billing was frustrating. Clearer communication about costs would have improved the overall experience.",Melissa Conway,Taylor and Sons,James Johnson -165,7782,"The nursing staff was fantastic, providing emotional support during a challenging time. However, the lack of aftercare information and resources was a downside.",Linda Morris,Taylor and Sons,Dr. Christian Lee -888,8978,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Courtney Walton,Taylor and Sons,Miss Holly Freeman -288,198,"I had a positive experience overall. The medical staff was competent, and the facilities were clean. The only downside was the noisy environment, which made it challenging to rest.",Nathan Smith,Taylor and Sons,Lori Anderson -561,4619,"The hospital staff was compassionate, but the outdated facilities made the overall experience less pleasant.",Michelle Williams,Taylor and Sons,Thomas Long -607,4584,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Katherine Jones,Taylor and Sons,Charles Anderson -320,8133,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",David Lopez,Taylor and Sons,Mr. Matthew Murray -325,5116,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Melissa Paul,Taylor and Sons,Sarah Calhoun -352,4457,"The hospital's medical team was dedicated to providing quality care. Unfortunately, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Madison Hardin,Taylor and Sons,Jonathan Bryant -690,4457,"The hospital's focus on holistic care, including mental health support, was a pleasant surprise. The counseling services provided added a valuable dimension to my recovery journey.",Madison Hardin,Taylor and Sons,Jonathan Bryant -427,4855,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Anthony Phillips,Taylor and Sons,Lindsay Oneill -963,821,My hospital experience was marred by the unavailability of essential medications. This created unnecessary stress during my recovery.,Jared Diaz,Taylor and Sons,Laura Schmidt -443,9105,"I appreciated the personalized care I received from the hospital staff. They took the time to explain procedures and answer my questions, making me feel well-informed.",Carolyn Clark,Taylor and Sons,Michael Conway -454,2181,"The hospital staff was friendly and attentive, creating a positive atmosphere. However, the lack of clear signage made it challenging to navigate the hospital's expansive layout.",Patrick Williams,Taylor and Sons,Misty Palmer -665,3853,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Taylor and Sons,Sandra Robinson -475,369,"My stay at the hospital was fantastic. The doctors were knowledgeable, and the nurses were very kind and supportive. The facilities were top-notch, making my recovery comfortable.",Steven Rivera,Taylor and Sons,Eric Price -550,6966,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",William Soto,Taylor and Sons,Shane Franklin -535,1930,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Kathryn Johnson,Taylor and Sons,Felicia Patterson MD -548,4522,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Tammy Hart,Taylor and Sons,Lindsay Evans -569,7243,"I had a challenging experience at the hospital. The medical care was satisfactory, but the administrative process was a nightmare.",Jessica Matthews,Taylor and Sons,Julie Patel -699,219,The hospital's commitment to sustainability and eco-friendly practices was evident. It was refreshing to see an institution in the healthcare sector taking steps to reduce its environmental impact.,Mary Mahoney,Taylor and Sons,Thomas Lopez -864,7999,"I can't express my gratitude enough for the excellent care I received. The medical team was exceptional, but the noise from the construction outside my room was unbearable.",Abigail Fuller,Taylor and Sons,Amy Townsend -653,6185,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Donna Mcintyre,Taylor and Sons,Jessica Brown -882,1628,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Tamara Potter,Taylor and Sons,Christopher Bray -574,7162,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Teresa Frost,Walton LLC,Kelsey Mills -469,3085,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were confusing, leading to delays in my treatment.",Joy Yoder,Walton LLC,Luke Lee -546,7801,"The hospital staff was understanding and accommodating, contributing to a positive experience during my stay. However, the outdated facilities could use some improvement for a more modern and comfortable environment.",Ashley Goodwin,Walton LLC,Teresa Zimmerman -36,3263,"I was pleasantly surprised by the quality of food provided at the hospital. It exceeded my expectations, and the dietary staff accommodated my special requests. A positive aspect of my stay.",Todd Mccormick,Walton LLC,Shannon Long -46,5926,"The hospital's physical therapy team was outstanding. They tailored my exercises to my needs, monitored my progress closely, and played a crucial role in expediting my recovery. Highly commendable.",Renee Hicks,Walton LLC,Jonathan Sanford -49,9630,"I experienced a delay in receiving test results, causing anxiety during an already stressful time. Timely communication of results is crucial for patients' peace of mind and overall well-being.",Gerald Smith,Walton LLC,Patrick Cook -89,1810,"The hospital staff were friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable and efficient, contributing to a smooth recovery.",Shelley Cobb,Walton LLC,Larry Herrera -215,1774,"I had a satisfactory experience at the hospital, with the medical team addressing my concerns promptly. Yet, the limited options for dietary restrictions made it challenging to find suitable meals.",Amy Daniels,Walton LLC,Christopher Robinson -70,6140,"My experience at the hospital was a rollercoaster. The medical care was excellent, but the lack of coordination among different departments led to confusion and delays in my treatment.",Kelsey Dillon,Walton LLC,Ryan Jenkins -83,4946,"The hospital staff were accommodating, and the medical team provided excellent care. However, there were issues with the billing process that added unnecessary stress to my overall experience.",Richard Carter,Walton LLC,Rodney Zimmerman -450,5994,"The hospital had a comforting environment, and the medical team was proactive in addressing my concerns. However, the limited visiting hours were a drawback for family support.",Natalie Browning,Walton LLC,Nathan Jackson -400,5638,"The hospital staff was kind and attentive. However, the outdated hospital gowns made me feel uncomfortable during my stay.",Linda Morris,Walton LLC,Henry Wagner -173,3285,"The medical team was attentive, and the facilities were clean. Unfortunately, the lack of natural light in the rooms made the environment feel a bit dreary.",Cristina Ortega,Walton LLC,Kevin Daniel -741,3284,"The nursing staff was compassionate, and the hospital had a modern feel. The slow response time for requests, though, was a drawback.",James Cooper,Walton LLC,Matthew Davis -676,7976,"The hospital's atmosphere was warm and welcoming, but the outdated infrastructure was a letdown. The facility could benefit from some renovations to match the quality of care provided.",Joseph Jones,Walton LLC,Patrick Nelson -685,3873,"My stay was overshadowed by the lack of transparency in billing. Unexpected charges left me frustrated, and the financial aspect of the hospital's services needs to be more straightforward.",Megan Guzman,Walton LLC,Mrs. Karen Garza -425,2476,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Ryan Gutierrez,Walton LLC,Andrew Flores -348,6691,"The hospital's commitment to patient comfort was commendable, with spacious rooms and modern amenities. Nevertheless, the cafeteria hours were limited, and late-night snacks were hard to come by.",Casey Reyes,Walton LLC,Christina Barajas -362,5169,"The medical team at the hospital was professional and thorough in their care. Unfortunately, the lack of parking spaces for visitors made it inconvenient for my family during their visits.",Molly Dean,Walton LLC,Elizabeth Johnson -451,754,I was impressed by the hospital's commitment to patient education. The doctors took the time to explain my condition and treatment options in detail.,Melissa Garrett,Boyd PLC,Elizabeth Johnson -423,3215,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Louis Sullivan,Walton LLC,Alan Fields -614,5326,"My stay at the hospital was fantastic. The nurses were kind and attentive, and the facilities were clean and comfortable.",Patrick Williams,Walton LLC,Mariah Dalton -456,3693,I had a challenging experience at the hospital due to a mix-up in scheduling appointments. This caused delays in my treatment and added unnecessary stress to my recovery.,Kayla Hunter DDS,Walton LLC,Daniel Moreno -670,3693,"Unfortunately, my experience was marred by a lack of communication among the medical staff. It seemed like they were not on the same page, leading to some confusion about my treatment plan.",Kayla Hunter DDS,Walton LLC,Daniel Moreno -531,7407,"My hospital stay was comfortable, thanks to the attentive nursing staff and clean facilities. However, the lack of coordination between different departments created some communication gaps in my treatment.",Kyle Nichols,Walton LLC,Heather Austin -853,3439,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Kathryn Johnson,Walton LLC,Patrick Rodriguez -539,6244,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Aaron Johnson,Walton LLC,Phyllis Bell -966,1003,The hospital had a well-organized system in place for patient care. The medical team collaborated efficiently to provide comprehensive treatment.,Scott Barton,Walton LLC,Jonathan Moore -820,1162,"The hospital environment was welcoming, and the rooms were comfortable. Unfortunately, the food options were limited, and the quality was subpar.",Johnny White MD,Walton LLC,Kimberly Taylor -941,4353,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Julie Long,Walton LLC,Wendy Davis -4,5410,The hospital staff went above and beyond to make me feel comfortable and informed about my treatment. The positive attitude of the medical team greatly contributed to my overall well-being.,Matthew Marks,Little-Spencer,Kayla Hughes -725,3950,"The medical care was excellent, and the cleanliness was impressive. However, the receptionist at the front desk was unhelpful and unfriendly.",Michael Morales,Little-Spencer,John Jordan -326,1690,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Shawn Bryant,Little-Spencer,Greg Webster -247,4182,"I had a mixed experience. The medical care was satisfactory, but the administrative delays in processing paperwork added unnecessary stress to my stay.",Sandra Porter,Little-Spencer,Valerie Willis -48,6822,"The hospital's support staff, including janitorial and administrative personnel, were friendly and helpful. Their positive attitude contributed to a more pleasant overall experience during my stay.",April Bailey,Little-Spencer,Nicole Lane -73,7696,"I had a frustrating experience at the hospital. The communication between the medical staff and me was unclear, leading to misunderstandings about my treatment plan. Improvement is needed in this area.",Maria Thompson,Little-Spencer,Terri Smith -74,8367,"The hospital provided exceptional care, and the nursing staff was attentive and kind. The well-organized approach to my treatment contributed to a positive overall experience.",Shawn Ellis,Little-Spencer,Tracy Dalton -372,3552,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Craig Brooks,Little-Spencer,Patrick Swanson -534,949,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Barbara Warner,Little-Spencer,Daniel Branch -818,949,"The hospital provided top-notch medical care. The nurses were friendly and efficient, making my recovery process smoother.",Barbara Warner,Little-Spencer,Daniel Branch -554,1374,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Trevor Cook,Little-Spencer,Justin Lewis -222,1749,"My overall experience at the hospital was positive, thanks to the dedicated medical team. Nevertheless, the outdated decor in the patient rooms could use a refresh for a more pleasant atmosphere.",Jesse Hall,Little-Spencer,Jake Matthews -106,2466,"My stay at the hospital was challenging. The medical care was adequate, but the lack of attention from the nursing staff left me feeling a bit neglected and frustrated.",Robert Chen,Little-Spencer,Christopher Taylor -327,7382,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Jackson,"Jones, Taylor and Garcia",Christopher Taylor -108,9732,"I had a mix of positive and negative experiences at the hospital. While the medical care was good, the administrative processes were confusing, leading to unnecessary stress.",James Sparks,Little-Spencer,Michelle James -914,9732,"The hospital's medical team was outstanding, but the billing process was a nightmare. It took multiple calls to resolve an overcharge issue on my bill.",James Sparks,Little-Spencer,Michelle James -540,4408,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",James Sparks,Little-Spencer,Carmen Horne -126,764,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Terry Leon,Little-Spencer,Brenda James -732,7499,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Carla Miller,Little-Spencer,Timothy Taylor -203,1724,"The hospital staff was efficient and courteous, making my stay comfortable. Yet, the noise levels in the patient rooms were high, impacting the overall experience.",Joseph Jackson,Little-Spencer,Jaime Santiago -316,5787,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Joseph Jackson,Little-Spencer,Tamara Hart -219,1642,"The medical team at the hospital was knowledgeable and thorough, ensuring a successful recovery. On the other hand, the limited recreational activities for patients made the stay less enjoyable.",Timothy Martinez,Little-Spencer,Jennifer Mejia -286,5578,"I am grateful for the excellent care I received during my stay. The doctors were knowledgeable, and the nurses were kind and attentive.",William Bailey,Little-Spencer,Dave Bass -229,7917,"The nursing staff at the hospital was exceptional, providing personalized care. However, the lack of communication about the post-discharge care plan was a point of concern for me.",Miranda Meza,Little-Spencer,Tonya Gentry -622,7917,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Miranda Meza,Little-Spencer,Tonya Gentry -259,1969,"The hospital's medical staff was exceptional, providing personalized care. However, the lack of communication about the potential side effects of my medication was concerning.",Beverly Jordan,Little-Spencer,Jacob Gallagher -643,5815,"The hospital staff was attentive, and the cleanliness was commendable. Unfortunately, the cafeteria food left much to be desired.",Tara Payne,Little-Spencer,Christy Gregory -997,876,"The hospital's commitment to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Mr. Andrew Keller,Little-Spencer,Daniel Murray -859,8999,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",James Mckinney,Little-Spencer,Dr. Jacob Hart -793,7173,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Charles Kim,Little-Spencer,Kyle Byrd -877,3901,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jared Diaz,Little-Spencer,Mr. Bobby Johnson -464,953,"The medical team at the hospital was exceptional. However, the lack of accessible charging outlets in the patient rooms made it difficult to keep electronic devices charged.",Ashley Jackson,Little-Spencer,Bernard Gibbs -978,7644,"The hospital's commitment to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Jonathan Decker,Little-Spencer,Kevin Ferguson -654,1638,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Krystal Webb,Little-Spencer,Arthur James -637,4511,"The hospital's medical team was top-notch, but the outdated entertainment options in the rooms could use an upgrade.",Jacqueline Mcneil DVM,Little-Spencer,Stephanie Dixon -781,6658,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Destiny Lloyd,Little-Spencer,Emily Hodges -862,7237,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",Barbara Warner,Little-Spencer,Tony Woods -985,78,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Sally Jones,Little-Spencer,David Sanchez -307,268,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Matthew Marks,Brown-Golden,Ashley Armstrong -338,7312,"I was impressed with the professionalism of the medical staff. The only downside was the lack of variety in the hospital menu, which made dining options monotonous.",Julia Lam,Brown-Golden,Jennifer Cochran -403,7312,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Julia Lam,Brown-Golden,Jennifer Cochran -10,1504,"My overall experience was positive, thanks to the attentive nursing staff. However, the noisy environment in the shared rooms affected my ability to rest and recover peacefully.",Ashley Goodwin,Brown-Golden,Anna Morrison -160,5209,"The hospital environment was calming, and the medical team was thorough in their assessments. On the downside, the cafeteria food left much to be desired, with limited healthy options.",Andrew King,Brown-Golden,Mathew Reilly -502,8912,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Renee Brown,Brown-Golden,Kristin Garcia -671,1454,"The nursing team was exceptional, providing compassionate care throughout my stay. The hospital's environment was comforting, and the amenities offered helped make my recovery more bearable.",Tanya Mccarty,Brown-Golden,Allison Hill -129,8609,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Rebecca Hernandez,Brown-Golden,Garrett Acosta -72,6581,"My hospital stay was a positive one. The medical team was efficient, and the facilities were clean and well-maintained. The overall atmosphere contributed to a smooth and comfortable recovery.",Jennifer Johnson,Brown-Golden,Brian Chen -86,7797,"The hospital provided exceptional care, and the medical team was thorough in their approach. The facilities were modern and clean, contributing to a positive overall experience.",Lisa Brewer,Brown-Golden,Ariana Hansen -104,2206,"My experience at the hospital was a bit of a letdown. The facilities were outdated, and the communication between the medical staff and me was not as clear as I would have liked.",Brent Brewer,Brown-Golden,Thomas Torres MD -231,5213,"My stay at the hospital was marked by the efficient and caring nature of the nursing staff. However, the lack of communication about the potential side effects of medications was concerning.",Cheryl Smith,Brown-Golden,Tiffany Stewart -453,6551,"The medical team at the hospital was skilled and efficient. Unfortunately, the outdated entertainment options in the patient rooms made the recovery period less enjoyable.",Elizabeth Meyer,Brown-Golden,John Jensen -334,134,"The nursing staff was exceptional, providing personalized care. However, the lack of communication between departments led to some confusion regarding my treatment plan.",Christine Rogers,Brown-Golden,John Edwards -162,3452,"I received prompt and effective medical care during my stay. However, the constant beeping of machines in the ward was bothersome and made it difficult to get quality rest.",Carla Miller,Brown-Golden,Heather Lewis -706,7684,The hospital's dedication to patient comfort was evident in the well-designed private rooms and comfortable furnishings. It made my recovery more bearable and contributed to an overall positive experience.,Mary Owens,Brown-Golden,Jasmine Patel DDS -530,5268,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Stephen Johnson,Brown-Golden,Brooke Robinson -199,2647,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Marc Romero,Brown-Golden,Travis Kelly DVM -207,3969,"My stay at the hospital was marked by the caring nature of the nursing staff. On the flip side, the limited visiting hours made it challenging for my family to spend time with me.",Joel Copeland,Brown-Golden,Charles Alvarez -901,2551,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Melissa Garrett,Brown-Golden,Michael Rodriguez -953,5441,"My stay at the hospital was excellent. The doctors were knowledgeable, and the nurses were compassionate. I felt well taken care of.",Rachel Oneill,Brown-Golden,Kristin Jones -278,9041,"The hospital's medical team was efficient and knowledgeable, providing excellent care. However, the lack of communication about the potential side effects of my medication was concerning.",Jeffrey Williams,Brown-Golden,Bryan Willis -927,2614,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",James Jackson,Brown-Golden,Miranda Frey -332,2725,"The medical team was outstanding - compassionate, understanding, and highly skilled. Unfortunately, the noise level in the shared rooms made it difficult to get a good night's sleep.",Sean Williams,Brown-Golden,Ashley Solis -419,8315,"I appreciate the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Abigail Cummings,Brown-Golden,Elizabeth Robertson -365,513,"The hospital's facilities were clean and modern, creating a comfortable environment. On the downside, the lack of Wi-Fi in the rooms made it challenging to stay connected and entertained.",Molly Dean,Brown-Golden,Jeremy Whitney -363,3842,"The hospital's commitment to patient care was evident, with a responsive medical team. However, the lack of variety in the cafeteria menu made dining options repetitive and uninspiring.",Edward Miller,Brown-Golden,Matthew Carter -576,1612,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Ashley Torres,Brown-Golden,Nathaniel Nichols -500,9862,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only downside was the limited entertainment options in the patient rooms.",Jonathan Obrien DDS,Brown-Golden,Christopher Tucker -583,3957,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Katie Huber,Brown-Golden,Mikayla Hood -707,4533,"I encountered some issues with the nursing staff's communication. It seemed like there was a lack of coordination, leading to confusion about my medication schedule and treatment plan.",Joseph Gonzales,Brown-Golden,Makayla Reynolds -937,7581,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Eric Marquez,Brown-Golden,Amanda Gonzales -885,6709,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Adrienne Johnson,Brown-Golden,John May -5,5953,"I had a mixed experience during my stay. While the medical care was satisfactory, the administrative process felt disorganized and resulted in unnecessary delays in my treatment.",Michael Morales,Castaneda-Hardy,Megan Short -28,166,"The hospital's dedication to staff training and development was evident in the professionalism of the medical team. Still, the limited availability of support services for mental health was a notable gap in their holistic approach.",Derrick Krause,Castaneda-Hardy,David Casey -37,3585,"The hospital's administrative processes need improvement. I faced challenges with billing and paperwork, causing unnecessary stress during an already difficult time. Streamlining these processes is essential.",Keith Reed,Castaneda-Hardy,Robert Black -153,8988,"The hospital facilities were state-of-the-art, and the medical team was efficient. Unfortunately, the noise levels in the ward were disruptive, affecting my ability to rest.",Keith Reed,Castaneda-Hardy,Anthony Young -609,5025,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Nicole Keith,Castaneda-Hardy,Stacey Cohen -59,7774,"The hospital's nursing staff were a mixed bag. While some were compassionate and attentive, others seemed disinterested and inattentive. Consistent training and expectations are necessary for quality patient care.",Colleen Ward,Castaneda-Hardy,Sarah Thomas -196,4073,"I am grateful for the excellent care I received during my stay. The nursing staff was attentive, and the hospital's commitment to patient well-being was evident in every aspect of their service.",Richard Carter,Castaneda-Hardy,Ms. Gina Ross -437,6371,"The hospital had state-of-the-art equipment, and the medical team was highly skilled. Unfortunately, the billing process was confusing, and I received multiple incorrect invoices.",Richard Carter,Castaneda-Hardy,Carol Warner -92,4928,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Jennifer Quinn,Castaneda-Hardy,Amy Nichols -182,5534,"I received excellent medical care during my stay, and the nursing staff was attentive. Unfortunately, the lack of clear communication about the discharge process caused some anxiety.",Jennifer Quinn,Castaneda-Hardy,Victoria Arroyo -116,8941,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Miss Maria King,Castaneda-Hardy,John Arnold -119,5771,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Cathy Church,Castaneda-Hardy,Jacob Rodriguez -149,1480,"I appreciate the efforts of the hospital staff in providing quality care. The cleanliness and hygiene standards were commendable, contributing to a comfortable environment.",Russell Morris,Castaneda-Hardy,Spencer Good -159,5256,"I am grateful for the dedicated nurses who provided exceptional care. However, the administrative processes were bureaucratic, causing unnecessary delays in scheduling tests.",Amy Rios,Castaneda-Hardy,Alexander Henderson -168,3467,"The hospital provided excellent care, and the staff was compassionate. However, the lack of greenery or outdoor spaces for patients to relax was a downside.",Sabrina Rodriguez,Castaneda-Hardy,Willie Brewer -409,7582,"I appreciate the excellent medical care I received. Still, the noise levels in the hallway outside my room were disruptive and affected my rest.",Jennifer Evans,Castaneda-Hardy,Sarah Love -194,3912,"I had a mixed experience at the hospital. While the doctors were knowledgeable and caring, the wait times were quite long, and the administrative staff seemed disorganized.",James Cooper,Castaneda-Hardy,Richard Morrow -206,9253,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Denise Perez,Castaneda-Hardy,Tara Knight -440,6624,The hospital's commitment to patient well-being was evident. The support groups and counseling services offered were beneficial during my recovery.,Jessica Anderson,Castaneda-Hardy,Emily Harrington -237,1829,"I had a frustrating experience at the hospital. The waiting times were ridiculously long, and the staff seemed overwhelmed and disorganized.",Jason Little,Castaneda-Hardy,Richard Cole -260,2676,"I appreciate the hospital's efforts in maintaining a clean and safe environment. However, the lengthy wait times for routine tests were frustrating and inconvenient.",James Brown,Castaneda-Hardy,Matthew Hall -262,4115,"The hospital provided excellent medical care, and the nursing staff was attentive. Unfortunately, the cafeteria food options were limited and not very appetizing.",Timothy Riley,Castaneda-Hardy,Carlos Ruiz -270,4585,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uncertain.",David Fisher,Castaneda-Hardy,Kenneth Rios -274,1092,"I had a positive experience overall at the hospital. The medical staff was compassionate, and the facilities were clean and well-maintained.",David Perez,Castaneda-Hardy,Autumn Proctor -357,9058,"The nursing staff provided excellent care and support during my stay. However, the outdated TV sets in the rooms and limited channel selection left much to be desired in terms of entertainment.",Thomas Harrell,Castaneda-Hardy,Dylan Hart -929,63,"The hospital provided excellent care, but the billing department's lack of transparency was frustrating and led to unexpected financial stress.",Jason Johnston,Castaneda-Hardy,Amanda Stein DVM -319,3107,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Jesus Snyder,Castaneda-Hardy,Jessica Estes DVM -347,8571,"The hospital's medical staff provided excellent care, and the facilities were clean and well-maintained. Unfortunately, the lack of a proper bedside manner from one of the doctors was disappointing.",Breanna Cruz,Castaneda-Hardy,Jessica Noble -804,2524,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",William Hart,Castaneda-Hardy,Lisa Baker -537,4830,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",Michael Miranda,Castaneda-Hardy,Carlos Graham -667,6690,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Bryan Smith,Castaneda-Hardy,Dan Nash -657,8864,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Virginia Robinson,Castaneda-Hardy,Michelle Brown -851,6707,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the lack of coordination between departments led to delays in my treatment.",Richard Garcia,Castaneda-Hardy,Audrey Howard -806,5549,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Timothy Gibson,Castaneda-Hardy,Allen Gibson -791,269,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michael Morales,Pugh-Rogers,Jacob Meyers -369,7259,"The hospital's commitment to cleanliness and hygiene was commendable, with well-maintained facilities. On the downside, the lack of vegetarian options in the cafeteria limited my meal choices.",Heather Fisher,Pugh-Rogers,Nicholas Cook -8,5259,"I appreciate the dedication of the hospital staff, but the lack of coordination among different departments led to confusion about my treatment plan. Streamlining communication is crucial for patient satisfaction.",Joy Yoder,Pugh-Rogers,Nicole Anderson -21,8517,"I appreciate the hospital's commitment to continuous improvement, as seen in their responsive feedback system. However, the lack of emotional support during my recovery was a notable gap in the overall care.",Ann Joseph,Pugh-Rogers,Melinda Dunn -632,3421,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Robert Pratt,Pugh-Rogers,Nicole Bradley -980,3421,"The hospital's commitment to diversity and inclusion was evident in its staff. However, the lack of translation services for non-English speakers created challenges for some patients.",Robert Pratt,Pugh-Rogers,Nicole Bradley -35,1367,I had a difficult time at the hospital due to the noise level in the shared rooms. It impacted my ability to rest and recover. Consideration for patients' need for rest is crucial in a hospital setting.,Mr. Adrian Pittman II,Pugh-Rogers,Tyler Sanders DVM -760,8307,"The nursing staff was caring, and the hospital had a modern feel. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Doris Rodriguez,Pugh-Rogers,James Murray -431,6184,"The facilities were clean, and the medical team was efficient. However, the constant beeping of machines in the ward was quite annoying and made it difficult to rest.",Joanne Hernandez,Pugh-Rogers,Shane Joseph III -826,3302,"The nursing staff was exceptional, providing personalized care. Unfortunately, the outdated entertainment options in the rooms left much to be desired.",Erika Ingram,Pugh-Rogers,Rickey Payne -47,7429,I encountered some issues with the scheduling of tests and procedures at the hospital. The lack of coordination resulted in unnecessary delays and added stress to an already challenging situation.,Jason Martinez,Pugh-Rogers,Joseph Brown -524,7429,"The hospital staff was exceptional in providing care and support. The facility was clean, and the medical team ensured I understood my treatment plan thoroughly. Overall, a positive experience.",Jason Martinez,Pugh-Rogers,Joseph Brown -832,9279,"The hospital staff was caring and attentive, making me feel well-supported during my stay. Unfortunately, the waiting times for tests were longer than expected.",Ashley Le,Pugh-Rogers,Justin Mitchell -570,3998,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Stephanie Vargas,Pugh-Rogers,Cassandra Myers -944,2450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Lindsay Martinez,Pugh-Rogers,Michael Kelly -505,5325,"The hospital staff was friendly and made my stay comfortable. The medical care was excellent, but the administrative processes were a bit confusing, leading to some frustration.",Alexander Jimenez,Pugh-Rogers,Joshua Simpson -386,6801,"The hospital was clean, and the staff was friendly. However, the waiting times for test results were longer than I anticipated.",Antonio Campbell,Pugh-Rogers,Kyle Arnold -157,7274,"The hospital staff went above and beyond to make me feel comfortable. Nevertheless, the lack of privacy in the shared rooms was a drawback, hindering my recovery.",Mary Owens,Pugh-Rogers,Dylan Smith -468,5402,"The hospital had a comprehensive approach to mental health, offering counseling services. However, the limited outdoor spaces for patients to relax were a missed opportunity.",Kimberly Oliver,Pugh-Rogers,Deanna Deleon -253,9591,"The hospital had a warm and welcoming atmosphere, but the billing process was confusing and took an excessive amount of time to resolve.",Sabrina Rodriguez,Pugh-Rogers,Matthew Pacheco -411,1441,"The medical team at the hospital was knowledgeable and caring. Unfortunately, the cafeteria food did not meet my dietary preferences.",James Cooper,Pugh-Rogers,Maria Williams -628,5159,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",Sheri Howard,Pugh-Rogers,Robert Cooper -763,586,"I was impressed with the level of care I received. The doctors took the time to explain everything thoroughly, and the nurses were compassionate.",Joel Copeland,"Smith, Edwards and Obrien",Robert Cooper -687,6305,"I had a positive experience overall. The medical staff was attentive, and the cleanliness of the facility was impressive. However, the cafeteria food left much to be desired, impacting the overall satisfaction of my stay.",Michelle Williams,Pugh-Rogers,Traci Carpenter -287,3066,"The hospital environment was sterile and cold. The medical care was satisfactory, but the lack of a warm and welcoming atmosphere made the experience less pleasant.",Greg Clark,Pugh-Rogers,Thomas Cabrera -300,9363,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -426,9363,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -586,9363,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -408,459,"The hospital had a clean and well-maintained environment. However, the lack of family-friendly spaces in the waiting area was a downside.",Catherine Howard,Pugh-Rogers,Richard Johnson -458,2471,"The medical team at the hospital was compassionate and attentive. The only downside was the limited options in the hospital cafeteria, making it difficult to find healthy choices.",Richard Miller,Pugh-Rogers,Mark Griffin -472,8840,"I had a positive experience at the hospital. The medical team was thorough, and the support staff went out of their way to make my stay as comfortable as possible.",Robert Thomas,Pugh-Rogers,Jordan Reyes -482,5421,"I had a mixed experience. The medical care was excellent, but the communication between the staff and patients could be improved. Clearer instructions would have been helpful.",Sara Newman,Pugh-Rogers,Dawn Barry -709,4397,"My experience was soured by the lack of parking availability. The inconvenience of finding parking spaces, especially during peak hours, added unnecessary stress to my hospital visit.",Shaun Little,Pugh-Rogers,Mark Solomon -724,1193,"The hospital had a warm and inviting ambiance. Unfortunately, the lack of coordination between departments led to confusion about my treatment plan.",Anthony Lowery,Pugh-Rogers,Jacqueline Adams -898,8351,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Hannah Roberts,Pugh-Rogers,Thomas Garcia -6,416,"The hospital's emergency response team was quick and efficient when I was admitted. However, the follow-up care left much to be desired, with long waits for routine check-ups and consultations.",Julia Lam,Lewis-Nelson,Heather Turner -99,8385,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Julia Lam,Lewis-Nelson,Thomas Kelly -24,7628,"The cleanliness and hygiene standards at the hospital were exceptional, contributing to a sense of safety. However, the lack of family-friendly accommodations limited the support system available during my stay.",Robert Pratt,Lewis-Nelson,James Lynch -31,4342,"My experience at the hospital was less than satisfactory. The wait times were unbearable, and the lack of communication from the staff was frustrating. Improvement is definitely needed in their efficiency.",Laura Hamilton,Lewis-Nelson,Alexander Sellers -461,7793,"The hospital had a warm and inviting atmosphere. The only drawback was the noise levels in the shared rooms, making it challenging to rest and recover.",Kelly Scott MD,Lewis-Nelson,Michelle Walls -575,3197,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -615,3197,"I had a mixed experience at the hospital. While the medical care was excellent, the waiting times were frustratingly long.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -296,4326,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Stephanie Vargas,Lewis-Nelson,Linda Allen -144,9762,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Christine Rogers,Lewis-Nelson,William Valencia -635,482,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Amy Rios,Lewis-Nelson,Micheal Duran -996,7556,I encountered some issues with the billing department at the hospital. It took multiple calls to resolve the errors in my invoice.,Erin Ramirez,Lewis-Nelson,Sara House -190,5214,"I appreciate the excellent care I received from the medical team. Unfortunately, the outdated entertainment options in the room made the recovery period less enjoyable.",Timothy Wilson,Lewis-Nelson,Joseph Schneider -344,5414,"The hospital's commitment to patient well-being was evident, with a responsive medical team. On the downside, the TV channels in the rooms were limited, and the entertainment options were lacking.",Andrew James,Lewis-Nelson,Ashley Greene -204,5979,"The hospital's medical team was knowledgeable and attentive, but the billing process was confusing and required multiple follow-ups to resolve discrepancies.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -234,5979,"The medical team at the hospital was knowledgeable and caring, making my stay comfortable. On the other hand, the lack of coordination between departments led to some delays in my treatment plan.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -285,8608,"The hospital staff was friendly and compassionate. However, the wait times were quite long, and it was frustrating to spend so much time waiting for tests and consultations.",Alexis Hutchinson,Lewis-Nelson,Gregory Oliver -796,9193,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Mark Vang,Lewis-Nelson,Thomas Roberts -723,6720,The doctors were attentive and explained things clearly. The noise from other patients made it difficult to get a good night's sleep.,Miguel Davidson,Lewis-Nelson,Kayla Gardner -455,9730,"The hospital's commitment to patient privacy was commendable. The staff ensured confidentiality, creating a safe space for open communication about health concerns.",Brian Rivera,Lewis-Nelson,Stephanie Wallace -878,5975,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Renee Young,Lewis-Nelson,Linda Neal -485,7292,"I had a positive experience overall. The medical team was efficient, and the facilities were well-maintained. The only downside was the lack of information provided about the treatment plan.",David Carter,Lewis-Nelson,Eric Schwartz -669,4461,My stay at the hospital was remarkable. The doctors were not only knowledgeable but also took the time to explain everything in detail. The cleanliness and organization of the facility were impressive.,Jennifer Roberts,Lewis-Nelson,William Grant -684,4486,"The staff's empathy and kindness were a silver lining during a challenging time. Despite the hospital's aging infrastructure, the genuine care provided by the nurses and doctors made the overall experience positive.",Eric Marquez,Lewis-Nelson,Joshua Duncan -819,1766,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays in paperwork.",Angela Stein,Lewis-Nelson,Joshua Fitzgerald -861,5,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Jennifer Baldwin MD,Lewis-Nelson,Patrick Parker -860,5018,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Heather Fisher,Boyd PLC,Samantha Morgan -178,615,"The nursing staff was empathetic and supportive throughout my stay. Unfortunately, the lack of communication about changes to my treatment plan was a source of frustration.",Derrick Krause,Boyd PLC,Luis Cooper -513,615,"I had a mixed experience at the hospital. The medical care was exceptional, but the communication between different departments was lacking, leading to some confusion.",Derrick Krause,Boyd PLC,Luis Cooper -42,7264,"The hospital's environment was welcoming, and the volunteers went out of their way to make patients feel comfortable. A friendly and supportive atmosphere that contributed positively to my overall experience.",Robin Rose,Boyd PLC,Anthony Thomas -54,3636,"I had a positive experience with the hospital's rehabilitation services. The therapists were knowledgeable, and the rehabilitation plan was tailored to my specific needs. A crucial aspect of my recovery.",Monique Hall,Boyd PLC,Jessica Ross -381,776,"The hospital staff was accommodating and made sure I felt comfortable. However, the billing process was confusing and took a while to resolve.",Anthony Lynch,Boyd PLC,Annette Mitchell -843,776,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Anthony Lynch,Boyd PLC,Annette Mitchell -378,4892,"The hospital had state-of-the-art equipment, but the lack of communication between the medical team and patients was frustrating.",Mark Martin,Boyd PLC,Erica Roberts -176,1456,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Scott Scott,Boyd PLC,Victoria Mathews -90,2434,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Trevor Cook,Boyd PLC,Christopher Carson -117,6659,"My stay at the hospital was a mix of highs and lows. The medical care was competent, but the lack of communication about changes in my treatment plan left me feeling uneasy.",Drew Sanchez,Boyd PLC,Anthony Wood -558,6659,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",Drew Sanchez,Boyd PLC,Anthony Wood -668,6659,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Drew Sanchez,Boyd PLC,Anthony Wood -125,7637,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amanda Rogers,Boyd PLC,Alexandria Jones -133,7328,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Christy Huff,Boyd PLC,Jon Williamson -422,1498,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Ryan Thomas,Boyd PLC,Michael Delgado -167,3015,"I appreciated the personalized care from the doctors, but the constant changing of nurses during shifts led to inconsistent communication about my treatment plan.",Larry Campbell,Boyd PLC,Seth Smith -490,5675,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Joseph Jackson,Boyd PLC,Debra Lee -679,7180,"I encountered some issues with the administrative staff, who seemed disorganized and overwhelmed. This affected the overall efficiency of the hospital, and improvements in this area are essential.",Joel Copeland,Pearson LLC,Debra Lee -545,4017,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",John Henderson,Boyd PLC,Maria Cisneros -238,9507,"The hospital staff went above and beyond to make me feel comfortable during my stay. The facilities were clean, and the food was surprisingly good.",Erin Oliver,Boyd PLC,Christopher Gonzalez -557,6005,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Nathan Smith,Boyd PLC,Donna Singleton -528,4173,"The hospital staff was friendly and caring, making my stay pleasant. However, the administrative processes were slow and disorganized, causing unnecessary delays and frustration.",Beverly Jordan,Boyd PLC,Dr. Janet Ramos -293,7784,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative staff was unhelpful and seemed disinterested in addressing my concerns.",Donna Williams,Boyd PLC,Michael Gutierrez -932,532,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Michael Watson,Boyd PLC,Heather Walters -783,4911,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Edward Miller,Boyd PLC,Sarah Lopez -909,8406,"The nursing staff was incredibly compassionate and attentive, but the administrative staff seemed overwhelmed and disorganized.",Sarah Brewer,Boyd PLC,Erik Fletcher -627,7329,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Krystal Webb,Boyd PLC,Eric Moore -634,7231,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Abigail Fuller,Boyd PLC,Lisa Ramirez -680,1310,"The hospital's serene environment and friendly staff positively impacted my recovery. The bright and airy rooms, coupled with the caring nurses, made my stay as pleasant as it could be under the circumstances.",Bernard Miller,Boyd PLC,Donna Weaver -846,1310,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",Bernard Miller,Boyd PLC,Donna Weaver -578,2639,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Joy Yoder,Garcia Ltd,Dylan Brown -508,5605,"My overall experience was positive. The hospital staff was friendly, and the medical care was exceptional. The only drawback was the limited variety in the hospital menu.",Chase Mcpherson Jr.,Garcia Ltd,Robert Decker -834,3899,"The hospital provided good care overall. The nurses were compassionate, but the administrative processes were confusing and added unnecessary stress.",Mark Nichols,Garcia Ltd,Jo Ramirez -33,7503,My stay at the hospital was marred by a lack of cleanliness in my room. It was evident that the facilities were not properly maintained. Disappointing given the importance of hygiene in a healthcare setting.,Victor Dean,Garcia Ltd,Stacy Lindsey -746,3985,"The hospital had a modern and clean environment, and the medical staff was attentive. The slow response time for basic requests, however, was frustrating.",Rebecca Wallace,Garcia Ltd,Cathy Chavez -538,4977,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Ryan Curry,Garcia Ltd,Regina Vargas -226,4415,"My experience at the hospital was positive overall. The medical team was thorough and caring, but the lack of transparency about the billing process was a point of frustration.",Scott Rivera,Garcia Ltd,Monica Romero -991,5856,"I appreciated the hospital's efforts to create a child-friendly environment in the pediatric ward. The play area, though, could use more interactive and educational toys.",Renee Brown,Garcia Ltd,John Avery -739,5123,"The medical care was top-notch, and the hospital had a calm ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Jennifer Johnson,Garcia Ltd,Dr. Christopher Rogers -691,630,"The nursing staff was exceptional, providing attentive and personalized care. However, the administrative processes were confusing, and the lack of clear communication about my treatment plan left me anxious.",Craig Brooks,Garcia Ltd,Sherry Williams -79,6024,"I had a positive experience at the hospital. The medical staff was competent and caring, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Aaron Graves,Garcia Ltd,Jessica Rogers -354,6360,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Tina Wall,Garcia Ltd,Christopher Brown -716,6598,"I received prompt attention from the medical staff, and the technology used for diagnosis was impressive. The cleanliness, however, left much to be desired.",Brent Brewer,Garcia Ltd,Allison Elliott -121,7157,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Cheryl Smith,Garcia Ltd,Michael Johnson -582,7157,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Cheryl Smith,Garcia Ltd,Michael Johnson -145,2432,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,Garcia Ltd,Susan Ward -893,1990,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Amy Rios,Garcia Ltd,Dr. Charles Burton MD -175,7007,"The hospital provided quality care, and the nursing staff was attentive. However, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Amy Smith,Garcia Ltd,Stacy Jennings -789,3581,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Joseph Jackson,Garcia Ltd,David Crawford -240,2817,"The hospital environment was welcoming, and the support staff was always ready to assist. However, the billing process was confusing and stressful.",William Bailey,Garcia Ltd,Eric Williams -935,9450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Logan Diaz,Garcia Ltd,Mark Robinson -358,5687,"The hospital's medical team was knowledgeable and efficient in their care. Unfortunately, the frequent interruptions for routine checks made it challenging to get a good night's sleep.",Erik Guerrero,Garcia Ltd,Ryan Dodson -432,9805,"My time at the hospital was challenging, but the nursing staff made all the difference. Their kindness and patience truly made the experience more bearable.",Steven Watson,Garcia Ltd,George Barnes -476,8120,"I had a mixed experience at the hospital. The medical care was excellent, but the food quality left much to be desired. It's crucial to consider both aspects for a holistic view.",Candice Manning,Garcia Ltd,Christina Andrews -938,6267,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Candice Manning,Garcia Ltd,Tammy Benson DVM -519,4046,"I had a mixed experience at the hospital. The nursing staff was kind and caring, but there were delays in getting test results, causing some anxiety. The facility, however, was top-notch.",Terry Chan,Garcia Ltd,Jimmy Johnson -906,5658,"The hospital staff was exceptional, and I received excellent care. However, the lack of communication between departments led to some confusion about my treatment plan.",George Lee,Garcia Ltd,Matthew Montgomery -748,3520,"The nursing staff was compassionate, and the hospital facilities were top-notch. The limited visiting hours, though, made it challenging for my family to be present.",Michael Robinson,Garcia Ltd,Mario Stone -907,205,"I was impressed by the cleanliness and organization of the hospital. The medical team was efficient and caring, making my recovery smoother.",Timothy Gibson,Garcia Ltd,Rachel Williams -921,8944,"The medical staff was attentive and caring, providing quality care. Unfortunately, the noise from construction outside my room was disruptive and affected my rest.",Timothy Gibson,Garcia Ltd,Natalie Rojas -852,3226,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of clear communication about the post-discharge care plan was a concern.",Steven Smith,Garcia Ltd,Amber Stout -981,2127,"I appreciated the hospital's efforts to create a comfortable environment for patients. However, the noise from construction in the adjacent building was disruptive.",Taylor Williams PhD,Garcia Ltd,Tasha Dunn -85,55,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of communication between the staff and me made me feel isolated and frustrated.",Andrew King,"Rush, Owens and Johnson",Frank Reid -398,8800,"I appreciated the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Andrew King,"Rush, Owens and Johnson",William Foster -895,1840,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Thomas Middleton,"Rush, Owens and Johnson",Thomas Jacobs -943,9081,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Dustin Perez,"Rush, Owens and Johnson",Blake Martin -611,5881,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -782,5881,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -171,6286,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were confusing and resulted in billing errors that took weeks to resolve.",Robert Chen,"Rush, Owens and Johnson",Gregory Salazar -375,5366,"The nursing staff at the hospital was exceptional, providing compassionate care. However, the food options were limited and not great.",James Sparks,"Rush, Owens and Johnson",Jesus Griffin -213,6249,"The hospital's facilities were modern and well-maintained, contributing to a positive overall experience. Unfortunately, the billing process was confusing and required extensive clarification.",Veronica Moore,"Rush, Owens and Johnson",Heather Ferguson -343,2532,"The nursing staff was compassionate, and the medical facilities were up to par. Nonetheless, the cafeteria food left much to be desired, and I found myself ordering from outside frequently.",Robert Clements,"Rush, Owens and Johnson",Phyllis Waters -273,5700,"The hospital's medical staff was skilled and caring, providing excellent care. Unfortunately, the noise levels in the shared rooms made it challenging to rest and recover.",Geoffrey Jacobson,"Rush, Owens and Johnson",Timothy Avila -501,6523,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Russell Morris,"Rush, Owens and Johnson",John Martinez -833,6067,"The medical care I received was excellent, and the facilities were clean. However, the lack of communication between shifts caused confusion about my treatment plan.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -976,6067,"The hospital's location was convenient, and the shuttle service for patients was a thoughtful touch. However, the noise from construction nearby disrupted my rest.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -613,3089,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Linda Morris,"Rush, Owens and Johnson",Kaitlin Miller -617,9533,"I appreciate the professionalism of the doctors, but the lack of communication about my treatment plan left me feeling anxious.",Amy Smith,"Rush, Owens and Johnson",Cheryl Watts -193,177,"My stay at the hospital was exceptional. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout my time there.",Andrew James,"Rush, Owens and Johnson",Scott Nicholson -473,6462,"The hospital had a welcoming atmosphere, and the medical team was attentive. On the downside, the noise levels in the hallway made it challenging to rest during the night.",Andrew James,"Rush, Owens and Johnson",Matthew Walsh -600,827,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Rush, Owens and Johnson",Carolyn Nguyen DVM -210,579,"I had a positive experience with the hospital's medical staff, who went above and beyond to ensure my comfort. The only drawback was the limited availability of certain medical specialists.",Julie Walker,"Rush, Owens and Johnson",Leslie Kennedy -412,3377,"I had a positive overall experience at the hospital. The medical staff was attentive, and the facilities were well-maintained.",Melissa Garrett,"Rush, Owens and Johnson",James Villanueva -815,7948,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Jason Little,"Rush, Owens and Johnson",Melissa Barnes -243,2874,"I had a positive experience with the skilled and compassionate healthcare professionals. However, the outdated facilities could use some modernization.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -309,2874,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -401,2561,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Fisher,"Rush, Owens and Johnson",Christopher Collins -809,3058,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",James Allen,"Rush, Owens and Johnson",Jacqueline Cooper -520,3379,"The hospital staff went above and beyond to ensure my comfort and well-being. The doctors were thorough in explaining my condition, making me feel informed and at ease throughout my stay.",Marissa Shepherd,"Rush, Owens and Johnson",Timothy Hill -918,5640,"The hospital staff went above and beyond to make me feel comfortable. On the downside, the parking situation was chaotic, and finding a spot was a daily struggle.",Carmen Larsen,"Rush, Owens and Johnson",Gene Anderson -435,4134,"I am grateful for the exceptional care I received at the hospital. The nurses were not only skilled but also empathetic, making a significant impact on my recovery.",Jared Diaz,"Rush, Owens and Johnson",Angie Murphy -496,1401,"I am grateful for the care I received at the hospital. The medical team was compassionate, and the facilities were well-maintained. The only downside was the limited visiting hours.",Candice Manning,"Rush, Owens and Johnson",Tonya Ferguson -773,6383,"I encountered some communication issues during my stay. The medical staff seemed disorganized, and it led to confusion about my treatment plan.",Jacqueline Johnson,"Rush, Owens and Johnson",Jessica Mays -677,1787,"I had mixed feelings about my stay. While the medical team was skilled and attentive, the lack of follow-up after discharge left me feeling a bit neglected. A simple check-in would have been appreciated.",Christopher Stanley,"Rush, Owens and Johnson",Shaun Tran -917,3104,"I encountered both positive and negative aspects during my hospital stay. The medical care was excellent, but the facility could benefit from more patient-friendly amenities.",Kristopher Wiley Jr.,"Rush, Owens and Johnson",Jeffrey Wilkerson -752,9328,"The nursing staff was caring, and the hospital had a modern feel. The lack of clear communication about my treatment plan, however, was frustrating.",Julia Hoffman,"Rush, Owens and Johnson",David Jones -67,9399,"The hospital's medical team was exceptional, providing thorough and personalized care. The modern facilities and state-of-the-art equipment added to the overall positive atmosphere.",Christina Anderson,"Smith, Edwards and Obrien",Jesse Huerta -30,2721,"The hospital staff went above and beyond to ensure my comfort. The nurses were attentive, and the facility was clean and well-maintained. I felt well taken care of throughout my stay.",Keith Reed,"Smith, Edwards and Obrien",Tracy Davidson -61,6591,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Anthony Lynch,"Smith, Edwards and Obrien",David Simpson -313,167,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",Stephanie Vargas,"Smith, Edwards and Obrien",Joseph Bailey -449,8972,"My experience at the hospital was bittersweet. The medical care was excellent, but the lack of parking spaces made it inconvenient for visitors, causing unnecessary stress.",Aaron Graves,"Smith, Edwards and Obrien",Sharon Lewis -84,1841,"My experience at the hospital was positive overall. The medical team was competent, and the facilities were modern and well-equipped. The nursing staff was attentive and compassionate.",Tara Harris,"Smith, Edwards and Obrien",Garrett Gomez -650,5387,"The hospital's medical team was knowledgeable and supportive, but the lack of vegetarian options in the cafeteria was disappointing.",Jesse Hall,"Smith, Edwards and Obrien",Andrew Cantrell -111,3540,"I am grateful for the outstanding care I received at the hospital. The medical team was thorough in explaining my condition, and the facilities were well-maintained.",Lindsay Martinez,"Smith, Edwards and Obrien",Jacqueline Wilson -1003,4133,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Geoffrey Jacobson,"Smith, Edwards and Obrien",David Martinez -777,2150,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jennifer Murray,"Smith, Edwards and Obrien",Matthew Stokes -155,5542,"I had a positive experience overall. The hospital staff, from doctors to janitors, was friendly and helpful. The only drawback was the limited parking space, causing inconvenience for visitors.",Ronald Taylor,"Smith, Edwards and Obrien",Laura Gonzalez -674,341,The billing process at the hospital was a nightmare. Hidden fees and unclear charges made it difficult to understand the final cost of my treatment. This aspect needs significant improvement.,Ashley Young,"Smith, Edwards and Obrien",Robert Ho -766,6492,"I had a mixed experience. The medical care was good, but the noise level in the ward was disruptive, making it challenging to rest properly.",Bryan Jones,"Smith, Edwards and Obrien",Matthew Cannon -947,3729,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Alex Anderson,"Smith, Edwards and Obrien",Crystal Johnson -275,4179,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were confusing, causing delays in my treatment.",Katherine Jones,"Smith, Edwards and Obrien",Beverly Monroe -330,3707,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",David Lopez,"Smith, Edwards and Obrien",Larry Mitchell Jr. -361,5607,"The nursing staff was compassionate and attentive, ensuring my comfort. Nevertheless, the outdated decor in the patient rooms created a somewhat dreary atmosphere.",Edgar Harris,"Smith, Edwards and Obrien",Katie Santos -526,4655,"I am grateful for the attentive care I received at the hospital. The medical staff was prompt and efficient, and the facility was well-maintained. A positive experience overall.",Dean Hart,"Smith, Edwards and Obrien",Marcus Charles -430,2228,The hospital staff went above and beyond to make me comfortable during my stay. They even organized daily activities to keep patients engaged. Impressive service!,Nancy Nichols,"Smith, Edwards and Obrien",Martin Gilbert -871,749,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Kayla Hunter DDS,"Smith, Edwards and Obrien",Jennifer Wang -459,5408,"The hospital had an efficient and caring nursing staff. On the flip side, the lack of communication about the expected wait times for tests was a bit frustrating.",Deborah Sampson,"Smith, Edwards and Obrien",Danielle Lee -993,308,"The hospital's commitment to patient-centered care was evident. However, the outdated magazines in the waiting area could use an upgrade.",Ryan Jarvis,"Smith, Edwards and Obrien",Erin Porter -721,6662,"The nursing staff was caring and responsive to my needs. The outdated decor and furniture in the rooms, however, made the stay less comfortable.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -924,6662,"I had a positive experience with the hospital's medical team, who were knowledgeable and compassionate. However, the outdated decor in the rooms could use an upgrade.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -961,8520,"The hospital's facilities were outdated, and the lack of modern equipment was concerning. The medical care, though, was satisfactory.",Jeremy Arnold,"Smith, Edwards and Obrien",Zachary Thompson -979,2934,"I had an overall positive experience at the hospital. The medical team was thorough, and the rehabilitation services were beneficial to my recovery.",Elizabeth White,"Smith, Edwards and Obrien",Scott Morrison -874,9245,"The hospital staff was courteous, and the cleanliness standards were impressive. Unfortunately, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Christina Anderson,Shea LLC,Dr. John Fischer -43,2353,"The hospital staff lacked proper communication among themselves, leading to confusion about my treatment plan. Clear and cohesive communication is essential for patient care and overall satisfaction.",Erika Ingram,Shea LLC,Dennis Fitzgerald -875,8780,"I received excellent care at the hospital, and the medical team was proactive in addressing my concerns. Nevertheless, the outdated decor in the patient rooms could use a refresh.",Dustin Perez,Shea LLC,John Henderson -514,6910,"The hospital staff was compassionate, and the medical care was excellent. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Jason Martinez,Shea LLC,Andrea Byrd -567,9854,"The nursing staff was exceptional, and the hospital's cleanliness was impressive. However, the food quality could be improved.",Meagan Herrera,Shea LLC,James Vang -66,7387,"My stay at the hospital was disappointing. The cleanliness of the facilities was subpar, and the lack of attention from the nursing staff made me feel neglected and frustrated.",Tanya Mccarty,Shea LLC,Elizabeth Clark -880,5924,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Craig Brooks,Shea LLC,Megan Kline -81,8535,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Scott Scott,Shea LLC,Angela Zhang -94,6448,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Jesse Hall,Shea LLC,Tammy Flores -890,230,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Dennis Edwards,Shea LLC,Wanda Moore MD -366,5837,"The medical team was efficient and knowledgeable, ensuring my recovery was on track. Nevertheless, the constant beeping of machines in the shared rooms became a source of irritation.",Robert Clements,Shea LLC,Sarah Long -142,2864,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Elizabeth Meyer,Shea LLC,Danielle Shannon -150,9687,"While the medical care was excellent, the wait times for tests and results were quite long. It added unnecessary stress to an already challenging situation.",Jennifer Murray,Shea LLC,Dan Potter -267,6666,"I had a positive experience overall at the hospital. The medical staff was compassionate and knowledgeable, and the facilities were clean and comfortable.",Tamara Potter,Shea LLC,Amanda Cook -522,2509,"My stay at the hospital was nothing short of excellent. The medical team was not only professional but also compassionate. The facility was well-equipped, and the overall atmosphere was positive.",Tamara Potter,Shea LLC,Miss Denise Webster DVM -905,9361,"I had a mixed experience at the hospital. While the medical care was top-notch, the wait times were frustratingly long, and the facilities felt outdated.",Kimberly Oliver,Shea LLC,Lisa Williams -184,6230,"The medical team was efficient, and the facilities were modern. Unfortunately, the lack of Wi-Fi in the rooms made it difficult to stay connected with work and loved ones.",Jennifer Evans,Shea LLC,Brian Brock -208,2256,"The medical team at the hospital was knowledgeable and thorough. Nevertheless, the lack of transparency regarding the treatment plan and options was a point of concern for me.",Jessica Anderson,Shea LLC,Cindy Dixon -281,933,"The hospital's medical staff was dedicated and caring, providing personalized attention. However, the lack of communication about changes in my treatment plan was frustrating.",Nathan Smith,Shea LLC,April Eaton -374,2834,"I had a rough time at the hospital. The wait times were long, and the staff seemed overwhelmed and disorganized.",John Novak,Shea LLC,Charles Fields -264,852,"The hospital's medical team was thorough and efficient, providing excellent care. However, the uncomfortable beds made it challenging to get a good night's sleep.",Michelle Williams,Shea LLC,Christopher Adams -863,8509,"My stay at the hospital was surprisingly pleasant. The doctors were knowledgeable, and the nurses went above and beyond to make me comfortable. However, the food was quite bland.",Jason Johnston,Shea LLC,Jennifer Chapman -692,7719,I appreciated the hospital's efforts to create a positive environment. The cheerful decor and the availability of recreational activities helped alleviate the stress of being in a medical setting.,James Jackson,Shea LLC,Kerry Pittman -603,1881,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Abigail Cummings,Shea LLC,Clinton Gutierrez DDS -370,9901,"The medical team at the hospital was dedicated and thorough in their care. However, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Austin Alvarado,Shea LLC,Melissa Greer -394,8125,"I received top-notch medical care, but the lack of clear communication about my treatment plan left me feeling uncertain about my recovery.",Nathan Fischer,Shea LLC,Erik Robinson -710,2540,The hospital's commitment to patient safety was evident in the strict adherence to infection control measures. I felt reassured about my well-being throughout my stay.,Ryan Kirk,Shea LLC,Andrea Poole -969,9567,"The nursing staff was incredibly kind and attentive, making my hospital stay more bearable. Unfortunately, the lack of parking spaces was a major inconvenience.",Sara Newman,Shea LLC,Christopher Williams -696,3128,"My stay was marked by a lack of attention from the nursing staff. While the medical care was satisfactory, the nurses seemed overworked, leading to delays in responding to my requests.",Gary Swanson,Shea LLC,Nicole Shea -808,7973,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",George Lee,Shea LLC,Barbara Schwartz -544,8791,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Jacqueline Johnson,Shea LLC,Mr. Christopher Diaz -754,5928,"The hospital facilities were impressive, and the medical staff was efficient. The outdated technology for patient records, however, caused delays in my treatment.",Kelly Massey,Shea LLC,Nicole Brewer -590,8496,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were clean and well-equipped.",Joseph Gonzales,Shea LLC,Jennifer Campbell -722,9494,"The hospital was well-maintained, and the medical team was thorough. The cafeteria food, on the other hand, was subpar at best.",Julie Zimmerman,Shea LLC,Alicia Rios -727,9494,"The nursing staff was compassionate, and the hospital grounds were well-maintained. However, the outdated TV in the room was a letdown.",Julie Zimmerman,Shea LLC,Alicia Rios -928,7296,"The hospital's medical team was competent, and the facilities were clean. On the downside, the cafeteria food left much to be desired in terms of variety and taste.",Robert Davis,"Jones, Taylor and Garcia",Austin Webb -747,5957,"The doctors were knowledgeable, and the hospital had a welcoming atmosphere. The lack of Wi-Fi in the rooms, however, was inconvenient.",Alyssa Thomas,"Jones, Taylor and Garcia",Ariel Estrada -795,7946,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",William Mclaughlin,"Jones, Taylor and Garcia",Lindsay Sosa -986,2414,"The hospital's involvement in medical research and clinical trials was a key factor in choosing it for my treatment. The cafeteria food, however, was disappointing.",Veronica Moore,"Jones, Taylor and Garcia",Regina Dorsey -629,4149,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Amber Thomas,"Jones, Taylor and Garcia",William Wood -290,6743,"I was disappointed with my hospital stay. The medical care was average at best, and the staff seemed overwhelmed and disorganized.",Lisa Wallace,"Jones, Taylor and Garcia",Mark Maxwell -139,946,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Natalie Browning,"Jones, Taylor and Garcia",Joshua Sullivan -595,451,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jennifer Evans,"Jones, Taylor and Garcia",Charles Wade -912,2376,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Chad Peterson,"Jones, Taylor and Garcia",Priscilla Tate -189,9920,"The hospital provided top-notch medical care, and the staff was attentive. However, the noisy construction outside the window disrupted my ability to rest peacefully.",Stephen Johnson,"Jones, Taylor and Garcia",Benjamin Stone -499,1917,"The hospital staff was friendly and accommodating. The facilities were modern, and the medical care was top-notch. However, the discharge instructions were a bit unclear.",Dustin Griffin,"Jones, Taylor and Garcia",Lisa Irwin -295,7443,"The hospital provided top-notch medical care, and the facilities were state-of-the-art. Unfortunately, the waiting area was crowded, and the noise level was disruptive.",Jose Carroll,"Jones, Taylor and Garcia",Timothy Rodriguez -850,6481,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about the treatment plan was a drawback.",Joe Mendoza,"Jones, Taylor and Garcia",Ronnie Padilla -304,947,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joseph Santiago,"Jones, Taylor and Garcia",Jennifer Hoover -318,3039,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joyce Brown,"Jones, Taylor and Garcia",Tina Ibarra -512,4174,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the lack of clear communication about the treatment plan was a bit frustrating.",James Jackson,"Jones, Taylor and Garcia",Lisa Bush -438,2570,"The hospital provided top-notch care, and the rehabilitation services were outstanding. On the downside, the noise levels in the hallway made it difficult to rest at times.",Sean Best,"Jones, Taylor and Garcia",Jennifer Cooper -489,8730,"The hospital staff was attentive, and the medical care was exceptional. However, the billing process was confusing, and it took several calls to clarify the charges.",Tracy Garza,"Jones, Taylor and Garcia",Jeffrey Koch -384,3838,"The medical team was knowledgeable and caring, but the lack of parking spaces made it inconvenient for visitors.",Michael Gibbs,"Jones, Taylor and Garcia",Matthew White -388,6516,"The hospital had a modern infrastructure, but the communication between departments seemed lacking, leading to confusion about my treatment plan.",Alexander Rodriguez,"Jones, Taylor and Garcia",Daniel Klein -488,6887,"My stay at the hospital was comfortable. The nursing staff was attentive, and the rooms were clean. The only drawback was the limited variety in the hospital menu.",Jon Prince,"Jones, Taylor and Garcia",Jeremy Willis -497,4745,"The hospital staff was professional, and the medical care was exceptional. However, the lack of parking space made it challenging for visitors to find convenient spots.",David Foster,"Jones, Taylor and Garcia",Abigail Grant -542,7064,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Daniel Mack,"Jones, Taylor and Garcia",Teresa Hernandez -553,6777,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",Kelly Massey,"Jones, Taylor and Garcia",Adrienne Jackson DVM -785,2593,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Brittany Harris,"Jones, Taylor and Garcia",Ryan Jacobs -923,6111,"The hospital staff was friendly and accommodating, but the waiting times for tests and consultations were longer than expected.",Christopher Jordan,"Jones, Taylor and Garcia",Dylan Alvarez -972,4296,The hospital's commitment to patient safety was evident. The strict adherence to hygiene protocols gave me confidence in the cleanliness of the facilities.,Jessica Rodriguez,"Jones, Taylor and Garcia",Joshua Myers -18,4239,"The medical team's expertise and commitment to patient well-being were commendable. Yet, the bureaucratic hurdles in scheduling follow-up appointments need to be addressed for a smoother patient experience.",Thomas Middleton,Schultz-Powers,Yolanda Smith -277,4239,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of personalized attention left me feeling like just another patient in the system.",Thomas Middleton,Schultz-Powers,Yolanda Smith -192,3219,"The hospital facilities were clean and well-maintained, and the medical team was attentive. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",Mark Nichols,Schultz-Powers,Jessica Carrillo -26,2479,"The hospital's focus on preventive care and wellness programs was commendable. Unfortunately, the outdated patient information system caused confusion among the medical staff, affecting the continuity of care.",Mark Woods,Schultz-Powers,Karen Bishop -695,8460,I was impressed by the hospital's dedication to continuous improvement. The feedback mechanisms in place showed a genuine interest in enhancing the patient experience.,Rebecca Wallace,Schultz-Powers,Lisa Smith -53,1411,"The hospital's nursing staff were exceptional in their care and attention. They made a significant positive impact on my overall experience, providing comfort and support throughout my stay.",Tasha Griffin,Schultz-Powers,Brian Wilson -254,3893,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew Bates,Schultz-Powers,Joanna Schmidt -88,5138,"I'm thankful for the compassionate care I received at the hospital. The medical team was attentive and thorough, making a significant difference in my recovery process.",John Williams,Schultz-Powers,Samantha Wilson -110,7906,"My time at the hospital was both challenging and rewarding. The medical team was competent, but the lack of coordination among staff caused delays in my treatment.",William Mclaughlin,Schultz-Powers,John Richmond MD -114,448,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Mr. Justin Bryant,Schultz-Powers,Mike Winters -946,1117,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Cathy Church,Schultz-Powers,Melvin Miller -445,4295,"The hospital had an excellent emergency response team. They handled a sudden complication with speed and efficiency, potentially saving my life. Grateful for their expertise.",Amber Thomas,Schultz-Powers,Julie Dunlap -283,1511,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were top-notch. I felt well taken care of.",Jennifer Murray,Schultz-Powers,Kevin Duke -391,1511,"I had a positive experience overall. The hospital had a friendly atmosphere, and the medical team was knowledgeable and attentive.",Jennifer Murray,Schultz-Powers,Kevin Duke -527,6993,"My stay at the hospital was a rollercoaster. The medical care was satisfactory, but the noise levels were high, affecting my ability to rest and recover. Improvement in the environment is needed.",Tamara Potter,Schultz-Powers,Lisa Lowery -672,6993,"I was disappointed with the long wait times in the emergency room. It felt like hours before I received any attention, and the staff seemed overwhelmed with the number of patients.",Tamara Potter,Schultz-Powers,Lisa Lowery -942,1959,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Linda Morris,Schultz-Powers,James Thompson -792,561,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Erin Ramirez,Schultz-Powers,Martin Hines -181,7964,"The hospital staff was attentive and compassionate. However, the lack of comfortable seating in the waiting areas made the long waits for appointments less bearable.",Troy Wilson,Schultz-Powers,Scott Hall -185,4919,"I appreciate the caring attitude of the hospital staff. However, the lack of updated reading materials in the waiting area made the time pass slowly during appointments.",Chad Peterson,Schultz-Powers,Michael Wilson -776,468,"The hospital staff was attentive and caring. I felt well-supported throughout my stay, and the facilities were up to standard.",Michelle Williams,Schultz-Powers,Catherine Wallace -271,3678,"The hospital's medical team was thorough and efficient, and the facilities were modern. However, the administrative processes were confusing and time-consuming.",Rachel Oneill,Schultz-Powers,Darren Roberts -467,3803,The hospital's dedication to pain management was commendable. The medical team actively worked to ensure my comfort during the recovery process.,Joseph Santiago,Schultz-Powers,Nicole Roberts -404,1725,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",James Jackson,Schultz-Powers,Pamela Medina -869,5241,"I appreciate the compassion shown by the nursing staff, but the administrative staff seemed disorganized. It took multiple attempts to get my billing inquiries resolved.",Tracy Garza,Schultz-Powers,Jordan Bass -602,114,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Abigail Cummings,Schultz-Powers,Susan Mills -830,8066,"The nursing staff was attentive, and the hospital had a positive atmosphere. However, the lack of privacy in the shared rooms was a downside to an otherwise pleasant stay.",Michael Gibbs,Schultz-Powers,Christine Hurley -444,9484,"The hospital had a great team of doctors, but the communication between shifts was lacking. This sometimes resulted in confusion regarding my treatment plan.",Catherine Howard,Schultz-Powers,Eric Hill -955,7931,I was pleasantly surprised by the cleanliness of the hospital facilities. The janitorial staff did an outstanding job maintaining a hygienic environment.,Jason Merritt,Schultz-Powers,Bethany Farrell -442,9800,"The hospital staff was accommodating, and the rooms were comfortable. However, the lack of variety in the menu made the dining experience monotonous during my stay.",Maurice Lane,Schultz-Powers,Jonathan Anderson -509,8648,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Miguel Stout,Schultz-Powers,Kendra Carroll -920,7798,"The hospital's cleanliness and hygiene standards were commendable. However, the limited visiting hours made it challenging for my family to spend time with me.",Richard Miller,Schultz-Powers,Brooke Alvarez -491,2250,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Andre Johnson,Schultz-Powers,William Lawson -648,7482,"The hospital staff was attentive and caring. However, the outdated decor in the rooms detracted from the overall experience.",David Foster,Schultz-Powers,Dr. Ryan Lee -765,590,The hospital staff was friendly and efficient. I appreciated the prompt service and the clean environment.,Tammy Hart,Schultz-Powers,Karen Fox -659,7161,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Eric Patton,Schultz-Powers,Christopher Oconnell -899,1203,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Angelica Houston,Schultz-Powers,John Smith -952,8213,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Heather Smith,Schultz-Powers,Heidi Douglas -750,5941,"The hospital provided excellent care, and the nursing staff was attentive. The lack of private bathrooms in the rooms, though, was inconvenient.",Thomas Middleton,Brown Inc,Veronica Price -957,7423,The medical team at the hospital was exceptional. They were thorough in their examinations and took the time to explain everything in detail.,Natalie Mitchell,Brown Inc,Justin Smith -22,9179,"The hospital's efficient triage system ensured timely care for my emergency situation. Yet, the limited availability of interpreters posed challenges in effective communication with non-English-speaking patients.",Mark Nichols,Brown Inc,Derek Taylor -758,8976,"The doctors were efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Jesse Gordon,Brown Inc,Timothy Trevino -29,2467,"The hospital's commitment to philanthropy and community engagement was commendable. However, the limited resources for patient education materials hindered my ability to fully understand my condition and treatment options.",Andrew Wallace,Brown Inc,Anthony Dorsey -315,2690,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Ashley Le,Brown Inc,Tracy Sanford -814,6783,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Ashley Le,Brown Inc,Jessica Martinez -764,3884,"Unfortunately, my experience at the hospital was subpar. The staff seemed overworked, and I had to wait for an extended period before receiving any attention.",Renee Brown,Brown Inc,Pamela Lewis -702,5222,My experience was marred by the disorganization in the billing department. Confusing statements and delayed responses to my inquiries left me frustrated with the financial aspect of my treatment.,Aaron Graves,Brown Inc,Melissa Brown -80,8410,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Barbara Warner,Brown Inc,Tanya Rodgers -87,2311,"My time at the hospital was frustrating due to long wait times and a lack of communication about my treatment plan. The medical care itself was satisfactory, but improvements are needed in these areas.",Cory Campbell,Brown Inc,Joshua Ferguson -770,5264,"The hospital provided top-notch care. The medical team was efficient, and the facilities were state-of-the-art.",Jennifer Mccall,Brown Inc,Stephen Hernandez -303,3153,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Dennis Edwards,Brown Inc,Jackson Williams -511,1220,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",Cathy Church,Brown Inc,Blake Daniels -565,1220,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Cathy Church,Brown Inc,Blake Daniels -127,2517,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Kerry Hart,Brown Inc,Miguel Lewis -209,9984,"The hospital's facilities were clean and well-maintained, creating a comfortable environment. However, the communication between shifts regarding patient care could be improved for a seamless experience.",Leah Meadows,Brown Inc,Erica Crawford -135,6610,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amber Thomas,Brown Inc,Manuel Moore -778,2334,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Robert Clements,Brown Inc,Frances Bell -939,5671,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Robert Clements,Brown Inc,Wanda Jackson -552,2281,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Christine Rogers,Brown Inc,Joseph Long -216,8155,"The hospital's medical staff was attentive and caring, making my stay comfortable. However, the lack of follow-up communication after discharge left me feeling a bit disconnected from the overall care.",Joseph Johnson,Brown Inc,Austin Burke -389,4146,"I received excellent care from the medical team, but the administrative staff seemed overwhelmed, resulting in delays and paperwork errors.",Joseph Jones,Brown Inc,Anthony Gonzales -297,7439,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Mckinney,Brown Inc,Amanda Weeks -703,964,The hospital's commitment to diversity and inclusion was evident in its multicultural staff. It added a welcoming touch to the overall environment and made me feel valued as a patient.,Joe Mendoza,Brown Inc,Gail Harris -308,9607,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Kathleen Evans,Brown Inc,Robert Cruz -367,5985,"The hospital staff was friendly and accommodating, creating a positive atmosphere. However, the lack of a proper system for patient feedback made it challenging to express concerns and suggestions.",William Hart,Brown Inc,Brenda Johnson -720,7809,"The hospital had a modern feel, and the staff was attentive. However, the bureaucratic procedures for check-in and discharge were cumbersome.",Michael Miranda,Brown Inc,Beverly Johnson -385,6686,"I had a positive overall experience. The nursing staff was attentive, but the food quality did not meet my expectations.",Lauren Rojas,Brown Inc,Heather Palmer -708,6247,The hospital's commitment to research and innovation was impressive. The participation in clinical trials showcased a forward-thinking approach to providing cutting-edge medical treatments.,Daniel Martinez,Brown Inc,David Pittman -417,518,"I had a positive experience overall. The hospital staff was friendly, and the medical team provided excellent care. However, the noise levels in the shared rooms were disruptive.",Ryan Kirk,Brown Inc,Keith Chambers -729,4319,"The hospital had a calm and soothing atmosphere, and the doctors were attentive. Unfortunately, the long wait times in the ER were frustrating.",Steven Rivera,Brown Inc,Robert Cook -480,728,"My overall experience was positive. The doctors were attentive, and the rehabilitation services helped me recover faster. The only downside was the lack of parking space.",Luis Powell MD,Brown Inc,Terry Lawson -547,6518,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Erica George,Brown Inc,Michael Miles -831,3189,"I appreciate the professionalism of the medical team. The hospital was well-maintained, but the parking facilities were limited, causing inconvenience for visitors.",Mary Mahoney,Brown Inc,Amanda Lee -581,8769,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Linda Johnson,Brown Inc,Samuel Crosby -817,8769,"I appreciate the effort of the hospital staff in ensuring my comfort during my stay. However, the waiting times were a bit long, and the communication could be improved.",Linda Johnson,Brown Inc,Samuel Crosby -606,1651,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Bryan Smith,Brown Inc,Anthony Hunt -803,818,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Eric Marquez,Brown Inc,Paul Brooks -897,1440,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Barbara Warner,Brown Inc,Colton Rose -998,7563,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jeremy Arnold,Brown Inc,Elizabeth Reynolds -19,3098,"The hospital's commitment to environmental sustainability was apparent, with eco-friendly practices in place. However, the communication between shifts regarding my treatment plan was inconsistent and confusing.",Natalie Mitchell,Pearson LLC,Cody Green DDS -200,7550,"The nursing staff at the hospital was exceptional. They provided personalized care and were always ready to address any concerns. However, the wait times for tests were longer than expected.",Gerald Smith,Pearson LLC,Christopher Kelly -69,7650,"I'm thankful for the compassionate care I received at the hospital. The nurses were kind and attentive, making a significant difference in my recovery process.",Andrew Bates,Pearson LLC,Sheila Gonzales -101,8216,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Kyle Vasquez,Pearson LLC,Matthew Wyatt -102,2812,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Terry Short,Pearson LLC,Andrea Taylor -245,2021,"My overall experience was positive, thanks to the dedicated and caring nursing staff. However, the administrative process for scheduling tests was cumbersome.",Kimberly Johnson,Pearson LLC,Joshua Crawford -968,2093,"The hospital facilities were modern, and the technology used for diagnostics was impressive. However, the cafeteria food left much to be desired.",Elaine Medina,Pearson LLC,Joseph Avila -191,4605,"The nursing staff was attentive and caring, contributing to a positive hospital experience. However, the lack of clear communication about the daily schedule was a drawback.",Rhonda Diaz,Pearson LLC,Caitlin Park -849,5301,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",James Cooper,Pearson LLC,Holly Clark -959,5465,"The hospital had a calming atmosphere, and the rooms were well-designed for patient comfort. Unfortunately, the noise level in the hallway was disruptive at times.",James Cooper,Pearson LLC,Robert Mcguire -302,956,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Julie Walker,Pearson LLC,Elizabeth Anderson -910,3239,"I appreciate the efforts of the hospital staff in providing quality care. However, the food options were limited, and the cafeteria hours were inconvenient.",Samantha Barrett,Pearson LLC,Phillip Jones -573,2849,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Christopher Murphy,Pearson LLC,Jerry Ochoa -630,9250,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Timothy Martinez,Pearson LLC,Sarah Hernandez MD -276,4414,"The hospital's environment was welcoming, and the medical team was thorough in their examinations. However, the lack of communication about changes in my treatment plan was a drawback.",Kevin Warner,Pearson LLC,Katherine Alexander -908,8136,"The hospital had a warm and welcoming atmosphere. The only downside was the noise level at night, which made it challenging to rest properly.",Kathleen Evans,Pearson LLC,Donald Alexander -336,7456,"The medical team was efficient and prompt in addressing my needs. Unfortunately, the Wi-Fi in the hospital was unreliable, making it challenging to stay connected with loved ones during my stay.",Ryan Gutierrez,Pearson LLC,Joseph Smith -839,2222,"The medical team at the hospital was knowledgeable and supportive. Unfortunately, the limited visiting hours and strict policies made it challenging for family members.",Austin Alvarado,Pearson LLC,Susan Riddle -446,2562,"The hospital's cleanliness and hygiene standards were commendable. However, the constant interruptions for routine checks made it challenging to get a good night's sleep.",Miguel Stout,Pearson LLC,Monique Foster -936,6665,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Patrick Williams,Pearson LLC,Todd Taylor -460,5065,"The hospital provided excellent care, and the medical team was knowledgeable. However, the outdated magazines in the waiting area could use an upgrade.",Stephanie Ward,Pearson LLC,Christopher Day -694,4228,The hospital's commitment to patient-centric care was evident. The staff's friendliness and the comfortable rooms contributed to a positive atmosphere during my stay.,Gary Swanson,Pearson LLC,Nathaniel Parker -518,3865,"My time at the hospital was fantastic. The medical team was not only knowledgeable but also empathetic. The facility was clean and well-maintained, making my stay comfortable.",Samuel Hill,Pearson LLC,George Houston -640,6825,"The hospital's facilities were state-of-the-art, and the medical staff was knowledgeable. However, the noise from construction nearby was bothersome.",Ryan Jarvis,Pearson LLC,Douglas Hickman -652,225,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Michael Hodges,Pearson LLC,David Reed -726,7404,"The hospital had state-of-the-art equipment, and the medical team was knowledgeable. The outdated magazines in the waiting area, though, were a disappointment.",Rebecca Hernandez,Pearson LLC,Hannah Rogers -965,1973,I encountered some issues with the scheduling of tests at the hospital. It resulted in delays in my diagnosis and treatment.,Edgar Harris,Pearson LLC,Kelsey Lawson DVM -743,3858,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Angela Vance,Pearson LLC,Laura Taylor -20,6229,"The hospital's emphasis on patient comfort was evident in the well-designed rooms. Still, the frequent changes in nursing staff created a sense of inconsistency in the quality of care provided.",Alexis Nolan,Huynh PLC,Stephanie Murray -626,8388,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Mark Woods,Huynh PLC,Angela Cohen -100,5969,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Tina Wall,Huynh PLC,Ryan Powers DDS -345,5673,"The hospital staff was friendly and accommodating, but the constant disruptions due to maintenance work made it challenging to rest and recover.",William Mclaughlin,Huynh PLC,Jeremy Martin -405,9102,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Connie Tucker,Huynh PLC,Kenneth Long -866,8700,"The hospital environment was welcoming, and the room had a beautiful view. On the downside, the lack of communication between the departments led to some confusion about my treatment plan.",Christopher Murphy,Huynh PLC,Terrance Ramirez -221,2691,"The nursing staff at the hospital was compassionate and attentive, providing excellent care. However, the lack of coordination between departments led to some delays in my treatment plan.",Melissa Garrett,Huynh PLC,Timothy Rose -492,2683,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",James Johnson,Huynh PLC,Sabrina Williams -311,4758,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jason Johnston,Huynh PLC,Amanda Wilson -350,2665,"I appreciate the hospital's effort to create a positive environment. However, the constant beeping of machines in the shared rooms became a source of annoyance during my stay.",Michael Watson,Huynh PLC,Charles Holt -718,9461,"I had a positive experience overall. The doctors were knowledgeable, and the rehabilitation services were beneficial. The parking situation, though, was a hassle.",Ashley Torres,Huynh PLC,Kelly Burch -413,7145,"The hospital provided efficient medical care, but the lack of clear signage in the hallways made it challenging to navigate the facility.",Amy Bryant,Huynh PLC,Charles Chase -562,5863,"I received top-notch care at the hospital. The nurses were friendly and attentive, and the food was surprisingly good.",Kathleen Mitchell,Huynh PLC,Haley Bright -592,9521,"I received excellent care from the hospital staff. The facilities were modern and well-equipped, but the wait times for tests were longer than expected.",Kyle Campbell,Huynh PLC,Zoe Moore -645,2506,"I had a positive experience at the hospital. The medical team was thorough, and the facilities were well-maintained.",Beth Hall,Huynh PLC,Kevin Bryan -23,2301,"The hospital's commitment to research and innovation was apparent, with access to cutting-edge treatments. Nevertheless, the extended wait times for routine procedures were a notable drawback.",Jesse Gordon,Richardson-Powell,Jermaine Reyes -636,4639,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Robert Pratt,Richardson-Powell,Jessica Davis -740,2556,"The doctors were knowledgeable, and the hospital had a clean environment. The outdated and uncomfortable beds, however, affected my overall comfort.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -900,2556,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -212,6821,"I am grateful for the compassionate care I received from the hospital's medical team. However, the lack of a dedicated patient advocate made it challenging to address specific concerns promptly.",Sandra Porter,Richardson-Powell,Charles Vaughn -58,3543,"I had a challenging experience at the hospital due to the lack of privacy in shared rooms. Privacy is essential for patients, and improvements in this area would significantly enhance the overall patient experience.",Shelley Cobb,Richardson-Powell,Ashley Wallace -137,2948,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Lisa Brewer,Richardson-Powell,Christina Moore -956,7009,"The hospital staff was friendly and attentive, making me feel comfortable during my stay. However, the food options were limited and not very appetizing.",Kyle Vasquez,Richardson-Powell,Charles Davis -399,8122,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Sara Lopez,Richardson-Powell,Jenna Rodriguez -123,6756,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Veronica Moore,Richardson-Powell,Derek Edwards -140,6374,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Jamie Fisher,Richardson-Powell,Jeffrey Brown -662,1962,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Christine Rogers,Richardson-Powell,Scott Mills -904,9220,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable and kind, and the nurses made me feel comfortable throughout.",Christine Rogers,Richardson-Powell,Heather Powers -151,5272,"The hospital has a welcoming atmosphere, and the support from the nurses was outstanding. On the downside, the food options were limited and not very appetizing.",Carla Miller,Richardson-Powell,Charles Mitchell -257,5272,"The hospital's environment was comfortable, and the medical team was thorough in their examinations. However, the noise levels in the shared rooms were disruptive to my rest.",Carla Miller,Richardson-Powell,Charles Mitchell -824,4315,"I had a positive experience overall. The nurses were kind and responsive, but there were some communication gaps between the different departments.",Carla Miller,Richardson-Powell,Angela Williams -647,2675,"The medical care at the hospital was outstanding, but the lack of a comfortable waiting area for families was a drawback.",Cristina Ortega,Richardson-Powell,Michael Powell -543,5008,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Andrew James,Richardson-Powell,Mary White -433,7164,"The hospital had a warm and welcoming atmosphere. The doctors were knowledgeable, and the support staff was always ready to assist. A positive environment for recovery.",Denise Perez,Richardson-Powell,Tracy Oliver -242,7141,"The medical care was excellent, but the noise levels in the hospital were unbearable. It was challenging to rest and recover in such a chaotic environment.",Bryan Jones,Richardson-Powell,Alyssa Delgado -516,7141,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Bryan Jones,Richardson-Powell,Alyssa Delgado -256,2300,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Alex Anderson,Richardson-Powell,Harry Pennington MD -265,8171,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",April Shea,Richardson-Powell,Alfred Hernandez -356,4178,"The hospital's commitment to cleanliness and hygiene was evident, creating a comfortable environment. On the downside, the lack of vegetarian options in the cafeteria made meal choices limited.",Abigail Cummings,Richardson-Powell,Scott Long -387,7772,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. The only downside was the limited menu for patients.",Catherine Howard,Richardson-Powell,Daniel Braun -646,823,"The hospital staff was friendly and helpful, but the lack of Wi-Fi in the rooms made it challenging to stay connected with loved ones.",Nathan Fischer,Richardson-Powell,Kristen Johnson -395,733,"The hospital staff was attentive and caring. However, the outdated magazines in the waiting area could use an update.",Carmen Larsen,Richardson-Powell,Jason Alvarado -415,3767,"I appreciate the caring and attentive medical staff at the hospital. However, the lack of recreational activities for patients made my stay monotonous.",Daniel Martinez,Richardson-Powell,Sarah Burton -805,6207,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Lisa Anderson,Richardson-Powell,Joel Robertson -504,3469,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the cafeteria food left much to be desired.",Michael Berger,Richardson-Powell,Kaitlin Khan -507,4645,"The hospital staff was attentive, and the medical care was excellent. However, the lack of parking space made it challenging for visitors to find convenient spots.",Amy Daniels,Richardson-Powell,Betty Burke -517,7878,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Louis Chambers,Richardson-Powell,Linda Jones -521,631,"I had a challenging time at the hospital. The medical care was adequate, but the lack of communication between the staff and me left me feeling frustrated and confused about my treatment plan.",Samantha Mendez,Richardson-Powell,Kurt Gordon -591,8971,"The nursing staff was compassionate and attentive, and the hospital's commitment to patient well-being was evident. However, the administrative processes were a bit confusing.",Kathryn Johnson,Richardson-Powell,Dylan Maynard -601,4702,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Joseph Roman,Richardson-Powell,Caleb Coleman -977,6052,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Jacqueline Mcneil DVM,Richardson-Powell,Eric Duncan -967,846,I had a frustrating experience dealing with the hospital's insurance coordination. It added unnecessary complications to an already challenging situation.,Emily Lucas,Richardson-Powell,Jeffrey Carter -930,7331,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Jennifer Roberts,Richardson-Powell,Dominique Howard -730,4529,"The nursing staff provided excellent care, and the hospital was clean. The limited visiting hours, however, were inconvenient for my family.",Shaun Little,Richardson-Powell,Jesse Young -800,4794,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Rhonda Wall,Richardson-Powell,Christopher Fernandez -855,8265,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Rebecca Hernandez,Richardson-Powell,Jennifer Hale -780,6965,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Derek Edwards,Richardson-Powell,Ashley Nelson -798,6525,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Karen Klein,Richardson-Powell,Olivia Mccarthy -448,5558,The hospital staff showed genuine concern for patients' well-being. The daily check-ins and follow-ups were reassuring and demonstrated a high level of care.,Mark Woods,Cunningham and Sons,Samuel Knight -246,1031,"The hospital's medical team was efficient and knowledgeable, but the lack of personalized attention made me feel like just another patient in the system.",Jenna Taylor,Cunningham and Sons,Kathleen Conner -52,2860,"I encountered issues with the scheduling of appointments and consultations, leading to frustration and inconvenience. Improving the efficiency of the appointment system is crucial for patient satisfaction.",Ashley Le,Cunningham and Sons,Brian Rodriguez -57,911,The hospital's commitment to patient-centered care was evident in the personalized attention I received from the medical team. They took the time to address my concerns and involve me in decision-making.,Ronald Chen,Cunningham and Sons,Daniel Evans -63,140,"The hospital provided excellent care, and the medical team went above and beyond to ensure my comfort. I felt well-informed about my treatment plan throughout my stay.",Meagan Herrera,Cunningham and Sons,Tim Mercer -75,778,"My time at the hospital was challenging due to a lack of coordination among the staff. The left hand didn't seem to know what the right hand was doing, causing unnecessary stress during my stay.",Benjamin Stevens,Cunningham and Sons,Steven Davis -493,2513,"My experience at the hospital was a mix of highs and lows. The medical care was excellent, but the communication between different departments was lacking, leading to some confusion.",Logan Hansen,Cunningham and Sons,Ronald Wright -529,6917,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Craig Brooks,Cunningham and Sons,Lauren Dominguez -217,2626,"I had a positive experience with the hospital's nursing staff, who provided exceptional care. The only downside was the limited availability of certain diagnostic tests on-site.",Alyssa Thomas,Cunningham and Sons,John Parks -618,7847,"The hospital's environment was peaceful, and the rooms were well-maintained. Unfortunately, the billing process was confusing and stressful.",Jennifer Mccall,Cunningham and Sons,Cheryl Moss -837,6608,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the noise level in the corridors and shared spaces was disruptive.",Lisa Wilkinson,Cunningham and Sons,Jordan Berg -340,9596,"The hospital's medical team demonstrated expertise and empathy. Unfortunately, the noise level from construction nearby made it challenging to rest and recover.",Miss Maria King,Cunningham and Sons,James Richard -118,6547,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Dennis Edwards,Cunningham and Sons,Steven Gray -349,5305,"The medical team at the hospital was attentive and knowledgeable, making my stay comfortable. On the downside, the parking fees added an unexpected financial burden to my overall experience.",Antonio Campbell,Cunningham and Sons,Michele Scott -134,6070,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Leah Meadows,Cunningham and Sons,Linda Barker -588,9178,"I received excellent care from the hospital's medical team. The facilities were clean and well-maintained, but the food options were limited.",Amy Rios,Cunningham and Sons,Shane Sanchez -166,1339,"The hospital's medical team was thorough and attentive, ensuring my comfort. Nevertheless, the limited visiting hours were restrictive and made it challenging for family support.",Miranda Hunt,Cunningham and Sons,Margaret Casey -174,7307,"I appreciate the excellent care I received from the medical team. On the downside, the lack of patient education about medications and post-discharge care was a drawback.",Danielle Herring,Cunningham and Sons,Tabitha Sloan -351,7778,"The nursing staff was exceptional in their care, and the hospital's facilities were state-of-the-art. Despite this, the lack of clear communication about the treatment plan created confusion and anxiety.",Carol Sanchez,Cunningham and Sons,Karen Ross -995,2195,"The hospital's commitment to medical education and training was apparent. However, the limited visitation hours made it challenging for my family to be present.",Chad Peterson,Cunningham and Sons,Justin Jackson -244,9857,"The hospital staff was compassionate and understanding, providing emotional support during a difficult time. The only drawback was the limited visiting hours.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -392,9857,"The cleanliness and hygiene standards at the hospital were commendable. However, the cafeteria food left much to be desired.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -197,9924,"My experience at the hospital was disappointing. The communication between the medical team and the administrative staff was lacking, leading to confusion and frustration.",Courtney Walton,Cunningham and Sons,William Thompson -305,9924,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Courtney Walton,Cunningham and Sons,William Thompson -198,7795,"The hospital had a welcoming atmosphere, and the medical professionals were compassionate. Unfortunately, the outdated facilities were a downside to an otherwise positive experience.",Denise Chavez,Cunningham and Sons,Abigail Nixon -1002,6870,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Joseph Johnson,Cunningham and Sons,Erica Mcneil -919,5143,"I had a satisfactory experience at the hospital. The medical team was competent, but the lack of communication about the treatment plan left me feeling uncertain.",Miranda Meza,Cunningham and Sons,Jacob Pierce -842,5973,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Christopher Williamson,Cunningham and Sons,Scott Perez -263,2584,"I had a positive experience at the hospital, thanks to the caring and knowledgeable medical staff. However, the lack of coordination between different departments was a drawback.",Justin Anderson,Cunningham and Sons,Edward Mcpherson -515,350,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only drawback was the limited entertainment options in the patient rooms.",Jeffrey Williams,Cunningham and Sons,Gabriel Mccormick -410,4908,"The hospital staff was friendly and attentive, making my stay comfortable. However, the lack of updated information about my treatment plan was concerning.",Mr. Andrew Keller,Cunningham and Sons,Lori Woodard -841,5077,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Jesus Snyder,Cunningham and Sons,Andrea Morgan -580,3881,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Charles Kim,Cunningham and Sons,Edward Jones -883,1711,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Charles Kim,Cunningham and Sons,Matthew Ford -376,2766,"The hospital staff was friendly, and the room had a beautiful view. Unfortunately, the Wi-Fi was unreliable, making it hard to stay connected.",Michael Miranda,Cunningham and Sons,Benjamin Anderson -429,6321,"I had a mixed experience at the hospital. While the doctors were skilled and professional, the cafeteria food left much to be desired. A bit disappointing overall.",Amanda James,Cunningham and Sons,Donald Harris -698,9737,"The medical team was exceptional, providing thorough and compassionate care. However, the outdated decor and furnishings of the hospital rooms diminished the overall experience.",Scott Barton,Cunningham and Sons,Jenny Watson -701,681,"The hospital's dedication to patient well-being was evident in the diverse range of support services offered. From nutrition counseling to physical therapy, the comprehensive approach to care was commendable.",Robert Haynes,Cunningham and Sons,Jackie Arellano -757,7447,"The medical care was top-notch, and the hospital had a calming ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Karen Clark,Cunningham and Sons,John Oneill -926,4496,"The hospital's nursing staff was exceptional, providing personalized care. Unfortunately, the administrative processes were slow and bureaucratic.",Angelica Houston,Cunningham and Sons,Elizabeth Huff -992,719,"The hospital staff demonstrated professionalism and empathy. Unfortunately, the lack of coordination among the nursing shifts affected the consistency of care.",Joshua Jenkins,Cunningham and Sons,Travis Jordan -105,8871,"I can't thank the hospital staff enough for their exceptional care. The doctors were thorough, and the nurses went above and beyond to ensure I had everything I needed.",Rebecca Wallace,Jordan Inc,Aaron Franklin -337,7892,"The hospital's commitment to patient care was evident in the dedication of the staff. Nevertheless, the outdated decor and furniture in the rooms could use a refresh.",Rebecca Wallace,Jordan Inc,Kenneth Martin -911,4926,"The hospital facilities were modern and well-maintained. The only drawback was the lack of personal attention from the doctors, who seemed rushed during consultations.",Todd Mccormick,Jordan Inc,Gary Cook -44,6763,The hospital's commitment to patient education was evident in the thorough explanations provided by the medical team. I left with a clear understanding of my condition and how to manage it moving forward.,Nicole Keith,Jordan Inc,Andrew Morris -894,6763,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Nicole Keith,Jordan Inc,Andrew Morris -68,906,"I encountered a few issues during my hospital stay. While the medical care was competent, the wait times for tests and procedures were longer than expected, causing some frustration.",Monique Hall,Jordan Inc,Alec Hess -772,6913,"The hospital staff went above and beyond to make me feel comfortable. The atmosphere was warm, and the medical care was exceptional.",Andrew Bates,Jordan Inc,Elizabeth Rivera -836,7723,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about post-discharge care was a drawback.",Kelsey Dillon,Jordan Inc,Kimberly Cohen -987,6617,I encountered some issues with the scheduling of appointments at the hospital. The delays in getting test results were frustrating and prolonged my anxiety.,Lisa Brewer,Jordan Inc,William Barber -95,348,"The hospital staff were accommodating and supportive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Joshua Martinez,Jordan Inc,Nathan Elliott -96,5575,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Alyssa Thomas,Jordan Inc,Jessica Lyons -359,6318,"The hospital staff was attentive, and the medical facilities were well-maintained. Nonetheless, the lack of a proper system for patient feedback left me feeling unheard and undervalued.",Miss Maria King,Jordan Inc,Mikayla Baker -661,905,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Antonio Campbell,Jordan Inc,David Copeland -280,3155,"The hospital's facilities were top-notch, and the medical team was highly skilled. However, the administrative processes were confusing and time-consuming.",Miranda Hunt,Jordan Inc,Bailey Rich -982,2608,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Andrew James,Jordan Inc,Brian Schwartz -195,8830,"The hospital staff was friendly and accommodating. However, the cleanliness of the facilities left much to be desired. It could use some improvement in that aspect.",Paige Morris,Jordan Inc,Paul Mendez -230,6320,"The hospital's commitment to patient safety was evident, and the medical staff was knowledgeable. On the downside, the lack of entertainment options for patients during recovery was a drawback.",Alisha Figueroa,Jordan Inc,Rhonda King -248,5987,"The hospital staff was kind and attentive, making me feel well-cared-for. However, the outdated entertainment options in the patient rooms could be improved.",Christopher Williamson,Jordan Inc,Edward Rodriguez -284,3146,"I had a mixed experience at the hospital. While the medical care was good, the cleanliness of the facilities left something to be desired.",John Novak,Jordan Inc,Jeffrey Bradford -802,1465,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Timothy Riley,Jordan Inc,Mallory Jones -314,873,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",David Perez,Jordan Inc,Shannon Williams -994,8393,I had a positive experience with the hospital's pain management team. They were responsive to my needs and helped me cope during a challenging time.,Edward Miller,Jordan Inc,John Barrett -989,1892,I had a positive experience with the hospital's physical therapy department. The therapists were knowledgeable and dedicated to my recovery.,Lauren Williams,Jordan Inc,Nathan Miranda MD -382,9080,"I appreciate the hospital's efforts to create a warm atmosphere, but the outdated decor and furniture in the rooms could use an upgrade.",Ashley Torres,Jordan Inc,Brandon Norman -436,5561,"The hospital staff was attentive, and the rooms were kept clean. However, the lack of Wi-Fi in the patient rooms was inconvenient in this digital age.",Michael Berger,Jordan Inc,Amy Coleman -447,8365,"The medical team was proficient, and the technology used for diagnostics was impressive. On the downside, the waiting area was overcrowded, leading to extended wait times.",Miguel Davidson,Jordan Inc,Kevin Tate -483,9673,"The hospital provided exceptional care during my stay. The staff went above and beyond to ensure my comfort. However, the Wi-Fi was unreliable, making it challenging to stay connected.",Matthew Ward,Jordan Inc,Brandon Lopez -749,1702,"The medical team was thorough, and the hospital had a calming ambiance. The outdated magazines in the waiting area, however, were a disappointment.",David Carter,Jordan Inc,Michael Herrera -813,1702,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",David Carter,Jordan Inc,Michael Herrera -638,3477,"I had a positive experience at the hospital. The nursing staff was attentive, and the medical care exceeded my expectations.",Jonathan Lucas,Jordan Inc,Jessica Wolf -487,643,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Crystal Wallace,Jordan Inc,John Rios -510,643,"I had a positive experience at the hospital. The nursing staff was caring, and the facilities were modern and well-equipped. However, the cafeteria food left much to be desired.",Crystal Wallace,Jordan Inc,John Rios -794,8572,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Samuel Hill,Jordan Inc,David Kelley -579,4972,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Mary Mahoney,Jordan Inc,Anthony Burton -689,1828,"My stay was marked by a lack of communication between departments. It felt like each department operated independently, leading to delays in my treatment and discharge process.",Bernard Miller,Jordan Inc,Cameron Bailey -879,1828,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Bernard Miller,Jordan Inc,Cameron Bailey -742,9286,"The medical team was efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Miss Valerie George,Jordan Inc,Daniel Johnson -970,2009,"The hospital staff, from doctors to janitors, showed dedication to their work. However, the administrative processes need streamlining for a smoother patient experience.",Sally Jones,Jordan Inc,Gerald Hernandez diff --git a/langchain-rag-app/source_code_step_3/data/visits.csv b/langchain-rag-app/source_code_step_3/data/visits.csv deleted file mode 100644 index b27b0e80bc..0000000000 --- a/langchain-rag-app/source_code_step_3/data/visits.csv +++ /dev/null @@ -1,9999 +0,0 @@ -patient_id,date_of_admission,billing_amount,room_number,admission_type,discharge_date,test_results,visit_id,physician_id,payer_id,hospital_id,chief_complaint,treatment_description,primary_diagnosis,visit_status -0,2022-11-17,37490.98336352819,146,Elective,2022-12-01,Inconclusive,0,102,1,0,,,,DISCHARGED -1,2023-06-01,47304.06484547511,404,Emergency,,Normal,1,435,4,5,,,,OPEN -2,2019-01-09,36874.89699661277,292,Emergency,2019-02-08,Normal,2,348,2,6,,,,DISCHARGED -3,2020-05-02,23303.322092196904,480,Urgent,2020-05-03,Abnormal,3,270,4,15,,,,DISCHARGED -4,2021-07-09,18086.34418356388,477,Urgent,2021-08-02,Normal,4,106,2,29,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5,2020-08-20,22522.363384853263,180,Urgent,2020-08-23,Abnormal,5,71,1,26,,,,DISCHARGED -6,2021-03-22,39593.4357611308,161,Urgent,2021-04-15,Abnormal,6,188,2,14,,,,DISCHARGED -7,2019-05-16,13546.817249364824,384,Elective,2019-06-02,Normal,7,20,1,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -8,2020-12-17,24903.03726973869,215,Elective,2020-12-22,Abnormal,8,102,1,29,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -9,2022-12-15,22788.23602637677,310,Urgent,2022-12-16,Normal,9,121,3,1,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -10,2021-04-13,40325.071393983046,306,Emergency,2021-05-11,Abnormal,10,466,1,25,,,,DISCHARGED -11,2019-06-09,6185.903529552847,126,Emergency,2019-06-26,Inconclusive,11,214,2,24,,,,DISCHARGED -12,2021-11-29,4835.945649525413,444,Elective,2021-12-14,Inconclusive,12,330,3,22,,,,DISCHARGED -12,2022-07-07,2252.6827208169525,338,Elective,2022-08-02,Abnormal,7992,458,3,15,,,,DISCHARGED -12,2021-11-28,27633.45013875761,212,Emergency,2021-12-23,Abnormal,8815,87,1,16,,,,DISCHARGED -13,2021-07-29,13669.377744164887,492,Elective,2021-08-14,Normal,13,372,4,23,,,,DISCHARGED -14,2021-06-05,10342.836123527371,120,Emergency,2021-06-25,Inconclusive,14,99,4,14,,,,DISCHARGED -15,2021-08-07,27174.942906232496,492,Emergency,2021-08-14,Inconclusive,15,359,3,2,,,,DISCHARGED -16,2019-11-15,17394.994264453202,315,Elective,2019-12-04,Inconclusive,16,151,1,3,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -17,2022-03-08,45213.53762641964,475,Elective,2022-03-16,Inconclusive,17,130,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -18,2022-06-19,4262.91157816964,125,Elective,2022-06-29,Inconclusive,18,149,1,4,,,,DISCHARGED -19,2019-07-10,16609.311817449878,366,Emergency,2019-08-07,Inconclusive,19,308,1,16,,,,DISCHARGED -20,2023-02-25,32263.62215656245,238,Emergency,2023-03-27,Normal,20,257,3,5,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -20,2019-06-21,39952.38485585516,145,Elective,2019-07-13,Inconclusive,1280,343,3,9,,,,DISCHARGED -21,2022-12-12,42610.70456262938,364,Urgent,2022-12-26,Abnormal,21,491,0,21,,,,DISCHARGED -22,2022-10-09,16701.34713196211,130,Emergency,2022-11-01,Abnormal,22,413,4,17,,,,DISCHARGED -23,2019-01-10,22331.28015619921,120,Urgent,2019-01-31,Abnormal,23,293,4,26,,,,DISCHARGED -23,2022-11-03,20142.76467342658,440,Elective,2022-12-02,Abnormal,5767,385,4,9,,,,DISCHARGED -23,2019-02-28,38012.81444261646,315,Elective,2019-03-28,Abnormal,7305,191,2,5,,,,DISCHARGED -24,2022-08-05,41319.500315655176,293,Urgent,2022-09-03,Normal,24,443,1,23,,,,DISCHARGED -25,2021-05-27,37766.52123735682,292,Urgent,2021-06-23,Abnormal,25,276,3,5,,,,DISCHARGED -26,2021-07-12,35834.356603177686,379,Elective,2021-07-29,Abnormal,26,160,4,19,,,,DISCHARGED -27,2021-05-25,12680.730521058496,298,Emergency,2021-06-08,Abnormal,27,459,0,14,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -28,2019-05-14,12935.41324986354,392,Elective,2019-06-11,Abnormal,28,313,4,3,,,,DISCHARGED -29,2022-12-02,18393.421751093483,162,Emergency,2022-12-18,Inconclusive,29,21,1,24,,,,DISCHARGED -30,2021-11-09,22356.082268250702,456,Emergency,2021-11-28,Abnormal,30,252,1,15,,,,DISCHARGED -31,2023-07-09,21001.27487283218,197,Emergency,,Normal,31,235,3,21,,,,OPEN -32,2021-02-06,9007.96786622078,247,Urgent,2021-03-03,Abnormal,32,344,2,23,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -32,2022-10-01,5706.438141736805,492,Emergency,2022-10-28,Abnormal,449,48,3,7,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -33,2021-01-29,39031.362644016815,228,Elective,2021-02-23,Abnormal,33,474,4,6,,,,DISCHARGED -34,2019-12-01,24609.37462680727,137,Emergency,2019-12-18,Abnormal,34,58,0,18,,,,DISCHARGED -35,2019-11-12,5098.663127547211,192,Emergency,2019-11-24,Abnormal,35,169,3,25,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -35,2021-07-08,31178.81992005491,143,Elective,2021-07-28,Normal,3727,475,2,16,,,,DISCHARGED -36,2022-09-06,1000.1808370217516,258,Emergency,2022-09-18,Abnormal,36,187,3,20,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -37,2021-03-19,24913.55265165257,219,Elective,2021-03-20,Normal,37,463,1,12,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -38,2021-02-24,24274.14160062449,364,Elective,2021-03-21,Normal,38,270,4,14,,,,DISCHARGED -39,2021-06-30,16171.94855563634,414,Emergency,2021-07-14,Inconclusive,39,189,4,25,,,,DISCHARGED -40,2019-03-25,39329.11430902151,110,Urgent,2019-04-08,Inconclusive,40,445,4,25,,,,DISCHARGED -41,2021-08-15,22519.33617812455,465,Emergency,2021-09-06,Inconclusive,41,174,4,1,,,,DISCHARGED -42,2023-03-03,1996.3107212810503,469,Urgent,2023-03-05,Inconclusive,42,445,4,27,,,,DISCHARGED -43,2021-08-07,5470.20968689125,182,Emergency,2021-08-09,Inconclusive,43,50,4,9,,,,DISCHARGED -44,2019-06-06,16036.109990023424,119,Emergency,2019-06-30,Normal,44,363,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -45,2019-10-13,10803.730343659594,388,Emergency,2019-10-29,Inconclusive,45,54,2,17,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -45,2021-10-05,9881.807963117068,433,Emergency,2021-10-30,Abnormal,6773,243,4,29,,,,DISCHARGED -46,2022-10-20,38872.64522272379,412,Elective,2022-11-04,Abnormal,46,319,2,22,,,,DISCHARGED -46,2023-03-30,7264.670968184325,212,Emergency,2023-04-22,Inconclusive,7173,130,4,10,,,,DISCHARGED -47,2019-06-26,34132.623000118074,182,Emergency,2019-07-24,Normal,47,484,3,12,,,,DISCHARGED -48,2020-04-03,25948.507189184053,359,Emergency,2020-04-06,Normal,48,306,4,18,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -49,2021-02-18,46461.82252356185,186,Urgent,2021-03-06,Abnormal,49,134,1,28,,,,DISCHARGED -50,2019-06-14,10705.098399640798,437,Emergency,2019-07-13,Inconclusive,50,20,0,23,,,,DISCHARGED -51,2022-11-26,49576.87403288612,132,Elective,2022-12-08,Abnormal,51,328,3,24,,,,DISCHARGED -52,2023-08-25,8005.828337056341,271,Urgent,2023-09-12,Inconclusive,52,166,3,29,,,,DISCHARGED -53,2022-03-29,41295.399748056494,361,Emergency,2022-04-02,Normal,53,273,1,28,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -54,2021-07-04,20080.29764490514,303,Emergency,2021-07-29,Normal,54,387,4,23,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -55,2019-11-04,1888.0021112903448,317,Emergency,2019-11-19,Inconclusive,55,88,0,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -56,2021-12-28,44935.26969698472,439,Emergency,2022-01-09,Abnormal,56,315,3,4,,,,DISCHARGED -57,2022-10-27,10724.033246931533,153,Urgent,2022-11-18,Normal,57,13,0,2,,,,DISCHARGED -58,2023-04-06,14691.25004225776,438,Elective,2023-04-22,Inconclusive,58,241,3,18,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -58,2022-04-26,4927.534646772167,421,Elective,2022-05-18,Abnormal,1239,264,4,22,,,,DISCHARGED -58,2019-08-19,49228.707833991495,271,Emergency,2019-08-26,Inconclusive,1845,345,3,12,,,,DISCHARGED -58,2019-09-03,39154.24733174383,271,Urgent,2019-09-23,Abnormal,4802,52,3,4,,,,DISCHARGED -59,2020-01-19,47508.00017915965,120,Urgent,2020-01-24,Inconclusive,59,385,2,11,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -59,2020-09-29,15488.364529936747,195,Emergency,2020-10-02,Abnormal,9480,339,4,13,,,,DISCHARGED -60,2020-02-29,2628.94781998456,380,Emergency,2020-03-12,Normal,60,91,1,5,,,,DISCHARGED -61,2021-04-29,13794.720442081489,194,Urgent,2021-05-06,Inconclusive,61,366,1,29,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -61,2021-09-21,26987.12137071019,375,Elective,2021-09-26,Normal,3425,443,4,21,,,,DISCHARGED -62,2021-02-07,9991.074445541251,199,Emergency,2021-03-06,Normal,62,454,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -63,2023-10-28,18904.738199568317,404,Urgent,,Inconclusive,63,427,4,16,,,,OPEN -64,2020-08-08,44423.095535829976,301,Elective,2020-08-29,Normal,64,263,1,7,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -64,2020-03-30,48195.51281350375,220,Elective,2020-04-08,Abnormal,3882,430,2,25,,,,DISCHARGED -65,2023-07-09,22749.28413876537,223,Elective,2023-07-30,Inconclusive,65,34,1,12,,,,DISCHARGED -66,2021-06-13,21965.07965627856,410,Emergency,2021-06-23,Abnormal,66,205,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -67,2022-11-23,8311.397389222286,205,Urgent,2022-11-29,Abnormal,67,80,4,4,,,,DISCHARGED -68,2020-12-31,43547.77222226695,134,Urgent,2021-01-06,Abnormal,68,419,0,28,,,,DISCHARGED -69,2020-02-20,24509.041814010277,407,Urgent,2020-02-27,Inconclusive,69,49,0,21,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -69,2019-06-14,36026.53829069928,148,Emergency,2019-06-18,Inconclusive,5545,359,4,21,,,,DISCHARGED -70,2020-12-30,1997.332761270466,188,Urgent,2021-01-18,Normal,70,387,2,16,,,,DISCHARGED -71,2020-03-28,6575.139467900149,213,Emergency,2020-04-03,Abnormal,71,1,1,2,,,,DISCHARGED -72,2020-05-07,37421.29665993603,405,Emergency,2020-06-04,Abnormal,72,389,2,27,,,,DISCHARGED -73,2022-04-24,4679.119038677208,358,Elective,2022-05-22,Normal,73,53,0,5,,,,DISCHARGED -74,2021-07-30,22787.2792441943,147,Urgent,2021-08-27,Abnormal,74,105,4,13,,,,DISCHARGED -75,2023-08-12,33925.02014329144,115,Elective,2023-08-29,Normal,75,259,4,14,,,,DISCHARGED -76,2021-07-07,42685.19000354352,436,Emergency,2021-07-16,Abnormal,76,309,2,13,,,,DISCHARGED -77,2020-08-24,9029.126290619311,263,Emergency,2020-09-05,Normal,77,476,2,10,,,,DISCHARGED -78,2019-07-27,6777.229313799993,493,Emergency,2019-08-08,Inconclusive,78,190,1,10,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -78,2021-10-05,18232.7682106744,422,Urgent,2021-10-20,Abnormal,2603,401,3,8,,,,DISCHARGED -79,2023-08-19,28792.631974631822,460,Emergency,2023-09-07,Inconclusive,79,217,3,5,,,,DISCHARGED -80,2021-01-15,22081.278260597264,356,Emergency,2021-01-26,Abnormal,80,43,1,14,,,,DISCHARGED -81,2023-08-16,26440.396725683902,142,Elective,2023-09-15,Abnormal,81,161,3,11,,,,DISCHARGED -82,2019-10-22,46144.93971840711,392,Emergency,2019-11-10,Normal,82,201,0,28,,,,DISCHARGED -83,2018-12-28,5319.542762776323,139,Elective,2019-01-27,Abnormal,83,445,3,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -84,2019-01-12,44047.14424188422,482,Elective,2019-02-11,Normal,84,483,1,0,,,,DISCHARGED -84,2022-06-04,17592.873248294633,330,Elective,2022-07-02,Normal,7745,269,3,24,,,,DISCHARGED -85,2019-06-30,47452.441876165394,141,Urgent,2019-07-20,Abnormal,85,350,4,15,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -86,2020-12-12,34056.929869869935,397,Emergency,2020-12-29,Normal,86,303,2,19,,,,DISCHARGED -87,2019-10-21,17241.1163626356,347,Urgent,2019-10-22,Abnormal,87,270,0,14,,,,DISCHARGED -88,2021-02-10,18898.603555373968,245,Elective,2021-02-21,Inconclusive,88,455,4,1,,,,DISCHARGED -89,2020-08-15,35869.40641203239,143,Elective,2020-08-29,Normal,89,461,4,16,,,,DISCHARGED -90,2022-03-17,23559.596143840925,405,Emergency,2022-04-09,Inconclusive,90,214,1,2,,,,DISCHARGED -91,2021-10-23,23777.795524651938,142,Elective,2021-11-21,Abnormal,91,251,2,2,,,,DISCHARGED -92,2021-09-22,16931.636008434823,108,Emergency,2021-10-22,Normal,92,189,2,4,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -93,2021-03-28,13073.28802256408,268,Emergency,2021-04-06,Normal,93,295,0,16,,,,DISCHARGED -94,2018-11-18,5092.74967506549,182,Urgent,2018-12-08,Inconclusive,94,212,1,22,,,,DISCHARGED -95,2020-02-26,22577.60260775006,119,Elective,2020-03-18,Abnormal,95,207,0,28,,,,DISCHARGED -96,2020-12-10,11057.975641406209,176,Emergency,2021-01-09,Abnormal,96,236,3,16,,,,DISCHARGED -97,2022-10-15,1923.9067941825535,462,Elective,2022-10-19,Abnormal,97,337,4,19,,,,DISCHARGED -98,2023-07-03,33776.79958830402,484,Urgent,2023-07-19,Inconclusive,98,366,0,5,,,,DISCHARGED -99,2023-04-23,38450.62746287311,329,Urgent,2023-05-01,Normal,99,52,4,0,,,,DISCHARGED -100,2020-10-05,48379.06255904229,335,Urgent,2020-11-03,Inconclusive,100,279,1,6,,,,DISCHARGED -101,2021-09-12,40340.5304226113,201,Emergency,2021-09-27,Inconclusive,101,409,3,25,,,,DISCHARGED -102,2022-10-31,18161.75197765212,309,Emergency,2022-11-29,Inconclusive,102,216,1,14,,,,DISCHARGED -103,2020-12-28,23517.461851862125,389,Urgent,2021-01-14,Normal,103,251,3,6,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -104,2019-08-25,24116.59972560668,217,Urgent,2019-09-23,Inconclusive,104,187,3,18,,,,DISCHARGED -105,2020-02-16,8895.137287821723,137,Elective,2020-02-27,Abnormal,105,379,4,19,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -106,2022-06-14,48995.04883877174,299,Emergency,2022-07-13,Inconclusive,106,492,1,21,,,,DISCHARGED -107,2021-08-16,17835.950541843562,275,Urgent,2021-09-01,Normal,107,40,1,29,,,,DISCHARGED -108,2023-03-02,36379.94714743435,181,Emergency,2023-03-27,Abnormal,108,156,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -109,2021-01-22,23684.915547098724,401,Emergency,2021-02-19,Abnormal,109,14,1,22,,,,DISCHARGED -110,2023-05-25,20312.769821444414,263,Elective,2023-06-15,Inconclusive,110,300,0,13,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -111,2020-11-11,47999.806126673175,214,Elective,2020-11-14,Normal,111,64,2,12,,,,DISCHARGED -112,2019-12-05,41814.42446823161,267,Emergency,2019-12-13,Inconclusive,112,344,2,19,,,,DISCHARGED -113,2021-05-31,25436.99471967156,211,Urgent,2021-06-01,Inconclusive,113,326,2,25,,,,DISCHARGED -113,2023-05-19,40484.25712271965,462,Elective,2023-05-20,Normal,4400,8,1,26,,,,DISCHARGED -114,2020-03-08,22139.971997018227,247,Elective,2020-04-06,Normal,114,343,1,24,,,,DISCHARGED -115,2019-06-21,39666.240550571936,482,Elective,2019-07-20,Inconclusive,115,128,0,8,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -116,2022-03-27,26051.414457974857,184,Emergency,2022-04-07,Inconclusive,116,491,3,8,,,,DISCHARGED -117,2019-09-13,19279.260214819587,140,Emergency,2019-09-16,Abnormal,117,135,0,15,,,,DISCHARGED -118,2022-03-23,32007.35285877332,416,Elective,2022-04-04,Inconclusive,118,471,2,11,,,,DISCHARGED -119,2020-06-19,36823.92825999236,179,Elective,2020-07-04,Normal,119,62,0,9,,,,DISCHARGED -120,2021-07-09,36946.000267329895,115,Urgent,2021-07-10,Normal,120,138,3,5,,,,DISCHARGED -121,2020-01-14,3345.703488808345,292,Elective,2020-02-05,Inconclusive,121,498,1,17,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -122,2022-11-01,21591.836167692487,289,Elective,2022-11-24,Abnormal,122,80,0,1,,,,DISCHARGED -123,2021-08-24,13080.66532485659,293,Elective,2021-09-06,Abnormal,123,391,2,26,,,,DISCHARGED -124,2023-04-28,31008.47930812416,350,Urgent,2023-05-04,Abnormal,124,162,2,19,,,,DISCHARGED -125,2021-11-14,31546.52020237202,104,Urgent,2021-11-26,Abnormal,125,418,1,8,,,,DISCHARGED -126,2020-07-16,9824.265046284614,238,Emergency,2020-08-05,Abnormal,126,288,0,18,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -127,2022-04-28,44419.985424088765,220,Elective,2022-05-20,Normal,127,378,3,5,,,,DISCHARGED -128,2023-08-03,13759.843812407513,464,Urgent,,Inconclusive,128,260,1,1,,,,OPEN -129,2022-04-30,22862.208504756825,215,Urgent,2022-05-11,Normal,129,489,0,14,,,,DISCHARGED -130,2020-10-20,40372.11674045899,419,Urgent,2020-10-23,Normal,130,230,4,16,,,,DISCHARGED -131,2020-08-07,37867.019332053904,445,Emergency,2020-08-28,Normal,131,40,2,15,,,,DISCHARGED -132,2022-12-01,42968.27269849119,401,Emergency,2022-12-04,Normal,132,27,3,27,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -133,2019-03-04,23907.335315170323,247,Elective,2019-03-24,Inconclusive,133,134,3,20,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -133,2019-11-27,15299.234835051224,481,Emergency,2019-12-08,Abnormal,5468,200,3,7,,,,DISCHARGED -134,2020-05-31,17415.97576710672,398,Emergency,2020-06-18,Normal,134,327,2,9,,,,DISCHARGED -134,2023-02-04,10042.06121892342,198,Emergency,,Normal,8968,267,0,9,,,,OPEN -135,2020-07-29,49219.20954307443,146,Elective,2020-08-20,Inconclusive,135,417,1,17,,,,DISCHARGED -136,2023-04-18,6171.457067712023,153,Emergency,,Abnormal,136,32,0,9,,,,OPEN -137,2020-08-20,31644.800997890783,336,Emergency,2020-08-22,Normal,137,47,1,8,,,,DISCHARGED -138,2023-07-09,44535.25303619564,413,Emergency,2023-07-17,Normal,138,406,3,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -139,2023-08-19,10591.269644030772,115,Emergency,2023-08-27,Inconclusive,139,61,0,23,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -140,2021-05-09,43535.60904445826,145,Emergency,2021-05-24,Normal,140,215,3,18,,,,DISCHARGED -141,2019-04-21,41058.23387378459,148,Urgent,2019-05-09,Abnormal,141,292,4,0,,,,DISCHARGED -142,2021-06-23,7154.956699857513,432,Emergency,2021-07-03,Inconclusive,142,98,3,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -143,2022-04-30,46131.07031578395,430,Emergency,2022-05-18,Normal,143,171,3,23,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -144,2021-04-01,16487.676785652297,406,Elective,2021-05-01,Abnormal,144,359,1,2,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -145,2023-04-27,31583.5527912602,214,Emergency,,Abnormal,145,213,4,9,,,,OPEN -146,2021-08-20,29289.6526009692,295,Elective,2021-08-28,Abnormal,146,474,3,11,,,,DISCHARGED -147,2019-12-04,27022.82692689431,175,Urgent,2019-12-19,Normal,147,34,3,17,,,,DISCHARGED -148,2020-08-20,13962.427775097512,409,Urgent,2020-09-14,Inconclusive,148,448,4,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -149,2021-12-16,18991.073222521736,424,Emergency,2021-12-26,Normal,149,226,4,19,,,,DISCHARGED -150,2019-06-25,8851.608731170869,168,Elective,2019-06-29,Inconclusive,150,100,0,5,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -151,2020-04-02,31670.263275760328,136,Emergency,2020-04-22,Inconclusive,151,430,1,20,,,,DISCHARGED -152,2020-03-17,25129.17595189029,459,Emergency,2020-04-06,Inconclusive,152,461,4,1,,,,DISCHARGED -153,2022-07-31,6787.533990371548,110,Urgent,2022-08-20,Inconclusive,153,130,4,9,,,,DISCHARGED -154,2022-04-09,5974.970205241097,238,Emergency,2022-04-13,Inconclusive,154,256,2,1,,,,DISCHARGED -155,2022-03-31,18200.75799706072,261,Elective,2022-04-06,Abnormal,155,4,4,29,,,,DISCHARGED -156,2019-11-27,10753.757615365406,145,Urgent,2019-12-14,Normal,156,217,1,8,,,,DISCHARGED -157,2022-03-02,28004.34153668766,261,Elective,2022-03-25,Abnormal,157,254,3,26,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -158,2022-07-13,41890.24643937346,257,Emergency,2022-07-26,Inconclusive,158,397,3,9,,,,DISCHARGED -159,2020-04-28,23961.069814057933,170,Elective,2020-05-24,Inconclusive,159,358,3,1,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -160,2021-10-21,42051.09409357057,219,Emergency,2021-11-09,Abnormal,160,282,3,7,,,,DISCHARGED -161,2023-04-02,32613.241610463538,186,Elective,2023-04-25,Abnormal,161,392,2,23,,,,DISCHARGED -162,2023-05-19,36745.210455298446,451,Elective,,Abnormal,162,206,4,16,,,,OPEN -163,2020-02-02,21341.238842723888,372,Emergency,2020-02-18,Normal,163,14,3,16,,,,DISCHARGED -164,2022-02-18,26060.673368682383,202,Emergency,2022-02-23,Abnormal,164,345,0,28,,,,DISCHARGED -164,2023-03-13,37318.52253084823,372,Urgent,,Normal,186,41,3,3,,,,OPEN -164,2020-02-02,38972.20553391844,312,Emergency,2020-02-11,Normal,6871,379,4,17,,,,DISCHARGED -165,2020-04-29,23968.31691825013,245,Elective,2020-05-18,Normal,165,460,3,11,,,,DISCHARGED -166,2022-02-01,25926.948542070604,394,Elective,2022-02-15,Normal,166,178,2,16,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -167,2023-10-08,13981.11261300321,372,Elective,2023-10-27,Abnormal,167,62,1,8,,,,DISCHARGED -168,2023-05-24,21470.41773819721,264,Elective,2023-05-27,Inconclusive,168,351,1,28,,,,DISCHARGED -169,2018-12-23,45391.284642001214,398,Urgent,2019-01-13,Normal,169,230,4,18,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -170,2020-03-04,20926.29797947113,279,Emergency,2020-04-01,Abnormal,170,240,1,13,,,,DISCHARGED -171,2019-08-24,14029.206950528902,260,Emergency,2019-09-05,Abnormal,171,51,1,13,,,,DISCHARGED -172,2020-12-04,47034.49402476752,499,Emergency,2020-12-12,Normal,172,95,0,29,,,,DISCHARGED -173,2019-05-18,48782.85631566246,452,Emergency,2019-05-31,Normal,173,387,4,16,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -174,2022-09-23,40262.31151423387,365,Urgent,2022-10-19,Inconclusive,174,221,4,1,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -174,2019-09-27,12540.246991303611,386,Emergency,2019-10-14,Inconclusive,1365,484,1,7,,,,DISCHARGED -174,2021-01-28,10914.944587775164,260,Urgent,2021-02-13,Inconclusive,6775,406,1,4,,,,DISCHARGED -175,2022-12-18,17902.64639380951,267,Urgent,2023-01-05,Inconclusive,175,230,1,26,,,,DISCHARGED -176,2020-05-13,15773.901182914306,340,Emergency,2020-06-03,Inconclusive,176,236,2,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -177,2020-11-03,31155.40427129732,360,Emergency,2020-11-07,Inconclusive,177,142,3,21,,,,DISCHARGED -178,2020-03-25,7140.773832777042,290,Urgent,2020-04-10,Normal,178,170,2,28,,,,DISCHARGED -179,2023-05-02,21901.826644158733,103,Urgent,2023-05-27,Inconclusive,179,28,4,15,,,,DISCHARGED -180,2022-12-07,36744.03787993472,187,Urgent,2022-12-22,Abnormal,180,35,0,15,,,,DISCHARGED -180,2019-07-14,8754.548885920169,452,Urgent,2019-08-11,Inconclusive,5771,12,3,16,,,,DISCHARGED -181,2020-05-26,37006.72482949869,378,Elective,2020-06-05,Inconclusive,181,159,0,21,,,,DISCHARGED -182,2022-06-27,42431.39127028394,334,Elective,2022-07-02,Normal,182,326,4,26,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -182,2019-11-12,4825.244065937908,340,Elective,2019-11-29,Normal,7627,186,4,6,,,,DISCHARGED -183,2020-07-10,14578.913011822762,470,Urgent,2020-08-04,Normal,183,242,0,19,,,,DISCHARGED -183,2019-08-30,14027.139384365915,486,Urgent,2019-09-15,Abnormal,8295,85,0,7,,,,DISCHARGED -184,2021-12-12,30845.782022184423,252,Elective,2021-12-18,Inconclusive,184,283,0,7,,,,DISCHARGED -185,2023-06-01,14876.215477845824,162,Emergency,,Abnormal,185,65,4,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -187,2019-07-15,5727.338103033213,450,Elective,2019-07-31,Abnormal,187,169,1,10,,,,DISCHARGED -188,2022-11-17,38068.85215268489,106,Emergency,2022-11-26,Abnormal,188,44,0,14,,,,DISCHARGED -189,2019-01-23,21198.65472662128,259,Urgent,2019-02-02,Abnormal,189,61,3,17,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -190,2022-03-25,35415.68222692115,344,Urgent,2022-04-04,Normal,190,440,4,5,,,,DISCHARGED -191,2022-10-25,3673.0429478707465,489,Urgent,2022-10-28,Normal,191,133,2,21,,,,DISCHARGED -192,2018-11-21,1608.691792689302,153,Urgent,2018-11-29,Abnormal,192,283,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -193,2022-09-30,24357.6078664628,276,Urgent,2022-10-05,Abnormal,193,27,3,14,,,,DISCHARGED -194,2022-02-24,28710.513951078006,134,Elective,2022-02-26,Abnormal,194,107,1,27,,,,DISCHARGED -195,2019-12-30,7942.853285893594,155,Emergency,2020-01-26,Abnormal,195,43,0,22,,,,DISCHARGED -196,2018-11-09,3623.40823141465,361,Urgent,2018-11-19,Abnormal,196,339,4,5,,,,DISCHARGED -197,2021-06-02,5516.704185371408,155,Urgent,2021-06-14,Abnormal,197,285,0,17,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -198,2021-11-12,1452.0538192226131,120,Emergency,2021-11-28,Abnormal,198,445,4,23,,,,DISCHARGED -199,2019-10-30,19630.673492911475,455,Urgent,2019-11-13,Inconclusive,199,330,2,19,,,,DISCHARGED -200,2023-09-18,7061.842439551254,425,Urgent,,Abnormal,200,127,0,8,,,,OPEN -201,2019-07-21,48659.59883179092,108,Urgent,2019-08-10,Normal,201,347,3,7,,,,DISCHARGED -202,2021-02-13,4357.928046957646,361,Emergency,2021-03-02,Abnormal,202,472,1,13,,,,DISCHARGED -203,2020-02-12,17166.802113751983,181,Elective,2020-03-06,Abnormal,203,230,3,18,,,,DISCHARGED -203,2020-11-16,48634.28489530816,352,Elective,2020-12-06,Normal,2326,189,1,18,,,,DISCHARGED -203,2021-03-06,31829.563417226123,192,Emergency,2021-03-25,Normal,3189,224,0,7,,,,DISCHARGED -203,2019-06-14,41920.04967706079,152,Elective,2019-07-08,Normal,6757,384,0,1,,,,DISCHARGED -204,2023-07-11,34595.32839489074,205,Elective,,Abnormal,204,376,1,24,,,,OPEN -205,2023-01-17,4871.013184133684,400,Elective,,Abnormal,205,282,2,3,,,,OPEN -206,2022-08-12,24714.11476217247,127,Emergency,2022-08-28,Inconclusive,206,445,4,5,,,,DISCHARGED -207,2021-03-28,25146.966653393283,148,Emergency,2021-04-04,Normal,207,120,3,2,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -208,2019-05-14,1523.106019881822,333,Elective,2019-05-15,Normal,208,115,3,2,,,,DISCHARGED -209,2021-03-29,42208.79874931622,162,Elective,2021-04-25,Inconclusive,209,460,3,18,,,,DISCHARGED -210,2019-05-12,17656.0383962488,119,Urgent,2019-05-25,Normal,210,232,0,10,,,,DISCHARGED -211,2021-05-24,19286.481815291507,456,Elective,2021-06-21,Normal,211,258,3,28,,,,DISCHARGED -212,2022-08-28,12580.88842813392,443,Elective,2022-09-20,Normal,212,358,4,9,,,,DISCHARGED -213,2022-07-26,24153.70930246234,129,Urgent,2022-08-21,Normal,213,197,4,11,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -214,2020-06-28,33771.61714774528,292,Elective,2020-07-23,Normal,214,455,1,13,,,,DISCHARGED -215,2021-05-06,35774.256988922985,164,Emergency,2021-05-30,Inconclusive,215,410,0,29,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -216,2018-11-10,26660.61244403476,486,Elective,2018-11-14,Abnormal,216,136,4,29,,,,DISCHARGED -217,2021-10-29,12586.402694767605,440,Elective,2021-11-12,Inconclusive,217,317,2,27,,,,DISCHARGED -218,2021-02-23,36936.78774160133,275,Elective,2021-03-06,Abnormal,218,164,0,17,,,,DISCHARGED -219,2020-01-06,3973.849432100773,265,Urgent,2020-01-10,Abnormal,219,224,0,23,,,,DISCHARGED -220,2022-08-11,7377.715552608968,459,Elective,2022-08-23,Normal,220,306,4,8,,,,DISCHARGED -221,2019-11-15,41708.40918418684,193,Urgent,2019-12-12,Normal,221,233,2,14,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -222,2021-11-27,39323.85130398303,309,Emergency,2021-12-11,Inconclusive,222,171,1,23,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -223,2019-03-19,45969.61025007398,222,Emergency,2019-04-18,Normal,223,151,4,25,,,,DISCHARGED -224,2020-10-17,37374.02613608901,488,Emergency,2020-11-14,Abnormal,224,462,2,2,,,,DISCHARGED -225,2023-05-17,39086.98787283012,472,Emergency,,Normal,225,314,0,22,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -226,2020-10-05,40530.70254051108,391,Urgent,2020-10-16,Normal,226,373,2,10,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -227,2021-11-07,11571.570777611638,295,Elective,2021-11-22,Inconclusive,227,159,0,9,,,,DISCHARGED -228,2018-11-05,44256.64930794812,186,Urgent,2018-11-18,Normal,228,95,4,17,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -229,2019-12-06,11113.373663116638,162,Urgent,2019-12-17,Abnormal,229,471,4,3,,,,DISCHARGED -230,2021-03-20,19660.006933679557,179,Elective,2021-04-03,Inconclusive,230,232,3,27,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -231,2020-01-03,45434.40973278368,230,Urgent,2020-01-30,Abnormal,231,179,3,12,,,,DISCHARGED -232,2019-02-28,49035.20692704052,460,Urgent,2019-03-26,Inconclusive,232,112,3,29,,,,DISCHARGED -233,2023-06-25,43321.06324132443,322,Elective,2023-06-28,Normal,233,317,4,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -234,2022-01-03,44033.88631580622,272,Emergency,2022-01-12,Abnormal,234,496,1,5,,,,DISCHARGED -235,2021-08-20,36912.186705469736,452,Emergency,2021-09-01,Normal,235,441,4,26,,,,DISCHARGED -236,2021-02-03,23391.79405275708,301,Urgent,2021-03-05,Inconclusive,236,51,2,20,,,,DISCHARGED -237,2022-04-09,12547.100881090744,154,Elective,2022-05-05,Normal,237,267,4,12,,,,DISCHARGED -238,2020-02-02,28792.05062080646,416,Emergency,2020-02-15,Abnormal,238,294,4,24,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -239,2022-07-30,48047.65258952828,414,Urgent,2022-08-13,Inconclusive,239,385,0,25,,,,DISCHARGED -240,2021-04-11,18782.95572717789,236,Elective,2021-04-21,Abnormal,240,386,0,19,,,,DISCHARGED -241,2023-07-06,3866.337052231231,375,Emergency,,Abnormal,241,112,0,4,,,,OPEN -242,2021-05-08,23016.760104322355,141,Urgent,2021-05-26,Normal,242,100,4,19,,,,DISCHARGED -243,2022-06-17,10159.670834409591,221,Urgent,2022-07-04,Inconclusive,243,112,1,13,,,,DISCHARGED -244,2021-12-29,2212.477918683048,244,Emergency,2022-01-18,Normal,244,439,2,12,,,,DISCHARGED -245,2020-08-14,34789.57595578117,201,Emergency,2020-08-30,Inconclusive,245,80,2,13,,,,DISCHARGED -246,2022-07-20,49488.20077925565,287,Urgent,2022-07-27,Normal,246,186,1,7,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -247,2021-01-11,30304.65384984076,129,Urgent,2021-01-29,Inconclusive,247,112,1,15,,,,DISCHARGED -248,2023-10-28,24559.75928726179,179,Emergency,2023-11-02,Abnormal,248,1,2,12,,,,DISCHARGED -249,2020-12-04,13318.195486021532,181,Elective,2020-12-30,Abnormal,249,129,3,23,,,,DISCHARGED -250,2023-03-16,30570.902071926805,243,Elective,2023-04-14,Normal,250,219,0,14,,,,DISCHARGED -251,2020-03-24,12831.046557387592,370,Elective,2020-03-28,Inconclusive,251,53,0,18,,,,DISCHARGED -252,2021-10-22,2684.4017211574974,147,Elective,2021-11-04,Inconclusive,252,342,2,0,,,,DISCHARGED -253,2021-04-17,43535.02257204043,237,Elective,2021-05-16,Inconclusive,253,484,1,21,,,,DISCHARGED -254,2020-07-20,41414.986529871,292,Urgent,2020-08-09,Abnormal,254,223,3,1,,,,DISCHARGED -254,2020-10-01,27011.078263229403,357,Urgent,2020-10-17,Inconclusive,1492,224,2,17,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -255,2022-04-28,16085.737509110111,465,Elective,2022-05-25,Normal,255,384,0,18,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -256,2021-03-24,15847.440245823502,264,Urgent,2021-04-12,Inconclusive,256,402,4,7,,,,DISCHARGED -256,2020-10-27,24033.86381194272,215,Urgent,2020-10-31,Normal,9268,125,1,2,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -257,2021-04-14,33811.6857725144,234,Elective,2021-04-28,Abnormal,257,129,4,22,,,,DISCHARGED -258,2022-11-22,31911.129134091283,458,Urgent,2022-12-09,Normal,258,52,2,25,,,,DISCHARGED -259,2021-09-30,15801.842288402857,226,Urgent,2021-10-28,Abnormal,259,171,0,13,,,,DISCHARGED -260,2020-12-09,22815.891209293797,478,Urgent,2020-12-17,Abnormal,260,217,3,25,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -261,2023-03-29,26525.99380537169,204,Urgent,2023-04-22,Abnormal,261,159,4,8,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -262,2019-03-08,22985.616664913257,366,Urgent,2019-03-25,Inconclusive,262,197,3,28,,,,DISCHARGED -263,2023-08-24,39573.52145151389,196,Emergency,2023-09-21,Inconclusive,263,415,0,7,,,,DISCHARGED -264,2021-12-23,37246.81915431043,294,Elective,2022-01-07,Normal,264,246,4,16,,,,DISCHARGED -264,2022-09-04,18258.38213425475,476,Elective,2022-09-11,Inconclusive,7455,323,3,22,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -265,2022-12-08,49359.79206170607,462,Emergency,2022-12-16,Abnormal,265,438,3,22,,,,DISCHARGED -266,2022-07-10,42621.44964684069,297,Urgent,2022-07-28,Inconclusive,266,202,4,23,,,,DISCHARGED -267,2021-03-27,23660.216628296115,280,Elective,2021-04-07,Normal,267,183,0,15,,,,DISCHARGED -268,2021-12-23,35791.956328527325,238,Urgent,2022-01-10,Inconclusive,268,122,3,9,,,,DISCHARGED -269,2022-08-08,43882.56194900586,374,Elective,2022-08-14,Abnormal,269,400,2,20,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -270,2022-05-23,22979.213540298944,216,Emergency,2022-06-11,Abnormal,270,254,4,9,,,,DISCHARGED -271,2021-09-19,37360.639585599776,135,Elective,2021-09-29,Normal,271,293,1,24,,,,DISCHARGED -272,2022-05-16,40757.910944602416,303,Urgent,2022-06-09,Inconclusive,272,279,1,24,,,,DISCHARGED -273,2023-01-27,23331.281203322746,225,Elective,,Abnormal,273,324,0,23,,,,OPEN -274,2020-12-14,6628.356138570429,152,Elective,2020-12-16,Abnormal,274,371,2,5,,,,DISCHARGED -275,2020-09-26,12470.76959830422,444,Emergency,2020-10-18,Abnormal,275,97,3,21,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -276,2022-02-24,7364.750960595123,270,Urgent,2022-03-05,Inconclusive,276,197,1,16,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -277,2022-06-02,1939.3191021634184,454,Elective,2022-06-18,Normal,277,469,0,28,,,,DISCHARGED -277,2022-12-31,36463.28133462362,220,Urgent,2023-01-25,Inconclusive,2408,394,2,15,,,,DISCHARGED -278,2020-01-30,4002.824156525608,425,Urgent,2020-02-01,Inconclusive,278,239,2,14,,,,DISCHARGED -279,2022-06-08,28394.39906646661,442,Emergency,2022-07-08,Normal,279,143,0,21,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -280,2023-09-01,47295.55751295883,189,Emergency,2023-09-07,Normal,280,96,0,13,,,,DISCHARGED -281,2022-06-16,13749.968280129424,487,Emergency,2022-06-24,Normal,281,200,3,3,,,,DISCHARGED -282,2019-02-13,42550.621840623455,119,Urgent,2019-02-23,Abnormal,282,123,0,3,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -283,2020-08-27,42182.74976501221,356,Elective,2020-09-17,Normal,283,186,3,29,,,,DISCHARGED -284,2018-12-15,5901.145156327686,104,Urgent,2018-12-19,Inconclusive,284,325,3,1,,,,DISCHARGED -285,2018-12-10,10333.001823102266,184,Urgent,2018-12-22,Inconclusive,285,463,4,28,,,,DISCHARGED -286,2021-11-06,7164.88617166191,130,Urgent,2021-11-25,Normal,286,348,2,10,,,,DISCHARGED -287,2020-07-18,15622.693687190786,485,Elective,2020-07-22,Abnormal,287,258,2,29,,,,DISCHARGED -287,2019-02-10,3167.4111565989388,201,Emergency,2019-02-25,Abnormal,5585,147,2,3,,,,DISCHARGED -288,2020-05-31,20699.813436150755,218,Elective,2020-06-17,Inconclusive,288,251,4,20,,,,DISCHARGED -289,2019-01-27,25420.21123802783,445,Urgent,2019-02-08,Abnormal,289,442,3,28,,,,DISCHARGED -290,2018-12-15,17531.212779067297,111,Emergency,2018-12-28,Inconclusive,290,419,3,27,,,,DISCHARGED -291,2019-04-12,17743.96851930109,119,Emergency,2019-04-25,Abnormal,291,402,0,20,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -292,2020-10-31,45477.90913864933,482,Emergency,2020-11-27,Normal,292,345,4,15,,,,DISCHARGED -293,2023-04-16,26633.450415065217,105,Emergency,2023-05-08,Inconclusive,293,450,0,20,,,,DISCHARGED -294,2022-11-09,41995.872277153765,362,Urgent,2022-11-20,Normal,294,146,4,3,,,,DISCHARGED -295,2019-04-12,29696.19164140571,425,Elective,2019-05-08,Normal,295,147,0,0,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -295,2022-11-06,49234.3216039978,302,Urgent,2022-11-28,Inconclusive,7747,351,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -296,2021-03-02,10033.766921269436,347,Urgent,2021-03-07,Abnormal,296,198,2,25,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -297,2019-09-19,41417.84433902557,230,Elective,2019-10-18,Abnormal,297,307,2,23,,,,DISCHARGED -298,2020-03-06,16592.012152966505,223,Emergency,2020-03-22,Abnormal,298,488,3,18,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -299,2021-08-18,7858.398730971636,199,Emergency,2021-09-09,Abnormal,299,416,1,1,,,,DISCHARGED -300,2021-10-02,8487.438712109812,497,Elective,2021-10-15,Inconclusive,300,423,2,8,,,,DISCHARGED -301,2021-09-19,32142.99757357748,420,Elective,2021-09-28,Normal,301,127,3,22,,,,DISCHARGED -301,2021-12-15,17594.974880421043,464,Urgent,2021-12-26,Normal,5445,38,1,24,,,,DISCHARGED -302,2019-07-03,43311.75941534955,432,Emergency,2019-07-21,Normal,302,337,2,12,,,,DISCHARGED -303,2020-01-02,26419.324812573923,483,Emergency,2020-01-30,Inconclusive,303,359,0,17,,,,DISCHARGED -304,2019-04-27,11548.830510952335,162,Elective,2019-05-16,Normal,304,128,4,15,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -305,2018-11-14,27593.64508218064,161,Elective,2018-12-01,Abnormal,305,266,1,15,,,,DISCHARGED -306,2023-07-02,8129.35849870258,436,Emergency,,Abnormal,306,475,3,24,,,,OPEN -307,2021-12-10,44941.23044388389,485,Emergency,2021-12-12,Inconclusive,307,440,1,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -308,2019-04-25,18364.414653784555,288,Elective,2019-05-20,Abnormal,308,472,3,8,,,,DISCHARGED -309,2019-11-12,42007.24435061608,440,Emergency,2019-12-07,Normal,309,433,1,10,,,,DISCHARGED -310,2022-06-24,34747.27007791632,133,Emergency,2022-07-03,Inconclusive,310,150,3,24,,,,DISCHARGED -311,2023-06-14,4740.109026437096,425,Emergency,,Abnormal,311,414,2,25,,,,OPEN -312,2019-09-11,31600.77207749116,237,Emergency,2019-09-21,Normal,312,477,0,28,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -312,2023-10-30,49872.58407396083,210,Urgent,2023-11-19,Abnormal,2030,297,2,25,,,,DISCHARGED -313,2020-03-15,25429.83077727948,104,Elective,2020-04-11,Abnormal,313,98,0,3,,,,DISCHARGED -313,2018-12-29,13718.963947484735,429,Urgent,2019-01-10,Inconclusive,3144,262,2,9,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -314,2023-07-10,44724.88270722428,114,Emergency,2023-08-04,Abnormal,314,251,2,2,,,,DISCHARGED -315,2023-09-06,29673.008474633425,253,Urgent,2023-09-30,Abnormal,315,143,1,5,,,,DISCHARGED -316,2022-12-25,46868.40818401109,244,Urgent,2022-12-31,Normal,316,345,4,2,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -317,2021-10-24,14496.083089014775,458,Elective,2021-11-12,Inconclusive,317,111,3,26,,,,DISCHARGED -318,2020-03-19,36496.77564422509,286,Elective,2020-04-05,Normal,318,499,3,8,,,,DISCHARGED -318,2023-04-26,10949.732176868753,199,Urgent,2023-05-11,Abnormal,4102,59,3,2,,,,DISCHARGED -319,2021-01-10,6850.97280044338,270,Elective,2021-01-20,Inconclusive,319,368,0,17,,,,DISCHARGED -319,2022-06-25,25098.403979328043,380,Emergency,2022-07-06,Normal,4879,1,3,7,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -320,2021-08-28,1256.479071739218,265,Urgent,2021-09-22,Abnormal,320,384,3,21,,,,DISCHARGED -321,2021-05-06,9731.395318301362,109,Elective,2021-05-13,Inconclusive,321,303,1,7,,,,DISCHARGED -322,2023-07-06,11610.39348971673,390,Urgent,,Abnormal,322,253,2,14,,,,OPEN -323,2023-02-22,21859.77342142722,207,Urgent,2023-03-18,Normal,323,139,3,12,,,,DISCHARGED -324,2020-09-19,26442.358750239266,442,Emergency,2020-10-18,Abnormal,324,452,4,6,,,,DISCHARGED -325,2019-08-20,12287.139440438472,384,Elective,2019-09-07,Inconclusive,325,36,3,18,,,,DISCHARGED -326,2020-05-09,40449.84643340579,411,Emergency,2020-06-05,Normal,326,159,0,7,,,,DISCHARGED -327,2018-11-25,35939.431931536754,324,Emergency,2018-12-17,Normal,327,8,0,9,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -327,2023-09-05,38471.19575373122,245,Elective,2023-09-09,Abnormal,7987,232,0,16,,,,DISCHARGED -328,2021-11-12,14230.466490795783,357,Elective,2021-11-28,Normal,328,98,3,0,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -329,2022-08-27,3380.7723809302533,153,Elective,2022-09-13,Inconclusive,329,146,1,12,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -330,2020-06-07,37081.46098786112,283,Emergency,2020-06-11,Inconclusive,330,303,4,28,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -331,2020-03-15,22268.034662054877,315,Urgent,2020-04-04,Inconclusive,331,207,3,25,,,,DISCHARGED -331,2022-09-07,24034.51877562933,192,Urgent,2022-09-12,Inconclusive,7077,130,1,12,,,,DISCHARGED -332,2023-07-28,37744.299585288834,471,Elective,2023-07-29,Abnormal,332,403,1,23,,,,DISCHARGED -333,2023-06-29,33399.46560693334,274,Urgent,,Abnormal,333,151,3,15,,,,OPEN -334,2022-05-21,34173.02524058562,353,Elective,2022-06-04,Abnormal,334,53,3,28,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -335,2020-09-15,45825.97889539125,311,Urgent,2020-09-25,Normal,335,119,1,8,,,,DISCHARGED -336,2022-10-29,30203.557649485752,490,Emergency,2022-11-20,Inconclusive,336,160,1,9,,,,DISCHARGED -337,2020-01-23,24305.53370218853,135,Urgent,2020-01-28,Inconclusive,337,407,1,5,,,,DISCHARGED -338,2022-03-29,45444.29373533064,368,Elective,2022-04-21,Abnormal,338,115,3,4,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -339,2021-02-04,2534.7004700955627,284,Elective,2021-02-22,Inconclusive,339,74,1,1,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -340,2019-02-07,27676.337232617487,242,Urgent,2019-02-22,Normal,340,112,0,10,,,,DISCHARGED -341,2018-12-08,5674.214337465009,209,Urgent,2018-12-15,Abnormal,341,455,3,8,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -342,2019-12-11,43475.28509858285,404,Elective,2019-12-13,Abnormal,342,419,0,5,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -343,2019-07-30,7237.040594808773,442,Emergency,2019-08-28,Normal,343,421,2,7,,,,DISCHARGED -344,2021-10-08,45537.19439445536,110,Urgent,2021-11-01,Normal,344,103,3,8,,,,DISCHARGED -345,2021-10-02,37113.07025273272,226,Elective,2021-10-07,Inconclusive,345,339,2,8,,,,DISCHARGED -346,2023-03-29,30730.893293449484,400,Urgent,,Inconclusive,346,253,1,7,,,,OPEN -347,2022-02-06,22773.131100555293,433,Emergency,2022-02-21,Normal,347,226,1,11,,,,DISCHARGED -348,2021-11-25,31303.64786842636,116,Elective,2021-12-24,Abnormal,348,111,4,25,,,,DISCHARGED -348,2021-04-15,8270.489262945997,362,Elective,2021-05-09,Normal,9482,472,1,7,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -349,2020-01-02,37527.711514253766,247,Urgent,2020-01-27,Inconclusive,349,98,2,2,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -349,2021-07-26,12372.907407008051,196,Emergency,2021-07-29,Normal,3087,152,1,12,,,,DISCHARGED -350,2022-06-07,29986.11627858563,439,Emergency,2022-06-10,Inconclusive,350,348,3,18,,,,DISCHARGED -351,2023-06-10,23360.65861318663,460,Elective,,Inconclusive,351,401,1,1,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",OPEN -352,2022-04-15,27065.747046561937,275,Elective,2022-05-12,Normal,352,383,4,16,,,,DISCHARGED -353,2019-07-29,34465.82487563732,361,Emergency,2019-08-27,Inconclusive,353,365,1,15,,,,DISCHARGED -354,2019-02-02,36439.07844953238,303,Emergency,2019-02-05,Abnormal,354,337,2,3,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -355,2023-05-19,46161.70793060004,278,Elective,2023-06-13,Abnormal,355,193,2,17,,,,DISCHARGED -356,2022-10-14,48192.6486063671,490,Urgent,2022-11-03,Inconclusive,356,309,1,13,,,,DISCHARGED -357,2022-07-24,5061.5932847128415,249,Emergency,2022-07-28,Normal,357,162,2,29,,,,DISCHARGED -358,2020-09-14,11784.94142268194,176,Elective,2020-09-27,Abnormal,358,207,2,1,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -359,2019-09-26,6442.96821664964,498,Urgent,2019-10-02,Inconclusive,359,444,4,12,,,,DISCHARGED -360,2019-06-13,13591.04308748773,240,Emergency,2019-07-02,Inconclusive,360,168,3,26,,,,DISCHARGED -361,2023-08-26,19710.535332992906,107,Emergency,2023-09-16,Inconclusive,361,483,4,26,,,,DISCHARGED -362,2021-11-15,20846.38332202797,407,Elective,2021-11-21,Normal,362,160,0,20,,,,DISCHARGED -362,2022-09-18,16965.96207064319,320,Elective,2022-10-06,Inconclusive,5565,67,4,19,,,,DISCHARGED -362,2019-05-08,34732.26290846109,155,Urgent,2019-06-05,Normal,7564,288,1,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -362,2023-05-23,6711.307078454929,236,Elective,2023-05-24,Normal,9878,397,3,14,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -363,2018-12-05,24261.16168217426,383,Urgent,2018-12-16,Normal,363,276,1,24,,,,DISCHARGED -364,2019-08-01,43495.23034505423,493,Urgent,2019-08-23,Abnormal,364,303,0,29,,,,DISCHARGED -365,2023-06-26,34698.50261708388,338,Urgent,,Inconclusive,365,403,3,19,,,,OPEN -366,2020-06-14,18524.74395050052,115,Elective,2020-06-28,Normal,366,383,2,4,,,,DISCHARGED -367,2021-05-27,17061.046663657253,357,Urgent,2021-06-12,Abnormal,367,391,4,6,,,,DISCHARGED -368,2023-04-25,3535.011881247826,130,Elective,,Abnormal,368,134,1,17,,,,OPEN -369,2020-11-24,31359.518931029103,262,Urgent,2020-12-17,Abnormal,369,194,0,23,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -370,2021-05-20,37419.01662386105,496,Elective,2021-06-08,Inconclusive,370,400,2,10,,,,DISCHARGED -371,2021-06-03,22697.41582654181,447,Emergency,2021-06-20,Inconclusive,371,127,4,17,,,,DISCHARGED -372,2019-10-12,20649.3872071603,246,Urgent,2019-10-17,Abnormal,372,32,2,26,,,,DISCHARGED -373,2019-02-10,29737.635840160445,275,Elective,2019-02-16,Abnormal,373,175,4,25,,,,DISCHARGED -374,2023-07-04,44019.07744764769,111,Urgent,2023-07-15,Inconclusive,374,459,3,4,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -375,2020-05-30,21864.01000742826,406,Elective,2020-06-15,Inconclusive,375,442,2,12,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -376,2022-02-10,15469.681276723895,305,Elective,2022-03-06,Abnormal,376,370,2,27,,,,DISCHARGED -377,2023-09-02,27667.126598927283,252,Urgent,,Abnormal,377,469,2,17,,,,OPEN -378,2022-04-17,26172.07906359765,155,Emergency,2022-05-04,Inconclusive,378,374,3,1,,,,DISCHARGED -379,2020-08-25,44643.05436145811,152,Elective,2020-09-06,Inconclusive,379,21,0,19,,,,DISCHARGED -380,2021-05-24,39533.37820142007,315,Urgent,2021-06-13,Normal,380,237,4,3,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -381,2022-01-20,29878.881332256024,479,Elective,2022-01-22,Abnormal,381,157,2,12,,,,DISCHARGED -382,2023-07-04,34386.58635397911,462,Elective,2023-07-26,Normal,382,37,3,23,,,,DISCHARGED -383,2023-08-01,44655.69907542223,363,Emergency,2023-08-16,Inconclusive,383,229,0,28,,,,DISCHARGED -384,2021-05-07,29272.274469788208,153,Emergency,2021-05-19,Inconclusive,384,364,4,15,,,,DISCHARGED -385,2020-12-05,24181.19275845464,394,Emergency,2020-12-18,Abnormal,385,50,3,5,,,,DISCHARGED -386,2020-10-16,18089.133069620937,239,Emergency,2020-11-02,Normal,386,437,4,25,,,,DISCHARGED -387,2021-03-30,2485.616432157961,145,Emergency,2021-04-17,Normal,387,263,2,7,,,,DISCHARGED -388,2023-06-13,16118.166535916958,192,Urgent,2023-07-11,Abnormal,388,282,0,15,,,,DISCHARGED -389,2023-03-11,21025.566735250803,142,Urgent,2023-04-01,Abnormal,389,26,3,12,,,,DISCHARGED -390,2022-03-07,22624.00546071185,158,Emergency,2022-03-09,Normal,390,225,0,22,,,,DISCHARGED -391,2023-09-10,4098.8542028788615,168,Elective,2023-09-18,Inconclusive,391,276,2,28,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -392,2022-06-12,19955.344980387046,379,Emergency,2022-06-13,Inconclusive,392,285,0,25,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -393,2019-11-21,10179.756432705788,126,Emergency,2019-12-09,Abnormal,393,96,0,3,,,,DISCHARGED -394,2022-10-31,17185.194410454264,369,Emergency,2022-11-26,Normal,394,283,1,1,,,,DISCHARGED -395,2023-04-11,5411.414545512917,270,Elective,,Normal,395,366,0,8,,,,OPEN -395,2022-12-24,11866.015881332352,335,Emergency,2023-01-06,Abnormal,1051,447,4,17,,,,DISCHARGED -396,2022-08-29,35307.19747887386,229,Urgent,2022-09-07,Abnormal,396,480,3,16,,,,DISCHARGED -397,2022-01-26,10492.799553848816,497,Emergency,2022-02-06,Normal,397,452,1,7,,,,DISCHARGED -398,2019-02-17,13271.716783215192,425,Elective,2019-02-27,Inconclusive,398,316,3,25,,,,DISCHARGED -399,2019-02-23,7219.466253041419,483,Urgent,2019-03-06,Normal,399,303,3,14,,,,DISCHARGED -400,2020-01-09,6098.460276413218,372,Urgent,2020-01-17,Normal,400,146,2,8,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -401,2021-08-20,29285.344053736582,162,Emergency,2021-09-15,Abnormal,401,3,2,16,,,,DISCHARGED -402,2023-03-17,35490.26267380252,403,Urgent,,Abnormal,402,34,1,22,,,,OPEN -403,2021-02-14,28835.35019006271,205,Emergency,2021-02-24,Abnormal,403,191,2,1,,,,DISCHARGED -404,2020-01-29,11300.527273565993,497,Urgent,2020-02-15,Abnormal,404,48,2,5,,,,DISCHARGED -405,2022-12-07,15988.782443956656,353,Emergency,2022-12-29,Inconclusive,405,16,2,28,,,,DISCHARGED -406,2021-06-17,30137.59626994503,196,Emergency,2021-07-04,Normal,406,171,3,26,,,,DISCHARGED -407,2022-03-05,10045.003229310056,349,Urgent,2022-04-03,Normal,407,219,1,4,,,,DISCHARGED -408,2020-10-22,48716.28910714937,476,Emergency,2020-11-19,Normal,408,157,3,16,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -409,2022-04-27,47881.28110741898,144,Urgent,2022-05-12,Abnormal,409,476,4,1,,,,DISCHARGED -410,2023-07-08,31587.212506815024,406,Urgent,2023-07-17,Abnormal,410,45,3,17,,,,DISCHARGED -411,2019-07-06,19425.9678150406,257,Emergency,2019-07-25,Normal,411,372,4,9,,,,DISCHARGED -412,2023-09-03,38734.81354183516,259,Elective,,Abnormal,412,5,0,9,,,,OPEN -413,2019-03-07,39757.64872636877,330,Elective,2019-03-20,Normal,413,98,0,5,,,,DISCHARGED -414,2019-06-24,9199.668301340776,291,Elective,2019-07-09,Abnormal,414,379,4,26,,,,DISCHARGED -414,2022-08-21,11786.019631084911,210,Elective,2022-08-28,Abnormal,3866,232,4,11,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -415,2022-10-17,22111.45567806985,334,Emergency,2022-11-09,Abnormal,415,36,3,16,,,,DISCHARGED -416,2023-09-16,11391.122160265388,180,Urgent,2023-09-27,Inconclusive,416,279,4,26,,,,DISCHARGED -417,2021-03-09,33952.609194823075,407,Emergency,2021-04-08,Inconclusive,417,348,1,12,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -418,2022-12-17,39875.2158788523,230,Elective,2023-01-11,Inconclusive,418,496,0,19,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -418,2019-08-01,34302.73469258127,452,Urgent,2019-08-07,Normal,6495,301,0,27,,,,DISCHARGED -419,2020-10-29,46133.54164833743,325,Elective,2020-11-08,Inconclusive,419,180,4,15,,,,DISCHARGED -420,2020-02-13,19528.40176294773,268,Elective,2020-02-20,Inconclusive,420,94,2,9,,,,DISCHARGED -421,2023-03-10,45925.07177264269,224,Elective,,Abnormal,421,98,2,26,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -421,2019-09-14,46700.05126801022,272,Elective,2019-10-03,Inconclusive,3580,187,4,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -422,2023-10-11,18272.82553900976,359,Emergency,2023-10-27,Abnormal,422,480,1,1,,,,DISCHARGED -423,2022-10-31,32052.22463067412,213,Emergency,2022-11-16,Abnormal,423,115,2,1,,,,DISCHARGED -424,2019-02-09,18605.860442632416,433,Emergency,2019-02-25,Normal,424,190,4,22,,,,DISCHARGED -425,2022-03-06,45565.74980582937,340,Elective,2022-03-29,Inconclusive,425,252,1,6,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -426,2022-02-27,49213.851670692,406,Elective,2022-03-21,Inconclusive,426,468,1,5,,,,DISCHARGED -427,2019-12-12,41767.21232826044,286,Emergency,2019-12-16,Inconclusive,427,415,3,0,,,,DISCHARGED -428,2022-01-27,28158.32776555694,374,Urgent,2022-02-15,Abnormal,428,470,1,11,,,,DISCHARGED -429,2022-04-14,23888.35667902367,336,Urgent,2022-04-19,Abnormal,429,160,2,12,,,,DISCHARGED -430,2023-04-29,3991.755828825399,252,Elective,2023-05-18,Abnormal,430,255,2,11,,,,DISCHARGED -431,2023-09-04,22314.393944570365,386,Elective,2023-09-17,Abnormal,431,322,4,18,,,,DISCHARGED -432,2019-07-26,49619.86254685744,428,Elective,2019-08-25,Abnormal,432,127,4,8,,,,DISCHARGED -433,2021-06-24,47695.93306826968,439,Emergency,2021-07-11,Inconclusive,433,17,1,9,,,,DISCHARGED -434,2022-08-19,4377.60198677737,265,Elective,2022-09-09,Abnormal,434,280,0,16,,,,DISCHARGED -435,2020-11-09,33919.88146222602,153,Elective,2020-11-17,Abnormal,435,489,3,17,,,,DISCHARGED -436,2021-01-19,26017.318073241207,264,Urgent,2021-02-14,Inconclusive,436,222,0,7,,,,DISCHARGED -437,2020-08-05,24371.732446723752,234,Emergency,2020-08-13,Normal,437,53,1,6,,,,DISCHARGED -437,2020-09-23,31717.16699091609,398,Urgent,2020-10-19,Abnormal,2180,57,1,8,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -438,2022-04-02,12723.420482916645,174,Elective,2022-04-09,Inconclusive,438,322,0,9,,,,DISCHARGED -439,2023-02-05,4433.950956325497,445,Emergency,2023-02-18,Abnormal,439,359,3,11,,,,DISCHARGED -440,2019-09-29,6849.015274052991,110,Urgent,2019-10-24,Inconclusive,440,173,0,14,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -441,2021-02-07,17219.17249139119,101,Urgent,2021-02-21,Abnormal,441,279,4,14,,,,DISCHARGED -442,2020-06-21,13137.632496612798,145,Urgent,2020-07-20,Abnormal,442,113,2,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -443,2022-07-06,49528.92118252973,382,Elective,2022-07-13,Inconclusive,443,287,4,3,,,,DISCHARGED -444,2021-05-05,39734.99511709112,496,Emergency,2021-05-14,Abnormal,444,430,2,3,,,,DISCHARGED -444,2020-07-01,38587.5803444483,150,Emergency,2020-07-17,Normal,3315,341,1,22,,,,DISCHARGED -445,2020-08-26,1926.8812784193387,485,Urgent,2020-09-19,Normal,445,150,3,0,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -446,2023-07-29,26531.698294090373,375,Elective,2023-08-10,Abnormal,446,449,0,25,,,,DISCHARGED -447,2020-07-15,32573.7247492396,435,Urgent,2020-08-14,Normal,447,126,3,11,,,,DISCHARGED -448,2019-07-02,9880.393141552431,235,Emergency,2019-07-18,Normal,448,154,0,24,,,,DISCHARGED -450,2019-11-15,28473.03123070652,353,Urgent,2019-11-25,Abnormal,450,489,4,1,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -451,2023-10-24,41787.1881271981,474,Urgent,,Abnormal,451,385,4,14,,,,OPEN -452,2022-07-02,42419.10894481873,443,Urgent,2022-07-22,Abnormal,452,473,0,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -453,2020-07-30,1769.47942259644,344,Urgent,2020-08-04,Abnormal,453,272,3,6,,,,DISCHARGED -454,2019-05-28,22938.061375785877,363,Elective,2019-06-12,Normal,454,103,0,5,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -455,2020-03-28,29149.76226273954,301,Emergency,2020-04-11,Abnormal,455,416,1,11,,,,DISCHARGED -456,2021-12-13,35725.015997528026,246,Elective,2021-12-22,Abnormal,456,392,4,18,,,,DISCHARGED -457,2023-07-03,45968.66601088508,242,Elective,,Abnormal,457,298,1,0,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",OPEN -458,2022-07-31,47633.19611828846,467,Elective,2022-08-10,Inconclusive,458,245,4,27,,,,DISCHARGED -459,2022-03-24,11837.391382902972,439,Emergency,2022-04-13,Inconclusive,459,175,4,20,,,,DISCHARGED -459,2022-07-02,33329.166580649966,374,Emergency,2022-07-17,Abnormal,4961,38,2,25,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -460,2023-06-10,34295.81941924599,435,Urgent,2023-07-10,Normal,460,476,1,13,,,,DISCHARGED -461,2019-02-15,41665.42359867156,146,Elective,2019-03-11,Inconclusive,461,169,1,3,,,,DISCHARGED -462,2021-06-08,31726.59716065663,118,Elective,2021-07-04,Abnormal,462,246,2,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -463,2022-06-02,12798.354436372836,206,Elective,2022-06-15,Inconclusive,463,25,3,0,,,,DISCHARGED -464,2022-11-07,13364.28478214961,233,Emergency,2022-11-21,Normal,464,354,1,0,,,,DISCHARGED -465,2019-10-07,9198.071177894664,158,Elective,2019-10-29,Inconclusive,465,305,0,20,,,,DISCHARGED -466,2020-09-26,45218.39685568974,269,Elective,2020-10-05,Inconclusive,466,408,2,5,,,,DISCHARGED -466,2019-11-26,4117.6167256256,451,Emergency,2019-12-01,Inconclusive,7860,407,1,4,,,,DISCHARGED -467,2022-08-25,7813.239088644965,422,Emergency,2022-08-27,Abnormal,467,12,3,1,,,,DISCHARGED -468,2020-09-07,14722.06486979564,441,Urgent,2020-09-21,Inconclusive,468,315,1,24,,,,DISCHARGED -469,2020-08-06,28414.392830500576,136,Elective,2020-08-30,Normal,469,390,4,20,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -470,2019-11-07,23600.111033537287,289,Emergency,2019-11-10,Normal,470,312,0,26,,,,DISCHARGED -471,2020-02-16,22065.281396557828,320,Elective,2020-03-07,Abnormal,471,35,2,26,,,,DISCHARGED -472,2021-12-21,28830.35043862421,173,Elective,2021-12-25,Abnormal,472,172,4,4,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -473,2022-07-16,11169.299479570573,269,Urgent,2022-08-02,Abnormal,473,19,3,25,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -474,2023-10-30,37904.3953340171,359,Elective,2023-11-08,Abnormal,474,320,4,8,,,,DISCHARGED -475,2023-01-24,17370.67402887645,334,Emergency,2023-02-18,Abnormal,475,263,4,18,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -476,2023-10-16,42494.658488975496,180,Urgent,2023-10-29,Abnormal,476,493,3,20,,,,DISCHARGED -476,2020-12-26,19166.455614682505,220,Urgent,2020-12-28,Normal,6663,399,4,14,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -477,2023-05-24,3717.532768174956,412,Elective,2023-06-12,Normal,477,141,2,12,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -478,2021-07-14,5181.797329471285,277,Urgent,2021-07-21,Normal,478,459,1,11,,,,DISCHARGED -479,2019-10-31,38384.83383994121,423,Elective,2019-11-29,Inconclusive,479,370,4,4,,,,DISCHARGED -480,2019-11-11,1872.6240696749564,249,Emergency,2019-12-04,Normal,480,470,2,1,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -480,2023-09-10,11877.554813326786,290,Emergency,,Normal,5414,142,1,26,,,,OPEN -481,2021-08-27,26642.91852973562,265,Emergency,2021-09-06,Inconclusive,481,91,1,3,,,,DISCHARGED -482,2019-11-16,12517.38311628151,112,Elective,2019-11-17,Abnormal,482,353,4,26,,,,DISCHARGED -483,2018-11-25,2095.1559258625894,433,Elective,2018-12-18,Abnormal,483,321,2,26,,,,DISCHARGED -484,2019-08-10,1733.3650274449624,139,Urgent,2019-08-16,Abnormal,484,287,4,17,,,,DISCHARGED -484,2020-04-10,30453.29256083368,481,Emergency,2020-05-10,Inconclusive,934,214,3,20,,,,DISCHARGED -485,2023-07-15,47022.68531585785,304,Urgent,2023-08-03,Abnormal,485,446,1,9,,,,DISCHARGED -486,2022-03-04,37784.19228834623,120,Urgent,2022-03-12,Inconclusive,486,341,4,12,,,,DISCHARGED -487,2021-08-17,48166.4649733162,215,Emergency,2021-09-04,Inconclusive,487,50,1,11,,,,DISCHARGED -488,2021-02-17,8771.405136422072,478,Emergency,2021-03-03,Abnormal,488,152,2,1,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -489,2019-02-27,29401.01362275602,450,Elective,2019-03-22,Normal,489,185,0,25,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -490,2022-06-05,25768.14923325117,105,Emergency,2022-06-25,Normal,490,62,4,14,,,,DISCHARGED -491,2021-12-07,24931.510709500853,129,Urgent,2021-12-25,Normal,491,189,4,13,,,,DISCHARGED -492,2021-12-22,25403.265432304517,436,Urgent,2022-01-15,Normal,492,124,1,24,,,,DISCHARGED -493,2022-08-21,4872.52203867796,300,Emergency,2022-08-23,Normal,493,149,2,9,,,,DISCHARGED -494,2021-03-07,16579.523111324743,181,Elective,2021-03-14,Abnormal,494,313,3,21,,,,DISCHARGED -495,2019-07-31,36267.53004591016,359,Elective,2019-08-08,Inconclusive,495,57,2,7,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -496,2019-04-17,14630.921981044075,243,Elective,2019-04-19,Inconclusive,496,341,4,24,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -497,2021-03-06,20948.868408245267,451,Elective,2021-03-08,Inconclusive,497,304,3,14,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,DISCHARGED -498,2019-06-25,16520.40104282614,454,Emergency,2019-07-06,Abnormal,498,179,2,12,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -499,2021-02-08,40894.21213974231,324,Urgent,2021-03-03,Abnormal,499,169,0,7,,,,DISCHARGED -500,2022-11-29,21763.63091730142,413,Elective,2022-12-20,Abnormal,500,325,1,20,,,,DISCHARGED -500,2022-03-12,3091.861153836057,351,Emergency,2022-04-07,Normal,1441,270,2,20,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -501,2019-08-20,19095.93781532436,233,Urgent,2019-09-06,Abnormal,501,53,2,21,,,,DISCHARGED -502,2023-04-12,36653.518666295786,279,Urgent,2023-05-10,Normal,502,490,0,13,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -503,2021-10-30,7425.021655104772,257,Elective,2021-11-14,Normal,503,443,4,0,,,,DISCHARGED -504,2022-05-31,7971.315646371439,227,Elective,2022-06-24,Inconclusive,504,100,1,12,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -505,2020-06-28,39914.27607055036,458,Urgent,2020-07-09,Inconclusive,505,480,2,26,,,,DISCHARGED -506,2020-10-10,7114.390324960495,209,Urgent,2020-10-14,Normal,506,263,3,7,,,,DISCHARGED -506,2019-05-12,40593.27133069669,202,Elective,2019-05-24,Inconclusive,4062,52,2,17,,,,DISCHARGED -506,2021-01-10,8802.237166078168,260,Emergency,2021-02-05,Normal,9089,59,1,21,,,,DISCHARGED -507,2019-11-17,35155.664221050734,148,Urgent,2019-11-18,Abnormal,507,491,2,29,,,,DISCHARGED -508,2019-06-05,2940.4267013198146,121,Elective,2019-06-23,Inconclusive,508,107,0,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -509,2021-09-25,20832.681283156555,461,Emergency,2021-10-21,Inconclusive,509,4,2,8,,,,DISCHARGED -510,2022-07-03,26790.38571886688,228,Urgent,2022-07-12,Normal,510,102,2,12,,,,DISCHARGED -511,2020-06-30,7075.04249268287,216,Elective,2020-07-25,Inconclusive,511,195,3,2,,,,DISCHARGED -512,2021-10-06,41813.39958512251,302,Urgent,2021-10-21,Abnormal,512,261,0,17,,,,DISCHARGED -513,2019-08-16,26925.89517815298,266,Elective,2019-09-12,Inconclusive,513,364,0,9,,,,DISCHARGED -514,2019-04-11,34710.04305373714,115,Emergency,2019-04-12,Inconclusive,514,479,2,4,,,,DISCHARGED -515,2022-05-10,24406.045621389712,417,Emergency,2022-05-27,Abnormal,515,371,3,26,,,,DISCHARGED -516,2020-03-13,32681.888295183657,450,Urgent,2020-04-01,Normal,516,349,2,24,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -516,2022-05-12,38857.2600632808,441,Emergency,2022-06-01,Inconclusive,9884,46,2,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -517,2022-04-30,6070.790387328666,283,Urgent,2022-05-09,Inconclusive,517,354,1,29,,,,DISCHARGED -518,2022-12-27,8144.499917205368,369,Emergency,2023-01-11,Normal,518,310,1,7,,,,DISCHARGED -519,2019-04-18,33700.44951446174,227,Urgent,2019-05-12,Inconclusive,519,423,3,23,,,,DISCHARGED -520,2018-12-13,23147.662039422623,121,Emergency,2018-12-16,Inconclusive,520,307,4,6,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -521,2021-05-20,4779.894357051111,382,Urgent,2021-05-29,Abnormal,521,143,1,20,,,,DISCHARGED -522,2021-08-12,35536.83539932699,231,Elective,2021-08-22,Normal,522,268,4,17,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -523,2022-03-21,9548.401159450852,384,Emergency,2022-04-19,Normal,523,369,0,13,,,,DISCHARGED -524,2021-08-03,37589.305795129854,171,Urgent,2021-08-17,Normal,524,123,1,14,,,,DISCHARGED -525,2021-04-18,11480.50809386221,150,Elective,2021-05-06,Normal,525,105,1,9,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -526,2021-10-29,48934.26926430396,224,Elective,2021-11-09,Abnormal,526,157,3,25,,,,DISCHARGED -527,2021-06-08,41867.42276599655,292,Elective,2021-06-13,Normal,527,146,4,20,,,,DISCHARGED -527,2021-08-07,18030.99760957841,188,Urgent,2021-08-11,Inconclusive,5471,144,1,11,,,,DISCHARGED -528,2020-09-07,30326.548123541277,464,Urgent,2020-10-02,Abnormal,528,119,1,6,,,,DISCHARGED -528,2023-05-02,9069.588120614291,251,Emergency,,Inconclusive,7124,318,3,27,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -528,2019-05-14,19162.047514277485,109,Emergency,2019-05-28,Inconclusive,8772,274,3,27,,,,DISCHARGED -529,2019-02-15,15650.89136366234,323,Emergency,2019-03-13,Abnormal,529,91,4,6,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -529,2020-12-28,22369.397932161075,312,Urgent,2021-01-11,Abnormal,3782,57,0,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -529,2023-02-05,22591.60146174062,334,Emergency,2023-02-24,Abnormal,5193,438,0,12,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -529,2023-08-28,47327.88276694965,438,Elective,2023-09-26,Abnormal,6700,345,2,14,,,,DISCHARGED -530,2023-07-07,23674.450003124257,457,Emergency,2023-07-08,Normal,530,228,1,17,,,,DISCHARGED -531,2020-02-26,4327.007176437091,443,Urgent,2020-03-07,Abnormal,531,473,4,6,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -532,2021-03-15,29642.72166436872,349,Urgent,2021-03-28,Abnormal,532,116,1,5,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -533,2019-06-30,23708.64705040193,358,Emergency,2019-07-23,Abnormal,533,317,4,22,,,,DISCHARGED -534,2019-05-01,25553.108423598303,449,Urgent,2019-05-18,Abnormal,534,278,4,10,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -535,2021-09-20,2843.9567706199905,223,Emergency,2021-10-12,Inconclusive,535,126,4,7,,,,DISCHARGED -536,2023-08-02,17514.335725622943,418,Emergency,2023-09-01,Normal,536,392,1,19,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -536,2020-06-01,38987.91525101814,489,Emergency,2020-06-04,Normal,3997,395,3,0,,,,DISCHARGED -536,2022-02-27,2615.279110410856,361,Emergency,2022-03-20,Normal,9607,128,1,7,,,,DISCHARGED -537,2020-01-30,13176.78745609465,220,Urgent,2020-02-01,Abnormal,537,57,4,7,,,,DISCHARGED -537,2019-04-12,12524.607133670266,167,Urgent,2019-04-17,Inconclusive,4875,121,2,18,,,,DISCHARGED -538,2019-04-26,26984.7214350776,370,Urgent,2019-05-17,Normal,538,0,0,2,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -539,2022-08-08,6972.148003460449,270,Urgent,2022-09-02,Inconclusive,539,238,4,4,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -540,2022-06-16,23127.21955713945,489,Emergency,2022-07-06,Abnormal,540,289,2,29,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -541,2022-02-10,49053.356073379015,383,Emergency,2022-02-26,Normal,541,95,3,2,,,,DISCHARGED -542,2021-02-18,26673.32884194635,151,Elective,2021-02-25,Abnormal,542,125,4,14,,,,DISCHARGED -543,2019-10-22,26730.533030935014,475,Elective,2019-11-14,Normal,543,117,2,13,,,,DISCHARGED -544,2018-12-30,1273.5634892546543,193,Emergency,2019-01-09,Inconclusive,544,47,4,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -544,2019-03-11,6584.543834592671,271,Elective,2019-03-14,Inconclusive,858,88,1,14,,,,DISCHARGED -545,2019-10-07,9530.447755726893,130,Emergency,2019-10-17,Normal,545,487,2,23,,,,DISCHARGED -546,2021-03-12,41468.33201755068,486,Urgent,2021-03-13,Inconclusive,546,236,1,16,,,,DISCHARGED -547,2018-11-29,29471.338578563355,195,Emergency,2018-12-29,Normal,547,372,1,17,,,,DISCHARGED -548,2023-07-28,13566.273821021534,370,Urgent,2023-08-02,Inconclusive,548,384,2,1,,,,DISCHARGED -549,2020-01-06,44848.3132673048,394,Emergency,2020-01-12,Normal,549,271,0,11,,,,DISCHARGED -549,2019-07-12,34345.70828955726,449,Emergency,2019-08-04,Abnormal,9072,188,2,15,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -550,2021-03-17,45032.998617150966,332,Urgent,2021-04-02,Normal,550,486,0,3,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -551,2022-11-05,35815.45584647932,183,Emergency,2022-12-04,Normal,551,191,4,24,,,,DISCHARGED -552,2019-06-24,19532.53278723472,482,Urgent,2019-07-12,Abnormal,552,446,4,1,,,,DISCHARGED -553,2019-12-04,45970.0253982044,349,Urgent,2019-12-31,Abnormal,553,68,2,27,,,,DISCHARGED -554,2021-02-03,31603.464289996395,129,Urgent,2021-03-03,Inconclusive,554,277,4,13,,,,DISCHARGED -555,2022-04-20,46859.300809502565,101,Urgent,2022-05-05,Normal,555,348,3,10,,,,DISCHARGED -555,2020-11-07,34600.54375101597,413,Emergency,2020-11-23,Abnormal,1650,246,1,12,,,,DISCHARGED -555,2021-08-19,11018.936252881129,239,Emergency,2021-09-08,Abnormal,4177,450,1,27,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -556,2021-11-28,12442.5573858006,437,Urgent,2021-12-12,Normal,556,75,0,24,,,,DISCHARGED -557,2021-12-11,30663.060917614795,350,Elective,2021-12-18,Abnormal,557,153,4,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -558,2019-04-08,46515.22909192982,309,Emergency,2019-05-04,Inconclusive,558,143,0,9,,,,DISCHARGED -559,2023-02-09,11124.064664015672,114,Urgent,2023-02-22,Inconclusive,559,434,1,23,,,,DISCHARGED -559,2020-06-22,29305.80150045741,409,Urgent,2020-07-07,Normal,8306,484,1,0,,,,DISCHARGED -560,2021-06-30,47627.27783828069,394,Urgent,2021-07-09,Inconclusive,560,85,4,28,,,,DISCHARGED -560,2022-06-17,29711.44848855328,171,Elective,2022-07-12,Abnormal,642,184,3,20,,,,DISCHARGED -561,2020-04-11,31263.33812260269,359,Urgent,2020-04-21,Abnormal,561,284,3,24,,,,DISCHARGED -562,2022-02-03,28352.41473171589,469,Emergency,2022-02-20,Inconclusive,562,461,4,27,,,,DISCHARGED -563,2022-05-12,42655.64205587303,366,Emergency,2022-06-05,Normal,563,219,4,3,,,,DISCHARGED -564,2020-06-23,22269.55697399366,158,Emergency,2020-07-08,Abnormal,564,68,0,17,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -565,2021-05-08,42727.06257920989,424,Emergency,2021-05-16,Inconclusive,565,46,4,5,,,,DISCHARGED -566,2019-06-05,33632.929738282095,359,Elective,2019-06-27,Inconclusive,566,496,3,1,,,,DISCHARGED -567,2021-05-13,35921.24997513281,312,Elective,2021-05-20,Normal,567,93,4,2,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -567,2023-09-22,39038.30212916092,301,Emergency,2023-09-30,Abnormal,7463,237,0,13,,,,DISCHARGED -568,2019-04-10,29057.33788783523,292,Urgent,2019-04-16,Inconclusive,568,445,0,7,,,,DISCHARGED -568,2020-08-08,48015.68909005,437,Elective,2020-08-27,Abnormal,4633,499,0,15,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -569,2020-02-23,11798.272635112471,120,Urgent,2020-02-29,Normal,569,452,0,18,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -570,2019-02-05,29004.148319391294,172,Elective,2019-02-09,Abnormal,570,203,2,17,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -571,2022-08-03,35302.0542529773,285,Elective,2022-08-30,Inconclusive,571,399,4,5,,,,DISCHARGED -572,2023-06-01,40930.33670034296,269,Elective,,Abnormal,572,217,1,13,,,,OPEN -573,2020-10-13,18198.873724591896,353,Urgent,2020-11-04,Abnormal,573,473,4,2,,,,DISCHARGED -574,2020-02-04,2169.8000252912543,250,Emergency,2020-02-17,Abnormal,574,431,2,15,,,,DISCHARGED -575,2023-09-04,22325.85848784263,494,Emergency,,Normal,575,340,0,0,,,,OPEN -576,2020-07-17,39300.53214001592,148,Urgent,2020-07-22,Normal,576,38,2,11,,,,DISCHARGED -576,2022-01-10,7061.616018176291,403,Emergency,2022-01-26,Inconclusive,5017,99,3,29,,,,DISCHARGED -577,2021-09-09,48637.890352783135,489,Urgent,2021-09-30,Inconclusive,577,288,3,13,,,,DISCHARGED -578,2019-10-21,11455.638278335364,299,Elective,2019-11-07,Abnormal,578,253,4,18,,,,DISCHARGED -579,2023-08-14,29736.48579821002,333,Urgent,,Normal,579,221,4,21,,,,OPEN -580,2023-09-19,31546.04034452285,118,Emergency,2023-09-23,Inconclusive,580,356,1,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -581,2023-03-11,29531.96894938637,194,Urgent,2023-04-07,Abnormal,581,22,1,8,,,,DISCHARGED -582,2020-11-08,27793.874151156982,354,Elective,2020-12-07,Abnormal,582,249,3,6,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -583,2022-12-21,25651.524166615734,210,Urgent,2022-12-27,Abnormal,583,9,0,13,,,,DISCHARGED -584,2019-06-20,2633.7930984837817,459,Urgent,2019-07-11,Abnormal,584,245,2,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -585,2019-10-18,36200.574823271,150,Elective,2019-11-07,Inconclusive,585,324,1,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -586,2022-09-17,27740.621895862027,419,Elective,2022-09-25,Abnormal,586,99,1,8,,,,DISCHARGED -586,2020-10-26,17265.95313814678,173,Urgent,2020-11-10,Inconclusive,5159,289,0,20,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -587,2023-06-17,10942.246708037756,308,Urgent,2023-07-05,Normal,587,179,0,6,,,,DISCHARGED -588,2022-09-27,1580.5238993603143,385,Emergency,2022-10-05,Normal,588,222,4,8,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -589,2021-08-22,4430.935757891534,283,Urgent,2021-09-12,Abnormal,589,393,2,3,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -590,2020-05-22,47716.54155932406,150,Elective,2020-05-29,Abnormal,590,249,0,24,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -591,2023-07-15,6907.865086316721,298,Emergency,,Normal,591,146,1,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,OPEN -592,2023-04-26,37718.965979142384,349,Urgent,2023-05-09,Inconclusive,592,441,1,11,,,,DISCHARGED -593,2020-08-16,20190.8093362639,287,Emergency,2020-09-01,Normal,593,95,3,5,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -594,2019-09-27,8957.21032146065,486,Elective,2019-10-18,Inconclusive,594,256,0,17,,,,DISCHARGED -595,2022-10-02,1621.74136483954,124,Elective,2022-10-30,Abnormal,595,324,4,7,,,,DISCHARGED -596,2018-12-17,14870.627251261443,493,Elective,2019-01-12,Inconclusive,596,492,2,20,,,,DISCHARGED -597,2022-10-06,17325.665238130157,356,Elective,2022-10-07,Inconclusive,597,3,4,14,,,,DISCHARGED -598,2020-08-14,17171.201075165605,471,Emergency,2020-09-07,Normal,598,15,1,2,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -599,2019-09-04,1720.1186557995557,197,Elective,2019-09-14,Normal,599,279,4,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -599,2023-07-21,25090.970740519588,255,Elective,2023-08-17,Normal,9871,335,1,23,,,,DISCHARGED -599,2021-01-02,42473.727572099335,459,Emergency,2021-01-18,Abnormal,9885,246,1,22,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -600,2021-12-22,43169.871554592566,190,Urgent,2021-12-30,Abnormal,600,257,1,8,,,,DISCHARGED -601,2021-02-28,21815.834706117395,497,Urgent,2021-03-15,Normal,601,496,1,7,,,,DISCHARGED -602,2022-12-28,15723.024459754026,104,Emergency,2023-01-26,Normal,602,475,1,26,,,,DISCHARGED -603,2019-08-17,25943.140950768706,386,Urgent,2019-08-30,Normal,603,383,3,3,,,,DISCHARGED -604,2021-08-25,43137.28068250206,291,Urgent,2021-08-30,Normal,604,159,4,1,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -605,2019-04-29,20480.127366492598,194,Emergency,2019-05-04,Normal,605,474,3,13,,,,DISCHARGED -606,2022-11-08,41749.141427979725,358,Urgent,2022-11-17,Abnormal,606,339,3,28,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -607,2021-08-31,25944.58736990828,163,Urgent,2021-09-29,Abnormal,607,151,0,1,,,,DISCHARGED -608,2021-04-18,7898.41039505423,152,Emergency,2021-05-03,Inconclusive,608,395,0,1,,,,DISCHARGED -609,2018-12-01,26652.02629964267,339,Emergency,2018-12-02,Inconclusive,609,177,0,29,,,,DISCHARGED -610,2018-11-20,22964.513025846525,142,Urgent,2018-12-07,Normal,610,162,2,26,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -611,2022-10-30,40088.25191410642,445,Emergency,2022-11-24,Abnormal,611,379,0,27,,,,DISCHARGED -612,2020-06-18,21643.0988673552,441,Urgent,2020-07-18,Inconclusive,612,32,4,21,,,,DISCHARGED -613,2020-09-25,45847.121454257394,303,Elective,2020-10-04,Abnormal,613,416,3,6,,,,DISCHARGED -614,2020-02-01,21787.94821260656,221,Emergency,2020-02-25,Normal,614,444,4,11,,,,DISCHARGED -615,2019-07-14,1308.4505111228175,203,Urgent,2019-07-15,Abnormal,615,178,0,5,,,,DISCHARGED -616,2022-08-12,16653.861241303515,233,Elective,2022-09-08,Abnormal,616,426,2,17,,,,DISCHARGED -617,2021-03-07,4890.952697087665,355,Emergency,2021-04-05,Abnormal,617,100,2,3,,,,DISCHARGED -617,2019-11-03,5822.149830631723,346,Emergency,2019-11-08,Inconclusive,6584,267,3,18,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -618,2021-09-05,3672.3107384173054,287,Urgent,2021-09-13,Inconclusive,618,322,4,26,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -619,2022-07-02,2754.2413838719704,496,Urgent,2022-07-25,Abnormal,619,64,1,12,,,,DISCHARGED -620,2022-03-04,7375.7026775905215,469,Urgent,2022-03-20,Normal,620,416,4,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -621,2018-12-21,17774.51346033581,315,Emergency,2018-12-28,Normal,621,167,0,20,,,,DISCHARGED -622,2022-06-01,37817.35473895176,245,Urgent,2022-06-29,Abnormal,622,329,1,22,,,,DISCHARGED -623,2022-10-29,35327.49680593469,187,Elective,2022-11-05,Abnormal,623,42,2,29,,,,DISCHARGED -624,2020-02-24,7515.106726165153,118,Urgent,2020-03-18,Abnormal,624,43,3,24,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -625,2022-12-25,26191.855680458164,250,Elective,2022-12-30,Inconclusive,625,284,3,26,,,,DISCHARGED -626,2020-09-15,40368.63078527363,467,Emergency,2020-09-28,Abnormal,626,396,2,1,,,,DISCHARGED -627,2021-10-12,12318.402603786715,444,Elective,2021-10-23,Abnormal,627,11,0,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -627,2021-12-27,33140.021561048576,393,Urgent,2022-01-20,Normal,4993,94,2,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -627,2021-07-17,40729.93029548378,246,Urgent,2021-07-19,Abnormal,9855,301,0,8,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -628,2019-12-22,25682.58667785405,500,Elective,2020-01-03,Abnormal,628,385,1,25,,,,DISCHARGED -629,2023-07-03,1166.7713188498326,212,Elective,2023-08-02,Abnormal,629,252,2,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -630,2022-11-24,26137.14802036306,405,Urgent,2022-12-18,Normal,630,498,0,3,,,,DISCHARGED -631,2022-10-18,30496.5510232852,270,Elective,2022-11-08,Abnormal,631,241,1,15,,,,DISCHARGED -632,2020-02-01,22805.877722145397,226,Urgent,2020-02-22,Abnormal,632,34,2,18,,,,DISCHARGED -633,2019-05-07,49270.072507326775,133,Elective,2019-05-13,Abnormal,633,214,3,9,,,,DISCHARGED -634,2020-03-26,4858.182480607207,261,Urgent,2020-04-03,Abnormal,634,336,2,5,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -635,2019-03-09,9221.570265611015,415,Elective,2019-03-16,Abnormal,635,89,4,15,,,,DISCHARGED -636,2021-06-06,7277.398359386279,450,Emergency,2021-06-24,Abnormal,636,263,2,9,,,,DISCHARGED -637,2023-03-29,46231.732510155394,153,Emergency,2023-04-26,Normal,637,92,4,12,,,,DISCHARGED -638,2019-10-16,4159.8516752477735,240,Elective,2019-11-15,Inconclusive,638,409,1,8,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -639,2022-02-27,39008.29088176689,231,Emergency,2022-03-23,Abnormal,639,457,2,6,,,,DISCHARGED -640,2020-06-13,5859.633336178047,136,Emergency,2020-06-24,Abnormal,640,89,1,3,,,,DISCHARGED -641,2018-11-07,11504.243525500084,304,Emergency,2018-11-17,Abnormal,641,417,1,18,,,,DISCHARGED -643,2022-07-11,12779.4190671751,139,Urgent,2022-07-15,Normal,643,114,0,25,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -644,2021-07-14,37031.667951122414,464,Elective,2021-07-24,Normal,644,104,1,3,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -645,2019-03-22,35296.60739748208,478,Elective,2019-04-12,Inconclusive,645,390,1,18,,,,DISCHARGED -646,2020-11-29,13251.93066792951,272,Urgent,2020-12-11,Normal,646,195,2,27,,,,DISCHARGED -646,2022-04-12,36688.41362234406,493,Urgent,2022-05-02,Inconclusive,5599,313,2,18,,,,DISCHARGED -647,2019-06-18,10398.841431365803,263,Elective,2019-07-14,Abnormal,647,113,3,11,,,,DISCHARGED -648,2018-11-21,35824.27718337132,147,Emergency,2018-12-17,Abnormal,648,492,0,29,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -649,2021-10-29,25646.982769784863,384,Emergency,2021-11-04,Normal,649,74,1,12,,,,DISCHARGED -650,2023-08-11,38797.57016070035,443,Emergency,,Inconclusive,650,412,0,24,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",OPEN -650,2021-11-27,42999.48515017059,478,Emergency,2021-12-27,Inconclusive,5021,375,4,3,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -651,2022-09-23,39298.31397906687,499,Emergency,2022-09-29,Normal,651,419,1,24,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -652,2022-01-31,13906.86947145366,254,Urgent,2022-02-21,Abnormal,652,216,0,27,,,,DISCHARGED -653,2018-12-05,3240.3099231891383,310,Urgent,2018-12-12,Inconclusive,653,276,3,9,,,,DISCHARGED -654,2020-11-12,18890.599993942385,323,Emergency,2020-12-11,Inconclusive,654,248,3,20,,,,DISCHARGED -655,2021-10-21,1832.966602057094,308,Urgent,2021-11-14,Abnormal,655,163,1,6,,,,DISCHARGED -656,2021-10-10,9781.227877151165,145,Elective,2021-10-14,Abnormal,656,393,4,29,,,,DISCHARGED -657,2020-08-26,3484.9172789396234,287,Elective,2020-09-21,Normal,657,356,3,4,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -658,2021-07-07,28319.6755694606,223,Elective,2021-07-21,Normal,658,456,3,16,,,,DISCHARGED -659,2021-08-19,22706.167498746145,253,Emergency,2021-08-22,Abnormal,659,407,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -660,2020-01-11,8941.46951865727,155,Emergency,2020-01-17,Abnormal,660,191,0,10,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -661,2020-08-23,6537.146944177454,213,Urgent,2020-09-12,Inconclusive,661,226,3,14,,,,DISCHARGED -662,2021-01-04,2089.9212968616207,287,Emergency,2021-01-15,Inconclusive,662,176,2,20,,,,DISCHARGED -663,2021-06-25,6786.999888529623,451,Elective,2021-07-22,Inconclusive,663,98,3,21,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -664,2020-07-28,7135.088456734516,413,Emergency,2020-08-11,Normal,664,495,0,6,,,,DISCHARGED -665,2019-06-01,38992.27217140143,471,Elective,2019-06-15,Normal,665,35,0,17,,,,DISCHARGED -666,2019-05-01,24341.76247166152,288,Elective,2019-05-04,Normal,666,465,1,25,,,,DISCHARGED -667,2022-10-24,38397.633513422974,381,Emergency,2022-10-27,Normal,667,496,2,24,,,,DISCHARGED -667,2020-12-10,3818.595075203345,221,Emergency,2021-01-05,Normal,3686,486,0,5,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -668,2020-10-31,19815.01793877015,225,Emergency,2020-11-11,Inconclusive,668,95,4,17,,,,DISCHARGED -669,2021-10-23,43750.163335970974,131,Urgent,2021-11-10,Inconclusive,669,151,2,15,,,,DISCHARGED -670,2022-05-05,32288.973244691417,191,Elective,2022-05-25,Inconclusive,670,150,2,1,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -671,2020-11-20,21005.63444737728,425,Emergency,2020-12-12,Normal,671,189,4,18,,,,DISCHARGED -672,2019-06-16,34855.727260136984,233,Urgent,2019-07-05,Normal,672,223,3,0,,,,DISCHARGED -673,2022-08-06,26510.62830691177,135,Urgent,2022-09-04,Inconclusive,673,36,4,24,,,,DISCHARGED -674,2021-07-07,12042.408939254816,385,Elective,2021-07-08,Inconclusive,674,267,4,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -675,2020-04-04,41216.67692224184,178,Urgent,2020-04-28,Abnormal,675,368,3,25,,,,DISCHARGED -676,2019-06-07,6752.416370961948,405,Urgent,2019-06-11,Normal,676,182,3,10,,,,DISCHARGED -676,2018-12-17,12802.501487818598,397,Urgent,2018-12-22,Abnormal,6093,12,3,19,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -677,2023-03-09,24865.147652104934,411,Emergency,2023-03-22,Inconclusive,677,278,3,4,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -678,2021-06-01,44480.89614627855,423,Elective,2021-06-29,Normal,678,216,3,15,,,,DISCHARGED -679,2020-03-05,35699.31152905354,329,Urgent,2020-03-18,Normal,679,354,4,22,,,,DISCHARGED -680,2020-10-03,23327.64271375108,121,Emergency,2020-10-18,Normal,680,360,1,0,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -681,2023-01-15,48488.17808785007,213,Emergency,2023-01-23,Abnormal,681,285,1,18,,,,DISCHARGED -682,2021-02-10,44147.79354614219,315,Emergency,2021-03-09,Normal,682,272,0,13,,,,DISCHARGED -683,2023-02-19,43699.09339220958,460,Emergency,2023-03-06,Abnormal,683,368,1,2,,,,DISCHARGED -684,2019-12-04,34573.60212639306,366,Elective,2019-12-12,Abnormal,684,61,1,1,,,,DISCHARGED -685,2019-09-13,25726.29888730881,493,Emergency,2019-09-20,Inconclusive,685,83,4,23,,,,DISCHARGED -685,2021-07-16,37424.896712974136,357,Emergency,2021-07-22,Inconclusive,8664,367,3,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -686,2023-03-23,28751.33243401702,326,Emergency,2023-04-18,Normal,686,216,3,16,,,,DISCHARGED -687,2022-09-27,26553.981812972223,268,Elective,2022-10-27,Abnormal,687,341,4,27,,,,DISCHARGED -688,2019-08-02,34730.2311812142,441,Emergency,2019-08-25,Inconclusive,688,396,1,17,,,,DISCHARGED -689,2020-06-22,33563.15886344288,310,Elective,2020-07-13,Inconclusive,689,186,4,0,,,,DISCHARGED -690,2021-03-28,40482.86091982188,173,Elective,2021-04-13,Inconclusive,690,18,0,14,,,,DISCHARGED -691,2020-08-21,10100.077988372932,229,Elective,2020-08-31,Normal,691,176,3,21,,,,DISCHARGED -692,2023-01-29,2397.2433727984144,193,Urgent,,Normal,692,99,2,8,,,,OPEN -692,2019-12-27,7843.407417399141,494,Emergency,2020-01-01,Abnormal,7451,395,0,26,,,,DISCHARGED -692,2023-08-24,13046.980253989215,350,Elective,,Abnormal,7456,444,0,22,,,,OPEN -692,2020-01-09,3621.536449748656,392,Emergency,2020-01-26,Abnormal,8662,232,4,4,,,,DISCHARGED -693,2020-01-02,6264.5528465513535,483,Emergency,2020-01-24,Inconclusive,693,402,1,27,,,,DISCHARGED -694,2019-10-26,26193.20859270649,324,Urgent,2019-10-28,Inconclusive,694,75,3,12,,,,DISCHARGED -695,2023-04-05,26875.03408023667,103,Urgent,,Inconclusive,695,264,2,18,,,,OPEN -696,2023-06-04,20789.857274019647,179,Elective,2023-06-17,Inconclusive,696,454,0,27,,,,DISCHARGED -697,2021-01-10,44300.24972189319,334,Emergency,2021-01-21,Normal,697,283,2,27,,,,DISCHARGED -698,2022-09-18,8515.07868571556,189,Emergency,2022-09-21,Inconclusive,698,205,1,23,,,,DISCHARGED -699,2022-09-27,32934.47275227343,357,Elective,2022-10-26,Abnormal,699,222,1,9,,,,DISCHARGED -700,2020-07-05,43134.404352418045,138,Urgent,2020-07-27,Abnormal,700,383,2,19,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -701,2022-05-27,26655.77099731245,405,Emergency,2022-06-18,Abnormal,701,51,3,24,,,,DISCHARGED -702,2020-02-09,30328.08155057094,381,Urgent,2020-02-12,Normal,702,338,1,20,,,,DISCHARGED -703,2023-09-19,48960.84096432827,241,Urgent,2023-10-05,Inconclusive,703,366,2,13,,,,DISCHARGED -704,2020-01-24,29381.57959955362,478,Emergency,2020-02-05,Abnormal,704,143,0,21,,,,DISCHARGED -705,2022-02-18,42307.77965279135,306,Elective,2022-02-24,Normal,705,372,2,20,,,,DISCHARGED -706,2021-06-23,27564.35972719125,244,Elective,2021-06-26,Inconclusive,706,68,2,25,,,,DISCHARGED -707,2021-11-26,20131.64987884304,478,Emergency,2021-12-01,Abnormal,707,98,4,11,,,,DISCHARGED -708,2020-08-05,10643.351924430925,444,Urgent,2020-08-14,Abnormal,708,395,1,10,,,,DISCHARGED -709,2021-10-28,39053.62294380567,481,Elective,2021-11-04,Abnormal,709,24,3,22,,,,DISCHARGED -710,2022-11-03,19760.56870428288,347,Elective,2022-11-09,Abnormal,710,435,3,6,,,,DISCHARGED -710,2022-06-29,3304.226375100389,313,Urgent,2022-07-28,Abnormal,2800,378,4,16,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -711,2022-03-26,27726.72587782294,313,Elective,2022-04-23,Abnormal,711,468,3,17,,,,DISCHARGED -712,2019-07-08,34328.250210011785,313,Emergency,2019-07-18,Abnormal,712,483,2,6,,,,DISCHARGED -713,2023-01-02,7452.926275865916,161,Urgent,,Abnormal,713,52,4,23,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",OPEN -713,2022-01-29,9762.152487460102,378,Elective,2022-02-11,Abnormal,1084,150,0,19,,,,DISCHARGED -714,2019-03-08,35381.34910117897,460,Elective,2019-03-24,Normal,714,143,1,5,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -715,2023-09-30,29898.894423810558,164,Elective,2023-10-02,Abnormal,715,56,1,10,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -716,2021-09-11,22542.047911364465,350,Elective,2021-10-11,Inconclusive,716,38,1,11,,,,DISCHARGED -717,2020-01-10,36610.928816561405,445,Urgent,2020-01-25,Normal,717,108,2,25,,,,DISCHARGED -718,2023-04-03,19789.25254162127,413,Urgent,2023-04-07,Normal,718,180,0,15,,,,DISCHARGED -719,2021-12-17,16479.89691558537,156,Elective,2021-12-27,Normal,719,41,4,18,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -720,2021-09-02,2023.521819580016,499,Emergency,2021-09-27,Abnormal,720,185,4,22,,,,DISCHARGED -721,2021-03-06,8596.554415684222,498,Emergency,2021-03-31,Inconclusive,721,422,1,26,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -722,2021-09-01,17282.783447122092,210,Urgent,2021-09-11,Inconclusive,722,397,0,18,,,,DISCHARGED -723,2019-10-18,45839.002243320174,175,Elective,2019-10-22,Abnormal,723,222,0,10,,,,DISCHARGED -724,2019-04-10,43865.89991922462,360,Urgent,2019-05-09,Normal,724,121,0,15,,,,DISCHARGED -725,2021-02-06,5290.39706178965,362,Emergency,2021-02-13,Inconclusive,725,132,3,22,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -725,2023-09-14,10031.63094138683,148,Emergency,,Inconclusive,8012,162,3,27,,,,OPEN -725,2018-12-27,45268.70600762127,329,Elective,2019-01-25,Inconclusive,8257,214,1,26,,,,DISCHARGED -726,2019-02-10,41850.87495762621,180,Urgent,2019-02-13,Normal,726,220,0,11,,,,DISCHARGED -727,2023-09-16,26642.36763976629,402,Emergency,2023-10-14,Abnormal,727,234,0,26,,,,DISCHARGED -728,2019-07-07,9976.235732053396,272,Elective,2019-07-23,Normal,728,330,4,7,,,,DISCHARGED -729,2020-03-09,22780.126968153894,155,Urgent,2020-03-26,Abnormal,729,145,4,2,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -730,2023-04-11,19037.819963447117,203,Urgent,2023-05-09,Abnormal,730,238,1,1,,,,DISCHARGED -731,2023-05-18,5936.85442788524,248,Emergency,2023-05-19,Inconclusive,731,75,0,27,,,,DISCHARGED -732,2021-09-11,33209.18551542296,331,Elective,2021-10-03,Abnormal,732,8,1,5,,,,DISCHARGED -733,2020-06-27,25489.361897336825,430,Emergency,2020-07-09,Normal,733,73,4,15,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -734,2020-12-07,49974.80659196992,390,Emergency,2020-12-28,Normal,734,441,4,19,,,,DISCHARGED -735,2021-10-09,21078.494919886787,154,Elective,2021-11-08,Abnormal,735,491,3,23,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -736,2023-03-07,33335.113067909144,341,Emergency,,Inconclusive,736,400,1,28,,,,OPEN -737,2021-08-29,42294.9053217139,401,Urgent,2021-08-30,Inconclusive,737,252,1,14,,,,DISCHARGED -738,2019-03-09,20485.05305682624,312,Urgent,2019-03-28,Normal,738,229,0,13,,,,DISCHARGED -739,2018-11-28,24362.3739604404,424,Urgent,2018-12-02,Abnormal,739,6,0,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -740,2023-06-04,30219.840568138978,248,Urgent,,Normal,740,173,3,19,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",OPEN -741,2020-12-15,16043.149171051742,231,Urgent,2020-12-31,Normal,741,140,2,17,,,,DISCHARGED -742,2021-02-28,47901.75283538637,336,Elective,2021-03-02,Inconclusive,742,167,2,13,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -743,2022-08-07,46411.59805250819,299,Elective,2022-09-02,Abnormal,743,169,2,17,,,,DISCHARGED -744,2019-04-18,5412.689044818573,495,Urgent,2019-05-06,Inconclusive,744,392,1,1,,,,DISCHARGED -745,2020-02-10,39094.68030580683,180,Emergency,2020-02-27,Abnormal,745,433,1,0,,,,DISCHARGED -746,2022-06-13,38597.00167876915,136,Urgent,2022-06-15,Abnormal,746,282,4,19,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -747,2020-03-09,28429.30705666029,211,Elective,2020-04-07,Inconclusive,747,121,1,1,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -748,2021-08-11,44226.342901836,338,Elective,2021-09-09,Normal,748,193,1,8,,,,DISCHARGED -749,2023-03-14,24428.30168772113,470,Elective,,Abnormal,749,4,1,8,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",OPEN -750,2023-05-10,19925.36121455757,381,Emergency,2023-06-03,Inconclusive,750,28,3,15,,,,DISCHARGED -751,2023-06-08,20592.203163869275,230,Elective,2023-06-30,Inconclusive,751,164,1,10,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -752,2020-12-04,9812.179824131505,262,Urgent,2020-12-13,Abnormal,752,421,0,26,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -753,2019-11-28,19972.934865547548,139,Emergency,2019-12-12,Normal,753,338,0,22,,,,DISCHARGED -754,2022-08-15,41120.09899603738,208,Emergency,2022-08-30,Inconclusive,754,135,4,5,,,,DISCHARGED -754,2021-05-02,16581.515286624075,131,Urgent,2021-05-20,Abnormal,3396,495,3,11,,,,DISCHARGED -754,2022-07-10,49951.26176069349,476,Emergency,2022-08-06,Inconclusive,5169,364,0,2,,,,DISCHARGED -755,2023-10-12,11287.415506639492,447,Urgent,2023-10-21,Abnormal,755,320,3,29,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -756,2023-01-26,31740.491338369888,174,Emergency,,Inconclusive,756,341,3,11,,,,OPEN -757,2022-06-07,13376.239619834629,240,Elective,2022-06-29,Normal,757,499,4,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -758,2022-03-14,27639.326063183085,162,Elective,2022-03-27,Abnormal,758,144,3,22,,,,DISCHARGED -759,2019-08-16,19180.35768120774,469,Elective,2019-09-10,Normal,759,326,1,0,,,,DISCHARGED -760,2021-08-08,40812.4540565021,374,Elective,2021-08-22,Normal,760,216,3,8,,,,DISCHARGED -761,2022-02-15,17426.341356949,341,Elective,2022-03-10,Inconclusive,761,300,4,19,,,,DISCHARGED -762,2020-03-03,44982.00041483668,299,Emergency,2020-03-18,Abnormal,762,131,4,21,,,,DISCHARGED -763,2018-11-30,47650.80969466829,364,Elective,2018-12-15,Abnormal,763,291,4,5,,,,DISCHARGED -764,2020-02-16,6103.389063833198,369,Elective,2020-03-11,Normal,764,69,0,10,,,,DISCHARGED -765,2019-01-23,24921.315633679584,235,Emergency,2019-02-11,Normal,765,251,1,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -766,2018-12-13,1032.2630866161535,377,Urgent,2018-12-14,Normal,766,414,0,3,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -767,2019-09-15,42103.26303322263,366,Urgent,2019-10-07,Normal,767,274,2,28,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -768,2021-12-13,24954.7311360958,343,Urgent,2022-01-08,Normal,768,444,1,26,,,,DISCHARGED -769,2021-04-19,9326.034946567304,144,Elective,2021-05-09,Inconclusive,769,363,3,9,,,,DISCHARGED -769,2021-07-07,5276.557815435547,266,Urgent,2021-08-01,Inconclusive,8198,181,4,18,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -770,2021-05-27,25362.31419278356,148,Urgent,2021-06-26,Inconclusive,770,166,2,28,,,,DISCHARGED -771,2019-08-24,44336.26915459241,401,Urgent,2019-09-07,Inconclusive,771,90,1,5,,,,DISCHARGED -772,2022-03-12,5538.761874127573,277,Emergency,2022-03-27,Normal,772,201,0,0,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -773,2022-10-19,16280.90909814606,199,Urgent,2022-10-31,Inconclusive,773,345,4,7,,,,DISCHARGED -774,2022-02-08,8508.149556513565,183,Urgent,2022-02-10,Normal,774,18,0,7,,,,DISCHARGED -775,2020-01-03,10230.631506124004,481,Urgent,2020-01-30,Normal,775,38,1,24,,,,DISCHARGED -776,2019-02-11,41051.670280796825,329,Emergency,2019-02-21,Normal,776,125,1,5,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -777,2019-07-04,23274.304046522768,427,Urgent,2019-07-23,Inconclusive,777,450,2,16,,,,DISCHARGED -778,2023-04-13,37722.50942761079,257,Emergency,2023-05-06,Abnormal,778,172,3,18,,,,DISCHARGED -778,2022-01-05,48627.34760569774,300,Urgent,2022-01-10,Normal,784,140,0,0,,,,DISCHARGED -779,2020-04-20,47030.328586837946,467,Emergency,2020-05-10,Abnormal,779,241,2,14,,,,DISCHARGED -780,2023-01-31,32654.99224589677,289,Elective,,Abnormal,780,219,4,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",OPEN -781,2019-04-04,29497.37402678459,244,Elective,2019-04-26,Normal,781,125,3,20,,,,DISCHARGED -782,2019-05-18,27302.715218910147,375,Emergency,2019-05-29,Abnormal,782,57,2,2,,,,DISCHARGED -783,2020-11-24,47704.5817939048,296,Urgent,2020-11-29,Inconclusive,783,147,0,29,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -785,2019-04-17,35343.11175166781,189,Emergency,2019-05-03,Abnormal,785,475,1,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -786,2019-12-01,41082.61487121857,359,Elective,2019-12-07,Normal,786,455,4,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -787,2021-11-05,34712.191114828,104,Elective,2021-11-11,Abnormal,787,316,0,8,,,,DISCHARGED -788,2019-08-25,23918.812512706263,165,Elective,2019-09-20,Abnormal,788,382,3,26,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -789,2022-06-26,8749.923730892473,295,Emergency,2022-07-12,Inconclusive,789,360,3,15,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -790,2020-07-17,25970.86613875968,235,Elective,2020-07-25,Inconclusive,790,422,1,23,,,,DISCHARGED -791,2019-07-14,20536.00918132653,119,Urgent,2019-08-13,Normal,791,0,1,12,,,,DISCHARGED -792,2020-12-26,17232.967197593738,143,Urgent,2021-01-08,Inconclusive,792,386,4,18,,,,DISCHARGED -793,2023-08-05,22420.439275320496,200,Urgent,,Inconclusive,793,460,4,26,,,,OPEN -794,2022-01-24,43237.62811458214,472,Elective,2022-02-05,Normal,794,347,1,17,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -795,2023-01-29,11296.566023574776,123,Elective,2023-02-11,Abnormal,795,189,1,20,,,,DISCHARGED -796,2019-01-01,8476.740871912792,262,Urgent,2019-01-24,Normal,796,190,3,11,,,,DISCHARGED -797,2021-12-15,36408.22625238741,135,Elective,2022-01-10,Inconclusive,797,368,1,27,,,,DISCHARGED -798,2022-02-28,19484.05123974328,242,Elective,2022-03-29,Inconclusive,798,408,2,28,,,,DISCHARGED -799,2020-11-19,13608.178967324164,304,Emergency,2020-12-15,Inconclusive,799,311,0,11,,,,DISCHARGED -800,2021-07-17,25004.26860951412,416,Emergency,2021-07-18,Inconclusive,800,416,1,0,,,,DISCHARGED -801,2021-01-29,37667.41225733959,468,Emergency,2021-02-15,Inconclusive,801,421,4,19,,,,DISCHARGED -802,2019-02-16,16236.094943725762,273,Urgent,2019-03-18,Normal,802,116,2,7,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -803,2022-03-14,41603.68076690758,396,Elective,2022-04-11,Normal,803,133,4,16,,,,DISCHARGED -804,2021-05-24,30732.69838336576,292,Elective,2021-06-19,Inconclusive,804,57,2,20,,,,DISCHARGED -805,2019-07-08,29222.32718305689,355,Emergency,2019-07-26,Inconclusive,805,43,1,27,,,,DISCHARGED -806,2020-06-25,39541.66394307452,351,Emergency,2020-07-11,Normal,806,172,0,19,,,,DISCHARGED -807,2019-05-02,44595.209917483306,240,Emergency,2019-05-17,Normal,807,159,4,21,,,,DISCHARGED -808,2020-05-12,11167.18406266578,395,Emergency,2020-06-07,Inconclusive,808,172,2,6,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -809,2020-09-26,42381.33687268156,194,Elective,2020-10-05,Normal,809,316,3,8,,,,DISCHARGED -810,2022-03-21,11523.996974043888,319,Urgent,2022-03-27,Normal,810,302,1,16,,,,DISCHARGED -811,2022-03-12,38730.91328230767,130,Elective,2022-03-24,Normal,811,148,0,26,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -812,2020-03-02,16887.30253383948,340,Urgent,2020-03-20,Inconclusive,812,79,1,9,,,,DISCHARGED -813,2022-03-03,34572.735332712386,393,Urgent,2022-03-16,Abnormal,813,373,3,3,,,,DISCHARGED -814,2023-07-06,47900.18864530278,440,Urgent,,Normal,814,212,0,21,,,,OPEN -815,2019-09-05,24048.26659662773,370,Emergency,2019-09-11,Normal,815,202,3,25,,,,DISCHARGED -816,2023-07-29,41011.11902185864,268,Elective,,Inconclusive,816,251,1,6,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",OPEN -817,2020-06-19,9100.186853541489,303,Elective,2020-07-05,Inconclusive,817,228,2,6,,,,DISCHARGED -818,2023-06-21,35435.875071456,363,Emergency,2023-07-16,Inconclusive,818,163,1,7,,,,DISCHARGED -819,2023-05-09,28265.168342965186,119,Urgent,2023-06-06,Normal,819,226,1,29,,,,DISCHARGED -820,2019-08-24,1318.430280551725,129,Emergency,2019-09-05,Inconclusive,820,146,1,25,,,,DISCHARGED -820,2020-12-10,28266.4288766217,165,Emergency,2020-12-22,Abnormal,7244,19,4,23,,,,DISCHARGED -821,2022-09-21,43949.34658226591,278,Emergency,2022-09-30,Inconclusive,821,440,3,23,,,,DISCHARGED -822,2021-03-12,17245.167346985596,290,Emergency,2021-03-18,Abnormal,822,401,3,7,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -823,2023-03-16,19562.89780892543,326,Emergency,,Inconclusive,823,46,3,15,,,,OPEN -824,2021-01-24,32220.03922731605,201,Emergency,2021-02-04,Normal,824,232,4,11,,,,DISCHARGED -825,2023-07-25,33854.29689630168,461,Elective,,Abnormal,825,304,2,14,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -826,2019-06-04,45936.95113416006,244,Elective,2019-06-18,Normal,826,13,1,7,,,,DISCHARGED -827,2022-06-05,33301.630993388186,464,Urgent,2022-06-18,Abnormal,827,142,2,21,,,,DISCHARGED -828,2021-03-28,2634.757862571336,210,Urgent,2021-04-08,Normal,828,414,4,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -829,2023-09-19,43274.06974916167,268,Elective,2023-10-14,Normal,829,0,3,2,,,,DISCHARGED -830,2020-02-06,1606.2851913733862,491,Elective,2020-02-16,Inconclusive,830,372,1,21,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -831,2019-06-24,44358.02707896767,108,Emergency,2019-07-15,Inconclusive,831,53,0,20,,,,DISCHARGED -832,2023-07-21,25817.69518494261,163,Emergency,2023-07-22,Abnormal,832,373,0,15,,,,DISCHARGED -833,2018-11-03,43952.390215232524,343,Urgent,2018-11-13,Inconclusive,833,258,2,14,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -834,2023-04-10,23210.81233488537,443,Urgent,2023-04-25,Abnormal,834,143,3,23,,,,DISCHARGED -835,2021-10-22,47469.083166671415,355,Elective,2021-11-18,Inconclusive,835,470,0,3,,,,DISCHARGED -836,2019-02-24,8945.823548135064,146,Urgent,2019-03-23,Abnormal,836,440,2,19,,,,DISCHARGED -837,2019-04-01,45779.07518868438,232,Urgent,2019-04-24,Normal,837,458,4,28,,,,DISCHARGED -838,2021-12-14,14964.071601818474,376,Elective,2022-01-10,Inconclusive,838,11,2,15,,,,DISCHARGED -838,2022-07-29,25037.67180078681,231,Elective,2022-08-20,Normal,9322,329,2,9,,,,DISCHARGED -839,2022-03-16,32000.19585303313,292,Emergency,2022-03-31,Normal,839,223,2,10,,,,DISCHARGED -840,2023-01-29,18696.998297113296,266,Emergency,,Normal,840,271,1,25,,,,OPEN -841,2023-07-06,13108.510887048702,209,Elective,,Abnormal,841,455,2,28,,,,OPEN -842,2019-08-23,17892.930585551392,230,Elective,2019-09-15,Inconclusive,842,357,2,4,,,,DISCHARGED -843,2023-01-08,32942.42402901524,395,Elective,2023-01-23,Normal,843,459,1,10,,,,DISCHARGED -843,2023-06-03,21495.738111991657,310,Emergency,,Abnormal,8227,407,1,28,,,,OPEN -843,2020-02-29,21584.28724643771,249,Emergency,2020-03-04,Normal,8643,155,4,12,,,,DISCHARGED -844,2022-11-26,43613.48843229857,315,Emergency,2022-12-04,Inconclusive,844,372,3,14,,,,DISCHARGED -845,2023-02-20,19989.16791824609,449,Urgent,2023-03-14,Abnormal,845,7,0,5,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -846,2022-04-05,45853.988019674616,401,Urgent,2022-04-21,Normal,846,121,0,15,,,,DISCHARGED -847,2019-01-21,20230.445508408902,473,Elective,2019-02-06,Normal,847,347,2,14,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -848,2022-12-31,33070.80494268545,265,Elective,2023-01-18,Normal,848,163,4,10,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -849,2020-09-01,26105.14343227611,185,Emergency,2020-09-11,Normal,849,89,2,19,,,,DISCHARGED -850,2020-12-30,19835.730466945995,289,Elective,2021-01-03,Normal,850,135,0,1,,,,DISCHARGED -851,2019-08-09,36906.24048364317,417,Urgent,2019-08-28,Abnormal,851,185,1,27,,,,DISCHARGED -852,2022-04-30,30810.30608675105,429,Emergency,2022-05-25,Normal,852,315,3,27,,,,DISCHARGED -853,2019-10-04,9766.823867104662,133,Emergency,2019-10-12,Abnormal,853,177,4,29,,,,DISCHARGED -854,2019-05-18,36594.910736133126,453,Elective,2019-05-27,Normal,854,27,1,1,,,,DISCHARGED -855,2021-11-05,30615.00910167529,332,Emergency,2021-12-05,Inconclusive,855,219,3,11,,,,DISCHARGED -856,2020-04-08,42871.49405310083,374,Elective,2020-05-01,Normal,856,356,4,15,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -857,2022-05-19,43266.509988288686,435,Elective,2022-06-06,Abnormal,857,40,4,18,,,,DISCHARGED -859,2023-05-03,14317.380703337723,186,Urgent,2023-05-23,Normal,859,227,0,1,,,,DISCHARGED -860,2023-09-09,43128.45216346048,495,Emergency,2023-10-01,Normal,860,191,1,16,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -861,2019-09-18,43281.86685234736,452,Urgent,2019-10-05,Abnormal,861,410,4,13,,,,DISCHARGED -862,2021-03-12,22223.745822063414,118,Emergency,2021-03-29,Inconclusive,862,446,4,23,,,,DISCHARGED -863,2021-06-06,16817.144711016495,228,Emergency,2021-07-06,Abnormal,863,144,3,27,,,,DISCHARGED -863,2018-11-21,20367.622838115523,287,Urgent,2018-12-04,Inconclusive,1257,200,0,15,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -863,2020-04-07,2378.1039321950675,473,Emergency,2020-04-13,Inconclusive,1497,416,2,4,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -863,2022-02-24,12041.40099992239,117,Elective,2022-03-22,Abnormal,3367,211,0,9,,,,DISCHARGED -864,2021-09-05,34122.433884829334,120,Emergency,2021-09-19,Normal,864,460,2,16,,,,DISCHARGED -865,2022-07-07,25511.207481400503,348,Elective,2022-08-05,Inconclusive,865,219,1,12,,,,DISCHARGED -866,2020-09-05,37736.47265419371,232,Urgent,2020-10-01,Inconclusive,866,239,1,15,,,,DISCHARGED -867,2019-02-16,32010.07869799625,258,Urgent,2019-03-06,Inconclusive,867,412,4,8,,,,DISCHARGED -868,2022-04-07,42041.61274595943,455,Urgent,2022-04-14,Normal,868,396,1,23,,,,DISCHARGED -869,2023-06-22,37221.71893792978,382,Urgent,2023-07-15,Inconclusive,869,45,4,3,,,,DISCHARGED -869,2020-11-25,19218.478593176973,262,Urgent,2020-12-05,Normal,961,34,0,23,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -870,2021-04-23,25159.923894608342,233,Elective,2021-05-22,Abnormal,870,252,1,28,,,,DISCHARGED -871,2020-04-06,27165.33484701917,215,Emergency,2020-04-26,Normal,871,389,0,27,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -872,2023-03-31,49401.13272733071,263,Emergency,2023-04-02,Inconclusive,872,81,0,28,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -873,2021-07-04,24982.046872796636,475,Urgent,2021-07-10,Normal,873,370,1,25,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -874,2023-09-24,4861.598349460129,483,Emergency,2023-10-14,Normal,874,255,0,15,,,,DISCHARGED -875,2019-01-14,39645.26780450172,277,Emergency,2019-02-07,Normal,875,196,1,22,,,,DISCHARGED -875,2020-10-06,7811.272407607505,424,Urgent,2020-10-20,Abnormal,3345,302,1,26,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -876,2021-03-13,10776.4006344024,430,Emergency,2021-04-07,Normal,876,408,1,10,,,,DISCHARGED -877,2022-12-02,15731.156626312792,340,Emergency,2022-12-07,Normal,877,449,2,6,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -878,2019-10-02,38598.05972204022,120,Emergency,2019-10-10,Inconclusive,878,9,0,16,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -879,2023-06-03,41324.84835503696,132,Urgent,2023-06-07,Normal,879,311,3,21,,,,DISCHARGED -880,2021-11-25,24578.1849883086,437,Emergency,2021-12-16,Normal,880,285,1,12,,,,DISCHARGED -880,2021-12-21,38942.641928085446,322,Emergency,2022-01-03,Inconclusive,5393,241,0,3,,,,DISCHARGED -881,2020-05-05,36750.88798882281,457,Elective,2020-06-03,Inconclusive,881,250,4,13,,,,DISCHARGED -882,2023-10-02,9305.999962141696,332,Elective,,Normal,882,364,1,9,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,OPEN -883,2018-11-14,39472.19375652928,337,Elective,2018-11-25,Inconclusive,883,4,1,9,,,,DISCHARGED -884,2021-07-01,21707.77774066421,380,Urgent,2021-07-27,Abnormal,884,118,3,9,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -885,2021-06-15,23549.230665817217,398,Urgent,2021-07-06,Abnormal,885,288,2,26,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -886,2023-08-18,17745.867166260814,312,Emergency,2023-08-20,Inconclusive,886,373,2,11,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -887,2019-11-01,36443.7655273581,497,Emergency,2019-11-06,Normal,887,64,1,1,,,,DISCHARGED -888,2021-04-17,30101.679007294177,269,Urgent,2021-05-03,Inconclusive,888,145,0,25,,,,DISCHARGED -889,2019-06-26,25974.55282800295,317,Elective,2019-07-05,Inconclusive,889,223,4,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -890,2023-10-10,8381.32835687946,175,Urgent,2023-10-26,Normal,890,238,4,8,,,,DISCHARGED -891,2022-01-04,1897.45540969458,247,Elective,2022-01-21,Normal,891,176,0,28,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -892,2019-04-29,10160.57927857945,236,Emergency,2019-05-24,Inconclusive,892,266,1,4,,,,DISCHARGED -893,2020-04-30,16774.2745145328,255,Emergency,2020-05-14,Inconclusive,893,340,4,7,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -894,2022-11-02,20293.670726972658,247,Urgent,2022-11-19,Abnormal,894,281,2,20,,,,DISCHARGED -895,2019-10-05,5223.958945218635,143,Emergency,2019-10-25,Abnormal,895,62,0,13,,,,DISCHARGED -895,2019-11-28,25172.36391680856,299,Urgent,2019-12-25,Inconclusive,8812,216,3,6,,,,DISCHARGED -896,2021-09-30,39148.113565753534,417,Urgent,2021-10-05,Inconclusive,896,341,1,6,,,,DISCHARGED -897,2021-08-28,31040.18118413378,291,Urgent,2021-09-01,Normal,897,314,0,8,,,,DISCHARGED -898,2020-01-02,18793.673611654864,184,Urgent,2020-01-09,Normal,898,282,4,2,,,,DISCHARGED -899,2020-09-25,26851.736552517534,233,Urgent,2020-10-21,Inconclusive,899,176,1,13,,,,DISCHARGED -900,2020-08-09,16011.956739589308,253,Emergency,2020-08-23,Inconclusive,900,460,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -901,2022-01-19,30711.59869089186,370,Elective,2022-02-17,Abnormal,901,416,1,17,,,,DISCHARGED -902,2020-02-03,39174.53901940646,434,Urgent,2020-02-28,Abnormal,902,97,1,11,,,,DISCHARGED -903,2019-12-14,47813.995206288746,382,Elective,2019-12-29,Inconclusive,903,104,2,21,,,,DISCHARGED -904,2023-01-28,32125.16340235134,170,Urgent,2023-02-21,Abnormal,904,98,2,13,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -905,2022-05-23,5244.507979694919,463,Elective,2022-06-13,Inconclusive,905,384,1,25,,,,DISCHARGED -906,2023-07-16,35954.78656801338,470,Urgent,,Normal,906,404,2,25,,,,OPEN -907,2019-12-30,33571.51657135808,178,Urgent,2020-01-07,Inconclusive,907,495,0,27,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -908,2019-09-20,27603.99620970626,139,Urgent,2019-10-19,Inconclusive,908,310,2,12,,,,DISCHARGED -909,2023-09-05,38216.1304996964,394,Emergency,,Inconclusive,909,5,2,13,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",OPEN -910,2021-10-12,14083.523234672955,443,Urgent,2021-11-03,Inconclusive,910,475,1,8,,,,DISCHARGED -911,2020-06-19,4865.551837410914,386,Elective,2020-06-28,Normal,911,464,0,18,,,,DISCHARGED -912,2023-09-04,41477.44480839696,102,Elective,2023-09-21,Normal,912,196,3,25,,,,DISCHARGED -913,2021-10-23,35830.27002097727,383,Emergency,2021-10-27,Abnormal,913,350,3,1,,,,DISCHARGED -914,2018-11-01,29563.97141899037,232,Urgent,2018-11-05,Normal,914,132,4,10,,,,DISCHARGED -915,2020-08-27,22616.997534497696,195,Emergency,2020-09-21,Abnormal,915,357,2,16,,,,DISCHARGED -916,2019-07-09,32362.671074725786,290,Emergency,2019-07-13,Normal,916,258,2,1,,,,DISCHARGED -917,2020-01-13,10669.98505124486,317,Urgent,2020-02-08,Abnormal,917,436,0,18,,,,DISCHARGED -918,2019-04-05,2936.565609257423,172,Emergency,2019-04-23,Abnormal,918,22,3,6,,,,DISCHARGED -919,2021-03-25,21498.0280853457,193,Emergency,2021-04-18,Abnormal,919,484,4,17,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -919,2021-06-28,38306.006058053696,338,Emergency,2021-07-14,Abnormal,5133,52,0,12,,,,DISCHARGED -920,2020-11-20,42322.8899013448,148,Urgent,2020-11-26,Inconclusive,920,164,2,4,,,,DISCHARGED -921,2023-03-27,3345.578641233508,467,Emergency,2023-04-13,Abnormal,921,201,3,17,,,,DISCHARGED -922,2019-12-05,49142.72430759861,230,Elective,2020-01-04,Inconclusive,922,457,4,22,,,,DISCHARGED -923,2022-01-24,10571.488648119745,316,Emergency,2022-02-04,Inconclusive,923,82,1,25,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -924,2019-09-03,45454.86612459802,146,Emergency,2019-09-14,Inconclusive,924,144,3,23,,,,DISCHARGED -925,2022-10-13,22547.49600417364,491,Emergency,2022-10-21,Inconclusive,925,84,4,23,,,,DISCHARGED -926,2020-01-18,28481.45552991867,216,Urgent,2020-02-17,Inconclusive,926,77,0,28,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -926,2019-08-18,48559.37637880373,160,Emergency,2019-08-19,Inconclusive,9844,456,1,15,,,,DISCHARGED -927,2019-03-05,22508.974337063948,453,Emergency,2019-03-07,Normal,927,365,4,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -928,2019-11-01,5767.5005933531065,126,Emergency,2019-11-04,Normal,928,0,4,7,,,,DISCHARGED -929,2023-07-10,19068.02251914365,269,Elective,2023-07-12,Abnormal,929,50,2,25,,,,DISCHARGED -930,2020-08-12,7878.617814509283,145,Emergency,2020-08-27,Normal,930,172,3,14,,,,DISCHARGED -931,2019-06-20,25286.452650626565,360,Emergency,2019-06-28,Normal,931,204,2,24,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -932,2019-09-14,46304.035954818726,230,Elective,2019-09-25,Normal,932,259,1,0,,,,DISCHARGED -933,2021-11-12,3552.858736293684,345,Elective,2021-11-30,Inconclusive,933,445,4,27,,,,DISCHARGED -935,2021-12-01,47788.8009909394,354,Urgent,2021-12-13,Normal,935,448,2,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -935,2019-12-21,11346.018564147746,315,Emergency,2020-01-10,Abnormal,2538,368,3,29,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -936,2023-02-05,11876.302287752913,399,Urgent,2023-02-11,Abnormal,936,487,1,14,,,,DISCHARGED -937,2021-03-20,40247.68976367777,401,Urgent,2021-03-24,Inconclusive,937,287,0,13,,,,DISCHARGED -938,2022-10-26,47776.28688258328,247,Emergency,2022-11-06,Normal,938,33,2,13,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -939,2021-12-03,28830.111661622268,293,Urgent,2021-12-27,Normal,939,347,1,9,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -940,2020-04-16,32979.14624516548,313,Elective,2020-05-06,Abnormal,940,94,0,1,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -941,2020-03-31,25359.56450450433,468,Emergency,2020-04-13,Inconclusive,941,71,2,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -941,2022-06-05,25953.25397070174,119,Urgent,2022-06-14,Abnormal,7095,38,1,5,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -942,2023-04-21,6651.500496220246,124,Urgent,2023-05-11,Normal,942,153,1,29,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -943,2022-07-25,43965.77871435453,470,Urgent,2022-08-14,Abnormal,943,249,2,16,,,,DISCHARGED -944,2022-04-29,9964.062953370332,375,Emergency,2022-04-30,Normal,944,161,1,4,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -945,2019-10-16,37502.40471040786,449,Emergency,2019-11-03,Abnormal,945,437,4,4,,,,DISCHARGED -946,2021-09-30,28440.88139197424,500,Elective,2021-10-26,Inconclusive,946,117,2,14,,,,DISCHARGED -947,2020-01-11,18225.08407736348,422,Urgent,2020-01-26,Abnormal,947,258,1,14,,,,DISCHARGED -948,2023-08-18,47902.6238348975,314,Emergency,,Normal,948,378,0,19,,,,OPEN -949,2022-08-21,11762.22363373898,237,Elective,2022-09-13,Abnormal,949,305,0,10,,,,DISCHARGED -950,2021-11-25,11272.087766056598,349,Urgent,2021-12-04,Normal,950,267,4,4,,,,DISCHARGED -951,2018-12-21,26589.43327035366,443,Emergency,2018-12-26,Normal,951,448,2,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -952,2021-03-29,44765.71675128714,437,Elective,2021-04-02,Abnormal,952,53,1,0,,,,DISCHARGED -953,2021-06-09,30217.25113277229,295,Emergency,2021-06-28,Normal,953,235,1,10,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -954,2021-11-25,12617.485301244877,408,Emergency,2021-12-18,Abnormal,954,388,0,10,,,,DISCHARGED -955,2020-12-06,42052.52487859687,308,Elective,2021-01-05,Normal,955,477,4,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -956,2020-12-22,49125.15774544177,430,Elective,2021-01-02,Inconclusive,956,221,0,22,,,,DISCHARGED -956,2021-05-17,22623.172376866787,484,Urgent,2021-05-20,Inconclusive,3188,250,0,7,,,,DISCHARGED -957,2020-04-01,17704.741580046102,127,Emergency,2020-04-22,Abnormal,957,312,4,1,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -958,2022-08-25,39459.43626937456,188,Emergency,2022-09-17,Abnormal,958,400,2,14,,,,DISCHARGED -959,2021-06-01,6897.100320164001,164,Emergency,2021-06-24,Abnormal,959,111,1,22,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -960,2021-10-23,33283.28469600307,257,Elective,2021-11-06,Normal,960,254,2,21,,,,DISCHARGED -962,2019-06-15,14267.909879475064,159,Urgent,2019-07-04,Normal,962,302,3,8,,,,DISCHARGED -963,2019-03-19,11289.8475918743,481,Urgent,2019-04-03,Normal,963,406,3,14,,,,DISCHARGED -964,2022-09-30,49565.02133019294,125,Urgent,2022-10-18,Abnormal,964,206,3,7,,,,DISCHARGED -965,2020-10-22,9932.191489694784,135,Emergency,2020-11-07,Inconclusive,965,228,4,29,,,,DISCHARGED -966,2020-10-17,2737.6761092319102,370,Urgent,2020-10-23,Normal,966,340,0,15,,,,DISCHARGED -967,2023-05-18,39737.3294795954,144,Emergency,2023-06-03,Abnormal,967,397,2,26,Frequent headaches and light sensitivity,"Identify triggers and recommend lifestyle changes, prescribe pain relievers, and explore preventive medications.","G43.9 - Migraine, unspecified",DISCHARGED -968,2019-07-13,32465.12851802168,500,Urgent,2019-07-26,Normal,968,65,1,13,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -969,2023-08-01,49666.60565020357,251,Emergency,2023-08-11,Abnormal,969,74,3,14,,,,DISCHARGED -970,2021-10-12,3975.074524601444,310,Emergency,2021-11-03,Normal,970,434,2,19,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -971,2022-09-29,35582.755821957675,473,Emergency,2022-10-26,Abnormal,971,102,3,29,,,,DISCHARGED -971,2023-06-17,43440.69354324734,158,Elective,2023-06-22,Normal,5309,421,3,12,,,,DISCHARGED -972,2023-07-03,22722.00032027516,232,Elective,,Inconclusive,972,191,1,8,,,,OPEN -973,2021-07-19,37662.66962013407,308,Urgent,2021-08-01,Abnormal,973,251,4,0,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -974,2021-04-10,10035.332962985063,489,Emergency,2021-04-27,Normal,974,225,0,26,,,,DISCHARGED -975,2020-07-12,26153.389223171765,199,Elective,2020-07-26,Normal,975,293,4,5,,,,DISCHARGED -976,2022-01-31,3882.070120919608,284,Elective,2022-02-02,Abnormal,976,305,2,7,,,,DISCHARGED -977,2020-03-07,39221.77786876479,304,Elective,2020-03-20,Abnormal,977,97,4,26,,,,DISCHARGED -978,2023-09-28,20707.31963302498,261,Elective,2023-10-08,Normal,978,337,2,26,,,,DISCHARGED -979,2020-02-02,47443.9975967796,210,Elective,2020-02-26,Normal,979,285,2,19,,,,DISCHARGED -980,2022-08-15,34241.75892783715,262,Urgent,2022-09-02,Normal,980,334,0,17,,,,DISCHARGED -981,2018-11-17,31097.836432076627,285,Emergency,2018-12-08,Abnormal,981,346,1,26,,,,DISCHARGED -982,2018-12-04,18290.27653676672,141,Urgent,2018-12-15,Abnormal,982,434,0,17,,,,DISCHARGED -983,2020-10-12,42685.20052126965,333,Urgent,2020-10-22,Normal,983,446,4,25,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -984,2021-11-11,16471.376988443008,413,Urgent,2021-12-04,Normal,984,481,2,16,,,,DISCHARGED -985,2019-10-25,6982.392907502469,157,Emergency,2019-11-08,Abnormal,985,307,3,20,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -986,2021-10-07,13650.48758976079,465,Emergency,2021-11-03,Inconclusive,986,248,3,15,,,,DISCHARGED -987,2019-06-04,37771.75899331921,169,Elective,2019-06-12,Normal,987,165,2,12,,,,DISCHARGED -988,2019-03-02,44947.469977418456,155,Urgent,2019-03-17,Abnormal,988,480,0,21,,,,DISCHARGED -989,2019-10-13,49910.077615104696,152,Elective,2019-10-24,Inconclusive,989,471,1,3,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -990,2021-01-09,36183.54547596295,343,Urgent,2021-01-24,Inconclusive,990,334,0,3,,,,DISCHARGED -990,2020-03-24,25848.39479521417,428,Elective,2020-04-17,Abnormal,6426,29,2,20,,,,DISCHARGED -991,2020-11-22,12248.576952205853,178,Urgent,2020-11-27,Inconclusive,991,246,2,13,,,,DISCHARGED -992,2019-04-12,6852.501054774294,159,Elective,2019-04-22,Normal,992,105,1,4,,,,DISCHARGED -993,2019-07-24,13393.83069877322,387,Urgent,2019-08-19,Normal,993,50,4,15,,,,DISCHARGED -994,2020-02-04,47549.05086457916,418,Emergency,2020-02-06,Inconclusive,994,80,4,13,,,,DISCHARGED -995,2020-02-02,21293.018508273275,487,Urgent,2020-02-22,Abnormal,995,132,1,29,,,,DISCHARGED -996,2023-04-22,46888.66110954936,266,Urgent,2023-05-20,Normal,996,284,4,13,,,,DISCHARGED -997,2019-10-08,46323.269465520345,142,Emergency,2019-10-18,Abnormal,997,387,3,13,,,,DISCHARGED -998,2021-01-12,47792.23068731463,338,Urgent,2021-02-02,Abnormal,998,137,4,24,,,,DISCHARGED -999,2022-06-14,16530.72821577357,147,Elective,2022-06-27,Inconclusive,999,183,4,23,,,,DISCHARGED -1000,2022-10-31,16003.554363360294,448,Urgent,2022-11-04,Inconclusive,1000,400,4,24,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -1001,2021-03-01,38471.52971748169,123,Urgent,2021-03-16,Normal,1001,329,3,28,,,,DISCHARGED -1002,2020-07-17,19121.37769183429,391,Urgent,2020-08-08,Normal,1002,272,4,13,,,,DISCHARGED -1002,2021-04-17,46258.71307876149,373,Urgent,2021-04-27,Normal,7788,339,3,18,,,,DISCHARGED -1002,2019-12-29,24471.780221569203,453,Urgent,2020-01-13,Inconclusive,7956,471,1,29,,,,DISCHARGED -1003,2020-08-16,17214.85030012984,249,Emergency,2020-09-07,Inconclusive,1003,68,0,2,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1003,2022-11-07,39549.44744884395,185,Urgent,2022-11-11,Inconclusive,9728,33,1,16,,,,DISCHARGED -1004,2021-06-13,30395.38016403744,323,Elective,2021-06-16,Normal,1004,261,0,13,,,,DISCHARGED -1005,2023-03-24,12583.37724666549,138,Urgent,,Normal,1005,52,1,9,,,,OPEN -1005,2021-04-02,24645.5888707156,362,Urgent,2021-04-11,Normal,9741,449,0,12,,,,DISCHARGED -1006,2019-11-04,29672.584690197866,344,Emergency,2019-12-03,Abnormal,1006,204,0,21,,,,DISCHARGED -1007,2022-03-19,29093.794921313485,456,Urgent,2022-04-09,Normal,1007,125,2,3,,,,DISCHARGED -1008,2021-10-01,5327.951953059953,106,Elective,2021-10-03,Abnormal,1008,234,0,10,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1009,2019-11-19,30883.54910563144,179,Urgent,2019-11-20,Inconclusive,1009,42,0,14,,,,DISCHARGED -1010,2020-02-29,44183.98783342684,442,Emergency,2020-03-29,Inconclusive,1010,239,2,14,,,,DISCHARGED -1011,2019-09-06,32279.41242028469,204,Urgent,2019-10-02,Normal,1011,458,4,29,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1012,2019-03-08,14443.89639254573,464,Urgent,2019-03-11,Inconclusive,1012,370,4,23,,,,DISCHARGED -1013,2019-03-03,46044.10392192208,283,Elective,2019-03-28,Normal,1013,110,2,1,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1014,2020-08-10,38551.13450179261,230,Elective,2020-08-21,Inconclusive,1014,248,3,10,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1015,2023-05-10,37858.7038223006,469,Urgent,2023-05-30,Normal,1015,150,0,1,,,,DISCHARGED -1016,2022-04-01,15579.67656848146,462,Urgent,2022-04-06,Inconclusive,1016,182,0,22,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1017,2022-08-14,1427.2402451149244,331,Elective,2022-08-23,Inconclusive,1017,335,2,28,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1018,2023-08-11,13150.658308907794,451,Elective,2023-08-14,Normal,1018,94,2,4,,,,DISCHARGED -1019,2022-11-26,12276.789807472896,156,Urgent,2022-12-14,Inconclusive,1019,458,3,12,,,,DISCHARGED -1020,2023-08-21,13066.624159091592,174,Emergency,,Normal,1020,373,4,0,,,,OPEN -1021,2023-01-24,45391.450019714095,368,Urgent,,Normal,1021,399,1,6,,,,OPEN -1022,2023-02-06,13280.426895480943,462,Elective,2023-02-17,Abnormal,1022,7,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -1023,2021-09-20,18317.992713206717,467,Urgent,2021-10-14,Abnormal,1023,387,0,9,,,,DISCHARGED -1024,2023-06-03,44578.6597471159,253,Urgent,2023-06-26,Normal,1024,359,2,5,,,,DISCHARGED -1025,2023-01-01,29716.842497167323,230,Elective,,Normal,1025,387,3,19,,,,OPEN -1026,2020-11-20,44421.37049001882,153,Urgent,2020-11-21,Abnormal,1026,183,4,11,,,,DISCHARGED -1027,2023-06-12,20528.41951121232,400,Urgent,,Normal,1027,280,3,12,,,,OPEN -1028,2021-10-02,25161.661687536573,136,Emergency,2021-10-23,Abnormal,1028,194,4,23,,,,DISCHARGED -1028,2020-01-23,27722.667560162197,299,Elective,2020-02-09,Abnormal,5837,351,0,27,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1028,2019-05-04,8364.857568959138,375,Elective,2019-05-14,Inconclusive,6053,194,1,10,,,,DISCHARGED -1029,2019-01-20,20452.85316313485,431,Emergency,2019-02-16,Normal,1029,154,3,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -1030,2019-08-30,4091.350555563202,257,Emergency,2019-09-11,Abnormal,1030,92,3,1,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -1030,2023-07-21,14486.055387009932,281,Urgent,,Normal,4099,159,1,15,,,,OPEN -1030,2018-12-03,37918.21675397432,112,Urgent,2018-12-13,Normal,9281,433,3,1,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1031,2023-01-25,38877.33284293997,366,Urgent,,Normal,1031,60,3,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -1032,2019-01-01,24469.18264098984,222,Elective,2019-01-27,Normal,1032,121,4,5,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -1033,2021-08-24,1776.283726777765,482,Elective,2021-09-06,Abnormal,1033,50,4,0,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -1034,2021-01-22,10664.308196736294,440,Emergency,2021-02-19,Normal,1034,402,1,10,,,,DISCHARGED -1035,2022-07-17,2226.816011507629,223,Emergency,2022-08-13,Abnormal,1035,276,0,17,,,,DISCHARGED -1036,2021-10-17,44774.41192264778,404,Elective,2021-11-06,Normal,1036,4,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1037,2021-09-01,23738.851128162096,468,Urgent,2021-09-05,Abnormal,1037,465,0,17,,,,DISCHARGED -1038,2019-01-22,36909.15835854595,262,Emergency,2019-01-29,Inconclusive,1038,91,1,29,,,,DISCHARGED -1039,2019-04-07,9804.144829260367,157,Elective,2019-05-05,Normal,1039,169,1,27,,,,DISCHARGED -1039,2021-10-16,17558.771795464298,290,Urgent,2021-10-17,Abnormal,3293,316,4,0,,,,DISCHARGED -1040,2023-07-22,11277.168487143856,395,Elective,2023-07-26,Inconclusive,1040,21,3,18,,,,DISCHARGED -1041,2020-02-11,38109.40028920199,344,Emergency,2020-02-13,Normal,1041,404,2,15,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1042,2022-03-16,37537.0934864418,115,Emergency,2022-04-01,Abnormal,1042,325,1,25,,,,DISCHARGED -1043,2022-10-01,32755.08364614499,498,Emergency,2022-10-05,Normal,1043,0,3,6,,,,DISCHARGED -1044,2023-10-09,12639.613943913071,129,Urgent,,Inconclusive,1044,132,0,14,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -1045,2019-09-21,9533.901075690825,385,Elective,2019-09-23,Inconclusive,1045,232,4,28,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1046,2021-09-16,32026.06579071749,480,Elective,2021-10-06,Abnormal,1046,11,0,0,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -1047,2019-11-15,45667.404262042925,187,Emergency,2019-11-27,Inconclusive,1047,345,1,22,,,,DISCHARGED -1048,2020-05-19,49828.86971328996,451,Urgent,2020-06-09,Normal,1048,45,1,20,,,,DISCHARGED -1049,2023-08-14,29466.305618018185,104,Urgent,2023-08-20,Normal,1049,33,0,8,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1050,2021-08-16,13253.460095166196,106,Elective,2021-09-12,Normal,1050,432,1,1,,,,DISCHARGED -1052,2022-06-20,13725.585572467988,218,Emergency,2022-06-28,Normal,1052,77,3,16,,,,DISCHARGED -1053,2020-12-30,47970.554912473664,389,Urgent,2021-01-25,Abnormal,1053,217,1,24,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1054,2020-09-28,16874.34385786162,149,Emergency,2020-10-10,Inconclusive,1054,300,4,23,,,,DISCHARGED -1055,2022-11-23,3980.950877472487,472,Emergency,2022-12-19,Abnormal,1055,410,3,9,,,,DISCHARGED -1056,2023-06-13,30279.07586104645,419,Urgent,,Abnormal,1056,72,2,5,,,,OPEN -1057,2021-11-21,48363.46949168556,317,Emergency,2021-11-25,Abnormal,1057,281,1,4,,,,DISCHARGED -1058,2021-08-30,9142.466559530152,437,Emergency,2021-09-04,Abnormal,1058,248,1,7,,,,DISCHARGED -1059,2021-06-15,25761.41803889061,282,Urgent,2021-06-26,Abnormal,1059,46,4,7,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1060,2019-02-26,10540.626324518766,319,Urgent,2019-02-27,Abnormal,1060,120,4,29,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1061,2023-07-22,30243.63012895959,449,Elective,2023-08-08,Normal,1061,213,0,4,,,,DISCHARGED -1062,2023-05-04,8156.690305870477,410,Urgent,,Abnormal,1062,238,0,11,,,,OPEN -1063,2021-12-25,24424.22559421633,264,Emergency,2022-01-17,Abnormal,1063,55,0,6,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -1064,2018-12-22,35172.5191017441,343,Urgent,2019-01-02,Abnormal,1064,349,4,12,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1065,2023-02-10,41657.17672978149,347,Urgent,2023-03-01,Inconclusive,1065,106,0,12,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1066,2020-08-17,44920.1547233997,467,Elective,2020-09-14,Abnormal,1066,318,0,16,,,,DISCHARGED -1067,2020-03-11,32077.001406178097,198,Elective,2020-04-06,Inconclusive,1067,47,2,3,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1068,2019-09-26,25381.415091573832,396,Elective,2019-10-20,Abnormal,1068,60,0,17,,,,DISCHARGED -1068,2021-07-19,28628.99097100425,407,Urgent,2021-07-26,Abnormal,3705,336,1,9,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1069,2021-11-04,46898.20096350798,445,Elective,2021-11-23,Inconclusive,1069,25,4,2,,,,DISCHARGED -1070,2020-02-07,46575.69231142742,249,Emergency,2020-03-02,Normal,1070,291,3,11,,,,DISCHARGED -1071,2020-03-28,43951.99192963962,151,Urgent,2020-03-29,Inconclusive,1071,256,2,0,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -1071,2022-08-09,23904.01991837312,299,Urgent,2022-08-31,Normal,2080,7,4,26,,,,DISCHARGED -1072,2022-02-10,46193.03652568125,290,Elective,2022-02-16,Abnormal,1072,112,4,10,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -1073,2022-01-06,37450.27203193296,348,Elective,2022-01-26,Normal,1073,354,1,17,,,,DISCHARGED -1074,2019-03-06,14720.929669349263,462,Emergency,2019-03-14,Inconclusive,1074,252,0,12,,,,DISCHARGED -1075,2023-04-18,8632.347576091594,482,Emergency,,Abnormal,1075,179,1,16,,,,OPEN -1076,2020-07-24,36803.18173741968,182,Urgent,2020-07-31,Abnormal,1076,206,0,7,,,,DISCHARGED -1077,2020-10-01,47733.26472412944,369,Emergency,2020-10-14,Normal,1077,302,0,19,,,,DISCHARGED -1077,2020-04-03,22908.642678849417,292,Urgent,2020-04-14,Normal,2343,126,4,18,,,,DISCHARGED -1077,2022-02-12,29685.310988178346,418,Urgent,2022-02-13,Inconclusive,9571,55,0,16,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -1078,2019-07-11,25099.690427998063,176,Elective,2019-08-02,Abnormal,1078,213,2,1,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1079,2023-10-19,12447.996620982372,202,Elective,,Inconclusive,1079,13,2,2,,,,OPEN -1080,2019-05-16,49267.52595702954,344,Emergency,2019-06-03,Abnormal,1080,473,2,2,,,,DISCHARGED -1081,2023-05-22,27719.14087727544,452,Urgent,,Abnormal,1081,27,4,5,,,,OPEN -1082,2022-03-15,33080.820074953386,455,Urgent,2022-03-19,Normal,1082,470,1,9,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -1083,2019-05-27,48609.473182639726,283,Emergency,2019-06-08,Normal,1083,77,3,23,,,,DISCHARGED -1085,2019-06-13,23958.47661600233,129,Emergency,2019-06-20,Abnormal,1085,215,0,21,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -1086,2020-01-07,19382.086973287744,134,Urgent,2020-01-28,Inconclusive,1086,385,3,17,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1087,2022-11-04,14226.518027129663,472,Elective,2022-11-13,Inconclusive,1087,364,1,17,,,,DISCHARGED -1088,2022-11-03,26674.5612548506,317,Urgent,2022-11-19,Abnormal,1088,153,1,13,,,,DISCHARGED -1089,2023-04-16,31470.56944624252,392,Elective,2023-05-08,Abnormal,1089,13,4,15,,,,DISCHARGED -1090,2021-06-04,45081.410725158734,287,Elective,2021-06-15,Inconclusive,1090,186,2,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1091,2019-08-28,40959.45695498407,313,Emergency,2019-09-14,Abnormal,1091,311,2,0,,,,DISCHARGED -1092,2022-11-28,24230.372278766685,307,Urgent,2022-12-11,Inconclusive,1092,370,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -1093,2018-11-05,16694.51505391854,281,Emergency,2018-12-03,Abnormal,1093,6,4,22,,,,DISCHARGED -1094,2021-05-10,31626.636262441792,149,Elective,2021-05-24,Normal,1094,2,4,24,,,,DISCHARGED -1095,2020-12-25,12335.809240705576,125,Emergency,2021-01-24,Abnormal,1095,110,0,4,,,,DISCHARGED -1096,2020-10-05,2987.5399188342394,382,Emergency,2020-10-17,Inconclusive,1096,406,2,26,,,,DISCHARGED -1097,2018-12-05,20832.09607910485,255,Urgent,2018-12-06,Inconclusive,1097,237,1,0,,,,DISCHARGED -1098,2019-01-02,39624.18294525288,396,Urgent,2019-01-07,Inconclusive,1098,362,3,20,,,,DISCHARGED -1099,2021-11-12,36578.7696378829,110,Elective,2021-11-18,Inconclusive,1099,238,2,26,,,,DISCHARGED -1099,2020-06-07,36414.4418703498,308,Elective,2020-07-01,Normal,2992,492,0,16,,,,DISCHARGED -1099,2020-01-19,41992.04300672076,363,Emergency,2020-01-26,Inconclusive,8021,273,4,9,,,,DISCHARGED -1099,2021-10-29,28768.908112164,410,Elective,2021-11-01,Inconclusive,9009,293,1,11,,,,DISCHARGED -1100,2023-04-10,34658.16021565173,138,Elective,2023-04-17,Abnormal,1100,226,2,24,,,,DISCHARGED -1101,2019-03-24,7244.795094079022,373,Urgent,2019-04-10,Inconclusive,1101,370,3,19,,,,DISCHARGED -1102,2021-12-09,39957.22771485021,364,Elective,2021-12-23,Inconclusive,1102,14,0,24,,,,DISCHARGED -1103,2023-07-10,21935.7261253434,422,Emergency,,Inconclusive,1103,191,0,1,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -1104,2021-01-12,49745.81197663535,301,Elective,2021-02-08,Normal,1104,472,2,22,,,,DISCHARGED -1105,2023-01-15,31022.66273851671,383,Urgent,2023-01-21,Inconclusive,1105,118,3,15,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1105,2021-03-06,11184.769841216035,394,Emergency,2021-03-28,Inconclusive,4982,484,0,14,,,,DISCHARGED -1106,2021-11-22,2501.263990397233,207,Elective,2021-11-25,Abnormal,1106,27,1,27,,,,DISCHARGED -1107,2021-01-30,7624.264538383552,188,Elective,2021-02-02,Abnormal,1107,201,0,12,,,,DISCHARGED -1108,2022-08-13,21308.016492603358,154,Elective,2022-08-20,Inconclusive,1108,38,3,17,,,,DISCHARGED -1109,2021-01-16,29610.20697209234,173,Emergency,2021-01-19,Normal,1109,440,4,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1110,2020-03-13,12858.329680820654,358,Elective,2020-03-19,Inconclusive,1110,272,4,19,,,,DISCHARGED -1111,2020-03-03,29766.39782791405,371,Elective,2020-03-09,Inconclusive,1111,230,2,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1112,2021-01-12,46610.82527232745,426,Urgent,2021-02-02,Inconclusive,1112,85,3,13,,,,DISCHARGED -1113,2021-07-30,32756.384594698724,358,Elective,2021-08-24,Inconclusive,1113,473,0,17,,,,DISCHARGED -1114,2020-05-14,12185.838007240294,491,Elective,2020-05-27,Normal,1114,125,0,1,,,,DISCHARGED -1115,2019-08-29,11914.798281312733,494,Elective,2019-09-07,Abnormal,1115,299,4,1,,,,DISCHARGED -1115,2023-09-01,29792.12675672413,205,Urgent,2023-09-29,Inconclusive,8445,24,4,2,,,,DISCHARGED -1116,2020-02-10,29644.047440000428,177,Urgent,2020-03-11,Inconclusive,1116,144,1,4,,,,DISCHARGED -1117,2022-03-18,25598.76277485741,358,Emergency,2022-04-04,Normal,1117,12,4,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1118,2019-01-17,18241.188379800034,289,Emergency,2019-02-06,Normal,1118,211,1,15,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1119,2020-02-07,9714.900553776992,192,Elective,2020-02-27,Inconclusive,1119,24,0,21,,,,DISCHARGED -1119,2021-04-02,16013.55212148886,411,Elective,2021-04-05,Normal,6296,67,1,14,,,,DISCHARGED -1120,2019-10-01,21455.183704736453,181,Elective,2019-10-30,Normal,1120,393,1,11,,,,DISCHARGED -1120,2023-06-04,25989.15288712472,219,Elective,2023-06-08,Abnormal,6509,66,2,29,,,,DISCHARGED -1121,2022-11-22,35612.34900248359,108,Emergency,2022-12-22,Abnormal,1121,232,4,8,,,,DISCHARGED -1122,2018-12-22,2747.307506827188,471,Urgent,2019-01-02,Abnormal,1122,108,1,25,,,,DISCHARGED -1123,2020-04-24,31326.014175631877,495,Elective,2020-04-29,Normal,1123,145,0,13,,,,DISCHARGED -1124,2019-01-13,16580.587544365553,277,Urgent,2019-01-28,Abnormal,1124,110,3,28,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -1125,2023-01-04,47289.62818797012,222,Elective,2023-01-25,Abnormal,1125,227,1,20,,,,DISCHARGED -1126,2021-12-15,48662.63619695368,445,Urgent,2022-01-14,Inconclusive,1126,110,4,15,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1127,2021-09-20,15534.477911539512,151,Elective,2021-10-14,Normal,1127,469,2,10,,,,DISCHARGED -1128,2019-03-23,40822.83972098153,158,Emergency,2019-03-28,Abnormal,1128,33,0,5,,,,DISCHARGED -1129,2019-01-29,13911.047059608863,284,Emergency,2019-02-27,Inconclusive,1129,110,2,9,,,,DISCHARGED -1130,2022-07-27,14043.472437604536,271,Urgent,2022-07-28,Abnormal,1130,263,3,27,,,,DISCHARGED -1131,2023-04-14,33590.344357905844,479,Elective,2023-05-13,Abnormal,1131,423,1,7,,,,DISCHARGED -1132,2022-10-01,1431.34717755332,320,Emergency,2022-10-24,Normal,1132,368,1,15,,,,DISCHARGED -1133,2019-05-14,11831.63541715834,260,Elective,2019-06-01,Abnormal,1133,235,4,2,,,,DISCHARGED -1134,2023-02-09,17234.199011547676,225,Urgent,2023-02-11,Normal,1134,82,1,1,,,,DISCHARGED -1135,2019-05-02,25703.085582405663,253,Emergency,2019-05-14,Normal,1135,41,0,15,,,,DISCHARGED -1136,2022-07-28,8755.079539022758,221,Urgent,2022-07-29,Normal,1136,424,3,18,,,,DISCHARGED -1137,2022-02-05,32719.902818172577,460,Elective,2022-02-27,Normal,1137,100,2,29,,,,DISCHARGED -1138,2022-06-21,37487.55650359803,224,Elective,2022-07-19,Inconclusive,1138,5,3,8,,,,DISCHARGED -1139,2022-05-30,14141.449775284633,306,Elective,2022-06-19,Inconclusive,1139,179,1,15,,,,DISCHARGED -1140,2020-03-18,4218.245750381788,414,Elective,2020-04-08,Abnormal,1140,281,2,21,,,,DISCHARGED -1141,2023-05-16,49113.45390922478,350,Emergency,2023-06-14,Inconclusive,1141,319,4,25,,,,DISCHARGED -1142,2021-06-02,45128.64225953589,157,Elective,2021-06-18,Abnormal,1142,225,3,27,,,,DISCHARGED -1142,2018-12-17,38191.59485354582,461,Urgent,2019-01-04,Abnormal,3581,442,2,3,,,,DISCHARGED -1143,2020-09-18,4217.629177861016,312,Urgent,2020-10-12,Inconclusive,1143,439,2,9,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1144,2019-05-05,17346.7018010093,130,Urgent,2019-05-26,Inconclusive,1144,314,2,18,,,,DISCHARGED -1145,2023-01-23,2504.6657409856825,345,Emergency,2023-02-06,Inconclusive,1145,364,0,12,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -1146,2021-06-06,36225.04466984435,456,Urgent,2021-06-10,Normal,1146,453,3,17,,,,DISCHARGED -1147,2021-10-04,18013.00440749451,393,Urgent,2021-10-25,Abnormal,1147,228,2,14,,,,DISCHARGED -1148,2018-12-01,1776.0583134019848,119,Elective,2018-12-18,Normal,1148,376,3,29,,,,DISCHARGED -1149,2020-06-19,20608.23506557948,358,Urgent,2020-07-10,Abnormal,1149,288,2,3,,,,DISCHARGED -1150,2023-02-02,4057.9869338217113,436,Emergency,2023-02-23,Normal,1150,436,4,8,,,,DISCHARGED -1151,2022-08-09,33228.59669417098,326,Emergency,2022-08-27,Inconclusive,1151,149,4,3,,,,DISCHARGED -1152,2019-10-03,33962.70062173823,493,Urgent,2019-10-04,Normal,1152,276,4,28,,,,DISCHARGED -1153,2021-09-24,22699.013322843228,133,Urgent,2021-10-11,Abnormal,1153,197,1,15,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -1154,2023-10-15,30355.58692744464,465,Urgent,2023-10-25,Inconclusive,1154,69,2,27,,,,DISCHARGED -1155,2022-06-27,44116.83924275791,352,Urgent,2022-07-16,Normal,1155,111,1,20,,,,DISCHARGED -1156,2023-04-24,3801.621321126084,207,Emergency,,Abnormal,1156,3,3,14,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -1157,2018-11-20,20679.393198854417,462,Emergency,2018-11-27,Abnormal,1157,349,1,23,,,,DISCHARGED -1158,2020-03-30,15819.015810341827,336,Elective,2020-04-28,Normal,1158,330,3,1,,,,DISCHARGED -1159,2021-04-28,4586.164218134851,138,Emergency,2021-05-01,Abnormal,1159,445,3,27,,,,DISCHARGED -1160,2022-05-17,19260.10883332154,384,Urgent,2022-05-20,Inconclusive,1160,317,3,26,,,,DISCHARGED -1161,2023-07-03,31763.598391234664,390,Elective,,Normal,1161,349,1,13,,,,OPEN -1162,2019-01-20,26004.681469192798,144,Emergency,2019-02-03,Normal,1162,94,2,2,,,,DISCHARGED -1162,2023-08-26,25423.86355443825,194,Emergency,2023-09-15,Normal,4235,151,1,21,,,,DISCHARGED -1163,2021-04-04,20701.251937371657,424,Emergency,2021-04-07,Normal,1163,310,2,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1164,2019-07-09,43953.82009825218,344,Elective,2019-07-24,Normal,1164,136,2,22,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1165,2019-05-18,41091.16086805388,236,Emergency,2019-05-28,Abnormal,1165,246,3,3,,,,DISCHARGED -1166,2019-03-30,15338.723337240062,294,Elective,2019-04-15,Normal,1166,386,1,29,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1167,2023-06-24,33664.1720915906,406,Urgent,,Abnormal,1167,242,2,0,,,,OPEN -1168,2021-11-23,42956.34212029266,373,Elective,2021-12-10,Inconclusive,1168,30,4,22,,,,DISCHARGED -1168,2021-03-06,17879.64869722793,188,Elective,2021-03-09,Normal,6204,39,2,27,,,,DISCHARGED -1169,2020-03-04,43394.57614947869,158,Urgent,2020-03-23,Normal,1169,228,4,8,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1169,2022-02-09,26631.29428026452,406,Elective,2022-02-17,Inconclusive,8988,35,1,16,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -1170,2022-06-30,14654.938259882,446,Elective,2022-07-30,Normal,1170,407,1,13,,,,DISCHARGED -1171,2022-02-05,48526.46284013904,124,Emergency,2022-02-25,Normal,1171,222,1,16,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1172,2019-01-25,8209.733596227736,306,Urgent,2019-02-24,Inconclusive,1172,5,2,0,,,,DISCHARGED -1173,2022-09-28,38661.43020213124,393,Urgent,2022-10-08,Inconclusive,1173,321,0,9,,,,DISCHARGED -1174,2020-11-23,21983.59675363703,408,Emergency,2020-12-19,Abnormal,1174,467,2,22,,,,DISCHARGED -1175,2020-05-26,7438.198774811782,421,Urgent,2020-06-01,Normal,1175,219,2,15,,,,DISCHARGED -1176,2023-05-04,43050.38925496119,159,Elective,2023-05-27,Normal,1176,74,3,26,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -1177,2021-05-25,40800.26104034731,182,Urgent,2021-05-30,Inconclusive,1177,3,3,24,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1178,2023-06-29,23788.44155249145,171,Emergency,2023-07-08,Inconclusive,1178,334,2,18,,,,DISCHARGED -1179,2020-07-02,2329.716838181408,301,Elective,2020-07-14,Abnormal,1179,133,4,23,,,,DISCHARGED -1180,2019-06-05,18322.625425350245,371,Urgent,2019-06-10,Inconclusive,1180,117,3,24,,,,DISCHARGED -1181,2022-02-04,14597.652841025869,385,Emergency,2022-02-23,Normal,1181,368,2,2,,,,DISCHARGED -1182,2022-09-23,13170.475125703775,109,Elective,2022-10-12,Inconclusive,1182,93,0,27,,,,DISCHARGED -1183,2019-06-30,16353.425227300277,385,Elective,2019-07-12,Normal,1183,485,4,11,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -1184,2020-02-29,10161.065595707933,315,Emergency,2020-03-02,Abnormal,1184,434,1,2,,,,DISCHARGED -1184,2020-11-05,15045.975502391975,476,Emergency,2020-12-03,Normal,9030,61,2,14,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1185,2019-01-14,34922.38297085735,214,Elective,2019-02-11,Inconclusive,1185,440,2,16,,,,DISCHARGED -1186,2019-08-17,40388.82742198076,488,Elective,2019-08-31,Abnormal,1186,193,4,17,,,,DISCHARGED -1187,2021-05-17,29050.357961553014,204,Elective,2021-05-21,Normal,1187,334,3,6,,,,DISCHARGED -1188,2023-01-06,18485.08744282802,414,Elective,2023-01-12,Normal,1188,202,3,18,,,,DISCHARGED -1189,2020-05-08,40928.72103454187,220,Urgent,2020-05-21,Inconclusive,1189,391,3,6,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -1190,2023-10-27,16145.513989435149,206,Emergency,,Abnormal,1190,25,1,4,,,,OPEN -1191,2020-03-21,18997.964142483488,490,Elective,2020-04-18,Abnormal,1191,434,4,25,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1192,2020-08-25,33666.10151448994,399,Emergency,2020-09-03,Normal,1192,172,4,7,,,,DISCHARGED -1193,2021-11-19,21273.63857138902,394,Urgent,2021-12-06,Normal,1193,299,3,20,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -1194,2018-11-16,30593.594112356463,307,Elective,2018-11-25,Abnormal,1194,132,3,15,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -1195,2023-10-18,36081.012362831054,268,Emergency,2023-11-16,Normal,1195,325,0,15,,,,DISCHARGED -1196,2020-04-12,48155.10651485851,231,Urgent,2020-04-24,Normal,1196,409,0,18,,,,DISCHARGED -1197,2021-04-24,6082.668147055431,251,Emergency,2021-05-01,Inconclusive,1197,117,2,24,,,,DISCHARGED -1198,2023-03-14,18848.72342535029,386,Urgent,,Inconclusive,1198,323,2,14,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -1199,2020-03-08,33087.17146681565,470,Elective,2020-03-29,Abnormal,1199,274,4,6,,,,DISCHARGED -1199,2023-03-25,33622.46196643783,390,Urgent,2023-03-26,Inconclusive,7488,211,4,4,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1200,2022-01-08,23371.83356117796,119,Urgent,2022-01-23,Normal,1200,224,1,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1201,2022-05-08,30979.10331267826,330,Urgent,2022-05-17,Inconclusive,1201,19,1,10,,,,DISCHARGED -1202,2021-12-06,22143.025098365524,478,Emergency,2021-12-14,Abnormal,1202,112,0,9,,,,DISCHARGED -1203,2021-12-30,29935.023949114915,212,Emergency,2022-01-13,Normal,1203,139,2,24,,,,DISCHARGED -1203,2022-12-14,45342.83358565388,123,Elective,2023-01-12,Abnormal,1676,46,0,20,,,,DISCHARGED -1203,2018-12-24,26840.033335812244,381,Urgent,2019-01-05,Abnormal,2855,0,0,22,,,,DISCHARGED -1203,2021-06-25,17690.804342238753,165,Emergency,2021-07-05,Normal,8553,89,2,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -1204,2021-05-18,24397.050394984235,267,Urgent,2021-06-14,Normal,1204,141,1,8,,,,DISCHARGED -1205,2022-06-08,12449.000455630903,414,Elective,2022-07-07,Inconclusive,1205,319,2,0,,,,DISCHARGED -1206,2021-01-15,1104.5444222297997,226,Elective,2021-02-13,Abnormal,1206,37,3,19,,,,DISCHARGED -1207,2019-11-12,20771.09576182276,245,Urgent,2019-11-29,Inconclusive,1207,292,3,0,,,,DISCHARGED -1207,2018-12-10,28783.157593200434,171,Emergency,2018-12-21,Abnormal,2282,381,3,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1208,2020-05-22,47923.56136113807,126,Emergency,2020-06-02,Normal,1208,138,4,2,,,,DISCHARGED -1209,2019-07-27,16408.96691858919,278,Elective,2019-08-16,Normal,1209,355,1,1,,,,DISCHARGED -1210,2022-08-08,49690.697911435294,421,Emergency,2022-08-15,Normal,1210,332,1,29,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -1211,2020-05-01,4296.00837447991,182,Emergency,2020-05-13,Abnormal,1211,490,4,3,,,,DISCHARGED -1212,2021-08-02,13061.152620069335,425,Elective,2021-08-20,Inconclusive,1212,258,0,26,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1213,2022-06-29,22714.291173502483,206,Urgent,2022-07-11,Abnormal,1213,160,3,18,,,,DISCHARGED -1213,2022-03-06,44814.38625120392,433,Emergency,2022-04-02,Inconclusive,4593,389,3,10,,,,DISCHARGED -1213,2021-07-13,45312.51788790039,430,Emergency,2021-08-04,Abnormal,9478,177,0,4,,,,DISCHARGED -1214,2019-11-18,26194.244322673203,307,Emergency,2019-12-08,Normal,1214,9,2,28,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -1215,2021-03-07,21357.20858686988,321,Elective,2021-03-08,Abnormal,1215,260,2,23,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -1216,2022-07-22,23936.09270790532,377,Emergency,2022-08-13,Inconclusive,1216,406,1,9,,,,DISCHARGED -1217,2023-09-23,32406.750771743336,320,Elective,2023-10-14,Inconclusive,1217,137,4,23,,,,DISCHARGED -1218,2021-05-07,14524.707446284056,116,Elective,2021-06-03,Inconclusive,1218,171,1,26,,,,DISCHARGED -1219,2020-02-16,26047.705097458056,124,Emergency,2020-02-22,Normal,1219,385,2,22,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1220,2022-04-07,37384.843343099536,177,Urgent,2022-04-13,Abnormal,1220,12,0,7,,,,DISCHARGED -1221,2022-08-07,1521.590578414325,267,Urgent,2022-08-21,Normal,1221,167,1,12,,,,DISCHARGED -1222,2020-02-12,1185.2138790636018,175,Emergency,2020-03-02,Inconclusive,1222,129,3,28,,,,DISCHARGED -1223,2022-09-23,35550.2218680213,289,Elective,2022-10-20,Normal,1223,83,3,4,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -1224,2022-05-30,27851.777932834848,433,Emergency,2022-06-28,Inconclusive,1224,320,0,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1225,2021-11-16,35849.42724682361,135,Urgent,2021-11-30,Normal,1225,318,2,25,,,,DISCHARGED -1226,2022-09-26,18595.633277089997,383,Urgent,2022-10-16,Abnormal,1226,100,3,26,,,,DISCHARGED -1227,2023-05-23,43709.13461108844,200,Urgent,2023-06-12,Normal,1227,328,3,11,,,,DISCHARGED -1228,2019-08-07,36820.77074553299,400,Urgent,2019-08-23,Abnormal,1228,272,4,26,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1229,2021-04-22,12593.553327817548,234,Elective,2021-05-09,Normal,1229,264,1,12,,,,DISCHARGED -1230,2020-10-13,42545.92068919371,311,Emergency,2020-11-09,Abnormal,1230,458,2,21,,,,DISCHARGED -1231,2021-03-22,11561.811843317191,468,Urgent,2021-03-28,Inconclusive,1231,398,1,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -1232,2019-10-21,16971.83619790432,229,Urgent,2019-11-01,Inconclusive,1232,407,2,14,,,,DISCHARGED -1233,2023-10-25,28280.36006787648,439,Emergency,2023-11-17,Inconclusive,1233,37,3,12,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -1233,2021-10-28,39519.36419704959,486,Emergency,2021-10-29,Inconclusive,5862,418,4,0,,,,DISCHARGED -1234,2021-05-21,49898.23155845238,339,Elective,2021-05-28,Normal,1234,93,1,21,,,,DISCHARGED -1235,2020-06-02,10592.25566233709,255,Elective,2020-06-24,Inconclusive,1235,94,3,5,,,,DISCHARGED -1236,2019-08-08,18826.741718490663,409,Elective,2019-08-22,Inconclusive,1236,304,2,10,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1237,2023-10-17,18193.27476480426,183,Elective,2023-10-27,Inconclusive,1237,68,1,12,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -1238,2021-05-04,15446.76075706385,418,Emergency,2021-05-25,Inconclusive,1238,317,1,20,,,,DISCHARGED -1240,2022-07-13,7629.581899678145,437,Elective,2022-08-12,Abnormal,1240,443,3,19,,,,DISCHARGED -1241,2022-10-19,13676.34886679554,193,Elective,2022-10-27,Normal,1241,235,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1241,2020-02-12,9794.33798335858,310,Emergency,2020-02-14,Normal,2677,433,4,10,,,,DISCHARGED -1242,2019-01-31,16330.95706627832,274,Urgent,2019-02-08,Abnormal,1242,333,4,25,,,,DISCHARGED -1243,2021-01-15,36324.42753075232,358,Emergency,2021-02-12,Inconclusive,1243,372,3,10,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1244,2021-06-05,39832.71072190877,181,Elective,2021-06-06,Abnormal,1244,375,2,7,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1245,2023-02-17,42520.49073184942,486,Elective,,Normal,1245,458,3,21,,,,OPEN -1246,2023-03-06,47225.56689242021,283,Urgent,,Inconclusive,1246,136,4,2,,,,OPEN -1247,2021-08-09,2813.0521460089017,185,Urgent,2021-08-21,Abnormal,1247,417,0,27,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -1248,2018-11-14,3380.081744533818,223,Emergency,2018-12-09,Abnormal,1248,75,0,18,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1248,2021-06-07,7380.28809480587,474,Urgent,2021-06-19,Normal,5027,482,1,11,,,,DISCHARGED -1249,2020-08-08,3680.684870384705,252,Elective,2020-08-22,Normal,1249,34,1,5,,,,DISCHARGED -1250,2022-09-17,22505.27524413041,399,Emergency,2022-10-06,Abnormal,1250,0,0,27,,,,DISCHARGED -1251,2022-11-01,44542.30167895572,226,Elective,2022-11-30,Abnormal,1251,295,4,22,,,,DISCHARGED -1252,2022-12-09,10786.778256915602,256,Urgent,2022-12-18,Inconclusive,1252,319,1,7,,,,DISCHARGED -1253,2022-02-17,23021.113540007093,364,Emergency,2022-03-02,Inconclusive,1253,405,3,4,,,,DISCHARGED -1254,2019-07-14,39452.70869998484,208,Urgent,2019-07-21,Normal,1254,59,3,9,,,,DISCHARGED -1255,2019-09-24,45411.31237886845,257,Urgent,2019-10-03,Abnormal,1255,319,4,21,,,,DISCHARGED -1256,2018-11-19,12472.402228018342,459,Emergency,2018-11-29,Normal,1256,348,1,15,,,,DISCHARGED -1258,2020-12-23,30726.948945926037,189,Emergency,2021-01-03,Inconclusive,1258,327,3,11,,,,DISCHARGED -1259,2023-10-14,40386.51935783964,415,Elective,2023-10-29,Normal,1259,266,1,16,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -1260,2019-05-22,28785.336133155757,295,Urgent,2019-06-13,Inconclusive,1260,360,1,5,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1261,2020-04-19,41556.09406666805,143,Urgent,2020-04-25,Normal,1261,228,3,8,,,,DISCHARGED -1262,2021-01-31,12068.35929733992,174,Urgent,2021-03-01,Abnormal,1262,269,0,9,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -1263,2022-01-31,24954.6035244282,112,Urgent,2022-02-05,Abnormal,1263,315,3,19,,,,DISCHARGED -1264,2021-02-10,29575.060941490698,248,Emergency,2021-02-25,Inconclusive,1264,285,4,13,,,,DISCHARGED -1265,2021-04-17,44756.11246332132,377,Emergency,2021-04-22,Abnormal,1265,290,2,13,,,,DISCHARGED -1266,2021-03-08,20416.930256632604,201,Urgent,2021-03-31,Inconclusive,1266,212,3,25,,,,DISCHARGED -1267,2020-10-29,7658.078012170146,154,Urgent,2020-11-18,Inconclusive,1267,164,1,28,,,,DISCHARGED -1268,2023-06-16,3475.838524777997,187,Elective,2023-06-17,Inconclusive,1268,4,1,16,,,,DISCHARGED -1269,2022-12-01,36147.16225697457,150,Elective,2022-12-07,Normal,1269,338,3,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1270,2022-03-11,6564.677593833786,159,Emergency,2022-04-03,Inconclusive,1270,378,2,26,,,,DISCHARGED -1271,2021-06-01,42030.47334133956,329,Urgent,2021-06-18,Inconclusive,1271,77,3,24,,,,DISCHARGED -1272,2023-01-16,4614.166449747308,456,Urgent,2023-02-05,Normal,1272,409,2,15,,,,DISCHARGED -1273,2020-09-12,14948.727919776426,145,Elective,2020-09-16,Normal,1273,61,2,3,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1274,2019-12-13,12937.336655226634,206,Emergency,2019-12-21,Inconclusive,1274,131,4,1,,,,DISCHARGED -1275,2020-11-16,12684.631588335356,341,Emergency,2020-12-06,Normal,1275,88,1,15,,,,DISCHARGED -1275,2019-04-01,34809.32560140672,499,Elective,2019-04-04,Abnormal,2882,236,1,0,,,,DISCHARGED -1276,2023-04-08,4426.441900370795,400,Emergency,2023-04-27,Normal,1276,41,2,2,,,,DISCHARGED -1277,2020-04-26,27763.51164659517,285,Elective,2020-05-20,Inconclusive,1277,88,1,22,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -1278,2022-04-28,23163.8125463224,312,Emergency,2022-04-30,Normal,1278,401,0,10,,,,DISCHARGED -1279,2021-03-27,46220.425450589,230,Elective,2021-04-20,Normal,1279,295,2,15,,,,DISCHARGED -1281,2020-04-25,13816.96822453083,308,Urgent,2020-05-14,Abnormal,1281,327,1,25,,,,DISCHARGED -1281,2019-12-31,30416.09488723861,184,Emergency,2020-01-05,Normal,1289,294,0,17,,,,DISCHARGED -1281,2022-06-26,44132.98157271498,466,Elective,2022-07-02,Inconclusive,6404,103,4,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -1282,2020-12-28,32779.85373503364,219,Elective,2021-01-08,Normal,1282,13,1,8,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -1282,2021-11-24,29191.81853669066,340,Elective,2021-12-09,Inconclusive,5519,287,0,11,,,,DISCHARGED -1283,2018-11-28,20205.83968806844,167,Emergency,2018-12-19,Normal,1283,178,3,28,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1284,2020-10-04,12900.760488393376,184,Emergency,2020-10-18,Inconclusive,1284,124,3,26,,,,DISCHARGED -1285,2020-06-22,30861.775957667694,402,Urgent,2020-06-27,Normal,1285,421,0,17,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -1285,2022-10-05,32177.77606626569,428,Elective,2022-10-24,Abnormal,3708,352,2,4,,,,DISCHARGED -1286,2023-05-12,49450.89339700137,405,Emergency,,Normal,1286,22,2,23,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",OPEN -1287,2022-08-08,5427.744304314314,333,Emergency,2022-08-17,Inconclusive,1287,62,1,28,,,,DISCHARGED -1288,2021-12-09,37926.04072482408,229,Elective,2022-01-05,Abnormal,1288,142,3,28,,,,DISCHARGED -1290,2021-04-28,25082.84787911366,244,Urgent,2021-05-02,Abnormal,1290,480,2,27,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1291,2023-05-19,18473.76612752954,311,Elective,2023-05-24,Normal,1291,152,2,25,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -1292,2022-10-18,4336.557614920836,266,Emergency,2022-10-23,Inconclusive,1292,144,3,7,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -1293,2018-11-09,18763.54096410252,116,Urgent,2018-11-10,Normal,1293,224,4,2,,,,DISCHARGED -1294,2019-05-07,26175.373784489304,296,Emergency,2019-05-08,Normal,1294,494,2,1,,,,DISCHARGED -1294,2019-11-12,1020.337790368703,308,Elective,2019-11-24,Abnormal,4866,449,0,24,,,,DISCHARGED -1295,2022-02-18,27744.82871129207,230,Emergency,2022-02-26,Abnormal,1295,461,1,18,,,,DISCHARGED -1296,2022-03-01,32114.2051477691,151,Elective,2022-03-31,Inconclusive,1296,308,2,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1297,2020-01-03,17802.893119476135,234,Urgent,2020-01-21,Normal,1297,103,2,1,,,,DISCHARGED -1298,2022-07-23,34186.35420136755,122,Urgent,2022-08-03,Inconclusive,1298,103,4,18,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -1299,2022-04-27,14251.922318501358,250,Emergency,2022-05-25,Abnormal,1299,434,0,0,,,,DISCHARGED -1300,2022-05-24,24898.83671104919,304,Emergency,2022-06-12,Inconclusive,1300,38,1,29,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -1301,2021-10-06,1837.0960878260496,164,Elective,2021-11-03,Normal,1301,434,2,26,,,,DISCHARGED -1302,2019-07-31,8319.88193476987,428,Urgent,2019-08-06,Inconclusive,1302,197,1,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -1303,2019-07-13,48030.108538739965,209,Urgent,2019-08-09,Inconclusive,1303,133,3,12,,,,DISCHARGED -1304,2022-08-31,18949.34708044389,375,Urgent,2022-09-19,Abnormal,1304,66,2,22,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -1305,2022-07-30,33793.81315855958,140,Emergency,2022-08-26,Normal,1305,390,2,19,,,,DISCHARGED -1306,2019-08-09,7841.799282829665,450,Urgent,2019-08-29,Abnormal,1306,178,3,16,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1307,2019-04-27,34655.80214795067,462,Urgent,2019-05-27,Abnormal,1307,455,4,2,,,,DISCHARGED -1308,2019-11-17,34967.32611078716,492,Elective,2019-11-26,Normal,1308,41,2,8,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -1309,2019-05-15,35017.44604976795,474,Emergency,2019-06-03,Inconclusive,1309,447,1,4,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1310,2023-07-06,6765.461424476579,122,Elective,2023-07-21,Abnormal,1310,499,0,5,,,,DISCHARGED -1311,2023-04-01,36441.78294344234,411,Urgent,2023-04-26,Normal,1311,14,1,3,,,,DISCHARGED -1311,2022-09-27,39055.06447916271,337,Elective,2022-10-11,Inconclusive,4876,110,4,16,,,,DISCHARGED -1312,2022-11-01,8747.39959765486,151,Emergency,2022-11-08,Inconclusive,1312,156,0,29,,,,DISCHARGED -1313,2023-09-15,12449.34885065373,360,Emergency,2023-10-11,Normal,1313,288,1,20,,,,DISCHARGED -1314,2021-07-14,46983.283342800525,379,Elective,2021-07-18,Inconclusive,1314,499,1,20,,,,DISCHARGED -1315,2020-05-06,47059.5432872028,332,Emergency,2020-05-24,Abnormal,1315,477,3,20,,,,DISCHARGED -1316,2023-02-17,9526.488495913578,317,Urgent,2023-03-16,Inconclusive,1316,230,4,15,,,,DISCHARGED -1317,2020-02-15,42765.054657454704,140,Urgent,2020-03-03,Normal,1317,410,3,15,,,,DISCHARGED -1318,2021-10-07,1297.337603370916,297,Urgent,2021-10-25,Inconclusive,1318,419,0,21,,,,DISCHARGED -1318,2019-12-27,5694.385456881819,101,Emergency,2020-01-06,Inconclusive,8837,156,3,10,,,,DISCHARGED -1319,2019-09-17,30754.00902981249,461,Urgent,2019-10-14,Abnormal,1319,37,4,1,,,,DISCHARGED -1320,2021-10-26,30102.211581868505,112,Emergency,2021-11-13,Normal,1320,440,2,16,,,,DISCHARGED -1321,2022-09-21,27788.64223060028,314,Urgent,2022-10-01,Normal,1321,96,2,14,,,,DISCHARGED -1322,2021-05-15,13263.73829565018,470,Elective,2021-05-18,Normal,1322,484,0,17,,,,DISCHARGED -1323,2022-02-12,5645.578310371213,179,Emergency,2022-03-07,Normal,1323,410,2,28,,,,DISCHARGED -1324,2019-06-29,42292.83341927076,480,Emergency,2019-07-23,Abnormal,1324,438,3,9,,,,DISCHARGED -1324,2022-10-22,25039.32458007894,387,Urgent,2022-11-14,Normal,2952,288,0,5,,,,DISCHARGED -1325,2021-05-24,31035.355260224784,492,Emergency,2021-06-06,Inconclusive,1325,253,4,20,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -1326,2022-06-12,6372.419173600877,385,Elective,2022-06-27,Normal,1326,195,0,15,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1327,2023-10-24,21361.96180425918,333,Urgent,,Abnormal,1327,85,0,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -1328,2018-11-25,40094.83617804797,216,Urgent,2018-12-13,Inconclusive,1328,321,1,11,,,,DISCHARGED -1329,2022-10-14,13784.807039715315,476,Urgent,2022-11-10,Inconclusive,1329,9,1,27,,,,DISCHARGED -1330,2019-05-23,4668.921063194623,116,Emergency,2019-06-08,Normal,1330,4,0,5,,,,DISCHARGED -1331,2023-09-01,14835.440745608956,436,Elective,2023-09-06,Abnormal,1331,122,2,13,,,,DISCHARGED -1331,2020-03-16,6843.934455712214,141,Emergency,2020-03-17,Normal,2816,329,1,25,,,,DISCHARGED -1332,2023-04-02,10685.946269722144,342,Urgent,2023-04-16,Normal,1332,352,4,22,,,,DISCHARGED -1333,2022-01-07,10883.97184434871,239,Urgent,2022-01-16,Abnormal,1333,117,3,15,,,,DISCHARGED -1334,2021-04-23,24593.80209908757,185,Elective,2021-04-28,Inconclusive,1334,293,1,24,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -1335,2022-01-06,44259.74180523009,256,Emergency,2022-01-13,Normal,1335,396,0,6,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -1336,2018-12-30,21804.132185126196,180,Emergency,2019-01-19,Abnormal,1336,158,2,1,,,,DISCHARGED -1337,2019-09-07,7079.1786056247065,140,Elective,2019-10-07,Abnormal,1337,302,3,5,,,,DISCHARGED -1337,2020-12-03,10659.663346045125,134,Emergency,2020-12-20,Abnormal,6436,227,1,8,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1337,2019-09-13,18409.45073823073,291,Elective,2019-09-25,Normal,8457,364,2,6,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -1338,2021-08-14,15092.169812163856,196,Emergency,2021-09-12,Abnormal,1338,215,2,1,,,,DISCHARGED -1339,2021-05-15,37275.94576375411,251,Elective,2021-06-11,Abnormal,1339,435,2,18,,,,DISCHARGED -1340,2019-01-02,15412.399249958517,219,Elective,2019-01-11,Inconclusive,1340,183,0,7,,,,DISCHARGED -1341,2021-04-25,41714.72931861722,199,Emergency,2021-04-29,Normal,1341,14,4,10,,,,DISCHARGED -1341,2019-12-03,42261.106845215625,210,Elective,2020-01-02,Normal,1691,156,2,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1342,2023-10-24,35536.80934367094,255,Elective,2023-11-03,Normal,1342,135,3,3,,,,DISCHARGED -1343,2020-06-01,27514.05218284695,470,Elective,2020-06-14,Abnormal,1343,260,1,15,,,,DISCHARGED -1344,2021-01-18,29342.925787595734,431,Emergency,2021-01-23,Abnormal,1344,156,3,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -1345,2023-06-29,9702.677381655449,448,Elective,2023-07-02,Abnormal,1345,46,0,17,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1346,2022-10-22,9775.692599447482,132,Elective,2022-10-30,Normal,1346,323,0,12,,,,DISCHARGED -1347,2023-01-29,13393.255800566814,400,Emergency,2023-02-04,Normal,1347,331,3,26,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1348,2020-04-01,20614.09441339475,145,Emergency,2020-04-04,Abnormal,1348,172,4,4,,,,DISCHARGED -1348,2020-08-10,17683.872010708623,158,Elective,2020-08-16,Abnormal,8277,129,0,26,,,,DISCHARGED -1349,2019-11-21,30419.75223392837,483,Emergency,2019-12-06,Abnormal,1349,410,0,1,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -1350,2022-04-17,49853.76511681912,357,Urgent,2022-05-16,Abnormal,1350,94,3,10,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -1351,2023-05-18,33738.62525044173,416,Emergency,,Abnormal,1351,114,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",OPEN -1352,2020-05-07,40942.005631729386,113,Urgent,2020-05-14,Inconclusive,1352,242,4,12,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1353,2022-02-21,48270.69141645253,453,Emergency,2022-03-14,Inconclusive,1353,419,4,29,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -1354,2023-02-17,16292.432929931489,134,Emergency,2023-02-19,Normal,1354,291,4,4,,,,DISCHARGED -1355,2020-04-09,26386.82263435522,158,Emergency,2020-04-22,Normal,1355,281,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1356,2020-05-03,32862.3870842997,470,Urgent,2020-05-27,Inconclusive,1356,298,4,13,,,,DISCHARGED -1356,2019-05-22,28071.47714454473,319,Emergency,2019-05-28,Normal,6990,282,4,12,,,,DISCHARGED -1357,2020-12-26,40100.42931606188,147,Elective,2021-01-25,Abnormal,1357,68,1,6,,,,DISCHARGED -1357,2020-05-05,41931.183707035794,178,Emergency,2020-05-06,Inconclusive,9160,147,2,7,,,,DISCHARGED -1358,2023-05-05,2079.178611168977,335,Urgent,2023-05-29,Normal,1358,10,0,17,,,,DISCHARGED -1359,2019-11-02,30348.487459544685,157,Elective,2019-11-28,Abnormal,1359,253,4,6,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1360,2023-03-09,42072.0237379467,298,Emergency,2023-03-18,Normal,1360,329,0,19,,,,DISCHARGED -1360,2021-05-27,25006.88674513295,476,Elective,2021-06-15,Normal,9413,359,3,16,,,,DISCHARGED -1361,2022-11-24,17528.85649141689,488,Urgent,2022-12-17,Normal,1361,37,0,15,,,,DISCHARGED -1362,2023-02-12,28564.792331379434,370,Urgent,,Abnormal,1362,133,1,10,,,,OPEN -1362,2019-06-21,30193.36847627906,156,Urgent,2019-07-05,Abnormal,5131,199,0,18,,,,DISCHARGED -1363,2020-12-16,32097.859166555794,213,Urgent,2020-12-17,Inconclusive,1363,22,0,26,,,,DISCHARGED -1364,2019-03-17,15945.961367968866,247,Urgent,2019-03-26,Abnormal,1364,302,0,27,,,,DISCHARGED -1366,2020-06-04,14618.054341992476,220,Elective,2020-06-10,Abnormal,1366,345,2,0,,,,DISCHARGED -1367,2019-09-01,39707.08205512446,227,Urgent,2019-09-10,Normal,1367,301,2,20,,,,DISCHARGED -1368,2022-12-06,38582.84223966761,366,Emergency,2022-12-28,Normal,1368,362,3,28,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1369,2020-11-18,48273.44967462655,220,Emergency,2020-11-23,Abnormal,1369,395,1,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -1369,2019-10-21,30414.234531776783,449,Urgent,2019-10-28,Inconclusive,2955,217,0,0,,,,DISCHARGED -1369,2020-05-29,4691.08529498244,482,Emergency,2020-06-09,Abnormal,4936,140,0,29,,,,DISCHARGED -1369,2021-05-23,39115.84611259714,450,Urgent,2021-06-11,Inconclusive,8259,103,0,8,,,,DISCHARGED -1370,2021-01-15,2254.6992373283547,411,Elective,2021-02-12,Inconclusive,1370,445,0,18,,,,DISCHARGED -1371,2021-11-19,14018.183322932537,119,Emergency,2021-12-17,Abnormal,1371,209,2,20,,,,DISCHARGED -1372,2022-06-01,17975.293295405925,309,Urgent,2022-06-08,Abnormal,1372,472,3,8,,,,DISCHARGED -1372,2019-08-08,46106.06030651323,420,Emergency,2019-08-09,Normal,3012,480,4,20,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1372,2019-06-17,18676.714498391782,468,Emergency,2019-07-01,Normal,3617,110,1,24,,,,DISCHARGED -1373,2021-04-10,19107.62806985715,336,Elective,2021-04-14,Normal,1373,103,0,9,,,,DISCHARGED -1373,2018-11-28,11888.154593877976,402,Elective,2018-12-04,Normal,4619,315,3,23,,,,DISCHARGED -1373,2020-09-11,35901.92354336211,178,Emergency,2020-10-05,Inconclusive,7079,170,4,22,,,,DISCHARGED -1374,2022-01-31,44696.84341738928,409,Urgent,2022-02-23,Normal,1374,459,3,10,,,,DISCHARGED -1375,2021-04-14,16826.908105432085,444,Elective,2021-04-25,Abnormal,1375,491,2,0,,,,DISCHARGED -1376,2023-10-13,25260.59018586082,377,Emergency,,Normal,1376,355,4,19,,,,OPEN -1377,2023-03-07,43176.1713041612,122,Urgent,2023-03-23,Inconclusive,1377,495,3,24,,,,DISCHARGED -1378,2023-08-18,4953.799293288754,219,Elective,2023-09-12,Inconclusive,1378,323,2,25,,,,DISCHARGED -1379,2022-12-03,11125.163396528716,144,Emergency,2022-12-11,Abnormal,1379,132,3,7,,,,DISCHARGED -1379,2023-08-06,31385.14586292253,386,Urgent,2023-08-18,Abnormal,9631,375,3,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1380,2022-03-15,12716.043597710464,181,Elective,2022-03-16,Abnormal,1380,292,4,11,,,,DISCHARGED -1381,2022-08-21,15835.854309550064,130,Urgent,2022-08-31,Abnormal,1381,327,2,0,,,,DISCHARGED -1382,2021-01-12,41279.31592714954,442,Urgent,2021-01-20,Inconclusive,1382,126,0,9,,,,DISCHARGED -1383,2020-04-11,2839.861412218511,165,Elective,2020-04-24,Normal,1383,105,1,3,,,,DISCHARGED -1384,2019-01-20,2117.911193018509,314,Elective,2019-02-02,Normal,1384,496,4,14,,,,DISCHARGED -1385,2023-03-12,43647.08174336824,457,Urgent,2023-04-09,Inconclusive,1385,91,2,18,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -1385,2020-03-31,23455.934726748477,309,Urgent,2020-04-20,Normal,6751,286,3,5,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1386,2022-04-10,25357.52536212509,241,Elective,2022-04-16,Abnormal,1386,377,2,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -1387,2021-10-08,28462.868455274573,259,Urgent,2021-11-02,Normal,1387,392,1,4,,,,DISCHARGED -1388,2021-09-24,1606.5171857414905,310,Emergency,2021-10-14,Normal,1388,50,1,4,,,,DISCHARGED -1389,2022-01-09,4310.323262295909,334,Emergency,2022-02-03,Inconclusive,1389,28,0,17,,,,DISCHARGED -1390,2020-09-13,34728.988387154386,195,Urgent,2020-10-06,Abnormal,1390,461,0,27,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1391,2020-03-06,44858.631528777136,371,Elective,2020-03-16,Inconclusive,1391,295,1,2,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1392,2020-11-28,1741.1202167185404,129,Emergency,2020-12-07,Normal,1392,296,4,26,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1393,2020-04-16,39550.62926049432,403,Elective,2020-05-15,Inconclusive,1393,213,4,21,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1394,2019-09-05,11827.366098753697,246,Emergency,2019-09-29,Abnormal,1394,266,3,1,,,,DISCHARGED -1395,2018-11-04,2665.3704556912858,266,Elective,2018-11-30,Abnormal,1395,406,0,3,,,,DISCHARGED -1396,2020-03-26,42047.04277967537,316,Elective,2020-04-11,Normal,1396,256,3,17,,,,DISCHARGED -1397,2019-08-03,2441.8910180895077,225,Emergency,2019-08-05,Abnormal,1397,301,0,8,Frequent hiccups,"Identify the underlying cause, prescribe medications if necessary, and recommend lifestyle changes.",R11 - Nausea and vomiting,DISCHARGED -1398,2020-09-27,39439.2358950029,256,Emergency,2020-10-16,Abnormal,1398,100,1,18,,,,DISCHARGED -1399,2019-04-14,9817.682605035849,292,Urgent,2019-04-26,Inconclusive,1399,404,4,25,,,,DISCHARGED -1400,2018-11-02,2012.02631439907,105,Elective,2018-12-01,Inconclusive,1400,345,4,9,,,,DISCHARGED -1401,2019-11-03,22991.51524053853,496,Elective,2019-11-07,Normal,1401,109,1,21,,,,DISCHARGED -1402,2023-10-26,30187.40550164447,247,Emergency,,Normal,1402,419,3,14,,,,OPEN -1403,2019-05-04,47165.29916522435,417,Emergency,2019-06-02,Inconclusive,1403,181,3,0,,,,DISCHARGED -1403,2022-07-25,32270.15203671778,284,Urgent,2022-08-14,Normal,1979,470,2,28,,,,DISCHARGED -1403,2019-10-16,31132.66929952767,248,Emergency,2019-11-13,Inconclusive,7935,312,0,10,,,,DISCHARGED -1404,2023-10-18,21076.97085530908,462,Urgent,2023-11-14,Normal,1404,0,3,13,,,,DISCHARGED -1405,2019-05-19,38584.13621471236,493,Elective,2019-05-29,Abnormal,1405,318,1,9,,,,DISCHARGED -1406,2022-04-16,47519.370031681705,169,Elective,2022-05-11,Abnormal,1406,437,3,18,,,,DISCHARGED -1407,2021-01-02,15437.549708269484,331,Elective,2021-01-27,Normal,1407,54,4,23,,,,DISCHARGED -1408,2023-08-13,36346.61752846077,312,Urgent,,Abnormal,1408,370,0,20,,,,OPEN -1408,2022-03-01,20042.38385555324,251,Elective,2022-03-31,Normal,2675,423,2,15,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1409,2020-09-29,5253.616012329089,261,Emergency,2020-10-15,Abnormal,1409,398,0,7,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -1410,2022-01-11,19484.01734967431,425,Urgent,2022-01-16,Abnormal,1410,148,4,1,,,,DISCHARGED -1410,2019-10-12,49573.399903411984,177,Urgent,2019-10-27,Normal,2634,430,4,22,,,,DISCHARGED -1411,2019-06-21,17698.27973352936,484,Emergency,2019-07-12,Normal,1411,456,4,24,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1412,2019-11-03,31901.68206656949,153,Elective,2019-11-24,Inconclusive,1412,308,4,6,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1412,2022-01-11,31842.627595819275,457,Elective,2022-02-09,Abnormal,9237,136,1,18,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1413,2019-03-22,4771.650508572607,360,Elective,2019-03-25,Abnormal,1413,201,2,6,,,,DISCHARGED -1413,2020-11-11,46930.69946037082,484,Emergency,2020-11-15,Abnormal,8235,435,4,14,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1414,2023-08-24,34753.239049473814,282,Elective,2023-09-16,Normal,1414,312,4,7,,,,DISCHARGED -1415,2019-04-24,45302.70126572699,446,Emergency,2019-04-26,Normal,1415,116,3,13,,,,DISCHARGED -1416,2019-08-19,26665.901699254176,287,Emergency,2019-08-27,Abnormal,1416,153,2,0,,,,DISCHARGED -1417,2020-12-06,45499.04021381226,113,Elective,2020-12-13,Abnormal,1417,424,0,28,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -1418,2022-07-21,31427.659167171816,255,Urgent,2022-08-16,Abnormal,1418,290,2,12,,,,DISCHARGED -1419,2020-05-08,26649.65348563137,465,Emergency,2020-06-07,Normal,1419,62,2,2,,,,DISCHARGED -1419,2018-11-08,38150.36697658243,366,Emergency,2018-12-08,Abnormal,9360,243,2,20,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1420,2022-09-24,18092.40030006162,407,Elective,2022-10-12,Inconclusive,1420,24,4,27,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1421,2021-01-04,12784.843889181002,243,Elective,2021-01-17,Abnormal,1421,89,4,5,,,,DISCHARGED -1422,2023-08-30,9661.473049903942,437,Urgent,,Abnormal,1422,74,1,18,,,,OPEN -1423,2021-03-10,7765.808456352994,349,Elective,2021-03-12,Abnormal,1423,293,0,14,,,,DISCHARGED -1424,2022-08-06,25955.496274861285,295,Emergency,2022-08-22,Abnormal,1424,385,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1425,2023-10-10,39456.79757345628,302,Elective,,Abnormal,1425,390,2,20,,,,OPEN -1426,2023-06-11,43070.47038936852,215,Elective,2023-06-27,Inconclusive,1426,209,0,2,,,,DISCHARGED -1426,2021-10-20,12469.12414019698,323,Emergency,2021-11-03,Inconclusive,5658,474,0,3,,,,DISCHARGED -1427,2021-03-20,22444.633462416918,377,Urgent,2021-03-21,Inconclusive,1427,417,1,4,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1428,2022-12-31,36233.19537438693,222,Elective,2023-01-10,Inconclusive,1428,346,3,17,,,,DISCHARGED -1428,2019-03-07,23440.663892346656,461,Emergency,2019-03-17,Inconclusive,9735,16,2,25,,,,DISCHARGED -1429,2023-03-20,21741.70650863805,355,Elective,2023-03-30,Abnormal,1429,127,3,24,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -1430,2019-08-17,32477.750363689145,485,Emergency,2019-09-14,Inconclusive,1430,426,1,9,,,,DISCHARGED -1431,2022-02-09,45335.88699464429,242,Elective,2022-03-05,Abnormal,1431,442,4,7,,,,DISCHARGED -1432,2023-01-23,15451.5159912924,499,Urgent,2023-01-31,Normal,1432,363,0,11,,,,DISCHARGED -1433,2022-03-14,2371.4185014294544,228,Elective,2022-03-30,Inconclusive,1433,250,2,21,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1434,2020-09-23,18301.32584245176,448,Elective,2020-10-22,Inconclusive,1434,178,4,25,,,,DISCHARGED -1435,2022-08-21,22734.364435997264,316,Emergency,2022-09-16,Normal,1435,181,1,26,,,,DISCHARGED -1436,2023-03-06,44027.39730508172,477,Emergency,2023-03-20,Normal,1436,151,3,2,,,,DISCHARGED -1437,2022-05-09,49071.6153727576,169,Urgent,2022-05-10,Normal,1437,24,0,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1438,2020-10-27,14571.144107607395,428,Urgent,2020-10-29,Abnormal,1438,454,2,17,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1439,2021-10-07,26424.20607939292,114,Emergency,2021-10-29,Normal,1439,179,4,22,,,,DISCHARGED -1440,2019-11-15,14923.14708562106,472,Urgent,2019-12-05,Normal,1440,197,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1442,2023-10-11,29485.75542112056,213,Elective,2023-10-14,Abnormal,1442,343,0,25,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -1443,2021-12-01,10791.325616137889,317,Emergency,2021-12-02,Abnormal,1443,160,3,0,,,,DISCHARGED -1443,2023-08-20,42274.32778501501,235,Elective,2023-09-13,Inconclusive,2714,176,1,13,,,,DISCHARGED -1444,2021-10-16,30317.09975741035,488,Urgent,2021-11-06,Normal,1444,284,3,21,,,,DISCHARGED -1445,2020-07-12,29767.975467313696,478,Urgent,2020-08-06,Abnormal,1445,62,3,22,,,,DISCHARGED -1446,2019-12-03,4721.403200353537,284,Emergency,2019-12-05,Normal,1446,490,3,12,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1447,2023-02-02,18062.52811261929,181,Emergency,2023-02-05,Inconclusive,1447,149,0,24,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -1448,2023-06-08,4916.296358886948,397,Emergency,2023-07-06,Abnormal,1448,153,0,11,,,,DISCHARGED -1449,2022-10-13,42499.60908630285,281,Elective,2022-11-04,Abnormal,1449,155,1,2,,,,DISCHARGED -1450,2019-01-30,27664.075375883356,111,Urgent,2019-02-25,Normal,1450,369,3,17,,,,DISCHARGED -1451,2019-12-20,43877.65177032784,486,Urgent,2019-12-25,Normal,1451,468,0,20,,,,DISCHARGED -1452,2021-09-06,15696.96699355709,314,Emergency,2021-09-30,Abnormal,1452,48,1,12,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -1453,2020-10-28,28548.355248954325,187,Urgent,2020-10-31,Normal,1453,454,1,14,,,,DISCHARGED -1454,2020-10-11,24120.18404388413,286,Elective,2020-10-16,Inconclusive,1454,336,3,9,,,,DISCHARGED -1454,2021-11-29,9889.490744950002,473,Emergency,2021-12-06,Abnormal,2600,83,2,0,,,,DISCHARGED -1455,2022-09-26,7474.711087373894,325,Urgent,2022-10-13,Abnormal,1455,360,3,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -1456,2021-02-05,24634.73033601485,206,Emergency,2021-02-10,Normal,1456,176,2,5,,,,DISCHARGED -1457,2020-10-28,44104.56514798776,282,Elective,2020-11-21,Inconclusive,1457,147,1,8,,,,DISCHARGED -1458,2021-08-11,14390.020913011787,494,Urgent,2021-09-06,Inconclusive,1458,117,0,9,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1459,2020-11-24,20067.42030581381,131,Elective,2020-12-12,Normal,1459,341,4,14,,,,DISCHARGED -1460,2023-08-23,24156.82001598274,208,Emergency,2023-09-19,Inconclusive,1460,475,1,8,,,,DISCHARGED -1461,2019-08-31,45354.73409867554,181,Emergency,2019-09-02,Abnormal,1461,62,0,22,,,,DISCHARGED -1461,2019-07-15,22135.735416199044,356,Elective,2019-08-10,Abnormal,5216,188,1,13,,,,DISCHARGED -1462,2019-09-07,33576.844385190285,406,Emergency,2019-09-14,Abnormal,1462,359,3,10,,,,DISCHARGED -1463,2021-02-04,36094.08668049679,163,Elective,2021-02-11,Inconclusive,1463,48,2,6,,,,DISCHARGED -1464,2022-04-21,5114.73256005197,485,Urgent,2022-05-03,Abnormal,1464,326,1,23,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1465,2023-04-03,15417.000001193475,423,Urgent,2023-04-10,Normal,1465,256,0,25,,,,DISCHARGED -1466,2022-07-09,14966.189831628875,131,Emergency,2022-08-06,Inconclusive,1466,223,3,29,,,,DISCHARGED -1467,2023-10-02,18283.993899372657,298,Elective,2023-10-06,Inconclusive,1467,140,4,1,,,,DISCHARGED -1468,2019-10-06,30304.375081587805,474,Elective,2019-10-19,Abnormal,1468,477,3,13,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1469,2021-10-13,29356.275590938763,171,Elective,2021-10-25,Normal,1469,214,2,5,,,,DISCHARGED -1470,2020-12-01,34472.084194001654,422,Urgent,2020-12-16,Normal,1470,434,3,4,,,,DISCHARGED -1471,2021-08-17,38743.88147789532,355,Urgent,2021-08-20,Normal,1471,378,4,4,,,,DISCHARGED -1472,2020-05-17,5110.232728208756,349,Urgent,2020-05-22,Inconclusive,1472,439,0,28,,,,DISCHARGED -1472,2021-06-30,14044.392060190456,217,Emergency,2021-07-27,Abnormal,5563,210,1,18,,,,DISCHARGED -1472,2021-07-08,29210.176374035756,126,Emergency,2021-07-15,Abnormal,9026,317,2,18,,,,DISCHARGED -1473,2021-08-15,7536.747469676526,470,Urgent,2021-08-22,Normal,1473,31,4,5,,,,DISCHARGED -1474,2021-12-06,17944.24264921578,430,Emergency,2021-12-16,Normal,1474,157,2,27,,,,DISCHARGED -1475,2021-07-04,47384.05104293734,178,Urgent,2021-07-29,Abnormal,1475,284,3,25,,,,DISCHARGED -1476,2020-09-06,47527.2226044018,272,Urgent,2020-09-27,Abnormal,1476,304,2,28,,,,DISCHARGED -1477,2022-03-28,44490.20985706157,228,Urgent,2022-04-26,Abnormal,1477,428,4,9,,,,DISCHARGED -1478,2022-05-31,48098.55655167212,466,Elective,2022-06-07,Normal,1478,476,1,22,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1479,2023-04-13,33333.405400636926,148,Elective,2023-04-27,Inconclusive,1479,285,1,13,,,,DISCHARGED -1480,2019-04-11,1599.8748640537535,223,Elective,2019-04-23,Inconclusive,1480,143,2,16,,,,DISCHARGED -1481,2019-01-27,30291.16313443074,106,Urgent,2019-02-16,Abnormal,1481,423,0,29,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1482,2021-11-11,24458.10656430833,320,Emergency,2021-12-04,Normal,1482,18,2,2,,,,DISCHARGED -1483,2020-05-11,29896.74820134905,157,Elective,2020-05-15,Abnormal,1483,17,3,27,,,,DISCHARGED -1484,2022-02-02,41940.65611297242,253,Elective,2022-02-28,Normal,1484,256,1,0,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1485,2023-05-31,28835.0472876612,421,Urgent,2023-06-10,Abnormal,1485,77,1,9,,,,DISCHARGED -1486,2020-06-04,6150.015684868643,458,Elective,2020-06-29,Abnormal,1486,370,1,2,,,,DISCHARGED -1487,2023-06-19,26457.314733062405,154,Elective,2023-07-15,Normal,1487,174,0,4,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1488,2022-05-20,7198.770967286122,497,Urgent,2022-05-29,Abnormal,1488,497,0,24,,,,DISCHARGED -1489,2019-12-25,45306.601749417714,402,Urgent,2020-01-19,Inconclusive,1489,193,4,18,,,,DISCHARGED -1490,2019-01-13,17738.069851981614,297,Urgent,2019-01-29,Abnormal,1490,475,2,9,,,,DISCHARGED -1491,2020-05-24,24742.714097824395,258,Urgent,2020-05-28,Inconclusive,1491,112,2,29,,,,DISCHARGED -1493,2020-10-01,49141.0230566944,161,Urgent,2020-10-27,Abnormal,1493,113,3,25,,,,DISCHARGED -1494,2019-03-31,3396.323894291608,144,Emergency,2019-04-11,Inconclusive,1494,221,1,24,,,,DISCHARGED -1495,2021-11-30,49974.16045847918,441,Emergency,2021-12-16,Abnormal,1495,165,0,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1496,2019-07-05,44847.52526813831,137,Urgent,2019-07-11,Normal,1496,434,3,0,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1498,2020-09-30,20086.904045989628,139,Elective,2020-10-03,Normal,1498,318,3,5,,,,DISCHARGED -1499,2022-04-19,13391.602986508997,308,Urgent,2022-05-15,Inconclusive,1499,131,0,8,,,,DISCHARGED -1500,2019-09-04,29167.79216874884,164,Urgent,2019-09-07,Abnormal,1500,384,2,27,,,,DISCHARGED -1501,2019-05-24,37176.7800806692,121,Elective,2019-06-19,Abnormal,1501,263,1,4,,,,DISCHARGED -1502,2021-12-01,18137.14824526985,351,Urgent,2021-12-12,Normal,1502,412,2,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1503,2023-04-11,48554.94871358728,249,Urgent,2023-04-15,Inconclusive,1503,54,3,13,,,,DISCHARGED -1504,2020-08-03,5483.7073453562025,346,Urgent,2020-08-08,Normal,1504,358,1,9,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1505,2019-05-28,46026.91105722429,422,Elective,2019-06-21,Abnormal,1505,130,4,1,,,,DISCHARGED -1506,2020-06-25,42941.61067262114,500,Urgent,2020-07-09,Inconclusive,1506,287,3,4,,,,DISCHARGED -1507,2023-06-23,6718.587381240304,292,Urgent,2023-07-14,Normal,1507,265,2,0,,,,DISCHARGED -1508,2019-06-22,5001.402102076398,147,Elective,2019-07-07,Abnormal,1508,457,2,24,,,,DISCHARGED -1508,2021-06-01,5780.596079973189,414,Elective,2021-06-15,Normal,2759,466,2,9,,,,DISCHARGED -1509,2019-03-25,49877.89864721778,283,Emergency,2019-04-23,Normal,1509,365,0,28,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1510,2019-10-12,44074.03564553098,301,Elective,2019-10-18,Inconclusive,1510,161,3,25,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1511,2021-08-09,5471.482228615109,363,Elective,2021-08-20,Inconclusive,1511,379,1,24,,,,DISCHARGED -1512,2019-07-13,33067.77166015609,263,Elective,2019-08-09,Inconclusive,1512,480,2,21,,,,DISCHARGED -1513,2021-01-17,34596.27497179083,241,Elective,2021-01-31,Inconclusive,1513,86,2,26,,,,DISCHARGED -1513,2022-02-17,21420.41760462032,265,Elective,2022-03-06,Normal,3011,54,0,8,,,,DISCHARGED -1513,2021-04-26,18677.676500513757,366,Elective,2021-05-23,Normal,5961,475,1,29,,,,DISCHARGED -1514,2023-02-24,46542.01178268709,106,Elective,2023-03-22,Abnormal,1514,287,3,2,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1515,2020-07-27,13318.406346446598,379,Urgent,2020-08-03,Inconclusive,1515,177,4,14,,,,DISCHARGED -1516,2020-09-15,29869.756045200484,265,Urgent,2020-09-21,Inconclusive,1516,390,0,3,,,,DISCHARGED -1517,2022-06-09,18176.316545724745,416,Elective,2022-06-16,Normal,1517,348,3,12,,,,DISCHARGED -1518,2021-11-19,43000.54119978862,101,Emergency,2021-12-05,Abnormal,1518,7,4,5,,,,DISCHARGED -1519,2019-08-07,41312.72078255848,222,Urgent,2019-08-11,Abnormal,1519,320,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -1520,2019-04-21,7079.09301546943,345,Urgent,2019-05-11,Abnormal,1520,312,2,16,,,,DISCHARGED -1521,2022-01-17,30326.74369682075,372,Urgent,2022-02-14,Abnormal,1521,246,1,22,,,,DISCHARGED -1521,2022-08-30,46952.67115575456,249,Emergency,2022-09-10,Abnormal,2114,322,4,4,,,,DISCHARGED -1521,2020-12-15,11192.328207796692,114,Emergency,2020-12-18,Normal,9428,471,2,29,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -1522,2020-08-09,35316.192399242354,498,Emergency,2020-08-18,Inconclusive,1522,470,2,14,,,,DISCHARGED -1523,2020-03-04,8511.769699943969,387,Elective,2020-03-20,Normal,1523,442,1,7,,,,DISCHARGED -1524,2022-10-19,36495.692531056055,319,Urgent,2022-11-10,Abnormal,1524,254,3,24,,,,DISCHARGED -1525,2019-12-30,49484.04094772212,336,Elective,2020-01-23,Abnormal,1525,327,2,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1526,2021-01-15,6717.731122851445,471,Urgent,2021-02-05,Abnormal,1526,53,0,23,,,,DISCHARGED -1526,2023-10-11,3414.1350419937626,243,Elective,2023-10-23,Normal,1777,248,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -1527,2020-04-10,13829.91480382067,474,Urgent,2020-04-22,Normal,1527,238,3,0,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1528,2020-08-20,32230.718790583487,435,Emergency,2020-08-30,Inconclusive,1528,228,4,0,,,,DISCHARGED -1529,2021-04-06,29074.919762426194,198,Elective,2021-04-12,Normal,1529,66,1,6,,,,DISCHARGED -1529,2022-05-10,8473.007721982092,179,Urgent,2022-05-27,Normal,6859,50,0,21,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1530,2021-03-09,4247.833298255256,488,Urgent,2021-03-10,Abnormal,1530,96,0,4,,,,DISCHARGED -1531,2021-05-30,20566.599437552028,381,Elective,2021-06-03,Normal,1531,91,3,13,,,,DISCHARGED -1532,2020-10-02,44047.51836034425,299,Emergency,2020-10-06,Normal,1532,494,4,14,,,,DISCHARGED -1533,2023-08-26,27599.383578136498,286,Urgent,2023-09-03,Inconclusive,1533,263,4,20,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1534,2019-03-04,48209.00770432499,232,Elective,2019-03-31,Abnormal,1534,417,3,29,,,,DISCHARGED -1534,2020-05-18,14433.475723397838,235,Urgent,2020-06-07,Inconclusive,2659,290,0,24,,,,DISCHARGED -1535,2020-09-26,14709.21819915168,201,Elective,2020-10-02,Abnormal,1535,95,1,16,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1536,2021-10-14,16246.589848734411,237,Elective,2021-10-19,Inconclusive,1536,87,0,23,,,,DISCHARGED -1537,2019-02-04,44113.84667491173,167,Emergency,2019-02-14,Normal,1537,77,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1538,2021-04-11,24403.631086452955,444,Urgent,2021-04-15,Inconclusive,1538,287,0,6,,,,DISCHARGED -1539,2022-07-10,22076.602536944843,460,Emergency,2022-08-01,Inconclusive,1539,119,1,21,,,,DISCHARGED -1540,2021-11-08,4535.095021149562,426,Elective,2021-11-21,Inconclusive,1540,301,2,25,,,,DISCHARGED -1541,2021-12-31,30952.25860746648,227,Emergency,2022-01-05,Inconclusive,1541,490,0,17,,,,DISCHARGED -1542,2018-11-02,24441.2028671702,355,Urgent,2018-11-23,Inconclusive,1542,399,3,27,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1543,2022-07-26,13329.44088048892,255,Emergency,2022-08-17,Inconclusive,1543,451,2,28,,,,DISCHARGED -1544,2023-02-07,17970.747199969097,484,Elective,2023-02-10,Normal,1544,499,3,18,,,,DISCHARGED -1544,2020-03-18,48533.68532838184,241,Elective,2020-04-14,Abnormal,3173,164,3,19,,,,DISCHARGED -1545,2022-05-27,31080.43363296485,136,Emergency,2022-05-30,Normal,1545,181,3,6,,,,DISCHARGED -1546,2019-06-05,9819.675917973173,133,Urgent,2019-06-30,Normal,1546,468,0,7,,,,DISCHARGED -1547,2023-10-07,39156.5539168982,379,Elective,2023-10-16,Inconclusive,1547,397,4,12,,,,DISCHARGED -1548,2020-07-29,39561.77312013998,189,Emergency,2020-08-08,Abnormal,1548,222,2,26,,,,DISCHARGED -1549,2021-01-09,10841.461394664037,447,Elective,2021-01-18,Normal,1549,310,1,17,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1550,2022-12-25,40821.40976421033,105,Elective,2022-12-31,Abnormal,1550,431,4,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -1551,2022-02-01,19119.443166478944,499,Elective,2022-03-02,Normal,1551,465,0,10,,,,DISCHARGED -1552,2020-01-04,23204.4704391058,258,Urgent,2020-01-16,Inconclusive,1552,6,3,8,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1553,2021-06-27,21941.00828878537,223,Emergency,2021-07-07,Inconclusive,1553,329,1,22,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -1554,2018-12-18,13172.351914492096,382,Emergency,2019-01-02,Normal,1554,262,2,0,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -1555,2021-11-26,28491.10773226692,278,Elective,2021-12-01,Abnormal,1555,160,4,21,,,,DISCHARGED -1556,2021-03-07,20362.240661541942,331,Elective,2021-03-17,Abnormal,1556,150,4,7,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1557,2023-08-05,1659.8865598222835,218,Elective,2023-08-20,Abnormal,1557,84,1,20,,,,DISCHARGED -1558,2023-07-16,39075.600712803,296,Emergency,2023-08-13,Abnormal,1558,146,0,11,,,,DISCHARGED -1559,2021-07-27,16999.53176991475,379,Urgent,2021-08-08,Normal,1559,111,2,1,,,,DISCHARGED -1560,2020-01-08,5460.202691148909,486,Emergency,2020-01-10,Inconclusive,1560,380,1,14,,,,DISCHARGED -1561,2022-06-20,46635.08420770996,250,Emergency,2022-07-11,Inconclusive,1561,402,3,20,,,,DISCHARGED -1561,2021-05-06,22422.542811681844,428,Emergency,2021-05-13,Abnormal,5566,35,2,23,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1561,2023-02-20,40146.70724141927,448,Emergency,2023-03-22,Abnormal,7083,284,4,17,,,,DISCHARGED -1561,2020-03-22,36636.92126992474,184,Emergency,2020-04-19,Abnormal,7570,187,1,16,,,,DISCHARGED -1562,2023-08-19,43362.62942467006,440,Elective,2023-08-21,Normal,1562,81,4,14,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -1563,2021-11-04,18562.037225599644,268,Urgent,2021-12-03,Normal,1563,1,4,19,,,,DISCHARGED -1564,2021-01-29,4610.07353428681,155,Elective,2021-02-15,Inconclusive,1564,384,4,19,,,,DISCHARGED -1565,2022-05-01,11120.327138856614,141,Urgent,2022-05-21,Inconclusive,1565,302,0,8,,,,DISCHARGED -1566,2020-06-07,14214.74078190503,447,Elective,2020-07-04,Inconclusive,1566,196,4,2,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1567,2021-03-17,3988.9770316574472,232,Emergency,2021-04-02,Inconclusive,1567,403,3,19,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1567,2021-02-23,27596.398901714227,426,Emergency,2021-03-24,Abnormal,5973,10,3,18,,,,DISCHARGED -1568,2019-10-15,19055.30829084292,177,Urgent,2019-10-28,Abnormal,1568,233,2,17,,,,DISCHARGED -1569,2021-07-21,3962.3585451220542,151,Emergency,2021-08-04,Inconclusive,1569,385,4,19,,,,DISCHARGED -1570,2022-02-02,7792.850186638831,361,Elective,2022-03-04,Abnormal,1570,194,4,29,,,,DISCHARGED -1571,2021-12-10,14718.8206639204,288,Elective,2022-01-04,Abnormal,1571,470,1,7,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -1572,2020-01-20,20367.02596402093,189,Emergency,2020-02-12,Abnormal,1572,118,0,0,,,,DISCHARGED -1573,2020-07-14,10183.27104472155,473,Urgent,2020-07-20,Abnormal,1573,395,2,23,,,,DISCHARGED -1574,2020-03-25,40537.16596847549,414,Elective,2020-03-30,Abnormal,1574,19,4,23,,,,DISCHARGED -1575,2021-10-27,32676.253443271053,357,Emergency,2021-11-10,Abnormal,1575,260,1,14,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1576,2020-05-19,39659.26128947385,459,Emergency,2020-06-03,Inconclusive,1576,292,0,18,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1577,2020-12-17,8071.724988758223,248,Emergency,2021-01-07,Abnormal,1577,421,2,29,,,,DISCHARGED -1578,2022-04-30,44305.12563629532,257,Urgent,2022-05-23,Abnormal,1578,255,2,25,,,,DISCHARGED -1579,2020-10-31,37522.7936316438,500,Elective,2020-11-09,Abnormal,1579,221,4,9,,,,DISCHARGED -1580,2021-08-19,26124.181564033926,243,Elective,2021-09-01,Inconclusive,1580,392,2,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1581,2021-08-26,49201.887875779714,335,Urgent,2021-09-25,Abnormal,1581,225,1,27,,,,DISCHARGED -1582,2019-06-14,34813.197208903104,323,Urgent,2019-06-21,Abnormal,1582,52,2,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1583,2020-11-23,16905.648702683087,121,Elective,2020-12-11,Normal,1583,427,3,28,,,,DISCHARGED -1584,2018-11-27,49405.83723633517,282,Urgent,2018-12-23,Abnormal,1584,354,1,12,,,,DISCHARGED -1585,2019-11-15,8408.061478502012,202,Urgent,2019-11-22,Inconclusive,1585,499,0,3,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -1586,2023-02-14,40698.308204961126,483,Urgent,2023-03-09,Inconclusive,1586,341,0,12,,,,DISCHARGED -1587,2022-08-09,9059.383911757295,286,Emergency,2022-08-18,Abnormal,1587,363,4,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1588,2020-08-04,32550.981092199014,230,Urgent,2020-08-31,Inconclusive,1588,279,4,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1589,2020-01-01,25062.904694820525,303,Emergency,2020-01-07,Inconclusive,1589,80,3,0,,,,DISCHARGED -1590,2019-06-19,45419.86480615151,368,Emergency,2019-07-09,Abnormal,1590,201,0,4,,,,DISCHARGED -1590,2022-06-04,39064.003103802985,459,Elective,2022-07-03,Normal,6065,157,0,27,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1591,2020-12-06,44771.85624926054,130,Urgent,2020-12-26,Normal,1591,119,0,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -1592,2023-08-28,13357.176322480962,446,Elective,,Abnormal,1592,58,0,16,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1593,2022-11-07,30030.42019546245,339,Emergency,2022-11-28,Normal,1593,493,2,17,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -1593,2019-06-13,42187.0691878531,127,Emergency,2019-06-21,Abnormal,2140,214,1,6,,,,DISCHARGED -1593,2019-08-06,27363.455929256776,305,Urgent,2019-08-20,Normal,5666,127,1,15,,,,DISCHARGED -1594,2022-03-19,28582.90276413069,247,Elective,2022-03-23,Inconclusive,1594,223,3,7,,,,DISCHARGED -1595,2020-01-07,4661.97592514057,489,Elective,2020-01-14,Abnormal,1595,208,2,11,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1596,2022-05-07,49898.20827675171,140,Emergency,2022-06-05,Normal,1596,369,0,13,,,,DISCHARGED -1596,2021-12-12,14276.452978951447,322,Elective,2021-12-28,Abnormal,2820,114,0,18,,,,DISCHARGED -1597,2021-04-17,10594.497573444967,222,Elective,2021-04-25,Abnormal,1597,208,4,10,,,,DISCHARGED -1598,2021-12-25,7799.003444567236,203,Urgent,2022-01-06,Abnormal,1598,13,4,11,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1599,2019-09-14,43533.68721416263,239,Elective,2019-09-30,Abnormal,1599,8,3,12,,,,DISCHARGED -1600,2023-05-11,44350.5286952169,261,Elective,2023-05-28,Inconclusive,1600,39,0,7,,,,DISCHARGED -1601,2021-03-11,41913.25053234611,173,Urgent,2021-03-19,Abnormal,1601,449,3,0,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -1602,2021-10-29,34623.58127952162,428,Emergency,2021-11-14,Abnormal,1602,236,2,8,,,,DISCHARGED -1603,2022-04-06,47618.35565392174,159,Elective,2022-05-06,Abnormal,1603,280,1,27,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1604,2023-08-20,3730.572416681823,206,Urgent,,Normal,1604,358,0,1,,,,OPEN -1605,2023-04-11,8337.67786285797,480,Urgent,2023-04-30,Normal,1605,200,2,13,,,,DISCHARGED -1606,2023-03-24,16449.288806209093,354,Urgent,2023-04-06,Inconclusive,1606,245,0,12,,,,DISCHARGED -1607,2022-11-21,43756.01489579732,226,Urgent,2022-12-14,Normal,1607,277,4,15,,,,DISCHARGED -1608,2022-12-20,49028.82867743158,335,Urgent,2022-12-24,Abnormal,1608,234,3,1,,,,DISCHARGED -1609,2018-12-28,34385.611931837746,469,Elective,2019-01-03,Abnormal,1609,493,4,3,,,,DISCHARGED -1610,2020-07-24,40304.11805818253,449,Elective,2020-08-20,Inconclusive,1610,3,1,11,,,,DISCHARGED -1611,2019-07-06,31352.567947138643,388,Urgent,2019-07-28,Abnormal,1611,153,4,15,,,,DISCHARGED -1612,2019-10-06,21616.487340415264,187,Urgent,2019-11-03,Normal,1612,441,0,9,,,,DISCHARGED -1613,2022-04-18,11546.685093469854,337,Emergency,2022-05-12,Inconclusive,1613,28,4,2,,,,DISCHARGED -1614,2022-09-17,9990.811232952174,243,Urgent,2022-09-18,Inconclusive,1614,108,0,3,,,,DISCHARGED -1615,2019-09-20,14838.197617728732,101,Urgent,2019-09-25,Normal,1615,97,1,5,,,,DISCHARGED -1616,2022-02-04,6600.128643976353,132,Emergency,2022-02-07,Abnormal,1616,214,4,22,,,,DISCHARGED -1617,2023-08-24,13939.455633533002,475,Urgent,2023-09-20,Inconclusive,1617,292,3,4,,,,DISCHARGED -1618,2020-06-17,22622.770977671207,238,Urgent,2020-06-26,Abnormal,1618,74,3,17,,,,DISCHARGED -1618,2022-12-29,32144.19291591066,465,Urgent,2023-01-28,Normal,4240,325,3,2,,,,DISCHARGED -1619,2022-11-11,9732.832837619077,237,Urgent,2022-12-01,Normal,1619,145,4,9,,,,DISCHARGED -1619,2023-10-16,7004.712221292044,179,Emergency,2023-11-05,Normal,8015,127,4,10,,,,DISCHARGED -1620,2022-06-07,46651.11799627453,234,Emergency,2022-06-30,Abnormal,1620,340,4,18,,,,DISCHARGED -1621,2019-02-10,28587.75781766353,253,Elective,2019-02-23,Abnormal,1621,41,0,13,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1622,2022-03-27,17210.356394974835,440,Urgent,2022-04-06,Normal,1622,355,1,20,,,,DISCHARGED -1623,2019-11-16,48063.48989423363,121,Urgent,2019-11-26,Inconclusive,1623,40,3,27,,,,DISCHARGED -1624,2021-03-19,17960.330687829704,478,Urgent,2021-04-06,Abnormal,1624,421,0,10,,,,DISCHARGED -1625,2022-10-21,21001.131138557284,164,Emergency,2022-11-18,Abnormal,1625,33,3,27,,,,DISCHARGED -1626,2022-01-23,39720.17072696117,204,Emergency,2022-02-18,Normal,1626,16,0,20,,,,DISCHARGED -1627,2023-08-08,44924.82665964953,108,Urgent,,Abnormal,1627,164,4,3,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1628,2021-10-01,9929.680402414138,373,Urgent,2021-10-08,Normal,1628,152,3,23,,,,DISCHARGED -1629,2019-06-18,38008.59422479103,220,Emergency,2019-06-24,Abnormal,1629,485,4,21,,,,DISCHARGED -1630,2023-02-10,30444.0359381278,287,Emergency,,Normal,1630,377,3,5,,,,OPEN -1631,2019-07-28,6109.029245576259,401,Elective,2019-08-03,Normal,1631,75,2,16,,,,DISCHARGED -1632,2020-06-23,9032.24588452845,458,Emergency,2020-06-25,Normal,1632,86,0,21,,,,DISCHARGED -1633,2020-02-18,30737.58690067896,286,Urgent,2020-03-06,Inconclusive,1633,116,2,18,,,,DISCHARGED -1634,2021-01-16,19428.59802448125,468,Emergency,2021-02-10,Normal,1634,361,0,12,,,,DISCHARGED -1635,2020-10-11,33636.86245968776,444,Urgent,2020-11-08,Inconclusive,1635,341,1,21,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1636,2021-04-12,29244.57786835185,184,Elective,2021-05-01,Abnormal,1636,468,3,9,,,,DISCHARGED -1637,2023-02-17,33066.425715574056,173,Emergency,2023-03-10,Normal,1637,26,1,28,,,,DISCHARGED -1638,2023-02-13,11767.73144327441,251,Elective,2023-03-07,Inconclusive,1638,312,1,10,,,,DISCHARGED -1639,2020-12-01,42020.81237998765,425,Elective,2020-12-21,Normal,1639,286,0,28,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1640,2020-02-20,28249.404302956627,348,Elective,2020-03-12,Inconclusive,1640,133,2,5,,,,DISCHARGED -1640,2020-10-18,2127.119775493846,164,Emergency,2020-11-12,Abnormal,3431,218,4,1,,,,DISCHARGED -1641,2023-02-06,7111.758125266638,174,Elective,,Abnormal,1641,167,0,0,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,OPEN -1642,2019-07-06,22635.866617515952,292,Urgent,2019-07-14,Inconclusive,1642,97,4,10,,,,DISCHARGED -1643,2023-05-15,13340.210052651226,351,Elective,2023-06-03,Inconclusive,1643,267,1,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -1644,2023-05-21,33533.5820435409,477,Emergency,2023-06-04,Abnormal,1644,236,4,2,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1645,2022-03-31,40549.54544932743,463,Emergency,2022-04-02,Abnormal,1645,308,2,4,,,,DISCHARGED -1646,2021-05-14,31284.744541393306,382,Elective,2021-05-20,Inconclusive,1646,454,0,14,,,,DISCHARGED -1647,2020-08-01,9763.439082978002,396,Urgent,2020-08-02,Inconclusive,1647,393,2,14,,,,DISCHARGED -1648,2019-10-03,40844.41203928748,226,Urgent,2019-10-06,Inconclusive,1648,172,2,3,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1649,2023-09-03,21921.308292920243,267,Emergency,2023-09-29,Normal,1649,400,0,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1649,2023-06-04,15803.855756430356,320,Elective,,Inconclusive,7318,409,2,3,,,,OPEN -1651,2020-11-08,15821.832530223495,437,Emergency,2020-12-05,Inconclusive,1651,468,3,7,,,,DISCHARGED -1652,2019-06-26,39582.886674268826,162,Emergency,2019-07-09,Normal,1652,475,3,6,,,,DISCHARGED -1653,2018-12-31,3325.889943715688,110,Urgent,2019-01-23,Normal,1653,189,3,25,,,,DISCHARGED -1654,2023-02-08,1539.4352789185646,262,Urgent,2023-02-09,Abnormal,1654,121,4,24,,,,DISCHARGED -1655,2018-12-09,15901.473686414514,179,Emergency,2018-12-20,Abnormal,1655,45,2,16,,,,DISCHARGED -1656,2023-10-05,6407.487406102353,413,Urgent,2023-11-01,Abnormal,1656,63,0,14,,,,DISCHARGED -1657,2023-03-23,30413.431082880103,474,Urgent,2023-04-04,Abnormal,1657,129,0,4,,,,DISCHARGED -1658,2022-02-08,28154.494737076755,433,Urgent,2022-02-13,Abnormal,1658,309,4,12,,,,DISCHARGED -1658,2022-10-08,11190.70399174364,168,Emergency,2022-10-27,Inconclusive,8450,362,0,3,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1659,2021-06-06,48143.46994562864,384,Urgent,2021-07-04,Abnormal,1659,192,3,21,,,,DISCHARGED -1660,2020-10-11,35948.56128447213,339,Urgent,2020-11-09,Normal,1660,306,2,16,,,,DISCHARGED -1661,2022-09-23,5079.581673657241,435,Urgent,2022-10-20,Normal,1661,180,0,21,,,,DISCHARGED -1662,2022-02-16,32616.817755984383,136,Elective,2022-02-25,Inconclusive,1662,291,0,16,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -1663,2022-05-14,8653.46498716628,262,Emergency,2022-05-20,Inconclusive,1663,370,1,13,,,,DISCHARGED -1664,2020-02-15,31203.922135856315,189,Elective,2020-03-12,Normal,1664,281,1,13,,,,DISCHARGED -1665,2023-03-17,48876.96397776978,267,Elective,,Abnormal,1665,28,1,16,,,,OPEN -1666,2023-06-06,22267.19192755914,168,Urgent,,Inconclusive,1666,148,2,7,,,,OPEN -1667,2020-11-04,32824.66280310961,157,Elective,2020-12-03,Normal,1667,266,3,1,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1667,2021-04-10,44641.18763242762,331,Elective,2021-04-21,Normal,7988,295,3,25,,,,DISCHARGED -1668,2022-06-07,36296.85633357853,415,Emergency,2022-06-20,Normal,1668,10,3,12,,,,DISCHARGED -1669,2020-02-21,25760.993504867,350,Urgent,2020-03-10,Inconclusive,1669,163,2,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1670,2021-01-17,3361.70180983459,142,Urgent,2021-01-22,Normal,1670,112,2,21,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1671,2021-05-22,46730.33343528532,312,Elective,2021-06-20,Inconclusive,1671,186,1,15,,,,DISCHARGED -1671,2022-02-16,4980.572045257291,499,Elective,2022-03-13,Normal,4731,294,0,29,,,,DISCHARGED -1671,2019-04-15,4426.005007154834,262,Urgent,2019-04-30,Abnormal,9764,231,4,15,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1672,2020-12-16,4001.108014179361,200,Emergency,2021-01-07,Abnormal,1672,226,4,5,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1673,2023-04-20,30930.41716660681,490,Urgent,2023-05-01,Normal,1673,309,0,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -1674,2020-01-13,23598.86083668433,115,Urgent,2020-01-22,Inconclusive,1674,97,1,23,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -1675,2019-11-18,5052.2292107646335,312,Emergency,2019-12-12,Abnormal,1675,54,0,3,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -1677,2023-07-03,43031.03142926738,120,Urgent,,Inconclusive,1677,110,0,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -1678,2022-11-20,42300.672082277386,405,Elective,2022-11-30,Normal,1678,151,4,5,,,,DISCHARGED -1679,2019-10-06,43144.08589750818,235,Emergency,2019-10-28,Abnormal,1679,245,1,3,,,,DISCHARGED -1680,2020-05-16,21697.23315609584,122,Emergency,2020-06-01,Abnormal,1680,405,2,17,,,,DISCHARGED -1681,2018-12-03,19067.614144283914,222,Urgent,2018-12-15,Abnormal,1681,68,4,5,,,,DISCHARGED -1682,2019-04-12,4578.992476601186,199,Emergency,2019-04-25,Normal,1682,311,2,25,,,,DISCHARGED -1683,2020-12-09,2684.244773265752,379,Elective,2020-12-12,Abnormal,1683,288,1,4,,,,DISCHARGED -1684,2019-01-16,5296.7476449354535,495,Emergency,2019-01-24,Inconclusive,1684,249,0,26,,,,DISCHARGED -1685,2021-02-18,27219.886327918648,229,Urgent,2021-03-16,Abnormal,1685,35,3,8,,,,DISCHARGED -1685,2020-09-27,27049.019366713183,212,Elective,2020-10-12,Normal,8611,238,3,10,,,,DISCHARGED -1686,2023-10-22,17485.032450769977,199,Emergency,,Inconclusive,1686,147,1,5,,,,OPEN -1687,2020-09-01,40419.15509498384,471,Emergency,2020-09-02,Abnormal,1687,466,3,29,,,,DISCHARGED -1688,2021-05-12,23695.64148451712,295,Urgent,2021-06-05,Normal,1688,226,2,15,,,,DISCHARGED -1689,2019-10-19,22819.965042485725,172,Urgent,2019-11-04,Abnormal,1689,243,3,18,,,,DISCHARGED -1690,2022-10-11,26331.99711885888,177,Elective,2022-10-22,Abnormal,1690,490,1,10,,,,DISCHARGED -1692,2022-06-19,40026.5742483302,231,Urgent,2022-07-19,Inconclusive,1692,336,1,20,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -1693,2021-05-20,28808.713152131677,461,Elective,2021-06-19,Inconclusive,1693,445,2,14,,,,DISCHARGED -1694,2020-07-18,33327.360290063094,453,Elective,2020-07-24,Abnormal,1694,364,3,25,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1695,2021-11-21,49668.60364698613,430,Emergency,2021-12-11,Normal,1695,490,3,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -1696,2023-09-06,46838.34345875178,180,Elective,2023-10-02,Abnormal,1696,481,0,8,,,,DISCHARGED -1697,2023-07-05,6192.463358169395,404,Urgent,2023-07-15,Abnormal,1697,200,4,23,,,,DISCHARGED -1698,2023-10-17,9109.467333036298,119,Emergency,2023-11-06,Abnormal,1698,153,1,18,,,,DISCHARGED -1699,2019-07-30,11746.0548177155,429,Emergency,2019-08-10,Normal,1699,449,0,24,,,,DISCHARGED -1700,2019-08-02,49627.27990683305,151,Urgent,2019-08-26,Normal,1700,72,1,18,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1701,2022-02-26,33058.53436262671,457,Elective,2022-03-18,Normal,1701,200,0,23,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -1702,2022-10-21,46028.33662326605,170,Urgent,2022-11-13,Abnormal,1702,295,4,25,,,,DISCHARGED -1703,2021-08-31,12728.619152147832,105,Urgent,2021-09-19,Inconclusive,1703,16,0,8,,,,DISCHARGED -1703,2023-03-11,44477.16899635639,162,Emergency,2023-04-03,Normal,8136,128,1,22,,,,DISCHARGED -1704,2023-05-02,1585.6029307854085,272,Emergency,2023-06-01,Inconclusive,1704,216,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1705,2019-05-14,33284.41190849319,322,Elective,2019-05-31,Normal,1705,60,1,9,,,,DISCHARGED -1706,2022-01-30,23552.031014676013,440,Urgent,2022-02-15,Normal,1706,426,2,8,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1707,2023-04-07,41482.60068515046,172,Urgent,2023-04-12,Normal,1707,103,2,18,,,,DISCHARGED -1708,2022-05-28,16679.02069074319,496,Urgent,2022-06-17,Abnormal,1708,41,2,14,,,,DISCHARGED -1709,2023-05-19,22822.99016277693,476,Emergency,2023-06-16,Inconclusive,1709,24,2,18,,,,DISCHARGED -1710,2020-01-08,28339.711203225117,302,Emergency,2020-01-10,Inconclusive,1710,38,4,1,,,,DISCHARGED -1710,2019-11-17,11818.093252196604,214,Urgent,2019-11-24,Abnormal,3753,290,3,9,,,,DISCHARGED -1711,2021-09-07,43572.41576362039,299,Urgent,2021-09-13,Normal,1711,130,3,18,,,,DISCHARGED -1712,2022-12-08,20289.62379154284,494,Urgent,2023-01-06,Normal,1712,497,1,16,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1713,2021-02-17,23931.500144936585,294,Urgent,2021-03-07,Normal,1713,228,0,19,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1714,2020-03-29,31946.37749623787,211,Elective,2020-04-06,Normal,1714,107,1,23,,,,DISCHARGED -1715,2022-10-15,39535.03588260112,182,Elective,2022-10-31,Normal,1715,171,1,20,,,,DISCHARGED -1716,2022-04-01,49155.40764559618,184,Urgent,2022-04-21,Inconclusive,1716,434,1,1,,,,DISCHARGED -1717,2021-05-16,3128.3358006571398,481,Elective,2021-05-31,Abnormal,1717,477,1,18,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1718,2019-02-26,19607.48740318562,174,Urgent,2019-02-27,Abnormal,1718,101,3,16,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -1719,2020-04-07,39106.76178026233,263,Elective,2020-04-08,Abnormal,1719,353,0,17,,,,DISCHARGED -1720,2021-12-14,42165.45122652554,382,Elective,2021-12-20,Inconclusive,1720,11,1,16,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -1721,2023-04-21,17490.76997039526,239,Emergency,2023-05-08,Abnormal,1721,274,3,1,,,,DISCHARGED -1722,2020-12-24,30681.39829776015,179,Emergency,2021-01-15,Inconclusive,1722,100,1,18,,,,DISCHARGED -1723,2021-05-18,19508.68023534052,408,Emergency,2021-05-21,Abnormal,1723,43,2,0,,,,DISCHARGED -1724,2019-09-28,33708.3837467538,120,Urgent,2019-10-08,Abnormal,1724,442,1,10,,,,DISCHARGED -1725,2020-02-25,41605.48316912713,440,Urgent,2020-03-11,Inconclusive,1725,304,1,24,,,,DISCHARGED -1725,2019-01-01,5545.337874746683,495,Urgent,2019-01-31,Normal,4534,444,4,9,,,,DISCHARGED -1726,2022-04-13,42895.64382232488,308,Elective,2022-04-26,Abnormal,1726,16,2,4,,,,DISCHARGED -1727,2022-04-30,32287.266485462696,405,Emergency,2022-05-27,Normal,1727,329,0,15,,,,DISCHARGED -1728,2020-11-14,20089.26616869234,288,Emergency,2020-12-12,Abnormal,1728,56,1,23,,,,DISCHARGED -1729,2019-07-26,49014.336975744256,387,Emergency,2019-08-02,Inconclusive,1729,310,0,4,,,,DISCHARGED -1730,2022-10-20,13087.863934527351,193,Emergency,2022-11-12,Abnormal,1730,496,2,23,,,,DISCHARGED -1731,2020-02-02,25850.433904634367,155,Urgent,2020-02-17,Inconclusive,1731,302,1,22,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1732,2021-04-09,37095.79224097199,199,Emergency,2021-04-11,Abnormal,1732,11,4,11,,,,DISCHARGED -1733,2021-08-04,41069.89692189269,474,Elective,2021-08-14,Abnormal,1733,317,3,3,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1734,2022-04-11,9736.793113344374,202,Urgent,2022-04-18,Abnormal,1734,79,4,22,,,,DISCHARGED -1735,2020-01-30,47967.04292224845,136,Urgent,2020-02-01,Normal,1735,215,4,5,,,,DISCHARGED -1736,2021-02-06,25917.92370801676,278,Emergency,2021-02-11,Abnormal,1736,338,3,18,,,,DISCHARGED -1737,2019-08-13,16520.248829823708,491,Urgent,2019-09-03,Abnormal,1737,263,3,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -1738,2020-12-11,29055.40372254097,238,Elective,2020-12-26,Normal,1738,478,3,11,,,,DISCHARGED -1739,2019-03-05,8741.897068889895,341,Elective,2019-03-28,Abnormal,1739,148,1,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1740,2020-07-31,44432.74777932138,189,Elective,2020-08-24,Inconclusive,1740,80,0,14,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1740,2022-01-31,46231.48230771744,167,Elective,2022-03-01,Normal,7027,214,0,15,,,,DISCHARGED -1741,2021-04-14,14289.055290364904,344,Urgent,2021-04-25,Abnormal,1741,484,3,12,,,,DISCHARGED -1742,2021-01-29,32855.941966081904,247,Elective,2021-02-23,Normal,1742,373,4,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1743,2022-07-03,24956.22097763945,489,Emergency,2022-07-16,Abnormal,1743,463,2,29,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -1744,2020-10-27,49672.33501232845,422,Elective,2020-10-30,Normal,1744,197,3,20,,,,DISCHARGED -1744,2021-02-13,49544.01210865921,133,Elective,2021-03-14,Abnormal,5591,199,4,23,,,,DISCHARGED -1745,2019-10-10,19952.60298426153,335,Urgent,2019-11-05,Normal,1745,24,4,6,,,,DISCHARGED -1746,2023-04-28,14412.032243801204,225,Urgent,2023-05-20,Abnormal,1746,465,1,24,,,,DISCHARGED -1746,2022-07-22,41801.92684003736,239,Urgent,2022-08-17,Normal,6051,88,1,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1747,2020-04-13,33590.01511294825,275,Emergency,2020-05-08,Inconclusive,1747,267,0,19,,,,DISCHARGED -1748,2021-03-08,49930.03160105285,236,Elective,2021-03-15,Inconclusive,1748,142,0,3,,,,DISCHARGED -1749,2018-12-19,15662.350217555424,486,Urgent,2019-01-06,Abnormal,1749,58,2,10,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1750,2023-06-07,31285.156892657167,432,Elective,2023-06-09,Inconclusive,1750,409,2,7,,,,DISCHARGED -1751,2022-04-29,22959.82683395974,262,Urgent,2022-05-20,Inconclusive,1751,488,2,5,,,,DISCHARGED -1752,2020-07-10,44726.75416710159,385,Urgent,2020-07-23,Abnormal,1752,364,2,24,,,,DISCHARGED -1753,2019-08-23,12445.396520202778,132,Elective,2019-08-27,Abnormal,1753,25,4,29,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1754,2023-03-10,24735.61941327937,222,Urgent,2023-03-29,Abnormal,1754,46,4,9,,,,DISCHARGED -1755,2022-07-25,18401.776355382084,381,Urgent,2022-08-05,Inconclusive,1755,287,0,29,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -1756,2022-02-08,22792.62736010912,452,Urgent,2022-03-04,Normal,1756,265,1,6,,,,DISCHARGED -1757,2023-08-17,23703.43028844692,299,Emergency,2023-08-31,Abnormal,1757,15,1,6,,,,DISCHARGED -1758,2020-07-31,18613.166209777763,261,Emergency,2020-08-02,Normal,1758,198,3,3,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1759,2023-01-09,47477.9076836322,428,Urgent,,Abnormal,1759,400,4,2,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,OPEN -1760,2019-07-02,24239.16822315615,108,Urgent,2019-07-20,Normal,1760,406,2,23,,,,DISCHARGED -1761,2022-06-13,37559.36514392631,205,Elective,2022-06-25,Abnormal,1761,281,2,6,,,,DISCHARGED -1762,2021-05-09,12050.859518625664,326,Emergency,2021-05-12,Inconclusive,1762,468,3,3,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1763,2021-03-16,36518.67081941626,348,Emergency,2021-03-29,Abnormal,1763,85,1,12,,,,DISCHARGED -1764,2023-10-23,19298.38207896289,349,Elective,2023-11-21,Abnormal,1764,249,2,19,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -1765,2019-12-13,2605.136395514628,146,Elective,2019-12-26,Abnormal,1765,390,1,16,,,,DISCHARGED -1766,2021-06-12,44045.00829624264,184,Elective,2021-06-22,Inconclusive,1766,269,3,26,,,,DISCHARGED -1767,2023-03-13,10187.720543271913,463,Elective,2023-04-09,Normal,1767,334,1,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1767,2021-03-13,36544.75046404455,311,Elective,2021-03-17,Normal,4218,116,1,16,,,,DISCHARGED -1768,2020-04-24,11766.05827492471,377,Urgent,2020-05-05,Abnormal,1768,6,1,25,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1769,2019-12-24,47630.10051566829,141,Urgent,2020-01-03,Normal,1769,136,2,25,,,,DISCHARGED -1770,2022-06-27,15887.717804693268,234,Urgent,2022-07-12,Abnormal,1770,370,0,3,,,,DISCHARGED -1770,2019-05-08,48466.61597695912,129,Urgent,2019-06-03,Inconclusive,7521,175,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -1771,2019-07-19,4918.746364425382,413,Emergency,2019-08-11,Normal,1771,327,1,29,,,,DISCHARGED -1772,2022-06-17,38030.58842549773,300,Elective,2022-07-10,Normal,1772,497,1,2,,,,DISCHARGED -1773,2020-10-23,45926.57863866224,383,Elective,2020-11-12,Abnormal,1773,314,1,10,,,,DISCHARGED -1774,2022-04-26,17586.22313133439,464,Emergency,2022-05-24,Normal,1774,214,0,2,,,,DISCHARGED -1774,2021-02-15,42636.21118049487,185,Elective,2021-02-25,Inconclusive,8086,476,3,11,,,,DISCHARGED -1775,2021-01-20,8883.185798579063,111,Emergency,2021-02-19,Abnormal,1775,81,2,0,,,,DISCHARGED -1776,2021-12-05,35807.01215756193,419,Urgent,2021-12-27,Inconclusive,1776,222,0,3,,,,DISCHARGED -1778,2023-08-28,13668.24552120096,221,Emergency,,Normal,1778,477,1,13,,,,OPEN -1779,2023-07-06,45716.32803350753,260,Emergency,2023-07-24,Normal,1779,371,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1780,2021-09-26,45528.0743677317,442,Urgent,2021-10-08,Abnormal,1780,422,0,13,,,,DISCHARGED -1781,2023-04-27,23860.374485493845,284,Emergency,,Abnormal,1781,482,0,12,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -1782,2022-05-25,38729.127161801,230,Urgent,2022-06-02,Abnormal,1782,401,3,12,,,,DISCHARGED -1783,2023-04-02,40983.25246829903,260,Emergency,,Normal,1783,442,4,23,,,,OPEN -1784,2020-08-20,25637.02724477805,389,Emergency,2020-09-02,Abnormal,1784,489,2,14,,,,DISCHARGED -1785,2023-03-23,8831.530945090177,462,Elective,,Abnormal,1785,102,3,16,,,,OPEN -1785,2019-11-13,43570.11250217532,468,Emergency,2019-12-05,Inconclusive,5152,272,3,11,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -1786,2021-12-23,43208.57344830517,296,Urgent,2022-01-03,Abnormal,1786,13,4,29,,,,DISCHARGED -1787,2023-04-25,44382.55840928534,251,Elective,2023-05-16,Inconclusive,1787,158,3,21,,,,DISCHARGED -1788,2019-09-01,44916.09826864657,353,Urgent,2019-09-28,Inconclusive,1788,151,0,22,,,,DISCHARGED -1789,2021-04-12,49104.60691172034,332,Emergency,2021-05-05,Inconclusive,1789,482,0,25,,,,DISCHARGED -1790,2020-11-09,39509.626037714654,471,Emergency,2020-11-14,Abnormal,1790,107,1,13,,,,DISCHARGED -1791,2021-06-03,7531.642746334843,470,Emergency,2021-06-19,Abnormal,1791,187,3,11,,,,DISCHARGED -1792,2019-12-27,6588.512196506966,132,Urgent,2020-01-16,Abnormal,1792,300,1,17,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1793,2022-11-21,2295.1865231349657,353,Emergency,2022-12-20,Inconclusive,1793,97,2,3,,,,DISCHARGED -1794,2020-06-19,18566.443042045958,399,Emergency,2020-06-24,Inconclusive,1794,130,0,26,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1795,2022-09-26,37641.013848260205,253,Elective,2022-10-21,Inconclusive,1795,292,2,13,,,,DISCHARGED -1796,2021-02-23,31396.935064698115,481,Elective,2021-03-06,Inconclusive,1796,170,4,18,,,,DISCHARGED -1797,2023-01-06,19899.698202309253,450,Emergency,2023-01-16,Abnormal,1797,423,0,28,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -1798,2019-02-25,15752.505577282309,431,Elective,2019-03-03,Normal,1798,473,2,12,,,,DISCHARGED -1798,2019-05-01,17471.81601389419,401,Elective,2019-05-20,Normal,1988,182,4,24,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -1799,2022-04-28,7140.174881829507,271,Emergency,2022-05-23,Normal,1799,470,2,29,,,,DISCHARGED -1800,2019-11-29,34353.53541581946,433,Urgent,2019-12-22,Normal,1800,363,4,22,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1801,2018-11-05,34521.47185557458,178,Elective,2018-12-04,Inconclusive,1801,38,4,17,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1801,2021-05-26,31408.13641635991,187,Urgent,2021-05-31,Abnormal,4620,14,0,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1801,2022-02-16,6786.236349478734,472,Emergency,2022-03-11,Abnormal,5315,375,1,27,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -1802,2021-12-16,22897.344520048595,184,Elective,2022-01-05,Inconclusive,1802,496,4,5,,,,DISCHARGED -1803,2023-01-05,2554.6947434757785,366,Emergency,,Abnormal,1803,3,4,8,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",OPEN -1804,2023-08-21,9753.597653821844,375,Elective,2023-09-12,Normal,1804,348,0,11,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -1805,2019-09-13,47419.87576436537,326,Elective,2019-10-05,Inconclusive,1805,469,1,18,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1806,2022-09-19,38071.57683517128,337,Elective,2022-10-17,Abnormal,1806,408,3,13,,,,DISCHARGED -1807,2019-07-17,5532.607821408728,270,Emergency,2019-07-31,Normal,1807,396,3,14,,,,DISCHARGED -1807,2021-08-20,17436.021757767616,277,Urgent,2021-09-16,Inconclusive,3032,209,1,10,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1808,2018-12-09,4700.425956265227,276,Emergency,2019-01-08,Inconclusive,1808,160,2,5,,,,DISCHARGED -1809,2022-06-19,29103.992572609222,435,Emergency,2022-06-21,Abnormal,1809,15,0,13,,,,DISCHARGED -1810,2021-05-01,11777.147357721204,315,Urgent,2021-05-27,Inconclusive,1810,492,1,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -1811,2021-09-21,32646.69447758125,161,Emergency,2021-09-30,Inconclusive,1811,425,3,18,,,,DISCHARGED -1812,2021-06-22,35611.2194280443,226,Emergency,2021-07-04,Inconclusive,1812,107,4,19,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1813,2021-09-28,35022.835383073776,187,Elective,2021-10-26,Abnormal,1813,381,3,24,,,,DISCHARGED -1813,2019-07-23,32166.612051579497,379,Urgent,2019-08-03,Inconclusive,2987,449,4,10,,,,DISCHARGED -1813,2023-04-05,10586.566650090606,324,Elective,2023-04-14,Normal,5167,310,0,28,,,,DISCHARGED -1814,2020-12-03,46675.02746064535,447,Elective,2020-12-24,Inconclusive,1814,226,4,23,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1815,2023-03-03,46339.13594657636,199,Elective,2023-03-16,Inconclusive,1815,169,1,16,,,,DISCHARGED -1816,2022-11-06,48879.34401722974,139,Urgent,2022-11-26,Abnormal,1816,33,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -1817,2020-01-16,9606.90312498718,127,Emergency,2020-01-23,Normal,1817,413,2,27,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -1818,2021-03-22,49142.04233175327,163,Emergency,2021-04-17,Inconclusive,1818,250,1,26,,,,DISCHARGED -1818,2020-01-02,6005.408027048361,411,Elective,2020-01-30,Normal,3084,246,0,16,,,,DISCHARGED -1819,2022-10-15,40451.95928616724,497,Emergency,2022-11-04,Inconclusive,1819,268,1,22,,,,DISCHARGED -1820,2021-07-11,20185.63560666859,431,Elective,2021-07-31,Inconclusive,1820,140,2,2,,,,DISCHARGED -1821,2021-10-11,12387.11981438794,151,Urgent,2021-10-24,Abnormal,1821,273,0,13,,,,DISCHARGED -1822,2023-10-16,39747.99908426908,156,Elective,,Abnormal,1822,415,3,26,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",OPEN -1823,2020-04-30,10645.75325129062,399,Emergency,2020-05-26,Inconclusive,1823,95,2,6,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1824,2022-07-21,15742.940946263932,347,Emergency,2022-07-30,Inconclusive,1824,226,0,24,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -1825,2020-02-14,40433.10369339495,122,Elective,2020-02-27,Inconclusive,1825,378,4,18,,,,DISCHARGED -1826,2020-01-27,14557.977822890807,106,Emergency,2020-02-03,Abnormal,1826,38,1,2,,,,DISCHARGED -1827,2021-04-20,19844.044740370973,278,Emergency,2021-05-12,Abnormal,1827,301,0,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1828,2022-11-15,38074.05939662491,355,Elective,2022-11-17,Abnormal,1828,499,1,25,,,,DISCHARGED -1829,2019-07-04,15488.79306105153,432,Elective,2019-08-03,Abnormal,1829,28,4,16,,,,DISCHARGED -1830,2019-03-09,31240.501992157708,426,Emergency,2019-04-05,Inconclusive,1830,445,0,8,,,,DISCHARGED -1831,2023-04-17,17959.755087190377,365,Urgent,2023-04-25,Abnormal,1831,496,3,21,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1832,2022-05-02,39247.26840902522,496,Elective,2022-06-01,Abnormal,1832,476,2,5,,,,DISCHARGED -1833,2020-06-02,37119.01527783798,305,Elective,2020-06-19,Abnormal,1833,317,0,23,,,,DISCHARGED -1834,2022-02-28,46994.167365844194,451,Emergency,2022-03-10,Abnormal,1834,244,4,26,,,,DISCHARGED -1835,2019-09-25,19894.73879602928,208,Urgent,2019-10-03,Normal,1835,235,0,20,,,,DISCHARGED -1836,2019-04-13,16339.485108133296,346,Urgent,2019-05-09,Normal,1836,184,1,8,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -1837,2021-08-18,8722.9907593805,253,Emergency,2021-09-04,Normal,1837,271,0,26,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -1838,2021-06-03,32316.35635606747,303,Urgent,2021-06-06,Abnormal,1838,439,3,4,,,,DISCHARGED -1839,2023-06-02,4348.041193289953,388,Urgent,,Normal,1839,235,0,1,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",OPEN -1840,2019-02-16,17002.03878733363,449,Emergency,2019-03-06,Inconclusive,1840,238,2,21,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -1840,2019-09-08,31484.254282814152,497,Urgent,2019-09-14,Abnormal,3773,376,0,14,,,,DISCHARGED -1841,2023-04-13,46295.82039528607,498,Urgent,,Normal,1841,265,1,8,,,,OPEN -1842,2023-07-20,40410.80646270186,238,Urgent,2023-08-15,Normal,1842,413,0,18,,,,DISCHARGED -1842,2023-03-08,19327.59177761065,476,Urgent,2023-03-09,Normal,5646,408,3,9,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1843,2022-03-24,4284.597728195915,213,Urgent,2022-04-04,Abnormal,1843,358,4,3,,,,DISCHARGED -1844,2023-03-27,20774.565915105068,482,Urgent,2023-04-03,Abnormal,1844,339,0,9,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -1846,2019-12-15,46711.698029371306,394,Elective,2020-01-12,Normal,1846,388,0,26,,,,DISCHARGED -1847,2021-10-23,33509.58365506775,400,Urgent,2021-10-31,Abnormal,1847,64,2,7,,,,DISCHARGED -1848,2023-09-28,10338.40689083627,322,Elective,2023-10-26,Inconclusive,1848,477,3,21,,,,DISCHARGED -1848,2018-11-02,22533.32023233502,147,Elective,2018-11-20,Normal,1919,176,4,12,,,,DISCHARGED -1849,2021-10-30,8601.427725112477,121,Urgent,2021-11-03,Inconclusive,1849,2,1,6,,,,DISCHARGED -1850,2020-06-03,40317.75495926055,141,Urgent,2020-06-07,Abnormal,1850,428,0,6,,,,DISCHARGED -1851,2019-09-19,36394.03514975964,437,Urgent,2019-09-30,Inconclusive,1851,141,4,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -1852,2020-06-07,2943.0267782070614,195,Emergency,2020-06-13,Inconclusive,1852,375,1,14,,,,DISCHARGED -1853,2023-04-02,33696.09719762407,156,Emergency,,Inconclusive,1853,157,3,11,,,,OPEN -1854,2023-02-25,13441.01963869145,348,Emergency,2023-03-09,Abnormal,1854,497,3,15,,,,DISCHARGED -1855,2023-01-23,25622.162798918784,332,Urgent,2023-02-05,Abnormal,1855,323,4,5,,,,DISCHARGED -1856,2020-06-14,9920.695809958854,351,Elective,2020-07-07,Normal,1856,145,1,27,,,,DISCHARGED -1857,2021-02-07,28425.22694268,479,Elective,2021-02-19,Inconclusive,1857,445,3,8,,,,DISCHARGED -1858,2018-11-25,24452.80579696671,291,Elective,2018-12-21,Normal,1858,292,4,2,,,,DISCHARGED -1859,2020-08-04,47317.310855331016,453,Emergency,2020-08-08,Normal,1859,152,3,7,,,,DISCHARGED -1860,2019-04-24,22999.625918643214,121,Elective,2019-05-22,Normal,1860,431,3,6,,,,DISCHARGED -1861,2023-02-16,28562.1130136861,382,Elective,2023-02-26,Inconclusive,1861,192,3,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -1862,2022-02-20,49559.84190109701,288,Urgent,2022-03-05,Inconclusive,1862,436,2,25,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1863,2020-01-07,11008.533386828947,266,Emergency,2020-01-28,Inconclusive,1863,493,1,12,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1864,2019-07-01,44139.10380111014,397,Urgent,2019-07-08,Abnormal,1864,462,4,18,,,,DISCHARGED -1864,2020-11-19,46178.69739013859,167,Emergency,2020-11-30,Normal,7770,72,4,29,,,,DISCHARGED -1865,2023-01-11,7105.675175599059,467,Emergency,,Normal,1865,398,1,6,,,,OPEN -1866,2023-02-25,41242.35173047311,154,Urgent,,Inconclusive,1866,304,1,9,,,,OPEN -1867,2023-10-15,3072.338808929336,231,Urgent,2023-10-19,Normal,1867,376,1,24,,,,DISCHARGED -1868,2021-11-01,16417.387415955425,280,Elective,2021-11-30,Normal,1868,343,1,11,,,,DISCHARGED -1868,2019-03-15,39242.05464486015,156,Elective,2019-04-01,Normal,4641,451,0,25,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -1869,2021-06-23,20359.316840134477,254,Urgent,2021-06-30,Abnormal,1869,139,4,2,,,,DISCHARGED -1870,2022-07-28,4630.373225070944,287,Elective,2022-08-07,Abnormal,1870,186,0,25,,,,DISCHARGED -1871,2020-07-23,20754.495290162788,427,Emergency,2020-08-22,Normal,1871,292,3,24,,,,DISCHARGED -1872,2019-09-15,28695.928883616696,142,Elective,2019-10-15,Inconclusive,1872,60,3,28,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -1873,2019-07-19,43919.10652521338,106,Emergency,2019-07-24,Inconclusive,1873,484,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1874,2019-03-10,27564.73570021476,162,Urgent,2019-04-02,Normal,1874,426,3,11,,,,DISCHARGED -1875,2022-03-10,9731.910735275478,349,Elective,2022-03-12,Inconclusive,1875,379,1,18,,,,DISCHARGED -1876,2021-06-18,7843.536505201325,127,Urgent,2021-06-20,Normal,1876,197,0,14,,,,DISCHARGED -1877,2021-06-09,31934.68531826172,393,Emergency,2021-06-29,Abnormal,1877,294,1,7,,,,DISCHARGED -1878,2021-05-18,48910.62014398547,105,Elective,2021-06-07,Abnormal,1878,439,3,11,,,,DISCHARGED -1879,2019-09-14,41199.28111607103,140,Elective,2019-10-01,Normal,1879,318,0,19,,,,DISCHARGED -1880,2019-08-18,26881.39320250615,482,Elective,2019-08-26,Inconclusive,1880,301,1,5,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -1881,2019-06-18,19397.21079566613,278,Elective,2019-06-20,Abnormal,1881,343,4,27,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1882,2023-09-29,41082.13669718514,484,Elective,2023-10-13,Abnormal,1882,10,1,9,,,,DISCHARGED -1883,2019-07-28,18696.09480430217,163,Emergency,2019-07-29,Inconclusive,1883,61,3,1,,,,DISCHARGED -1884,2019-07-08,6663.714835225604,484,Emergency,2019-08-03,Normal,1884,332,0,23,,,,DISCHARGED -1885,2020-08-27,28977.6463860359,181,Elective,2020-09-16,Abnormal,1885,225,4,12,,,,DISCHARGED -1886,2020-05-06,17769.120841650492,191,Emergency,2020-05-31,Inconclusive,1886,152,0,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1887,2022-12-27,42385.43544997359,398,Emergency,2023-01-13,Normal,1887,198,4,6,,,,DISCHARGED -1888,2023-06-15,45793.97348687594,370,Elective,2023-07-04,Normal,1888,51,0,7,,,,DISCHARGED -1889,2019-07-14,12326.52289143118,492,Elective,2019-07-22,Inconclusive,1889,259,3,22,,,,DISCHARGED -1890,2021-02-01,44194.43935454828,310,Elective,2021-02-09,Normal,1890,58,4,15,,,,DISCHARGED -1891,2020-01-22,1708.0346828317952,157,Elective,2020-02-14,Abnormal,1891,71,2,10,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1892,2019-07-11,32186.121115637376,381,Elective,2019-08-10,Abnormal,1892,147,0,25,,,,DISCHARGED -1893,2020-05-29,29718.08361296356,424,Urgent,2020-06-10,Normal,1893,348,0,3,,,,DISCHARGED -1894,2021-06-19,19433.579581121485,345,Emergency,2021-06-22,Abnormal,1894,62,1,16,,,,DISCHARGED -1895,2019-04-12,27781.642165398494,141,Elective,2019-04-18,Abnormal,1895,309,4,15,,,,DISCHARGED -1896,2020-09-16,45518.72508291688,408,Emergency,2020-10-05,Normal,1896,372,2,18,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1897,2021-12-27,14969.634638600914,463,Elective,2022-01-08,Inconclusive,1897,242,3,22,,,,DISCHARGED -1898,2023-08-12,11847.724675739692,473,Emergency,,Inconclusive,1898,492,1,26,,,,OPEN -1899,2019-09-27,1376.2348507610157,498,Emergency,2019-10-25,Normal,1899,365,2,10,,,,DISCHARGED -1900,2022-04-27,11580.471042970674,460,Emergency,2022-05-26,Inconclusive,1900,329,4,6,,,,DISCHARGED -1900,2022-03-25,8071.719887739294,397,Urgent,2022-04-19,Abnormal,9193,106,2,26,,,,DISCHARGED -1901,2018-12-31,21757.650788310628,171,Elective,2019-01-16,Normal,1901,225,0,12,,,,DISCHARGED -1901,2021-03-15,24380.98707844641,354,Urgent,2021-03-24,Abnormal,7949,312,0,18,,,,DISCHARGED -1902,2019-02-21,23058.760460206624,413,Urgent,2019-03-18,Inconclusive,1902,217,1,16,,,,DISCHARGED -1903,2021-02-28,39792.83306932154,329,Elective,2021-03-01,Abnormal,1903,424,4,25,,,,DISCHARGED -1904,2021-11-22,35540.05493652951,482,Urgent,2021-12-04,Normal,1904,240,4,24,,,,DISCHARGED -1905,2019-09-02,29942.22167699223,214,Emergency,2019-09-08,Abnormal,1905,258,2,27,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -1906,2020-06-04,9854.047808583182,473,Emergency,2020-07-01,Normal,1906,375,1,21,,,,DISCHARGED -1907,2019-12-24,36121.9405302333,144,Emergency,2020-01-04,Inconclusive,1907,261,4,12,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -1908,2019-11-28,33913.757284865686,153,Urgent,2019-12-27,Normal,1908,4,0,28,,,,DISCHARGED -1909,2023-05-17,27543.518758783204,199,Emergency,,Normal,1909,260,2,11,,,,OPEN -1910,2020-11-07,1535.7776483752568,113,Elective,2020-11-25,Inconclusive,1910,53,3,6,,,,DISCHARGED -1911,2020-08-19,12551.33538683973,428,Emergency,2020-08-30,Inconclusive,1911,46,0,0,,,,DISCHARGED -1912,2020-12-17,47502.03291856158,300,Urgent,2020-12-28,Normal,1912,214,1,0,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1913,2023-02-18,11116.763831547913,234,Elective,,Abnormal,1913,176,4,19,,,,OPEN -1914,2020-07-23,18089.911803438685,344,Urgent,2020-08-10,Abnormal,1914,8,0,22,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1915,2018-11-17,10170.08559278319,206,Emergency,2018-11-20,Inconclusive,1915,98,3,13,,,,DISCHARGED -1916,2023-05-03,13252.430586321976,406,Emergency,,Abnormal,1916,19,3,26,,,,OPEN -1917,2021-09-17,41458.66099156509,211,Elective,2021-10-10,Inconclusive,1917,377,1,14,,,,DISCHARGED -1918,2023-08-12,36576.6201263894,222,Emergency,,Abnormal,1918,240,0,10,,,,OPEN -1920,2021-11-10,49140.93556123616,140,Emergency,2021-11-28,Inconclusive,1920,60,2,23,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1921,2022-08-05,25154.13254782006,386,Elective,2022-08-11,Normal,1921,378,0,25,,,,DISCHARGED -1921,2019-08-27,34689.41647819316,447,Urgent,2019-09-13,Abnormal,7638,489,3,8,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1922,2021-03-02,40011.51641921789,421,Urgent,2021-03-24,Normal,1922,418,1,16,,,,DISCHARGED -1923,2019-08-03,45713.36467994517,324,Urgent,2019-08-26,Normal,1923,177,1,3,,,,DISCHARGED -1924,2019-02-04,46673.20401727847,331,Emergency,2019-02-16,Abnormal,1924,337,2,19,,,,DISCHARGED -1925,2022-05-18,49467.41146821703,492,Emergency,2022-05-31,Inconclusive,1925,61,1,18,,,,DISCHARGED -1926,2019-01-30,42234.98979534442,258,Elective,2019-02-28,Abnormal,1926,144,1,6,,,,DISCHARGED -1927,2019-05-29,42561.29694819286,288,Emergency,2019-06-20,Inconclusive,1927,215,1,0,,,,DISCHARGED -1928,2022-08-03,21587.36159991745,246,Urgent,2022-08-16,Normal,1928,2,1,8,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -1929,2020-08-10,5184.076303545168,467,Emergency,2020-08-28,Normal,1929,159,1,12,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -1930,2020-11-07,42582.56961924691,171,Elective,2020-11-30,Abnormal,1930,226,3,23,,,,DISCHARGED -1931,2022-10-01,9350.316427765074,195,Urgent,2022-10-25,Inconclusive,1931,485,0,1,,,,DISCHARGED -1931,2021-05-09,19307.396751309218,117,Urgent,2021-06-06,Inconclusive,5425,268,4,1,,,,DISCHARGED -1931,2022-06-22,4712.908215969233,311,Elective,2022-07-09,Normal,5553,119,1,23,,,,DISCHARGED -1932,2022-04-08,28435.24023485244,498,Urgent,2022-04-20,Normal,1932,380,4,26,,,,DISCHARGED -1933,2020-06-18,29578.80018017523,103,Emergency,2020-07-03,Normal,1933,494,4,29,,,,DISCHARGED -1934,2023-08-24,10779.594504172885,224,Emergency,2023-09-15,Inconclusive,1934,88,3,14,,,,DISCHARGED -1934,2022-10-01,49066.3508760399,104,Urgent,2022-10-05,Inconclusive,7120,328,1,16,,,,DISCHARGED -1935,2018-12-31,30744.71202458943,213,Urgent,2019-01-16,Normal,1935,67,4,12,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1935,2023-08-10,12955.51857584719,423,Emergency,2023-08-30,Abnormal,7023,397,1,6,,,,DISCHARGED -1936,2023-09-01,48012.95577113939,140,Emergency,2023-09-03,Normal,1936,356,2,8,,,,DISCHARGED -1937,2021-10-17,19321.8685798229,176,Urgent,2021-10-27,Inconclusive,1937,97,2,11,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1938,2018-11-14,23469.70102115066,107,Elective,2018-11-30,Inconclusive,1938,266,2,2,,,,DISCHARGED -1939,2021-01-20,42667.44926077702,165,Urgent,2021-01-29,Abnormal,1939,104,4,22,,,,DISCHARGED -1940,2022-05-19,6844.30269955517,462,Emergency,2022-06-10,Inconclusive,1940,439,2,21,,,,DISCHARGED -1941,2020-12-15,4186.133942069935,208,Emergency,2020-12-17,Abnormal,1941,322,3,14,,,,DISCHARGED -1942,2021-05-28,44681.11732429371,330,Emergency,2021-06-04,Inconclusive,1942,122,3,6,,,,DISCHARGED -1943,2023-03-14,42797.493004043965,179,Emergency,2023-03-16,Inconclusive,1943,475,4,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1944,2022-05-10,48005.89190873987,312,Elective,2022-05-30,Abnormal,1944,28,1,25,,,,DISCHARGED -1945,2021-07-15,24522.665638630267,116,Elective,2021-07-29,Inconclusive,1945,136,0,0,,,,DISCHARGED -1946,2023-03-03,9934.100792799354,138,Emergency,,Abnormal,1946,194,1,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",OPEN -1947,2020-10-01,34720.03167714135,323,Elective,2020-10-29,Normal,1947,408,1,18,,,,DISCHARGED -1948,2021-10-31,17613.03226914178,230,Elective,2021-11-15,Inconclusive,1948,225,1,15,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1949,2018-11-07,11281.55527316713,192,Urgent,2018-11-15,Inconclusive,1949,331,1,9,,,,DISCHARGED -1950,2021-10-13,16824.263823389083,127,Urgent,2021-10-18,Normal,1950,169,0,0,,,,DISCHARGED -1951,2022-08-30,18360.45321422453,201,Elective,2022-09-23,Normal,1951,8,2,4,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1951,2023-08-31,17611.86285714769,191,Urgent,2023-09-28,Normal,2708,462,1,2,,,,DISCHARGED -1952,2020-07-09,2406.864973537379,329,Elective,2020-07-22,Inconclusive,1952,39,3,16,,,,DISCHARGED -1953,2018-12-09,9898.757583020364,176,Elective,2018-12-20,Normal,1953,24,4,17,,,,DISCHARGED -1954,2021-12-06,3428.4048839912057,128,Elective,2021-12-20,Abnormal,1954,260,4,25,,,,DISCHARGED -1955,2023-05-03,42042.27409647247,129,Urgent,2023-06-01,Inconclusive,1955,394,3,20,,,,DISCHARGED -1956,2023-03-06,7754.467222462754,163,Elective,2023-03-21,Inconclusive,1956,442,1,26,,,,DISCHARGED -1957,2023-06-18,45173.32323819144,131,Emergency,2023-06-27,Normal,1957,225,0,18,,,,DISCHARGED -1958,2023-10-17,14200.79791915669,217,Urgent,,Inconclusive,1958,471,2,21,,,,OPEN -1959,2020-03-28,37892.66794147765,305,Emergency,2020-04-03,Abnormal,1959,123,4,24,,,,DISCHARGED -1960,2021-06-16,42858.29550284436,360,Urgent,2021-07-12,Inconclusive,1960,462,2,21,,,,DISCHARGED -1961,2022-05-12,21138.61470352916,170,Urgent,2022-05-24,Normal,1961,37,0,17,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1962,2022-08-17,9588.89347540396,417,Emergency,2022-08-22,Inconclusive,1962,327,4,15,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1963,2020-04-25,4878.929466918511,386,Urgent,2020-05-18,Abnormal,1963,250,2,1,,,,DISCHARGED -1964,2023-08-19,38415.98461518616,168,Emergency,2023-09-16,Normal,1964,388,0,14,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1965,2021-06-18,29906.83494316573,340,Emergency,2021-06-29,Normal,1965,175,2,12,,,,DISCHARGED -1966,2022-06-08,28905.452630692063,360,Urgent,2022-06-09,Normal,1966,89,1,12,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1967,2021-09-09,34476.619431206105,183,Urgent,2021-09-12,Inconclusive,1967,401,0,15,,,,DISCHARGED -1968,2018-11-02,1566.8945187909271,319,Urgent,2018-11-11,Normal,1968,453,2,7,,,,DISCHARGED -1969,2023-03-12,35933.799906807515,473,Elective,,Abnormal,1969,36,1,10,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,OPEN -1970,2019-09-06,13793.893093478908,281,Elective,2019-09-30,Normal,1970,315,1,7,,,,DISCHARGED -1971,2019-09-25,34066.04478907022,126,Elective,2019-10-21,Abnormal,1971,175,0,21,,,,DISCHARGED -1972,2019-11-29,7688.95366865212,453,Emergency,2019-12-04,Normal,1972,460,3,9,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1973,2022-02-08,35929.75453249108,191,Elective,2022-02-11,Normal,1973,283,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1974,2019-12-01,2634.3452079374347,141,Urgent,2019-12-19,Abnormal,1974,452,0,0,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1975,2021-10-17,41769.83077168575,259,Elective,2021-11-07,Inconclusive,1975,460,1,11,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -1976,2021-06-08,36799.51692561363,496,Elective,2021-07-03,Normal,1976,80,1,8,,,,DISCHARGED -1977,2023-02-13,47961.68199869757,393,Urgent,2023-02-18,Inconclusive,1977,113,0,4,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1978,2022-04-28,35550.18738299962,162,Elective,2022-05-26,Inconclusive,1978,39,3,8,,,,DISCHARGED -1980,2021-11-17,22090.139286092104,337,Elective,2021-11-27,Abnormal,1980,300,4,15,,,,DISCHARGED -1981,2021-01-04,16385.282344828614,160,Elective,2021-01-21,Abnormal,1981,223,2,17,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1982,2021-01-20,9098.922491055697,240,Urgent,2021-02-17,Abnormal,1982,317,0,29,,,,DISCHARGED -1983,2021-11-01,27646.57878743372,173,Urgent,2021-11-22,Normal,1983,348,4,7,,,,DISCHARGED -1984,2018-12-27,4990.600989418026,418,Urgent,2019-01-10,Normal,1984,114,4,22,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1985,2020-09-04,32909.25647965637,249,Elective,2020-09-22,Inconclusive,1985,185,1,10,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -1986,2018-10-30,46316.393646287564,378,Elective,2018-11-10,Inconclusive,1986,322,2,29,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1987,2019-04-23,34730.572446504884,220,Elective,2019-04-26,Abnormal,1987,55,0,19,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1989,2022-09-23,5814.698960747643,176,Urgent,2022-10-18,Inconclusive,1989,39,1,18,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1990,2023-01-15,48900.028144822645,426,Elective,,Inconclusive,1990,353,1,3,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,OPEN -1991,2022-08-06,49387.20965576066,324,Emergency,2022-08-14,Inconclusive,1991,39,3,19,,,,DISCHARGED -1992,2020-07-20,47932.91760613315,287,Urgent,2020-07-29,Abnormal,1992,346,4,25,,,,DISCHARGED -1993,2021-08-21,14849.3602948883,127,Urgent,2021-08-24,Normal,1993,460,0,9,,,,DISCHARGED -1993,2018-11-17,32225.36731480178,398,Elective,2018-11-28,Abnormal,4151,236,0,23,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1993,2022-09-25,18024.03197837031,243,Elective,2022-09-28,Inconclusive,5911,288,0,12,,,,DISCHARGED -1993,2019-08-11,39647.521929729446,158,Urgent,2019-08-13,Normal,8208,261,1,28,,,,DISCHARGED -1994,2018-12-12,8999.511383111498,381,Urgent,2018-12-23,Normal,1994,215,3,19,,,,DISCHARGED -1995,2022-05-15,11937.70044994392,220,Elective,2022-06-12,Inconclusive,1995,146,2,13,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1996,2021-08-29,24318.936183062666,184,Elective,2021-09-25,Inconclusive,1996,335,1,20,,,,DISCHARGED -1996,2019-04-06,48588.4877518146,443,Urgent,2019-04-18,Normal,6616,167,2,1,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1997,2019-08-16,18255.99630654858,270,Urgent,2019-09-04,Abnormal,1997,91,3,28,,,,DISCHARGED -1998,2023-10-22,34897.339312040254,217,Emergency,2023-11-06,Normal,1998,352,4,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1999,2019-06-19,14839.536433999165,245,Elective,2019-07-15,Inconclusive,1999,58,0,6,,,,DISCHARGED -1999,2018-12-17,35469.8700217584,446,Emergency,2019-01-08,Normal,5841,58,2,18,,,,DISCHARGED -2000,2022-03-16,10407.995137039889,427,Elective,2022-03-24,Inconclusive,2000,303,1,29,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2001,2023-08-19,14823.582168557352,315,Emergency,2023-09-05,Normal,2001,168,2,29,,,,DISCHARGED -2002,2020-02-27,7505.183786862262,351,Urgent,2020-03-28,Normal,2002,268,4,16,,,,DISCHARGED -2003,2018-11-26,24259.419486427603,267,Urgent,2018-12-10,Abnormal,2003,362,0,15,,,,DISCHARGED -2004,2021-10-13,40297.07275956278,174,Elective,2021-10-19,Normal,2004,44,2,12,,,,DISCHARGED -2005,2021-09-03,36238.50343741295,314,Urgent,2021-09-15,Abnormal,2005,344,4,23,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -2006,2021-06-16,2700.555676511574,234,Elective,2021-06-29,Normal,2006,180,1,23,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2007,2020-12-28,31137.503276117357,262,Emergency,2021-01-03,Inconclusive,2007,169,3,21,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2008,2022-03-19,48876.89504731091,317,Elective,2022-03-25,Abnormal,2008,355,1,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -2009,2021-02-17,27650.223057620424,179,Urgent,2021-02-25,Inconclusive,2009,190,0,25,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -2010,2020-08-10,27246.935549930426,446,Elective,2020-09-04,Normal,2010,154,1,26,,,,DISCHARGED -2011,2021-10-17,8549.06438901529,321,Urgent,2021-11-10,Normal,2011,421,1,17,,,,DISCHARGED -2012,2019-01-03,41076.0628395771,358,Elective,2019-01-26,Inconclusive,2012,187,1,20,,,,DISCHARGED -2013,2019-05-29,42272.42958083964,355,Elective,2019-06-09,Normal,2013,6,1,11,,,,DISCHARGED -2014,2020-08-15,19975.2298527301,398,Urgent,2020-08-27,Abnormal,2014,132,0,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2015,2022-08-21,2719.602968915492,439,Elective,2022-09-12,Normal,2015,234,4,24,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2016,2022-02-01,40753.16388517093,356,Elective,2022-03-01,Normal,2016,44,2,0,,,,DISCHARGED -2017,2022-05-30,27626.17716229101,195,Emergency,2022-06-19,Abnormal,2017,313,3,14,,,,DISCHARGED -2018,2021-04-23,16246.593072989095,107,Elective,2021-04-28,Normal,2018,248,2,2,,,,DISCHARGED -2019,2019-04-04,45281.985279707456,114,Emergency,2019-05-02,Normal,2019,498,2,5,,,,DISCHARGED -2020,2021-12-19,9260.447952279146,483,Elective,2022-01-15,Normal,2020,30,3,13,,,,DISCHARGED -2021,2023-05-16,1071.456127337255,360,Emergency,2023-06-02,Abnormal,2021,22,0,22,,,,DISCHARGED -2022,2020-08-20,32388.093844520277,214,Elective,2020-09-10,Inconclusive,2022,425,3,5,,,,DISCHARGED -2023,2023-08-22,37191.461034564745,276,Emergency,,Inconclusive,2023,393,0,0,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -2024,2021-12-02,22831.381895438542,446,Urgent,2021-12-19,Normal,2024,159,2,19,,,,DISCHARGED -2025,2021-06-28,45513.53067008454,263,Emergency,2021-07-02,Inconclusive,2025,362,0,5,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2026,2019-05-01,13800.490493355994,205,Urgent,2019-05-22,Inconclusive,2026,436,4,7,,,,DISCHARGED -2026,2019-05-03,5905.662071404492,108,Urgent,2019-05-22,Abnormal,4090,157,3,25,,,,DISCHARGED -2027,2022-04-24,48673.839489838894,269,Emergency,2022-05-20,Inconclusive,2027,38,4,14,,,,DISCHARGED -2027,2019-10-31,24587.021678844783,415,Urgent,2019-11-23,Inconclusive,2550,414,2,13,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2028,2023-10-19,41322.48311537493,247,Emergency,,Abnormal,2028,81,3,15,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -2029,2023-08-21,23590.442974111906,240,Emergency,2023-09-15,Inconclusive,2029,355,2,19,,,,DISCHARGED -2031,2023-05-11,2314.8431806592434,158,Elective,2023-05-24,Normal,2031,257,4,22,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2032,2019-01-29,22780.579535368885,109,Elective,2019-02-21,Normal,2032,205,2,15,,,,DISCHARGED -2033,2019-01-19,11583.245672978226,370,Emergency,2019-02-17,Inconclusive,2033,76,3,26,,,,DISCHARGED -2034,2021-04-05,20276.82439225447,282,Urgent,2021-05-01,Inconclusive,2034,476,3,18,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2035,2022-08-19,16532.926665381274,450,Urgent,2022-08-23,Normal,2035,11,2,23,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2036,2019-04-22,10363.253008887945,183,Emergency,2019-05-21,Abnormal,2036,294,3,0,,,,DISCHARGED -2037,2020-01-11,38265.866503436126,103,Elective,2020-01-18,Inconclusive,2037,449,3,3,,,,DISCHARGED -2038,2019-09-19,20246.780500469053,269,Elective,2019-10-16,Abnormal,2038,223,2,23,,,,DISCHARGED -2039,2020-06-25,45306.20768750641,413,Elective,2020-07-10,Abnormal,2039,12,4,9,,,,DISCHARGED -2040,2023-03-31,41406.32685394251,447,Elective,2023-04-03,Abnormal,2040,45,3,19,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2041,2020-03-14,4275.88415481029,305,Elective,2020-04-03,Inconclusive,2041,154,3,17,,,,DISCHARGED -2042,2020-05-26,49758.882336384384,270,Urgent,2020-06-11,Normal,2042,112,3,1,,,,DISCHARGED -2043,2021-08-28,5540.501871673423,163,Elective,2021-09-03,Inconclusive,2043,232,3,3,,,,DISCHARGED -2043,2023-03-01,15615.09297550578,156,Urgent,2023-03-05,Normal,3294,16,2,14,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -2044,2020-11-21,23419.25780163656,203,Urgent,2020-12-18,Abnormal,2044,359,4,28,,,,DISCHARGED -2044,2021-06-14,15804.647106077038,303,Urgent,2021-06-17,Inconclusive,3490,222,4,3,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -2045,2019-03-21,31536.83911458599,320,Emergency,2019-04-10,Inconclusive,2045,353,0,15,,,,DISCHARGED -2046,2021-03-12,10827.12339915266,469,Urgent,2021-03-18,Abnormal,2046,187,3,14,,,,DISCHARGED -2047,2022-04-02,26351.518306921786,256,Elective,2022-04-14,Normal,2047,447,3,17,,,,DISCHARGED -2048,2022-06-27,5348.734302659625,457,Emergency,2022-07-05,Normal,2048,343,0,6,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2049,2020-12-28,48362.08001340964,101,Elective,2021-01-03,Abnormal,2049,364,4,14,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2050,2021-07-25,21854.0146281259,375,Emergency,2021-08-02,Abnormal,2050,162,1,21,,,,DISCHARGED -2051,2020-12-08,9925.67313429751,341,Urgent,2020-12-26,Normal,2051,495,1,10,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2052,2020-11-14,15959.371385755869,170,Urgent,2020-11-21,Abnormal,2052,325,4,18,,,,DISCHARGED -2053,2023-08-24,41368.118978286926,500,Elective,,Abnormal,2053,466,3,7,,,,OPEN -2054,2021-10-16,48541.850205770046,371,Elective,2021-11-15,Normal,2054,413,1,23,,,,DISCHARGED -2055,2023-03-14,8377.553044992927,419,Elective,2023-03-22,Normal,2055,454,2,0,,,,DISCHARGED -2056,2022-04-10,39921.51704733342,245,Urgent,2022-04-21,Inconclusive,2056,73,2,2,,,,DISCHARGED -2057,2022-05-24,14789.310597157544,261,Urgent,2022-05-31,Normal,2057,232,0,4,,,,DISCHARGED -2058,2020-11-06,45704.80291242897,158,Emergency,2020-11-13,Inconclusive,2058,223,4,17,,,,DISCHARGED -2059,2022-11-23,4393.604264030067,440,Emergency,2022-12-01,Inconclusive,2059,481,4,11,,,,DISCHARGED -2059,2020-06-14,2463.007275796864,234,Urgent,2020-07-08,Inconclusive,6407,318,1,11,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -2059,2021-07-14,5942.493531111142,479,Elective,2021-08-06,Abnormal,8232,411,3,20,,,,DISCHARGED -2060,2023-06-11,4592.647390434896,263,Emergency,2023-07-03,Inconclusive,2060,59,4,26,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2061,2019-09-20,47896.26204049533,266,Emergency,2019-10-03,Inconclusive,2061,334,1,25,,,,DISCHARGED -2062,2020-12-11,28348.199914675934,407,Emergency,2020-12-14,Normal,2062,221,1,18,,,,DISCHARGED -2063,2022-01-15,46165.750045048815,117,Elective,2022-02-09,Inconclusive,2063,36,4,8,,,,DISCHARGED -2064,2022-03-19,9903.23897126594,314,Elective,2022-04-16,Normal,2064,476,1,10,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2065,2021-06-15,13242.462452917662,295,Elective,2021-06-16,Inconclusive,2065,277,0,16,,,,DISCHARGED -2065,2021-02-21,35567.087908688714,442,Urgent,2021-03-23,Abnormal,7512,195,0,15,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2066,2022-10-09,48524.95848727584,214,Elective,2022-10-10,Normal,2066,403,4,3,,,,DISCHARGED -2067,2020-12-06,11168.75532876516,394,Emergency,2020-12-24,Normal,2067,351,3,9,,,,DISCHARGED -2068,2022-01-14,24677.399998237463,218,Urgent,2022-02-03,Normal,2068,483,0,21,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2069,2020-12-31,25973.43439934297,164,Emergency,2021-01-01,Inconclusive,2069,241,0,14,,,,DISCHARGED -2070,2018-12-04,32670.46186780801,316,Urgent,2018-12-11,Normal,2070,323,4,24,,,,DISCHARGED -2071,2021-01-16,2559.8303424174137,168,Elective,2021-01-24,Normal,2071,218,2,18,,,,DISCHARGED -2072,2023-06-08,30534.64537201438,354,Urgent,2023-06-18,Normal,2072,191,1,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2073,2021-03-06,16893.29456822989,248,Emergency,2021-04-05,Abnormal,2073,16,0,27,,,,DISCHARGED -2074,2023-02-10,46201.73209791707,207,Emergency,,Inconclusive,2074,11,2,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -2075,2022-09-25,16914.794113676413,162,Elective,2022-10-10,Inconclusive,2075,405,3,22,,,,DISCHARGED -2076,2021-08-04,47836.62063419884,229,Urgent,2021-08-16,Normal,2076,400,2,29,,,,DISCHARGED -2077,2019-12-26,38766.63318687199,236,Urgent,2020-01-24,Abnormal,2077,393,4,4,,,,DISCHARGED -2078,2022-12-09,46465.22968326172,449,Elective,2022-12-15,Abnormal,2078,373,3,10,,,,DISCHARGED -2078,2021-09-16,31926.505122881703,453,Urgent,2021-10-08,Inconclusive,3052,192,3,23,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2079,2022-10-22,48586.78122604569,206,Emergency,2022-10-30,Inconclusive,2079,21,2,4,,,,DISCHARGED -2081,2023-03-06,30149.34788755248,104,Emergency,2023-03-21,Inconclusive,2081,473,4,6,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2082,2020-01-11,23138.25897659856,427,Urgent,2020-02-02,Abnormal,2082,119,0,5,,,,DISCHARGED -2083,2021-05-15,3027.8217962428744,417,Emergency,2021-06-12,Inconclusive,2083,209,2,29,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2084,2020-09-28,41102.94377939528,305,Elective,2020-10-06,Inconclusive,2084,305,0,25,,,,DISCHARGED -2084,2020-11-26,34007.44060822871,342,Emergency,2020-12-16,Normal,6180,269,2,12,,,,DISCHARGED -2085,2022-09-17,42363.4239882424,452,Urgent,2022-10-13,Normal,2085,191,0,1,,,,DISCHARGED -2085,2021-01-18,6485.970306762875,271,Emergency,2021-02-02,Abnormal,9924,174,2,18,,,,DISCHARGED -2086,2020-04-18,25463.780987742743,499,Elective,2020-05-01,Normal,2086,284,3,10,,,,DISCHARGED -2087,2019-11-30,34282.97716556832,487,Elective,2019-12-26,Normal,2087,203,1,26,,,,DISCHARGED -2088,2018-11-03,33690.585342013335,357,Elective,2018-11-07,Abnormal,2088,163,3,19,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2089,2022-02-23,46771.21849161071,223,Elective,2022-03-10,Abnormal,2089,250,0,4,,,,DISCHARGED -2090,2023-01-11,28542.96933360632,255,Emergency,2023-01-26,Normal,2090,226,4,8,,,,DISCHARGED -2091,2022-01-12,24919.01818340537,356,Elective,2022-02-10,Abnormal,2091,435,3,5,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -2092,2019-11-29,44923.26265703136,442,Elective,2019-12-26,Abnormal,2092,380,1,16,,,,DISCHARGED -2092,2023-01-19,16601.87170171211,251,Elective,2023-01-24,Normal,7242,459,0,18,,,,DISCHARGED -2093,2022-05-12,46708.80823788788,142,Urgent,2022-05-26,Abnormal,2093,6,3,22,,,,DISCHARGED -2094,2021-05-27,37079.56782331316,298,Urgent,2021-06-10,Normal,2094,28,2,7,,,,DISCHARGED -2096,2020-07-24,10732.59435232566,456,Elective,2020-07-30,Inconclusive,2096,394,4,6,,,,DISCHARGED -2097,2019-05-23,44174.16773087699,199,Urgent,2019-06-15,Abnormal,2097,32,0,4,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2098,2022-12-13,37826.68147158112,374,Emergency,2022-12-14,Abnormal,2098,133,3,14,,,,DISCHARGED -2099,2019-11-26,45584.49829060876,162,Emergency,2019-12-04,Inconclusive,2099,366,0,9,,,,DISCHARGED -2100,2019-09-12,25856.356275460454,297,Elective,2019-10-06,Normal,2100,78,2,23,,,,DISCHARGED -2101,2023-09-26,38455.99547786433,196,Urgent,2023-09-29,Abnormal,2101,415,1,15,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2102,2023-07-09,40134.479606453664,392,Urgent,2023-08-03,Abnormal,2102,434,3,8,,,,DISCHARGED -2103,2020-07-31,12587.52217060346,106,Urgent,2020-08-15,Normal,2103,458,0,6,,,,DISCHARGED -2104,2019-04-28,7588.420163231811,429,Emergency,2019-05-03,Normal,2104,57,0,10,,,,DISCHARGED -2105,2021-12-06,26929.921355979764,437,Urgent,2021-12-28,Abnormal,2105,470,0,8,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -2106,2022-09-09,9327.259870044523,479,Emergency,2022-09-11,Abnormal,2106,25,1,16,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2107,2023-03-30,32596.973552053438,256,Urgent,,Normal,2107,481,0,29,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",OPEN -2108,2022-11-16,11989.362204519535,486,Urgent,2022-11-18,Normal,2108,429,4,8,,,,DISCHARGED -2109,2020-05-03,34827.815240902244,201,Urgent,2020-05-31,Normal,2109,225,4,2,,,,DISCHARGED -2109,2019-07-30,18790.112311173714,110,Elective,2019-08-28,Normal,2407,284,0,21,,,,DISCHARGED -2110,2019-11-11,32155.997682675246,397,Elective,2019-11-23,Normal,2110,3,4,7,,,,DISCHARGED -2111,2019-12-02,48837.91662444725,346,Emergency,2019-12-07,Normal,2111,464,3,18,,,,DISCHARGED -2112,2022-07-22,38033.32261578057,172,Elective,2022-07-28,Inconclusive,2112,98,4,19,,,,DISCHARGED -2113,2023-10-05,27077.69337474183,139,Urgent,2023-10-30,Normal,2113,396,0,15,,,,DISCHARGED -2115,2020-11-25,45613.74976944374,402,Elective,2020-12-13,Inconclusive,2115,488,2,6,,,,DISCHARGED -2115,2019-04-29,4162.294299482434,117,Emergency,2019-05-14,Inconclusive,3509,38,3,27,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -2115,2023-04-14,13481.843601490198,470,Elective,2023-05-07,Abnormal,6605,270,1,6,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2116,2021-03-17,14480.20800156411,108,Elective,2021-04-16,Normal,2116,374,0,19,,,,DISCHARGED -2117,2023-08-08,22610.05069166719,474,Urgent,2023-08-18,Normal,2117,284,1,24,,,,DISCHARGED -2118,2022-07-20,49041.83712488501,110,Emergency,2022-08-19,Abnormal,2118,156,2,12,,,,DISCHARGED -2119,2023-01-20,44784.72199270345,442,Emergency,,Normal,2119,74,1,2,,,,OPEN -2120,2023-10-13,7684.685521442606,248,Urgent,2023-11-04,Abnormal,2120,371,0,11,,,,DISCHARGED -2121,2021-02-04,34397.71731295817,242,Emergency,2021-02-07,Normal,2121,287,0,23,,,,DISCHARGED -2122,2020-03-20,44738.75152787779,289,Elective,2020-04-05,Normal,2122,129,2,7,,,,DISCHARGED -2123,2020-11-15,45539.99655393264,117,Elective,2020-12-09,Inconclusive,2123,174,0,12,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2124,2019-06-08,7219.30369394389,353,Urgent,2019-06-20,Inconclusive,2124,461,2,19,,,,DISCHARGED -2125,2023-07-23,5274.440716905491,117,Urgent,2023-07-26,Normal,2125,83,2,15,,,,DISCHARGED -2126,2022-08-15,19909.398010864497,154,Urgent,2022-08-22,Inconclusive,2126,21,0,6,,,,DISCHARGED -2127,2019-05-18,40530.53507937405,351,Emergency,2019-06-11,Inconclusive,2127,458,4,3,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -2128,2023-02-10,21243.07467193288,223,Urgent,2023-03-08,Inconclusive,2128,26,2,28,,,,DISCHARGED -2129,2023-07-07,3083.1600740083354,127,Emergency,2023-08-03,Inconclusive,2129,194,0,11,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2130,2021-02-13,32997.127608599854,105,Emergency,2021-02-24,Normal,2130,336,4,16,,,,DISCHARGED -2131,2023-09-16,48777.68007258824,493,Emergency,2023-10-09,Inconclusive,2131,381,2,0,,,,DISCHARGED -2132,2022-11-02,27821.708687409784,448,Elective,2022-11-12,Normal,2132,235,4,29,,,,DISCHARGED -2133,2019-04-15,41220.75412978184,489,Emergency,2019-05-09,Inconclusive,2133,439,3,16,,,,DISCHARGED -2134,2021-04-08,29606.4245184412,260,Emergency,2021-04-29,Normal,2134,91,3,1,,,,DISCHARGED -2135,2023-03-06,13657.607499957252,221,Emergency,2023-03-16,Normal,2135,476,4,5,,,,DISCHARGED -2136,2019-05-12,4358.754081952631,128,Elective,2019-05-26,Normal,2136,20,2,11,,,,DISCHARGED -2137,2023-02-21,8012.236285130733,137,Elective,2023-03-07,Normal,2137,302,0,25,,,,DISCHARGED -2138,2022-02-24,14246.813650252376,232,Urgent,2022-03-14,Inconclusive,2138,463,1,10,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2139,2019-05-04,47300.362049135685,335,Elective,2019-06-03,Normal,2139,356,0,20,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2141,2021-03-17,19438.067002583404,116,Urgent,2021-04-07,Inconclusive,2141,442,1,10,,,,DISCHARGED -2142,2019-05-05,41993.05395013485,136,Elective,2019-06-01,Inconclusive,2142,83,1,17,,,,DISCHARGED -2143,2022-06-16,36167.21869272584,123,Urgent,2022-07-12,Normal,2143,261,2,7,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -2144,2020-04-16,22361.41406399233,254,Emergency,2020-05-07,Normal,2144,146,4,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -2145,2020-09-06,48208.99674501512,263,Emergency,2020-09-25,Inconclusive,2145,440,0,6,,,,DISCHARGED -2146,2023-07-23,17525.474760021036,331,Emergency,2023-07-27,Abnormal,2146,452,4,27,,,,DISCHARGED -2147,2020-10-20,23795.476602545383,416,Urgent,2020-11-13,Normal,2147,386,3,13,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -2148,2022-10-25,37693.909176755216,320,Urgent,2022-11-20,Abnormal,2148,256,2,15,,,,DISCHARGED -2149,2021-01-18,4699.461084400098,122,Emergency,2021-02-03,Inconclusive,2149,57,2,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -2150,2019-06-18,18489.543619802986,106,Urgent,2019-07-15,Normal,2150,379,3,8,,,,DISCHARGED -2151,2022-01-15,16024.907097217285,488,Elective,2022-02-09,Inconclusive,2151,421,0,19,,,,DISCHARGED -2152,2023-04-03,28584.572382521823,260,Urgent,2023-04-17,Inconclusive,2152,14,3,28,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2153,2022-12-02,46986.42214523118,244,Elective,2022-12-11,Abnormal,2153,161,0,22,,,,DISCHARGED -2153,2021-08-30,14040.74378787196,224,Elective,2021-09-22,Inconclusive,2899,444,1,20,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2154,2019-04-15,27866.763666625666,325,Elective,2019-05-15,Abnormal,2154,162,2,15,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2155,2020-01-30,46989.64577927644,429,Emergency,2020-02-01,Normal,2155,319,0,20,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -2156,2021-06-27,10624.533398155232,434,Emergency,2021-07-25,Inconclusive,2156,496,4,18,,,,DISCHARGED -2157,2021-04-06,16327.105345642376,364,Elective,2021-04-27,Normal,2157,280,4,15,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2158,2019-03-09,9935.432220366523,286,Urgent,2019-03-11,Abnormal,2158,279,2,8,,,,DISCHARGED -2158,2020-08-10,41080.77719781172,303,Emergency,2020-08-24,Abnormal,6304,11,3,12,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2159,2020-08-15,8034.445956925054,454,Emergency,2020-08-31,Normal,2159,273,3,25,,,,DISCHARGED -2160,2022-12-03,29295.887722246087,125,Elective,2022-12-28,Abnormal,2160,270,0,4,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2161,2020-04-28,33877.32845187741,301,Urgent,2020-05-05,Inconclusive,2161,491,3,21,,,,DISCHARGED -2162,2021-10-25,41565.46945826818,217,Urgent,2021-11-13,Normal,2162,207,2,18,,,,DISCHARGED -2163,2019-07-15,20720.024952434516,152,Urgent,2019-08-04,Abnormal,2163,26,0,9,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -2164,2022-11-17,30051.834844619694,426,Emergency,2022-12-02,Inconclusive,2164,71,1,6,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2165,2021-03-01,48244.6217501954,470,Elective,2021-03-03,Normal,2165,59,3,8,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2166,2020-08-17,9701.398771828128,328,Elective,2020-08-29,Abnormal,2166,429,3,24,,,,DISCHARGED -2166,2021-07-15,27167.536177824102,389,Urgent,2021-07-19,Abnormal,9647,472,0,13,,,,DISCHARGED -2167,2020-05-31,16318.3748057804,481,Emergency,2020-06-11,Abnormal,2167,144,4,14,,,,DISCHARGED -2168,2023-09-06,31102.403444031337,287,Urgent,2023-09-10,Inconclusive,2168,92,3,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2169,2020-05-30,26491.544721336537,398,Elective,2020-06-05,Normal,2169,308,2,9,,,,DISCHARGED -2170,2019-07-30,45191.83947535334,130,Urgent,2019-08-17,Normal,2170,7,3,13,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2171,2023-02-24,7089.890882975364,451,Emergency,2023-03-20,Inconclusive,2171,78,1,25,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2172,2020-11-29,42689.62507377686,375,Emergency,2020-12-10,Abnormal,2172,26,3,20,,,,DISCHARGED -2173,2021-09-24,9328.425283767998,387,Emergency,2021-10-15,Abnormal,2173,173,4,22,,,,DISCHARGED -2174,2022-11-17,26071.391361872087,449,Urgent,2022-12-12,Inconclusive,2174,49,3,28,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2175,2022-05-30,48841.62507533279,108,Urgent,2022-06-19,Abnormal,2175,499,0,11,,,,DISCHARGED -2175,2020-11-20,34231.802301135336,270,Elective,2020-12-07,Normal,7474,198,3,27,,,,DISCHARGED -2176,2019-04-02,38039.931417765954,298,Emergency,2019-05-01,Abnormal,2176,386,4,28,,,,DISCHARGED -2177,2023-01-29,36420.171145492684,237,Urgent,2023-02-24,Inconclusive,2177,348,0,18,,,,DISCHARGED -2178,2020-10-14,33442.613173148435,139,Emergency,2020-11-08,Abnormal,2178,447,2,5,,,,DISCHARGED -2179,2020-01-07,37510.40832339441,495,Elective,2020-02-01,Inconclusive,2179,427,0,11,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2181,2020-01-05,3558.2116770570674,253,Emergency,2020-01-11,Abnormal,2181,180,1,23,,,,DISCHARGED -2182,2022-05-01,20375.112495147718,224,Urgent,2022-05-04,Abnormal,2182,23,0,12,,,,DISCHARGED -2183,2021-12-06,16435.53529602935,351,Emergency,2021-12-30,Abnormal,2183,315,2,7,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2183,2019-04-12,4497.485582304684,302,Emergency,2019-05-12,Inconclusive,6609,377,3,15,,,,DISCHARGED -2184,2021-09-01,19007.95482455334,336,Emergency,2021-09-26,Inconclusive,2184,386,0,1,,,,DISCHARGED -2184,2023-07-03,1604.5156094182737,217,Emergency,2023-08-01,Abnormal,5292,403,0,21,,,,DISCHARGED -2185,2023-03-16,21034.30127545525,254,Elective,,Abnormal,2185,45,0,6,,,,OPEN -2186,2021-03-04,6510.634653794687,367,Emergency,2021-03-25,Abnormal,2186,14,0,11,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2187,2021-09-07,21459.08895558849,348,Elective,2021-09-11,Abnormal,2187,152,2,6,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2188,2019-03-29,28419.730877250546,114,Urgent,2019-04-09,Inconclusive,2188,221,4,18,,,,DISCHARGED -2189,2020-05-28,39880.93402704448,498,Elective,2020-06-06,Abnormal,2189,205,4,13,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2190,2021-11-11,11147.440158012116,162,Elective,2021-12-04,Abnormal,2190,454,0,29,,,,DISCHARGED -2191,2022-07-27,6805.932821423738,199,Elective,2022-08-02,Abnormal,2191,272,2,8,,,,DISCHARGED -2192,2021-07-17,13055.20938644427,172,Urgent,2021-07-19,Inconclusive,2192,381,2,17,,,,DISCHARGED -2193,2022-04-14,29291.418771579654,234,Elective,2022-04-15,Inconclusive,2193,235,0,10,,,,DISCHARGED -2194,2020-10-21,8550.233798177182,188,Elective,2020-11-13,Normal,2194,339,1,15,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2195,2020-08-23,10829.294133240646,334,Emergency,2020-08-24,Inconclusive,2195,227,0,18,,,,DISCHARGED -2196,2023-02-10,13016.534179786677,272,Emergency,2023-03-11,Abnormal,2196,8,1,10,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2197,2020-04-29,48277.99264983504,463,Elective,2020-05-14,Abnormal,2197,165,0,17,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2198,2020-04-01,18012.555199870225,388,Emergency,2020-04-04,Abnormal,2198,431,1,10,,,,DISCHARGED -2199,2019-05-23,19935.255593786685,477,Urgent,2019-06-18,Abnormal,2199,443,1,24,,,,DISCHARGED -2200,2023-10-24,8622.922700028972,274,Emergency,2023-11-13,Normal,2200,318,0,3,,,,DISCHARGED -2201,2023-03-17,40845.32373768378,485,Elective,2023-04-03,Inconclusive,2201,213,1,17,,,,DISCHARGED -2202,2023-01-22,45676.41931605696,220,Urgent,2023-02-08,Inconclusive,2202,116,3,18,,,,DISCHARGED -2203,2022-02-27,45509.01703294312,177,Elective,2022-03-12,Abnormal,2203,385,4,12,,,,DISCHARGED -2204,2023-10-19,14182.60134285872,393,Urgent,,Normal,2204,343,2,3,,,,OPEN -2205,2021-03-11,31712.37366238892,290,Urgent,2021-04-07,Normal,2205,71,1,29,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2206,2022-12-31,5873.404176707509,406,Emergency,2023-01-05,Abnormal,2206,394,1,9,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2207,2020-04-16,41926.89350820833,122,Urgent,2020-05-08,Inconclusive,2207,63,2,28,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -2208,2023-10-25,28067.00809181435,227,Urgent,2023-11-02,Inconclusive,2208,204,1,21,,,,DISCHARGED -2209,2019-11-10,26891.8236745223,134,Elective,2019-11-19,Normal,2209,208,2,4,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -2210,2020-01-03,2618.0554336839377,499,Urgent,2020-01-11,Abnormal,2210,71,0,2,,,,DISCHARGED -2210,2019-02-17,13536.247320570566,401,Elective,2019-03-01,Abnormal,3817,276,3,15,,,,DISCHARGED -2210,2019-12-08,14748.686149267092,246,Elective,2019-12-31,Inconclusive,8639,273,3,25,,,,DISCHARGED -2211,2020-01-18,15533.986929155004,376,Emergency,2020-02-09,Normal,2211,477,4,7,,,,DISCHARGED -2212,2021-11-30,47487.60674557146,481,Emergency,2021-12-06,Normal,2212,319,1,23,,,,DISCHARGED -2213,2020-08-23,2232.198069361695,425,Emergency,2020-09-13,Abnormal,2213,337,4,6,,,,DISCHARGED -2214,2021-01-20,39010.29434319447,400,Elective,2021-02-18,Abnormal,2214,365,0,18,,,,DISCHARGED -2215,2023-07-23,35705.871387620224,305,Elective,2023-08-10,Normal,2215,494,3,13,,,,DISCHARGED -2216,2023-03-31,37633.68565942969,105,Urgent,2023-04-12,Abnormal,2216,94,0,14,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2217,2020-04-21,12504.283118633872,390,Urgent,2020-05-03,Normal,2217,165,0,16,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -2218,2021-03-19,22263.70051785285,192,Urgent,2021-03-23,Abnormal,2218,31,1,20,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2219,2018-12-05,19855.806653142357,338,Emergency,2018-12-29,Abnormal,2219,10,0,0,,,,DISCHARGED -2220,2021-02-06,49843.46711295076,240,Emergency,2021-03-03,Abnormal,2220,300,3,5,,,,DISCHARGED -2221,2018-12-27,39058.03104473268,386,Emergency,2019-01-09,Inconclusive,2221,216,4,26,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2222,2022-08-02,15477.941903278392,282,Elective,2022-08-06,Abnormal,2222,288,3,22,,,,DISCHARGED -2223,2023-05-12,29603.251983868628,455,Urgent,,Abnormal,2223,101,1,14,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,OPEN -2224,2020-11-30,46371.328836617104,123,Urgent,2020-12-16,Inconclusive,2224,424,3,11,,,,DISCHARGED -2224,2022-04-27,8335.993583094772,286,Urgent,2022-05-16,Inconclusive,9255,391,2,20,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -2225,2023-01-20,37770.92297524949,337,Emergency,,Normal,2225,266,4,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -2226,2019-10-16,49108.90302824396,257,Elective,2019-11-08,Inconclusive,2226,213,2,1,,,,DISCHARGED -2227,2021-01-17,36135.620638551576,112,Urgent,2021-02-09,Inconclusive,2227,178,2,4,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -2228,2021-11-27,21432.51922344282,180,Urgent,2021-12-15,Abnormal,2228,87,1,8,,,,DISCHARGED -2229,2023-07-08,43399.97889794341,129,Elective,2023-07-10,Normal,2229,40,0,19,,,,DISCHARGED -2230,2019-11-09,45798.93970582484,281,Urgent,2019-11-16,Normal,2230,400,2,13,,,,DISCHARGED -2231,2020-05-27,37530.24466016462,349,Urgent,2020-05-29,Abnormal,2231,75,3,17,,,,DISCHARGED -2232,2020-09-08,40272.61746946961,134,Elective,2020-10-03,Abnormal,2232,376,0,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -2233,2020-05-30,22963.611941278225,157,Emergency,2020-06-07,Inconclusive,2233,45,3,21,,,,DISCHARGED -2234,2022-08-12,6879.395005204989,447,Urgent,2022-08-16,Abnormal,2234,159,3,7,,,,DISCHARGED -2235,2021-08-10,16438.247326267134,188,Urgent,2021-09-03,Normal,2235,462,0,1,,,,DISCHARGED -2236,2021-06-10,48635.95469476706,184,Emergency,2021-06-15,Normal,2236,79,0,8,,,,DISCHARGED -2237,2022-04-11,32385.32845907817,207,Urgent,2022-04-16,Abnormal,2237,309,3,6,,,,DISCHARGED -2238,2019-12-13,30222.777507948547,269,Urgent,2019-12-27,Inconclusive,2238,85,1,29,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2239,2022-10-05,1004.4168971245352,102,Elective,2022-11-04,Abnormal,2239,91,4,28,,,,DISCHARGED -2240,2021-04-26,28086.62867948905,165,Emergency,2021-05-04,Normal,2240,147,4,17,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2241,2020-04-10,17634.373636304907,325,Elective,2020-04-14,Normal,2241,160,1,26,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2242,2020-02-21,10740.62405697596,490,Urgent,2020-02-28,Abnormal,2242,201,0,15,,,,DISCHARGED -2243,2022-04-05,26653.66414302477,175,Urgent,2022-04-07,Normal,2243,423,3,20,,,,DISCHARGED -2244,2021-04-22,14592.356305414123,316,Urgent,2021-05-20,Inconclusive,2244,415,4,4,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -2245,2022-12-27,18173.04510327892,245,Urgent,2023-01-24,Abnormal,2245,241,3,22,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -2245,2022-07-05,39230.21347524349,286,Urgent,2022-08-01,Inconclusive,5284,352,1,28,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2246,2019-12-19,46916.54683516452,477,Urgent,2019-12-21,Abnormal,2246,1,3,14,,,,DISCHARGED -2247,2023-08-18,10151.614679361466,240,Urgent,2023-08-20,Abnormal,2247,224,1,4,,,,DISCHARGED -2248,2021-11-30,13258.570331758508,348,Elective,2021-12-12,Normal,2248,288,0,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -2249,2021-06-19,4067.955799860332,390,Urgent,2021-06-30,Abnormal,2249,232,1,29,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2249,2023-04-08,16229.170609028886,320,Emergency,2023-04-28,Inconclusive,3379,460,1,21,,,,DISCHARGED -2249,2022-01-09,33857.486093274936,293,Urgent,2022-01-30,Abnormal,7263,413,4,13,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2250,2019-10-10,26557.291356562248,143,Urgent,2019-10-15,Inconclusive,2250,416,3,24,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -2251,2021-08-03,10088.441961099885,447,Urgent,2021-08-18,Inconclusive,2251,76,4,18,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2252,2021-09-19,49936.073748394425,423,Elective,2021-09-21,Abnormal,2252,115,2,2,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -2253,2021-12-29,13837.49574373598,300,Emergency,2022-01-11,Abnormal,2253,153,1,23,,,,DISCHARGED -2254,2021-12-23,36666.61381452589,210,Elective,2022-01-04,Abnormal,2254,405,2,9,,,,DISCHARGED -2255,2020-09-07,43299.943085823,499,Emergency,2020-09-18,Abnormal,2255,102,4,27,,,,DISCHARGED -2255,2021-11-16,13610.31855717903,415,Emergency,2021-11-30,Inconclusive,6292,193,3,5,,,,DISCHARGED -2256,2023-06-29,6207.834879564895,235,Elective,,Abnormal,2256,165,4,27,,,,OPEN -2257,2020-09-21,25083.79189395908,259,Urgent,2020-10-18,Inconclusive,2257,358,3,25,,,,DISCHARGED -2258,2021-08-12,27846.01598254566,477,Urgent,2021-08-15,Inconclusive,2258,89,3,2,,,,DISCHARGED -2259,2019-11-11,10204.894507932186,386,Emergency,2019-12-04,Normal,2259,173,0,1,,,,DISCHARGED -2259,2022-05-12,36353.37927751284,158,Elective,2022-06-02,Abnormal,7658,121,1,12,,,,DISCHARGED -2260,2020-04-12,21081.51233583161,422,Emergency,2020-04-30,Normal,2260,497,4,17,,,,DISCHARGED -2261,2019-07-07,3041.931672303549,427,Emergency,2019-08-04,Normal,2261,142,3,1,,,,DISCHARGED -2262,2019-05-25,44575.62574675339,390,Elective,2019-06-03,Normal,2262,481,4,14,,,,DISCHARGED -2263,2022-05-29,5738.5177622039255,197,Elective,2022-06-27,Abnormal,2263,105,4,4,,,,DISCHARGED -2264,2022-12-01,29155.229941151385,295,Elective,2022-12-23,Abnormal,2264,374,3,14,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2265,2020-09-30,14104.90520641113,246,Elective,2020-10-11,Inconclusive,2265,427,2,27,,,,DISCHARGED -2266,2023-04-06,13936.745716455896,182,Urgent,,Inconclusive,2266,304,1,20,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -2267,2019-11-09,36208.42347482683,311,Elective,2019-11-12,Normal,2267,359,1,16,,,,DISCHARGED -2268,2021-10-09,33695.97320850632,346,Urgent,2021-11-06,Normal,2268,458,0,1,,,,DISCHARGED -2269,2022-03-18,39605.76515552316,439,Urgent,2022-04-14,Normal,2269,316,0,17,,,,DISCHARGED -2270,2023-02-14,1663.0484002373282,197,Urgent,2023-03-07,Inconclusive,2270,450,0,14,,,,DISCHARGED -2271,2022-02-13,38618.586930833095,144,Elective,2022-03-09,Abnormal,2271,122,1,19,,,,DISCHARGED -2271,2023-04-22,36371.68331885953,333,Urgent,2023-04-25,Inconclusive,8982,389,2,22,,,,DISCHARGED -2272,2019-04-23,6345.96900233399,330,Urgent,2019-05-20,Normal,2272,8,1,2,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2273,2021-05-16,1469.3568232657483,262,Elective,2021-05-23,Abnormal,2273,261,1,4,,,,DISCHARGED -2274,2021-03-12,48786.20598923016,396,Emergency,2021-04-11,Inconclusive,2274,72,1,10,,,,DISCHARGED -2275,2023-01-28,32013.08394283032,347,Urgent,2023-02-09,Inconclusive,2275,358,1,8,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -2276,2022-11-22,33993.736166348615,466,Urgent,2022-12-06,Inconclusive,2276,222,2,4,,,,DISCHARGED -2276,2020-03-05,47211.79630226493,131,Urgent,2020-03-18,Inconclusive,6118,415,0,24,,,,DISCHARGED -2277,2021-01-01,19094.737388529287,365,Elective,2021-01-19,Abnormal,2277,40,4,0,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2278,2022-05-26,14345.93278636867,244,Elective,2022-06-03,Abnormal,2278,369,0,24,,,,DISCHARGED -2279,2020-08-30,2359.1499409367643,122,Emergency,2020-09-23,Inconclusive,2279,203,0,13,,,,DISCHARGED -2280,2022-08-05,36786.38483100933,329,Urgent,2022-08-21,Abnormal,2280,263,4,4,,,,DISCHARGED -2281,2023-01-16,6711.086768488117,448,Urgent,2023-02-11,Abnormal,2281,327,1,7,,,,DISCHARGED -2283,2021-11-21,2633.189003094448,160,Emergency,2021-12-02,Inconclusive,2283,177,2,20,,,,DISCHARGED -2284,2019-01-07,30208.612385383854,414,Emergency,2019-01-22,Normal,2284,347,2,13,,,,DISCHARGED -2285,2023-04-06,18223.34113885301,403,Elective,2023-04-22,Abnormal,2285,317,0,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2286,2020-11-22,16667.598315013645,386,Elective,2020-11-30,Inconclusive,2286,83,4,15,,,,DISCHARGED -2287,2023-08-01,3568.1713752587416,387,Elective,2023-08-03,Abnormal,2287,317,3,5,,,,DISCHARGED -2288,2019-04-24,39731.42706785454,239,Urgent,2019-05-10,Abnormal,2288,110,1,7,,,,DISCHARGED -2289,2022-05-21,20839.647840054804,255,Emergency,2022-06-18,Abnormal,2289,250,0,1,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2290,2022-02-01,19975.10973788638,169,Urgent,2022-02-20,Inconclusive,2290,382,2,18,,,,DISCHARGED -2291,2022-04-22,28882.73765923182,181,Emergency,2022-05-21,Inconclusive,2291,6,4,26,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -2292,2019-11-11,7373.567584956037,130,Urgent,2019-11-24,Normal,2292,458,4,8,,,,DISCHARGED -2293,2022-03-16,10959.395742733132,398,Urgent,2022-03-20,Normal,2293,83,0,4,,,,DISCHARGED -2294,2020-04-06,45917.33018818768,499,Urgent,2020-04-11,Inconclusive,2294,207,3,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -2295,2021-05-21,16075.748025604604,424,Emergency,2021-06-08,Abnormal,2295,387,2,24,,,,DISCHARGED -2296,2020-11-03,15263.9813639346,318,Elective,2020-11-27,Abnormal,2296,389,0,25,,,,DISCHARGED -2297,2023-01-25,10317.887835533937,365,Elective,,Inconclusive,2297,313,3,18,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",OPEN -2298,2022-04-27,16342.055683539633,165,Emergency,2022-05-08,Inconclusive,2298,21,4,29,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2299,2022-05-19,4712.685522762482,388,Emergency,2022-06-13,Inconclusive,2299,409,1,3,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2300,2020-05-16,43718.4297223795,219,Urgent,2020-05-28,Normal,2300,382,2,15,,,,DISCHARGED -2301,2019-02-16,25170.352557946007,228,Urgent,2019-03-11,Inconclusive,2301,2,2,15,,,,DISCHARGED -2302,2021-05-01,33119.394464649544,208,Elective,2021-05-29,Inconclusive,2302,126,3,15,,,,DISCHARGED -2303,2020-10-04,16200.410932547786,407,Elective,2020-10-10,Normal,2303,296,0,6,,,,DISCHARGED -2304,2021-08-10,25930.072373980896,490,Urgent,2021-08-30,Abnormal,2304,187,4,17,,,,DISCHARGED -2305,2023-07-06,2861.193169953277,367,Elective,2023-07-24,Abnormal,2305,361,3,23,,,,DISCHARGED -2306,2020-04-22,28932.177878259987,323,Urgent,2020-05-08,Normal,2306,13,1,20,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2307,2023-08-25,11428.0432828395,346,Urgent,2023-09-08,Inconclusive,2307,458,1,0,,,,DISCHARGED -2308,2022-07-06,16791.356543482056,316,Emergency,2022-07-11,Abnormal,2308,465,1,2,,,,DISCHARGED -2309,2022-12-23,30994.68289081718,396,Urgent,2023-01-16,Normal,2309,11,3,24,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2310,2021-04-30,44373.26861025433,427,Emergency,2021-05-10,Inconclusive,2310,86,4,20,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2311,2020-09-17,34201.51521616795,118,Emergency,2020-09-27,Normal,2311,11,2,7,,,,DISCHARGED -2312,2019-10-25,16806.53914284886,460,Emergency,2019-11-08,Abnormal,2312,396,0,0,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2313,2020-07-14,17930.808495119258,498,Emergency,2020-07-29,Abnormal,2313,24,2,29,,,,DISCHARGED -2314,2021-12-30,3884.099762499568,104,Urgent,2022-01-21,Inconclusive,2314,300,4,6,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2315,2021-09-08,46998.90423250482,321,Elective,2021-09-24,Abnormal,2315,242,2,6,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -2316,2023-05-11,48959.71386836236,405,Elective,,Inconclusive,2316,121,3,7,,,,OPEN -2317,2019-02-18,6572.955455675588,362,Emergency,2019-02-27,Inconclusive,2317,146,1,18,,,,DISCHARGED -2318,2020-11-11,18673.30199706926,281,Urgent,2020-11-24,Inconclusive,2318,54,4,16,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -2319,2022-07-11,35275.92374896492,140,Urgent,2022-07-17,Normal,2319,237,4,10,,,,DISCHARGED -2320,2023-06-15,1118.997432630481,283,Urgent,2023-06-24,Inconclusive,2320,355,2,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -2321,2021-08-26,28491.069181388608,143,Urgent,2021-09-04,Normal,2321,172,3,8,,,,DISCHARGED -2322,2020-10-11,41057.71919588235,374,Emergency,2020-11-03,Inconclusive,2322,391,2,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2323,2019-12-21,29357.987181561923,216,Elective,2020-01-14,Abnormal,2323,220,2,10,,,,DISCHARGED -2324,2021-08-05,11837.898342336484,396,Urgent,2021-08-17,Abnormal,2324,118,4,5,,,,DISCHARGED -2325,2018-11-15,12093.477203602828,383,Elective,2018-11-20,Abnormal,2325,308,2,8,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2327,2020-02-05,25694.422324704847,432,Emergency,2020-02-10,Inconclusive,2327,182,1,29,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -2328,2022-10-24,30641.502934203352,464,Emergency,2022-11-10,Normal,2328,287,2,17,,,,DISCHARGED -2328,2022-01-31,4355.584887515309,358,Urgent,2022-02-03,Abnormal,5179,306,1,19,,,,DISCHARGED -2328,2020-07-12,40922.66596426085,374,Emergency,2020-08-03,Abnormal,9889,299,4,1,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2329,2021-10-25,1150.0385412114915,210,Emergency,2021-10-31,Abnormal,2329,81,3,3,,,,DISCHARGED -2329,2020-06-19,43307.802870540574,270,Elective,2020-07-06,Inconclusive,7297,453,1,17,,,,DISCHARGED -2330,2023-03-15,47530.95681156473,409,Elective,2023-03-26,Abnormal,2330,401,3,27,,,,DISCHARGED -2331,2022-09-12,39608.70209810854,142,Urgent,2022-09-21,Abnormal,2331,210,3,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2332,2022-10-04,42851.17690394441,302,Emergency,2022-10-19,Inconclusive,2332,149,1,10,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -2333,2021-04-15,45730.30140913316,213,Urgent,2021-05-02,Normal,2333,36,4,2,,,,DISCHARGED -2334,2021-12-05,4571.611661079727,194,Urgent,2021-12-23,Inconclusive,2334,351,0,7,,,,DISCHARGED -2335,2019-10-09,25721.31443907016,476,Emergency,2019-10-30,Inconclusive,2335,311,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -2336,2020-09-09,30864.42954409565,307,Emergency,2020-10-03,Inconclusive,2336,360,3,19,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2336,2023-07-08,38285.36347317979,145,Emergency,2023-07-22,Abnormal,6027,58,4,20,,,,DISCHARGED -2337,2018-12-02,14701.08535879573,198,Elective,2018-12-21,Inconclusive,2337,130,4,21,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2338,2021-08-02,18208.46143394193,341,Elective,2021-08-13,Normal,2338,411,2,21,,,,DISCHARGED -2339,2020-10-14,43043.98520400591,429,Urgent,2020-10-26,Normal,2339,201,4,4,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2340,2023-05-17,11140.941341541358,424,Urgent,2023-05-24,Normal,2340,242,3,27,,,,DISCHARGED -2341,2019-02-15,5194.221904638795,218,Urgent,2019-02-22,Normal,2341,34,1,10,,,,DISCHARGED -2342,2022-07-25,45406.158712173776,474,Emergency,2022-08-04,Normal,2342,444,0,11,,,,DISCHARGED -2344,2019-07-22,43980.19100267912,261,Urgent,2019-07-25,Inconclusive,2344,92,2,21,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -2345,2021-07-31,49038.78501409282,101,Emergency,2021-08-19,Inconclusive,2345,437,1,8,,,,DISCHARGED -2346,2022-08-29,41605.84629859976,464,Urgent,2022-09-17,Normal,2346,446,0,20,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2347,2021-07-17,46472.464608285765,342,Emergency,2021-07-28,Abnormal,2347,206,0,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2348,2019-04-21,24875.20478551069,153,Emergency,2019-04-24,Inconclusive,2348,352,0,21,,,,DISCHARGED -2349,2022-10-08,40118.65938226198,266,Elective,2022-10-26,Abnormal,2349,390,1,19,,,,DISCHARGED -2350,2018-12-14,45298.38118329326,219,Emergency,2018-12-24,Normal,2350,331,2,28,,,,DISCHARGED -2351,2021-09-30,11573.046617163329,457,Elective,2021-10-27,Normal,2351,304,2,2,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2352,2019-04-06,9358.753378174602,292,Emergency,2019-04-14,Inconclusive,2352,349,0,12,,,,DISCHARGED -2353,2021-08-13,22397.464256220595,333,Emergency,2021-09-04,Inconclusive,2353,212,1,27,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -2354,2021-05-16,24258.90963660196,146,Elective,2021-05-27,Abnormal,2354,158,0,21,,,,DISCHARGED -2355,2018-12-08,23746.080450451056,386,Elective,2018-12-31,Abnormal,2355,441,4,10,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -2356,2023-05-12,26765.097634779537,210,Urgent,2023-05-20,Normal,2356,444,2,10,,,,DISCHARGED -2357,2020-07-12,38202.82923434137,390,Urgent,2020-08-08,Inconclusive,2357,23,3,20,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2358,2022-08-14,47777.21505946255,432,Emergency,2022-09-09,Normal,2358,403,0,19,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2359,2019-03-11,20929.38642144212,189,Emergency,2019-03-27,Inconclusive,2359,292,4,20,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2360,2022-04-27,46271.862132410766,331,Elective,2022-05-25,Normal,2360,3,2,6,,,,DISCHARGED -2361,2022-07-08,38515.42563814221,492,Urgent,2022-07-22,Inconclusive,2361,219,1,16,,,,DISCHARGED -2362,2019-12-15,35294.06997299388,435,Urgent,2019-12-23,Abnormal,2362,363,2,15,,,,DISCHARGED -2363,2021-10-10,14939.983172651551,124,Elective,2021-10-18,Inconclusive,2363,381,1,13,,,,DISCHARGED -2364,2019-07-20,26548.300531705896,346,Urgent,2019-08-15,Abnormal,2364,19,1,0,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2365,2019-11-05,33998.31629916556,150,Elective,2019-12-03,Inconclusive,2365,443,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2366,2022-04-18,17851.783001176973,495,Elective,2022-04-23,Abnormal,2366,151,0,12,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -2367,2022-08-30,31822.97412474739,373,Emergency,2022-09-09,Inconclusive,2367,49,2,0,,,,DISCHARGED -2368,2018-11-11,5650.422298570675,269,Emergency,2018-11-26,Inconclusive,2368,176,4,1,,,,DISCHARGED -2369,2020-10-13,44765.58716091066,115,Emergency,2020-10-24,Inconclusive,2369,434,2,8,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2370,2020-01-24,31154.085244403264,133,Emergency,2020-02-17,Inconclusive,2370,95,3,12,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -2371,2022-02-15,41189.99688014055,233,Elective,2022-02-20,Normal,2371,104,1,4,,,,DISCHARGED -2372,2022-06-12,24410.65050679472,172,Urgent,2022-06-16,Abnormal,2372,419,1,29,,,,DISCHARGED -2373,2019-04-28,4518.748954945522,286,Urgent,2019-05-25,Normal,2373,249,0,8,,,,DISCHARGED -2374,2020-10-14,2414.020915480637,218,Urgent,2020-10-20,Inconclusive,2374,116,4,12,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2375,2020-12-19,24941.410274328853,419,Urgent,2021-01-03,Abnormal,2375,353,0,4,,,,DISCHARGED -2376,2020-06-01,32562.70351950048,212,Emergency,2020-06-07,Normal,2376,227,3,14,,,,DISCHARGED -2377,2022-09-05,41347.98857123617,276,Urgent,2022-09-08,Inconclusive,2377,65,2,29,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -2378,2023-08-15,39553.32456079616,278,Elective,2023-08-25,Abnormal,2378,334,2,6,,,,DISCHARGED -2379,2022-07-18,19755.373031721934,402,Emergency,2022-07-29,Normal,2379,417,4,13,,,,DISCHARGED -2380,2020-05-02,37531.703847054814,183,Elective,2020-05-05,Inconclusive,2380,419,0,29,,,,DISCHARGED -2381,2021-07-05,19901.46012085634,154,Urgent,2021-08-01,Inconclusive,2381,261,0,15,,,,DISCHARGED -2381,2018-12-25,13286.217132280082,249,Elective,2019-01-22,Inconclusive,3726,294,3,5,,,,DISCHARGED -2381,2022-04-03,11936.684518157424,225,Elective,2022-04-17,Abnormal,9410,425,2,1,,,,DISCHARGED -2382,2019-12-12,15475.123417755798,317,Emergency,2019-12-17,Normal,2382,242,0,15,,,,DISCHARGED -2383,2021-05-23,4253.658485597198,230,Urgent,2021-06-12,Inconclusive,2383,370,4,18,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2384,2018-11-06,32160.31232827805,333,Elective,2018-11-21,Abnormal,2384,185,2,4,,,,DISCHARGED -2385,2021-12-20,30200.854989668474,171,Emergency,2022-01-06,Abnormal,2385,245,3,3,,,,DISCHARGED -2386,2020-08-06,43652.54938453201,322,Urgent,2020-08-29,Inconclusive,2386,124,4,13,,,,DISCHARGED -2387,2019-06-27,3695.774905599485,335,Urgent,2019-07-25,Abnormal,2387,267,1,26,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2388,2019-03-20,36441.792541175215,146,Emergency,2019-04-13,Normal,2388,130,3,5,,,,DISCHARGED -2389,2019-04-14,22599.918354897974,180,Emergency,2019-04-24,Abnormal,2389,236,4,7,,,,DISCHARGED -2390,2023-04-22,3841.4445514061263,265,Urgent,,Abnormal,2390,17,0,23,,,,OPEN -2391,2023-10-11,23239.465338603477,384,Elective,2023-10-24,Inconclusive,2391,39,1,2,,,,DISCHARGED -2392,2020-01-25,21155.17101002852,375,Emergency,2020-02-24,Inconclusive,2392,20,3,3,,,,DISCHARGED -2393,2022-06-30,28782.55631491791,237,Elective,2022-07-12,Normal,2393,398,0,0,,,,DISCHARGED -2394,2021-12-12,48724.403799461856,309,Elective,2021-12-25,Inconclusive,2394,224,1,1,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2395,2019-08-29,21231.60183244362,448,Emergency,2019-09-04,Normal,2395,354,2,12,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2396,2019-04-04,48265.43167528375,120,Urgent,2019-05-02,Abnormal,2396,281,0,8,,,,DISCHARGED -2397,2022-12-16,30971.332011789167,181,Emergency,2022-12-17,Abnormal,2397,7,4,11,,,,DISCHARGED -2398,2019-08-28,29508.544951269727,301,Elective,2019-09-13,Normal,2398,99,3,9,,,,DISCHARGED -2399,2021-04-03,35239.642723172175,139,Urgent,2021-04-09,Abnormal,2399,239,1,9,,,,DISCHARGED -2400,2023-08-16,18718.386094436544,175,Emergency,2023-09-02,Inconclusive,2400,477,0,17,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2400,2023-09-26,7060.340799098249,391,Urgent,2023-10-12,Inconclusive,3538,86,2,11,,,,DISCHARGED -2401,2022-03-14,5958.399674826673,329,Urgent,2022-03-26,Abnormal,2401,297,3,21,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2402,2020-10-23,26235.62790564147,348,Emergency,2020-11-13,Normal,2402,427,3,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2403,2022-01-22,15019.554181198337,431,Elective,2022-02-12,Normal,2403,13,0,15,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2404,2019-04-12,21708.336790396603,455,Emergency,2019-04-27,Abnormal,2404,333,2,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2405,2022-11-13,9746.567052411929,310,Emergency,2022-11-22,Abnormal,2405,1,1,5,,,,DISCHARGED -2406,2021-10-08,48205.951813282685,121,Elective,2021-10-25,Normal,2406,374,0,23,,,,DISCHARGED -2409,2022-12-27,31329.855277068917,155,Urgent,2023-01-17,Abnormal,2409,292,1,24,,,,DISCHARGED -2410,2021-08-04,47936.2800005293,395,Elective,2021-08-16,Abnormal,2410,324,3,23,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2411,2023-10-15,19260.66177930895,393,Elective,2023-10-22,Abnormal,2411,421,1,20,,,,DISCHARGED -2412,2022-07-10,47777.3761609721,185,Urgent,2022-07-14,Inconclusive,2412,492,2,23,,,,DISCHARGED -2413,2020-12-02,28971.34179109367,367,Emergency,2020-12-24,Normal,2413,40,4,9,,,,DISCHARGED -2414,2019-10-17,26390.525806142625,478,Elective,2019-11-13,Inconclusive,2414,317,2,14,,,,DISCHARGED -2415,2022-04-02,3907.408582108694,399,Elective,2022-04-28,Inconclusive,2415,315,1,25,,,,DISCHARGED -2416,2022-05-01,45860.2366883881,284,Urgent,2022-05-15,Normal,2416,380,0,8,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2417,2019-12-14,36706.498065552645,463,Emergency,2019-12-19,Abnormal,2417,110,3,29,,,,DISCHARGED -2418,2022-09-26,42697.14994896471,236,Elective,2022-10-05,Abnormal,2418,13,4,23,,,,DISCHARGED -2419,2020-02-23,40329.82331813814,189,Emergency,2020-03-01,Normal,2419,230,0,1,,,,DISCHARGED -2420,2021-11-07,19474.37857921707,275,Urgent,2021-12-06,Abnormal,2420,472,0,17,,,,DISCHARGED -2421,2022-06-16,41513.49610937837,259,Elective,2022-07-15,Normal,2421,83,2,11,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2421,2019-06-09,13969.259804359022,442,Emergency,2019-07-03,Normal,5518,129,1,2,,,,DISCHARGED -2422,2019-11-18,45186.29949207065,345,Emergency,2019-12-09,Inconclusive,2422,230,2,6,,,,DISCHARGED -2423,2022-10-13,41920.69500328894,369,Urgent,2022-11-07,Abnormal,2423,325,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2424,2019-06-07,8839.557139021788,257,Emergency,2019-06-09,Abnormal,2424,144,2,7,,,,DISCHARGED -2425,2018-11-21,45789.5706959931,123,Elective,2018-12-11,Abnormal,2425,378,0,24,,,,DISCHARGED -2426,2023-02-17,23437.707981805444,477,Elective,2023-03-12,Inconclusive,2426,344,3,5,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2427,2022-12-22,30037.19193716713,305,Emergency,2023-01-04,Inconclusive,2427,27,1,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -2428,2020-01-06,20629.109799307986,169,Emergency,2020-01-24,Normal,2428,65,4,13,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2429,2022-05-20,16590.439272803203,313,Urgent,2022-06-04,Abnormal,2429,162,4,15,,,,DISCHARGED -2430,2020-06-10,32071.67937736797,140,Elective,2020-07-02,Inconclusive,2430,228,0,27,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2431,2022-06-22,11013.209220994297,330,Emergency,2022-07-01,Inconclusive,2431,260,2,15,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2432,2019-03-18,16924.127913348588,205,Urgent,2019-03-24,Inconclusive,2432,448,2,3,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2433,2023-07-13,14742.926042628931,497,Elective,2023-07-28,Inconclusive,2433,423,0,28,,,,DISCHARGED -2434,2019-05-31,11245.848532158388,246,Elective,2019-06-19,Inconclusive,2434,459,4,5,,,,DISCHARGED -2434,2021-10-03,34128.92877588977,338,Emergency,2021-10-07,Inconclusive,3626,439,4,14,,,,DISCHARGED -2435,2019-06-18,5018.831061409541,356,Elective,2019-07-12,Inconclusive,2435,163,2,27,,,,DISCHARGED -2436,2019-09-26,2241.951751163587,178,Urgent,2019-10-08,Inconclusive,2436,300,1,21,,,,DISCHARGED -2437,2022-03-13,6371.920728262035,310,Urgent,2022-04-11,Normal,2437,406,3,7,,,,DISCHARGED -2438,2019-12-15,40145.24000138376,117,Emergency,2019-12-17,Normal,2438,302,1,0,,,,DISCHARGED -2439,2019-05-14,39839.63860765666,422,Emergency,2019-06-13,Abnormal,2439,286,4,12,,,,DISCHARGED -2440,2023-08-09,42673.708187137694,435,Elective,2023-09-07,Inconclusive,2440,394,1,26,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2441,2023-03-13,10830.14210525292,275,Elective,2023-04-08,Inconclusive,2441,9,3,17,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -2442,2019-02-12,21320.117258521143,165,Elective,2019-02-23,Normal,2442,194,1,17,,,,DISCHARGED -2443,2022-01-20,29603.05970719841,407,Elective,2022-02-06,Inconclusive,2443,117,1,12,,,,DISCHARGED -2444,2021-04-20,22130.223479035947,196,Elective,2021-05-06,Normal,2444,269,1,21,,,,DISCHARGED -2445,2022-06-24,20064.509542107084,174,Urgent,2022-07-19,Abnormal,2445,79,1,29,,,,DISCHARGED -2446,2019-07-07,7156.415792828478,485,Emergency,2019-07-24,Abnormal,2446,457,0,13,,,,DISCHARGED -2447,2022-10-06,5157.15398660283,256,Elective,2022-10-18,Inconclusive,2447,92,4,10,,,,DISCHARGED -2448,2021-03-31,5438.366580021159,258,Elective,2021-04-07,Abnormal,2448,265,3,6,,,,DISCHARGED -2449,2020-06-26,43897.651310667614,275,Urgent,2020-07-06,Abnormal,2449,331,4,17,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2450,2021-08-17,14013.744275075303,376,Urgent,2021-08-27,Abnormal,2450,349,0,20,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -2450,2019-04-22,16362.17600643445,360,Urgent,2019-05-14,Abnormal,9038,360,0,21,,,,DISCHARGED -2451,2020-09-17,39521.41561682892,327,Urgent,2020-10-16,Inconclusive,2451,256,0,3,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -2452,2022-01-10,3273.499068275321,385,Emergency,2022-02-07,Abnormal,2452,132,0,16,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2453,2023-01-02,28194.600073883343,333,Emergency,2023-01-09,Inconclusive,2453,275,1,18,,,,DISCHARGED -2454,2023-04-12,45984.47445143882,445,Emergency,,Inconclusive,2454,263,4,13,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",OPEN -2455,2019-03-06,5397.666347489107,374,Emergency,2019-03-28,Normal,2455,170,2,9,,,,DISCHARGED -2455,2021-04-06,35939.43169113827,467,Urgent,2021-04-30,Abnormal,9304,459,3,24,,,,DISCHARGED -2456,2021-07-17,6200.695529873992,458,Urgent,2021-08-07,Inconclusive,2456,0,0,28,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -2457,2019-09-08,16011.779350249855,120,Emergency,2019-09-17,Inconclusive,2457,312,4,5,,,,DISCHARGED -2458,2019-11-29,8161.201023922842,152,Urgent,2019-12-06,Inconclusive,2458,63,0,17,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -2459,2022-11-29,16188.837522892652,457,Urgent,2022-12-19,Inconclusive,2459,373,0,24,,,,DISCHARGED -2460,2022-08-20,11901.589746095648,276,Urgent,2022-09-15,Abnormal,2460,467,0,3,,,,DISCHARGED -2461,2021-06-20,15380.13437328461,419,Urgent,2021-06-28,Inconclusive,2461,283,0,10,,,,DISCHARGED -2461,2019-12-03,29806.891947953394,191,Urgent,2019-12-27,Normal,6354,120,0,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2462,2020-12-26,46700.03560980359,473,Elective,2021-01-07,Abnormal,2462,106,3,7,,,,DISCHARGED -2463,2022-04-29,37780.69359828156,259,Elective,2022-05-01,Abnormal,2463,420,4,9,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2464,2022-07-31,16219.584011911596,165,Urgent,2022-08-08,Inconclusive,2464,174,0,22,,,,DISCHARGED -2465,2022-11-18,8442.245213122707,221,Elective,2022-11-28,Normal,2465,484,0,27,,,,DISCHARGED -2466,2022-06-10,42220.478409769945,248,Urgent,2022-06-22,Inconclusive,2466,203,0,10,,,,DISCHARGED -2466,2021-11-22,18293.22504138837,311,Elective,2021-12-18,Inconclusive,5952,164,0,2,,,,DISCHARGED -2466,2023-09-03,22506.327469888354,153,Emergency,2023-09-16,Normal,7382,304,1,14,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2467,2019-05-02,27335.91992123,342,Elective,2019-05-25,Abnormal,2467,496,1,7,,,,DISCHARGED -2468,2020-12-23,2517.450463083744,379,Emergency,2021-01-21,Abnormal,2468,119,2,19,,,,DISCHARGED -2469,2019-01-11,45402.997497176286,341,Urgent,2019-01-20,Inconclusive,2469,43,0,17,,,,DISCHARGED -2470,2020-11-22,22476.741759452263,213,Urgent,2020-11-30,Inconclusive,2470,311,2,26,,,,DISCHARGED -2471,2019-12-24,22918.0911148914,475,Urgent,2020-01-19,Inconclusive,2471,155,3,20,,,,DISCHARGED -2472,2021-09-03,29395.418118566435,437,Emergency,2021-10-02,Inconclusive,2472,366,2,0,,,,DISCHARGED -2472,2022-11-04,13838.988236861156,158,Elective,2022-11-30,Abnormal,6303,206,4,28,,,,DISCHARGED -2473,2022-06-09,47399.457605142845,155,Emergency,2022-07-09,Normal,2473,389,1,23,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2474,2022-12-09,49003.46904928367,208,Urgent,2022-12-29,Abnormal,2474,107,1,29,,,,DISCHARGED -2475,2022-01-24,33718.96556538412,288,Elective,2022-02-19,Inconclusive,2475,250,0,7,,,,DISCHARGED -2476,2023-04-07,28229.15208168493,308,Elective,2023-05-05,Abnormal,2476,444,0,2,,,,DISCHARGED -2477,2019-03-09,24297.349844283555,389,Elective,2019-03-22,Abnormal,2477,403,3,0,,,,DISCHARGED -2478,2022-01-06,39336.78760601399,416,Elective,2022-01-31,Normal,2478,369,3,19,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -2479,2023-03-21,12470.10454188172,333,Elective,,Inconclusive,2479,333,4,24,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,OPEN -2480,2019-06-26,1333.1894640653377,493,Elective,2019-07-22,Normal,2480,129,0,15,,,,DISCHARGED -2481,2020-09-09,33872.49276820652,287,Emergency,2020-09-28,Abnormal,2481,456,0,8,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2482,2022-11-19,13891.42976370759,497,Emergency,2022-12-19,Inconclusive,2482,292,3,16,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2483,2018-11-09,38436.50156984787,186,Urgent,2018-12-02,Abnormal,2483,19,3,26,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2484,2020-10-21,34070.15288761023,208,Urgent,2020-11-01,Normal,2484,281,3,15,,,,DISCHARGED -2485,2019-09-02,1797.8955498038824,248,Urgent,2019-09-07,Normal,2485,284,1,22,,,,DISCHARGED -2485,2019-02-13,49611.00275801964,240,Elective,2019-03-09,Inconclusive,8116,0,2,5,,,,DISCHARGED -2486,2019-03-10,42331.91830144021,416,Urgent,2019-03-25,Abnormal,2486,118,2,29,,,,DISCHARGED -2487,2022-04-07,37053.19919361424,164,Emergency,2022-04-16,Inconclusive,2487,34,0,22,,,,DISCHARGED -2488,2021-08-07,36351.927384573646,183,Elective,2021-09-04,Inconclusive,2488,197,1,6,,,,DISCHARGED -2489,2019-10-04,16567.23352595263,141,Urgent,2019-10-20,Abnormal,2489,484,3,23,,,,DISCHARGED -2490,2022-06-03,30202.06210754691,312,Emergency,2022-06-30,Abnormal,2490,244,0,15,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2491,2023-10-12,33626.74015820449,207,Urgent,2023-11-07,Normal,2491,58,1,7,,,,DISCHARGED -2492,2019-06-05,3966.212163117587,433,Urgent,2019-06-24,Abnormal,2492,324,4,9,,,,DISCHARGED -2493,2022-01-30,5342.107255750262,376,Emergency,2022-02-25,Abnormal,2493,160,1,13,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2494,2022-07-25,36815.52831938813,401,Emergency,2022-08-23,Abnormal,2494,496,0,10,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -2495,2020-03-10,47964.57112290667,353,Elective,2020-03-23,Inconclusive,2495,178,2,1,,,,DISCHARGED -2496,2021-10-27,37411.45896100474,122,Urgent,2021-11-06,Normal,2496,205,3,11,,,,DISCHARGED -2497,2019-03-29,43465.7415969958,362,Elective,2019-04-10,Inconclusive,2497,11,4,27,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2498,2022-04-10,32981.51555712364,363,Urgent,2022-04-16,Normal,2498,489,1,27,,,,DISCHARGED -2499,2020-08-29,9245.538029929652,322,Elective,2020-09-16,Inconclusive,2499,275,0,19,,,,DISCHARGED -2500,2023-07-16,5105.853256042749,357,Emergency,2023-07-26,Abnormal,2500,180,0,19,,,,DISCHARGED -2501,2020-07-10,47869.53814099664,401,Urgent,2020-07-14,Inconclusive,2501,241,3,12,,,,DISCHARGED -2501,2022-04-17,9343.708181058417,470,Elective,2022-05-16,Normal,3213,215,0,14,,,,DISCHARGED -2501,2021-03-13,39161.047336248914,304,Elective,2021-03-27,Abnormal,4190,250,0,26,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2502,2019-08-26,16825.748562014633,124,Emergency,2019-09-22,Abnormal,2502,298,3,25,,,,DISCHARGED -2503,2021-10-01,10274.286916230649,276,Urgent,2021-10-18,Abnormal,2503,125,4,11,,,,DISCHARGED -2504,2018-11-25,17191.66553889664,376,Urgent,2018-11-29,Normal,2504,481,2,12,,,,DISCHARGED -2504,2023-05-15,8736.107586721815,370,Urgent,2023-05-19,Inconclusive,4554,216,2,7,,,,DISCHARGED -2504,2022-08-30,19213.05053111153,272,Elective,2022-09-24,Normal,7836,305,1,15,,,,DISCHARGED -2505,2020-11-01,45405.45615036273,417,Urgent,2020-11-25,Normal,2505,284,4,29,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -2506,2020-09-28,24065.96392060597,187,Urgent,2020-10-07,Abnormal,2506,184,1,28,,,,DISCHARGED -2507,2022-05-08,12117.904737790255,223,Urgent,2022-06-05,Abnormal,2507,38,2,28,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2508,2022-03-25,22918.081572843308,210,Urgent,2022-03-29,Abnormal,2508,222,3,2,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2509,2023-04-28,1280.5533033794738,453,Elective,2023-05-06,Normal,2509,183,0,27,,,,DISCHARGED -2510,2020-03-09,41518.73435076176,477,Elective,2020-03-25,Inconclusive,2510,494,2,28,,,,DISCHARGED -2511,2021-03-13,3184.197956562955,232,Emergency,2021-04-12,Abnormal,2511,426,4,12,,,,DISCHARGED -2512,2021-03-22,19444.70474129962,197,Emergency,2021-03-26,Inconclusive,2512,177,2,11,,,,DISCHARGED -2513,2020-10-09,19453.264438587303,122,Urgent,2020-10-20,Normal,2513,406,4,18,,,,DISCHARGED -2514,2023-01-18,47142.33250958913,111,Urgent,,Normal,2514,427,4,28,,,,OPEN -2515,2019-10-20,16045.514403996984,349,Urgent,2019-11-17,Abnormal,2515,293,4,1,,,,DISCHARGED -2516,2022-05-18,31303.77519176569,301,Emergency,2022-06-07,Inconclusive,2516,339,1,0,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2517,2021-08-14,13380.82012275722,276,Emergency,2021-08-20,Abnormal,2517,150,3,7,,,,DISCHARGED -2518,2020-05-29,46252.60201181317,298,Emergency,2020-06-13,Inconclusive,2518,383,2,29,,,,DISCHARGED -2519,2022-06-23,39677.64886553293,456,Elective,2022-07-20,Abnormal,2519,125,3,8,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2520,2019-12-02,35353.55407132734,285,Elective,2019-12-18,Abnormal,2520,300,0,24,,,,DISCHARGED -2521,2021-01-19,42439.58283142851,429,Elective,2021-01-29,Abnormal,2521,307,2,26,,,,DISCHARGED -2522,2021-12-04,19534.98898999367,189,Emergency,2021-12-21,Normal,2522,335,3,7,,,,DISCHARGED -2523,2019-03-23,19292.71224178668,436,Elective,2019-03-25,Inconclusive,2523,433,3,20,,,,DISCHARGED -2524,2020-02-27,40323.77260816338,229,Elective,2020-03-04,Inconclusive,2524,233,0,16,,,,DISCHARGED -2525,2021-09-27,37382.58099687849,405,Elective,2021-10-04,Normal,2525,379,4,8,,,,DISCHARGED -2526,2023-01-20,3943.2140265605167,370,Elective,2023-02-03,Abnormal,2526,374,2,5,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2526,2019-01-03,6196.06882368655,133,Elective,2019-02-01,Abnormal,4578,7,2,27,,,,DISCHARGED -2527,2020-07-29,46162.23254088883,452,Urgent,2020-08-18,Inconclusive,2527,497,0,14,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2528,2019-04-16,36618.12059934924,335,Urgent,2019-05-12,Abnormal,2528,340,4,22,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -2529,2020-02-14,35048.373020686005,109,Emergency,2020-03-08,Abnormal,2529,128,2,23,,,,DISCHARGED -2530,2022-05-22,2437.047667190419,233,Urgent,2022-05-29,Inconclusive,2530,263,2,12,,,,DISCHARGED -2531,2021-04-26,16773.726335059444,495,Elective,2021-05-09,Abnormal,2531,156,2,20,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -2532,2022-08-16,3750.387256178306,147,Elective,2022-08-21,Abnormal,2532,351,4,21,,,,DISCHARGED -2533,2021-11-09,33030.10172775421,128,Urgent,2021-12-04,Abnormal,2533,357,0,11,,,,DISCHARGED -2534,2021-12-12,7097.149276795404,277,Urgent,2021-12-16,Normal,2534,4,2,12,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -2535,2021-07-23,17078.678064416912,145,Emergency,2021-08-18,Normal,2535,494,3,6,,,,DISCHARGED -2536,2022-12-30,18488.790818903144,426,Urgent,2023-01-01,Normal,2536,85,4,22,,,,DISCHARGED -2536,2020-12-01,43694.59262070149,411,Emergency,2020-12-04,Normal,5247,174,1,17,,,,DISCHARGED -2537,2023-05-15,11996.354746497836,190,Elective,,Inconclusive,2537,289,0,13,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",OPEN -2539,2021-04-25,29311.23157184468,179,Urgent,2021-05-10,Abnormal,2539,192,3,10,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2540,2019-06-29,44225.21987041013,158,Elective,2019-07-19,Abnormal,2540,310,2,27,,,,DISCHARGED -2541,2020-02-14,8241.939392050404,290,Elective,2020-03-15,Inconclusive,2541,118,1,13,,,,DISCHARGED -2542,2020-02-21,47901.3316383337,389,Elective,2020-03-21,Inconclusive,2542,217,0,16,,,,DISCHARGED -2543,2023-05-05,23997.405126439808,127,Emergency,,Abnormal,2543,426,4,23,,,,OPEN -2544,2023-08-17,13121.031808802823,137,Emergency,2023-09-14,Inconclusive,2544,457,1,20,,,,DISCHARGED -2545,2022-04-18,16828.6060406219,152,Emergency,2022-05-05,Normal,2545,413,1,25,,,,DISCHARGED -2546,2018-11-16,34992.70272714538,365,Urgent,2018-11-24,Inconclusive,2546,113,3,1,,,,DISCHARGED -2547,2022-12-23,11818.71890906016,397,Emergency,2022-12-27,Abnormal,2547,465,0,18,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2548,2021-11-29,27985.709146391677,491,Urgent,2021-12-15,Abnormal,2548,144,3,15,,,,DISCHARGED -2549,2021-02-02,3487.9251836506346,136,Elective,2021-02-10,Abnormal,2549,25,3,21,,,,DISCHARGED -2551,2021-06-14,16729.618723782067,307,Urgent,2021-07-11,Abnormal,2551,135,2,9,,,,DISCHARGED -2551,2023-10-27,36780.69863519063,122,Emergency,,Inconclusive,4283,302,4,21,,,,OPEN -2552,2021-06-08,24137.80095281537,481,Elective,2021-07-01,Inconclusive,2552,231,1,7,,,,DISCHARGED -2552,2022-02-18,35069.38994550068,471,Urgent,2022-03-10,Normal,2917,368,0,20,,,,DISCHARGED -2552,2022-12-10,42792.80326171994,347,Elective,2023-01-07,Inconclusive,8069,75,4,4,,,,DISCHARGED -2553,2020-01-18,16508.91894696419,134,Urgent,2020-02-16,Abnormal,2553,474,4,6,,,,DISCHARGED -2554,2022-05-05,24310.931965028103,314,Elective,2022-05-09,Inconclusive,2554,327,0,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2555,2021-01-12,42424.75551118867,176,Urgent,2021-01-14,Normal,2555,344,4,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2556,2018-12-06,21512.8504555352,356,Emergency,2018-12-21,Normal,2556,301,2,15,,,,DISCHARGED -2557,2023-03-28,2325.240554341675,228,Urgent,2023-03-30,Abnormal,2557,451,4,29,,,,DISCHARGED -2558,2019-08-22,10898.879544198791,226,Elective,2019-09-09,Abnormal,2558,288,2,4,,,,DISCHARGED -2559,2019-04-22,29788.209360541117,280,Urgent,2019-05-16,Inconclusive,2559,0,1,15,,,,DISCHARGED -2559,2023-10-12,10950.748180557635,424,Elective,2023-10-17,Normal,4321,146,1,14,,,,DISCHARGED -2560,2019-12-05,10939.259060025885,142,Urgent,2019-12-09,Abnormal,2560,286,3,8,,,,DISCHARGED -2561,2023-10-20,5517.214581572903,129,Urgent,2023-10-22,Abnormal,2561,463,2,21,,,,DISCHARGED -2562,2021-09-15,22315.03437321993,294,Urgent,2021-10-05,Normal,2562,141,1,22,,,,DISCHARGED -2563,2023-02-27,8753.971870005033,272,Elective,,Inconclusive,2563,52,4,11,,,,OPEN -2564,2021-02-17,34523.12900685982,134,Urgent,2021-03-19,Inconclusive,2564,303,0,7,,,,DISCHARGED -2564,2018-10-30,42709.355599637136,204,Emergency,2018-11-22,Normal,5864,68,0,12,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -2565,2021-08-09,40510.29083835007,416,Urgent,2021-08-24,Abnormal,2565,360,2,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2566,2023-10-26,21561.346235408444,486,Urgent,,Normal,2566,89,3,13,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -2567,2022-04-09,18949.370091854224,212,Elective,2022-04-26,Normal,2567,445,4,15,,,,DISCHARGED -2568,2022-12-11,16753.26329814126,158,Elective,2022-12-31,Normal,2568,219,2,10,,,,DISCHARGED -2568,2019-10-06,45524.116371496086,282,Urgent,2019-10-09,Normal,7609,449,0,19,,,,DISCHARGED -2569,2021-01-05,27643.351260859155,366,Emergency,2021-02-03,Abnormal,2569,497,2,11,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2570,2022-10-10,37092.66802185113,113,Urgent,2022-10-31,Normal,2570,191,4,14,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2570,2021-04-05,17588.862554785428,416,Emergency,2021-04-08,Abnormal,4494,453,1,23,,,,DISCHARGED -2571,2020-03-26,19985.102277601043,466,Emergency,2020-04-05,Abnormal,2571,62,4,11,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2572,2023-08-02,24291.275911118257,354,Elective,2023-08-24,Normal,2572,72,1,25,,,,DISCHARGED -2573,2022-04-09,28287.58615407271,422,Elective,2022-04-21,Normal,2573,160,1,8,,,,DISCHARGED -2573,2020-06-23,42314.383839214206,139,Urgent,2020-07-21,Inconclusive,7761,168,1,0,,,,DISCHARGED -2574,2021-03-13,10535.29051168389,326,Emergency,2021-04-10,Abnormal,2574,88,2,2,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -2575,2019-12-31,22770.96299438292,181,Urgent,2020-01-05,Inconclusive,2575,175,0,11,,,,DISCHARGED -2575,2023-04-21,10428.656829988846,318,Urgent,2023-04-22,Inconclusive,9110,268,2,19,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -2576,2021-03-28,36414.60739840357,429,Elective,2021-04-12,Abnormal,2576,72,0,12,,,,DISCHARGED -2576,2022-09-06,25225.370249528787,339,Urgent,2022-09-12,Inconclusive,7951,244,4,22,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2577,2020-05-03,36337.22925933667,119,Elective,2020-05-25,Inconclusive,2577,76,3,5,,,,DISCHARGED -2578,2019-02-23,16890.898064171648,177,Elective,2019-03-05,Inconclusive,2578,158,4,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2579,2019-02-07,22940.532321347528,272,Urgent,2019-03-03,Normal,2579,488,2,9,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2580,2022-11-22,44172.58206463089,479,Elective,2022-12-12,Normal,2580,458,2,15,,,,DISCHARGED -2581,2020-01-14,34261.43004173457,170,Urgent,2020-02-06,Inconclusive,2581,323,0,26,,,,DISCHARGED -2582,2020-04-03,45874.633130404414,266,Urgent,2020-04-15,Abnormal,2582,97,2,0,,,,DISCHARGED -2583,2022-07-08,18203.36690870457,342,Emergency,2022-07-25,Abnormal,2583,380,1,15,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -2583,2023-06-29,33971.08328566391,403,Urgent,,Normal,3248,101,2,3,,,,OPEN -2583,2021-06-17,48520.13280392152,142,Elective,2021-07-01,Normal,6370,493,0,5,,,,DISCHARGED -2584,2020-04-15,2753.453007872876,371,Elective,2020-05-08,Abnormal,2584,131,0,18,,,,DISCHARGED -2585,2021-03-20,30290.43210670009,256,Emergency,2021-04-07,Inconclusive,2585,101,1,1,,,,DISCHARGED -2586,2019-12-23,12668.5311373092,452,Emergency,2019-12-26,Inconclusive,2586,18,0,17,,,,DISCHARGED -2587,2022-05-07,10269.930800726186,369,Elective,2022-05-26,Abnormal,2587,453,3,9,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -2588,2019-03-31,5449.098927619556,149,Urgent,2019-04-06,Inconclusive,2588,481,4,27,,,,DISCHARGED -2589,2022-09-13,23777.217496608027,376,Urgent,2022-09-16,Inconclusive,2589,81,2,27,,,,DISCHARGED -2590,2020-04-07,5205.633624565028,209,Emergency,2020-05-05,Normal,2590,396,3,3,,,,DISCHARGED -2591,2022-08-07,24656.194454012835,366,Urgent,2022-09-04,Normal,2591,488,2,28,,,,DISCHARGED -2592,2021-01-31,5124.0239662893255,166,Emergency,2021-02-27,Inconclusive,2592,278,3,0,,,,DISCHARGED -2593,2021-05-30,15802.581219986732,324,Elective,2021-06-01,Abnormal,2593,338,2,14,,,,DISCHARGED -2594,2019-04-14,20322.081075998063,314,Emergency,2019-05-13,Inconclusive,2594,364,1,9,,,,DISCHARGED -2595,2023-04-10,18404.55616353791,175,Urgent,2023-04-13,Inconclusive,2595,330,0,17,,,,DISCHARGED -2596,2019-01-16,27748.854813861133,174,Elective,2019-01-23,Normal,2596,128,0,15,,,,DISCHARGED -2597,2021-02-11,2128.746992472857,393,Urgent,2021-02-12,Abnormal,2597,343,1,12,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -2598,2019-06-14,1604.020084840759,450,Urgent,2019-07-01,Inconclusive,2598,309,3,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2599,2019-01-22,19175.262325931897,449,Elective,2019-02-20,Inconclusive,2599,454,4,14,,,,DISCHARGED -2601,2020-11-29,45875.76239815678,205,Emergency,2020-12-18,Abnormal,2601,88,3,1,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -2602,2023-09-17,29710.279562313823,438,Elective,2023-09-19,Normal,2602,212,0,19,,,,DISCHARGED -2604,2019-12-11,46757.77721032385,338,Elective,2019-12-30,Abnormal,2604,142,4,3,,,,DISCHARGED -2605,2020-12-30,17488.630668604463,447,Urgent,2021-01-15,Inconclusive,2605,64,2,0,,,,DISCHARGED -2606,2021-08-11,21378.161052862783,253,Emergency,2021-08-14,Abnormal,2606,75,4,6,,,,DISCHARGED -2607,2023-02-07,26156.21340416225,118,Urgent,2023-03-09,Inconclusive,2607,198,3,22,,,,DISCHARGED -2608,2021-06-06,41587.356487703895,159,Elective,2021-06-18,Normal,2608,142,1,25,,,,DISCHARGED -2609,2020-04-20,39700.12825686741,139,Emergency,2020-05-13,Inconclusive,2609,404,2,10,,,,DISCHARGED -2610,2020-03-17,21493.926930527858,461,Emergency,2020-03-27,Abnormal,2610,402,3,25,,,,DISCHARGED -2611,2019-06-05,31067.32279879445,256,Elective,2019-06-25,Abnormal,2611,315,2,9,,,,DISCHARGED -2611,2022-01-20,42627.36748949484,285,Emergency,2022-02-03,Inconclusive,7183,92,4,0,,,,DISCHARGED -2612,2020-05-07,31431.37795725211,229,Urgent,2020-05-14,Inconclusive,2612,472,0,10,,,,DISCHARGED -2613,2022-04-25,21130.38580866285,192,Elective,2022-05-13,Normal,2613,416,3,23,,,,DISCHARGED -2614,2022-01-20,46774.61327973702,276,Urgent,2022-02-10,Inconclusive,2614,304,1,9,,,,DISCHARGED -2615,2020-05-04,25326.805551241006,186,Emergency,2020-06-01,Inconclusive,2615,223,4,13,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2615,2022-07-15,24657.16436140522,228,Emergency,2022-08-01,Abnormal,9231,496,3,13,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2616,2021-05-25,16596.40959939637,473,Emergency,2021-06-15,Inconclusive,2616,290,1,6,,,,DISCHARGED -2617,2019-09-08,28388.89773724963,309,Urgent,2019-09-24,Inconclusive,2617,427,3,22,,,,DISCHARGED -2618,2023-10-26,45192.478435696845,177,Emergency,2023-11-24,Abnormal,2618,101,4,10,,,,DISCHARGED -2619,2018-12-11,16201.08187161045,259,Urgent,2018-12-14,Inconclusive,2619,473,3,21,,,,DISCHARGED -2620,2023-07-04,15586.469385382026,186,Urgent,,Abnormal,2620,266,2,27,,,,OPEN -2621,2021-04-20,16056.137654425404,316,Emergency,2021-05-08,Inconclusive,2621,354,4,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2622,2020-12-06,16966.697481629963,286,Emergency,2021-01-03,Normal,2622,455,3,26,,,,DISCHARGED -2623,2019-07-25,46543.059854375446,484,Emergency,2019-08-11,Abnormal,2623,109,0,23,,,,DISCHARGED -2624,2020-11-25,35825.549077410506,327,Elective,2020-12-18,Inconclusive,2624,461,3,1,,,,DISCHARGED -2625,2021-09-21,45997.69734643205,237,Urgent,2021-09-27,Abnormal,2625,329,2,6,,,,DISCHARGED -2626,2023-08-21,14412.417240606432,340,Elective,2023-09-18,Normal,2626,449,1,18,,,,DISCHARGED -2627,2020-04-04,34410.59339808295,347,Urgent,2020-04-21,Abnormal,2627,429,1,13,,,,DISCHARGED -2628,2019-08-23,31824.652031549685,290,Emergency,2019-09-01,Normal,2628,264,1,18,,,,DISCHARGED -2629,2022-03-27,32730.688123574422,362,Urgent,2022-04-02,Inconclusive,2629,2,0,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2630,2022-01-13,35907.47268697924,321,Urgent,2022-02-01,Normal,2630,84,2,6,,,,DISCHARGED -2631,2020-09-25,8968.205000066286,145,Emergency,2020-10-08,Inconclusive,2631,281,4,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -2632,2021-03-30,33589.54809361052,420,Elective,2021-04-07,Abnormal,2632,327,1,2,,,,DISCHARGED -2633,2019-06-07,40528.69758526562,336,Elective,2019-06-28,Abnormal,2633,303,2,14,,,,DISCHARGED -2635,2021-07-17,33646.086468719484,496,Emergency,2021-08-03,Abnormal,2635,449,3,4,,,,DISCHARGED -2636,2023-10-10,43858.15051704504,363,Urgent,2023-11-07,Abnormal,2636,453,0,7,,,,DISCHARGED -2637,2020-11-12,25148.143290112694,451,Urgent,2020-12-01,Abnormal,2637,411,2,13,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2638,2022-06-01,46143.49120340079,115,Urgent,2022-06-24,Normal,2638,116,2,28,,,,DISCHARGED -2639,2020-01-24,25816.652579251037,249,Urgent,2020-01-31,Normal,2639,220,4,3,,,,DISCHARGED -2640,2023-01-26,49627.900560233335,273,Elective,2023-02-08,Abnormal,2640,153,2,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2641,2023-01-29,27448.79884487662,228,Elective,2023-02-06,Normal,2641,152,4,6,,,,DISCHARGED -2642,2022-12-29,14624.18251822247,443,Urgent,2023-01-01,Inconclusive,2642,11,0,17,,,,DISCHARGED -2643,2019-06-02,31746.51382694793,496,Elective,2019-06-29,Inconclusive,2643,132,0,13,,,,DISCHARGED -2644,2019-09-29,45440.45113479933,326,Urgent,2019-10-25,Inconclusive,2644,481,3,7,,,,DISCHARGED -2645,2021-11-05,49595.45512501731,113,Urgent,2021-11-21,Inconclusive,2645,303,4,25,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2646,2023-09-09,38452.72163675825,220,Urgent,2023-09-24,Normal,2646,292,4,11,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2647,2021-09-05,9611.825597121388,173,Elective,2021-09-17,Normal,2647,462,1,9,,,,DISCHARGED -2648,2019-04-12,32849.11542128452,415,Urgent,2019-04-24,Abnormal,2648,299,1,13,,,,DISCHARGED -2649,2019-02-03,31484.94663382468,460,Emergency,2019-02-11,Abnormal,2649,227,3,8,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -2650,2019-05-28,44276.6527731187,449,Urgent,2019-06-11,Inconclusive,2650,270,0,5,,,,DISCHARGED -2651,2023-06-19,34589.838918051944,157,Emergency,2023-07-14,Normal,2651,42,1,29,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2652,2019-07-07,26250.001156473834,450,Elective,2019-07-22,Inconclusive,2652,431,2,4,,,,DISCHARGED -2653,2020-04-10,48554.75967562424,247,Urgent,2020-04-27,Abnormal,2653,342,0,0,,,,DISCHARGED -2654,2021-05-07,30495.81558397598,142,Urgent,2021-05-26,Inconclusive,2654,325,2,0,,,,DISCHARGED -2655,2022-04-11,19773.31086724356,162,Emergency,2022-04-26,Normal,2655,301,4,24,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2656,2022-06-04,49243.31736311424,155,Urgent,2022-06-25,Inconclusive,2656,497,0,29,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2657,2019-08-01,43853.46495822737,327,Urgent,2019-08-28,Normal,2657,363,3,19,,,,DISCHARGED -2658,2020-04-11,21565.64773420869,275,Elective,2020-04-19,Abnormal,2658,378,4,16,,,,DISCHARGED -2658,2020-12-17,44745.091652500014,491,Elective,2021-01-06,Normal,2814,426,4,10,,,,DISCHARGED -2660,2023-07-07,1224.7683293587252,171,Urgent,,Normal,2660,492,2,25,,,,OPEN -2661,2019-05-31,44698.51398555716,268,Urgent,2019-06-30,Inconclusive,2661,20,4,11,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2662,2020-09-28,3238.597219924224,237,Elective,2020-10-14,Inconclusive,2662,406,1,2,,,,DISCHARGED -2662,2020-12-06,14881.14401904717,235,Elective,2020-12-23,Normal,3178,106,0,5,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2663,2019-08-08,22812.18829110568,381,Emergency,2019-08-20,Inconclusive,2663,335,1,29,,,,DISCHARGED -2664,2022-10-05,40316.7266858093,265,Urgent,2022-10-07,Normal,2664,302,2,10,,,,DISCHARGED -2665,2022-12-29,11894.212185549626,488,Emergency,2022-12-31,Inconclusive,2665,116,2,28,,,,DISCHARGED -2666,2020-08-10,34615.82116266479,362,Emergency,2020-08-25,Normal,2666,123,0,12,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2666,2019-11-08,16623.73887826834,412,Emergency,2019-12-05,Inconclusive,4011,398,4,10,,,,DISCHARGED -2667,2019-01-24,36144.26068598602,391,Elective,2019-02-22,Normal,2667,280,3,7,,,,DISCHARGED -2668,2021-05-27,23415.35059970277,128,Urgent,2021-06-13,Inconclusive,2668,291,2,28,,,,DISCHARGED -2669,2020-04-14,1070.0152701252623,314,Elective,2020-04-27,Inconclusive,2669,202,0,9,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2670,2022-11-14,22466.57238432296,348,Elective,2022-12-02,Abnormal,2670,50,3,1,,,,DISCHARGED -2671,2020-11-26,6572.018221397711,350,Urgent,2020-12-18,Inconclusive,2671,270,4,23,,,,DISCHARGED -2672,2022-11-24,21391.50300648184,468,Elective,2022-12-20,Inconclusive,2672,323,2,13,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2673,2022-08-25,47684.128222771,486,Emergency,2022-09-06,Inconclusive,2673,276,0,28,,,,DISCHARGED -2674,2021-11-23,28475.719188407154,108,Elective,2021-12-23,Abnormal,2674,140,0,15,,,,DISCHARGED -2676,2019-02-08,47916.97137531408,386,Elective,2019-02-13,Normal,2676,469,0,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -2678,2020-07-07,9098.047006680728,132,Elective,2020-07-28,Normal,2678,274,2,10,,,,DISCHARGED -2679,2023-05-16,49886.80518133734,164,Elective,2023-06-08,Normal,2679,289,3,1,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -2680,2019-06-29,26016.39516799301,319,Elective,2019-07-11,Abnormal,2680,333,0,23,,,,DISCHARGED -2681,2021-08-04,20978.27301712258,156,Elective,2021-08-12,Normal,2681,380,4,22,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -2682,2019-09-24,3497.985735905508,239,Elective,2019-10-17,Inconclusive,2682,451,0,4,,,,DISCHARGED -2683,2021-11-28,9562.630856484042,146,Emergency,2021-12-15,Abnormal,2683,495,3,28,,,,DISCHARGED -2684,2020-04-28,48153.64845556705,266,Emergency,2020-05-22,Inconclusive,2684,372,2,15,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -2685,2023-05-10,37013.349524948026,212,Emergency,2023-05-15,Inconclusive,2685,51,0,15,,,,DISCHARGED -2686,2019-07-03,27567.010108749924,336,Urgent,2019-07-20,Normal,2686,493,0,25,,,,DISCHARGED -2687,2023-01-08,46810.65399466919,380,Emergency,,Normal,2687,26,4,1,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",OPEN -2687,2021-05-25,12396.767504893176,404,Elective,2021-06-17,Abnormal,8969,156,4,15,,,,DISCHARGED -2688,2021-09-14,19206.843543271243,192,Emergency,2021-09-29,Normal,2688,238,0,24,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2689,2019-01-29,2923.3523499111266,481,Emergency,2019-02-20,Normal,2689,155,0,4,,,,DISCHARGED -2690,2022-10-21,8223.075180072163,400,Elective,2022-11-06,Normal,2690,290,4,7,,,,DISCHARGED -2691,2023-05-29,7612.570071770008,400,Emergency,,Abnormal,2691,135,3,28,,,,OPEN -2692,2022-02-26,47341.359352970445,272,Elective,2022-03-13,Inconclusive,2692,143,1,19,,,,DISCHARGED -2693,2020-01-07,7379.19719874067,315,Emergency,2020-01-20,Abnormal,2693,105,1,13,,,,DISCHARGED -2694,2020-08-13,9273.07521282235,231,Elective,2020-08-22,Inconclusive,2694,419,0,24,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -2694,2021-06-06,25428.73608378493,208,Elective,2021-06-09,Abnormal,9791,157,4,9,,,,DISCHARGED -2695,2020-06-25,20768.155117512622,132,Elective,2020-07-14,Abnormal,2695,145,2,22,,,,DISCHARGED -2696,2022-02-14,48074.67424049616,347,Emergency,2022-02-26,Abnormal,2696,1,2,1,,,,DISCHARGED -2697,2019-11-30,39852.316817586485,485,Emergency,2019-12-24,Abnormal,2697,432,1,2,,,,DISCHARGED -2698,2021-03-18,46606.33580616222,307,Urgent,2021-03-27,Abnormal,2698,76,3,29,,,,DISCHARGED -2699,2021-07-05,48480.84076646032,477,Emergency,2021-07-27,Abnormal,2699,131,1,17,,,,DISCHARGED -2700,2020-08-07,41260.63255479157,278,Emergency,2020-08-10,Inconclusive,2700,89,0,20,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2701,2020-06-01,8830.276603596452,320,Emergency,2020-06-25,Inconclusive,2701,344,3,1,,,,DISCHARGED -2702,2020-12-07,29794.59655175787,428,Urgent,2021-01-06,Abnormal,2702,349,2,20,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2703,2021-03-07,10887.125155561322,207,Urgent,2021-03-10,Normal,2703,458,4,28,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2704,2021-04-21,35504.50843479947,122,Emergency,2021-04-24,Normal,2704,262,4,8,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -2705,2021-08-31,6505.01598313251,365,Elective,2021-09-17,Abnormal,2705,350,0,1,,,,DISCHARGED -2706,2020-08-30,15358.605407396972,221,Emergency,2020-09-21,Normal,2706,107,1,24,,,,DISCHARGED -2707,2019-01-21,31421.56568458885,246,Urgent,2019-01-23,Normal,2707,73,0,6,,,,DISCHARGED -2709,2022-01-27,6464.030538793739,381,Elective,2022-02-20,Normal,2709,38,4,6,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2710,2022-04-23,43791.44016415779,313,Emergency,2022-05-22,Normal,2710,396,2,13,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -2711,2020-08-12,9003.212102835145,261,Urgent,2020-09-01,Normal,2711,158,4,4,,,,DISCHARGED -2712,2022-02-20,12862.89614233099,235,Emergency,2022-03-01,Normal,2712,70,3,7,,,,DISCHARGED -2713,2021-02-24,31042.870445592696,189,Urgent,2021-03-06,Inconclusive,2713,446,4,22,,,,DISCHARGED -2715,2020-04-13,4189.618979519723,173,Elective,2020-04-27,Normal,2715,311,4,21,,,,DISCHARGED -2716,2021-08-01,30930.958246546103,357,Elective,2021-08-10,Normal,2716,240,3,17,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2717,2019-03-10,23862.62828645282,235,Urgent,2019-03-19,Normal,2717,425,1,5,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -2718,2021-10-20,31681.955706158325,373,Elective,2021-11-03,Abnormal,2718,444,4,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2719,2023-06-01,17362.370733930373,261,Urgent,2023-06-25,Inconclusive,2719,297,0,17,,,,DISCHARGED -2720,2020-11-19,26466.228350303747,250,Urgent,2020-11-20,Inconclusive,2720,439,4,16,,,,DISCHARGED -2721,2021-02-16,6621.786604561795,333,Urgent,2021-03-03,Normal,2721,35,0,8,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2722,2022-06-10,40376.64648190551,350,Elective,2022-06-30,Normal,2722,83,3,12,,,,DISCHARGED -2723,2019-11-06,29695.81444969184,303,Emergency,2019-11-09,Normal,2723,451,4,15,,,,DISCHARGED -2724,2021-11-23,43510.63384085477,316,Urgent,2021-12-16,Inconclusive,2724,373,3,20,,,,DISCHARGED -2725,2019-11-06,38103.27306468731,418,Elective,2019-11-29,Abnormal,2725,262,3,9,,,,DISCHARGED -2726,2019-01-02,26805.699317323106,216,Elective,2019-01-14,Normal,2726,309,1,9,,,,DISCHARGED -2727,2023-10-20,10296.634193472306,478,Emergency,2023-11-11,Abnormal,2727,384,4,3,,,,DISCHARGED -2728,2023-07-07,19683.04369786167,257,Elective,,Inconclusive,2728,171,0,11,,,,OPEN -2729,2023-02-02,35367.97350257922,397,Urgent,,Abnormal,2729,375,0,26,,,,OPEN -2730,2021-09-12,49780.12262476423,439,Urgent,2021-09-22,Abnormal,2730,172,4,7,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2731,2020-02-17,42426.78469449219,291,Emergency,2020-03-03,Abnormal,2731,361,1,14,,,,DISCHARGED -2732,2023-07-22,10813.7917472245,415,Emergency,2023-08-08,Abnormal,2732,46,1,20,,,,DISCHARGED -2732,2022-02-01,31465.622536521503,455,Elective,2022-02-09,Inconclusive,6929,378,1,29,,,,DISCHARGED -2733,2021-10-24,43621.17509150677,171,Urgent,2021-11-22,Abnormal,2733,140,0,22,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2734,2022-01-29,3710.695852169433,371,Emergency,2022-02-06,Inconclusive,2734,374,3,18,,,,DISCHARGED -2735,2022-07-31,45892.14449481834,174,Elective,2022-08-05,Inconclusive,2735,405,1,14,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2736,2019-12-21,45679.92740717956,417,Elective,2020-01-09,Inconclusive,2736,117,0,7,,,,DISCHARGED -2737,2020-03-07,14228.199580897486,425,Elective,2020-03-31,Normal,2737,276,0,7,,,,DISCHARGED -2738,2019-01-07,34535.89855179965,291,Emergency,2019-01-28,Normal,2738,213,3,18,,,,DISCHARGED -2739,2019-10-02,9049.02023730678,358,Emergency,2019-10-21,Abnormal,2739,219,4,8,,,,DISCHARGED -2739,2023-10-01,2528.15333252586,355,Urgent,,Normal,4513,392,4,29,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -2740,2021-06-15,16387.536557621414,414,Urgent,2021-06-28,Normal,2740,25,1,23,,,,DISCHARGED -2741,2020-05-10,46912.62153215373,348,Elective,2020-05-19,Inconclusive,2741,8,1,16,,,,DISCHARGED -2742,2022-04-27,15868.402899565615,443,Urgent,2022-05-14,Normal,2742,270,3,7,,,,DISCHARGED -2743,2019-02-13,5786.128457148991,224,Elective,2019-02-24,Normal,2743,9,1,11,,,,DISCHARGED -2744,2020-08-15,16583.476294370677,471,Emergency,2020-08-22,Abnormal,2744,471,3,26,,,,DISCHARGED -2745,2021-06-16,5959.017430660474,456,Elective,2021-07-09,Normal,2745,377,0,14,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2746,2019-12-09,7941.331812193567,259,Urgent,2019-12-21,Inconclusive,2746,120,1,3,,,,DISCHARGED -2747,2022-08-31,20841.542772663983,124,Elective,2022-09-28,Abnormal,2747,124,0,5,,,,DISCHARGED -2748,2022-09-22,39941.460868015085,242,Elective,2022-09-23,Inconclusive,2748,169,2,29,,,,DISCHARGED -2749,2021-07-13,2059.1168232024597,482,Emergency,2021-08-10,Normal,2749,71,3,28,,,,DISCHARGED -2750,2022-02-20,11561.76068996926,374,Elective,2022-02-25,Normal,2750,151,2,15,,,,DISCHARGED -2751,2019-04-12,37167.89174429348,416,Emergency,2019-05-11,Abnormal,2751,207,1,25,,,,DISCHARGED -2752,2023-07-31,30119.178552689034,148,Elective,,Abnormal,2752,48,0,24,,,,OPEN -2753,2022-01-20,31083.046691416675,303,Emergency,2022-02-09,Inconclusive,2753,153,1,4,,,,DISCHARGED -2754,2020-02-03,1476.3616714080213,148,Emergency,2020-02-13,Inconclusive,2754,346,2,22,,,,DISCHARGED -2755,2022-05-29,7394.22654244488,346,Elective,2022-06-24,Abnormal,2755,292,1,12,,,,DISCHARGED -2756,2021-10-05,15549.407079465778,455,Elective,2021-10-31,Normal,2756,67,4,14,,,,DISCHARGED -2757,2021-09-05,7304.65645638417,189,Emergency,2021-10-05,Abnormal,2757,49,2,16,,,,DISCHARGED -2758,2020-02-02,35252.70824952037,281,Urgent,2020-02-04,Inconclusive,2758,151,1,24,,,,DISCHARGED -2760,2020-03-05,19664.91316122281,293,Urgent,2020-03-14,Abnormal,2760,18,0,29,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2761,2022-03-06,15854.112781297526,278,Emergency,2022-03-08,Normal,2761,99,1,21,,,,DISCHARGED -2762,2022-12-03,2569.6717026285287,492,Urgent,2022-12-13,Inconclusive,2762,59,0,26,,,,DISCHARGED -2763,2020-02-15,38517.63643808982,278,Emergency,2020-02-16,Abnormal,2763,166,4,19,,,,DISCHARGED -2764,2023-09-28,35888.31813330963,263,Emergency,2023-10-14,Normal,2764,201,1,21,,,,DISCHARGED -2765,2021-03-13,29845.065139109603,238,Elective,2021-03-16,Normal,2765,344,4,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2766,2019-02-19,39747.6488084627,358,Elective,2019-03-16,Inconclusive,2766,145,2,18,,,,DISCHARGED -2767,2020-11-14,40682.36380424722,335,Urgent,2020-12-12,Abnormal,2767,402,0,6,,,,DISCHARGED -2768,2019-09-01,49691.66266097402,482,Urgent,2019-09-15,Abnormal,2768,163,2,2,,,,DISCHARGED -2769,2022-07-09,8317.638478918132,105,Elective,2022-08-07,Abnormal,2769,457,0,12,,,,DISCHARGED -2770,2021-10-07,26414.852104688904,448,Urgent,2021-10-12,Inconclusive,2770,480,4,13,,,,DISCHARGED -2771,2021-02-15,4316.535914594049,376,Emergency,2021-03-04,Inconclusive,2771,438,3,15,,,,DISCHARGED -2772,2020-09-15,40002.89123307032,209,Emergency,2020-09-25,Abnormal,2772,241,1,12,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -2773,2022-09-23,30430.46649593099,116,Elective,2022-10-07,Inconclusive,2773,68,4,1,,,,DISCHARGED -2774,2019-03-23,44200.79236780894,335,Elective,2019-03-25,Normal,2774,174,0,13,,,,DISCHARGED -2775,2021-05-06,43560.7834682722,216,Elective,2021-05-30,Abnormal,2775,48,0,19,,,,DISCHARGED -2776,2022-08-11,23042.080749293244,364,Elective,2022-08-25,Abnormal,2776,482,0,6,,,,DISCHARGED -2776,2022-03-07,16635.45001974,164,Elective,2022-04-04,Normal,7740,107,0,4,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -2777,2022-02-13,14199.986999695731,284,Elective,2022-02-20,Normal,2777,225,1,13,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -2777,2022-01-23,43538.824649631126,184,Emergency,2022-02-18,Normal,6722,160,2,8,,,,DISCHARGED -2778,2020-06-08,6529.781129391422,226,Elective,2020-06-11,Normal,2778,118,3,9,,,,DISCHARGED -2779,2018-11-24,19694.33458154058,432,Emergency,2018-12-04,Normal,2779,148,1,6,,,,DISCHARGED -2780,2020-02-15,17261.56173301002,486,Emergency,2020-03-16,Abnormal,2780,464,0,27,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2781,2019-02-11,39072.289987398166,163,Emergency,2019-03-07,Abnormal,2781,149,1,13,,,,DISCHARGED -2782,2023-08-29,13961.236827620032,374,Elective,,Abnormal,2782,431,4,24,,,,OPEN -2783,2020-08-03,33173.11688834193,382,Urgent,2020-08-23,Abnormal,2783,292,0,13,,,,DISCHARGED -2784,2021-04-24,25854.58908459076,391,Emergency,2021-05-01,Inconclusive,2784,142,3,24,,,,DISCHARGED -2785,2020-08-23,43728.109844877225,126,Urgent,2020-09-01,Normal,2785,418,0,27,,,,DISCHARGED -2785,2020-10-13,23761.98851861565,391,Urgent,2020-10-29,Normal,8058,475,3,1,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -2786,2023-09-24,10305.725457850498,287,Urgent,2023-10-10,Normal,2786,454,3,16,,,,DISCHARGED -2787,2019-05-10,36690.93535291785,312,Emergency,2019-06-07,Inconclusive,2787,159,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2788,2022-12-08,15969.053710605976,160,Emergency,2023-01-05,Inconclusive,2788,10,2,19,,,,DISCHARGED -2789,2019-05-03,26019.28631643501,387,Urgent,2019-06-02,Normal,2789,137,1,3,,,,DISCHARGED -2790,2020-04-26,26247.006868587407,210,Urgent,2020-05-13,Inconclusive,2790,456,1,12,,,,DISCHARGED -2791,2023-10-12,12711.117889562702,448,Urgent,,Abnormal,2791,77,3,17,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -2792,2022-04-03,30067.74773194783,290,Emergency,2022-05-03,Normal,2792,76,0,2,,,,DISCHARGED -2793,2021-10-04,25794.19511085218,269,Elective,2021-10-15,Normal,2793,440,4,18,,,,DISCHARGED -2794,2019-01-15,11369.271194317564,431,Elective,2019-01-30,Abnormal,2794,253,4,4,,,,DISCHARGED -2795,2019-03-30,3003.4182986089254,183,Emergency,2019-04-15,Abnormal,2795,408,0,0,,,,DISCHARGED -2796,2019-12-11,24389.03146697239,329,Urgent,2019-12-24,Abnormal,2796,257,0,8,,,,DISCHARGED -2797,2023-07-18,28482.889354541352,290,Elective,2023-07-25,Normal,2797,319,2,23,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -2797,2022-06-14,12709.40263523816,441,Emergency,2022-07-01,Abnormal,6783,290,4,7,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -2797,2022-07-25,48444.3272045554,134,Urgent,2022-08-05,Abnormal,8237,262,3,2,,,,DISCHARGED -2798,2020-02-13,31848.838525601222,116,Emergency,2020-03-08,Abnormal,2798,84,1,1,,,,DISCHARGED -2799,2020-11-07,17809.334490775673,277,Urgent,2020-11-14,Normal,2799,145,2,0,,,,DISCHARGED -2801,2019-08-06,2239.09193529874,113,Emergency,2019-08-23,Abnormal,2801,322,4,11,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -2802,2019-07-25,1331.5220834623442,175,Elective,2019-07-27,Normal,2802,41,0,21,,,,DISCHARGED -2803,2022-11-13,39527.42202089524,325,Elective,2022-12-08,Abnormal,2803,373,4,12,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2804,2021-01-20,29564.32586286136,258,Urgent,2021-02-05,Inconclusive,2804,124,3,9,,,,DISCHARGED -2805,2021-06-19,41313.905039015845,491,Urgent,2021-06-20,Abnormal,2805,166,2,16,,,,DISCHARGED -2806,2021-02-13,44595.20545361234,360,Urgent,2021-02-23,Inconclusive,2806,424,0,29,,,,DISCHARGED -2807,2022-09-15,11962.53733110749,227,Elective,2022-09-27,Abnormal,2807,240,3,10,,,,DISCHARGED -2807,2022-01-01,22893.468375730023,242,Urgent,2022-01-09,Normal,6004,458,1,4,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -2808,2020-08-25,25507.92250820054,307,Emergency,2020-09-14,Abnormal,2808,486,2,24,,,,DISCHARGED -2808,2020-07-15,18171.488930128588,274,Urgent,2020-08-09,Normal,8385,279,3,26,,,,DISCHARGED -2809,2019-04-06,14701.65029614148,317,Elective,2019-04-19,Inconclusive,2809,187,3,8,,,,DISCHARGED -2809,2018-12-18,49608.86185798793,166,Emergency,2018-12-29,Normal,7546,301,0,12,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2810,2019-10-30,9422.808753446085,335,Elective,2019-11-18,Normal,2810,18,1,27,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -2811,2019-05-16,2871.9966903723034,445,Emergency,2019-05-28,Abnormal,2811,67,3,19,,,,DISCHARGED -2812,2023-03-27,16047.100582941934,374,Urgent,2023-04-17,Abnormal,2812,217,2,22,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -2813,2022-08-07,3684.546962126398,231,Urgent,2022-09-02,Inconclusive,2813,101,3,29,,,,DISCHARGED -2815,2019-05-20,6412.9993936596375,110,Urgent,2019-05-29,Abnormal,2815,41,4,10,,,,DISCHARGED -2815,2020-11-20,49563.699054646335,408,Emergency,2020-11-30,Inconclusive,8111,287,2,22,,,,DISCHARGED -2817,2020-02-11,42324.90946281877,155,Emergency,2020-02-14,Inconclusive,2817,166,2,3,,,,DISCHARGED -2818,2023-04-23,29416.275726819906,127,Urgent,2023-05-18,Abnormal,2818,108,3,20,,,,DISCHARGED -2819,2020-08-10,2529.504829248252,217,Elective,2020-08-13,Inconclusive,2819,493,0,10,,,,DISCHARGED -2821,2022-05-18,47812.00267143285,417,Urgent,2022-06-04,Inconclusive,2821,35,2,8,,,,DISCHARGED -2822,2020-07-10,36023.36940852515,434,Emergency,2020-07-24,Normal,2822,231,4,6,,,,DISCHARGED -2823,2021-04-01,12010.602313406109,479,Urgent,2021-04-05,Abnormal,2823,228,0,15,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2824,2022-09-06,12791.400082799946,361,Elective,2022-10-03,Normal,2824,352,0,22,,,,DISCHARGED -2825,2021-07-16,7819.865130850051,487,Elective,2021-07-26,Normal,2825,163,0,25,,,,DISCHARGED -2826,2022-10-06,30578.1756242784,264,Urgent,2022-10-21,Normal,2826,386,2,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -2827,2020-08-14,27031.58900918547,336,Urgent,2020-09-01,Abnormal,2827,72,0,24,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2828,2019-10-25,26980.60512297705,486,Urgent,2019-10-30,Abnormal,2828,135,3,4,,,,DISCHARGED -2829,2021-05-16,48894.47263732788,304,Emergency,2021-06-08,Inconclusive,2829,352,0,5,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2830,2020-10-25,10515.801093991136,152,Urgent,2020-11-17,Abnormal,2830,378,4,18,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -2831,2019-11-21,9761.832762325304,120,Emergency,2019-11-29,Inconclusive,2831,69,1,0,,,,DISCHARGED -2832,2023-01-16,4528.491505428123,168,Emergency,,Inconclusive,2832,424,4,26,,,,OPEN -2833,2019-01-31,31242.871058442517,207,Emergency,2019-02-05,Inconclusive,2833,486,2,15,,,,DISCHARGED -2834,2022-03-01,46816.62105667426,351,Urgent,2022-03-10,Normal,2834,195,0,27,,,,DISCHARGED -2835,2018-12-26,26844.0449133044,353,Urgent,2019-01-21,Abnormal,2835,268,0,17,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2836,2023-01-04,21779.60320819814,189,Urgent,2023-02-03,Abnormal,2836,48,3,23,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -2836,2020-05-26,25212.627820308808,138,Urgent,2020-06-07,Abnormal,7298,315,0,12,,,,DISCHARGED -2837,2018-12-17,31856.87977887301,215,Elective,2019-01-01,Normal,2837,129,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -2837,2022-03-23,48018.19666102654,486,Elective,2022-04-17,Normal,3735,443,2,9,,,,DISCHARGED -2838,2020-02-27,7904.1010750952655,396,Emergency,2020-03-26,Normal,2838,4,1,6,,,,DISCHARGED -2839,2021-11-26,37003.44607163002,357,Elective,2021-12-02,Inconclusive,2839,427,0,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2840,2019-01-15,45649.76302093756,386,Emergency,2019-01-30,Inconclusive,2840,26,1,12,,,,DISCHARGED -2841,2021-12-26,12891.22129736089,471,Urgent,2022-01-01,Inconclusive,2841,159,0,21,,,,DISCHARGED -2842,2023-03-01,13578.711484300047,392,Elective,2023-03-23,Normal,2842,148,2,15,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -2843,2022-03-18,14030.76062849755,455,Urgent,2022-04-10,Inconclusive,2843,263,4,23,,,,DISCHARGED -2844,2020-09-24,21443.490898680808,311,Elective,2020-10-03,Inconclusive,2844,229,2,19,,,,DISCHARGED -2845,2020-04-27,12491.093676735409,132,Urgent,2020-05-24,Abnormal,2845,199,1,21,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2846,2019-12-10,8796.601557896774,186,Elective,2019-12-11,Abnormal,2846,49,0,13,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2847,2023-06-09,5464.209064769407,113,Elective,2023-06-28,Normal,2847,66,1,10,,,,DISCHARGED -2848,2023-01-04,6450.504929151317,318,Elective,2023-01-06,Abnormal,2848,299,4,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -2849,2019-05-19,15313.068184883476,172,Urgent,2019-06-04,Inconclusive,2849,380,2,22,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2850,2021-10-30,40143.082341842855,381,Emergency,2021-11-05,Abnormal,2850,57,1,1,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -2851,2019-09-26,32516.334385182075,200,Elective,2019-09-30,Normal,2851,258,1,27,,,,DISCHARGED -2852,2021-05-16,42803.889037352754,136,Emergency,2021-05-17,Inconclusive,2852,341,4,7,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -2853,2022-10-17,47108.90130063329,494,Elective,2022-11-04,Inconclusive,2853,325,0,12,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2854,2019-01-20,46799.777271650906,425,Elective,2019-02-04,Inconclusive,2854,129,1,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -2854,2023-03-18,36258.23395184613,145,Urgent,2023-03-28,Abnormal,6895,214,4,11,,,,DISCHARGED -2856,2022-03-30,12004.67721803905,337,Urgent,2022-04-27,Inconclusive,2856,171,0,27,,,,DISCHARGED -2857,2021-01-29,41988.94962128474,224,Emergency,2021-01-30,Inconclusive,2857,257,0,7,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2858,2023-08-17,22916.32407791065,493,Urgent,2023-08-31,Abnormal,2858,101,2,15,,,,DISCHARGED -2859,2020-01-23,19355.54173786482,320,Urgent,2020-02-19,Normal,2859,208,4,17,,,,DISCHARGED -2860,2018-12-17,33447.1399745024,201,Elective,2019-01-06,Abnormal,2860,290,0,18,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -2861,2020-11-28,8178.68622069898,449,Elective,2020-12-14,Inconclusive,2861,353,2,27,,,,DISCHARGED -2862,2023-03-02,46353.77276306514,370,Elective,2023-03-23,Normal,2862,470,3,3,,,,DISCHARGED -2862,2023-03-23,1730.330943334328,220,Emergency,,Normal,7777,285,4,27,,,,OPEN -2863,2019-05-27,45267.70619719879,205,Emergency,2019-06-10,Normal,2863,115,3,24,,,,DISCHARGED -2864,2022-05-21,27623.26231415674,180,Elective,2022-06-07,Abnormal,2864,263,0,27,,,,DISCHARGED -2865,2021-04-26,33550.5374843005,423,Urgent,2021-05-04,Abnormal,2865,149,4,11,,,,DISCHARGED -2866,2021-09-25,10251.625538213197,143,Urgent,2021-10-20,Abnormal,2866,299,2,15,,,,DISCHARGED -2866,2021-10-14,28735.13569911025,169,Urgent,2021-11-07,Normal,7036,441,0,20,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2867,2023-09-08,17475.31606063893,196,Emergency,,Inconclusive,2867,35,4,21,,,,OPEN -2868,2022-11-28,20877.763427436632,147,Emergency,2022-11-30,Inconclusive,2868,452,4,16,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2869,2021-06-08,38288.98917188614,305,Emergency,2021-06-25,Normal,2869,332,3,3,,,,DISCHARGED -2870,2021-11-07,24307.581437633224,105,Urgent,2021-11-11,Normal,2870,476,0,29,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -2870,2020-08-14,28949.749529813616,473,Urgent,2020-08-24,Abnormal,3691,286,2,19,,,,DISCHARGED -2871,2019-04-09,31396.319126919603,343,Emergency,2019-04-13,Abnormal,2871,302,2,25,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2871,2021-07-29,26083.01225033725,414,Urgent,2021-08-06,Normal,6428,310,0,23,,,,DISCHARGED -2872,2020-02-25,33519.303331810224,157,Elective,2020-03-10,Abnormal,2872,207,0,23,,,,DISCHARGED -2873,2021-11-09,16980.91034772018,477,Emergency,2021-11-25,Abnormal,2873,105,1,25,,,,DISCHARGED -2874,2021-06-22,23020.70294219813,209,Emergency,2021-07-15,Inconclusive,2874,445,3,21,,,,DISCHARGED -2875,2022-03-11,16484.54752529387,187,Emergency,2022-03-27,Normal,2875,157,0,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2876,2023-08-05,42466.16284400199,288,Emergency,2023-09-02,Inconclusive,2876,120,0,8,,,,DISCHARGED -2877,2019-07-16,21022.123524873357,292,Elective,2019-07-22,Abnormal,2877,54,1,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2878,2021-05-06,34518.74037637507,397,Urgent,2021-05-23,Inconclusive,2878,399,1,16,,,,DISCHARGED -2879,2022-07-02,38326.46457880896,404,Emergency,2022-07-28,Abnormal,2879,11,4,16,,,,DISCHARGED -2880,2022-10-05,40479.25278872582,275,Elective,2022-10-28,Inconclusive,2880,144,2,1,,,,DISCHARGED -2881,2021-01-12,39433.90039493899,340,Emergency,2021-01-30,Inconclusive,2881,399,3,1,,,,DISCHARGED -2883,2018-12-22,46572.24114445912,224,Emergency,2018-12-24,Normal,2883,395,4,20,,,,DISCHARGED -2884,2022-01-05,9230.463305023608,286,Elective,2022-01-31,Normal,2884,135,0,22,,,,DISCHARGED -2885,2023-10-04,4956.577671849287,458,Elective,2023-10-24,Inconclusive,2885,467,1,6,,,,DISCHARGED -2886,2023-10-11,8964.129621558914,413,Urgent,2023-11-07,Inconclusive,2886,2,2,3,,,,DISCHARGED -2887,2019-01-04,1651.9871330403969,117,Elective,2019-01-19,Abnormal,2887,143,4,12,,,,DISCHARGED -2888,2020-08-04,37704.52516635386,446,Emergency,2020-08-23,Abnormal,2888,29,2,19,,,,DISCHARGED -2889,2018-11-30,23606.61067088948,108,Urgent,2018-12-08,Abnormal,2889,236,1,29,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2890,2019-03-10,26377.985266195625,407,Urgent,2019-03-18,Inconclusive,2890,278,4,29,,,,DISCHARGED -2891,2021-03-12,3862.2393896543545,418,Urgent,2021-03-31,Normal,2891,347,4,10,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2892,2022-05-24,9936.92661889724,171,Urgent,2022-06-09,Abnormal,2892,114,2,25,,,,DISCHARGED -2893,2019-09-30,22875.68440432815,325,Elective,2019-10-05,Normal,2893,103,1,2,,,,DISCHARGED -2894,2019-09-16,8846.782103493011,430,Elective,2019-10-09,Abnormal,2894,117,0,26,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2895,2021-10-20,47936.01113456638,269,Elective,2021-11-02,Normal,2895,4,4,1,,,,DISCHARGED -2896,2020-08-21,49803.71473897572,118,Emergency,2020-09-17,Inconclusive,2896,467,0,15,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2897,2023-09-05,25927.49593880047,371,Urgent,2023-09-11,Normal,2897,359,1,2,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2898,2022-06-28,30370.135745196323,421,Urgent,2022-07-06,Inconclusive,2898,247,4,23,,,,DISCHARGED -2900,2022-01-20,14293.146317552424,413,Emergency,2022-02-03,Inconclusive,2900,363,4,14,,,,DISCHARGED -2901,2022-02-25,10191.002019557587,117,Urgent,2022-03-06,Normal,2901,320,0,16,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2902,2022-11-03,28165.372595723635,480,Urgent,2022-11-25,Abnormal,2902,120,3,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -2903,2020-01-02,27415.693357581746,364,Urgent,2020-02-01,Normal,2903,285,0,19,,,,DISCHARGED -2904,2023-06-13,18985.31012916977,254,Urgent,,Inconclusive,2904,148,0,6,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -2905,2022-01-13,40427.3807535942,314,Emergency,2022-01-27,Abnormal,2905,83,3,15,,,,DISCHARGED -2906,2022-06-02,31042.06296651532,252,Urgent,2022-06-29,Inconclusive,2906,453,1,4,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2907,2019-03-28,1308.8484077804392,346,Urgent,2019-04-05,Abnormal,2907,405,1,1,,,,DISCHARGED -2908,2019-09-10,37754.94853173979,414,Urgent,2019-09-14,Normal,2908,465,4,0,,,,DISCHARGED -2909,2019-07-29,49212.9812360171,308,Emergency,2019-08-24,Normal,2909,455,2,21,,,,DISCHARGED -2910,2020-09-09,7459.49323585117,237,Elective,2020-10-08,Normal,2910,230,2,28,,,,DISCHARGED -2911,2023-08-09,22211.107042908337,312,Elective,2023-09-04,Inconclusive,2911,287,4,12,,,,DISCHARGED -2911,2020-11-18,26458.58566962557,248,Urgent,2020-11-19,Inconclusive,3603,160,2,15,,,,DISCHARGED -2912,2019-09-24,37405.92287708711,247,Emergency,2019-10-09,Abnormal,2912,271,0,4,,,,DISCHARGED -2913,2023-03-04,9217.289527898129,265,Urgent,2023-03-10,Abnormal,2913,459,0,2,,,,DISCHARGED -2914,2020-01-12,20931.26587187037,470,Elective,2020-01-28,Normal,2914,37,3,26,,,,DISCHARGED -2915,2023-07-20,16352.643999845086,175,Urgent,2023-08-15,Normal,2915,499,3,26,,,,DISCHARGED -2916,2022-11-29,42773.88259138329,276,Elective,2022-12-03,Inconclusive,2916,225,4,14,,,,DISCHARGED -2918,2023-04-06,34428.87396129534,121,Emergency,2023-04-17,Normal,2918,141,4,15,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2919,2021-08-05,41111.35104079901,443,Urgent,2021-08-21,Abnormal,2919,291,4,10,,,,DISCHARGED -2920,2021-01-18,3645.997971831631,419,Elective,2021-02-06,Inconclusive,2920,480,0,24,,,,DISCHARGED -2921,2020-09-05,30118.142401618472,424,Elective,2020-09-13,Inconclusive,2921,150,2,18,,,,DISCHARGED -2922,2020-03-21,32531.454667145452,248,Elective,2020-04-13,Inconclusive,2922,113,4,17,,,,DISCHARGED -2923,2021-05-20,43649.23443786718,343,Urgent,2021-06-02,Inconclusive,2923,236,4,20,,,,DISCHARGED -2924,2022-02-08,4717.099042758425,126,Elective,2022-03-01,Abnormal,2924,65,0,8,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2925,2022-08-19,35633.76284338245,459,Emergency,2022-09-14,Inconclusive,2925,360,0,7,,,,DISCHARGED -2926,2020-10-29,49898.927542721096,190,Elective,2020-11-12,Normal,2926,340,0,21,,,,DISCHARGED -2927,2020-02-08,44388.46307394095,440,Elective,2020-02-21,Normal,2927,257,2,18,,,,DISCHARGED -2928,2023-04-09,24087.163418228494,372,Elective,,Normal,2928,474,4,21,,,,OPEN -2929,2023-09-20,46291.895571682464,455,Emergency,2023-10-06,Normal,2929,248,1,4,,,,DISCHARGED -2930,2023-01-04,39987.97357068673,266,Urgent,2023-01-26,Abnormal,2930,456,1,16,,,,DISCHARGED -2931,2022-01-14,7056.4164803428375,174,Elective,2022-01-24,Inconclusive,2931,448,4,4,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2932,2019-09-29,37980.817859882816,123,Urgent,2019-10-05,Abnormal,2932,330,4,13,,,,DISCHARGED -2933,2021-06-22,24710.2079826386,233,Urgent,2021-06-24,Inconclusive,2933,322,4,6,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2934,2020-01-27,29834.35443890922,410,Emergency,2020-02-13,Normal,2934,179,4,8,,,,DISCHARGED -2935,2021-10-05,25632.673267018392,289,Emergency,2021-10-24,Abnormal,2935,189,2,27,,,,DISCHARGED -2936,2022-04-27,13709.624590316684,462,Emergency,2022-05-18,Inconclusive,2936,406,1,16,,,,DISCHARGED -2937,2023-02-27,1736.4236432338753,102,Elective,2023-03-25,Inconclusive,2937,153,3,2,,,,DISCHARGED -2938,2023-01-28,11724.463049729951,257,Urgent,,Normal,2938,195,1,7,,,,OPEN -2939,2021-06-05,31809.720508298837,155,Elective,2021-07-04,Inconclusive,2939,465,1,21,,,,DISCHARGED -2940,2020-11-09,32858.73727013121,257,Emergency,2020-11-18,Abnormal,2940,310,0,12,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -2941,2022-09-13,15646.44029877776,113,Elective,2022-10-13,Abnormal,2941,261,4,15,,,,DISCHARGED -2942,2020-02-10,18139.93530962089,478,Elective,2020-02-15,Inconclusive,2942,418,4,20,,,,DISCHARGED -2943,2022-11-24,49921.37336494804,366,Urgent,2022-12-09,Abnormal,2943,405,4,28,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -2944,2022-07-11,41198.5514592896,291,Urgent,2022-08-10,Abnormal,2944,426,0,9,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2945,2023-07-12,32157.769307478244,278,Urgent,,Normal,2945,142,2,17,,,,OPEN -2946,2019-09-02,18442.60092107172,413,Urgent,2019-09-07,Abnormal,2946,341,2,2,,,,DISCHARGED -2947,2021-05-19,5045.668652016222,289,Emergency,2021-05-22,Normal,2947,315,3,11,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2948,2018-12-28,11531.518732078912,336,Urgent,2019-01-03,Inconclusive,2948,100,2,15,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -2949,2023-01-20,41496.96074658107,137,Elective,2023-01-28,Inconclusive,2949,243,2,17,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2950,2022-09-21,47814.20577733297,284,Urgent,2022-10-06,Inconclusive,2950,489,4,16,,,,DISCHARGED -2951,2021-07-09,12349.93659393792,163,Elective,2021-08-01,Inconclusive,2951,11,1,6,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2953,2020-02-03,4311.02370718698,446,Emergency,2020-02-23,Inconclusive,2953,238,2,29,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2954,2022-02-02,35829.37346763172,384,Elective,2022-03-03,Normal,2954,48,2,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -2956,2021-08-24,40283.898745716295,483,Urgent,2021-08-29,Inconclusive,2956,41,0,22,,,,DISCHARGED -2957,2023-10-08,28993.967763989214,130,Urgent,2023-10-20,Abnormal,2957,165,3,27,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2958,2023-07-20,35376.93073958734,254,Urgent,2023-08-13,Inconclusive,2958,81,0,22,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -2959,2020-07-12,25777.582555139605,156,Urgent,2020-07-26,Inconclusive,2959,428,4,7,,,,DISCHARGED -2960,2020-04-19,30331.860738152325,182,Emergency,2020-05-07,Inconclusive,2960,290,1,16,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -2961,2021-06-13,36154.28019266695,225,Emergency,2021-06-20,Normal,2961,157,3,20,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2962,2020-09-01,12324.92302640782,168,Elective,2020-09-11,Normal,2962,215,0,25,,,,DISCHARGED -2963,2023-07-09,22270.7659790254,205,Elective,2023-07-10,Normal,2963,489,2,24,,,,DISCHARGED -2964,2020-10-06,4034.03849953964,488,Emergency,2020-10-08,Inconclusive,2964,157,2,27,,,,DISCHARGED -2965,2020-07-01,25005.57209349229,500,Emergency,2020-07-14,Inconclusive,2965,461,3,26,,,,DISCHARGED -2966,2022-11-14,26837.265500636124,116,Urgent,2022-12-09,Inconclusive,2966,133,2,6,,,,DISCHARGED -2967,2019-09-30,42939.52240904879,384,Elective,2019-10-13,Normal,2967,66,0,0,,,,DISCHARGED -2968,2020-04-13,9293.50028217882,201,Emergency,2020-05-05,Inconclusive,2968,335,0,7,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2969,2023-04-15,14824.89980965191,198,Emergency,2023-05-01,Inconclusive,2969,6,2,18,,,,DISCHARGED -2970,2023-09-28,9202.248026537109,466,Emergency,,Normal,2970,435,2,28,,,,OPEN -2971,2022-03-30,7963.098011735559,260,Elective,2022-04-27,Abnormal,2971,13,4,19,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2972,2019-10-03,8768.254699110723,247,Urgent,2019-10-17,Abnormal,2972,72,1,19,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -2973,2023-08-20,33484.65552824067,161,Urgent,,Normal,2973,398,3,9,,,,OPEN -2974,2019-10-23,44519.63025972372,212,Emergency,2019-10-24,Inconclusive,2974,404,0,29,,,,DISCHARGED -2975,2021-02-16,16290.493087858751,296,Urgent,2021-03-12,Abnormal,2975,162,3,11,,,,DISCHARGED -2976,2023-03-14,26604.24696035863,254,Urgent,,Normal,2976,65,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -2977,2022-11-09,44649.87567768599,309,Emergency,2022-11-17,Abnormal,2977,346,0,0,,,,DISCHARGED -2978,2020-10-07,39165.70608710915,185,Urgent,2020-10-12,Normal,2978,129,4,23,,,,DISCHARGED -2978,2020-05-07,28674.763844915786,297,Emergency,2020-05-21,Abnormal,5194,418,4,24,,,,DISCHARGED -2979,2022-04-18,46915.7452305632,294,Emergency,2022-04-26,Inconclusive,2979,465,2,24,,,,DISCHARGED -2980,2023-06-25,33605.78593977403,318,Urgent,,Abnormal,2980,205,3,20,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,OPEN -2981,2019-04-20,2486.420508579542,165,Emergency,2019-05-09,Inconclusive,2981,275,3,3,,,,DISCHARGED -2982,2020-10-27,4568.766167655131,494,Elective,2020-10-28,Normal,2982,465,2,3,,,,DISCHARGED -2983,2020-03-19,17559.644860598404,115,Urgent,2020-04-17,Normal,2983,255,3,8,,,,DISCHARGED -2984,2021-01-26,15883.043617516954,402,Urgent,2021-02-04,Inconclusive,2984,265,2,14,,,,DISCHARGED -2985,2019-10-28,18688.239896867817,476,Urgent,2019-11-05,Inconclusive,2985,24,0,23,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2986,2020-05-03,28184.960626964414,340,Elective,2020-05-13,Normal,2986,449,4,25,,,,DISCHARGED -2988,2023-08-23,34730.83651230212,176,Urgent,2023-09-04,Inconclusive,2988,280,4,14,,,,DISCHARGED -2989,2019-06-10,15386.09958245291,345,Emergency,2019-07-09,Inconclusive,2989,252,3,25,,,,DISCHARGED -2990,2020-01-23,31729.848348469197,393,Emergency,2020-02-07,Inconclusive,2990,309,1,27,,,,DISCHARGED -2991,2022-11-09,19160.38465223552,219,Urgent,2022-11-16,Inconclusive,2991,288,4,6,,,,DISCHARGED -2993,2021-01-31,21350.88825421756,324,Urgent,2021-02-22,Normal,2993,163,2,11,,,,DISCHARGED -2994,2019-04-04,44719.9041719709,416,Urgent,2019-04-25,Normal,2994,94,1,2,,,,DISCHARGED -2995,2022-12-14,31666.544633220117,441,Elective,2022-12-17,Normal,2995,269,1,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2996,2022-08-29,23486.27533506861,157,Emergency,2022-09-05,Abnormal,2996,320,4,8,,,,DISCHARGED -2997,2021-05-26,10983.650789386096,168,Emergency,2021-05-31,Inconclusive,2997,109,4,13,,,,DISCHARGED -2998,2023-05-08,29367.17656921782,118,Urgent,2023-06-03,Abnormal,2998,335,4,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2999,2021-05-12,43876.917738175616,381,Urgent,2021-05-26,Abnormal,2999,309,2,23,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3000,2019-06-09,24158.600282604948,404,Urgent,2019-06-17,Normal,3000,237,1,27,,,,DISCHARGED -3001,2020-07-09,41430.01352558279,168,Elective,2020-07-14,Normal,3001,380,3,11,,,,DISCHARGED -3002,2023-10-17,41937.62699737799,196,Emergency,2023-11-02,Normal,3002,435,2,0,,,,DISCHARGED -3003,2020-03-25,48989.22046630025,376,Urgent,2020-04-24,Inconclusive,3003,386,0,18,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -3004,2020-06-19,19040.481555131708,294,Elective,2020-07-12,Normal,3004,482,4,29,,,,DISCHARGED -3005,2020-02-18,36042.70485117828,474,Emergency,2020-03-07,Abnormal,3005,424,1,15,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3006,2023-08-20,34550.43838235001,469,Urgent,2023-08-29,Inconclusive,3006,389,2,11,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -3007,2022-09-21,4330.41714647144,473,Elective,2022-09-29,Abnormal,3007,24,0,9,,,,DISCHARGED -3008,2020-05-16,29209.807921145988,396,Elective,2020-05-30,Inconclusive,3008,140,2,1,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -3009,2020-08-03,2612.544949852821,229,Elective,2020-08-31,Abnormal,3009,116,2,17,,,,DISCHARGED -3010,2022-08-10,44846.01372505414,415,Elective,2022-09-07,Normal,3010,481,3,12,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -3013,2022-04-01,39846.67451964181,406,Urgent,2022-04-28,Inconclusive,3013,391,3,28,,,,DISCHARGED -3014,2019-08-01,9644.697645505625,368,Urgent,2019-08-14,Inconclusive,3014,404,2,23,,,,DISCHARGED -3015,2021-06-21,45919.72391326319,312,Elective,2021-07-06,Normal,3015,481,0,5,,,,DISCHARGED -3016,2020-03-04,13974.701100337184,358,Emergency,2020-03-29,Normal,3016,451,1,11,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -3017,2022-07-23,22654.54406538556,114,Elective,2022-08-16,Inconclusive,3017,24,1,27,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3018,2023-07-13,43873.6342400572,427,Elective,2023-07-28,Abnormal,3018,78,4,27,,,,DISCHARGED -3019,2023-01-18,44179.0017280507,198,Emergency,2023-01-22,Normal,3019,67,4,28,,,,DISCHARGED -3020,2020-06-25,24124.109892544548,176,Emergency,2020-07-21,Abnormal,3020,172,1,21,,,,DISCHARGED -3021,2020-01-07,1082.4447136181125,351,Elective,2020-02-06,Normal,3021,443,2,3,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3022,2020-12-22,22529.01843543141,139,Elective,2021-01-02,Inconclusive,3022,11,2,0,,,,DISCHARGED -3023,2023-09-25,19570.61366262392,106,Elective,2023-10-03,Inconclusive,3023,287,3,10,,,,DISCHARGED -3024,2022-02-05,10302.962830167777,469,Elective,2022-02-09,Inconclusive,3024,127,3,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3025,2021-06-15,38761.28250167328,478,Elective,2021-07-06,Inconclusive,3025,95,4,7,,,,DISCHARGED -3026,2022-03-07,14069.63712363104,138,Elective,2022-03-15,Abnormal,3026,91,1,1,,,,DISCHARGED -3027,2021-08-26,46055.67211962495,104,Elective,2021-09-04,Abnormal,3027,140,2,1,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3028,2023-03-27,12520.853260333426,472,Emergency,2023-04-26,Normal,3028,30,1,15,,,,DISCHARGED -3029,2020-12-24,31329.92940572952,405,Elective,2020-12-31,Normal,3029,333,0,0,,,,DISCHARGED -3030,2022-04-21,26946.720983773488,101,Emergency,2022-04-30,Abnormal,3030,19,1,3,,,,DISCHARGED -3031,2022-10-05,22196.970495364298,328,Emergency,2022-10-24,Inconclusive,3031,145,0,5,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -3033,2022-06-16,15531.123788191884,372,Urgent,2022-06-26,Normal,3033,476,3,29,,,,DISCHARGED -3034,2019-06-22,17636.398985765925,401,Elective,2019-07-14,Abnormal,3034,315,3,20,,,,DISCHARGED -3035,2020-01-11,45829.667726548585,424,Elective,2020-01-14,Abnormal,3035,446,4,19,,,,DISCHARGED -3036,2019-12-29,47631.02169520548,214,Elective,2020-01-03,Abnormal,3036,389,1,13,,,,DISCHARGED -3037,2020-02-19,37304.68656576952,193,Urgent,2020-03-01,Normal,3037,159,1,19,,,,DISCHARGED -3038,2019-04-13,33885.89268271875,436,Urgent,2019-05-02,Inconclusive,3038,348,0,25,,,,DISCHARGED -3039,2018-12-30,4516.035128277084,300,Emergency,2019-01-13,Abnormal,3039,42,3,14,,,,DISCHARGED -3040,2020-02-02,12227.695798175866,295,Urgent,2020-02-09,Normal,3040,253,0,6,,,,DISCHARGED -3041,2022-01-09,37183.292628563,362,Urgent,2022-02-05,Abnormal,3041,129,3,6,,,,DISCHARGED -3042,2023-07-15,18471.86869157152,411,Emergency,,Inconclusive,3042,59,0,17,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -3043,2021-07-13,45434.588371381615,230,Urgent,2021-08-05,Abnormal,3043,150,3,28,,,,DISCHARGED -3044,2022-11-23,48422.8873974993,210,Elective,2022-12-09,Inconclusive,3044,466,0,22,,,,DISCHARGED -3045,2022-09-29,27796.288193939152,191,Emergency,2022-10-23,Normal,3045,286,3,1,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -3046,2018-12-08,36491.20134196766,484,Elective,2019-01-05,Abnormal,3046,498,0,19,,,,DISCHARGED -3047,2019-06-03,36331.01260718015,396,Elective,2019-06-24,Inconclusive,3047,4,1,14,,,,DISCHARGED -3048,2019-10-31,19345.15411864992,470,Elective,2019-11-07,Abnormal,3048,466,4,0,,,,DISCHARGED -3049,2020-07-04,44240.44402929015,415,Emergency,2020-07-12,Normal,3049,417,0,20,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3050,2020-06-18,9501.933275648213,362,Emergency,2020-06-30,Inconclusive,3050,265,4,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -3051,2021-01-15,44132.58850675531,499,Elective,2021-01-21,Inconclusive,3051,344,1,19,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -3053,2022-07-19,27202.773196443453,366,Urgent,2022-07-27,Inconclusive,3053,129,1,28,,,,DISCHARGED -3054,2022-10-14,34218.87772413768,389,Elective,2022-10-29,Abnormal,3054,381,3,24,,,,DISCHARGED -3055,2020-10-07,21169.287555743744,273,Elective,2020-10-19,Inconclusive,3055,266,4,12,,,,DISCHARGED -3056,2023-04-24,45608.98980092845,197,Emergency,,Inconclusive,3056,177,2,11,,,,OPEN -3057,2022-05-25,39677.55395831862,391,Emergency,2022-05-27,Abnormal,3057,252,3,23,,,,DISCHARGED -3058,2020-06-07,30081.117853501204,305,Urgent,2020-06-22,Abnormal,3058,414,4,21,,,,DISCHARGED -3059,2021-10-31,4512.905076618146,393,Elective,2021-11-22,Abnormal,3059,55,0,14,,,,DISCHARGED -3060,2022-05-26,6118.350474381018,479,Emergency,2022-05-30,Inconclusive,3060,462,0,23,,,,DISCHARGED -3061,2020-08-06,25464.236363753706,207,Urgent,2020-08-07,Inconclusive,3061,456,1,4,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -3061,2021-12-10,35260.80851419215,354,Emergency,2021-12-24,Abnormal,6215,470,2,6,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -3062,2022-01-05,16702.28967673392,157,Urgent,2022-01-12,Abnormal,3062,82,0,7,,,,DISCHARGED -3063,2019-06-17,6110.906995852158,126,Elective,2019-07-05,Abnormal,3063,392,4,22,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3064,2020-05-21,49699.92253455233,360,Emergency,2020-06-15,Abnormal,3064,98,4,13,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3065,2023-07-20,49487.502458254734,319,Urgent,,Inconclusive,3065,148,0,3,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",OPEN -3066,2018-11-25,47765.64859521717,214,Elective,2018-11-26,Normal,3066,328,4,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -3066,2023-02-18,35560.58259917567,415,Elective,2023-03-16,Abnormal,7147,155,4,28,,,,DISCHARGED -3067,2019-08-29,15080.873436235446,238,Emergency,2019-08-30,Inconclusive,3067,189,1,13,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3068,2020-02-18,7144.92593178088,487,Urgent,2020-03-02,Normal,3068,493,2,9,,,,DISCHARGED -3069,2020-04-25,24602.97015105977,417,Urgent,2020-05-01,Normal,3069,370,1,21,,,,DISCHARGED -3070,2020-07-14,44042.33711524014,422,Elective,2020-07-22,Abnormal,3070,262,2,29,,,,DISCHARGED -3071,2021-08-18,10108.849771821002,457,Emergency,2021-08-23,Normal,3071,79,4,29,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -3072,2021-06-16,8961.954526506668,405,Elective,2021-07-09,Normal,3072,399,2,27,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3073,2020-04-25,46125.00841454958,493,Elective,2020-05-03,Inconclusive,3073,251,4,15,,,,DISCHARGED -3074,2022-01-22,27785.76388876017,428,Emergency,2022-02-08,Normal,3074,96,4,10,,,,DISCHARGED -3075,2022-01-20,42826.25894958083,117,Emergency,2022-02-16,Inconclusive,3075,259,1,21,,,,DISCHARGED -3076,2021-11-21,25079.72068040528,292,Urgent,2021-12-14,Abnormal,3076,259,1,28,,,,DISCHARGED -3077,2020-03-30,4298.073633218277,282,Elective,2020-04-16,Abnormal,3077,102,3,24,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -3078,2020-02-02,13673.859270371644,258,Emergency,2020-02-24,Abnormal,3078,39,0,25,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -3079,2023-04-04,1993.936016917022,479,Elective,2023-04-07,Inconclusive,3079,272,3,13,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -3080,2023-07-26,17599.515910295057,295,Elective,,Abnormal,3080,100,3,13,,,,OPEN -3081,2018-11-11,19391.59385320598,283,Emergency,2018-11-25,Normal,3081,358,2,1,,,,DISCHARGED -3082,2019-05-12,48441.32562710593,187,Emergency,2019-05-15,Inconclusive,3082,379,4,21,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3083,2022-08-06,29576.501329415467,197,Elective,2022-08-17,Abnormal,3083,307,4,12,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3085,2020-10-19,27346.34215391318,480,Urgent,2020-11-01,Abnormal,3085,220,4,2,,,,DISCHARGED -3086,2021-04-13,28656.611074002816,145,Urgent,2021-05-08,Abnormal,3086,307,0,29,,,,DISCHARGED -3088,2022-05-29,21414.90214783391,268,Elective,2022-06-21,Inconclusive,3088,419,2,17,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3089,2022-08-29,13205.213429925288,333,Urgent,2022-09-15,Inconclusive,3089,123,2,21,,,,DISCHARGED -3090,2020-12-20,8325.723314836521,459,Elective,2021-01-17,Inconclusive,3090,421,4,3,,,,DISCHARGED -3091,2022-09-21,23471.083129657563,371,Urgent,2022-09-25,Inconclusive,3091,230,3,20,,,,DISCHARGED -3092,2021-11-23,1845.2985382286452,126,Urgent,2021-11-25,Inconclusive,3092,177,0,20,,,,DISCHARGED -3093,2020-07-17,29164.569730894804,366,Urgent,2020-08-08,Abnormal,3093,62,3,18,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3094,2022-06-16,20038.57798367889,113,Elective,2022-06-19,Inconclusive,3094,484,1,15,,,,DISCHARGED -3095,2023-05-29,14920.932452963854,392,Emergency,2023-06-17,Inconclusive,3095,115,2,27,,,,DISCHARGED -3096,2023-02-08,5984.385715350033,477,Emergency,2023-02-26,Inconclusive,3096,190,2,3,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3097,2020-06-30,29685.348383780743,323,Elective,2020-07-26,Normal,3097,61,3,18,,,,DISCHARGED -3098,2020-07-27,13691.821196220128,206,Emergency,2020-08-06,Abnormal,3098,255,0,22,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3099,2023-07-13,16539.28341079875,138,Emergency,,Inconclusive,3099,482,2,14,,,,OPEN -3100,2019-05-20,3856.792000521451,390,Elective,2019-06-08,Abnormal,3100,6,3,0,,,,DISCHARGED -3101,2019-06-23,36110.69377074615,467,Elective,2019-07-20,Inconclusive,3101,154,0,15,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3102,2022-04-25,44180.09037128022,162,Elective,2022-05-02,Abnormal,3102,91,3,14,,,,DISCHARGED -3103,2020-07-30,44710.80778346803,274,Elective,2020-08-14,Inconclusive,3103,469,0,15,,,,DISCHARGED -3104,2021-06-15,45880.3180357337,148,Urgent,2021-07-09,Abnormal,3104,13,4,21,,,,DISCHARGED -3105,2019-08-31,26831.020331981643,286,Emergency,2019-09-12,Abnormal,3105,454,0,19,,,,DISCHARGED -3106,2019-09-03,2789.481060551187,110,Emergency,2019-09-08,Normal,3106,228,1,0,,,,DISCHARGED -3107,2020-05-14,12366.0143402873,253,Urgent,2020-05-30,Inconclusive,3107,85,4,16,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -3108,2023-07-30,29111.15311139416,246,Emergency,,Abnormal,3108,132,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -3109,2022-09-29,48112.9633141049,181,Elective,2022-10-19,Inconclusive,3109,182,4,29,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3110,2022-04-21,16107.21239207795,368,Elective,2022-05-17,Normal,3110,385,4,4,,,,DISCHARGED -3111,2021-03-26,31361.213328673588,195,Urgent,2021-04-22,Normal,3111,61,3,25,,,,DISCHARGED -3112,2020-06-24,11629.933807666624,212,Urgent,2020-07-21,Abnormal,3112,218,3,6,,,,DISCHARGED -3113,2019-08-05,25529.91324398358,475,Emergency,2019-08-28,Normal,3113,404,1,12,,,,DISCHARGED -3114,2022-03-17,41845.22454136264,423,Emergency,2022-03-26,Inconclusive,3114,245,3,11,,,,DISCHARGED -3115,2020-01-31,25843.909186557117,461,Urgent,2020-02-28,Abnormal,3115,229,2,3,,,,DISCHARGED -3115,2023-08-08,11839.734122631631,405,Elective,2023-09-03,Inconclusive,6537,78,2,29,,,,DISCHARGED -3116,2020-08-20,47546.80790379924,186,Urgent,2020-09-08,Abnormal,3116,148,1,24,,,,DISCHARGED -3117,2022-07-31,10689.521617328051,477,Urgent,2022-08-20,Inconclusive,3117,137,0,3,,,,DISCHARGED -3117,2022-01-03,25063.63101822934,438,Urgent,2022-01-09,Abnormal,5631,470,0,22,,,,DISCHARGED -3118,2019-07-04,5130.335389680576,467,Urgent,2019-07-18,Abnormal,3118,313,2,20,,,,DISCHARGED -3119,2020-05-29,25785.726314569,372,Urgent,2020-06-10,Inconclusive,3119,375,3,20,,,,DISCHARGED -3120,2023-07-03,49628.88362865496,149,Urgent,2023-07-09,Abnormal,3120,422,1,5,,,,DISCHARGED -3121,2019-05-19,10892.781978501498,254,Elective,2019-05-24,Normal,3121,388,0,23,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3122,2022-08-20,26507.87267420748,380,Emergency,2022-09-08,Abnormal,3122,64,0,14,,,,DISCHARGED -3122,2020-05-29,13026.56587594048,153,Elective,2020-06-27,Abnormal,5697,12,4,20,,,,DISCHARGED -3123,2019-10-28,4573.196281198502,234,Urgent,2019-11-24,Abnormal,3123,212,2,18,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -3124,2020-12-27,4567.635908501887,368,Urgent,2021-01-15,Normal,3124,473,3,5,,,,DISCHARGED -3125,2021-08-27,40970.2729576162,222,Urgent,2021-09-02,Normal,3125,241,1,29,,,,DISCHARGED -3126,2020-09-04,7792.578091689375,213,Emergency,2020-10-04,Normal,3126,492,0,11,,,,DISCHARGED -3127,2022-08-16,16305.762604435338,126,Emergency,2022-09-01,Inconclusive,3127,212,4,13,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3127,2022-08-04,44611.57088068633,359,Elective,2022-08-18,Abnormal,8196,180,2,17,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3128,2021-04-14,42606.41874967905,211,Emergency,2021-05-07,Inconclusive,3128,337,2,27,,,,DISCHARGED -3129,2020-06-24,46299.93837972343,320,Urgent,2020-07-21,Normal,3129,484,1,11,,,,DISCHARGED -3130,2022-10-07,22181.86539051473,301,Emergency,2022-10-30,Inconclusive,3130,172,0,23,,,,DISCHARGED -3131,2021-03-04,5276.057261871656,273,Elective,2021-03-25,Abnormal,3131,159,1,23,,,,DISCHARGED -3132,2019-11-29,14243.290672853327,303,Urgent,2019-12-18,Abnormal,3132,163,1,14,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3133,2021-06-22,45178.1949095743,365,Emergency,2021-07-12,Abnormal,3133,464,4,18,,,,DISCHARGED -3134,2021-03-28,28686.230988315205,198,Urgent,2021-04-04,Normal,3134,482,2,27,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3135,2021-04-06,23421.713367282933,296,Emergency,2021-04-12,Inconclusive,3135,496,3,7,,,,DISCHARGED -3136,2022-02-17,29503.44306549181,464,Elective,2022-02-28,Normal,3136,187,2,8,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3137,2021-10-16,13752.620285817738,298,Emergency,2021-11-11,Normal,3137,394,2,4,,,,DISCHARGED -3138,2020-09-17,12739.68886760918,482,Emergency,2020-09-26,Abnormal,3138,190,4,4,,,,DISCHARGED -3139,2022-05-09,25736.399042273544,143,Urgent,2022-06-02,Abnormal,3139,404,3,5,,,,DISCHARGED -3140,2021-11-04,20882.082372825043,110,Emergency,2021-11-26,Abnormal,3140,307,0,22,,,,DISCHARGED -3141,2023-08-10,24060.264332494145,361,Elective,,Abnormal,3141,255,3,2,,,,OPEN -3142,2020-04-19,11853.8753671024,144,Elective,2020-05-11,Abnormal,3142,182,0,4,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3143,2022-06-04,23286.747277142727,406,Emergency,2022-07-01,Abnormal,3143,116,3,0,,,,DISCHARGED -3145,2018-12-28,5301.168668052529,171,Emergency,2019-01-03,Abnormal,3145,281,1,10,,,,DISCHARGED -3146,2023-04-19,23855.890616892284,411,Emergency,2023-04-20,Abnormal,3146,195,3,25,,,,DISCHARGED -3147,2021-11-09,1009.4173268954232,491,Emergency,2021-11-15,Inconclusive,3147,33,4,20,,,,DISCHARGED -3148,2020-01-19,44533.03057844677,483,Urgent,2020-01-27,Normal,3148,51,0,19,,,,DISCHARGED -3149,2021-08-01,46283.58411492249,222,Urgent,2021-08-26,Abnormal,3149,111,2,0,,,,DISCHARGED -3150,2019-09-08,41482.51699787514,396,Emergency,2019-09-20,Inconclusive,3150,251,4,6,,,,DISCHARGED -3150,2022-04-17,42275.26743533238,240,Emergency,2022-05-08,Inconclusive,4264,81,0,14,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3151,2019-03-22,1585.7864332148283,223,Emergency,2019-04-16,Inconclusive,3151,231,0,16,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3152,2023-05-12,33544.429034004934,367,Elective,,Inconclusive,3152,226,2,28,,,,OPEN -3153,2021-06-02,28085.320523934377,387,Elective,2021-06-30,Normal,3153,232,1,7,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -3154,2023-06-23,33608.9744079182,387,Urgent,2023-07-19,Inconclusive,3154,220,4,29,,,,DISCHARGED -3155,2022-09-12,35522.495882133655,137,Elective,2022-10-09,Abnormal,3155,435,2,25,,,,DISCHARGED -3156,2021-07-02,44403.42406457306,226,Elective,2021-07-09,Abnormal,3156,412,2,27,,,,DISCHARGED -3156,2020-02-09,25327.09454938707,291,Elective,2020-02-18,Abnormal,7355,421,1,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3157,2022-10-30,19755.718355065816,254,Urgent,2022-11-26,Normal,3157,41,4,25,,,,DISCHARGED -3158,2019-02-04,2251.8982149833737,161,Emergency,2019-02-28,Normal,3158,20,2,12,,,,DISCHARGED -3159,2019-12-28,23482.818142155356,303,Emergency,2020-01-13,Inconclusive,3159,41,1,11,,,,DISCHARGED -3160,2020-07-26,5590.18573143374,121,Urgent,2020-08-03,Normal,3160,396,4,4,,,,DISCHARGED -3161,2020-05-22,42187.77989543769,328,Urgent,2020-06-10,Inconclusive,3161,112,3,12,,,,DISCHARGED -3162,2022-03-15,27887.520458215902,344,Urgent,2022-03-23,Normal,3162,104,0,5,,,,DISCHARGED -3163,2021-10-01,38020.68946207476,149,Elective,2021-10-04,Abnormal,3163,191,1,24,,,,DISCHARGED -3164,2020-01-13,33155.968159504744,166,Emergency,2020-01-28,Inconclusive,3164,16,0,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3165,2021-07-22,21152.556780714945,127,Elective,2021-08-01,Inconclusive,3165,119,3,29,,,,DISCHARGED -3166,2022-06-17,15797.127295506469,425,Emergency,2022-07-14,Inconclusive,3166,392,2,22,,,,DISCHARGED -3167,2021-04-15,23710.315085067414,418,Urgent,2021-04-27,Abnormal,3167,424,2,21,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3168,2021-04-17,25405.87141325083,349,Emergency,2021-05-04,Inconclusive,3168,128,4,20,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3169,2021-10-27,37885.40544481771,127,Emergency,2021-10-30,Inconclusive,3169,129,1,21,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -3170,2021-02-21,20725.284591065363,318,Elective,2021-03-07,Normal,3170,59,1,29,,,,DISCHARGED -3171,2022-01-01,22564.109614313336,403,Elective,2022-01-30,Normal,3171,47,4,10,,,,DISCHARGED -3172,2022-04-19,25217.78973513061,249,Urgent,2022-04-26,Abnormal,3172,28,0,3,,,,DISCHARGED -3174,2020-10-25,37797.67662244145,294,Elective,2020-11-08,Abnormal,3174,96,2,0,,,,DISCHARGED -3175,2021-11-29,41498.664297844734,171,Urgent,2021-12-06,Normal,3175,9,2,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3176,2021-02-19,35573.40891708377,356,Emergency,2021-03-01,Normal,3176,241,1,11,,,,DISCHARGED -3177,2019-07-15,30491.81722319993,113,Elective,2019-07-18,Inconclusive,3177,313,1,8,,,,DISCHARGED -3179,2020-08-26,29165.42831875853,171,Emergency,2020-09-12,Inconclusive,3179,443,4,10,,,,DISCHARGED -3180,2021-05-18,6779.595114468269,153,Elective,2021-06-09,Abnormal,3180,231,3,4,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3180,2023-06-22,8424.652221687034,239,Elective,,Abnormal,8996,276,0,23,,,,OPEN -3181,2022-03-06,10850.253817216151,261,Elective,2022-03-11,Abnormal,3181,283,3,6,,,,DISCHARGED -3182,2023-08-15,1046.9851593479789,167,Elective,2023-09-08,Normal,3182,202,3,7,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -3183,2020-07-05,15894.033974104748,114,Elective,2020-07-12,Normal,3183,246,1,0,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -3184,2020-11-08,20823.484544963747,254,Emergency,2020-12-02,Abnormal,3184,289,1,24,,,,DISCHARGED -3185,2019-11-19,13886.451403327366,344,Emergency,2019-12-04,Inconclusive,3185,263,1,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3186,2019-02-12,15710.353829840358,323,Urgent,2019-02-17,Normal,3186,442,3,2,,,,DISCHARGED -3187,2023-03-01,25961.30488418477,304,Elective,2023-03-17,Normal,3187,213,0,7,,,,DISCHARGED -3190,2020-04-30,44374.042747785854,113,Elective,2020-05-14,Normal,3190,199,1,27,,,,DISCHARGED -3191,2021-12-12,46664.288490969615,449,Elective,2021-12-26,Inconclusive,3191,432,2,10,,,,DISCHARGED -3192,2021-11-25,33266.7641262159,314,Elective,2021-12-13,Inconclusive,3192,78,0,0,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3193,2022-02-04,35328.78298808477,499,Elective,2022-02-08,Abnormal,3193,400,2,13,,,,DISCHARGED -3194,2020-04-13,30730.496854594345,341,Elective,2020-04-20,Abnormal,3194,443,0,0,,,,DISCHARGED -3195,2020-01-31,25308.38693229544,328,Emergency,2020-02-19,Abnormal,3195,342,1,5,,,,DISCHARGED -3196,2021-06-06,44957.68027934134,151,Emergency,2021-06-12,Normal,3196,343,4,20,,,,DISCHARGED -3197,2021-02-27,16486.72498509192,434,Elective,2021-03-26,Normal,3197,172,1,26,,,,DISCHARGED -3198,2022-01-06,17433.850826831138,496,Urgent,2022-01-31,Abnormal,3198,466,3,5,,,,DISCHARGED -3198,2019-01-06,48070.958802193374,486,Elective,2019-02-03,Inconclusive,4446,68,3,2,,,,DISCHARGED -3199,2020-03-16,42008.85626598571,391,Urgent,2020-04-02,Normal,3199,415,0,9,,,,DISCHARGED -3200,2018-12-25,41116.124766563495,411,Urgent,2019-01-11,Abnormal,3200,427,3,11,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3201,2022-06-12,39261.89574248604,326,Urgent,2022-07-12,Abnormal,3201,448,1,9,,,,DISCHARGED -3202,2021-06-26,17045.90059379294,440,Emergency,2021-07-25,Inconclusive,3202,86,2,21,,,,DISCHARGED -3203,2019-12-18,26799.03530934963,483,Elective,2020-01-12,Abnormal,3203,100,1,1,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -3203,2021-05-06,37784.22859772242,454,Elective,2021-05-15,Inconclusive,4905,7,0,23,,,,DISCHARGED -3204,2019-02-01,38038.8666966434,189,Urgent,2019-03-03,Inconclusive,3204,332,3,27,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3205,2020-02-11,35813.47918792423,159,Urgent,2020-02-26,Abnormal,3205,199,2,21,,,,DISCHARGED -3206,2020-03-06,31964.450065561323,414,Urgent,2020-03-08,Normal,3206,86,4,12,,,,DISCHARGED -3207,2022-10-01,31003.156018446414,185,Elective,2022-10-26,Inconclusive,3207,42,2,15,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3208,2022-08-31,21846.13325548399,148,Elective,2022-09-12,Normal,3208,384,2,12,,,,DISCHARGED -3209,2022-02-17,6872.285240259911,148,Urgent,2022-02-22,Inconclusive,3209,108,1,3,,,,DISCHARGED -3210,2018-12-20,21143.94367655722,148,Elective,2019-01-07,Inconclusive,3210,434,4,3,,,,DISCHARGED -3211,2023-10-29,38696.62195728593,416,Urgent,2023-11-21,Inconclusive,3211,407,0,29,,,,DISCHARGED -3211,2023-09-14,17635.30737141264,218,Emergency,,Abnormal,3904,482,0,10,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",OPEN -3212,2022-12-08,7524.227987602171,357,Urgent,2022-12-20,Abnormal,3212,151,2,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -3214,2019-06-26,31390.23324087279,277,Emergency,2019-06-28,Abnormal,3214,16,2,13,,,,DISCHARGED -3215,2022-08-18,29963.78499238094,189,Elective,2022-09-14,Normal,3215,132,3,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -3216,2021-06-26,29618.637058229506,481,Elective,2021-07-02,Inconclusive,3216,147,4,26,,,,DISCHARGED -3217,2023-10-12,8176.785845277339,351,Urgent,,Abnormal,3217,276,2,18,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -3218,2020-01-27,7643.983675466972,296,Urgent,2020-02-16,Abnormal,3218,231,3,21,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -3219,2020-12-28,26920.753145962422,387,Emergency,2021-01-05,Inconclusive,3219,313,4,24,,,,DISCHARGED -3220,2019-05-13,25826.76970732778,447,Elective,2019-06-03,Abnormal,3220,414,0,0,,,,DISCHARGED -3221,2019-11-21,37934.43767465431,398,Urgent,2019-11-29,Inconclusive,3221,365,3,4,,,,DISCHARGED -3222,2021-10-23,45608.85733652583,398,Emergency,2021-11-16,Normal,3222,227,4,16,,,,DISCHARGED -3223,2023-03-28,35336.88433296851,149,Emergency,2023-04-09,Inconclusive,3223,138,3,0,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3224,2022-05-30,27739.05806271692,446,Elective,2022-06-14,Abnormal,3224,435,2,18,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3225,2019-04-10,19356.0784987492,477,Emergency,2019-04-19,Inconclusive,3225,398,1,18,,,,DISCHARGED -3226,2020-12-22,1612.237218417031,176,Emergency,2021-01-12,Abnormal,3226,210,0,3,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -3227,2021-05-11,31903.5209190799,252,Urgent,2021-05-12,Abnormal,3227,390,2,18,,,,DISCHARGED -3228,2020-07-15,32396.286501804367,349,Elective,2020-08-11,Normal,3228,498,2,5,,,,DISCHARGED -3229,2020-11-26,3778.593154268119,480,Emergency,2020-12-02,Normal,3229,27,4,27,,,,DISCHARGED -3230,2023-07-03,20754.467414027484,295,Emergency,2023-07-30,Inconclusive,3230,50,3,14,,,,DISCHARGED -3231,2023-04-13,10043.651437862873,300,Elective,2023-04-29,Inconclusive,3231,490,0,3,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -3232,2022-03-25,27280.358469317664,422,Elective,2022-04-10,Abnormal,3232,441,2,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -3233,2021-04-16,27017.947867812283,158,Emergency,2021-05-14,Abnormal,3233,260,4,0,,,,DISCHARGED -3234,2023-06-04,26858.572337353293,276,Emergency,2023-06-25,Normal,3234,260,0,23,,,,DISCHARGED -3235,2020-05-12,1145.877640832507,150,Elective,2020-06-07,Inconclusive,3235,349,3,26,,,,DISCHARGED -3236,2019-11-27,23692.49057682341,367,Emergency,2019-12-23,Abnormal,3236,351,2,16,,,,DISCHARGED -3237,2020-01-24,16780.44610672707,243,Urgent,2020-02-07,Abnormal,3237,7,2,10,,,,DISCHARGED -3238,2022-05-28,43362.9686184271,261,Elective,2022-06-25,Abnormal,3238,319,2,16,,,,DISCHARGED -3239,2020-06-05,16281.956722566789,466,Emergency,2020-06-11,Normal,3239,137,0,22,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3240,2021-09-01,5788.0848081727545,441,Urgent,2021-09-25,Inconclusive,3240,37,0,0,,,,DISCHARGED -3241,2020-08-14,37410.32687199458,344,Urgent,2020-09-13,Inconclusive,3241,110,0,8,,,,DISCHARGED -3242,2021-03-14,35885.29313317176,437,Urgent,2021-04-03,Inconclusive,3242,479,0,13,,,,DISCHARGED -3243,2021-02-07,44840.63064748123,132,Elective,2021-02-19,Abnormal,3243,367,4,14,,,,DISCHARGED -3244,2021-03-17,21860.39386882744,271,Urgent,2021-04-14,Normal,3244,219,1,23,,,,DISCHARGED -3245,2023-04-18,28780.04652388887,429,Urgent,2023-04-22,Abnormal,3245,336,4,28,,,,DISCHARGED -3246,2021-12-31,16558.886768473873,360,Emergency,2022-01-08,Abnormal,3246,222,2,0,,,,DISCHARGED -3246,2022-04-25,24218.861075714183,297,Emergency,2022-05-06,Inconclusive,4428,135,4,1,,,,DISCHARGED -3247,2020-02-24,28045.761477925036,469,Emergency,2020-03-16,Normal,3247,255,3,17,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3249,2020-05-27,35716.00264524215,264,Emergency,2020-05-30,Inconclusive,3249,359,0,17,,,,DISCHARGED -3249,2022-03-30,15872.81414829999,286,Emergency,2022-04-03,Abnormal,9986,408,3,5,,,,DISCHARGED -3250,2020-06-26,10997.706493275358,386,Elective,2020-07-15,Abnormal,3250,328,3,19,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3251,2022-02-13,22619.041333271965,412,Emergency,2022-03-07,Abnormal,3251,449,2,7,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -3251,2019-02-28,40432.98923209701,179,Elective,2019-03-18,Normal,4470,462,0,0,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3252,2021-11-13,34738.4757393712,423,Emergency,2021-11-19,Inconclusive,3252,433,3,14,,,,DISCHARGED -3253,2019-05-12,23249.14331882182,332,Elective,2019-05-14,Inconclusive,3253,450,2,9,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3254,2020-04-01,21484.342749153264,150,Urgent,2020-04-20,Inconclusive,3254,48,0,29,,,,DISCHARGED -3255,2023-05-11,1933.5109491668584,426,Emergency,2023-05-15,Inconclusive,3255,291,1,3,,,,DISCHARGED -3256,2020-11-05,49985.97306779267,483,Elective,2020-11-12,Inconclusive,3256,381,2,9,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -3257,2022-11-12,21746.883196345665,367,Elective,2022-11-18,Normal,3257,323,4,10,,,,DISCHARGED -3258,2019-03-20,36072.20748168289,367,Urgent,2019-04-09,Inconclusive,3258,77,0,4,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3259,2022-09-03,37707.33098213853,413,Urgent,2022-09-09,Inconclusive,3259,104,3,8,,,,DISCHARGED -3260,2022-07-10,44380.9080284068,424,Urgent,2022-07-24,Abnormal,3260,168,3,4,,,,DISCHARGED -3261,2019-05-20,9321.657575635762,432,Emergency,2019-06-18,Normal,3261,216,4,28,,,,DISCHARGED -3262,2021-05-16,21978.42205595812,286,Emergency,2021-05-19,Inconclusive,3262,377,4,10,,,,DISCHARGED -3263,2020-06-29,41468.7173083189,233,Emergency,2020-07-09,Normal,3263,118,3,2,,,,DISCHARGED -3264,2019-03-05,47271.72979486815,293,Elective,2019-04-02,Normal,3264,189,0,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3265,2023-08-28,34564.10549295208,387,Urgent,2023-09-08,Abnormal,3265,254,2,3,,,,DISCHARGED -3266,2021-09-06,38613.98698003616,118,Elective,2021-09-15,Inconclusive,3266,369,4,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3266,2019-01-01,49957.99759953944,292,Emergency,2019-01-29,Inconclusive,4110,265,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -3267,2020-03-25,49511.294019079454,121,Elective,2020-03-31,Abnormal,3267,148,4,0,,,,DISCHARGED -3268,2021-09-26,47982.06903606661,259,Elective,2021-10-10,Inconclusive,3268,163,1,26,,,,DISCHARGED -3269,2023-09-12,18943.14387104386,307,Urgent,2023-09-19,Inconclusive,3269,139,0,5,,,,DISCHARGED -3270,2020-10-12,46362.20083499501,175,Urgent,2020-10-23,Abnormal,3270,346,0,7,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -3271,2019-05-21,12712.308484659714,383,Emergency,2019-06-19,Abnormal,3271,487,0,16,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3272,2022-03-25,49209.09795215244,380,Urgent,2022-04-02,Abnormal,3272,257,0,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -3273,2023-08-31,11349.820789752775,241,Emergency,2023-09-17,Normal,3273,373,0,6,,,,DISCHARGED -3274,2020-07-30,2852.6131636677305,388,Elective,2020-08-04,Inconclusive,3274,268,3,0,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -3275,2022-04-17,44888.79634589333,359,Elective,2022-04-26,Normal,3275,180,4,8,,,,DISCHARGED -3276,2019-08-17,24595.38528026276,371,Urgent,2019-08-24,Abnormal,3276,159,3,10,,,,DISCHARGED -3277,2023-10-14,22153.715664931697,244,Emergency,,Inconclusive,3277,350,1,18,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -3278,2022-03-10,37936.93276154094,288,Emergency,2022-03-11,Normal,3278,399,2,1,,,,DISCHARGED -3279,2021-05-31,36579.24363429243,367,Urgent,2021-06-30,Normal,3279,287,4,22,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -3280,2023-01-16,15313.4778265791,486,Elective,2023-02-05,Normal,3280,287,1,10,,,,DISCHARGED -3280,2022-01-08,2380.100783268822,470,Emergency,2022-02-05,Abnormal,6742,379,3,2,,,,DISCHARGED -3281,2019-01-16,30202.861642866203,257,Elective,2019-02-14,Abnormal,3281,225,2,16,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -3282,2022-05-02,24806.442863916604,376,Urgent,2022-05-20,Inconclusive,3282,10,1,9,,,,DISCHARGED -3283,2020-06-27,27613.975868401776,387,Elective,2020-07-19,Normal,3283,9,2,28,,,,DISCHARGED -3284,2022-12-08,22323.95941982574,416,Emergency,2022-12-10,Normal,3284,270,1,2,,,,DISCHARGED -3284,2019-07-14,20926.057966476288,341,Urgent,2019-08-06,Abnormal,8218,272,3,21,,,,DISCHARGED -3285,2019-04-12,22487.78681810708,337,Elective,2019-05-10,Abnormal,3285,423,2,2,,,,DISCHARGED -3286,2019-03-16,42479.67310893866,220,Elective,2019-04-06,Normal,3286,401,1,20,,,,DISCHARGED -3287,2018-11-22,26035.83638245789,481,Urgent,2018-12-02,Normal,3287,182,3,24,,,,DISCHARGED -3288,2023-05-27,18632.7174024214,321,Emergency,,Normal,3288,456,4,6,,,,OPEN -3289,2021-01-22,35234.444848625804,128,Emergency,2021-02-10,Normal,3289,152,3,1,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3290,2022-04-14,39291.231857185056,189,Urgent,2022-05-02,Inconclusive,3290,487,3,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3291,2018-12-21,47546.91601522359,453,Emergency,2019-01-05,Normal,3291,314,4,6,,,,DISCHARGED -3292,2022-10-14,48871.14301327921,101,Elective,2022-11-11,Normal,3292,333,3,19,,,,DISCHARGED -3295,2019-12-20,33491.07965974133,403,Elective,2020-01-09,Inconclusive,3295,123,4,10,,,,DISCHARGED -3296,2019-04-20,46585.34261721746,275,Emergency,2019-04-27,Abnormal,3296,472,4,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3297,2020-05-30,32681.48042414797,344,Elective,2020-06-04,Abnormal,3297,113,4,5,,,,DISCHARGED -3298,2021-04-22,4337.817550636108,346,Emergency,2021-05-06,Abnormal,3298,277,1,22,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3299,2022-05-21,27076.130766129187,264,Urgent,2022-06-18,Inconclusive,3299,499,2,3,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3300,2023-03-18,18821.827901947134,370,Urgent,2023-04-03,Abnormal,3300,413,1,18,,,,DISCHARGED -3301,2023-09-24,28122.19239722501,197,Emergency,2023-10-06,Abnormal,3301,467,4,27,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3302,2019-07-04,20925.57709484806,298,Urgent,2019-07-24,Abnormal,3302,212,2,20,,,,DISCHARGED -3303,2019-10-25,1227.6039151182374,190,Emergency,2019-11-05,Abnormal,3303,171,2,18,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3304,2021-02-10,31720.515822983893,272,Emergency,2021-02-21,Inconclusive,3304,287,4,13,,,,DISCHARGED -3305,2022-11-26,44452.49446864677,124,Urgent,2022-12-12,Abnormal,3305,434,2,2,,,,DISCHARGED -3306,2022-02-27,30133.778539861065,312,Urgent,2022-03-10,Abnormal,3306,173,2,3,,,,DISCHARGED -3307,2018-11-18,4607.047668176925,445,Emergency,2018-12-09,Inconclusive,3307,112,1,7,,,,DISCHARGED -3308,2019-04-27,28162.53906005136,419,Emergency,2019-05-02,Inconclusive,3308,375,2,17,,,,DISCHARGED -3309,2023-03-20,46240.92065486389,114,Urgent,,Inconclusive,3309,404,4,3,,,,OPEN -3310,2019-02-10,41960.70599802526,109,Emergency,2019-02-21,Inconclusive,3310,482,0,10,,,,DISCHARGED -3311,2019-08-25,4289.620748686794,377,Urgent,2019-09-22,Abnormal,3311,121,0,15,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3312,2020-06-15,30497.66708151659,183,Elective,2020-07-09,Abnormal,3312,31,0,2,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -3313,2022-01-13,33755.70476370381,107,Urgent,2022-01-25,Inconclusive,3313,221,4,6,,,,DISCHARGED -3314,2022-07-04,7834.138644823199,238,Elective,2022-07-30,Abnormal,3314,118,0,1,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3316,2020-06-23,19678.71421028297,149,Urgent,2020-07-11,Inconclusive,3316,38,1,0,,,,DISCHARGED -3317,2020-02-14,26120.29932490252,313,Urgent,2020-03-06,Inconclusive,3317,496,4,25,,,,DISCHARGED -3318,2020-10-28,23939.362734829123,457,Elective,2020-11-05,Inconclusive,3318,267,4,0,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -3319,2020-10-01,8916.915981115784,131,Elective,2020-10-07,Inconclusive,3319,232,4,5,,,,DISCHARGED -3319,2020-06-24,2575.063002420585,376,Emergency,2020-07-09,Inconclusive,9437,430,2,18,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3320,2023-01-11,13483.062064452874,114,Urgent,2023-02-05,Abnormal,3320,17,2,6,,,,DISCHARGED -3321,2022-09-06,19626.485714965373,443,Urgent,2022-09-30,Normal,3321,148,2,23,,,,DISCHARGED -3322,2023-06-22,33908.994881456034,180,Emergency,2023-07-06,Abnormal,3322,396,3,4,,,,DISCHARGED -3323,2021-04-07,14498.121478433712,463,Urgent,2021-05-05,Inconclusive,3323,148,1,20,,,,DISCHARGED -3324,2020-08-10,33009.32817895975,111,Emergency,2020-09-07,Normal,3324,125,4,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -3325,2020-10-14,13229.084373129046,107,Urgent,2020-10-18,Normal,3325,391,4,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3326,2021-02-11,43771.48296945317,379,Urgent,2021-02-17,Normal,3326,301,2,23,,,,DISCHARGED -3327,2022-07-17,26068.122441270298,407,Elective,2022-07-27,Normal,3327,359,4,25,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3328,2021-03-04,32462.985066348632,355,Emergency,2021-03-10,Abnormal,3328,237,4,12,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3329,2021-01-09,17961.348523114542,311,Urgent,2021-01-21,Inconclusive,3329,134,0,0,,,,DISCHARGED -3330,2020-03-07,2249.4609234150203,358,Emergency,2020-04-03,Inconclusive,3330,150,4,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3330,2022-01-22,12229.38466040464,239,Emergency,2022-02-18,Abnormal,9068,235,3,8,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -3331,2019-04-06,10805.149953848457,330,Urgent,2019-04-24,Abnormal,3331,223,2,16,,,,DISCHARGED -3332,2020-12-25,20494.196815928663,145,Urgent,2021-01-05,Inconclusive,3332,202,1,0,,,,DISCHARGED -3333,2020-07-16,37737.13121588702,203,Urgent,2020-07-24,Inconclusive,3333,255,1,0,,,,DISCHARGED -3334,2022-01-18,39381.22252563776,109,Emergency,2022-02-14,Normal,3334,85,0,6,,,,DISCHARGED -3335,2019-06-23,47682.625945160245,116,Elective,2019-07-02,Inconclusive,3335,149,1,3,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -3336,2020-02-02,31911.055694805946,363,Urgent,2020-02-11,Inconclusive,3336,234,1,27,,,,DISCHARGED -3337,2020-07-10,29472.41757198453,272,Urgent,2020-07-11,Normal,3337,344,2,22,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -3338,2020-09-03,5864.301727790382,172,Emergency,2020-09-16,Abnormal,3338,21,2,20,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3339,2022-10-03,10410.225886704982,412,Emergency,2022-10-08,Abnormal,3339,347,3,11,,,,DISCHARGED -3340,2022-10-27,24366.91470782687,331,Urgent,2022-11-08,Inconclusive,3340,284,0,15,,,,DISCHARGED -3341,2019-02-27,49347.616196905896,295,Urgent,2019-03-27,Normal,3341,268,1,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3342,2021-09-15,30127.933209010487,130,Emergency,2021-09-28,Inconclusive,3342,465,3,22,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3343,2023-09-13,30418.75143235032,353,Emergency,2023-09-17,Abnormal,3343,257,0,9,,,,DISCHARGED -3344,2019-03-23,4754.908285145275,121,Elective,2019-04-13,Normal,3344,28,1,13,,,,DISCHARGED -3346,2019-04-20,16965.886405992394,248,Emergency,2019-04-24,Inconclusive,3346,212,1,6,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -3347,2022-06-07,16259.79909830879,356,Urgent,2022-07-06,Normal,3347,462,2,3,,,,DISCHARGED -3348,2020-10-21,30799.23484824942,436,Elective,2020-10-25,Abnormal,3348,435,4,1,,,,DISCHARGED -3349,2021-10-18,13437.253293594791,420,Elective,2021-10-22,Normal,3349,282,0,23,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3350,2021-06-19,34172.76394831471,473,Elective,2021-07-05,Inconclusive,3350,49,1,17,,,,DISCHARGED -3351,2020-05-10,31681.84172558551,294,Elective,2020-05-20,Inconclusive,3351,94,0,15,,,,DISCHARGED -3352,2019-04-20,33151.89825973076,374,Emergency,2019-05-03,Abnormal,3352,462,3,8,,,,DISCHARGED -3353,2022-10-27,20578.953671631123,420,Urgent,2022-10-29,Inconclusive,3353,498,3,4,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3354,2020-11-22,11929.801861130089,252,Emergency,2020-12-04,Inconclusive,3354,406,4,8,,,,DISCHARGED -3355,2020-05-23,5271.6898727734,284,Urgent,2020-06-13,Normal,3355,87,1,24,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3355,2019-02-25,3618.873750814807,459,Emergency,2019-03-01,Abnormal,7613,43,2,29,,,,DISCHARGED -3356,2022-01-13,46601.3223375237,174,Emergency,2022-01-28,Abnormal,3356,460,1,7,,,,DISCHARGED -3357,2021-10-26,45501.135081265245,273,Emergency,2021-11-09,Abnormal,3357,277,0,23,,,,DISCHARGED -3358,2019-03-22,45556.40566105657,159,Emergency,2019-03-30,Inconclusive,3358,170,3,19,,,,DISCHARGED -3358,2021-06-17,20322.99962739144,228,Elective,2021-07-02,Normal,7950,420,0,15,,,,DISCHARGED -3359,2020-09-06,15614.23985479929,308,Emergency,2020-09-12,Normal,3359,188,4,29,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -3360,2021-06-14,44504.92691274109,269,Elective,2021-06-15,Normal,3360,352,3,19,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -3361,2020-07-14,4903.778959452355,488,Urgent,2020-08-01,Inconclusive,3361,183,2,29,,,,DISCHARGED -3362,2022-01-25,11024.277548579958,302,Elective,2022-02-05,Abnormal,3362,2,3,17,,,,DISCHARGED -3363,2019-09-07,25348.498391827416,188,Urgent,2019-09-26,Inconclusive,3363,190,1,3,,,,DISCHARGED -3364,2020-04-03,37499.03246019616,260,Elective,2020-04-11,Inconclusive,3364,117,1,15,,,,DISCHARGED -3365,2023-02-26,3683.327487350728,378,Urgent,,Abnormal,3365,18,3,3,,,,OPEN -3366,2020-06-12,11405.333373376972,468,Emergency,2020-07-09,Abnormal,3366,22,4,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -3368,2023-05-10,6385.646035112982,278,Emergency,,Inconclusive,3368,412,1,2,,,,OPEN -3369,2021-05-01,41165.99414208907,280,Urgent,2021-05-28,Normal,3369,29,1,17,,,,DISCHARGED -3370,2021-01-04,1346.9296207404268,253,Urgent,2021-01-29,Inconclusive,3370,294,2,14,,,,DISCHARGED -3371,2020-04-25,12971.732636648836,300,Elective,2020-05-21,Inconclusive,3371,107,3,7,,,,DISCHARGED -3372,2021-11-02,40362.818512292906,399,Urgent,2021-11-16,Normal,3372,366,1,17,,,,DISCHARGED -3373,2022-04-21,4827.084342925591,371,Urgent,2022-04-23,Inconclusive,3373,280,4,23,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -3374,2022-03-21,26535.500058773512,191,Elective,2022-03-28,Abnormal,3374,127,0,22,,,,DISCHARGED -3375,2021-05-26,2215.2984504560272,169,Emergency,2021-06-12,Abnormal,3375,228,3,2,,,,DISCHARGED -3376,2022-05-24,18219.253441754143,270,Emergency,2022-06-17,Normal,3376,110,2,5,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3377,2020-01-27,17174.92757903986,215,Urgent,2020-02-03,Abnormal,3377,135,1,21,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -3378,2022-02-21,29519.277261243755,343,Elective,2022-03-22,Inconclusive,3378,361,4,25,,,,DISCHARGED -3380,2020-08-24,38418.635192447255,430,Urgent,2020-08-29,Normal,3380,185,3,29,,,,DISCHARGED -3381,2019-07-31,18476.21528771605,205,Emergency,2019-08-22,Inconclusive,3381,143,4,20,,,,DISCHARGED -3382,2022-09-24,17248.00592975247,499,Urgent,2022-10-17,Normal,3382,71,4,28,,,,DISCHARGED -3383,2019-07-17,20851.89997296965,391,Elective,2019-07-25,Normal,3383,128,2,23,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3383,2020-04-10,4936.911423895342,452,Emergency,2020-04-22,Normal,7093,363,3,14,,,,DISCHARGED -3384,2019-11-25,40278.11343001168,205,Elective,2019-12-02,Abnormal,3384,260,1,26,,,,DISCHARGED -3385,2021-01-30,41052.037806294815,300,Urgent,2021-02-22,Inconclusive,3385,2,2,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -3386,2018-12-13,34011.70946146866,331,Elective,2019-01-02,Abnormal,3386,448,1,4,,,,DISCHARGED -3387,2019-05-06,17217.398862575814,134,Urgent,2019-06-04,Inconclusive,3387,387,0,6,,,,DISCHARGED -3388,2021-09-25,10331.947838351234,344,Emergency,2021-09-29,Inconclusive,3388,103,4,21,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -3389,2023-07-15,8019.14606215162,175,Urgent,,Inconclusive,3389,482,0,26,,,,OPEN -3390,2022-03-14,16852.487836405468,149,Urgent,2022-03-17,Abnormal,3390,223,4,14,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -3391,2022-02-24,15064.14030760482,278,Elective,2022-03-09,Normal,3391,319,2,6,,,,DISCHARGED -3392,2023-07-09,16996.192397843213,411,Emergency,2023-07-31,Inconclusive,3392,361,1,12,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -3393,2020-09-19,36409.72082430181,216,Urgent,2020-09-21,Inconclusive,3393,353,1,24,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3394,2021-11-28,33388.11618449382,138,Elective,2021-12-27,Abnormal,3394,490,2,2,,,,DISCHARGED -3395,2021-04-10,45614.48039475993,390,Urgent,2021-05-07,Normal,3395,472,3,25,,,,DISCHARGED -3395,2022-04-16,23141.40317446856,319,Emergency,2022-04-27,Abnormal,7470,9,0,22,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3397,2019-10-08,46948.22518324076,167,Emergency,2019-10-12,Inconclusive,3397,404,0,12,,,,DISCHARGED -3398,2022-11-22,2017.8978177102272,278,Emergency,2022-12-11,Normal,3398,383,1,25,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3399,2022-05-11,4019.06892792972,298,Elective,2022-06-04,Abnormal,3399,301,1,2,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3400,2022-05-31,8840.70046360333,344,Elective,2022-06-21,Abnormal,3400,230,1,28,,,,DISCHARGED -3401,2020-01-17,43882.82254266742,483,Urgent,2020-02-13,Inconclusive,3401,218,2,1,,,,DISCHARGED -3402,2019-03-24,20021.302087784225,432,Elective,2019-04-20,Normal,3402,410,3,27,,,,DISCHARGED -3403,2020-05-15,35072.498577446066,295,Elective,2020-06-03,Abnormal,3403,65,0,22,,,,DISCHARGED -3404,2020-12-15,23197.90607450162,183,Urgent,2021-01-12,Abnormal,3404,424,4,3,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3405,2020-12-20,15482.1718780235,252,Urgent,2020-12-22,Abnormal,3405,111,2,16,,,,DISCHARGED -3406,2019-03-18,1952.487604996448,231,Urgent,2019-03-30,Inconclusive,3406,12,0,5,,,,DISCHARGED -3407,2022-10-11,39019.48505366825,106,Emergency,2022-11-01,Abnormal,3407,392,3,10,,,,DISCHARGED -3408,2020-03-19,46709.076193386536,189,Emergency,2020-04-08,Abnormal,3408,499,2,5,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3409,2022-01-30,44204.36114992489,147,Elective,2022-01-31,Inconclusive,3409,419,0,21,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -3409,2020-09-22,34982.69465838882,263,Urgent,2020-10-17,Normal,7576,85,2,1,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3410,2022-10-30,32854.79718764628,313,Elective,2022-11-07,Inconclusive,3410,233,0,16,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -3411,2021-10-09,2048.205472466396,296,Elective,2021-10-13,Inconclusive,3411,89,0,2,,,,DISCHARGED -3412,2023-10-17,22962.31849695047,101,Elective,2023-10-27,Abnormal,3412,313,3,11,,,,DISCHARGED -3413,2022-11-26,5963.308402943647,348,Emergency,2022-12-26,Normal,3413,53,4,13,,,,DISCHARGED -3414,2021-03-12,25369.69510495335,183,Urgent,2021-03-31,Abnormal,3414,11,3,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3414,2019-01-29,8296.299322392893,308,Urgent,2019-02-04,Normal,9992,208,0,21,,,,DISCHARGED -3415,2019-11-15,2371.278983582703,279,Emergency,2019-11-22,Normal,3415,461,2,28,,,,DISCHARGED -3416,2019-03-14,15863.133289090902,274,Urgent,2019-03-29,Inconclusive,3416,13,3,27,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3416,2018-11-24,11617.56767336844,426,Emergency,2018-11-25,Abnormal,4162,120,4,21,,,,DISCHARGED -3417,2019-05-14,6252.471533099777,239,Emergency,2019-05-25,Normal,3417,417,0,28,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3418,2021-12-29,2507.6013532535844,489,Emergency,2022-01-18,Normal,3418,436,3,4,,,,DISCHARGED -3419,2019-02-28,43455.8076439202,118,Urgent,2019-03-24,Abnormal,3419,376,3,9,,,,DISCHARGED -3420,2022-06-26,17890.770585794602,128,Emergency,2022-06-27,Normal,3420,19,3,9,,,,DISCHARGED -3421,2023-04-09,39676.38444899642,350,Elective,2023-04-30,Abnormal,3421,74,3,20,,,,DISCHARGED -3422,2020-02-25,45324.349638153406,251,Elective,2020-03-11,Normal,3422,399,2,8,,,,DISCHARGED -3423,2022-08-15,38251.78008022902,122,Emergency,2022-09-07,Normal,3423,242,4,29,,,,DISCHARGED -3424,2019-12-08,26962.288220535254,323,Emergency,2019-12-15,Inconclusive,3424,222,4,20,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -3426,2020-01-31,19925.44145566827,432,Elective,2020-03-01,Normal,3426,69,0,12,,,,DISCHARGED -3427,2023-04-04,12532.312544371944,210,Elective,2023-04-05,Normal,3427,311,1,9,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3428,2019-01-11,3411.6073048931976,476,Urgent,2019-01-29,Inconclusive,3428,210,2,5,,,,DISCHARGED -3429,2023-08-20,36237.93656006117,179,Emergency,2023-08-21,Inconclusive,3429,100,0,10,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3430,2023-03-27,20416.742967794256,236,Urgent,2023-04-04,Abnormal,3430,185,0,3,,,,DISCHARGED -3432,2019-05-09,12704.57810572576,325,Emergency,2019-05-28,Abnormal,3432,131,3,25,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3433,2022-10-27,14186.494485330904,140,Emergency,2022-11-20,Inconclusive,3433,110,1,13,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3434,2020-10-29,23041.23875125717,287,Elective,2020-11-17,Normal,3434,380,1,29,,,,DISCHARGED -3435,2020-06-18,12257.282496483933,143,Elective,2020-06-24,Inconclusive,3435,131,2,16,,,,DISCHARGED -3436,2019-11-23,33724.93638261652,290,Emergency,2019-11-25,Abnormal,3436,19,1,19,,,,DISCHARGED -3437,2021-04-13,36207.40850740152,458,Elective,2021-04-27,Normal,3437,393,0,1,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -3438,2020-04-27,1540.8688562790214,408,Emergency,2020-05-21,Normal,3438,23,1,9,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3439,2020-01-06,3278.53845376364,117,Elective,2020-01-19,Inconclusive,3439,226,1,2,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3440,2023-07-04,1892.9675834340032,137,Emergency,2023-07-14,Normal,3440,153,4,6,,,,DISCHARGED -3441,2021-04-01,7051.331643394086,213,Emergency,2021-04-26,Abnormal,3441,292,0,6,,,,DISCHARGED -3442,2022-03-20,42573.01719112629,110,Urgent,2022-04-01,Normal,3442,229,1,0,,,,DISCHARGED -3443,2021-12-12,12656.469603455684,351,Elective,2021-12-19,Inconclusive,3443,468,1,7,,,,DISCHARGED -3444,2023-04-22,40753.34130488418,498,Elective,2023-05-10,Abnormal,3444,309,3,22,,,,DISCHARGED -3445,2023-05-12,38405.2173961076,386,Urgent,2023-06-08,Inconclusive,3445,487,1,0,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3446,2020-05-25,48338.53312087533,435,Elective,2020-06-21,Inconclusive,3446,358,1,7,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3447,2023-04-12,12863.313947483624,191,Urgent,2023-05-12,Abnormal,3447,404,4,13,,,,DISCHARGED -3448,2023-08-04,19322.99752144369,107,Urgent,2023-08-25,Normal,3448,201,0,13,,,,DISCHARGED -3449,2022-01-15,22293.33879360042,121,Urgent,2022-01-17,Abnormal,3449,37,2,1,,,,DISCHARGED -3450,2021-11-12,6340.089525400204,137,Emergency,2021-11-27,Normal,3450,429,0,7,,,,DISCHARGED -3451,2022-09-02,38190.55689690292,245,Urgent,2022-09-17,Abnormal,3451,259,3,18,,,,DISCHARGED -3452,2021-06-02,25682.71965319057,349,Emergency,2021-06-21,Abnormal,3452,187,0,9,,,,DISCHARGED -3453,2022-11-05,12905.961480710326,343,Emergency,2022-11-18,Normal,3453,56,1,6,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3454,2020-08-05,21495.44109921497,457,Elective,2020-08-18,Abnormal,3454,428,3,12,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3455,2019-03-01,6791.321000931511,187,Emergency,2019-03-09,Inconclusive,3455,19,0,21,,,,DISCHARGED -3456,2021-08-18,40407.452604081256,195,Elective,2021-08-23,Abnormal,3456,272,3,20,,,,DISCHARGED -3457,2022-09-10,16994.270191740652,176,Elective,2022-09-25,Inconclusive,3457,118,2,14,,,,DISCHARGED -3458,2023-02-28,45600.41159706999,171,Elective,2023-03-13,Abnormal,3458,70,0,10,,,,DISCHARGED -3459,2020-03-21,44953.29392391745,122,Emergency,2020-04-18,Normal,3459,3,1,25,,,,DISCHARGED -3460,2021-11-21,48000.46141702045,330,Elective,2021-12-05,Normal,3460,220,3,13,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -3461,2019-12-07,17213.31777812114,157,Elective,2019-12-21,Abnormal,3461,13,4,10,,,,DISCHARGED -3462,2019-06-21,48620.84366402592,143,Urgent,2019-06-28,Normal,3462,2,3,1,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3463,2020-08-14,8983.024205208314,158,Elective,2020-09-09,Normal,3463,215,4,1,,,,DISCHARGED -3464,2019-01-05,4312.460671897877,249,Elective,2019-01-25,Normal,3464,228,1,28,,,,DISCHARGED -3465,2022-01-24,44456.83018969525,406,Urgent,2022-02-05,Abnormal,3465,335,2,11,,,,DISCHARGED -3466,2022-01-22,45537.48490740536,268,Emergency,2022-01-29,Inconclusive,3466,185,4,14,,,,DISCHARGED -3467,2019-12-24,28045.685027115527,380,Elective,2020-01-01,Normal,3467,54,2,16,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3468,2022-12-06,48965.44033912504,424,Emergency,2022-12-27,Abnormal,3468,499,3,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3468,2022-09-22,45282.578642005086,345,Elective,2022-10-18,Abnormal,8263,387,1,24,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3469,2023-06-19,16609.248047843543,250,Emergency,2023-07-10,Inconclusive,3469,375,4,15,,,,DISCHARGED -3470,2019-11-09,3466.2389970598965,208,Emergency,2019-11-23,Normal,3470,253,3,26,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3471,2023-07-04,39862.53294477552,140,Elective,2023-07-31,Abnormal,3471,23,0,7,,,,DISCHARGED -3471,2021-11-08,36016.93835115629,271,Emergency,2021-11-15,Abnormal,6471,161,3,23,,,,DISCHARGED -3472,2021-05-02,4318.317110530047,214,Elective,2021-05-08,Normal,3472,157,2,16,,,,DISCHARGED -3473,2022-07-11,18531.628836860244,439,Emergency,2022-07-31,Inconclusive,3473,81,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3474,2022-12-18,33647.69029715338,244,Emergency,2022-12-27,Normal,3474,402,1,11,,,,DISCHARGED -3475,2022-11-28,7421.325596695157,306,Emergency,2022-12-06,Normal,3475,158,3,5,,,,DISCHARGED -3476,2020-07-26,45884.75906894886,451,Elective,2020-08-04,Normal,3476,187,0,17,,,,DISCHARGED -3477,2023-06-05,47369.37054758819,437,Urgent,2023-06-20,Abnormal,3477,59,2,25,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3478,2019-12-06,37405.16096157677,304,Elective,2019-12-25,Abnormal,3478,402,3,4,,,,DISCHARGED -3479,2021-10-17,16461.50097427297,184,Emergency,2021-11-05,Abnormal,3479,304,3,5,,,,DISCHARGED -3480,2023-08-17,2872.402642953097,320,Elective,,Abnormal,3480,318,1,8,,,,OPEN -3481,2020-04-05,3685.2613476564784,137,Urgent,2020-05-04,Abnormal,3481,365,2,14,,,,DISCHARGED -3482,2020-10-08,45207.42448593232,125,Urgent,2020-10-31,Abnormal,3482,210,0,9,,,,DISCHARGED -3483,2019-07-01,8647.898158600005,440,Urgent,2019-07-16,Abnormal,3483,405,1,16,,,,DISCHARGED -3484,2021-09-02,44153.05782471874,144,Urgent,2021-09-19,Inconclusive,3484,151,3,28,,,,DISCHARGED -3485,2023-10-03,21461.827861342743,441,Urgent,2023-10-22,Inconclusive,3485,108,1,25,,,,DISCHARGED -3486,2020-06-26,33792.83444231801,461,Elective,2020-07-17,Abnormal,3486,75,1,18,,,,DISCHARGED -3487,2020-11-15,22146.75564628472,455,Urgent,2020-12-14,Normal,3487,29,4,11,,,,DISCHARGED -3488,2020-08-10,46251.85938662369,308,Elective,2020-08-28,Inconclusive,3488,313,1,8,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3488,2019-02-16,32384.872703688827,207,Urgent,2019-03-10,Abnormal,4823,485,1,14,,,,DISCHARGED -3488,2022-10-02,32383.990986224228,253,Urgent,2022-10-13,Abnormal,9441,116,2,13,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -3489,2022-10-12,38641.88825874116,184,Elective,2022-10-18,Inconclusive,3489,414,1,0,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -3491,2021-02-25,47440.45326018285,194,Elective,2021-03-01,Abnormal,3491,355,0,16,,,,DISCHARGED -3492,2023-02-17,11064.879265311978,288,Emergency,2023-02-26,Normal,3492,191,3,0,,,,DISCHARGED -3493,2019-06-20,15456.260560579503,415,Urgent,2019-06-26,Inconclusive,3493,18,2,22,,,,DISCHARGED -3494,2019-09-25,16987.9481370126,228,Emergency,2019-10-13,Abnormal,3494,431,1,28,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -3495,2021-05-07,1964.9738235696973,447,Elective,2021-05-17,Abnormal,3495,172,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3496,2019-07-21,6208.836738717939,153,Emergency,2019-08-11,Abnormal,3496,227,3,21,,,,DISCHARGED -3497,2021-04-22,8234.952950200266,250,Elective,2021-05-02,Abnormal,3497,349,2,12,,,,DISCHARGED -3498,2019-10-15,30923.227607662287,198,Urgent,2019-10-17,Inconclusive,3498,182,0,29,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -3499,2020-02-14,42963.60781314,288,Emergency,2020-02-19,Normal,3499,112,1,7,,,,DISCHARGED -3500,2023-05-01,47964.40311180116,187,Emergency,2023-05-31,Inconclusive,3500,182,4,29,,,,DISCHARGED -3501,2023-09-25,15366.651157325045,181,Urgent,2023-10-10,Normal,3501,480,4,12,,,,DISCHARGED -3502,2020-08-22,42723.21750785108,337,Emergency,2020-09-12,Abnormal,3502,145,2,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3503,2021-02-08,49465.38272475298,129,Urgent,2021-02-15,Abnormal,3503,318,0,1,,,,DISCHARGED -3504,2019-06-06,40406.55901017414,176,Urgent,2019-06-20,Normal,3504,115,3,12,,,,DISCHARGED -3505,2022-11-08,36124.6820091871,180,Elective,2022-11-29,Inconclusive,3505,112,0,17,,,,DISCHARGED -3506,2022-04-12,5927.019173671457,305,Urgent,2022-05-06,Normal,3506,250,4,2,,,,DISCHARGED -3507,2022-09-27,26198.091414724346,392,Urgent,2022-10-23,Inconclusive,3507,475,2,12,,,,DISCHARGED -3508,2020-05-22,34068.993110813586,481,Elective,2020-06-11,Abnormal,3508,250,1,18,,,,DISCHARGED -3510,2023-07-12,45555.50174333505,139,Elective,2023-07-31,Normal,3510,302,0,12,,,,DISCHARGED -3511,2021-12-11,18236.79555799032,486,Elective,2021-12-22,Inconclusive,3511,458,4,18,,,,DISCHARGED -3512,2022-04-26,33878.94618435066,293,Elective,2022-04-29,Inconclusive,3512,312,3,3,,,,DISCHARGED -3513,2018-11-14,42623.23472613382,470,Emergency,2018-11-27,Inconclusive,3513,117,2,18,,,,DISCHARGED -3514,2020-05-31,25186.273311781075,402,Emergency,2020-06-15,Abnormal,3514,300,1,17,,,,DISCHARGED -3515,2023-09-13,35769.71902637293,236,Urgent,2023-09-17,Inconclusive,3515,160,0,24,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3516,2022-06-05,37697.42533212277,403,Elective,2022-06-11,Abnormal,3516,400,3,5,,,,DISCHARGED -3517,2022-01-31,37643.03307451826,434,Emergency,2022-02-06,Abnormal,3517,197,1,18,,,,DISCHARGED -3518,2022-06-04,29042.530038262743,474,Emergency,2022-06-19,Inconclusive,3518,259,4,24,,,,DISCHARGED -3519,2022-05-04,3128.2539583617645,253,Urgent,2022-05-27,Inconclusive,3519,147,4,3,,,,DISCHARGED -3520,2022-08-25,31375.76984447867,187,Emergency,2022-09-08,Normal,3520,239,3,3,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3521,2022-02-25,9809.568704338291,203,Elective,2022-03-19,Abnormal,3521,46,4,23,,,,DISCHARGED -3521,2020-01-15,45705.0048854744,427,Urgent,2020-01-18,Normal,6314,474,2,6,,,,DISCHARGED -3522,2023-06-09,16671.761552956243,388,Urgent,,Inconclusive,3522,398,3,6,,,,OPEN -3523,2019-01-16,48557.8285341362,300,Elective,2019-02-04,Normal,3523,197,4,25,,,,DISCHARGED -3524,2023-01-11,43105.77056999524,487,Urgent,2023-02-10,Inconclusive,3524,46,0,22,,,,DISCHARGED -3525,2020-03-15,9174.942347838409,192,Urgent,2020-03-21,Inconclusive,3525,77,4,25,,,,DISCHARGED -3526,2020-05-16,49974.299137554735,242,Emergency,2020-05-31,Abnormal,3526,123,2,15,,,,DISCHARGED -3526,2020-04-25,34797.94280096645,163,Urgent,2020-05-18,Normal,5180,74,1,26,,,,DISCHARGED -3526,2019-11-20,3647.307571615069,126,Elective,2019-11-24,Normal,5816,358,1,15,,,,DISCHARGED -3527,2018-11-05,39038.117416557325,457,Emergency,2018-12-01,Inconclusive,3527,136,4,4,,,,DISCHARGED -3528,2022-04-14,41469.76986812502,175,Elective,2022-05-14,Inconclusive,3528,89,1,14,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3529,2019-08-26,24303.14270286408,230,Urgent,2019-09-14,Abnormal,3529,399,4,22,,,,DISCHARGED -3530,2022-12-12,4894.981267722751,248,Emergency,2022-12-31,Abnormal,3530,324,2,3,,,,DISCHARGED -3531,2019-03-03,39766.9734847552,199,Emergency,2019-03-15,Abnormal,3531,499,1,23,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -3532,2023-03-29,46676.762079426415,478,Emergency,2023-03-31,Abnormal,3532,60,0,24,,,,DISCHARGED -3533,2021-01-08,2831.828522572272,444,Elective,2021-01-29,Normal,3533,137,4,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3534,2023-05-23,43521.32098509593,478,Elective,2023-06-14,Inconclusive,3534,49,1,27,,,,DISCHARGED -3535,2019-12-08,43988.41844501854,116,Emergency,2019-12-09,Abnormal,3535,258,2,18,,,,DISCHARGED -3536,2019-08-27,36127.85670703623,469,Elective,2019-09-16,Abnormal,3536,460,2,6,,,,DISCHARGED -3537,2022-06-24,26907.89229657558,404,Emergency,2022-07-01,Abnormal,3537,106,0,11,,,,DISCHARGED -3539,2022-04-10,31724.515745364377,398,Emergency,2022-05-08,Abnormal,3539,112,2,25,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3540,2023-03-24,15248.657109002545,402,Urgent,,Inconclusive,3540,349,2,8,,,,OPEN -3541,2019-05-17,16846.000777644713,117,Emergency,2019-06-01,Normal,3541,253,1,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3542,2019-03-30,18033.26011150181,370,Elective,2019-04-29,Abnormal,3542,117,4,1,,,,DISCHARGED -3543,2019-01-21,22137.160284523925,261,Urgent,2019-01-24,Normal,3543,492,3,15,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -3544,2019-10-17,20617.00381790932,186,Elective,2019-10-22,Inconclusive,3544,197,2,6,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2022-06-07,10059.578575601596,324,Urgent,2022-06-10,Inconclusive,4325,336,2,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2020-01-17,48496.52879693761,495,Elective,2020-02-05,Abnormal,8414,364,3,17,,,,DISCHARGED -3545,2022-05-11,23006.526347620696,448,Emergency,2022-05-29,Normal,3545,50,2,6,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -3546,2022-12-20,48437.439353530426,467,Elective,2023-01-17,Normal,3546,244,1,0,,,,DISCHARGED -3547,2023-05-07,3688.081496148474,412,Emergency,2023-06-02,Normal,3547,402,1,2,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3548,2021-01-03,4737.999900057215,438,Emergency,2021-01-26,Abnormal,3548,425,3,20,,,,DISCHARGED -3549,2023-06-16,18929.74353020977,322,Emergency,,Inconclusive,3549,34,2,29,,,,OPEN -3550,2022-08-30,43981.50118091351,397,Emergency,2022-09-29,Normal,3550,301,2,27,,,,DISCHARGED -3551,2023-01-22,13439.264949183447,188,Elective,2023-02-15,Normal,3551,409,4,29,,,,DISCHARGED -3552,2019-04-09,41807.36790346709,120,Emergency,2019-05-05,Abnormal,3552,498,2,10,,,,DISCHARGED -3553,2020-08-18,14611.617113662098,463,Urgent,2020-08-22,Normal,3553,68,1,21,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3554,2022-12-03,11478.24721975272,431,Urgent,2022-12-05,Normal,3554,348,0,14,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3555,2021-01-27,25030.24456864383,183,Elective,2021-02-04,Inconclusive,3555,319,0,28,,,,DISCHARGED -3556,2022-12-22,46638.90926530671,243,Urgent,2023-01-12,Abnormal,3556,420,0,24,,,,DISCHARGED -3557,2019-09-12,17021.60895848836,400,Urgent,2019-09-30,Abnormal,3557,467,0,24,,,,DISCHARGED -3558,2021-01-12,16472.8733946559,383,Elective,2021-02-06,Abnormal,3558,48,2,2,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -3559,2023-03-25,12467.091334868228,226,Urgent,2023-04-13,Inconclusive,3559,404,2,29,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -3560,2019-07-05,38813.44871418475,142,Emergency,2019-07-16,Abnormal,3560,73,4,23,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -3561,2022-05-31,26238.375909206112,399,Urgent,2022-06-17,Inconclusive,3561,191,2,12,,,,DISCHARGED -3561,2021-05-15,10865.8979402336,117,Elective,2021-06-07,Normal,8820,260,0,3,,,,DISCHARGED -3562,2021-10-16,11702.51920815186,300,Urgent,2021-10-17,Normal,3562,355,3,22,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3563,2021-12-22,49024.22632757895,366,Emergency,2022-01-19,Normal,3563,69,3,21,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3564,2021-07-22,16843.434202147546,214,Elective,2021-07-31,Normal,3564,89,1,7,,,,DISCHARGED -3565,2019-12-07,38672.562432232095,448,Urgent,2020-01-02,Inconclusive,3565,259,1,21,,,,DISCHARGED -3566,2019-06-12,26200.652879000478,327,Elective,2019-06-19,Inconclusive,3566,125,2,3,,,,DISCHARGED -3567,2019-01-28,44654.47525364047,476,Elective,2019-02-26,Inconclusive,3567,230,3,17,,,,DISCHARGED -3568,2021-03-20,41244.88823450371,216,Elective,2021-04-03,Inconclusive,3568,294,0,6,,,,DISCHARGED -3569,2020-06-05,27654.52250853423,393,Urgent,2020-06-29,Abnormal,3569,497,0,10,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3570,2022-01-08,31172.57314163279,206,Elective,2022-01-15,Abnormal,3570,418,0,28,,,,DISCHARGED -3571,2021-02-27,16533.66010441121,395,Elective,2021-03-13,Inconclusive,3571,128,2,26,,,,DISCHARGED -3572,2018-12-06,9754.8346528051,339,Urgent,2018-12-15,Abnormal,3572,279,2,3,,,,DISCHARGED -3573,2021-06-01,31966.842021193883,171,Urgent,2021-06-11,Abnormal,3573,312,4,12,,,,DISCHARGED -3574,2020-05-21,47424.384505529306,106,Emergency,2020-05-25,Abnormal,3574,99,0,8,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3575,2019-07-23,18437.656681041568,177,Emergency,2019-08-14,Abnormal,3575,325,0,8,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3575,2022-08-02,31786.830979384533,289,Emergency,2022-08-06,Abnormal,4981,296,2,22,,,,DISCHARGED -3576,2021-07-07,29029.241237755134,285,Urgent,2021-07-25,Abnormal,3576,181,2,20,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3577,2019-11-25,5810.421999423628,116,Emergency,2019-12-09,Normal,3577,173,4,18,,,,DISCHARGED -3578,2022-05-16,21610.42198655564,204,Elective,2022-06-09,Inconclusive,3578,315,4,2,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3579,2020-12-31,39954.816368857,325,Elective,2021-01-16,Inconclusive,3579,363,1,24,,,,DISCHARGED -3582,2019-03-15,18151.000540565357,277,Elective,2019-03-27,Inconclusive,3582,187,3,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3582,2019-06-26,48433.8872092603,127,Elective,2019-07-19,Inconclusive,5221,56,0,11,,,,DISCHARGED -3582,2020-08-31,20450.730076552587,413,Elective,2020-09-20,Abnormal,5843,30,0,28,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -3582,2019-06-24,45163.33424177905,313,Elective,2019-06-30,Normal,5883,83,4,10,,,,DISCHARGED -3583,2020-06-19,25351.138805376617,143,Elective,2020-07-11,Normal,3583,151,4,19,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -3584,2020-03-21,10943.537229306772,315,Urgent,2020-04-10,Normal,3584,472,1,10,,,,DISCHARGED -3585,2020-04-12,29767.171907101078,435,Urgent,2020-05-03,Normal,3585,35,3,16,,,,DISCHARGED -3586,2023-05-09,20816.500880877276,467,Emergency,2023-05-23,Abnormal,3586,212,1,28,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3587,2019-03-24,42939.09014040129,160,Elective,2019-04-14,Normal,3587,413,3,25,,,,DISCHARGED -3588,2022-06-12,47751.17216037415,381,Urgent,2022-06-18,Inconclusive,3588,407,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3589,2022-04-27,45057.40233207381,382,Emergency,2022-05-11,Inconclusive,3589,363,1,13,,,,DISCHARGED -3590,2020-02-26,31080.992541012845,427,Urgent,2020-03-04,Normal,3590,105,4,15,,,,DISCHARGED -3591,2022-08-20,42322.95596482799,480,Elective,2022-09-08,Abnormal,3591,413,1,23,,,,DISCHARGED -3592,2022-09-15,26464.70766579044,240,Emergency,2022-10-04,Abnormal,3592,341,1,9,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -3593,2020-02-06,26954.72378444534,257,Urgent,2020-02-22,Abnormal,3593,219,0,3,,,,DISCHARGED -3594,2021-05-01,48106.17358851362,240,Urgent,2021-05-04,Abnormal,3594,390,4,9,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -3594,2022-05-13,10905.07365742909,214,Emergency,2022-06-07,Inconclusive,6913,162,4,25,,,,DISCHARGED -3595,2019-01-17,37386.1582373208,232,Emergency,2019-01-27,Normal,3595,438,2,19,,,,DISCHARGED -3596,2023-04-02,4306.629039810507,122,Emergency,,Inconclusive,3596,219,2,28,,,,OPEN -3597,2021-03-23,6397.66260157022,454,Elective,2021-03-28,Abnormal,3597,269,2,11,,,,DISCHARGED -3598,2018-12-06,28675.8283254028,428,Emergency,2018-12-24,Inconclusive,3598,119,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3599,2020-06-17,24502.7322182767,178,Urgent,2020-07-13,Abnormal,3599,393,1,8,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -3600,2020-06-03,13292.984535340844,271,Urgent,2020-06-17,Abnormal,3600,335,4,14,,,,DISCHARGED -3601,2019-12-24,22581.1348260488,428,Emergency,2019-12-26,Inconclusive,3601,399,4,8,,,,DISCHARGED -3602,2020-09-19,21683.89031339856,379,Urgent,2020-10-14,Inconclusive,3602,181,1,6,,,,DISCHARGED -3604,2022-08-27,39385.627287534415,359,Emergency,2022-09-02,Normal,3604,478,4,25,,,,DISCHARGED -3604,2022-04-05,21164.260608267494,209,Urgent,2022-04-29,Normal,8064,105,1,23,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3605,2021-01-02,34170.639978306506,400,Emergency,2021-01-15,Normal,3605,216,0,11,,,,DISCHARGED -3606,2019-08-26,23384.291416228607,425,Emergency,2019-09-02,Abnormal,3606,204,0,27,,,,DISCHARGED -3607,2020-12-15,37237.97587655118,395,Emergency,2021-01-06,Abnormal,3607,69,0,19,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3608,2021-07-08,27334.93648018413,137,Urgent,2021-07-14,Inconclusive,3608,43,1,23,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3609,2022-07-27,36350.83744328773,309,Urgent,2022-08-05,Abnormal,3609,328,1,13,,,,DISCHARGED -3610,2021-06-01,2877.780596408522,209,Elective,2021-06-09,Normal,3610,300,3,21,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -3610,2021-05-01,5196.805678236538,142,Emergency,2021-05-22,Inconclusive,8172,227,4,15,,,,DISCHARGED -3611,2021-10-14,48485.96340678633,281,Urgent,2021-10-24,Inconclusive,3611,183,4,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -3612,2022-12-29,41474.44307763255,223,Emergency,2022-12-31,Abnormal,3612,106,3,18,,,,DISCHARGED -3613,2021-08-19,8468.747008955077,488,Elective,2021-09-12,Abnormal,3613,83,3,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3614,2020-06-04,46585.258245597535,399,Emergency,2020-06-25,Abnormal,3614,337,0,2,,,,DISCHARGED -3615,2021-03-15,44975.82267585032,163,Elective,2021-03-18,Abnormal,3615,249,3,10,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3616,2020-07-18,39978.79724456784,340,Urgent,2020-08-06,Abnormal,3616,362,1,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -3618,2019-12-10,30901.09555661645,346,Urgent,2019-12-26,Normal,3618,440,2,20,,,,DISCHARGED -3619,2022-08-24,4635.669269285174,206,Urgent,2022-09-05,Normal,3619,20,1,19,,,,DISCHARGED -3620,2021-03-23,39882.64681703877,226,Emergency,2021-04-10,Inconclusive,3620,195,3,18,,,,DISCHARGED -3621,2021-08-31,6655.465654622017,142,Elective,2021-09-19,Inconclusive,3621,177,4,7,,,,DISCHARGED -3622,2019-08-04,25370.651820923376,448,Urgent,2019-08-24,Abnormal,3622,416,1,19,,,,DISCHARGED -3623,2022-01-20,7464.786260035436,381,Emergency,2022-02-19,Inconclusive,3623,474,4,7,,,,DISCHARGED -3623,2019-12-25,40676.69588495758,436,Urgent,2020-01-19,Abnormal,7430,6,1,25,,,,DISCHARGED -3624,2021-06-04,45504.47563851878,389,Urgent,2021-06-16,Normal,3624,69,4,2,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3625,2020-03-03,14253.111480418904,132,Elective,2020-03-29,Normal,3625,126,1,9,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3627,2023-09-09,15229.714747678629,452,Elective,,Normal,3627,398,4,12,,,,OPEN -3628,2021-03-09,2696.036119046068,258,Elective,2021-03-14,Inconclusive,3628,465,2,8,,,,DISCHARGED -3629,2020-04-13,26425.002887696883,172,Emergency,2020-05-09,Abnormal,3629,159,0,5,,,,DISCHARGED -3630,2023-02-22,38674.49962150651,213,Urgent,2023-03-23,Abnormal,3630,247,1,14,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -3631,2019-07-28,40064.44455685532,408,Urgent,2019-08-09,Inconclusive,3631,202,2,15,,,,DISCHARGED -3632,2021-04-08,42002.00297038644,120,Elective,2021-04-26,Normal,3632,147,0,4,,,,DISCHARGED -3633,2023-06-10,42964.595890674114,353,Emergency,2023-07-06,Abnormal,3633,471,1,20,,,,DISCHARGED -3634,2019-04-29,9398.58770810248,388,Urgent,2019-05-16,Normal,3634,142,2,12,,,,DISCHARGED -3634,2021-10-04,28643.930677392425,391,Urgent,2021-10-12,Inconclusive,3846,431,2,18,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -3635,2021-05-04,32240.336506516443,134,Urgent,2021-05-20,Inconclusive,3635,198,2,1,,,,DISCHARGED -3636,2020-02-17,5531.909466901662,463,Elective,2020-02-18,Inconclusive,3636,404,3,5,,,,DISCHARGED -3637,2019-07-04,13381.613495107267,153,Urgent,2019-08-03,Normal,3637,425,4,26,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3637,2019-04-28,40812.91890669756,184,Elective,2019-05-08,Inconclusive,9019,153,0,0,,,,DISCHARGED -3638,2020-09-23,4352.404190201662,401,Emergency,2020-10-17,Inconclusive,3638,491,4,14,,,,DISCHARGED -3639,2019-08-11,35150.24595386399,465,Emergency,2019-09-08,Inconclusive,3639,375,4,14,,,,DISCHARGED -3640,2019-10-16,17819.83777541087,155,Elective,2019-11-05,Abnormal,3640,383,4,13,,,,DISCHARGED -3641,2021-08-12,9395.590260263296,304,Urgent,2021-08-30,Inconclusive,3641,141,2,6,,,,DISCHARGED -3642,2023-07-05,46937.57000594674,370,Urgent,2023-07-10,Abnormal,3642,312,4,4,,,,DISCHARGED -3643,2023-09-22,23591.71924017739,252,Urgent,2023-10-20,Normal,3643,164,3,19,,,,DISCHARGED -3644,2021-07-16,29144.393550358716,372,Elective,2021-07-21,Normal,3644,313,1,24,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3645,2019-05-18,41451.66478006305,120,Urgent,2019-05-26,Normal,3645,20,2,25,,,,DISCHARGED -3646,2019-09-25,36373.11894420004,467,Urgent,2019-09-30,Normal,3646,81,0,15,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3647,2018-12-15,9406.323686261296,477,Elective,2019-01-09,Inconclusive,3647,68,1,16,,,,DISCHARGED -3648,2019-07-09,5480.758178570149,317,Emergency,2019-08-01,Inconclusive,3648,130,1,10,,,,DISCHARGED -3649,2021-02-23,22995.757564881515,310,Emergency,2021-03-19,Inconclusive,3649,86,1,14,,,,DISCHARGED -3650,2019-12-27,25089.83557550444,258,Urgent,2019-12-28,Inconclusive,3650,217,4,19,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3651,2019-01-24,43736.34065963515,360,Emergency,2019-02-08,Abnormal,3651,420,4,15,,,,DISCHARGED -3652,2019-08-02,40039.25600004329,168,Emergency,2019-08-10,Normal,3652,471,2,2,,,,DISCHARGED -3653,2019-11-25,6387.663608833473,267,Elective,2019-12-17,Inconclusive,3653,304,4,5,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3654,2019-12-06,41919.70806784564,142,Elective,2020-01-03,Inconclusive,3654,402,4,20,,,,DISCHARGED -3655,2023-02-03,31347.129050444884,444,Elective,,Inconclusive,3655,370,4,22,,,,OPEN -3656,2023-08-15,30012.56367775242,266,Urgent,2023-08-20,Abnormal,3656,344,2,12,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -3657,2019-02-23,49269.73366913681,445,Elective,2019-03-03,Inconclusive,3657,340,2,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3658,2021-04-22,8219.293262399719,385,Urgent,2021-05-16,Normal,3658,383,3,28,,,,DISCHARGED -3659,2022-06-14,18557.6677105462,432,Emergency,2022-06-29,Normal,3659,395,3,20,,,,DISCHARGED -3660,2023-02-17,36902.6337952106,358,Urgent,,Inconclusive,3660,444,3,13,,,,OPEN -3661,2021-10-23,20514.57636390076,419,Elective,2021-11-14,Normal,3661,424,3,1,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3662,2021-04-02,13919.318618726771,156,Emergency,2021-04-26,Abnormal,3662,160,1,1,,,,DISCHARGED -3663,2022-06-02,38603.55496230807,447,Emergency,2022-06-09,Abnormal,3663,177,1,26,,,,DISCHARGED -3664,2019-09-05,16903.942433850985,235,Urgent,2019-09-24,Normal,3664,116,3,14,,,,DISCHARGED -3665,2020-05-26,32987.16245169197,252,Emergency,2020-05-28,Normal,3665,195,3,26,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -3666,2023-01-24,40042.31376239035,249,Elective,2023-01-31,Inconclusive,3666,382,0,17,,,,DISCHARGED -3667,2021-07-09,24344.154000241604,470,Emergency,2021-08-08,Normal,3667,489,1,8,,,,DISCHARGED -3668,2022-08-29,7600.312671515739,499,Emergency,2022-09-04,Normal,3668,326,0,25,,,,DISCHARGED -3669,2019-01-24,29233.17368302868,400,Urgent,2019-02-01,Normal,3669,85,0,2,,,,DISCHARGED -3670,2022-10-05,3585.581082815545,489,Urgent,2022-10-15,Abnormal,3670,288,4,3,,,,DISCHARGED -3671,2019-05-19,32639.793950269468,136,Urgent,2019-06-05,Abnormal,3671,80,2,14,,,,DISCHARGED -3672,2022-03-19,12015.298795465156,103,Emergency,2022-04-14,Inconclusive,3672,151,1,4,,,,DISCHARGED -3673,2021-04-27,47332.68930916563,429,Emergency,2021-05-09,Normal,3673,60,3,29,,,,DISCHARGED -3674,2019-08-22,11264.907628983943,445,Emergency,2019-08-30,Normal,3674,60,3,19,,,,DISCHARGED -3675,2021-03-24,42865.4841964693,368,Emergency,2021-04-02,Normal,3675,353,2,19,,,,DISCHARGED -3675,2022-04-05,27910.712959002896,159,Emergency,2022-04-30,Normal,7913,27,1,4,,,,DISCHARGED -3676,2021-02-28,47684.404072998215,423,Elective,2021-03-20,Abnormal,3676,441,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3677,2019-09-08,2352.4826369607663,427,Emergency,2019-10-01,Normal,3677,42,3,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3678,2022-06-14,3676.900636894232,319,Urgent,2022-06-20,Inconclusive,3678,168,4,24,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -3679,2021-09-14,20284.00396846153,151,Elective,2021-10-04,Normal,3679,422,0,11,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3680,2020-05-08,36298.56025786638,412,Elective,2020-05-09,Inconclusive,3680,85,3,24,,,,DISCHARGED -3681,2023-10-15,36077.19710920713,352,Emergency,,Inconclusive,3681,176,1,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -3682,2021-08-07,13726.94017754931,261,Emergency,2021-08-13,Abnormal,3682,16,2,13,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3683,2019-02-17,19101.841049086677,307,Elective,2019-03-05,Normal,3683,97,4,21,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -3684,2019-09-14,20273.501201656258,278,Urgent,2019-10-14,Normal,3684,453,1,10,,,,DISCHARGED -3685,2022-09-16,29823.99297084404,277,Urgent,2022-10-06,Abnormal,3685,493,4,27,,,,DISCHARGED -3687,2022-04-04,1364.5716811116522,200,Urgent,2022-04-28,Normal,3687,197,0,29,,,,DISCHARGED -3688,2019-09-22,39407.640546151015,218,Elective,2019-10-13,Abnormal,3688,97,3,18,,,,DISCHARGED -3689,2019-12-05,3247.419389761777,118,Emergency,2019-12-16,Abnormal,3689,64,1,5,,,,DISCHARGED -3690,2020-08-28,26722.714872875986,283,Elective,2020-09-11,Inconclusive,3690,329,2,9,,,,DISCHARGED -3692,2022-01-24,10536.350519619164,167,Elective,2022-02-20,Abnormal,3692,340,0,19,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3693,2019-08-31,18249.705388971248,324,Urgent,2019-09-09,Inconclusive,3693,4,0,2,,,,DISCHARGED -3694,2020-08-19,14469.471240696908,174,Emergency,2020-08-29,Normal,3694,1,4,21,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3695,2019-07-27,20720.5895982287,440,Emergency,2019-08-10,Inconclusive,3695,21,0,14,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -3696,2018-12-30,37200.57738765615,328,Elective,2019-01-22,Inconclusive,3696,111,1,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -3697,2023-02-01,2118.381299669269,206,Emergency,,Normal,3697,56,4,21,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -3698,2019-11-14,44520.32784556401,380,Emergency,2019-11-15,Normal,3698,65,0,1,,,,DISCHARGED -3699,2023-01-28,8237.045124834967,338,Elective,2023-02-16,Normal,3699,329,2,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -3700,2020-01-29,43819.674146926016,500,Elective,2020-02-02,Normal,3700,97,1,23,,,,DISCHARGED -3701,2021-09-18,24190.989723260704,457,Elective,2021-09-28,Inconclusive,3701,143,2,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3702,2020-03-08,45620.66848026368,413,Elective,2020-03-24,Abnormal,3702,367,2,16,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3703,2022-04-08,24109.484049974093,326,Elective,2022-04-23,Abnormal,3703,434,4,27,,,,DISCHARGED -3704,2022-04-09,23633.249252123085,406,Urgent,2022-05-06,Abnormal,3704,124,3,17,,,,DISCHARGED -3706,2019-06-05,34186.162772907745,426,Urgent,2019-06-07,Normal,3706,166,4,3,,,,DISCHARGED -3706,2021-10-18,43861.885641574576,273,Urgent,2021-11-07,Normal,7670,85,1,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3707,2019-04-26,13456.890613960884,329,Elective,2019-05-21,Normal,3707,75,1,8,,,,DISCHARGED -3709,2021-10-06,19764.340240436464,457,Elective,2021-10-18,Normal,3709,343,4,9,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -3710,2019-11-27,48388.57212827295,341,Emergency,2019-12-24,Inconclusive,3710,494,3,20,,,,DISCHARGED -3711,2019-10-15,41821.3759585212,436,Emergency,2019-11-06,Inconclusive,3711,423,4,25,,,,DISCHARGED -3712,2019-05-28,37461.06447775906,121,Elective,2019-06-11,Normal,3712,293,1,1,,,,DISCHARGED -3713,2020-03-28,32875.58182712499,194,Emergency,2020-04-02,Inconclusive,3713,443,3,28,,,,DISCHARGED -3714,2019-04-14,9192.346557921228,184,Urgent,2019-05-11,Normal,3714,58,1,10,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -3715,2022-02-10,17485.035584738052,214,Elective,2022-02-18,Normal,3715,137,3,10,,,,DISCHARGED -3716,2021-06-15,7618.214262172099,420,Urgent,2021-06-25,Abnormal,3716,98,3,10,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3717,2023-03-31,20189.610707746247,216,Emergency,,Abnormal,3717,191,4,0,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",OPEN -3718,2018-11-21,42988.61829370994,362,Elective,2018-12-02,Inconclusive,3718,242,4,25,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -3719,2023-07-31,26094.662876983173,174,Elective,2023-08-19,Inconclusive,3719,318,4,13,,,,DISCHARGED -3720,2020-01-25,48620.87137998923,269,Elective,2020-02-18,Normal,3720,48,3,28,,,,DISCHARGED -3721,2020-12-18,12994.39988524533,126,Emergency,2021-01-16,Normal,3721,447,3,29,,,,DISCHARGED -3722,2021-12-15,24360.072780161485,469,Elective,2021-12-27,Inconclusive,3722,31,1,0,,,,DISCHARGED -3723,2023-07-09,7551.620992670825,296,Urgent,2023-07-19,Inconclusive,3723,390,2,20,,,,DISCHARGED -3724,2021-08-08,27947.61014587241,282,Urgent,2021-09-07,Inconclusive,3724,276,4,29,,,,DISCHARGED -3725,2021-04-10,16486.59371419758,223,Elective,2021-04-24,Normal,3725,19,1,22,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -3728,2020-07-31,34066.56979142001,268,Elective,2020-08-21,Inconclusive,3728,153,1,24,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3729,2022-02-12,47986.36698510451,139,Urgent,2022-02-15,Abnormal,3729,382,0,8,,,,DISCHARGED -3730,2021-08-31,39765.85762580165,341,Emergency,2021-09-23,Normal,3730,67,4,23,,,,DISCHARGED -3731,2019-05-26,9849.160982146752,186,Emergency,2019-06-14,Normal,3731,365,1,0,,,,DISCHARGED -3732,2021-07-09,40403.42003986442,173,Elective,2021-08-02,Abnormal,3732,371,0,20,,,,DISCHARGED -3733,2020-12-20,2546.932617228155,381,Elective,2021-01-08,Abnormal,3733,213,4,21,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -3734,2019-06-28,17930.74301947572,351,Urgent,2019-07-13,Abnormal,3734,142,3,21,,,,DISCHARGED -3736,2021-03-17,30598.090202147952,297,Emergency,2021-03-18,Inconclusive,3736,375,0,3,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -3737,2019-10-05,31291.05724793579,293,Urgent,2019-10-15,Abnormal,3737,231,3,0,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -3738,2022-05-11,45032.651270918046,238,Emergency,2022-06-01,Inconclusive,3738,212,2,18,,,,DISCHARGED -3739,2019-11-07,10039.270787156658,408,Urgent,2019-11-16,Abnormal,3739,78,2,9,,,,DISCHARGED -3740,2019-07-22,45641.16862808066,487,Urgent,2019-08-07,Inconclusive,3740,213,2,14,,,,DISCHARGED -3741,2021-06-24,38779.47429220685,135,Elective,2021-07-09,Normal,3741,115,2,19,,,,DISCHARGED -3742,2023-07-25,28609.525757792777,473,Elective,2023-08-06,Normal,3742,91,1,3,,,,DISCHARGED -3743,2022-09-21,28685.286106351337,332,Emergency,2022-10-11,Abnormal,3743,269,2,28,,,,DISCHARGED -3744,2022-01-04,13729.78334595889,164,Emergency,2022-02-03,Abnormal,3744,410,1,19,,,,DISCHARGED -3745,2023-07-21,11029.20457269175,289,Urgent,2023-07-23,Abnormal,3745,380,1,13,,,,DISCHARGED -3746,2023-03-30,19987.389381447418,295,Emergency,2023-04-22,Normal,3746,488,4,4,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -3747,2023-04-11,43076.57638376048,486,Elective,,Normal,3747,167,1,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,OPEN -3748,2021-06-07,11950.514468022331,254,Emergency,2021-07-03,Inconclusive,3748,57,1,14,,,,DISCHARGED -3749,2023-02-16,3648.805225942074,221,Elective,2023-03-13,Normal,3749,283,2,14,,,,DISCHARGED -3750,2021-03-11,19545.43598263267,226,Urgent,2021-03-23,Normal,3750,25,1,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3751,2022-10-25,2883.139293946161,341,Emergency,2022-11-15,Abnormal,3751,368,3,24,,,,DISCHARGED -3752,2020-02-15,43190.82672278742,372,Urgent,2020-03-06,Abnormal,3752,446,2,15,,,,DISCHARGED -3752,2021-02-24,33332.57038511126,174,Emergency,2021-03-18,Abnormal,6670,65,0,15,,,,DISCHARGED -3754,2022-07-04,14451.502055847855,424,Elective,2022-07-20,Normal,3754,408,2,3,,,,DISCHARGED -3755,2020-06-02,30625.696879389976,269,Urgent,2020-06-28,Inconclusive,3755,247,1,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3756,2021-06-08,13270.054338771151,187,Urgent,2021-07-07,Abnormal,3756,253,3,8,,,,DISCHARGED -3757,2022-11-22,4015.9983328764247,110,Emergency,2022-12-13,Normal,3757,386,2,0,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -3758,2022-08-12,46207.52890671006,401,Elective,2022-08-26,Inconclusive,3758,455,3,4,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3759,2021-07-21,20064.97994975416,279,Elective,2021-08-14,Abnormal,3759,43,0,8,,,,DISCHARGED -3760,2019-08-29,36029.194506450105,280,Elective,2019-08-31,Abnormal,3760,96,0,19,,,,DISCHARGED -3761,2021-02-28,17681.28905928407,411,Urgent,2021-03-02,Normal,3761,41,4,4,,,,DISCHARGED -3762,2019-09-09,18521.023687414927,318,Emergency,2019-09-19,Abnormal,3762,499,4,3,,,,DISCHARGED -3763,2021-04-07,32760.415635628426,156,Elective,2021-05-01,Abnormal,3763,226,2,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -3764,2021-12-28,33493.280093722366,316,Urgent,2022-01-22,Inconclusive,3764,261,4,15,,,,DISCHARGED -3765,2020-05-31,26876.23582038916,142,Emergency,2020-06-06,Inconclusive,3765,166,3,1,,,,DISCHARGED -3766,2019-06-05,7359.4980384759965,384,Elective,2019-06-16,Abnormal,3766,435,4,25,,,,DISCHARGED -3767,2018-11-05,27338.71694132319,479,Emergency,2018-11-17,Abnormal,3767,278,3,15,,,,DISCHARGED -3768,2021-03-10,29405.133882222635,316,Emergency,2021-03-23,Abnormal,3768,88,4,17,,,,DISCHARGED -3769,2020-11-11,1443.2385392245096,198,Elective,2020-11-17,Inconclusive,3769,378,4,1,,,,DISCHARGED -3770,2021-10-04,1582.646636467121,149,Urgent,2021-10-29,Inconclusive,3770,177,4,15,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3771,2021-08-15,31110.7441071293,220,Urgent,2021-08-28,Inconclusive,3771,426,1,28,,,,DISCHARGED -3772,2019-07-18,29279.01250687594,399,Elective,2019-07-25,Abnormal,3772,402,1,0,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3774,2021-07-29,30771.525024828767,468,Emergency,2021-08-26,Inconclusive,3774,196,4,15,,,,DISCHARGED -3775,2021-01-22,4391.112816775143,490,Emergency,2021-02-11,Abnormal,3775,306,3,2,,,,DISCHARGED -3776,2021-11-09,12557.45767860984,184,Urgent,2021-11-27,Abnormal,3776,266,2,14,,,,DISCHARGED -3777,2021-09-10,30764.87769385657,301,Urgent,2021-09-23,Inconclusive,3777,267,0,29,,,,DISCHARGED -3778,2022-05-19,37728.5103548652,195,Elective,2022-06-12,Normal,3778,73,1,10,,,,DISCHARGED -3779,2021-09-11,11989.52689952245,332,Elective,2021-10-06,Normal,3779,7,4,9,,,,DISCHARGED -3780,2022-03-26,37037.09203725311,473,Urgent,2022-04-20,Normal,3780,407,0,16,,,,DISCHARGED -3781,2021-01-04,40519.76355665847,439,Elective,2021-01-29,Inconclusive,3781,475,1,3,,,,DISCHARGED -3783,2021-05-11,32335.756396716923,281,Emergency,2021-05-27,Abnormal,3783,296,2,16,,,,DISCHARGED -3783,2021-05-03,48176.45015169483,231,Emergency,2021-05-20,Normal,5603,163,3,3,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -3784,2020-06-12,24271.006037696457,276,Emergency,2020-06-27,Normal,3784,484,4,18,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3785,2019-05-26,45696.46066901234,229,Elective,2019-06-16,Abnormal,3785,84,2,24,,,,DISCHARGED -3786,2022-11-19,17640.46252248001,186,Urgent,2022-12-19,Inconclusive,3786,71,1,0,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3787,2019-03-27,42090.003019604446,123,Emergency,2019-04-03,Abnormal,3787,54,4,13,,,,DISCHARGED -3788,2020-08-31,19157.25147990573,456,Emergency,2020-09-08,Normal,3788,392,0,23,,,,DISCHARGED -3789,2021-09-30,39606.49750413241,410,Emergency,2021-10-29,Normal,3789,46,3,10,,,,DISCHARGED -3790,2020-06-26,17341.405257150178,154,Elective,2020-07-14,Normal,3790,398,1,24,,,,DISCHARGED -3791,2019-02-21,29117.225716495417,458,Elective,2019-03-08,Normal,3791,431,3,27,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -3792,2021-07-26,19434.23320910334,332,Emergency,2021-08-08,Abnormal,3792,237,4,6,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3793,2021-10-06,34445.9279143732,289,Emergency,2021-10-13,Inconclusive,3793,103,2,16,,,,DISCHARGED -3793,2023-07-07,37343.45840925794,299,Urgent,2023-07-19,Inconclusive,7187,209,3,3,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -3794,2021-12-17,34320.124884804536,381,Urgent,2022-01-13,Inconclusive,3794,41,0,9,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -3794,2020-02-16,40461.419915621766,346,Urgent,2020-02-24,Abnormal,7324,315,1,16,,,,DISCHARGED -3795,2019-09-13,36778.05910739757,115,Elective,2019-09-18,Inconclusive,3795,467,0,3,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3796,2019-03-12,24744.46648116006,119,Urgent,2019-03-23,Inconclusive,3796,453,3,18,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3797,2020-01-06,31400.00736467841,280,Elective,2020-01-28,Abnormal,3797,267,2,17,,,,DISCHARGED -3798,2022-02-17,3586.0660086947446,119,Elective,2022-03-03,Inconclusive,3798,385,2,16,,,,DISCHARGED -3799,2018-12-25,23250.103519663804,355,Emergency,2018-12-30,Abnormal,3799,262,0,5,,,,DISCHARGED -3800,2022-01-27,46771.38930461338,337,Elective,2022-02-08,Inconclusive,3800,335,4,27,,,,DISCHARGED -3801,2019-09-23,35881.34631982985,115,Emergency,2019-10-05,Abnormal,3801,386,4,6,,,,DISCHARGED -3802,2021-06-05,12242.10650075162,368,Elective,2021-06-16,Abnormal,3802,364,2,5,,,,DISCHARGED -3803,2019-09-03,30434.517428940737,380,Elective,2019-10-03,Normal,3803,258,0,24,,,,DISCHARGED -3804,2021-02-01,35023.37598373739,393,Emergency,2021-02-08,Normal,3804,282,0,11,,,,DISCHARGED -3805,2019-05-03,32034.29704627976,211,Elective,2019-05-27,Abnormal,3805,113,0,8,,,,DISCHARGED -3806,2020-05-13,2949.166173937724,339,Urgent,2020-05-24,Inconclusive,3806,362,3,17,,,,DISCHARGED -3807,2019-09-14,32510.06595042784,263,Elective,2019-10-10,Normal,3807,39,4,1,,,,DISCHARGED -3808,2019-01-23,41577.16528605794,197,Urgent,2019-02-12,Inconclusive,3808,485,4,24,,,,DISCHARGED -3809,2022-11-27,34196.512641192494,399,Emergency,2022-12-01,Inconclusive,3809,416,3,16,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3810,2020-11-28,44770.31633837437,357,Emergency,2020-12-02,Abnormal,3810,219,1,20,,,,DISCHARGED -3811,2021-06-26,30832.841350529477,145,Elective,2021-07-07,Inconclusive,3811,128,3,0,,,,DISCHARGED -3812,2020-05-30,27847.14467180365,119,Emergency,2020-06-05,Abnormal,3812,7,0,22,,,,DISCHARGED -3813,2022-09-25,42210.12831584641,289,Urgent,2022-10-21,Normal,3813,100,3,8,,,,DISCHARGED -3814,2022-06-04,23911.048795803003,185,Emergency,2022-06-07,Normal,3814,415,0,5,,,,DISCHARGED -3815,2023-01-04,7872.13733520285,207,Elective,,Abnormal,3815,379,2,29,,,,OPEN -3816,2019-10-01,20738.33653120527,192,Emergency,2019-10-12,Inconclusive,3816,175,0,1,,,,DISCHARGED -3818,2022-06-23,18933.83020252073,412,Emergency,2022-07-14,Normal,3818,106,4,5,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3819,2022-09-02,2470.51101845269,390,Emergency,2022-09-11,Inconclusive,3819,100,3,8,,,,DISCHARGED -3820,2023-10-28,42183.6638644879,482,Urgent,,Inconclusive,3820,259,0,2,,,,OPEN -3821,2022-03-01,19428.56091892978,163,Elective,2022-03-08,Inconclusive,3821,477,1,15,,,,DISCHARGED -3822,2023-02-10,26911.52130540193,271,Emergency,2023-03-10,Normal,3822,453,2,24,,,,DISCHARGED -3823,2021-12-11,16286.162383424242,145,Elective,2022-01-06,Normal,3823,365,1,23,,,,DISCHARGED -3824,2020-01-14,23605.84871063761,296,Urgent,2020-01-31,Normal,3824,245,1,14,,,,DISCHARGED -3824,2021-04-08,41423.10765100516,466,Emergency,2021-05-03,Normal,7371,274,1,28,,,,DISCHARGED -3825,2020-09-08,41495.97114396475,358,Emergency,2020-09-11,Inconclusive,3825,31,2,11,,,,DISCHARGED -3826,2021-05-19,47658.04612178131,238,Emergency,2021-06-11,Inconclusive,3826,136,2,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3827,2023-03-10,20510.58310956463,397,Elective,2023-03-30,Abnormal,3827,11,2,7,,,,DISCHARGED -3828,2020-04-16,2656.778684233969,167,Urgent,2020-04-21,Normal,3828,394,2,25,,,,DISCHARGED -3829,2021-12-03,19365.24368621488,367,Emergency,2021-12-21,Inconclusive,3829,301,1,5,,,,DISCHARGED -3830,2019-02-21,41041.84884139222,432,Emergency,2019-02-25,Abnormal,3830,374,4,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -3831,2022-10-16,48642.77474602781,319,Urgent,2022-10-31,Inconclusive,3831,15,4,22,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3832,2023-07-24,45316.81843052264,230,Elective,2023-08-22,Abnormal,3832,128,2,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -3833,2023-07-03,8514.766709092019,455,Emergency,2023-07-28,Abnormal,3833,62,3,26,,,,DISCHARGED -3834,2023-05-25,25048.930069642534,271,Elective,2023-05-28,Inconclusive,3834,108,0,9,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -3835,2020-08-20,13481.72373755531,452,Elective,2020-08-28,Abnormal,3835,374,3,13,,,,DISCHARGED -3836,2020-06-27,12323.67397719975,267,Urgent,2020-07-09,Abnormal,3836,20,3,20,,,,DISCHARGED -3837,2021-07-31,47557.24329848317,455,Elective,2021-08-04,Inconclusive,3837,157,3,23,,,,DISCHARGED -3838,2023-04-30,42343.40934392996,378,Emergency,2023-05-26,Normal,3838,268,4,14,,,,DISCHARGED -3839,2019-09-09,24384.258244676992,332,Elective,2019-09-11,Abnormal,3839,161,0,6,,,,DISCHARGED -3840,2022-03-08,17499.031216129893,230,Urgent,2022-03-22,Abnormal,3840,259,3,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -3841,2023-04-05,18375.03080246838,175,Elective,2023-04-08,Abnormal,3841,411,2,7,,,,DISCHARGED -3842,2022-11-03,33529.966100828,172,Elective,2022-11-20,Abnormal,3842,101,4,9,,,,DISCHARGED -3843,2020-04-26,49614.102577248654,159,Elective,2020-05-23,Abnormal,3843,222,2,18,,,,DISCHARGED -3844,2023-03-04,27226.03442573905,194,Urgent,2023-03-05,Inconclusive,3844,58,2,18,,,,DISCHARGED -3845,2019-10-07,42866.05731102149,414,Emergency,2019-11-02,Abnormal,3845,246,3,1,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -3847,2021-10-14,17788.830863157677,151,Emergency,2021-11-01,Inconclusive,3847,127,2,14,,,,DISCHARGED -3848,2023-10-17,2785.6951543200403,319,Emergency,2023-11-11,Normal,3848,282,0,0,,,,DISCHARGED -3848,2022-08-21,42765.92579730368,190,Emergency,2022-09-06,Inconclusive,8538,324,2,9,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -3848,2019-08-10,9100.369929764409,358,Elective,2019-08-18,Normal,8942,24,3,5,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3849,2023-05-25,8628.143559606928,342,Urgent,2023-06-11,Inconclusive,3849,130,2,21,,,,DISCHARGED -3850,2020-05-24,35979.679725886126,416,Elective,2020-06-10,Abnormal,3850,352,4,12,,,,DISCHARGED -3851,2021-09-05,34936.95850435869,381,Emergency,2021-09-28,Abnormal,3851,195,4,9,,,,DISCHARGED -3852,2022-01-17,19319.40761289952,132,Elective,2022-01-22,Abnormal,3852,280,4,11,,,,DISCHARGED -3853,2018-11-14,29101.685021880672,377,Emergency,2018-11-26,Normal,3853,403,1,23,,,,DISCHARGED -3854,2022-06-04,18057.88879497113,284,Urgent,2022-06-08,Normal,3854,417,4,29,,,,DISCHARGED -3854,2020-05-08,25213.05845341943,313,Elective,2020-05-20,Inconclusive,6636,153,4,5,,,,DISCHARGED -3855,2022-09-14,3296.148245456768,110,Urgent,2022-09-24,Abnormal,3855,381,1,5,,,,DISCHARGED -3856,2023-07-02,26158.336217848813,425,Elective,,Normal,3856,132,4,0,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -3857,2020-12-07,28463.74647710118,342,Emergency,2020-12-08,Normal,3857,226,3,11,,,,DISCHARGED -3858,2022-03-03,40459.06481552834,251,Emergency,2022-03-16,Inconclusive,3858,188,4,22,,,,DISCHARGED -3859,2020-06-23,41009.649545467306,103,Elective,2020-07-15,Abnormal,3859,475,4,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3860,2021-12-24,42734.6695732195,179,Elective,2022-01-04,Inconclusive,3860,476,1,9,,,,DISCHARGED -3861,2023-08-10,46990.22262081697,472,Elective,,Abnormal,3861,264,3,24,,,,OPEN -3862,2019-01-10,33165.530515743245,214,Emergency,2019-01-18,Inconclusive,3862,371,2,13,,,,DISCHARGED -3863,2020-01-22,33115.52334657452,224,Urgent,2020-01-24,Abnormal,3863,485,0,14,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -3864,2021-03-10,29131.68791184076,343,Urgent,2021-03-25,Abnormal,3864,433,3,27,,,,DISCHARGED -3865,2020-10-04,31113.976983774814,480,Elective,2020-10-06,Normal,3865,133,2,22,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3867,2021-07-05,2060.5697049083537,266,Elective,2021-07-09,Abnormal,3867,210,3,23,,,,DISCHARGED -3868,2022-09-16,1953.4352258480728,395,Elective,2022-09-26,Normal,3868,59,2,3,,,,DISCHARGED -3869,2018-12-24,16225.101066585195,247,Urgent,2019-01-13,Normal,3869,427,2,24,,,,DISCHARGED -3870,2020-07-31,47886.1686090532,442,Emergency,2020-08-28,Inconclusive,3870,376,3,29,,,,DISCHARGED -3871,2021-02-25,10719.81835782693,128,Urgent,2021-03-12,Abnormal,3871,394,1,0,,,,DISCHARGED -3872,2021-02-17,5969.409197997437,324,Urgent,2021-02-27,Inconclusive,3872,449,3,7,,,,DISCHARGED -3873,2022-06-14,48521.18885872096,137,Emergency,2022-06-21,Normal,3873,430,3,2,,,,DISCHARGED -3874,2023-07-06,9053.578891464997,283,Emergency,2023-07-17,Inconclusive,3874,363,2,13,,,,DISCHARGED -3875,2020-06-24,23000.698126196985,225,Elective,2020-06-30,Normal,3875,363,0,16,,,,DISCHARGED -3876,2022-02-21,45763.56584901265,417,Urgent,2022-02-27,Inconclusive,3876,456,2,1,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -3877,2021-09-05,3975.289322624032,444,Emergency,2021-10-04,Abnormal,3877,212,4,14,,,,DISCHARGED -3878,2019-09-05,33453.73402484878,244,Emergency,2019-09-15,Inconclusive,3878,215,3,5,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -3879,2023-04-16,36102.38687809192,178,Elective,2023-04-19,Abnormal,3879,225,3,4,,,,DISCHARGED -3880,2021-04-10,16027.801413802095,230,Urgent,2021-04-14,Normal,3880,469,1,13,,,,DISCHARGED -3881,2020-11-02,16862.783661251284,455,Urgent,2020-11-12,Inconclusive,3881,130,2,18,,,,DISCHARGED -3883,2019-09-17,7338.191705441037,409,Urgent,2019-10-07,Abnormal,3883,75,1,8,,,,DISCHARGED -3884,2019-02-01,22297.61619329017,412,Elective,2019-02-24,Normal,3884,475,3,7,,,,DISCHARGED -3885,2021-09-04,41484.95102317372,294,Urgent,2021-09-19,Normal,3885,285,2,28,,,,DISCHARGED -3885,2022-09-16,41574.91651255788,449,Emergency,2022-09-20,Inconclusive,7538,473,2,2,,,,DISCHARGED -3885,2021-07-16,34547.08330500104,291,Urgent,2021-08-09,Abnormal,9377,495,4,17,,,,DISCHARGED -3886,2020-11-07,16822.46724129276,455,Emergency,2020-11-17,Abnormal,3886,276,4,7,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -3887,2020-01-05,31622.310763011203,481,Elective,2020-01-24,Abnormal,3887,155,0,15,,,,DISCHARGED -3888,2023-04-04,5762.325282999796,416,Elective,2023-04-25,Inconclusive,3888,247,4,29,,,,DISCHARGED -3889,2022-12-24,28077.12145305293,188,Urgent,2023-01-13,Inconclusive,3889,217,2,14,,,,DISCHARGED -3890,2021-06-14,25257.30991148984,128,Urgent,2021-06-19,Abnormal,3890,189,4,20,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3891,2019-06-06,47385.322965355095,228,Urgent,2019-06-17,Normal,3891,416,0,14,,,,DISCHARGED -3892,2019-08-20,16320.884790906048,280,Elective,2019-08-29,Inconclusive,3892,468,3,15,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -3893,2022-09-21,45863.75604600143,173,Emergency,2022-10-08,Inconclusive,3893,162,4,24,,,,DISCHARGED -3894,2021-03-16,37749.471513937046,331,Urgent,2021-03-28,Abnormal,3894,179,2,0,,,,DISCHARGED -3895,2019-02-07,11022.559727378686,426,Elective,2019-03-09,Abnormal,3895,33,3,9,,,,DISCHARGED -3896,2022-07-08,12152.146932430454,358,Emergency,2022-07-09,Normal,3896,40,2,18,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -3897,2021-01-16,38950.91725817293,178,Emergency,2021-02-12,Inconclusive,3897,306,3,4,,,,DISCHARGED -3898,2019-08-17,47949.87225993205,283,Emergency,2019-08-28,Normal,3898,430,2,17,,,,DISCHARGED -3898,2021-07-19,48896.33851533526,307,Elective,2021-07-24,Normal,5589,337,4,2,,,,DISCHARGED -3899,2020-07-23,38367.37068285416,296,Elective,2020-08-18,Inconclusive,3899,313,4,3,,,,DISCHARGED -3900,2022-04-05,28856.342554984614,376,Elective,2022-04-13,Inconclusive,3900,74,0,3,,,,DISCHARGED -3901,2021-04-24,46246.54888675951,265,Elective,2021-05-14,Abnormal,3901,440,3,10,,,,DISCHARGED -3902,2021-09-05,19613.175375617677,126,Urgent,2021-09-07,Normal,3902,278,0,8,,,,DISCHARGED -3903,2020-12-19,10498.185708038814,198,Urgent,2021-01-10,Abnormal,3903,175,1,0,,,,DISCHARGED -3905,2021-12-16,49424.27606338589,257,Emergency,2022-01-03,Normal,3905,383,4,27,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3906,2022-07-24,40691.44930979552,301,Emergency,2022-08-03,Abnormal,3906,149,3,24,,,,DISCHARGED -3907,2022-01-11,40662.870750776594,171,Urgent,2022-02-03,Abnormal,3907,272,0,15,,,,DISCHARGED -3908,2022-11-16,24441.31222258786,190,Emergency,2022-11-25,Abnormal,3908,324,0,8,,,,DISCHARGED -3909,2020-07-04,2812.9371336123704,451,Urgent,2020-07-18,Normal,3909,107,1,10,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -3910,2020-09-16,48581.32765762233,298,Elective,2020-09-27,Normal,3910,138,0,5,,,,DISCHARGED -3911,2023-06-17,43012.321931867766,196,Emergency,2023-07-11,Normal,3911,349,2,26,,,,DISCHARGED -3912,2019-08-11,34927.292262715266,400,Emergency,2019-08-26,Normal,3912,270,4,16,,,,DISCHARGED -3913,2021-11-06,25205.90275882803,225,Elective,2021-11-29,Normal,3913,346,0,26,,,,DISCHARGED -3914,2018-11-17,44218.85259201622,360,Emergency,2018-11-26,Normal,3914,418,0,28,,,,DISCHARGED -3915,2021-05-01,37230.96337400267,461,Urgent,2021-05-19,Inconclusive,3915,288,1,11,,,,DISCHARGED -3916,2022-05-11,14604.734731105513,158,Emergency,2022-05-17,Inconclusive,3916,211,2,21,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3917,2023-05-26,20713.6089265693,229,Urgent,2023-06-22,Normal,3917,380,0,7,,,,DISCHARGED -3918,2020-11-29,16471.421879970505,247,Urgent,2020-12-06,Normal,3918,271,4,15,,,,DISCHARGED -3919,2021-03-08,20854.947763964446,188,Emergency,2021-03-12,Abnormal,3919,417,4,4,,,,DISCHARGED -3920,2023-09-11,16607.916771683027,334,Urgent,2023-09-25,Abnormal,3920,65,0,20,,,,DISCHARGED -3920,2020-02-29,37070.95171970333,240,Emergency,2020-03-24,Normal,4575,482,2,0,,,,DISCHARGED -3921,2021-09-11,10987.393642437022,230,Emergency,2021-10-07,Abnormal,3921,423,4,16,,,,DISCHARGED -3922,2023-04-18,13904.256189617916,231,Emergency,2023-04-25,Inconclusive,3922,247,4,23,,,,DISCHARGED -3923,2022-07-09,41692.765692667526,116,Emergency,2022-07-29,Normal,3923,155,2,28,,,,DISCHARGED -3924,2020-03-22,25629.26656235793,470,Urgent,2020-04-02,Normal,3924,46,2,20,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -3925,2019-10-06,42342.61365184021,102,Urgent,2019-10-16,Abnormal,3925,422,0,7,,,,DISCHARGED -3926,2021-02-22,26274.55996553366,146,Urgent,2021-03-07,Normal,3926,453,3,9,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -3927,2019-11-03,35930.4049082831,164,Urgent,2019-12-01,Inconclusive,3927,200,1,17,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3928,2018-11-09,15868.935575970592,371,Elective,2018-11-22,Abnormal,3928,147,3,14,,,,DISCHARGED -3929,2021-05-31,3123.5975787042385,110,Emergency,2021-06-01,Normal,3929,123,3,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -3930,2020-09-07,9458.371255314618,201,Emergency,2020-09-12,Normal,3930,0,4,12,,,,DISCHARGED -3931,2023-04-22,4898.573239908914,454,Elective,,Normal,3931,455,2,26,,,,OPEN -3932,2023-05-09,24864.15380923731,287,Emergency,2023-05-25,Abnormal,3932,246,4,29,,,,DISCHARGED -3933,2021-07-07,8880.922382263609,196,Emergency,2021-07-27,Abnormal,3933,342,1,9,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3934,2022-10-18,7886.421979673938,358,Urgent,2022-10-27,Normal,3934,127,0,8,,,,DISCHARGED -3935,2023-06-14,34064.7398130964,399,Urgent,2023-07-07,Normal,3935,190,1,12,,,,DISCHARGED -3936,2020-09-24,38512.410603371536,296,Urgent,2020-10-02,Inconclusive,3936,66,4,2,,,,DISCHARGED -3937,2022-01-13,24972.559178678657,215,Emergency,2022-02-09,Normal,3937,3,4,21,,,,DISCHARGED -3938,2022-07-01,17322.72371013842,179,Urgent,2022-07-27,Normal,3938,441,4,26,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -3939,2022-04-20,33118.04473716077,133,Urgent,2022-05-09,Inconclusive,3939,408,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3940,2022-10-01,27654.432430874196,103,Elective,2022-10-12,Normal,3940,302,3,2,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3941,2021-11-27,4923.217315082435,473,Urgent,2021-12-09,Inconclusive,3941,293,0,0,,,,DISCHARGED -3942,2019-12-20,25521.45012697777,111,Elective,2019-12-26,Abnormal,3942,142,3,1,,,,DISCHARGED -3942,2022-10-22,40924.39213939114,142,Elective,2022-11-16,Abnormal,9294,190,4,10,,,,DISCHARGED -3943,2022-10-11,38096.41083445257,148,Emergency,2022-10-28,Normal,3943,20,2,13,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -3943,2020-01-05,26108.379155993392,130,Elective,2020-01-11,Normal,6108,226,3,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -3943,2019-03-20,37366.26162436063,434,Urgent,2019-04-05,Normal,8952,312,4,6,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -3944,2019-12-07,18417.029590283502,244,Elective,2019-12-21,Inconclusive,3944,116,4,22,,,,DISCHARGED -3944,2020-05-10,21621.86107192283,105,Urgent,2020-06-03,Normal,4783,436,0,27,,,,DISCHARGED -3945,2019-10-17,23985.737303950205,272,Elective,2019-11-15,Inconclusive,3945,301,1,0,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3946,2022-09-09,45229.44408146091,112,Emergency,2022-09-24,Inconclusive,3946,499,3,25,,,,DISCHARGED -3947,2020-10-12,24672.040279688063,335,Elective,2020-10-21,Inconclusive,3947,141,3,6,,,,DISCHARGED -3948,2023-05-06,9695.250708617095,344,Elective,2023-05-22,Normal,3948,483,3,14,,,,DISCHARGED -3949,2018-11-06,33515.25914114255,420,Emergency,2018-11-17,Normal,3949,459,4,25,,,,DISCHARGED -3950,2021-11-07,9078.333262934184,273,Emergency,2021-11-13,Inconclusive,3950,400,0,10,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3951,2020-08-20,48580.4746802228,224,Emergency,2020-09-07,Inconclusive,3951,38,4,5,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3952,2023-04-23,37778.66596853734,343,Emergency,,Abnormal,3952,392,4,26,,,,OPEN -3953,2021-05-26,7144.127417872438,138,Urgent,2021-06-15,Abnormal,3953,354,2,21,,,,DISCHARGED -3954,2019-08-14,12519.272605837436,488,Emergency,2019-09-05,Inconclusive,3954,251,0,6,,,,DISCHARGED -3955,2022-09-19,33332.135010162885,137,Emergency,2022-10-14,Normal,3955,332,3,6,,,,DISCHARGED -3956,2020-05-06,12644.305637054504,296,Elective,2020-06-05,Inconclusive,3956,206,1,0,,,,DISCHARGED -3957,2023-07-26,44684.55787544052,207,Urgent,2023-08-02,Abnormal,3957,209,3,9,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3958,2022-11-27,35361.25890753226,259,Emergency,2022-12-09,Normal,3958,114,4,20,,,,DISCHARGED -3959,2021-02-04,41672.53599427157,416,Elective,2021-02-15,Inconclusive,3959,224,0,14,,,,DISCHARGED -3960,2021-08-03,1991.4269568056736,357,Urgent,2021-08-25,Normal,3960,133,0,29,,,,DISCHARGED -3961,2020-06-30,17969.189515420894,284,Urgent,2020-07-30,Inconclusive,3961,250,0,29,,,,DISCHARGED -3961,2018-11-14,29891.60304369176,133,Emergency,2018-12-01,Abnormal,7785,218,2,7,,,,DISCHARGED -3962,2020-07-21,5413.134696851237,102,Emergency,2020-08-03,Inconclusive,3962,406,3,23,,,,DISCHARGED -3962,2020-02-21,19911.42557495919,328,Emergency,2020-02-23,Inconclusive,9611,442,2,18,,,,DISCHARGED -3963,2021-01-04,30201.931133778864,333,Urgent,2021-01-14,Abnormal,3963,90,1,2,,,,DISCHARGED -3964,2021-09-09,23928.441096353883,314,Elective,2021-09-25,Inconclusive,3964,353,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -3965,2022-05-10,18051.707230751606,370,Urgent,2022-05-17,Inconclusive,3965,375,2,14,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3966,2020-04-12,32554.534309900697,170,Emergency,2020-04-25,Inconclusive,3966,45,2,3,,,,DISCHARGED -3967,2021-09-15,29105.91528606373,141,Emergency,2021-10-01,Normal,3967,37,4,5,,,,DISCHARGED -3968,2022-10-20,47263.46953850678,111,Emergency,2022-11-10,Inconclusive,3968,141,0,24,,,,DISCHARGED -3969,2021-01-09,7512.029457322245,331,Emergency,2021-01-15,Abnormal,3969,99,4,9,,,,DISCHARGED -3970,2020-09-05,7771.840103114891,135,Emergency,2020-09-06,Abnormal,3970,327,3,17,,,,DISCHARGED -3971,2019-12-16,18140.723328276483,417,Elective,2019-12-26,Abnormal,3971,189,4,15,,,,DISCHARGED -3972,2022-10-04,21694.207782507357,139,Elective,2022-10-12,Abnormal,3972,34,0,17,,,,DISCHARGED -3973,2023-01-01,20753.005717656008,189,Urgent,2023-01-25,Abnormal,3973,146,4,5,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -3974,2023-09-20,41130.34042727387,212,Urgent,,Inconclusive,3974,29,2,18,,,,OPEN -3975,2023-08-18,48860.7183867527,472,Emergency,,Normal,3975,333,1,16,,,,OPEN -3976,2020-11-19,18608.673624256196,488,Elective,2020-12-02,Normal,3976,83,2,17,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3976,2019-05-17,30381.033311219573,300,Elective,2019-05-30,Abnormal,8305,368,1,29,,,,DISCHARGED -3977,2020-01-30,40964.695314443285,316,Elective,2020-02-04,Inconclusive,3977,280,4,12,,,,DISCHARGED -3978,2020-12-17,6556.955215421849,154,Urgent,2021-01-15,Abnormal,3978,423,3,6,,,,DISCHARGED -3979,2020-04-19,7636.3299607928675,443,Emergency,2020-04-23,Normal,3979,343,4,19,,,,DISCHARGED -3980,2021-06-16,14947.12417803082,155,Urgent,2021-06-18,Normal,3980,269,0,11,,,,DISCHARGED -3981,2019-01-19,18042.64116237524,293,Elective,2019-02-08,Abnormal,3981,153,4,1,,,,DISCHARGED -3982,2020-10-04,48299.50046438851,388,Urgent,2020-10-13,Normal,3982,101,1,26,,,,DISCHARGED -3983,2021-03-10,47254.47584945281,310,Elective,2021-03-15,Abnormal,3983,214,2,11,,,,DISCHARGED -3984,2020-03-31,5017.569822536991,351,Urgent,2020-04-16,Abnormal,3984,149,3,11,,,,DISCHARGED -3984,2020-08-21,34963.99295073078,162,Emergency,2020-08-31,Normal,4800,431,4,23,,,,DISCHARGED -3985,2022-06-10,17433.181940432543,467,Elective,2022-06-20,Abnormal,3985,82,4,3,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -3986,2022-05-17,34511.355377776534,176,Elective,2022-05-20,Normal,3986,109,2,3,,,,DISCHARGED -3987,2020-04-04,8200.83480217131,184,Emergency,2020-04-18,Abnormal,3987,434,3,17,,,,DISCHARGED -3988,2021-06-05,19924.38066917568,495,Elective,2021-06-16,Abnormal,3988,386,4,15,,,,DISCHARGED -3989,2021-03-01,49812.58754352534,297,Urgent,2021-03-06,Normal,3989,425,4,13,,,,DISCHARGED -3990,2019-06-16,23444.59945535656,119,Urgent,2019-06-24,Inconclusive,3990,274,1,16,,,,DISCHARGED -3991,2020-04-19,12067.769777771766,271,Elective,2020-05-05,Abnormal,3991,200,1,16,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3992,2020-12-18,44827.12636240335,437,Urgent,2021-01-04,Normal,3992,283,0,2,,,,DISCHARGED -3993,2020-02-17,39754.20605040342,499,Emergency,2020-03-13,Abnormal,3993,467,2,5,,,,DISCHARGED -3994,2020-01-09,14520.267900345236,137,Elective,2020-02-02,Inconclusive,3994,172,3,22,,,,DISCHARGED -3995,2019-02-20,22144.314826164707,354,Elective,2019-02-25,Abnormal,3995,326,4,12,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3996,2022-12-07,21146.308661946216,484,Elective,2022-12-11,Abnormal,3996,205,4,8,,,,DISCHARGED -3998,2021-10-25,32112.73918241049,465,Urgent,2021-11-17,Normal,3998,62,0,20,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3999,2022-10-28,9609.214124199108,296,Emergency,2022-11-16,Abnormal,3999,72,4,8,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4000,2023-01-09,12652.310545058128,147,Elective,,Normal,4000,250,2,7,,,,OPEN -4001,2022-11-28,19411.487289512515,428,Urgent,2022-12-25,Abnormal,4001,123,0,16,,,,DISCHARGED -4002,2022-05-15,33825.35307615227,110,Elective,2022-06-01,Abnormal,4002,374,2,15,,,,DISCHARGED -4003,2023-08-02,35068.646606772454,145,Elective,2023-08-23,Abnormal,4003,120,0,15,,,,DISCHARGED -4004,2021-02-14,21291.259735417338,170,Elective,2021-03-13,Abnormal,4004,274,4,26,,,,DISCHARGED -4005,2020-05-23,49900.08351099672,381,Elective,2020-05-24,Inconclusive,4005,430,0,27,,,,DISCHARGED -4006,2020-12-28,8357.522966165114,382,Emergency,2021-01-10,Abnormal,4006,499,1,18,,,,DISCHARGED -4007,2019-03-15,40074.146366518806,253,Emergency,2019-04-07,Normal,4007,397,3,23,,,,DISCHARGED -4008,2023-09-15,10614.992438402242,253,Urgent,2023-09-28,Abnormal,4008,119,4,15,,,,DISCHARGED -4009,2022-02-05,33360.97569754692,416,Urgent,2022-03-06,Normal,4009,421,3,24,,,,DISCHARGED -4010,2019-05-03,15576.106585887708,316,Elective,2019-05-18,Abnormal,4010,436,4,13,,,,DISCHARGED -4012,2020-02-29,41337.62843125778,244,Elective,2020-03-03,Normal,4012,316,3,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4013,2021-07-13,20246.20232371428,335,Emergency,2021-07-18,Abnormal,4013,163,1,13,,,,DISCHARGED -4014,2021-06-14,36197.38262596049,199,Urgent,2021-07-04,Normal,4014,423,3,13,,,,DISCHARGED -4015,2020-03-31,46376.842085179895,135,Elective,2020-04-23,Abnormal,4015,464,0,13,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4016,2019-03-27,44143.93245166343,462,Elective,2019-04-25,Abnormal,4016,285,3,11,,,,DISCHARGED -4017,2020-02-11,29842.205512743705,198,Elective,2020-02-12,Abnormal,4017,264,4,5,,,,DISCHARGED -4018,2020-12-12,48566.61033860887,351,Elective,2021-01-07,Normal,4018,319,2,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4019,2021-11-05,47286.30961643738,242,Emergency,2021-12-04,Abnormal,4019,160,3,12,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -4020,2019-03-31,10918.82339082959,252,Urgent,2019-04-07,Normal,4020,375,3,15,,,,DISCHARGED -4021,2021-10-08,38278.33553192345,102,Elective,2021-10-21,Normal,4021,307,3,8,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -4022,2021-05-24,30986.08126798341,125,Elective,2021-05-29,Abnormal,4022,88,4,1,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4023,2019-02-23,16279.178560670272,446,Urgent,2019-02-24,Normal,4023,141,3,21,,,,DISCHARGED -4024,2019-07-12,12262.22205058744,363,Emergency,2019-07-20,Normal,4024,202,4,26,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4025,2022-05-24,31059.223068350944,158,Elective,2022-06-01,Inconclusive,4025,308,4,28,,,,DISCHARGED -4026,2020-06-28,37309.69758057914,494,Elective,2020-07-08,Abnormal,4026,226,2,2,,,,DISCHARGED -4027,2020-11-22,28915.93576194849,230,Emergency,2020-11-26,Abnormal,4027,488,0,9,,,,DISCHARGED -4028,2019-10-15,8904.32972556465,436,Emergency,2019-11-02,Normal,4028,442,4,19,,,,DISCHARGED -4029,2019-11-02,40430.05128268872,227,Elective,2019-11-05,Normal,4029,333,1,1,,,,DISCHARGED -4030,2022-06-25,39810.83693746627,200,Urgent,2022-07-16,Inconclusive,4030,221,3,26,,,,DISCHARGED -4031,2021-02-05,14995.154060260846,151,Urgent,2021-02-21,Normal,4031,40,1,23,,,,DISCHARGED -4032,2020-06-27,32380.07272129643,228,Urgent,2020-07-12,Normal,4032,195,3,9,,,,DISCHARGED -4033,2023-06-23,13576.802988935126,450,Elective,2023-06-28,Inconclusive,4033,67,2,7,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -4034,2021-06-19,10029.231901138082,340,Emergency,2021-07-13,Abnormal,4034,475,4,16,,,,DISCHARGED -4035,2021-08-04,47621.64433017772,213,Emergency,2021-08-18,Normal,4035,263,0,25,,,,DISCHARGED -4036,2021-01-06,2300.5260238295764,115,Emergency,2021-01-21,Inconclusive,4036,1,4,21,,,,DISCHARGED -4037,2019-12-25,46470.42030442321,386,Urgent,2019-12-26,Abnormal,4037,360,3,0,,,,DISCHARGED -4038,2020-03-05,16686.80059995276,379,Elective,2020-03-06,Inconclusive,4038,124,0,5,,,,DISCHARGED -4039,2019-05-24,4205.945833565284,417,Emergency,2019-06-13,Normal,4039,109,4,6,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -4040,2020-03-11,47665.212945095096,119,Elective,2020-04-02,Inconclusive,4040,85,0,14,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4041,2021-11-21,20385.93961071164,228,Elective,2021-12-19,Normal,4041,424,3,17,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4042,2023-10-09,19397.09973625408,175,Elective,,Normal,4042,119,2,8,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -4043,2023-08-05,8002.138123438562,285,Emergency,2023-08-25,Normal,4043,126,2,7,,,,DISCHARGED -4043,2023-10-25,28540.132776710318,156,Emergency,2023-11-23,Normal,9248,254,4,24,,,,DISCHARGED -4044,2019-03-11,23316.601149183854,147,Elective,2019-03-19,Abnormal,4044,182,1,9,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4045,2023-07-23,14719.36836320746,309,Elective,2023-08-10,Abnormal,4045,15,3,28,,,,DISCHARGED -4046,2021-06-08,17739.127786418325,190,Urgent,2021-07-04,Normal,4046,476,4,3,,,,DISCHARGED -4047,2020-05-07,9077.402085137284,478,Urgent,2020-05-08,Normal,4047,61,4,19,,,,DISCHARGED -4047,2021-06-24,20712.705756785224,408,Elective,2021-06-29,Abnormal,4288,368,2,27,,,,DISCHARGED -4047,2019-06-14,23365.268348783364,247,Elective,2019-07-12,Abnormal,5222,431,0,7,,,,DISCHARGED -4048,2021-03-19,37566.39943995905,182,Elective,2021-04-10,Inconclusive,4048,157,3,0,,,,DISCHARGED -4049,2022-03-01,17200.96966789083,476,Emergency,2022-03-11,Abnormal,4049,267,0,7,,,,DISCHARGED -4050,2021-08-31,11638.74678141634,255,Elective,2021-09-30,Inconclusive,4050,34,3,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -4051,2021-03-11,6479.735809319888,437,Urgent,2021-03-23,Inconclusive,4051,266,1,11,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4052,2019-12-27,27862.38920578344,383,Elective,2019-12-28,Normal,4052,63,2,22,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4053,2021-05-01,24378.80672034411,457,Urgent,2021-05-21,Abnormal,4053,493,1,24,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -4054,2023-08-07,49558.22013617202,428,Emergency,,Inconclusive,4054,49,4,14,,,,OPEN -4055,2019-04-18,12557.286967519134,280,Elective,2019-04-30,Normal,4055,468,2,12,,,,DISCHARGED -4056,2019-05-02,33441.48765104907,137,Urgent,2019-05-31,Normal,4056,254,4,15,,,,DISCHARGED -4057,2018-12-18,39737.89778415201,104,Urgent,2019-01-03,Abnormal,4057,148,1,25,,,,DISCHARGED -4058,2023-04-24,14228.5820984642,119,Elective,2023-04-29,Normal,4058,324,3,22,,,,DISCHARGED -4059,2020-05-11,18139.456499238557,339,Emergency,2020-05-29,Abnormal,4059,303,4,17,,,,DISCHARGED -4060,2021-12-21,24983.96382578792,292,Emergency,2022-01-11,Abnormal,4060,275,0,0,,,,DISCHARGED -4060,2019-11-06,30701.586578725437,333,Emergency,2019-11-20,Abnormal,4456,356,3,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4061,2020-03-01,33433.44272903414,240,Elective,2020-03-17,Inconclusive,4061,450,3,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4063,2022-07-26,42488.15302488745,170,Urgent,2022-08-08,Normal,4063,171,1,22,,,,DISCHARGED -4064,2019-07-17,19133.17951146756,116,Emergency,2019-07-21,Normal,4064,416,1,4,,,,DISCHARGED -4065,2020-08-26,48443.03345050882,147,Urgent,2020-08-29,Normal,4065,200,2,19,,,,DISCHARGED -4066,2019-09-21,36154.46007041329,124,Emergency,2019-09-28,Inconclusive,4066,444,2,20,,,,DISCHARGED -4067,2021-04-16,36723.890483774754,368,Elective,2021-05-16,Normal,4067,392,0,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4068,2022-06-08,32863.89504872498,354,Elective,2022-06-29,Abnormal,4068,323,3,25,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -4069,2023-09-11,28695.033474055363,459,Emergency,,Normal,4069,34,0,5,,,,OPEN -4070,2022-05-12,15146.13753998245,466,Emergency,2022-05-24,Inconclusive,4070,464,0,11,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -4071,2022-05-17,45894.05972194325,106,Urgent,2022-06-01,Normal,4071,481,1,9,,,,DISCHARGED -4072,2018-11-22,23456.59186796261,442,Elective,2018-12-04,Inconclusive,4072,215,0,21,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4073,2020-05-07,44371.59879829837,468,Emergency,2020-06-02,Inconclusive,4073,479,0,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4074,2020-07-18,22463.355656768304,327,Urgent,2020-08-09,Inconclusive,4074,64,4,1,,,,DISCHARGED -4075,2020-03-19,10962.949478521576,435,Urgent,2020-03-27,Inconclusive,4075,7,2,18,,,,DISCHARGED -4076,2019-12-11,39580.196471736,144,Emergency,2019-12-24,Inconclusive,4076,300,2,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4077,2022-12-23,7007.829557357024,454,Elective,2023-01-01,Normal,4077,342,3,5,,,,DISCHARGED -4078,2023-02-16,9855.46439707228,196,Urgent,2023-02-27,Normal,4078,430,2,27,,,,DISCHARGED -4079,2019-09-11,21906.41697547982,134,Emergency,2019-09-16,Abnormal,4079,423,3,27,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4080,2019-05-15,20062.542398273865,152,Urgent,2019-05-18,Abnormal,4080,331,4,26,,,,DISCHARGED -4081,2023-04-12,10827.92831263798,404,Emergency,,Normal,4081,437,2,12,,,,OPEN -4082,2020-10-15,42304.02618149485,273,Emergency,2020-10-16,Inconclusive,4082,75,4,8,,,,DISCHARGED -4083,2019-06-27,12747.70699129026,239,Elective,2019-07-04,Abnormal,4083,173,2,11,,,,DISCHARGED -4084,2021-07-13,6426.727048325362,137,Urgent,2021-07-31,Normal,4084,46,2,17,,,,DISCHARGED -4085,2023-04-18,34388.5865262107,295,Emergency,,Normal,4085,14,4,7,,,,OPEN -4086,2020-04-13,18527.51955670068,487,Urgent,2020-04-14,Abnormal,4086,360,0,24,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4087,2019-12-25,29415.57396556698,298,Elective,2020-01-05,Normal,4087,146,0,17,,,,DISCHARGED -4088,2022-06-05,22825.3529388502,486,Urgent,2022-06-19,Normal,4088,25,0,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4089,2020-11-01,37128.811796391245,334,Elective,2020-11-17,Normal,4089,307,0,22,,,,DISCHARGED -4091,2022-02-08,26910.252701682504,380,Emergency,2022-02-22,Abnormal,4091,92,2,24,,,,DISCHARGED -4092,2019-12-28,34031.516229777975,123,Urgent,2020-01-06,Inconclusive,4092,405,1,21,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4093,2020-06-11,49637.53010510683,359,Elective,2020-06-13,Inconclusive,4093,231,4,1,,,,DISCHARGED -4094,2020-08-10,38145.1571943148,193,Urgent,2020-08-26,Abnormal,4094,20,1,7,,,,DISCHARGED -4095,2019-01-27,37630.01096501882,348,Emergency,2019-02-13,Abnormal,4095,306,1,9,,,,DISCHARGED -4096,2019-12-15,15250.360627030066,347,Elective,2020-01-03,Inconclusive,4096,37,3,8,,,,DISCHARGED -4096,2020-05-06,18994.00515974204,454,Urgent,2020-05-24,Normal,5015,275,0,27,,,,DISCHARGED -4096,2019-01-16,40822.80022225712,168,Elective,2019-01-20,Normal,7224,156,2,23,,,,DISCHARGED -4096,2022-10-08,11752.769050731538,381,Emergency,2022-11-04,Normal,7642,178,0,17,,,,DISCHARGED -4096,2019-11-06,36453.74324006667,140,Elective,2019-11-23,Normal,9174,131,0,7,,,,DISCHARGED -4096,2021-10-23,36394.58271488938,369,Urgent,2021-11-06,Abnormal,9421,310,1,18,,,,DISCHARGED -4097,2021-07-28,39041.34527018336,181,Elective,2021-08-05,Normal,4097,454,3,2,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4098,2021-11-28,2838.7381404898906,194,Emergency,2021-12-24,Inconclusive,4098,347,0,8,,,,DISCHARGED -4100,2019-07-21,11230.782947959842,240,Urgent,2019-08-20,Abnormal,4100,27,4,12,,,,DISCHARGED -4101,2022-10-06,28880.89852983083,224,Urgent,2022-10-19,Inconclusive,4101,259,4,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -4103,2020-07-23,13018.565183607856,332,Elective,2020-07-29,Normal,4103,405,0,24,,,,DISCHARGED -4104,2019-07-01,39601.683662314295,291,Urgent,2019-07-20,Normal,4104,75,1,19,,,,DISCHARGED -4105,2019-04-12,31913.265604153305,353,Urgent,2019-05-03,Abnormal,4105,428,1,11,,,,DISCHARGED -4106,2020-11-07,25200.47533747384,395,Emergency,2020-11-26,Inconclusive,4106,66,2,29,,,,DISCHARGED -4106,2021-02-11,42610.13407567181,128,Emergency,2021-02-27,Inconclusive,6640,341,3,22,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -4107,2023-09-07,46028.22671121138,153,Elective,2023-09-21,Inconclusive,4107,491,1,12,,,,DISCHARGED -4108,2021-05-29,3852.7388595096168,490,Urgent,2021-06-14,Abnormal,4108,193,2,7,,,,DISCHARGED -4109,2021-09-03,28102.63109552809,146,Urgent,2021-09-21,Abnormal,4109,471,4,14,,,,DISCHARGED -4111,2021-04-10,17019.112718489836,475,Emergency,2021-05-08,Inconclusive,4111,161,4,28,,,,DISCHARGED -4112,2023-07-19,10240.036551625411,288,Emergency,2023-08-04,Inconclusive,4112,346,4,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4113,2019-05-22,47374.6213192287,347,Elective,2019-06-09,Inconclusive,4113,438,0,20,,,,DISCHARGED -4114,2021-09-25,20829.347631650067,426,Elective,2021-10-01,Abnormal,4114,360,3,12,,,,DISCHARGED -4115,2020-02-23,17600.75197620571,194,Emergency,2020-03-07,Abnormal,4115,256,2,16,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -4116,2022-11-09,33887.57196309414,173,Elective,2022-11-11,Inconclusive,4116,71,3,14,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4117,2020-11-09,45298.7887266391,163,Elective,2020-11-11,Normal,4117,86,0,24,,,,DISCHARGED -4118,2020-01-18,22877.89039151832,331,Elective,2020-02-10,Abnormal,4118,421,2,21,,,,DISCHARGED -4119,2019-11-30,49541.26218720334,320,Emergency,2019-12-19,Normal,4119,261,2,18,,,,DISCHARGED -4120,2021-09-04,2606.946706386134,487,Emergency,2021-09-18,Normal,4120,213,1,2,,,,DISCHARGED -4121,2020-04-30,37474.1198542464,196,Urgent,2020-05-09,Normal,4121,152,3,13,,,,DISCHARGED -4122,2022-09-10,33819.5964827501,103,Emergency,2022-09-20,Normal,4122,209,3,29,,,,DISCHARGED -4123,2020-03-24,6020.961656975189,196,Urgent,2020-04-16,Abnormal,4123,400,1,9,,,,DISCHARGED -4124,2019-12-05,27975.521783425225,473,Emergency,2019-12-10,Normal,4124,60,4,16,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4125,2021-04-25,27417.46363334177,500,Emergency,2021-05-11,Normal,4125,267,0,28,,,,DISCHARGED -4126,2022-02-09,28291.41257908482,356,Urgent,2022-02-23,Abnormal,4126,261,3,7,,,,DISCHARGED -4127,2019-07-25,10726.848194099884,173,Elective,2019-08-02,Normal,4127,217,1,17,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -4128,2023-04-05,9047.33170807136,157,Elective,2023-04-22,Inconclusive,4128,282,2,11,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4129,2020-11-29,7773.859400105024,229,Urgent,2020-12-04,Normal,4129,135,1,16,,,,DISCHARGED -4130,2023-05-17,11423.648805123405,451,Emergency,2023-06-03,Inconclusive,4130,466,4,22,,,,DISCHARGED -4131,2020-12-18,19715.406694945024,311,Emergency,2021-01-15,Normal,4131,379,0,29,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -4132,2020-04-14,42817.98659283683,495,Emergency,2020-04-29,Inconclusive,4132,361,4,10,,,,DISCHARGED -4133,2023-05-30,2709.9609103645807,484,Urgent,,Normal,4133,448,2,8,,,,OPEN -4134,2023-07-03,25694.665941571697,479,Elective,2023-07-06,Abnormal,4134,440,2,21,,,,DISCHARGED -4135,2020-08-01,3409.95773502086,481,Elective,2020-08-02,Inconclusive,4135,92,2,23,,,,DISCHARGED -4136,2022-05-11,34498.23081364619,490,Emergency,2022-06-04,Abnormal,4136,108,2,23,,,,DISCHARGED -4137,2019-05-06,20840.734472914643,322,Emergency,2019-05-26,Inconclusive,4137,240,1,24,,,,DISCHARGED -4138,2023-08-09,11054.174225788036,192,Elective,2023-09-07,Normal,4138,354,2,22,,,,DISCHARGED -4139,2020-06-22,20459.422587502395,434,Emergency,2020-07-11,Normal,4139,423,2,24,,,,DISCHARGED -4140,2021-05-22,42666.33676754862,382,Urgent,2021-06-18,Normal,4140,141,1,14,,,,DISCHARGED -4140,2020-03-24,13891.21952687642,413,Urgent,2020-03-30,Abnormal,8178,290,2,8,,,,DISCHARGED -4141,2020-04-23,12688.552560151287,347,Urgent,2020-05-07,Abnormal,4141,431,4,11,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -4142,2020-02-24,5467.289870399782,307,Urgent,2020-03-19,Abnormal,4142,236,4,10,,,,DISCHARGED -4143,2020-01-17,9696.363757831856,340,Urgent,2020-01-26,Abnormal,4143,339,3,16,,,,DISCHARGED -4144,2020-11-06,6927.757695783708,144,Urgent,2020-11-11,Abnormal,4144,311,4,5,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4145,2020-02-07,24507.184570606343,207,Emergency,2020-02-23,Normal,4145,176,0,27,,,,DISCHARGED -4146,2019-11-27,11110.92373649657,269,Emergency,2019-12-24,Normal,4146,140,0,7,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4147,2023-10-12,16014.08438886543,335,Urgent,,Abnormal,4147,188,0,9,,,,OPEN -4148,2023-09-08,19854.614302207403,403,Urgent,,Normal,4148,485,1,24,,,,OPEN -4149,2021-04-19,32513.21250441573,227,Emergency,2021-05-08,Inconclusive,4149,48,4,14,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4150,2023-02-15,12412.328263418,218,Elective,,Normal,4150,301,0,3,,,,OPEN -4152,2023-03-22,13284.131104189444,495,Urgent,2023-04-03,Abnormal,4152,368,3,28,,,,DISCHARGED -4153,2022-09-29,26326.22675426569,292,Elective,2022-10-12,Normal,4153,189,1,17,,,,DISCHARGED -4154,2021-02-13,38815.74753016842,335,Urgent,2021-02-19,Abnormal,4154,135,3,10,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4155,2022-11-11,13435.46733692268,164,Elective,2022-11-30,Abnormal,4155,42,4,8,,,,DISCHARGED -4156,2023-01-05,5408.813173132597,211,Emergency,2023-01-15,Normal,4156,403,2,8,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -4157,2021-08-30,24248.120835209123,183,Emergency,2021-09-13,Normal,4157,379,3,27,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -4158,2019-02-15,10741.948269625194,111,Elective,2019-03-10,Normal,4158,352,2,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4159,2019-09-06,48267.54113058011,159,Elective,2019-09-16,Abnormal,4159,89,1,2,,,,DISCHARGED -4160,2023-08-14,11408.92504805721,462,Elective,2023-08-15,Normal,4160,294,3,20,,,,DISCHARGED -4161,2020-05-13,8518.438727599812,125,Urgent,2020-05-23,Inconclusive,4161,340,3,17,,,,DISCHARGED -4163,2022-11-02,25341.57320306952,422,Elective,2022-11-26,Normal,4163,244,1,13,,,,DISCHARGED -4164,2023-06-10,8033.232106130741,478,Emergency,2023-06-12,Inconclusive,4164,432,1,2,,,,DISCHARGED -4165,2023-04-09,17082.08452190309,433,Elective,2023-05-09,Inconclusive,4165,191,0,16,,,,DISCHARGED -4166,2023-07-23,13893.03688162979,209,Emergency,2023-07-25,Inconclusive,4166,317,4,3,,,,DISCHARGED -4167,2021-01-20,41435.46186095396,338,Emergency,2021-02-16,Normal,4167,105,3,20,,,,DISCHARGED -4168,2020-03-11,1889.902251341207,201,Elective,2020-03-27,Inconclusive,4168,362,3,27,,,,DISCHARGED -4169,2020-11-11,16503.40778622603,481,Elective,2020-11-26,Abnormal,4169,309,1,17,,,,DISCHARGED -4170,2020-04-24,11934.967575832885,485,Emergency,2020-05-23,Abnormal,4170,381,1,14,,,,DISCHARGED -4170,2019-11-13,8641.322454204947,208,Elective,2019-11-25,Normal,6547,232,4,18,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -4171,2019-02-17,19736.44593693479,453,Urgent,2019-03-07,Abnormal,4171,264,1,27,,,,DISCHARGED -4172,2023-04-15,6043.624369368916,353,Emergency,,Normal,4172,343,2,21,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",OPEN -4173,2023-06-16,39194.574296567545,230,Emergency,2023-07-09,Inconclusive,4173,36,2,5,,,,DISCHARGED -4174,2020-09-26,7774.660716325249,443,Elective,2020-10-10,Abnormal,4174,304,2,14,,,,DISCHARGED -4175,2021-07-28,43891.04796805266,327,Elective,2021-08-05,Normal,4175,40,2,6,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4176,2020-11-25,38394.49310078789,173,Emergency,2020-12-04,Abnormal,4176,16,4,11,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4178,2021-12-08,20925.31398262782,241,Urgent,2021-12-23,Normal,4178,343,3,15,,,,DISCHARGED -4179,2020-03-14,33725.423848761,245,Emergency,2020-04-06,Normal,4179,276,2,8,,,,DISCHARGED -4180,2023-10-06,18907.536139235868,431,Urgent,2023-10-20,Normal,4180,306,1,19,,,,DISCHARGED -4181,2022-03-01,2116.3988482035093,184,Urgent,2022-03-29,Inconclusive,4181,58,2,4,,,,DISCHARGED -4182,2019-04-22,18113.33214667707,430,Urgent,2019-05-22,Normal,4182,422,4,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4183,2023-02-13,45214.53837734277,217,Elective,2023-02-22,Normal,4183,182,1,1,,,,DISCHARGED -4184,2019-10-14,42907.15413187941,456,Urgent,2019-10-28,Normal,4184,40,2,21,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4185,2023-09-13,13061.333957705656,214,Urgent,2023-09-15,Inconclusive,4185,38,3,15,,,,DISCHARGED -4186,2020-12-26,3015.216939353546,210,Urgent,2021-01-21,Abnormal,4186,396,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4187,2019-09-01,23921.01034024139,169,Emergency,2019-10-01,Inconclusive,4187,191,1,4,,,,DISCHARGED -4188,2019-01-13,30414.60712677158,455,Emergency,2019-01-19,Normal,4188,266,3,6,,,,DISCHARGED -4189,2020-01-23,39602.84827514187,109,Urgent,2020-01-24,Normal,4189,493,1,5,,,,DISCHARGED -4191,2022-12-15,32598.82400481638,354,Elective,2023-01-03,Abnormal,4191,146,2,23,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4192,2019-08-29,30156.348034764087,227,Emergency,2019-09-21,Inconclusive,4192,394,1,21,,,,DISCHARGED -4193,2021-01-07,23854.14631105632,429,Urgent,2021-02-01,Inconclusive,4193,332,2,9,,,,DISCHARGED -4194,2021-08-28,38625.77818906482,140,Urgent,2021-09-06,Abnormal,4194,126,3,13,,,,DISCHARGED -4195,2019-10-02,1764.863462629149,454,Emergency,2019-10-05,Abnormal,4195,45,0,7,,,,DISCHARGED -4196,2023-09-11,31067.7180990336,348,Elective,2023-09-28,Normal,4196,44,3,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4197,2021-02-03,33218.58771433514,449,Elective,2021-02-08,Normal,4197,0,2,13,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4197,2020-06-27,29417.398705733616,213,Urgent,2020-06-30,Normal,5722,167,4,13,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4198,2020-03-12,17827.595602552363,139,Emergency,2020-03-30,Abnormal,4198,107,3,19,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -4199,2021-11-25,9561.515191899114,163,Emergency,2021-12-09,Abnormal,4199,18,4,27,,,,DISCHARGED -4200,2020-04-01,6671.005508948585,152,Elective,2020-04-13,Normal,4200,331,4,22,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -4201,2021-01-08,24049.0574839086,325,Elective,2021-01-20,Inconclusive,4201,71,2,2,,,,DISCHARGED -4202,2021-02-04,48662.23534288198,461,Elective,2021-03-01,Inconclusive,4202,455,2,0,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4203,2020-06-16,12129.44563679042,223,Elective,2020-07-08,Inconclusive,4203,444,0,28,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4204,2022-02-03,45369.87620295928,444,Elective,2022-02-11,Abnormal,4204,108,1,8,,,,DISCHARGED -4205,2023-05-07,40623.16375343149,332,Elective,2023-05-09,Inconclusive,4205,267,3,8,,,,DISCHARGED -4206,2021-12-05,3324.1593975395585,482,Elective,2021-12-30,Inconclusive,4206,444,2,21,,,,DISCHARGED -4207,2023-10-08,36093.007916267954,498,Elective,2023-11-05,Inconclusive,4207,239,3,1,,,,DISCHARGED -4208,2023-09-12,29891.026074010013,314,Urgent,2023-09-17,Abnormal,4208,416,4,15,,,,DISCHARGED -4209,2019-12-25,10188.956545312967,282,Emergency,2020-01-14,Inconclusive,4209,300,1,7,,,,DISCHARGED -4210,2023-09-03,14061.754453888338,312,Urgent,2023-09-14,Inconclusive,4210,89,0,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4211,2022-04-01,13812.252706354642,245,Elective,2022-04-04,Inconclusive,4211,102,3,5,,,,DISCHARGED -4212,2020-09-02,39957.56215054793,476,Urgent,2020-09-10,Abnormal,4212,475,1,22,,,,DISCHARGED -4213,2021-12-22,4337.045304985074,235,Emergency,2022-01-19,Abnormal,4213,249,0,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4214,2018-11-06,7848.908820179961,248,Elective,2018-11-20,Abnormal,4214,452,3,0,,,,DISCHARGED -4215,2019-05-15,17633.66545757288,366,Elective,2019-05-16,Inconclusive,4215,7,1,18,,,,DISCHARGED -4216,2023-04-22,16283.563895438963,493,Elective,2023-05-12,Inconclusive,4216,152,2,14,,,,DISCHARGED -4217,2023-03-09,40376.16831506106,126,Emergency,2023-03-16,Normal,4217,346,3,0,,,,DISCHARGED -4219,2020-08-23,27453.98398460514,381,Urgent,2020-09-18,Abnormal,4219,173,1,9,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4220,2021-02-27,48849.72530535368,258,Elective,2021-03-06,Normal,4220,342,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4221,2023-08-29,38012.36490229927,396,Elective,2023-09-23,Inconclusive,4221,157,1,27,,,,DISCHARGED -4222,2021-11-22,28482.813658792653,255,Urgent,2021-12-18,Normal,4222,492,2,11,,,,DISCHARGED -4223,2022-11-29,3085.5512769146485,432,Urgent,2022-12-25,Abnormal,4223,430,3,10,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4224,2018-12-26,16006.593417939845,264,Elective,2019-01-02,Inconclusive,4224,214,3,28,,,,DISCHARGED -4225,2020-10-24,48111.15565368656,409,Emergency,2020-10-26,Inconclusive,4225,176,3,16,,,,DISCHARGED -4226,2019-06-26,22277.94392314609,223,Elective,2019-07-11,Abnormal,4226,174,2,3,,,,DISCHARGED -4227,2019-01-28,20368.021744003658,478,Emergency,2019-02-23,Inconclusive,4227,339,0,28,,,,DISCHARGED -4228,2021-08-02,20535.716775870736,369,Emergency,2021-08-19,Normal,4228,337,3,22,,,,DISCHARGED -4229,2020-03-07,1429.3033157779878,348,Elective,2020-03-10,Abnormal,4229,145,0,6,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4230,2019-02-05,16495.703175412338,272,Elective,2019-02-19,Normal,4230,449,1,11,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4231,2018-11-13,17283.05696012245,349,Urgent,2018-11-16,Inconclusive,4231,323,0,12,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4232,2022-02-21,7938.83847891943,345,Emergency,2022-03-15,Abnormal,4232,477,0,4,,,,DISCHARGED -4233,2022-08-11,46805.39220178419,253,Emergency,2022-09-01,Inconclusive,4233,160,3,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4234,2020-02-07,33338.424280797895,293,Elective,2020-03-04,Abnormal,4234,126,4,5,,,,DISCHARGED -4234,2021-04-29,36424.72235649513,370,Emergency,2021-05-28,Normal,7864,419,4,1,,,,DISCHARGED -4236,2019-08-05,12869.063402261929,225,Emergency,2019-08-09,Inconclusive,4236,81,2,20,,,,DISCHARGED -4237,2019-10-07,28142.69064301834,168,Elective,2019-11-01,Inconclusive,4237,484,2,6,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4238,2023-01-21,17005.199605852467,126,Urgent,,Abnormal,4238,146,4,13,,,,OPEN -4239,2019-03-02,6249.442146504827,126,Urgent,2019-03-15,Abnormal,4239,238,1,24,,,,DISCHARGED -4239,2019-12-07,21265.605131959997,490,Elective,2019-12-09,Inconclusive,5657,411,3,21,,,,DISCHARGED -4241,2021-01-28,11607.140164525068,333,Elective,2021-02-05,Inconclusive,4241,423,3,27,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4242,2023-02-25,28720.3545377116,233,Urgent,,Abnormal,4242,83,1,13,,,,OPEN -4243,2020-05-15,49655.9317155011,305,Urgent,2020-06-04,Abnormal,4243,112,1,9,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4244,2019-01-20,44569.38342637937,469,Emergency,2019-01-23,Normal,4244,224,4,3,,,,DISCHARGED -4245,2020-03-18,45966.53531391583,354,Elective,2020-03-22,Inconclusive,4245,331,2,2,,,,DISCHARGED -4245,2023-02-21,14786.153449769276,405,Elective,2023-03-22,Abnormal,5303,377,1,24,,,,DISCHARGED -4246,2023-08-13,35351.77628597784,161,Emergency,,Inconclusive,4246,242,2,22,,,,OPEN -4247,2020-12-11,16460.812363312594,426,Elective,2020-12-24,Inconclusive,4247,142,0,26,,,,DISCHARGED -4248,2021-09-29,7589.864460170565,385,Urgent,2021-10-13,Inconclusive,4248,40,3,13,,,,DISCHARGED -4249,2022-02-16,44294.30015962839,172,Emergency,2022-02-27,Abnormal,4249,422,4,28,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4250,2019-08-27,39377.32723358132,209,Elective,2019-09-11,Abnormal,4250,257,3,5,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4251,2022-11-17,36286.17521435992,111,Urgent,2022-12-15,Inconclusive,4251,446,4,22,,,,DISCHARGED -4252,2022-02-23,49295.455401304025,334,Elective,2022-03-13,Normal,4252,284,0,14,,,,DISCHARGED -4253,2021-03-01,7558.735303959764,333,Urgent,2021-03-02,Normal,4253,104,3,7,,,,DISCHARGED -4254,2023-10-25,44338.57425382923,406,Elective,2023-10-28,Abnormal,4254,201,0,4,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4255,2021-04-06,36199.54049238472,261,Emergency,2021-04-24,Normal,4255,449,4,2,,,,DISCHARGED -4256,2020-07-24,49102.979010545336,329,Urgent,2020-08-21,Abnormal,4256,306,1,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -4257,2020-08-12,19649.11069750562,444,Elective,2020-08-15,Abnormal,4257,330,3,12,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4258,2023-07-11,29017.347818936272,371,Elective,2023-07-27,Inconclusive,4258,460,0,1,,,,DISCHARGED -4259,2022-10-17,27669.868084675,313,Urgent,2022-11-06,Normal,4259,265,3,23,,,,DISCHARGED -4260,2023-01-08,4396.562975337329,437,Elective,,Abnormal,4260,397,3,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,OPEN -4261,2023-07-22,13483.899807955184,399,Emergency,2023-07-26,Inconclusive,4261,209,3,11,,,,DISCHARGED -4262,2019-01-03,46112.01413816182,373,Elective,2019-01-31,Inconclusive,4262,50,2,7,,,,DISCHARGED -4263,2020-03-28,17701.123806696913,138,Urgent,2020-03-29,Abnormal,4263,117,0,18,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -4265,2020-10-08,6664.460693355432,280,Emergency,2020-10-13,Inconclusive,4265,200,0,8,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -4266,2021-08-26,32577.037184008965,413,Emergency,2021-09-17,Abnormal,4266,376,3,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4267,2022-04-17,23788.720496469603,365,Emergency,2022-05-06,Inconclusive,4267,38,1,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4268,2023-05-17,8879.807144515904,368,Elective,,Inconclusive,4268,27,3,27,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",OPEN -4269,2020-01-19,40675.03565064048,112,Emergency,2020-01-26,Normal,4269,258,2,26,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4270,2019-08-16,47200.32603530504,469,Emergency,2019-09-06,Normal,4270,83,4,17,,,,DISCHARGED -4271,2020-02-21,15157.013579451886,313,Elective,2020-02-28,Inconclusive,4271,453,2,9,,,,DISCHARGED -4271,2021-08-30,26263.057532551607,289,Emergency,2021-09-02,Abnormal,7294,154,1,8,,,,DISCHARGED -4271,2019-12-11,6053.051017209744,441,Emergency,2019-12-20,Abnormal,8894,116,3,5,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4272,2022-09-13,37726.75060416127,172,Emergency,2022-09-19,Abnormal,4272,1,0,0,,,,DISCHARGED -4273,2021-11-25,45281.60813325514,153,Urgent,2021-12-12,Normal,4273,92,3,4,,,,DISCHARGED -4274,2021-09-28,24532.457808837284,101,Urgent,2021-10-17,Normal,4274,165,1,9,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4275,2022-02-18,23186.36113064121,476,Urgent,2022-03-14,Normal,4275,386,0,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4276,2021-11-24,27803.00246757089,494,Elective,2021-12-19,Inconclusive,4276,399,2,12,,,,DISCHARGED -4277,2019-04-20,7445.620745064397,368,Elective,2019-05-01,Abnormal,4277,349,4,21,,,,DISCHARGED -4278,2022-11-25,40406.67079273432,482,Urgent,2022-12-11,Normal,4278,295,4,22,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4279,2022-10-23,45960.250694101785,438,Urgent,2022-10-28,Normal,4279,257,3,3,,,,DISCHARGED -4280,2021-07-23,18633.16661493362,212,Urgent,2021-08-20,Inconclusive,4280,80,2,0,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -4281,2020-09-02,4419.6471405296,257,Elective,2020-10-01,Normal,4281,424,1,20,,,,DISCHARGED -4282,2021-08-21,39548.83309112183,311,Emergency,2021-09-14,Abnormal,4282,267,4,1,,,,DISCHARGED -4284,2022-09-27,20378.908689461037,261,Elective,2022-10-18,Normal,4284,418,2,23,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4285,2022-06-27,39942.2752405833,294,Urgent,2022-07-09,Inconclusive,4285,234,3,3,,,,DISCHARGED -4286,2020-02-26,18332.10657982058,461,Elective,2020-02-27,Inconclusive,4286,320,0,16,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4287,2020-07-27,43411.73070622255,227,Emergency,2020-08-01,Normal,4287,310,3,9,,,,DISCHARGED -4289,2020-03-15,13787.360482399412,129,Urgent,2020-04-05,Abnormal,4289,300,3,22,,,,DISCHARGED -4290,2021-01-19,15579.51796045255,135,Urgent,2021-01-27,Normal,4290,462,2,11,,,,DISCHARGED -4291,2021-02-24,7076.582553180162,224,Elective,2021-03-14,Inconclusive,4291,473,4,26,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4292,2023-08-22,9224.665872229143,465,Urgent,,Inconclusive,4292,356,2,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -4293,2020-01-18,46114.60624027525,458,Emergency,2020-02-07,Abnormal,4293,212,0,2,,,,DISCHARGED -4294,2020-10-29,29585.63582417888,296,Urgent,2020-11-27,Normal,4294,61,2,13,,,,DISCHARGED -4295,2022-12-29,18833.014884445416,149,Elective,2023-01-22,Inconclusive,4295,48,1,24,,,,DISCHARGED -4296,2022-05-16,37297.56080033533,284,Urgent,2022-06-03,Inconclusive,4296,126,3,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4297,2018-11-06,19626.666631094115,472,Elective,2018-11-21,Normal,4297,222,4,12,,,,DISCHARGED -4298,2022-05-06,13172.556554209346,321,Emergency,2022-06-04,Normal,4298,408,0,8,,,,DISCHARGED -4299,2020-05-13,39312.833900095146,427,Elective,2020-05-22,Normal,4299,278,3,1,,,,DISCHARGED -4300,2023-10-15,9414.77969470494,457,Urgent,2023-10-27,Abnormal,4300,407,2,18,,,,DISCHARGED -4301,2021-01-29,14628.001672455644,257,Urgent,2021-02-08,Abnormal,4301,293,1,15,,,,DISCHARGED -4302,2019-01-25,15029.464580050986,429,Elective,2019-02-21,Abnormal,4302,283,2,10,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4303,2022-12-27,34591.15341918473,227,Emergency,2023-01-17,Abnormal,4303,276,3,11,,,,DISCHARGED -4304,2019-07-20,10751.473347234029,468,Urgent,2019-08-18,Normal,4304,437,0,24,,,,DISCHARGED -4305,2021-09-08,17181.38350425435,130,Urgent,2021-09-12,Abnormal,4305,106,4,0,,,,DISCHARGED -4306,2023-06-14,28145.03076741111,417,Elective,2023-07-10,Normal,4306,145,3,1,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -4306,2018-12-27,5194.196043207984,198,Emergency,2018-12-28,Inconclusive,4923,419,0,15,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -4307,2021-07-29,47519.43087997428,418,Emergency,2021-08-26,Inconclusive,4307,98,3,26,,,,DISCHARGED -4308,2021-04-02,13744.73295863892,256,Emergency,2021-05-02,Inconclusive,4308,428,1,1,,,,DISCHARGED -4309,2021-01-04,27139.248220751764,485,Emergency,2021-02-02,Inconclusive,4309,374,2,25,,,,DISCHARGED -4310,2021-03-30,2044.8980004535192,316,Emergency,2021-04-26,Normal,4310,72,4,29,,,,DISCHARGED -4311,2023-09-19,28550.98213225394,291,Urgent,2023-09-26,Abnormal,4311,436,0,18,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4312,2018-10-31,19060.231546826177,171,Urgent,2018-11-25,Normal,4312,485,4,9,,,,DISCHARGED -4313,2019-11-10,5217.456626395087,423,Urgent,2019-11-24,Abnormal,4313,121,4,18,,,,DISCHARGED -4314,2023-06-28,45819.599782120815,336,Urgent,2023-07-12,Inconclusive,4314,29,4,9,,,,DISCHARGED -4315,2022-11-05,35623.831857974896,109,Elective,2022-11-24,Normal,4315,187,0,15,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4315,2019-01-12,41896.47962512455,214,Urgent,2019-01-25,Normal,5847,363,0,12,,,,DISCHARGED -4316,2019-07-08,42543.032870346855,304,Urgent,2019-07-10,Inconclusive,4316,353,4,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4317,2023-01-27,41805.65731337217,193,Elective,2023-02-10,Inconclusive,4317,287,2,17,,,,DISCHARGED -4318,2023-10-04,22672.384309398414,133,Emergency,2023-10-06,Abnormal,4318,450,3,23,,,,DISCHARGED -4319,2019-07-15,35317.50619164461,202,Emergency,2019-08-14,Inconclusive,4319,194,4,7,,,,DISCHARGED -4320,2019-06-14,46725.74676311306,337,Emergency,2019-06-27,Inconclusive,4320,155,1,23,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4322,2019-03-25,12622.150489818056,496,Elective,2019-04-18,Abnormal,4322,171,4,17,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4323,2022-10-16,15420.94026749384,367,Urgent,2022-10-19,Abnormal,4323,334,0,12,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4324,2020-02-12,32142.454113230124,370,Urgent,2020-02-29,Inconclusive,4324,40,3,24,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -4326,2021-10-25,47805.81638332805,237,Urgent,2021-10-31,Abnormal,4326,62,1,26,,,,DISCHARGED -4327,2022-07-31,1488.1260929277728,231,Urgent,2022-08-25,Abnormal,4327,22,3,6,,,,DISCHARGED -4328,2023-09-23,22987.560737312077,279,Urgent,2023-09-24,Normal,4328,359,3,27,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -4329,2022-01-23,35108.85858291569,431,Elective,2022-02-11,Abnormal,4329,74,1,20,,,,DISCHARGED -4330,2019-06-06,36701.09053736355,250,Emergency,2019-06-22,Abnormal,4330,47,4,22,,,,DISCHARGED -4331,2020-07-11,5038.133607353281,270,Emergency,2020-07-30,Normal,4331,159,4,23,,,,DISCHARGED -4332,2021-04-03,18929.11346697998,273,Elective,2021-04-28,Abnormal,4332,312,4,24,,,,DISCHARGED -4333,2019-06-20,7089.745283781853,140,Urgent,2019-07-07,Abnormal,4333,117,2,17,,,,DISCHARGED -4334,2021-02-18,42634.99764480624,163,Urgent,2021-03-07,Normal,4334,99,4,5,,,,DISCHARGED -4335,2020-08-02,43083.914313453,472,Urgent,2020-08-08,Inconclusive,4335,379,1,8,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4336,2023-04-07,22950.528255265766,190,Elective,,Abnormal,4336,416,2,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -4337,2023-09-21,32433.36470246996,289,Urgent,2023-10-14,Normal,4337,407,4,5,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4338,2019-01-06,12708.04569673043,210,Urgent,2019-01-30,Normal,4338,166,2,17,,,,DISCHARGED -4339,2021-10-19,35708.18007719289,263,Urgent,2021-11-15,Abnormal,4339,289,1,16,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -4340,2020-11-27,39551.35023961004,115,Urgent,2020-11-29,Normal,4340,439,4,11,,,,DISCHARGED -4341,2019-06-20,22267.580836393427,295,Emergency,2019-07-16,Abnormal,4341,155,0,2,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4342,2021-11-13,25610.641822608864,189,Urgent,2021-12-07,Abnormal,4342,420,1,26,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4343,2021-06-19,25161.09221380417,467,Urgent,2021-07-18,Normal,4343,6,3,4,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4344,2023-06-02,7242.527715213313,289,Urgent,2023-06-12,Normal,4344,195,3,6,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4345,2019-02-08,47705.1670284061,265,Elective,2019-03-01,Abnormal,4345,420,1,9,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -4346,2021-01-21,29231.557651026604,119,Elective,2021-02-05,Normal,4346,55,3,9,,,,DISCHARGED -4346,2023-01-16,37265.96712700602,399,Elective,2023-02-10,Abnormal,6063,320,1,18,,,,DISCHARGED -4347,2021-02-10,35832.3273784627,411,Urgent,2021-03-12,Inconclusive,4347,192,0,24,,,,DISCHARGED -4348,2020-10-13,30277.40585901309,321,Emergency,2020-11-09,Inconclusive,4348,46,1,25,,,,DISCHARGED -4349,2022-10-15,22026.30786674351,382,Urgent,2022-11-04,Inconclusive,4349,147,4,27,,,,DISCHARGED -4350,2021-05-02,1731.5255035080518,130,Emergency,2021-05-21,Inconclusive,4350,274,4,3,,,,DISCHARGED -4351,2021-12-01,20356.31133973265,399,Elective,2021-12-14,Normal,4351,156,2,9,,,,DISCHARGED -4352,2022-03-18,27688.42981583521,156,Urgent,2022-04-14,Inconclusive,4352,201,3,17,,,,DISCHARGED -4353,2021-08-20,7329.299437156995,197,Elective,2021-09-10,Normal,4353,443,3,2,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,DISCHARGED -4353,2023-05-21,9672.394449011888,287,Elective,,Inconclusive,7923,401,1,20,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,OPEN -4354,2020-05-09,31550.677475915312,218,Elective,2020-05-21,Inconclusive,4354,475,3,2,,,,DISCHARGED -4354,2020-11-14,20604.733184173358,310,Urgent,2020-11-15,Normal,6816,418,4,4,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4355,2021-10-22,5415.651952770905,162,Elective,2021-11-17,Inconclusive,4355,426,0,15,,,,DISCHARGED -4356,2023-05-05,25894.759750815545,339,Emergency,,Abnormal,4356,494,1,19,,,,OPEN -4357,2023-02-15,19349.60945862319,364,Emergency,2023-03-12,Inconclusive,4357,478,3,12,,,,DISCHARGED -4358,2021-06-01,30465.331300052203,189,Emergency,2021-06-06,Normal,4358,474,4,10,,,,DISCHARGED -4359,2022-12-07,24921.537784504195,396,Elective,2022-12-25,Normal,4359,125,2,25,,,,DISCHARGED -4360,2021-06-03,8447.95452753493,169,Emergency,2021-06-19,Abnormal,4360,394,3,12,,,,DISCHARGED -4361,2023-01-11,1832.0151060544997,227,Emergency,2023-02-07,Inconclusive,4361,304,0,18,,,,DISCHARGED -4362,2022-08-21,23456.38304679709,297,Emergency,2022-09-01,Inconclusive,4362,368,0,27,,,,DISCHARGED -4363,2019-06-05,27265.8109882696,220,Urgent,2019-06-09,Inconclusive,4363,293,3,5,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4364,2020-07-09,29378.974907449112,297,Urgent,2020-08-07,Inconclusive,4364,63,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4365,2019-04-15,19995.01990750893,341,Emergency,2019-04-25,Abnormal,4365,324,4,12,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -4366,2020-06-20,25200.217214218264,268,Emergency,2020-06-24,Normal,4366,391,3,27,,,,DISCHARGED -4367,2019-06-27,5100.061769330424,376,Emergency,2019-07-18,Normal,4367,417,2,3,,,,DISCHARGED -4368,2022-05-13,23953.529215111303,328,Urgent,2022-06-03,Inconclusive,4368,175,4,24,,,,DISCHARGED -4369,2023-05-20,17503.608156803177,167,Emergency,2023-05-22,Abnormal,4369,115,1,21,,,,DISCHARGED -4370,2023-10-07,17919.965440810436,444,Emergency,2023-10-26,Inconclusive,4370,439,2,4,,,,DISCHARGED -4371,2020-04-05,9973.81025986173,106,Emergency,2020-04-24,Inconclusive,4371,203,4,18,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4372,2022-05-08,46506.66343698101,326,Emergency,2022-06-04,Inconclusive,4372,485,4,4,,,,DISCHARGED -4373,2022-02-27,38062.53382935073,479,Urgent,2022-03-08,Abnormal,4373,320,0,20,,,,DISCHARGED -4374,2019-09-14,11005.824428448836,243,Elective,2019-10-03,Inconclusive,4374,30,4,13,,,,DISCHARGED -4375,2022-11-19,8813.62907307536,450,Elective,2022-12-17,Abnormal,4375,387,2,27,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -4376,2022-12-14,6256.260024722372,227,Elective,2022-12-24,Abnormal,4376,112,3,27,,,,DISCHARGED -4377,2020-11-10,20755.424386043025,226,Emergency,2020-11-27,Abnormal,4377,364,2,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -4378,2023-06-26,44702.2294255068,117,Emergency,2023-07-22,Normal,4378,433,1,11,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -4379,2019-09-28,3523.108424161931,329,Elective,2019-10-03,Abnormal,4379,324,4,5,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4380,2021-08-11,30950.932798176626,410,Emergency,2021-08-20,Inconclusive,4380,413,4,18,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4381,2023-03-13,7627.089773741499,378,Urgent,2023-03-26,Inconclusive,4381,375,4,9,,,,DISCHARGED -4382,2021-11-05,14334.332944057904,433,Urgent,2021-11-12,Abnormal,4382,343,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -4382,2020-02-28,19852.09443330943,157,Elective,2020-03-21,Abnormal,5783,442,0,22,,,,DISCHARGED -4383,2021-07-08,45030.67622566485,391,Urgent,2021-07-09,Inconclusive,4383,66,0,22,,,,DISCHARGED -4384,2020-05-13,20030.9052267636,458,Emergency,2020-05-24,Normal,4384,74,3,27,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4385,2019-02-03,36698.79270164852,124,Urgent,2019-02-04,Inconclusive,4385,44,4,15,,,,DISCHARGED -4386,2019-05-13,6225.450437333625,340,Urgent,2019-06-01,Inconclusive,4386,259,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4387,2021-09-29,21060.9831600596,118,Emergency,2021-10-27,Normal,4387,153,3,8,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4388,2019-03-16,27800.773986255903,196,Urgent,2019-03-23,Abnormal,4388,154,4,27,,,,DISCHARGED -4388,2021-09-01,18232.71602861017,370,Elective,2021-09-07,Inconclusive,5713,429,0,17,,,,DISCHARGED -4389,2020-10-28,3539.9385841968674,478,Urgent,2020-11-16,Abnormal,4389,362,1,28,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4390,2021-04-27,10168.200329414873,118,Emergency,2021-05-04,Abnormal,4390,447,3,16,,,,DISCHARGED -4391,2021-03-22,31116.497540167296,165,Emergency,2021-04-03,Inconclusive,4391,474,1,14,,,,DISCHARGED -4391,2022-02-07,7804.669689924318,437,Elective,2022-03-09,Abnormal,5651,233,4,18,,,,DISCHARGED -4392,2020-02-11,41806.082572882086,398,Urgent,2020-02-25,Inconclusive,4392,50,2,6,,,,DISCHARGED -4393,2019-03-22,5204.054151529353,284,Urgent,2019-04-03,Abnormal,4393,305,1,24,,,,DISCHARGED -4394,2020-12-25,7195.877918443856,227,Emergency,2021-01-09,Normal,4394,261,1,17,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4395,2020-03-01,27861.542729318564,376,Urgent,2020-03-10,Abnormal,4395,314,0,5,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4396,2020-06-26,46345.30326940602,325,Urgent,2020-07-15,Abnormal,4396,124,4,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -4397,2019-12-15,4995.137208069622,392,Emergency,2019-12-31,Abnormal,4397,398,1,20,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4398,2021-01-27,42761.45755100102,433,Urgent,2021-02-19,Inconclusive,4398,244,4,11,,,,DISCHARGED -4399,2023-07-18,15393.627634448116,342,Emergency,,Abnormal,4399,29,0,24,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4401,2023-08-13,23931.377859476062,140,Emergency,2023-08-28,Normal,4401,425,4,2,,,,DISCHARGED -4402,2023-01-16,12743.477429714816,279,Urgent,2023-01-25,Normal,4402,484,0,0,,,,DISCHARGED -4403,2019-04-20,6971.796379841849,382,Urgent,2019-05-06,Normal,4403,121,0,4,,,,DISCHARGED -4404,2019-05-04,30514.77427930134,346,Elective,2019-05-09,Normal,4404,124,3,0,,,,DISCHARGED -4405,2022-12-29,33237.41370971693,282,Urgent,2023-01-11,Normal,4405,36,4,7,,,,DISCHARGED -4406,2022-03-14,7545.227841574843,104,Urgent,2022-03-18,Normal,4406,169,2,6,,,,DISCHARGED -4407,2023-01-14,8818.30529042214,466,Emergency,,Abnormal,4407,123,3,14,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",OPEN -4408,2023-05-19,13431.83118808665,369,Emergency,2023-06-01,Normal,4408,356,0,10,,,,DISCHARGED -4409,2022-12-21,16265.026219937852,256,Emergency,2023-01-10,Inconclusive,4409,34,2,17,,,,DISCHARGED -4410,2019-03-10,31379.52894496659,264,Elective,2019-04-03,Normal,4410,86,1,13,,,,DISCHARGED -4411,2020-06-04,31392.95177820389,248,Elective,2020-06-16,Normal,4411,133,1,26,,,,DISCHARGED -4412,2020-06-02,18926.59341089205,323,Urgent,2020-06-16,Abnormal,4412,195,3,8,,,,DISCHARGED -4413,2019-11-07,20200.02710137315,405,Elective,2019-11-12,Inconclusive,4413,273,2,4,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4414,2022-01-10,47747.30883557917,264,Elective,2022-02-07,Normal,4414,200,4,22,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4415,2021-04-04,31646.14112892792,189,Elective,2021-04-21,Abnormal,4415,368,2,3,,,,DISCHARGED -4416,2022-03-24,10267.73744733062,498,Emergency,2022-04-18,Inconclusive,4416,284,3,11,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4417,2023-09-01,34611.02570513875,110,Urgent,2023-09-23,Normal,4417,76,4,28,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4418,2022-10-15,31143.273416157677,392,Urgent,2022-11-03,Inconclusive,4418,58,4,0,,,,DISCHARGED -4419,2020-10-16,5096.993248083081,488,Elective,2020-10-28,Normal,4419,430,1,29,,,,DISCHARGED -4420,2022-03-27,15450.181899934913,384,Emergency,2022-04-09,Abnormal,4420,125,2,23,,,,DISCHARGED -4421,2022-09-27,27125.115103301843,251,Urgent,2022-10-05,Normal,4421,499,4,12,,,,DISCHARGED -4422,2022-05-03,12413.624375217842,246,Emergency,2022-05-08,Normal,4422,400,3,0,,,,DISCHARGED -4422,2019-12-19,7490.139532125952,480,Elective,2019-12-29,Normal,9163,108,1,2,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -4423,2020-07-27,6626.495446958939,334,Emergency,2020-08-09,Normal,4423,223,4,21,,,,DISCHARGED -4424,2020-09-27,21923.915119217207,162,Elective,2020-10-19,Normal,4424,495,2,7,,,,DISCHARGED -4425,2019-07-28,48575.77056413398,140,Elective,2019-08-12,Inconclusive,4425,277,1,23,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4426,2019-09-05,49208.375751772895,182,Urgent,2019-10-04,Abnormal,4426,67,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4427,2021-04-03,15918.3717316954,232,Urgent,2021-05-03,Inconclusive,4427,68,2,24,,,,DISCHARGED -4429,2020-07-19,31828.35309782192,195,Emergency,2020-08-12,Normal,4429,164,2,15,,,,DISCHARGED -4430,2020-09-29,37712.09461833694,166,Emergency,2020-10-19,Abnormal,4430,488,1,19,,,,DISCHARGED -4431,2020-09-13,35700.222086352056,231,Elective,2020-09-14,Inconclusive,4431,304,4,19,,,,DISCHARGED -4432,2019-12-19,8354.797981984048,210,Elective,2020-01-09,Normal,4432,396,0,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4432,2020-04-19,9772.324284965773,316,Urgent,2020-05-05,Inconclusive,7598,161,4,15,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4433,2019-08-24,7467.614580793222,218,Elective,2019-08-29,Abnormal,4433,364,1,1,,,,DISCHARGED -4433,2022-07-10,26636.972886879517,478,Emergency,2022-07-27,Abnormal,4543,341,0,16,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4433,2020-02-16,3365.150668858322,271,Urgent,2020-02-17,Inconclusive,4770,308,0,9,,,,DISCHARGED -4434,2021-02-22,24925.824078379228,210,Urgent,2021-02-28,Inconclusive,4434,378,0,6,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -4435,2020-06-18,13435.59008309526,300,Urgent,2020-07-03,Normal,4435,342,3,26,,,,DISCHARGED -4436,2019-11-18,15350.200623017585,231,Emergency,2019-12-08,Inconclusive,4436,434,1,9,,,,DISCHARGED -4437,2019-05-07,6371.663537289802,338,Elective,2019-05-26,Normal,4437,386,3,18,,,,DISCHARGED -4438,2022-03-08,4200.251623354856,230,Emergency,2022-03-12,Abnormal,4438,41,0,19,,,,DISCHARGED -4439,2019-10-03,23765.677780833164,322,Emergency,2019-10-28,Abnormal,4439,353,3,26,,,,DISCHARGED -4440,2018-12-04,19142.010715290427,342,Urgent,2018-12-14,Normal,4440,415,3,8,,,,DISCHARGED -4441,2019-10-25,37057.66135441675,267,Emergency,2019-11-14,Normal,4441,108,1,21,,,,DISCHARGED -4442,2021-04-22,38614.42894243093,467,Elective,2021-04-24,Normal,4442,50,2,29,,,,DISCHARGED -4443,2020-05-07,33709.32427903023,465,Emergency,2020-06-03,Abnormal,4443,249,3,16,,,,DISCHARGED -4444,2020-05-13,17498.810293214898,495,Emergency,2020-06-01,Inconclusive,4444,496,3,8,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4444,2021-07-23,33142.01664289726,313,Elective,2021-08-09,Inconclusive,6456,340,0,8,,,,DISCHARGED -4445,2022-06-16,20368.297749051817,326,Elective,2022-07-02,Abnormal,4445,429,0,4,,,,DISCHARGED -4447,2021-04-17,47107.54885259315,276,Emergency,2021-05-13,Abnormal,4447,382,0,23,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4448,2021-01-05,42190.66732224067,407,Urgent,2021-01-22,Abnormal,4448,491,4,6,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -4449,2019-03-18,25954.48507862245,283,Elective,2019-04-06,Normal,4449,20,3,10,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4450,2019-05-28,12239.862943311624,334,Elective,2019-06-09,Abnormal,4450,299,0,7,,,,DISCHARGED -4451,2023-02-15,47837.6734548495,234,Elective,,Normal,4451,138,1,24,,,,OPEN -4452,2022-08-31,2499.408861073847,348,Elective,2022-09-11,Normal,4452,358,4,13,,,,DISCHARGED -4453,2021-12-23,1127.8006675541212,132,Urgent,2022-01-10,Normal,4453,323,2,1,,,,DISCHARGED -4454,2021-10-31,2857.308207950002,436,Emergency,2021-11-20,Inconclusive,4454,498,3,9,,,,DISCHARGED -4455,2021-05-05,4222.299420689984,438,Emergency,2021-05-07,Abnormal,4455,384,3,20,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -4457,2020-06-19,49275.4942371825,268,Urgent,2020-07-13,Normal,4457,91,1,23,,,,DISCHARGED -4458,2023-08-07,29031.596113350173,496,Emergency,2023-08-23,Inconclusive,4458,446,2,15,,,,DISCHARGED -4459,2019-09-22,12963.365015682575,491,Elective,2019-10-06,Normal,4459,279,2,15,,,,DISCHARGED -4460,2023-10-17,14573.728385426337,456,Emergency,2023-11-16,Normal,4460,124,4,18,,,,DISCHARGED -4461,2022-03-17,12980.334123141804,139,Elective,2022-03-29,Normal,4461,482,3,26,,,,DISCHARGED -4462,2022-08-11,22670.96598164515,301,Elective,2022-09-06,Normal,4462,396,0,10,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4463,2018-11-17,45191.27941701784,469,Elective,2018-11-23,Normal,4463,110,1,5,,,,DISCHARGED -4464,2022-12-01,23039.507799399216,226,Emergency,2022-12-05,Inconclusive,4464,353,1,5,,,,DISCHARGED -4465,2018-12-09,47003.79011452799,395,Emergency,2018-12-22,Inconclusive,4465,138,1,6,,,,DISCHARGED -4466,2023-01-14,33307.0498865359,406,Urgent,2023-02-02,Inconclusive,4466,483,1,15,,,,DISCHARGED -4467,2019-01-12,44092.48303031251,478,Elective,2019-01-16,Abnormal,4467,434,0,12,,,,DISCHARGED -4468,2023-04-16,2591.7081686510664,188,Emergency,2023-05-13,Normal,4468,272,0,26,,,,DISCHARGED -4469,2023-02-04,35263.9176631998,460,Elective,,Abnormal,4469,98,4,2,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",OPEN -4471,2019-05-15,23882.725270582763,420,Urgent,2019-05-21,Normal,4471,251,3,23,,,,DISCHARGED -4472,2021-03-11,17207.253555634008,224,Elective,2021-03-20,Inconclusive,4472,337,0,23,,,,DISCHARGED -4473,2021-07-26,21499.069492487324,229,Emergency,2021-08-23,Normal,4473,103,4,8,,,,DISCHARGED -4474,2022-10-13,10991.026864154508,221,Urgent,2022-10-20,Inconclusive,4474,213,2,23,,,,DISCHARGED -4475,2022-05-02,18263.87344831174,243,Elective,2022-05-10,Normal,4475,248,3,2,,,,DISCHARGED -4476,2020-04-14,33083.66725122396,389,Elective,2020-05-03,Inconclusive,4476,151,0,5,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -4477,2019-06-28,9721.912877616378,352,Urgent,2019-07-26,Abnormal,4477,249,2,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4478,2018-12-27,8762.367761079327,244,Urgent,2019-01-24,Normal,4478,274,4,16,,,,DISCHARGED -4479,2023-10-20,23226.34846264999,496,Urgent,,Abnormal,4479,164,0,2,,,,OPEN -4480,2021-01-30,2977.07436432303,421,Elective,2021-02-11,Normal,4480,486,0,1,,,,DISCHARGED -4481,2021-08-15,4251.696251632491,373,Elective,2021-08-28,Abnormal,4481,340,2,11,,,,DISCHARGED -4481,2020-07-28,40170.823711453966,191,Elective,2020-08-09,Normal,6185,7,0,23,,,,DISCHARGED -4482,2021-03-15,36111.82991398725,283,Emergency,2021-03-18,Inconclusive,4482,283,1,5,,,,DISCHARGED -4483,2019-01-02,49125.20266615342,261,Urgent,2019-01-17,Abnormal,4483,4,0,9,,,,DISCHARGED -4484,2021-04-26,41540.56126317295,186,Elective,2021-05-03,Normal,4484,144,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4485,2023-04-01,44846.63056158742,193,Urgent,2023-04-20,Normal,4485,100,2,15,,,,DISCHARGED -4486,2019-07-08,43779.49013669462,255,Emergency,2019-07-11,Inconclusive,4486,163,3,26,,,,DISCHARGED -4487,2022-12-10,18805.682518713733,437,Elective,2022-12-23,Normal,4487,373,4,15,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4488,2023-03-11,33522.73368620645,285,Urgent,2023-03-24,Abnormal,4488,146,3,23,,,,DISCHARGED -4489,2020-09-28,37348.94716171345,327,Urgent,2020-10-18,Inconclusive,4489,63,1,17,,,,DISCHARGED -4490,2021-02-16,17761.66757898211,468,Emergency,2021-03-04,Abnormal,4490,90,1,26,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4490,2019-10-03,18075.23603612658,136,Urgent,2019-10-13,Abnormal,6112,116,3,21,,,,DISCHARGED -4491,2022-06-29,16714.53183436588,171,Emergency,2022-07-27,Normal,4491,353,4,22,,,,DISCHARGED -4492,2019-12-26,29556.96238052217,263,Elective,2020-01-16,Inconclusive,4492,266,0,23,,,,DISCHARGED -4493,2020-12-23,42296.03842471463,471,Urgent,2021-01-22,Inconclusive,4493,309,1,8,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -4493,2020-10-05,3983.852296893284,196,Elective,2020-10-15,Normal,8340,172,3,20,,,,DISCHARGED -4495,2021-02-08,18685.722484901584,426,Elective,2021-02-09,Abnormal,4495,46,3,26,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -4496,2023-07-27,7987.055974098221,224,Emergency,2023-08-16,Abnormal,4496,139,3,18,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -4497,2021-09-27,1517.374190621968,474,Elective,2021-10-20,Abnormal,4497,245,0,1,,,,DISCHARGED -4498,2022-05-27,28545.476437413592,376,Elective,2022-06-09,Normal,4498,148,2,23,,,,DISCHARGED -4499,2020-06-22,17382.217278808675,167,Emergency,2020-07-21,Normal,4499,245,4,0,,,,DISCHARGED -4500,2020-01-03,4407.307351655626,107,Urgent,2020-01-18,Inconclusive,4500,394,2,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4501,2023-05-13,17419.282793158593,459,Elective,,Normal,4501,486,4,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",OPEN -4502,2022-12-19,8873.290554311148,426,Emergency,2023-01-07,Inconclusive,4502,475,4,21,,,,DISCHARGED -4503,2021-06-09,32046.057457555293,274,Elective,2021-06-13,Abnormal,4503,4,3,17,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4504,2020-05-24,3165.2182556421058,242,Urgent,2020-06-10,Inconclusive,4504,464,1,2,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4505,2020-05-27,8570.828456565887,141,Urgent,2020-06-21,Abnormal,4505,183,3,23,,,,DISCHARGED -4506,2018-12-02,4389.044718202802,241,Urgent,2018-12-09,Normal,4506,19,0,0,,,,DISCHARGED -4507,2020-05-19,9542.995188583096,190,Emergency,2020-06-02,Abnormal,4507,424,4,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4508,2019-09-12,37292.07364445765,425,Elective,2019-10-04,Abnormal,4508,45,1,18,,,,DISCHARGED -4509,2021-05-31,49810.97484127671,297,Elective,2021-06-18,Normal,4509,11,4,21,,,,DISCHARGED -4510,2022-01-24,48768.012589720696,313,Emergency,2022-02-11,Normal,4510,69,4,18,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -4511,2019-10-24,7618.909224262197,232,Elective,2019-11-01,Normal,4511,16,3,10,,,,DISCHARGED -4512,2021-02-11,30669.09883679151,178,Urgent,2021-02-14,Normal,4512,370,1,26,,,,DISCHARGED -4514,2022-12-02,9741.612926671376,348,Emergency,2022-12-14,Normal,4514,146,1,7,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4515,2020-12-25,31725.73633768527,375,Elective,2021-01-16,Inconclusive,4515,153,4,4,,,,DISCHARGED -4516,2019-09-22,33729.92040345424,243,Urgent,2019-10-22,Abnormal,4516,303,1,19,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -4517,2020-12-16,34247.59069887079,328,Emergency,2020-12-24,Inconclusive,4517,107,1,8,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -4518,2022-01-26,44519.8023165431,498,Urgent,2022-02-18,Abnormal,4518,235,3,14,,,,DISCHARGED -4518,2019-01-10,49473.95228056956,126,Emergency,2019-01-28,Normal,6440,307,2,20,,,,DISCHARGED -4519,2020-03-30,48259.75280582012,256,Elective,2020-04-06,Normal,4519,351,0,27,,,,DISCHARGED -4520,2020-11-16,29937.092507237143,475,Urgent,2020-11-23,Normal,4520,69,2,13,,,,DISCHARGED -4521,2020-09-17,25425.653864545395,262,Emergency,2020-10-05,Abnormal,4521,182,1,3,,,,DISCHARGED -4522,2022-06-04,33255.92060113499,257,Elective,2022-06-13,Abnormal,4522,249,4,23,,,,DISCHARGED -4523,2023-10-04,20107.701604169528,428,Emergency,,Inconclusive,4523,227,0,23,,,,OPEN -4524,2022-12-06,26234.578358737912,132,Elective,2022-12-30,Normal,4524,101,0,7,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4525,2022-04-06,29879.330033826845,102,Elective,2022-05-02,Normal,4525,74,4,19,,,,DISCHARGED -4526,2019-07-19,5356.255236997056,361,Urgent,2019-08-08,Normal,4526,416,0,28,,,,DISCHARGED -4526,2020-10-27,47216.045086621605,129,Emergency,2020-11-03,Inconclusive,9806,445,4,16,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4527,2019-08-29,37616.93573000845,213,Urgent,2019-09-26,Abnormal,4527,215,0,1,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -4528,2022-12-18,10047.22220693118,384,Elective,2022-12-30,Abnormal,4528,406,2,19,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4529,2022-02-16,25160.410306873688,210,Urgent,2022-03-01,Abnormal,4529,398,0,15,,,,DISCHARGED -4530,2022-06-27,34229.89909452161,186,Urgent,2022-07-13,Abnormal,4530,410,3,9,,,,DISCHARGED -4531,2023-08-21,2883.572594191613,203,Elective,2023-09-17,Normal,4531,202,4,1,,,,DISCHARGED -4532,2019-01-21,7475.236164237298,436,Emergency,2019-02-12,Inconclusive,4532,191,0,10,,,,DISCHARGED -4533,2020-10-26,12125.448819720452,332,Urgent,2020-10-27,Inconclusive,4533,248,4,9,,,,DISCHARGED -4535,2022-02-18,22855.262757371554,394,Elective,2022-02-28,Normal,4535,498,3,29,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4536,2021-08-13,10481.377326245043,498,Elective,2021-09-11,Abnormal,4536,241,0,29,,,,DISCHARGED -4537,2019-10-18,20901.927061815142,210,Emergency,2019-11-13,Abnormal,4537,464,0,18,,,,DISCHARGED -4537,2020-05-13,46951.83901810505,137,Emergency,2020-06-01,Inconclusive,4642,178,3,24,,,,DISCHARGED -4537,2023-10-23,43617.18143865926,469,Elective,2023-11-06,Abnormal,6273,436,3,24,,,,DISCHARGED -4538,2022-11-23,29054.21275907943,436,Urgent,2022-12-18,Abnormal,4538,461,3,13,,,,DISCHARGED -4539,2020-10-15,15746.240941215614,411,Emergency,2020-11-04,Normal,4539,218,4,10,,,,DISCHARGED -4540,2020-10-13,36227.96541973062,277,Emergency,2020-10-23,Normal,4540,81,3,8,,,,DISCHARGED -4541,2021-07-04,47105.87551738357,275,Urgent,2021-07-21,Abnormal,4541,91,4,6,,,,DISCHARGED -4542,2021-05-02,17131.71267959819,165,Emergency,2021-05-17,Abnormal,4542,434,2,14,,,,DISCHARGED -4544,2023-08-22,10783.038409454231,326,Urgent,2023-08-29,Normal,4544,174,0,19,,,,DISCHARGED -4545,2021-08-27,43386.57664992245,195,Emergency,2021-09-04,Abnormal,4545,238,0,16,,,,DISCHARGED -4546,2021-02-25,4123.760053774291,277,Emergency,2021-02-27,Abnormal,4546,259,1,2,,,,DISCHARGED -4547,2021-09-14,13245.662353684767,235,Emergency,2021-10-04,Inconclusive,4547,390,2,14,,,,DISCHARGED -4548,2021-10-22,11976.516434679506,454,Emergency,2021-11-02,Abnormal,4548,364,3,13,,,,DISCHARGED -4549,2019-06-25,35546.882709673904,364,Urgent,2019-07-20,Abnormal,4549,162,3,7,,,,DISCHARGED -4550,2020-05-12,2074.0273259648347,212,Urgent,2020-05-28,Abnormal,4550,47,2,3,,,,DISCHARGED -4551,2019-09-29,35167.30933193421,500,Urgent,2019-10-03,Normal,4551,328,3,25,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4552,2020-07-29,49509.152180348654,327,Urgent,2020-08-20,Abnormal,4552,327,1,9,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4553,2019-03-09,24886.950573386453,476,Urgent,2019-03-11,Abnormal,4553,115,4,1,,,,DISCHARGED -4555,2020-02-12,40850.90196457679,402,Urgent,2020-02-15,Inconclusive,4555,428,0,13,,,,DISCHARGED -4556,2019-05-24,17119.74349325446,304,Elective,2019-06-07,Abnormal,4556,336,2,7,,,,DISCHARGED -4557,2020-11-19,43543.8502818424,466,Elective,2020-11-29,Inconclusive,4557,336,0,22,,,,DISCHARGED -4558,2019-03-05,40920.74277308268,328,Elective,2019-03-16,Inconclusive,4558,368,4,26,,,,DISCHARGED -4559,2021-04-26,11052.423071444444,157,Elective,2021-05-24,Abnormal,4559,224,2,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -4560,2019-12-29,28184.129261670747,176,Elective,2020-01-13,Abnormal,4560,351,4,24,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4561,2021-10-19,42878.86184837214,118,Urgent,2021-11-08,Normal,4561,327,3,17,,,,DISCHARGED -4562,2019-09-10,15671.288421498482,143,Urgent,2019-10-03,Inconclusive,4562,146,3,14,,,,DISCHARGED -4563,2020-09-15,32300.56039866222,413,Elective,2020-09-17,Inconclusive,4563,62,3,4,,,,DISCHARGED -4564,2023-02-24,16959.56491618068,346,Elective,2023-03-17,Abnormal,4564,293,4,21,,,,DISCHARGED -4565,2020-11-09,3466.915756725062,245,Urgent,2020-11-16,Normal,4565,322,4,12,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -4566,2020-09-03,38719.1525572021,187,Emergency,2020-09-07,Abnormal,4566,442,4,17,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2021-06-08,3194.218070064404,459,Elective,2021-07-07,Inconclusive,4567,324,0,1,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2022-12-02,26943.713030411025,404,Urgent,2022-12-13,Abnormal,4975,12,4,12,,,,DISCHARGED -4567,2019-06-26,4216.037126327004,404,Emergency,2019-07-20,Normal,5266,430,3,29,,,,DISCHARGED -4568,2021-11-23,9726.264978540356,463,Emergency,2021-12-11,Normal,4568,493,1,13,,,,DISCHARGED -4569,2019-08-02,48242.5473545515,198,Elective,2019-08-29,Normal,4569,188,4,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4570,2019-07-18,8637.789364548236,250,Emergency,2019-07-22,Inconclusive,4570,286,1,29,,,,DISCHARGED -4571,2021-09-27,15513.271166735283,247,Urgent,2021-10-24,Normal,4571,207,3,3,,,,DISCHARGED -4572,2023-06-14,6033.70063734597,235,Urgent,2023-06-30,Abnormal,4572,113,4,14,,,,DISCHARGED -4573,2023-04-10,14499.431904675448,297,Emergency,2023-04-30,Normal,4573,479,0,7,,,,DISCHARGED -4573,2022-10-06,27367.82222400113,121,Emergency,2022-10-19,Abnormal,8786,21,0,14,,,,DISCHARGED -4574,2023-07-30,21893.431554867693,312,Elective,2023-08-15,Inconclusive,4574,348,1,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4576,2022-08-21,6467.661812370537,223,Emergency,2022-09-04,Inconclusive,4576,213,0,28,,,,DISCHARGED -4577,2021-03-02,2723.2795083136016,152,Urgent,2021-03-15,Abnormal,4577,170,0,26,,,,DISCHARGED -4579,2023-05-30,24065.78149745237,171,Urgent,2023-06-22,Inconclusive,4579,322,0,20,,,,DISCHARGED -4580,2022-04-09,41998.08667359672,204,Urgent,2022-04-11,Normal,4580,53,3,8,,,,DISCHARGED -4581,2018-11-16,32850.871461053015,490,Elective,2018-12-14,Abnormal,4581,393,0,19,,,,DISCHARGED -4581,2023-01-18,32458.96718542279,210,Urgent,,Abnormal,6020,297,2,2,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -4582,2021-06-04,5773.63087809166,310,Emergency,2021-06-15,Normal,4582,319,4,25,,,,DISCHARGED -4583,2021-11-23,10310.471678156457,328,Emergency,2021-12-23,Normal,4583,125,0,14,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4584,2019-05-03,1445.718720752216,255,Urgent,2019-05-25,Abnormal,4584,276,0,23,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4585,2023-05-23,8940.967815226999,373,Urgent,2023-06-20,Normal,4585,463,0,16,,,,DISCHARGED -4586,2019-08-04,2651.698614970652,289,Elective,2019-08-28,Inconclusive,4586,203,2,24,,,,DISCHARGED -4587,2019-09-26,18752.729203038256,468,Urgent,2019-10-19,Inconclusive,4587,193,0,15,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -4588,2021-07-28,37900.29716889033,414,Elective,2021-08-22,Normal,4588,168,0,3,,,,DISCHARGED -4589,2021-11-23,16703.431059432303,237,Urgent,2021-12-01,Inconclusive,4589,151,4,10,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4590,2022-08-24,4074.530633213811,251,Elective,2022-09-05,Normal,4590,34,2,24,,,,DISCHARGED -4591,2021-05-07,14629.79665001082,438,Urgent,2021-06-02,Inconclusive,4591,183,2,7,,,,DISCHARGED -4592,2022-12-04,10078.8283919974,252,Urgent,2022-12-27,Abnormal,4592,285,0,2,,,,DISCHARGED -4594,2022-05-26,23659.45858434306,195,Urgent,2022-06-16,Inconclusive,4594,56,2,18,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4594,2023-08-09,3201.843306864934,246,Emergency,2023-09-06,Normal,7025,221,1,13,,,,DISCHARGED -4595,2022-12-24,48807.37969798211,472,Emergency,2023-01-17,Normal,4595,302,2,8,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4596,2023-06-09,18765.57283251435,298,Urgent,2023-06-25,Inconclusive,4596,162,2,2,,,,DISCHARGED -4597,2023-05-11,25496.85632147278,272,Urgent,2023-05-19,Normal,4597,18,2,3,,,,DISCHARGED -4598,2022-05-01,19455.796449161637,327,Emergency,2022-05-07,Abnormal,4598,369,3,24,,,,DISCHARGED -4599,2019-11-02,42025.19541210112,269,Elective,2019-11-04,Normal,4599,263,3,27,,,,DISCHARGED -4600,2018-11-01,7137.817190758252,412,Emergency,2018-11-23,Normal,4600,281,3,3,,,,DISCHARGED -4601,2022-09-07,7302.4921125496,348,Emergency,2022-09-13,Normal,4601,112,2,10,,,,DISCHARGED -4602,2022-02-23,11186.601370981183,156,Emergency,2022-03-14,Inconclusive,4602,487,1,18,,,,DISCHARGED -4603,2019-10-05,48372.165825946926,371,Elective,2019-10-16,Inconclusive,4603,326,2,29,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -4604,2022-03-08,34701.34962056766,383,Elective,2022-04-01,Normal,4604,29,0,15,,,,DISCHARGED -4605,2020-10-17,1334.709205265342,334,Emergency,2020-10-19,Abnormal,4605,134,1,22,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4606,2023-08-13,12757.647684774678,282,Emergency,,Inconclusive,4606,66,3,21,,,,OPEN -4607,2021-07-20,12143.670786515182,134,Emergency,2021-08-16,Normal,4607,64,4,16,,,,DISCHARGED -4608,2020-05-19,47700.41315513925,275,Urgent,2020-05-31,Inconclusive,4608,291,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4609,2021-09-11,30929.573359795668,330,Elective,2021-10-03,Abnormal,4609,24,3,9,,,,DISCHARGED -4610,2022-07-11,30345.85897579822,322,Urgent,2022-07-27,Abnormal,4610,36,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -4611,2019-06-09,25727.852473488365,400,Urgent,2019-06-13,Normal,4611,0,1,16,,,,DISCHARGED -4612,2022-09-23,41476.37571714626,362,Urgent,2022-10-01,Abnormal,4612,398,2,15,,,,DISCHARGED -4613,2021-01-28,13038.2775339914,163,Urgent,2021-02-03,Inconclusive,4613,36,0,19,,,,DISCHARGED -4614,2019-04-05,30945.93132521213,474,Urgent,2019-04-06,Inconclusive,4614,140,4,21,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4615,2020-04-02,16573.279708302958,264,Emergency,2020-04-29,Inconclusive,4615,231,3,5,,,,DISCHARGED -4616,2020-01-17,30056.57252159981,182,Urgent,2020-02-13,Inconclusive,4616,135,1,6,,,,DISCHARGED -4617,2021-08-07,27679.145318382773,402,Emergency,2021-09-06,Inconclusive,4617,388,4,13,,,,DISCHARGED -4618,2021-08-02,46659.14394422412,200,Emergency,2021-08-27,Abnormal,4618,187,1,10,,,,DISCHARGED -4621,2020-08-03,40844.65779378396,156,Urgent,2020-08-08,Abnormal,4621,127,0,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4622,2023-03-07,9666.179054711774,189,Emergency,,Inconclusive,4622,200,4,13,,,,OPEN -4623,2021-05-19,37919.6305570231,289,Urgent,2021-06-14,Normal,4623,126,3,4,,,,DISCHARGED -4624,2022-11-17,18423.26862196146,120,Urgent,2022-12-05,Abnormal,4624,256,1,4,,,,DISCHARGED -4625,2020-10-18,21304.665630269945,186,Elective,2020-10-27,Inconclusive,4625,163,0,19,,,,DISCHARGED -4626,2022-03-04,43898.80373892993,310,Urgent,2022-03-16,Inconclusive,4626,34,4,21,,,,DISCHARGED -4627,2023-10-10,5123.249749925363,314,Emergency,2023-10-14,Normal,4627,193,1,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4628,2020-01-19,34950.55993122609,289,Urgent,2020-02-17,Normal,4628,190,1,25,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4629,2023-07-12,28906.59267243324,203,Urgent,2023-07-21,Normal,4629,103,3,14,,,,DISCHARGED -4630,2022-07-07,17438.857822071066,269,Emergency,2022-07-23,Abnormal,4630,22,0,25,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -4631,2020-04-12,36836.99374898194,430,Emergency,2020-05-11,Inconclusive,4631,264,2,0,,,,DISCHARGED -4631,2020-08-16,23161.26533076815,106,Elective,2020-09-10,Abnormal,7427,289,1,24,,,,DISCHARGED -4631,2021-02-18,38819.70570248209,195,Elective,2021-03-03,Normal,7980,429,4,29,,,,DISCHARGED -4632,2022-03-20,49904.30211773508,397,Emergency,2022-03-29,Abnormal,4632,461,3,23,,,,DISCHARGED -4634,2018-11-15,35429.717862718855,256,Urgent,2018-12-11,Inconclusive,4634,383,3,22,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -4635,2021-03-04,7804.657858949919,311,Urgent,2021-03-29,Inconclusive,4635,259,1,8,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4636,2022-01-18,11521.48994486875,392,Elective,2022-01-31,Abnormal,4636,413,1,2,,,,DISCHARGED -4637,2021-06-25,43475.25332634104,466,Emergency,2021-07-17,Normal,4637,478,1,25,,,,DISCHARGED -4638,2023-03-24,49617.33159628476,367,Emergency,2023-04-04,Normal,4638,357,2,3,,,,DISCHARGED -4639,2019-08-28,5659.610293308324,181,Elective,2019-09-15,Inconclusive,4639,74,1,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4640,2021-11-19,17699.441632819613,469,Urgent,2021-11-22,Inconclusive,4640,354,0,6,,,,DISCHARGED -4643,2019-06-28,3537.1717401424075,155,Elective,2019-07-23,Abnormal,4643,71,4,21,,,,DISCHARGED -4644,2019-11-03,16825.634974977576,209,Emergency,2019-11-05,Inconclusive,4644,258,1,13,,,,DISCHARGED -4645,2022-06-21,32537.4287165864,370,Urgent,2022-07-04,Normal,4645,397,2,15,,,,DISCHARGED -4646,2021-06-30,25782.10950789528,105,Emergency,2021-07-06,Normal,4646,187,4,28,,,,DISCHARGED -4647,2020-01-26,47296.57689584642,305,Urgent,2020-02-21,Normal,4647,460,3,17,,,,DISCHARGED -4648,2022-06-16,4662.781475982576,129,Emergency,2022-06-26,Inconclusive,4648,172,1,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4649,2020-11-29,32637.180215150143,342,Emergency,2020-12-15,Normal,4649,479,4,15,,,,DISCHARGED -4649,2023-01-19,11618.098216284956,389,Urgent,2023-02-04,Normal,8074,289,3,1,,,,DISCHARGED -4650,2021-03-14,9187.83151388066,328,Urgent,2021-03-27,Abnormal,4650,44,2,9,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4651,2023-07-08,24436.414224647047,158,Urgent,,Normal,4651,60,0,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,OPEN -4651,2020-07-25,42784.6371812812,105,Elective,2020-08-08,Normal,8460,82,1,24,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4652,2022-11-06,47753.55098965471,236,Urgent,2022-11-21,Inconclusive,4652,122,0,26,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4653,2019-08-31,47257.01418015723,383,Urgent,2019-09-03,Abnormal,4653,357,2,14,,,,DISCHARGED -4654,2019-09-02,11559.82913580272,308,Emergency,2019-09-29,Normal,4654,15,4,27,,,,DISCHARGED -4655,2023-06-02,10921.936250411662,271,Urgent,2023-06-25,Inconclusive,4655,65,4,8,,,,DISCHARGED -4656,2019-04-22,49371.11063644354,279,Emergency,2019-05-13,Abnormal,4656,423,2,6,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4657,2019-04-23,41378.99118358502,172,Urgent,2019-05-11,Abnormal,4657,144,2,26,,,,DISCHARGED -4658,2021-12-25,30814.771544605635,229,Emergency,2021-12-28,Inconclusive,4658,374,1,23,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4659,2023-08-09,20200.325741384582,372,Emergency,,Inconclusive,4659,161,3,15,,,,OPEN -4660,2021-12-12,28247.76366107429,259,Urgent,2022-01-11,Normal,4660,233,0,25,,,,DISCHARGED -4660,2021-09-23,25337.18163832452,487,Urgent,2021-10-08,Normal,6737,379,0,2,,,,DISCHARGED -4661,2021-08-28,7639.263400500502,484,Emergency,2021-09-02,Normal,4661,143,4,16,,,,DISCHARGED -4662,2019-05-17,44385.98984681504,204,Emergency,2019-06-03,Abnormal,4662,357,4,22,,,,DISCHARGED -4663,2020-03-26,36169.46030924257,458,Emergency,2020-04-08,Inconclusive,4663,187,1,7,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4664,2022-12-31,22166.08306722026,430,Elective,2023-01-22,Normal,4664,321,2,1,,,,DISCHARGED -4665,2019-06-05,35802.00968811138,297,Emergency,2019-06-20,Normal,4665,449,0,24,,,,DISCHARGED -4666,2022-09-15,39564.57254804425,448,Elective,2022-10-07,Normal,4666,473,1,19,,,,DISCHARGED -4667,2019-09-26,16811.78896700462,460,Elective,2019-10-03,Normal,4667,12,4,25,,,,DISCHARGED -4668,2019-05-30,28363.972721781876,150,Elective,2019-06-24,Normal,4668,183,4,26,,,,DISCHARGED -4669,2020-06-29,13175.119191550191,498,Elective,2020-07-18,Inconclusive,4669,110,0,24,,,,DISCHARGED -4670,2021-08-05,45009.82730646055,189,Emergency,2021-08-30,Normal,4670,414,4,28,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4671,2020-12-21,41990.89215226928,167,Elective,2020-12-30,Abnormal,4671,289,4,2,,,,DISCHARGED -4672,2019-02-24,5637.003897501025,489,Elective,2019-03-14,Abnormal,4672,294,3,7,,,,DISCHARGED -4673,2020-04-28,39683.6893314112,205,Emergency,2020-04-30,Normal,4673,450,2,26,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4674,2021-06-09,24953.946760308914,280,Emergency,2021-07-02,Abnormal,4674,391,4,1,,,,DISCHARGED -4675,2022-05-26,41327.23543960617,142,Elective,2022-06-13,Abnormal,4675,214,3,29,,,,DISCHARGED -4676,2022-08-07,39834.47810092232,453,Urgent,2022-08-17,Inconclusive,4676,461,1,18,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -4677,2021-09-24,16922.56018127191,449,Urgent,2021-10-08,Abnormal,4677,119,4,16,,,,DISCHARGED -4678,2021-12-04,39412.03459377831,322,Emergency,2021-12-12,Abnormal,4678,381,1,4,,,,DISCHARGED -4679,2021-02-16,13016.442139499672,400,Emergency,2021-03-14,Abnormal,4679,54,4,19,,,,DISCHARGED -4680,2022-03-08,45766.414017043695,407,Emergency,2022-03-27,Inconclusive,4680,26,0,28,,,,DISCHARGED -4681,2022-01-15,25077.376678113123,326,Urgent,2022-01-29,Abnormal,4681,117,3,16,,,,DISCHARGED -4682,2021-10-07,47636.28559466362,202,Emergency,2021-10-25,Inconclusive,4682,220,3,9,,,,DISCHARGED -4683,2021-01-01,18432.876727121245,176,Emergency,2021-01-14,Abnormal,4683,230,0,8,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -4684,2022-02-23,5634.310680561106,466,Emergency,2022-03-18,Normal,4684,52,2,21,,,,DISCHARGED -4684,2019-08-29,17633.0035236912,280,Elective,2019-09-05,Abnormal,5394,294,3,5,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4685,2023-04-25,38177.66775302585,234,Urgent,,Inconclusive,4685,320,1,29,,,,OPEN -4686,2019-04-17,33147.491058059175,225,Elective,2019-04-23,Abnormal,4686,400,3,10,,,,DISCHARGED -4687,2021-09-24,25440.050094145416,277,Urgent,2021-10-09,Normal,4687,232,2,1,,,,DISCHARGED -4688,2019-02-23,2414.73010370114,269,Elective,2019-03-01,Inconclusive,4688,157,1,29,,,,DISCHARGED -4689,2019-07-27,1540.1176829849103,477,Elective,2019-08-10,Inconclusive,4689,436,1,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -4690,2023-10-24,6962.845620282616,268,Urgent,,Abnormal,4690,268,0,11,,,,OPEN -4691,2023-02-26,2015.235510470128,365,Elective,2023-03-08,Normal,4691,20,4,11,,,,DISCHARGED -4692,2019-05-21,31672.04821522471,496,Elective,2019-06-05,Abnormal,4692,402,0,15,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -4693,2021-08-07,48792.40088076773,424,Urgent,2021-09-04,Abnormal,4693,52,4,24,,,,DISCHARGED -4694,2022-08-26,8409.785304892099,159,Emergency,2022-09-02,Abnormal,4694,274,0,21,,,,DISCHARGED -4695,2021-10-26,8107.326054864383,355,Emergency,2021-11-13,Normal,4695,312,4,26,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4696,2022-03-16,2597.5973278827487,308,Emergency,2022-03-25,Abnormal,4696,280,3,23,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4697,2022-09-21,39104.022858925,459,Elective,2022-09-24,Inconclusive,4697,213,1,11,,,,DISCHARGED -4698,2019-08-13,1686.2686002061505,196,Emergency,2019-08-31,Inconclusive,4698,30,4,20,,,,DISCHARGED -4699,2020-04-17,7821.637990236603,174,Elective,2020-05-17,Normal,4699,336,3,17,,,,DISCHARGED -4700,2021-12-14,33502.48987666388,443,Urgent,2021-12-30,Abnormal,4700,182,2,12,,,,DISCHARGED -4701,2020-06-20,13618.06611060776,108,Emergency,2020-06-28,Abnormal,4701,22,0,14,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -4702,2022-02-26,14993.879703714232,387,Emergency,2022-03-14,Normal,4702,31,2,15,,,,DISCHARGED -4703,2020-12-21,27013.5403910531,179,Urgent,2020-12-30,Normal,4703,445,3,3,,,,DISCHARGED -4704,2021-08-26,14477.948650955806,482,Urgent,2021-09-16,Normal,4704,73,2,11,,,,DISCHARGED -4705,2020-10-12,19715.529011833605,475,Elective,2020-11-06,Inconclusive,4705,9,2,16,,,,DISCHARGED -4706,2023-09-26,24951.85781654897,225,Emergency,2023-09-29,Normal,4706,483,3,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -4707,2022-10-10,7293.440324716771,315,Elective,2022-11-08,Normal,4707,455,1,21,,,,DISCHARGED -4708,2018-11-04,1804.172102920116,495,Emergency,2018-11-17,Abnormal,4708,53,4,17,,,,DISCHARGED -4709,2020-05-04,38761.27428012262,301,Emergency,2020-05-27,Normal,4709,51,0,21,,,,DISCHARGED -4709,2020-11-29,49879.16016117147,195,Elective,2020-12-19,Inconclusive,8635,147,4,15,,,,DISCHARGED -4710,2020-04-14,1689.7548227412244,459,Elective,2020-04-17,Normal,4710,159,0,0,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4711,2023-02-05,14797.02160386041,417,Emergency,,Inconclusive,4711,369,4,26,,,,OPEN -4712,2023-03-26,19846.88442861877,272,Emergency,2023-04-15,Abnormal,4712,13,2,9,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -4713,2023-10-06,6764.544369113139,287,Emergency,2023-11-02,Inconclusive,4713,177,1,18,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4714,2020-09-28,18227.293650768508,254,Elective,2020-10-08,Inconclusive,4714,411,2,15,,,,DISCHARGED -4715,2021-10-25,16766.54955323652,463,Emergency,2021-10-26,Normal,4715,365,1,13,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4716,2022-12-13,29675.609272065525,372,Elective,2022-12-29,Normal,4716,499,3,24,,,,DISCHARGED -4717,2020-05-22,7793.002873684877,376,Elective,2020-06-13,Inconclusive,4717,52,0,1,,,,DISCHARGED -4718,2021-10-30,38247.4159056947,361,Urgent,2021-11-28,Normal,4718,407,0,23,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4719,2023-06-14,27378.9578121444,460,Emergency,2023-07-13,Normal,4719,334,3,5,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4720,2021-04-17,46730.34125546061,116,Emergency,2021-05-11,Inconclusive,4720,21,4,27,,,,DISCHARGED -4721,2019-11-01,45004.48681959341,444,Urgent,2019-12-01,Abnormal,4721,29,3,21,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4722,2020-07-07,30613.02617983961,467,Elective,2020-07-28,Inconclusive,4722,190,3,22,,,,DISCHARGED -4723,2018-12-03,20028.446642966417,286,Elective,2018-12-08,Inconclusive,4723,259,1,4,,,,DISCHARGED -4724,2022-08-29,42037.04981711227,368,Emergency,2022-09-09,Normal,4724,204,3,11,,,,DISCHARGED -4725,2020-07-23,9908.6020742283,255,Urgent,2020-08-07,Abnormal,4725,58,0,26,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4726,2022-08-23,44563.627251092,269,Emergency,2022-09-10,Normal,4726,470,2,3,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4727,2020-12-15,11323.672172216708,298,Elective,2021-01-01,Inconclusive,4727,263,1,21,,,,DISCHARGED -4728,2020-06-01,10655.365011588974,494,Emergency,2020-07-01,Inconclusive,4728,465,1,23,,,,DISCHARGED -4729,2019-10-04,20605.67950681002,467,Elective,2019-10-20,Normal,4729,11,4,3,,,,DISCHARGED -4730,2021-04-03,23637.097520143077,385,Urgent,2021-04-16,Abnormal,4730,118,2,4,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -4732,2019-05-28,26461.828113819425,412,Urgent,2019-06-24,Inconclusive,4732,414,1,6,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -4733,2019-10-11,35351.57932895399,204,Emergency,2019-11-05,Inconclusive,4733,461,3,5,,,,DISCHARGED -4734,2022-05-07,32989.73376325554,374,Emergency,2022-05-25,Inconclusive,4734,289,1,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -4735,2019-07-08,11319.770913922222,384,Elective,2019-07-15,Abnormal,4735,337,1,3,,,,DISCHARGED -4736,2023-08-08,18502.49832323408,216,Emergency,,Inconclusive,4736,247,1,12,,,,OPEN -4737,2019-06-20,44832.04245526608,261,Urgent,2019-06-25,Abnormal,4737,353,4,3,,,,DISCHARGED -4738,2019-01-14,39685.20660483933,480,Elective,2019-02-07,Inconclusive,4738,126,1,9,,,,DISCHARGED -4739,2021-12-01,17474.83557494979,207,Emergency,2021-12-07,Abnormal,4739,74,1,19,,,,DISCHARGED -4740,2020-11-04,19906.010323095503,271,Urgent,2020-11-19,Abnormal,4740,360,4,0,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4740,2020-12-13,4096.629047291421,180,Elective,2021-01-11,Inconclusive,8731,203,2,20,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -4741,2022-11-26,23218.789385593624,203,Elective,2022-12-04,Abnormal,4741,48,0,7,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4742,2020-09-04,37015.54834820456,223,Urgent,2020-09-30,Inconclusive,4742,78,4,6,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4743,2020-08-20,9119.90203126037,331,Urgent,2020-09-15,Inconclusive,4743,440,4,4,,,,DISCHARGED -4744,2023-10-20,24682.994113681263,428,Urgent,2023-11-15,Normal,4744,478,1,2,,,,DISCHARGED -4745,2020-09-10,3286.3346975183435,414,Urgent,2020-09-16,Inconclusive,4745,240,1,14,,,,DISCHARGED -4746,2021-08-24,23611.844534264183,418,Elective,2021-09-15,Normal,4746,348,0,26,,,,DISCHARGED -4747,2022-03-02,25464.037106023203,400,Elective,2022-03-19,Inconclusive,4747,153,1,16,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -4748,2022-10-15,31296.703135548185,294,Elective,2022-10-31,Abnormal,4748,273,3,28,,,,DISCHARGED -4749,2020-06-01,31185.679947556677,129,Elective,2020-06-11,Inconclusive,4749,95,1,22,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -4750,2022-09-02,32276.816892239385,442,Urgent,2022-09-12,Abnormal,4750,213,1,12,,,,DISCHARGED -4750,2020-08-20,40701.854828414376,311,Urgent,2020-09-02,Inconclusive,8446,293,3,14,,,,DISCHARGED -4751,2020-03-11,22182.21224393951,150,Urgent,2020-03-28,Abnormal,4751,208,0,26,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4752,2023-05-22,47724.93879815555,386,Emergency,,Abnormal,4752,342,3,18,,,,OPEN -4753,2019-09-28,42167.3511310083,170,Emergency,2019-10-21,Normal,4753,87,4,19,,,,DISCHARGED -4754,2022-07-18,27315.231240339,387,Emergency,2022-08-17,Abnormal,4754,305,3,13,,,,DISCHARGED -4755,2020-07-02,25976.634369136154,387,Elective,2020-07-19,Inconclusive,4755,263,2,20,,,,DISCHARGED -4756,2022-06-05,2116.091188013396,457,Elective,2022-06-21,Abnormal,4756,424,4,12,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4756,2022-08-24,29093.420600003414,341,Urgent,2022-09-17,Abnormal,6487,389,1,11,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4757,2021-10-23,21919.31731410046,273,Emergency,2021-10-27,Abnormal,4757,324,4,23,,,,DISCHARGED -4758,2021-04-23,20225.089529440644,484,Elective,2021-05-13,Abnormal,4758,427,0,28,,,,DISCHARGED -4759,2022-12-05,41479.29402464011,249,Urgent,2022-12-19,Abnormal,4759,376,0,22,,,,DISCHARGED -4760,2020-07-15,26310.427113690665,451,Urgent,2020-08-06,Inconclusive,4760,319,3,8,,,,DISCHARGED -4761,2021-01-27,25081.58343532231,208,Urgent,2021-02-08,Inconclusive,4761,156,4,26,,,,DISCHARGED -4762,2022-12-20,47834.18677622168,145,Emergency,2023-01-09,Inconclusive,4762,155,1,2,,,,DISCHARGED -4763,2020-11-10,11178.773991453592,377,Elective,2020-12-04,Inconclusive,4763,138,0,29,,,,DISCHARGED -4764,2019-09-24,43304.70205858663,180,Urgent,2019-10-03,Normal,4764,120,1,10,,,,DISCHARGED -4765,2021-12-26,15964.414399431033,228,Urgent,2022-01-14,Inconclusive,4765,64,2,9,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4766,2018-11-17,27390.08492584137,206,Urgent,2018-12-14,Inconclusive,4766,106,0,0,,,,DISCHARGED -4767,2020-09-10,44044.29623223332,313,Urgent,2020-09-12,Normal,4767,146,3,16,,,,DISCHARGED -4768,2019-09-15,45434.06100711771,171,Urgent,2019-10-13,Normal,4768,136,2,27,,,,DISCHARGED -4769,2019-04-22,35483.873350234964,180,Urgent,2019-04-30,Normal,4769,410,4,25,,,,DISCHARGED -4771,2022-12-19,49006.69594076405,362,Emergency,2023-01-04,Abnormal,4771,161,1,12,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -4772,2022-01-27,2093.8076498385026,447,Emergency,2022-01-28,Abnormal,4772,427,0,13,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4773,2022-01-17,19905.621794415827,441,Emergency,2022-02-14,Inconclusive,4773,451,2,0,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -4773,2020-03-17,37655.16972012383,426,Elective,2020-03-23,Normal,6133,99,2,1,,,,DISCHARGED -4774,2020-09-24,10192.137999418475,470,Urgent,2020-10-13,Normal,4774,337,0,1,,,,DISCHARGED -4775,2019-04-18,34661.37458413516,426,Urgent,2019-04-29,Normal,4775,398,4,6,,,,DISCHARGED -4776,2021-05-30,41089.46410527412,294,Emergency,2021-05-31,Normal,4776,306,4,8,,,,DISCHARGED -4777,2022-06-03,27960.56040290013,477,Urgent,2022-06-18,Inconclusive,4777,140,3,23,,,,DISCHARGED -4778,2019-07-02,1557.3152618268664,217,Elective,2019-07-18,Normal,4778,82,4,3,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4779,2019-10-07,39180.892217324574,470,Urgent,2019-10-20,Inconclusive,4779,176,3,1,,,,DISCHARGED -4780,2020-03-11,44513.842221769424,418,Elective,2020-04-02,Inconclusive,4780,197,2,18,,,,DISCHARGED -4781,2021-10-25,45976.46747093785,338,Emergency,2021-11-21,Abnormal,4781,111,0,25,,,,DISCHARGED -4782,2022-04-14,27186.476813354027,129,Emergency,2022-04-15,Abnormal,4782,55,4,4,,,,DISCHARGED -4784,2020-09-25,46843.73058440118,361,Emergency,2020-10-12,Abnormal,4784,459,3,8,,,,DISCHARGED -4784,2019-07-21,19620.89873063805,133,Elective,2019-08-02,Abnormal,5035,178,2,23,,,,DISCHARGED -4785,2020-08-31,25869.380774231748,244,Emergency,2020-09-05,Normal,4785,420,4,12,,,,DISCHARGED -4786,2020-07-30,34438.91277560099,473,Elective,2020-08-08,Normal,4786,400,1,11,,,,DISCHARGED -4787,2021-10-09,19516.86377852661,131,Emergency,2021-11-04,Abnormal,4787,185,2,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -4788,2021-07-15,35666.449166363185,331,Elective,2021-07-17,Inconclusive,4788,470,4,18,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4789,2022-07-11,1779.160238503723,261,Elective,2022-07-27,Inconclusive,4789,217,2,8,,,,DISCHARGED -4790,2023-04-07,10111.66374508153,340,Urgent,2023-05-03,Abnormal,4790,412,0,9,,,,DISCHARGED -4791,2019-01-24,26674.827831697945,240,Emergency,2019-01-31,Normal,4791,416,0,18,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4792,2022-04-26,26972.049246065337,208,Emergency,2022-05-03,Normal,4792,315,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4792,2023-03-21,13376.613686181898,152,Elective,2023-04-09,Abnormal,7792,474,1,11,,,,DISCHARGED -4792,2020-05-15,22423.161182527616,194,Urgent,2020-05-18,Abnormal,9563,216,0,13,,,,DISCHARGED -4793,2019-09-25,21922.487713310165,135,Urgent,2019-10-05,Inconclusive,4793,119,1,7,,,,DISCHARGED -4794,2019-06-20,25873.92778320435,167,Elective,2019-06-21,Inconclusive,4794,438,0,15,,,,DISCHARGED -4795,2023-08-07,15761.487287695303,463,Emergency,2023-09-01,Normal,4795,393,2,16,,,,DISCHARGED -4796,2023-03-27,35809.342286597835,314,Urgent,2023-04-02,Normal,4796,174,4,19,,,,DISCHARGED -4797,2021-06-29,33733.77515850902,187,Emergency,2021-07-23,Abnormal,4797,22,4,3,,,,DISCHARGED -4798,2019-04-06,26865.104573499037,244,Urgent,2019-04-20,Inconclusive,4798,212,0,5,,,,DISCHARGED -4799,2020-08-18,22566.61369546223,135,Urgent,2020-09-10,Inconclusive,4799,404,4,11,,,,DISCHARGED -4801,2023-03-10,40527.49820073167,166,Emergency,2023-04-07,Abnormal,4801,234,0,27,,,,DISCHARGED -4803,2018-11-25,13677.830944029707,130,Elective,2018-12-11,Normal,4803,12,0,17,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -4804,2019-03-18,12400.812484534872,285,Urgent,2019-04-17,Normal,4804,100,3,6,,,,DISCHARGED -4805,2020-04-30,47757.8458020492,163,Urgent,2020-05-06,Normal,4805,416,3,4,,,,DISCHARGED -4806,2023-08-12,43022.08212283255,459,Urgent,2023-08-24,Abnormal,4806,23,3,9,,,,DISCHARGED -4807,2023-07-29,38674.47530620711,107,Elective,,Abnormal,4807,363,1,5,,,,OPEN -4808,2019-03-04,19345.554359882168,260,Emergency,2019-03-13,Abnormal,4808,10,3,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4809,2019-01-27,33040.93247294721,357,Urgent,2019-02-21,Inconclusive,4809,272,0,13,,,,DISCHARGED -4810,2022-10-09,46113.48098183696,368,Urgent,2022-10-31,Inconclusive,4810,451,2,5,,,,DISCHARGED -4811,2020-10-01,3478.906633093555,318,Elective,2020-10-24,Inconclusive,4811,430,3,29,,,,DISCHARGED -4812,2022-11-02,20463.94854145021,314,Elective,2022-11-05,Abnormal,4812,280,3,13,,,,DISCHARGED -4813,2022-02-09,22394.238647800263,395,Urgent,2022-02-18,Inconclusive,4813,93,2,11,,,,DISCHARGED -4814,2018-12-30,5888.467016121172,386,Elective,2019-01-22,Normal,4814,200,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4815,2022-08-09,46989.40170652176,367,Elective,2022-08-10,Normal,4815,20,1,26,,,,DISCHARGED -4816,2019-12-24,4152.095149606723,289,Urgent,2020-01-16,Inconclusive,4816,339,3,21,,,,DISCHARGED -4817,2020-07-07,28665.647255116924,430,Urgent,2020-07-25,Normal,4817,466,2,25,,,,DISCHARGED -4818,2019-01-07,25236.048908682795,442,Elective,2019-01-18,Abnormal,4818,210,0,11,,,,DISCHARGED -4819,2020-11-10,33090.97809474547,422,Emergency,2020-12-05,Normal,4819,139,4,7,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4820,2021-05-02,12735.568352562894,309,Elective,2021-05-25,Normal,4820,292,1,9,,,,DISCHARGED -4821,2021-01-08,41788.352522771376,160,Urgent,2021-01-21,Inconclusive,4821,297,2,15,,,,DISCHARGED -4822,2023-03-29,12598.404354914288,294,Elective,2023-04-28,Abnormal,4822,400,2,19,,,,DISCHARGED -4824,2019-08-23,9945.889157529677,362,Urgent,2019-08-24,Normal,4824,100,2,25,,,,DISCHARGED -4825,2020-10-26,42289.798280673225,394,Emergency,2020-10-27,Inconclusive,4825,303,3,7,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4826,2022-02-27,48619.51732595202,404,Elective,2022-03-29,Inconclusive,4826,358,4,8,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -4826,2023-03-06,31849.15327022313,370,Urgent,,Normal,8929,27,1,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4827,2021-10-15,43234.33453168871,485,Elective,2021-10-18,Inconclusive,4827,40,0,28,,,,DISCHARGED -4828,2020-06-05,34244.52016086891,434,Urgent,2020-06-12,Normal,4828,354,0,19,,,,DISCHARGED -4829,2021-06-10,37401.626755722034,136,Elective,2021-06-19,Abnormal,4829,302,4,16,,,,DISCHARGED -4829,2019-11-13,4954.618897728081,490,Elective,2019-11-26,Normal,5036,495,2,18,,,,DISCHARGED -4830,2023-10-15,29413.65792502641,447,Urgent,2023-10-16,Normal,4830,145,2,16,,,,DISCHARGED -4831,2019-08-21,27982.12330019868,145,Elective,2019-09-08,Inconclusive,4831,255,2,6,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4832,2021-08-25,23300.429682599923,127,Urgent,2021-09-04,Abnormal,4832,461,2,27,,,,DISCHARGED -4833,2021-06-09,33151.458775961975,418,Urgent,2021-06-21,Normal,4833,226,2,0,,,,DISCHARGED -4834,2020-03-26,7324.03524919629,287,Urgent,2020-03-30,Normal,4834,235,4,26,,,,DISCHARGED -4835,2021-11-12,45373.29538102361,161,Elective,2021-12-10,Abnormal,4835,360,3,19,,,,DISCHARGED -4835,2023-04-05,31266.00192033575,482,Elective,2023-04-20,Normal,7176,379,1,28,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -4836,2020-03-31,40882.135306674034,389,Elective,2020-04-08,Abnormal,4836,454,2,13,,,,DISCHARGED -4837,2023-06-19,41174.49109557084,221,Emergency,,Inconclusive,4837,488,3,16,,,,OPEN -4838,2023-04-30,15612.435738264876,382,Emergency,2023-05-26,Inconclusive,4838,12,0,12,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4839,2021-09-02,29197.806089453534,104,Emergency,2021-09-22,Abnormal,4839,209,4,28,,,,DISCHARGED -4840,2018-11-17,21279.43206267736,300,Urgent,2018-12-09,Normal,4840,228,3,1,,,,DISCHARGED -4841,2021-06-05,47128.48339729499,490,Urgent,2021-06-23,Inconclusive,4841,396,2,26,,,,DISCHARGED -4842,2019-02-18,26252.66577629445,347,Emergency,2019-03-20,Normal,4842,99,2,13,,,,DISCHARGED -4843,2021-06-29,22607.468261507453,196,Elective,2021-07-15,Normal,4843,30,2,0,,,,DISCHARGED -4844,2020-06-29,21148.669896257405,468,Emergency,2020-07-11,Normal,4844,385,3,28,,,,DISCHARGED -4845,2020-06-20,31015.753704444083,479,Emergency,2020-06-29,Abnormal,4845,15,2,4,,,,DISCHARGED -4845,2019-02-13,22549.92608985113,285,Emergency,2019-03-07,Abnormal,7365,136,3,6,,,,DISCHARGED -4846,2022-10-20,28403.851169762514,477,Elective,2022-11-18,Abnormal,4846,328,2,18,,,,DISCHARGED -4847,2019-05-28,32819.85383874983,318,Urgent,2019-06-08,Inconclusive,4847,165,0,13,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4848,2020-01-02,24866.61486577673,459,Emergency,2020-01-05,Normal,4848,458,0,23,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -4849,2021-01-12,28418.366539545976,413,Elective,2021-01-22,Normal,4849,309,1,13,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4850,2019-11-09,14109.793077967,413,Urgent,2019-11-10,Abnormal,4850,439,2,14,,,,DISCHARGED -4851,2022-07-27,4022.4510227645073,220,Urgent,2022-08-17,Inconclusive,4851,469,2,4,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -4852,2022-08-18,13225.683949517475,284,Elective,2022-09-09,Abnormal,4852,480,3,4,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -4853,2021-05-16,25024.587087543347,441,Emergency,2021-05-28,Normal,4853,99,3,28,,,,DISCHARGED -4854,2022-10-01,45498.59510544675,298,Emergency,2022-10-04,Inconclusive,4854,108,2,20,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4855,2021-08-03,21839.95351682588,457,Emergency,2021-08-30,Inconclusive,4855,342,1,23,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4856,2021-09-10,37720.03904281403,324,Elective,2021-10-04,Inconclusive,4856,172,2,1,,,,DISCHARGED -4857,2019-09-14,40872.55506911912,289,Urgent,2019-09-17,Normal,4857,236,3,17,,,,DISCHARGED -4858,2022-12-04,43940.51461084982,209,Urgent,2022-12-08,Normal,4858,161,2,29,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -4859,2022-04-13,48871.042180125696,227,Elective,2022-05-13,Normal,4859,392,3,27,,,,DISCHARGED -4859,2021-11-24,30865.459556694383,415,Emergency,2021-11-26,Abnormal,6465,215,2,23,,,,DISCHARGED -4860,2019-10-06,10619.168166424171,366,Emergency,2019-10-28,Normal,4860,263,4,8,,,,DISCHARGED -4861,2019-10-27,44866.70337557101,218,Emergency,2019-11-05,Normal,4861,262,3,26,,,,DISCHARGED -4862,2022-02-18,31066.96820943338,380,Emergency,2022-02-23,Inconclusive,4862,291,1,27,,,,DISCHARGED -4863,2020-10-14,44117.74185126629,319,Urgent,2020-11-06,Normal,4863,273,4,9,,,,DISCHARGED -4864,2021-12-21,43446.600083663936,438,Urgent,2022-01-15,Abnormal,4864,2,2,25,,,,DISCHARGED -4865,2023-03-09,31836.191541290664,396,Emergency,2023-03-19,Normal,4865,27,3,17,,,,DISCHARGED -4867,2022-10-03,9614.51344548472,435,Emergency,2022-10-22,Normal,4867,325,4,3,,,,DISCHARGED -4868,2021-05-29,2519.905837138157,213,Emergency,2021-06-07,Normal,4868,491,1,7,,,,DISCHARGED -4869,2021-03-31,10659.831948440284,284,Elective,2021-04-16,Inconclusive,4869,427,3,17,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4870,2020-11-21,14185.518865034472,144,Elective,2020-11-28,Abnormal,4870,148,4,19,,,,DISCHARGED -4871,2018-11-17,11555.286129522212,270,Urgent,2018-11-18,Normal,4871,27,4,25,,,,DISCHARGED -4872,2022-08-18,13069.286920754535,335,Urgent,2022-08-25,Normal,4872,487,4,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4873,2023-07-15,11942.10935942674,152,Urgent,2023-08-06,Inconclusive,4873,309,0,28,,,,DISCHARGED -4874,2021-12-14,44753.36868255281,377,Urgent,2021-12-30,Inconclusive,4874,437,2,16,,,,DISCHARGED -4877,2021-02-19,41398.42442888867,174,Emergency,2021-02-23,Abnormal,4877,64,3,15,,,,DISCHARGED -4878,2021-03-21,47817.8793199252,351,Emergency,2021-04-04,Normal,4878,355,3,17,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4880,2020-02-16,22369.625033472166,338,Elective,2020-02-23,Inconclusive,4880,20,3,6,,,,DISCHARGED -4881,2023-02-20,38099.99751747658,208,Urgent,,Normal,4881,251,4,0,,,,OPEN -4882,2023-05-12,47555.486730632285,285,Elective,2023-06-03,Abnormal,4882,234,2,27,,,,DISCHARGED -4883,2019-08-02,17320.901468003278,105,Emergency,2019-09-01,Inconclusive,4883,226,1,0,,,,DISCHARGED -4884,2019-03-26,5708.789191517905,358,Urgent,2019-03-31,Normal,4884,12,3,17,,,,DISCHARGED -4885,2022-12-04,29577.70551981613,287,Emergency,2022-12-25,Inconclusive,4885,312,2,3,,,,DISCHARGED -4886,2020-07-31,45217.52216269627,136,Emergency,2020-08-03,Abnormal,4886,48,2,22,,,,DISCHARGED -4887,2020-08-18,42901.78164618097,270,Emergency,2020-08-29,Abnormal,4887,117,0,19,,,,DISCHARGED -4888,2019-09-06,24358.674061723177,471,Urgent,2019-09-17,Abnormal,4888,53,3,20,,,,DISCHARGED -4889,2019-06-06,1227.13959619763,480,Emergency,2019-06-29,Inconclusive,4889,137,4,19,,,,DISCHARGED -4890,2019-08-23,37787.36243561913,130,Urgent,2019-08-30,Abnormal,4890,52,2,3,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4891,2023-01-12,15591.874971373953,147,Elective,2023-02-07,Normal,4891,43,2,24,,,,DISCHARGED -4892,2020-06-24,14433.02107087807,129,Emergency,2020-07-11,Inconclusive,4892,302,1,5,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -4893,2021-07-02,40076.01069041334,327,Elective,2021-07-14,Abnormal,4893,52,0,27,,,,DISCHARGED -4894,2022-04-11,20342.05896119933,181,Urgent,2022-05-08,Inconclusive,4894,73,2,2,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4895,2023-02-04,49818.51011964355,122,Elective,2023-02-25,Inconclusive,4895,45,2,5,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4896,2018-11-13,22621.535633779225,199,Elective,2018-12-03,Abnormal,4896,12,4,12,,,,DISCHARGED -4897,2020-12-23,27022.14084097524,224,Elective,2020-12-27,Abnormal,4897,164,4,22,,,,DISCHARGED -4898,2021-01-27,27022.65514317058,211,Urgent,2021-02-21,Inconclusive,4898,101,1,6,,,,DISCHARGED -4899,2022-01-06,4405.6917928768,309,Emergency,2022-01-23,Inconclusive,4899,279,1,23,,,,DISCHARGED -4900,2022-10-27,25933.979740503222,194,Urgent,2022-11-12,Abnormal,4900,257,1,28,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4901,2021-11-25,46596.68488234969,165,Urgent,2021-11-28,Inconclusive,4901,469,4,3,,,,DISCHARGED -4902,2018-12-20,31840.875123241007,421,Elective,2019-01-16,Abnormal,4902,336,4,0,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -4903,2019-12-01,31228.268799177007,296,Emergency,2019-12-24,Normal,4903,355,0,5,,,,DISCHARGED -4904,2020-02-25,5236.78445418161,227,Elective,2020-03-09,Normal,4904,397,3,23,,,,DISCHARGED -4906,2022-05-01,26683.8602337913,285,Urgent,2022-05-08,Abnormal,4906,137,3,4,,,,DISCHARGED -4907,2022-09-24,45697.99216232685,378,Emergency,2022-10-20,Inconclusive,4907,162,0,12,,,,DISCHARGED -4908,2019-06-02,48466.94634194745,285,Elective,2019-06-18,Abnormal,4908,408,3,18,,,,DISCHARGED -4909,2022-02-01,8670.193873797494,350,Urgent,2022-02-04,Inconclusive,4909,386,4,3,,,,DISCHARGED -4910,2022-08-28,12191.928817599186,232,Elective,2022-09-22,Inconclusive,4910,110,3,23,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4911,2019-02-27,16141.025412767209,217,Emergency,2019-03-19,Inconclusive,4911,101,4,5,,,,DISCHARGED -4912,2020-05-22,34278.701843560855,434,Emergency,2020-05-23,Abnormal,4912,16,0,12,,,,DISCHARGED -4913,2023-07-15,10041.180942865416,108,Emergency,2023-08-02,Inconclusive,4913,267,1,28,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -4914,2022-05-31,31371.611851722693,361,Urgent,2022-06-23,Abnormal,4914,181,0,4,,,,DISCHARGED -4914,2021-12-14,48138.74552906896,151,Urgent,2021-12-16,Abnormal,7965,371,3,12,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4915,2021-05-24,13124.011818759369,350,Elective,2021-06-17,Abnormal,4915,23,4,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4916,2023-03-09,22673.333511871744,305,Urgent,2023-03-27,Normal,4916,28,3,9,,,,DISCHARGED -4917,2022-01-18,7512.45820506544,392,Emergency,2022-01-20,Normal,4917,170,3,2,,,,DISCHARGED -4918,2021-01-17,40708.82990050067,409,Urgent,2021-01-25,Inconclusive,4918,408,1,22,,,,DISCHARGED -4919,2022-09-17,9471.006301546213,123,Emergency,2022-10-14,Inconclusive,4919,227,3,24,,,,DISCHARGED -4919,2020-10-27,4091.411031022009,108,Elective,2020-11-03,Abnormal,9434,377,1,26,,,,DISCHARGED -4920,2019-12-15,6410.857645006327,337,Emergency,2020-01-13,Abnormal,4920,187,4,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4921,2023-07-19,41402.163548771445,275,Elective,,Inconclusive,4921,345,4,26,,,,OPEN -4922,2022-04-20,36671.00153478959,339,Urgent,2022-05-19,Normal,4922,229,1,11,,,,DISCHARGED -4924,2023-06-29,40337.83430026875,473,Elective,2023-07-05,Inconclusive,4924,320,0,3,,,,DISCHARGED -4925,2022-03-19,29672.12818118183,484,Urgent,2022-04-04,Abnormal,4925,339,4,9,,,,DISCHARGED -4926,2022-10-04,15882.368972394224,124,Elective,2022-10-19,Abnormal,4926,118,0,25,,,,DISCHARGED -4927,2019-03-11,28228.36014032913,498,Emergency,2019-03-24,Normal,4927,155,4,2,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4928,2023-07-10,22476.35308058807,255,Emergency,2023-07-17,Inconclusive,4928,271,4,16,,,,DISCHARGED -4929,2019-07-14,37116.79843394613,104,Elective,2019-07-16,Abnormal,4929,174,2,8,,,,DISCHARGED -4930,2021-09-28,42578.46161360296,438,Urgent,2021-10-15,Normal,4930,464,3,28,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4931,2021-12-05,15192.388100936909,180,Urgent,2021-12-14,Inconclusive,4931,103,3,0,,,,DISCHARGED -4932,2019-11-12,19179.1252763317,214,Emergency,2019-11-26,Inconclusive,4932,91,0,17,,,,DISCHARGED -4933,2019-05-13,39274.51661982424,444,Urgent,2019-05-27,Abnormal,4933,185,3,8,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -4934,2021-09-17,31955.17073343913,121,Urgent,2021-09-19,Inconclusive,4934,459,0,20,,,,DISCHARGED -4935,2022-06-04,12841.909713862437,325,Emergency,2022-06-27,Inconclusive,4935,282,4,19,,,,DISCHARGED -4937,2021-08-11,27768.093538270583,156,Emergency,2021-08-12,Inconclusive,4937,180,2,24,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -4938,2021-10-30,19462.600549146508,334,Emergency,2021-11-04,Normal,4938,169,2,8,,,,DISCHARGED -4938,2020-03-27,21447.9084530032,363,Elective,2020-04-19,Normal,8564,186,4,1,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4939,2019-01-21,45151.2657971579,338,Urgent,2019-01-26,Normal,4939,174,1,18,,,,DISCHARGED -4940,2022-10-25,44454.41031486951,103,Urgent,2022-10-31,Abnormal,4940,221,1,27,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4941,2022-10-30,18262.839840388307,334,Emergency,2022-11-23,Abnormal,4941,232,3,15,,,,DISCHARGED -4942,2020-11-30,17599.750940552694,465,Emergency,2020-12-29,Normal,4942,161,0,2,,,,DISCHARGED -4943,2019-07-04,1470.2176834182706,499,Elective,2019-07-25,Normal,4943,420,2,15,,,,DISCHARGED -4944,2022-06-22,44631.17217248483,241,Urgent,2022-07-11,Abnormal,4944,133,3,20,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4945,2020-04-10,38458.02515621536,394,Elective,2020-04-29,Inconclusive,4945,390,4,12,,,,DISCHARGED -4946,2019-05-06,4397.847075197464,101,Elective,2019-05-28,Normal,4946,479,2,2,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -4947,2020-05-03,34695.128406575284,398,Emergency,2020-05-11,Abnormal,4947,223,0,9,,,,DISCHARGED -4948,2021-09-20,46749.14450753164,234,Urgent,2021-10-04,Inconclusive,4948,152,0,21,,,,DISCHARGED -4949,2020-10-16,40734.688773186674,251,Elective,2020-11-09,Normal,4949,32,1,17,,,,DISCHARGED -4950,2018-11-25,17926.82924262679,142,Elective,2018-12-19,Normal,4950,54,3,5,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -4951,2019-09-12,24949.029982356627,117,Emergency,2019-09-20,Abnormal,4951,441,4,5,,,,DISCHARGED -4952,2023-05-21,30402.67689242605,178,Elective,2023-06-17,Abnormal,4952,6,2,17,,,,DISCHARGED -4953,2020-12-15,33782.6341457172,392,Emergency,2020-12-28,Inconclusive,4953,243,0,5,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -4954,2019-06-22,20465.56884411539,244,Emergency,2019-07-21,Inconclusive,4954,312,2,5,,,,DISCHARGED -4955,2021-08-13,18260.24322967225,130,Elective,2021-09-06,Normal,4955,125,4,21,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -4956,2020-07-12,29504.03590108354,102,Urgent,2020-07-29,Abnormal,4956,11,2,27,,,,DISCHARGED -4957,2020-12-13,20687.874353132564,484,Urgent,2021-01-02,Inconclusive,4957,15,3,12,,,,DISCHARGED -4958,2020-08-10,7967.565101081946,150,Emergency,2020-09-04,Inconclusive,4958,207,1,13,,,,DISCHARGED -4959,2022-08-12,5394.704790248515,410,Elective,2022-08-17,Inconclusive,4959,42,2,20,,,,DISCHARGED -4960,2021-06-29,26671.536560227323,211,Elective,2021-07-02,Inconclusive,4960,372,1,6,,,,DISCHARGED -4962,2022-10-07,4119.267682480317,361,Elective,2022-10-22,Abnormal,4962,483,4,12,,,,DISCHARGED -4963,2021-02-04,40034.05485430158,319,Elective,2021-02-24,Abnormal,4963,460,1,14,,,,DISCHARGED -4964,2021-06-26,32113.887689498133,194,Urgent,2021-07-17,Inconclusive,4964,134,2,11,,,,DISCHARGED -4965,2019-05-12,41801.07980803264,222,Urgent,2019-05-25,Inconclusive,4965,227,2,20,,,,DISCHARGED -4966,2022-08-14,40021.185090564366,280,Emergency,2022-08-22,Normal,4966,110,0,26,,,,DISCHARGED -4967,2023-02-25,39413.12988483545,133,Elective,2023-03-15,Normal,4967,306,2,0,,,,DISCHARGED -4968,2020-06-22,25806.525809774623,447,Urgent,2020-06-29,Abnormal,4968,456,1,27,,,,DISCHARGED -4969,2019-02-08,9984.830480600744,274,Elective,2019-03-05,Abnormal,4969,159,0,24,,,,DISCHARGED -4970,2022-09-21,24706.978084829265,409,Elective,2022-09-26,Inconclusive,4970,330,2,2,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -4971,2020-02-16,9807.40915875448,427,Emergency,2020-02-19,Abnormal,4971,263,2,17,,,,DISCHARGED -4972,2023-03-08,1389.9574172841417,444,Elective,2023-04-05,Abnormal,4972,224,4,25,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4973,2023-05-25,42320.03290103717,241,Emergency,2023-06-01,Normal,4973,470,0,21,,,,DISCHARGED -4974,2019-09-14,29999.16925914993,445,Elective,2019-09-16,Normal,4974,216,4,7,,,,DISCHARGED -4976,2020-02-18,31495.293151648715,455,Urgent,2020-02-26,Abnormal,4976,455,4,1,,,,DISCHARGED -4977,2021-08-02,12425.802418256682,230,Urgent,2021-08-13,Inconclusive,4977,44,4,3,,,,DISCHARGED -4978,2020-04-21,32335.01107537987,290,Urgent,2020-05-14,Abnormal,4978,213,3,17,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4979,2019-07-26,12341.457336988917,132,Elective,2019-08-03,Inconclusive,4979,58,4,27,,,,DISCHARGED -4980,2019-12-28,46166.876044974655,342,Emergency,2020-01-10,Abnormal,4980,131,1,27,,,,DISCHARGED -4983,2023-03-30,22326.324817573524,334,Urgent,,Inconclusive,4983,103,2,24,,,,OPEN -4984,2021-12-28,38261.23038469653,414,Elective,2021-12-30,Normal,4984,194,3,25,,,,DISCHARGED -4985,2022-03-03,27026.1587317018,204,Elective,2022-03-31,Abnormal,4985,412,4,12,,,,DISCHARGED -4986,2020-04-04,30400.641931183494,489,Emergency,2020-04-29,Normal,4986,488,2,14,,,,DISCHARGED -4987,2020-02-05,46008.78300649781,491,Urgent,2020-02-23,Abnormal,4987,156,0,1,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4987,2023-04-04,4429.249919480615,312,Urgent,,Normal,6452,97,0,9,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",OPEN -4988,2020-08-12,11448.019524081265,433,Emergency,2020-09-08,Inconclusive,4988,225,2,1,,,,DISCHARGED -4989,2022-10-13,8739.297294275606,250,Elective,2022-11-09,Inconclusive,4989,411,1,29,,,,DISCHARGED -4990,2022-05-26,41834.21999433544,422,Urgent,2022-06-24,Abnormal,4990,204,2,28,,,,DISCHARGED -4991,2020-04-29,6475.012752915402,492,Elective,2020-05-27,Normal,4991,78,2,20,,,,DISCHARGED -4992,2020-11-23,33278.11896769793,152,Emergency,2020-12-20,Normal,4992,123,3,11,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4994,2021-01-27,17068.19276490547,356,Urgent,2021-02-15,Abnormal,4994,470,0,4,,,,DISCHARGED -4995,2021-12-24,42258.43182597493,343,Urgent,2022-01-18,Inconclusive,4995,427,0,11,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4996,2020-04-05,31009.72570005881,426,Elective,2020-04-15,Inconclusive,4996,217,4,22,,,,DISCHARGED -4997,2023-10-27,45390.9158754624,119,Elective,2023-11-24,Inconclusive,4997,3,2,0,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -4998,2021-11-07,2799.105152247894,173,Elective,2021-11-14,Normal,4998,89,2,27,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4999,2020-05-21,45768.48780730679,492,Elective,2020-05-27,Normal,4999,103,1,1,,,,DISCHARGED -5000,2021-02-27,27840.11569568721,204,Elective,2021-03-24,Normal,5000,392,0,26,,,,DISCHARGED -5001,2021-11-07,45101.040563096685,232,Urgent,2021-11-27,Abnormal,5001,118,1,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5002,2022-04-13,41318.283566753606,290,Urgent,2022-05-02,Abnormal,5002,132,3,26,,,,DISCHARGED -5003,2018-12-18,49422.38164695408,118,Urgent,2019-01-01,Normal,5003,311,4,21,,,,DISCHARGED -5004,2023-08-27,19238.819247691645,367,Urgent,2023-09-11,Normal,5004,95,1,1,,,,DISCHARGED -5005,2019-08-28,32325.18666744932,438,Emergency,2019-09-25,Inconclusive,5005,467,0,15,,,,DISCHARGED -5006,2023-01-06,45780.3645125108,372,Elective,2023-01-23,Normal,5006,433,3,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5007,2021-08-02,48554.41951566858,493,Urgent,2021-08-17,Inconclusive,5007,330,2,25,,,,DISCHARGED -5008,2020-01-11,1827.0934676753616,157,Elective,2020-01-31,Abnormal,5008,142,3,15,,,,DISCHARGED -5009,2023-08-24,6658.184833149132,426,Urgent,2023-09-15,Normal,5009,287,1,5,,,,DISCHARGED -5010,2023-04-30,2344.6959967171133,156,Emergency,2023-05-26,Abnormal,5010,27,0,12,,,,DISCHARGED -5011,2022-10-03,40303.68903222805,411,Urgent,2022-10-07,Normal,5011,277,1,11,,,,DISCHARGED -5012,2020-06-16,32497.72493616383,389,Emergency,2020-07-07,Abnormal,5012,232,2,22,,,,DISCHARGED -5013,2023-08-22,40252.728996203645,221,Elective,2023-09-15,Normal,5013,16,2,9,,,,DISCHARGED -5014,2023-07-17,48634.596153236285,340,Urgent,2023-07-22,Abnormal,5014,58,0,4,,,,DISCHARGED -5016,2021-11-02,31428.76939117009,476,Emergency,2021-11-14,Inconclusive,5016,89,4,7,,,,DISCHARGED -5018,2023-08-03,26450.41573977773,234,Emergency,2023-08-31,Abnormal,5018,491,3,5,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -5019,2023-04-17,19755.464369027926,319,Emergency,2023-05-17,Inconclusive,5019,198,3,4,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5020,2019-06-04,32898.675566542304,358,Urgent,2019-06-25,Normal,5020,361,2,19,,,,DISCHARGED -5022,2021-02-12,37912.48196944748,144,Urgent,2021-02-24,Abnormal,5022,440,1,21,,,,DISCHARGED -5023,2022-09-03,23658.07090227202,469,Emergency,2022-09-18,Abnormal,5023,25,1,5,,,,DISCHARGED -5024,2019-04-21,9848.800176294424,436,Urgent,2019-05-05,Abnormal,5024,24,4,21,,,,DISCHARGED -5025,2019-04-18,6481.013932257771,347,Emergency,2019-05-10,Abnormal,5025,393,1,16,,,,DISCHARGED -5026,2019-01-08,15900.203074249472,206,Elective,2019-02-04,Abnormal,5026,300,3,5,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5028,2019-12-20,25043.463075238924,476,Elective,2019-12-27,Inconclusive,5028,338,1,16,,,,DISCHARGED -5028,2019-09-10,39014.16006592387,283,Urgent,2019-09-25,Abnormal,6087,266,4,4,,,,DISCHARGED -5029,2022-01-29,23249.348656701943,371,Elective,2022-02-27,Abnormal,5029,460,3,22,,,,DISCHARGED -5030,2021-05-23,4432.619265757337,376,Urgent,2021-05-25,Inconclusive,5030,180,1,16,,,,DISCHARGED -5031,2023-09-01,16215.409459467704,264,Emergency,,Inconclusive,5031,455,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -5032,2022-04-14,36235.8313895375,119,Emergency,2022-05-05,Inconclusive,5032,359,2,16,,,,DISCHARGED -5033,2022-02-14,37061.37443528362,428,Emergency,2022-03-11,Abnormal,5033,67,2,28,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -5034,2019-08-05,13730.803000400696,372,Urgent,2019-08-21,Inconclusive,5034,494,2,12,,,,DISCHARGED -5037,2021-02-18,46722.35618237897,227,Elective,2021-03-10,Abnormal,5037,350,1,21,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5038,2020-03-29,35777.79012758474,407,Urgent,2020-04-02,Inconclusive,5038,411,4,6,,,,DISCHARGED -5039,2019-07-04,6098.670135229599,111,Emergency,2019-07-15,Inconclusive,5039,458,3,21,,,,DISCHARGED -5040,2022-03-18,15439.168072385057,271,Emergency,2022-04-05,Normal,5040,490,0,20,,,,DISCHARGED -5041,2021-04-01,26640.91665173258,481,Urgent,2021-04-09,Inconclusive,5041,320,2,5,,,,DISCHARGED -5042,2023-04-18,20813.306560139998,146,Elective,2023-04-25,Abnormal,5042,48,2,28,,,,DISCHARGED -5043,2019-06-09,40757.3551857576,235,Urgent,2019-07-05,Inconclusive,5043,174,0,13,,,,DISCHARGED -5044,2020-02-04,17321.140036717312,251,Emergency,2020-02-23,Inconclusive,5044,51,0,15,,,,DISCHARGED -5045,2021-03-02,16378.781678607344,240,Emergency,2021-03-24,Abnormal,5045,101,1,2,,,,DISCHARGED -5046,2019-11-25,43590.07167383812,242,Elective,2019-12-19,Abnormal,5046,215,3,8,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5047,2019-07-31,43062.1083929731,353,Emergency,2019-08-21,Abnormal,5047,437,2,14,,,,DISCHARGED -5048,2023-06-28,49667.36702889071,173,Emergency,2023-07-19,Normal,5048,187,4,20,,,,DISCHARGED -5049,2022-04-28,8651.44419487702,482,Emergency,2022-04-29,Abnormal,5049,56,1,17,,,,DISCHARGED -5050,2021-10-19,24653.17843045977,473,Urgent,2021-10-22,Abnormal,5050,46,1,29,,,,DISCHARGED -5051,2021-12-03,14532.24324716304,318,Emergency,2021-12-31,Abnormal,5051,158,4,29,,,,DISCHARGED -5051,2021-09-03,19543.338862425404,392,Elective,2021-09-12,Inconclusive,9567,488,4,27,,,,DISCHARGED -5052,2020-07-02,35209.37418975663,281,Urgent,2020-07-14,Inconclusive,5052,173,4,9,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5053,2022-03-03,11716.8938024626,489,Elective,2022-03-24,Normal,5053,241,0,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -5054,2022-12-08,29907.82524173962,270,Emergency,2022-12-11,Abnormal,5054,281,2,22,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5055,2021-09-20,36691.33524644881,270,Urgent,2021-10-15,Normal,5055,240,0,2,,,,DISCHARGED -5056,2019-04-14,46421.53823861062,302,Elective,2019-04-28,Inconclusive,5056,369,2,0,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5057,2023-08-27,38177.68248968008,143,Elective,,Inconclusive,5057,4,0,2,,,,OPEN -5058,2022-08-21,36926.365646650935,419,Emergency,2022-09-19,Inconclusive,5058,83,3,24,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5059,2019-04-07,8347.554655944987,195,Urgent,2019-04-26,Inconclusive,5059,307,2,4,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5060,2019-05-15,8805.07043002689,372,Elective,2019-06-01,Abnormal,5060,360,1,6,,,,DISCHARGED -5061,2022-03-26,34517.935654574845,164,Elective,2022-04-21,Normal,5061,458,2,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5062,2021-01-22,25501.58685798513,418,Elective,2021-01-23,Inconclusive,5062,247,2,3,,,,DISCHARGED -5063,2023-02-20,49773.16757337185,195,Elective,2023-03-03,Abnormal,5063,53,2,16,,,,DISCHARGED -5064,2021-08-07,21077.736822304803,241,Urgent,2021-08-28,Normal,5064,160,3,2,,,,DISCHARGED -5065,2023-07-16,9929.621567079314,227,Emergency,2023-08-06,Normal,5065,433,0,22,,,,DISCHARGED -5065,2021-07-26,44181.52901909563,408,Emergency,2021-08-13,Inconclusive,5232,421,1,3,,,,DISCHARGED -5066,2022-01-01,5357.480502278246,220,Urgent,2022-01-14,Normal,5066,410,0,1,,,,DISCHARGED -5067,2019-01-22,8400.693581613523,369,Elective,2019-02-06,Normal,5067,225,0,13,,,,DISCHARGED -5068,2020-02-05,1547.43596985545,192,Urgent,2020-02-26,Normal,5068,14,4,4,,,,DISCHARGED -5069,2019-12-22,14675.698065375498,255,Emergency,2019-12-24,Inconclusive,5069,223,3,20,,,,DISCHARGED -5070,2023-02-07,31911.16659650923,329,Elective,2023-03-01,Inconclusive,5070,60,4,1,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -5071,2021-03-21,34979.90735804192,177,Urgent,2021-03-25,Normal,5071,121,3,14,,,,DISCHARGED -5071,2022-04-25,16457.331396161262,324,Emergency,2022-04-26,Inconclusive,7779,276,0,10,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5072,2019-07-29,43930.40305430638,183,Urgent,2019-08-07,Inconclusive,5072,45,0,21,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -5073,2022-02-09,18749.017023701683,312,Emergency,2022-02-17,Abnormal,5073,452,3,9,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5074,2023-06-14,48981.86363204137,102,Urgent,2023-06-16,Normal,5074,389,0,19,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5075,2021-08-24,38789.5203521596,154,Emergency,2021-09-03,Normal,5075,293,0,29,,,,DISCHARGED -5076,2022-04-03,5046.104099369172,297,Emergency,2022-04-24,Normal,5076,61,1,0,,,,DISCHARGED -5077,2020-05-03,36609.05501416365,304,Urgent,2020-05-15,Abnormal,5077,85,4,18,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5078,2019-08-03,22194.24856586507,384,Emergency,2019-08-24,Normal,5078,445,4,13,,,,DISCHARGED -5079,2020-05-14,9943.541969518485,176,Emergency,2020-06-08,Normal,5079,209,4,24,,,,DISCHARGED -5079,2023-06-27,33985.19506309106,173,Emergency,2023-07-04,Inconclusive,8063,77,2,25,,,,DISCHARGED -5080,2023-06-08,15957.61024078509,318,Urgent,,Normal,5080,201,1,22,,,,OPEN -5081,2023-02-02,47477.69218200944,169,Emergency,2023-02-23,Normal,5081,301,4,28,,,,DISCHARGED -5082,2023-06-03,38778.715143378366,135,Emergency,2023-06-06,Normal,5082,396,4,21,,,,DISCHARGED -5083,2022-01-01,29847.57604500654,182,Emergency,2022-01-11,Abnormal,5083,222,1,13,,,,DISCHARGED -5084,2022-03-04,34998.579654995534,391,Emergency,2022-04-01,Abnormal,5084,221,0,0,,,,DISCHARGED -5085,2020-11-12,27481.08429671334,496,Emergency,2020-11-22,Inconclusive,5085,2,4,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5086,2023-08-31,25488.5545187998,439,Urgent,2023-09-28,Abnormal,5086,477,0,28,,,,DISCHARGED -5087,2020-01-30,10942.63642788955,460,Emergency,2020-02-23,Normal,5087,5,4,8,,,,DISCHARGED -5088,2020-07-27,2173.0143073560757,394,Urgent,2020-08-19,Normal,5088,92,3,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -5089,2022-09-14,17914.79923597715,393,Elective,2022-10-03,Abnormal,5089,7,2,13,,,,DISCHARGED -5090,2020-05-12,47551.64257521588,450,Elective,2020-05-19,Normal,5090,427,4,12,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -5091,2021-12-08,14287.817991049107,311,Emergency,2022-01-04,Abnormal,5091,492,3,12,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5092,2020-04-07,38135.39035605555,358,Urgent,2020-04-29,Abnormal,5092,234,1,5,,,,DISCHARGED -5093,2021-07-12,6379.431468206156,227,Emergency,2021-08-04,Abnormal,5093,107,3,6,,,,DISCHARGED -5094,2020-02-22,5690.434388051457,256,Emergency,2020-03-23,Normal,5094,160,1,1,,,,DISCHARGED -5095,2020-12-04,7397.102105046514,257,Urgent,2020-12-15,Abnormal,5095,208,4,25,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -5096,2022-03-10,39303.05191863163,127,Urgent,2022-03-28,Abnormal,5096,239,1,7,,,,DISCHARGED -5097,2021-04-02,44220.670477086685,255,Urgent,2021-05-01,Abnormal,5097,330,3,23,,,,DISCHARGED -5097,2022-06-14,1586.6443087453392,265,Elective,2022-07-12,Inconclusive,9507,332,2,5,,,,DISCHARGED -5098,2022-04-17,7889.07978197884,120,Emergency,2022-04-24,Inconclusive,5098,49,0,24,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5099,2020-11-05,35659.62034519237,470,Emergency,2020-11-14,Abnormal,5099,10,0,2,,,,DISCHARGED -5100,2021-09-29,22479.162705327715,209,Urgent,2021-10-21,Normal,5100,350,2,17,,,,DISCHARGED -5101,2022-06-04,32815.29997796043,209,Emergency,2022-06-21,Abnormal,5101,155,0,17,,,,DISCHARGED -5102,2022-06-23,29329.13332650798,376,Elective,2022-07-22,Normal,5102,491,4,21,,,,DISCHARGED -5103,2022-05-28,41247.83920941289,420,Elective,2022-06-10,Inconclusive,5103,69,4,22,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5104,2020-03-02,14684.637807789368,131,Elective,2020-03-18,Abnormal,5104,168,3,5,,,,DISCHARGED -5105,2021-04-13,32750.13637163835,256,Emergency,2021-05-01,Normal,5105,271,3,10,,,,DISCHARGED -5106,2023-01-23,2348.075702915341,264,Elective,,Normal,5106,67,1,2,,,,OPEN -5107,2021-12-06,2501.326828908028,110,Urgent,2022-01-03,Abnormal,5107,354,3,15,,,,DISCHARGED -5108,2021-05-01,36833.41412767465,387,Urgent,2021-05-28,Abnormal,5108,251,4,4,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5109,2019-06-12,3501.2265960132518,281,Emergency,2019-06-19,Inconclusive,5109,47,3,23,,,,DISCHARGED -5110,2021-11-07,18809.576224856806,231,Elective,2021-12-03,Abnormal,5110,183,0,21,,,,DISCHARGED -5111,2022-09-23,34902.5596901161,192,Emergency,2022-10-18,Normal,5111,319,1,1,,,,DISCHARGED -5112,2023-05-05,5279.053806338706,241,Urgent,2023-05-08,Abnormal,5112,186,1,14,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5113,2019-12-30,22266.724771904683,351,Urgent,2020-01-04,Inconclusive,5113,89,4,15,,,,DISCHARGED -5114,2022-09-24,22638.04524794325,148,Elective,2022-10-03,Normal,5114,445,3,6,,,,DISCHARGED -5115,2022-03-28,22186.365924970083,483,Urgent,2022-04-26,Abnormal,5115,331,0,15,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -5116,2022-07-22,38097.37219821762,238,Elective,2022-08-17,Inconclusive,5116,138,3,23,,,,DISCHARGED -5117,2019-03-18,17218.957061815156,314,Elective,2019-03-22,Normal,5117,356,2,3,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -5118,2021-08-02,17817.20960979308,337,Emergency,2021-08-26,Abnormal,5118,88,3,27,,,,DISCHARGED -5119,2021-01-19,2191.062771318586,488,Elective,2021-02-02,Inconclusive,5119,273,4,15,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5120,2019-12-24,45561.65116025382,461,Elective,2020-01-13,Normal,5120,18,3,16,,,,DISCHARGED -5121,2022-02-06,39230.97300259444,316,Elective,2022-03-03,Abnormal,5121,470,1,1,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5122,2020-09-17,12606.224904969233,153,Elective,2020-10-05,Inconclusive,5122,310,0,15,,,,DISCHARGED -5123,2019-04-27,5147.784802637132,160,Urgent,2019-05-13,Normal,5123,357,4,3,,,,DISCHARGED -5124,2022-02-13,32504.536911314022,434,Urgent,2022-03-14,Abnormal,5124,373,2,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -5125,2023-06-25,30588.68330087086,217,Elective,2023-07-04,Normal,5125,465,0,17,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -5126,2020-07-09,28479.198753920235,354,Urgent,2020-08-07,Inconclusive,5126,153,0,5,,,,DISCHARGED -5126,2023-10-09,12379.134624294014,380,Urgent,,Normal,9993,389,1,17,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,OPEN -5127,2023-07-22,13650.43845961381,245,Emergency,2023-08-05,Abnormal,5127,259,1,27,,,,DISCHARGED -5128,2019-05-27,1259.7194959308604,163,Emergency,2019-06-21,Normal,5128,107,1,6,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -5129,2021-07-22,7922.259374639687,371,Elective,2021-07-28,Abnormal,5129,370,4,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5130,2023-02-03,22474.64327157401,119,Urgent,,Abnormal,5130,284,3,18,,,,OPEN -5132,2023-08-23,49757.18985756018,223,Urgent,2023-08-24,Normal,5132,58,0,8,,,,DISCHARGED -5134,2021-12-13,26996.77570777713,364,Emergency,2021-12-30,Normal,5134,124,3,28,,,,DISCHARGED -5135,2020-01-25,28027.16780207578,408,Urgent,2020-02-16,Normal,5135,353,3,3,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5136,2019-12-28,28590.61771260386,151,Urgent,2020-01-16,Normal,5136,272,1,13,,,,DISCHARGED -5137,2023-05-20,26210.540675083856,193,Emergency,2023-06-05,Normal,5137,106,3,4,,,,DISCHARGED -5138,2022-11-06,1450.6409243881474,472,Emergency,2022-11-29,Abnormal,5138,298,0,24,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5139,2019-04-03,25719.2087967364,390,Elective,2019-04-19,Normal,5139,244,0,6,,,,DISCHARGED -5140,2023-10-09,19637.997960753062,142,Emergency,,Normal,5140,335,2,7,,,,OPEN -5141,2019-05-18,15964.45356667402,107,Urgent,2019-06-12,Abnormal,5141,449,4,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5142,2023-06-01,11720.311114443684,285,Emergency,2023-06-19,Abnormal,5142,417,3,26,,,,DISCHARGED -5143,2019-12-01,15550.561758010905,424,Urgent,2019-12-05,Normal,5143,246,4,18,,,,DISCHARGED -5144,2022-02-24,28278.66995987896,483,Urgent,2022-03-26,Inconclusive,5144,7,4,26,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -5145,2019-09-04,3546.9628249270777,150,Urgent,2019-09-27,Normal,5145,140,4,10,,,,DISCHARGED -5146,2019-12-26,18130.193051042563,469,Urgent,2020-01-21,Normal,5146,361,4,19,,,,DISCHARGED -5147,2019-03-05,12313.0155937923,273,Urgent,2019-03-07,Inconclusive,5147,7,0,22,,,,DISCHARGED -5148,2022-01-11,37655.765650130736,176,Emergency,2022-01-14,Abnormal,5148,477,3,3,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -5149,2021-06-30,10735.966504179169,327,Elective,2021-07-05,Normal,5149,351,2,17,,,,DISCHARGED -5150,2019-01-21,1272.0514204487647,234,Urgent,2019-01-28,Normal,5150,483,4,13,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -5151,2019-07-15,31483.55808887903,117,Emergency,2019-08-09,Abnormal,5151,494,2,25,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5153,2023-06-21,36262.05016221882,269,Urgent,2023-07-15,Inconclusive,5153,93,0,5,,,,DISCHARGED -5154,2019-05-04,28483.47475783277,424,Elective,2019-05-08,Inconclusive,5154,320,0,24,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5155,2020-02-02,46501.41107778,266,Elective,2020-02-23,Inconclusive,5155,426,1,15,,,,DISCHARGED -5156,2023-01-15,1981.0896297497384,279,Elective,2023-02-12,Inconclusive,5156,38,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5157,2020-12-26,30424.24670835349,163,Elective,2020-12-27,Normal,5157,80,1,0,,,,DISCHARGED -5158,2020-05-04,41821.08228991133,243,Urgent,2020-05-29,Inconclusive,5158,186,2,7,,,,DISCHARGED -5160,2023-09-02,40563.460539870015,133,Elective,2023-09-15,Inconclusive,5160,83,3,0,,,,DISCHARGED -5160,2021-04-21,20748.42806274156,235,Urgent,2021-05-02,Inconclusive,6161,87,1,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -5161,2018-11-28,49028.35142291023,227,Elective,2018-12-01,Normal,5161,241,0,18,,,,DISCHARGED -5161,2023-03-19,24200.289586990104,401,Elective,2023-03-22,Normal,7429,341,4,20,,,,DISCHARGED -5162,2020-08-14,32124.16588443249,115,Urgent,2020-09-10,Inconclusive,5162,92,2,28,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5163,2022-12-01,14576.052719707131,442,Emergency,2022-12-22,Abnormal,5163,85,0,27,,,,DISCHARGED -5164,2022-04-09,10645.37550774106,199,Emergency,2022-04-23,Abnormal,5164,43,3,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -5165,2023-08-13,35750.63106481579,160,Elective,,Inconclusive,5165,136,4,26,,,,OPEN -5166,2022-05-01,37856.31886153119,486,Emergency,2022-05-07,Normal,5166,420,3,9,,,,DISCHARGED -5168,2022-05-14,28673.253814415508,131,Elective,2022-06-02,Abnormal,5168,73,3,17,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -5170,2023-02-20,36704.28690427285,371,Urgent,,Abnormal,5170,35,4,11,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -5171,2023-03-23,15910.791599315406,451,Urgent,2023-04-02,Abnormal,5171,100,4,27,,,,DISCHARGED -5172,2023-02-15,32946.37386702329,173,Urgent,2023-03-02,Normal,5172,475,3,16,,,,DISCHARGED -5173,2021-09-27,9281.857561464249,159,Elective,2021-10-18,Inconclusive,5173,155,2,0,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -5174,2023-02-07,36496.49084044139,181,Emergency,2023-02-09,Inconclusive,5174,425,4,7,,,,DISCHARGED -5175,2021-12-16,22699.119822200057,183,Urgent,2022-01-10,Abnormal,5175,254,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5176,2020-03-23,25268.53697640309,401,Elective,2020-03-31,Inconclusive,5176,170,1,25,,,,DISCHARGED -5177,2019-02-08,47097.50897390788,117,Urgent,2019-02-15,Normal,5177,468,2,9,,,,DISCHARGED -5178,2023-01-17,47403.274614423295,333,Emergency,,Normal,5178,215,4,17,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",OPEN -5181,2023-06-02,29197.717478553037,331,Emergency,2023-06-13,Abnormal,5181,169,4,28,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5181,2023-03-11,26808.23001967882,422,Urgent,,Abnormal,7476,251,2,8,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -5182,2023-07-10,14897.824044181014,329,Elective,,Abnormal,5182,359,1,24,,,,OPEN -5183,2022-01-18,29778.3100976944,170,Emergency,2022-02-13,Normal,5183,321,3,1,,,,DISCHARGED -5184,2022-04-17,12652.7367568972,263,Emergency,2022-05-09,Abnormal,5184,54,0,2,,,,DISCHARGED -5185,2022-02-17,48514.63488666102,175,Emergency,2022-03-07,Inconclusive,5185,455,4,1,,,,DISCHARGED -5186,2023-09-18,1172.659953875504,379,Elective,2023-10-16,Inconclusive,5186,431,1,5,,,,DISCHARGED -5187,2019-10-11,26449.156255032744,151,Emergency,2019-10-17,Abnormal,5187,90,0,22,,,,DISCHARGED -5188,2023-02-07,9413.999977684554,186,Urgent,,Abnormal,5188,277,2,11,,,,OPEN -5189,2022-02-18,18386.73821567868,254,Emergency,2022-02-26,Inconclusive,5189,100,4,21,,,,DISCHARGED -5190,2018-12-07,39661.33407160865,364,Elective,2018-12-31,Inconclusive,5190,154,3,18,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -5191,2021-11-11,44866.916638648734,101,Elective,2021-11-26,Abnormal,5191,376,2,27,,,,DISCHARGED -5192,2021-09-27,34945.33717731973,290,Urgent,2021-10-22,Inconclusive,5192,348,4,14,,,,DISCHARGED -5195,2021-08-15,6116.923875134586,343,Elective,2021-08-25,Inconclusive,5195,450,1,18,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5196,2019-03-13,23142.126357517936,411,Urgent,2019-03-28,Abnormal,5196,363,0,11,,,,DISCHARGED -5197,2023-01-31,18687.903357694744,458,Emergency,2023-02-13,Normal,5197,140,0,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5198,2022-04-29,32627.342223406,335,Elective,2022-05-06,Abnormal,5198,172,4,15,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5199,2019-09-25,1926.6662530599983,449,Urgent,2019-10-24,Normal,5199,9,2,1,,,,DISCHARGED -5200,2020-05-05,9907.394047069422,446,Urgent,2020-05-17,Inconclusive,5200,227,3,10,,,,DISCHARGED -5201,2021-09-06,29473.003230377253,295,Elective,2021-09-12,Normal,5201,264,1,11,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -5202,2022-08-21,48716.023366180765,399,Emergency,2022-09-13,Abnormal,5202,437,4,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5203,2021-07-24,7038.8277432283,304,Emergency,2021-08-04,Normal,5203,247,1,26,,,,DISCHARGED -5204,2023-06-04,22876.63714225199,126,Emergency,2023-06-29,Normal,5204,246,0,26,,,,DISCHARGED -5205,2023-07-25,15114.21953923833,443,Urgent,2023-08-03,Abnormal,5205,154,3,23,,,,DISCHARGED -5206,2019-09-18,25492.354986840543,458,Emergency,2019-09-25,Normal,5206,33,1,5,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -5207,2021-11-23,19623.135690572144,344,Urgent,2021-12-22,Inconclusive,5207,498,4,24,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5207,2023-03-17,40257.55988229859,220,Urgent,2023-04-11,Inconclusive,7625,128,3,10,,,,DISCHARGED -5208,2022-06-16,26244.70606168459,372,Urgent,2022-06-28,Normal,5208,159,2,20,,,,DISCHARGED -5209,2021-08-08,26250.09268002844,397,Emergency,2021-09-05,Abnormal,5209,88,4,9,,,,DISCHARGED -5210,2023-02-14,9363.156577558748,379,Urgent,,Inconclusive,5210,92,1,3,,,,OPEN -5211,2019-02-18,47696.27664125714,243,Emergency,2019-03-18,Abnormal,5211,326,3,8,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -5212,2021-09-02,24843.09902959749,493,Emergency,2021-09-25,Normal,5212,240,4,11,,,,DISCHARGED -5213,2023-05-19,27233.90963192384,487,Urgent,,Inconclusive,5213,322,3,9,,,,OPEN -5214,2020-08-06,39186.46235653345,105,Elective,2020-08-10,Inconclusive,5214,467,3,26,,,,DISCHARGED -5215,2022-02-12,35023.68912553508,396,Urgent,2022-02-22,Abnormal,5215,403,3,13,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5217,2023-09-30,25258.915221257168,203,Urgent,2023-10-14,Normal,5217,116,1,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5218,2019-08-09,12620.191027203891,498,Emergency,2019-08-31,Normal,5218,93,4,0,,,,DISCHARGED -5219,2021-11-29,46691.96896180026,135,Emergency,2021-12-05,Abnormal,5219,162,0,4,,,,DISCHARGED -5220,2019-12-22,18212.235553405266,150,Elective,2020-01-16,Abnormal,5220,98,0,15,,,,DISCHARGED -5223,2020-04-23,1703.5574370888792,313,Emergency,2020-05-20,Abnormal,5223,112,1,4,,,,DISCHARGED -5224,2020-11-18,43955.43534389099,412,Emergency,2020-12-11,Abnormal,5224,358,1,4,,,,DISCHARGED -5225,2020-07-28,40749.89977643832,449,Emergency,2020-08-16,Abnormal,5225,90,3,28,,,,DISCHARGED -5226,2020-06-11,46801.18080261245,133,Urgent,2020-06-21,Abnormal,5226,345,4,17,,,,DISCHARGED -5227,2018-12-28,16591.810883957984,389,Urgent,2019-01-14,Normal,5227,205,4,28,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5228,2023-02-04,39914.34095318098,128,Urgent,2023-02-16,Inconclusive,5228,16,2,5,,,,DISCHARGED -5229,2020-07-30,33977.2254630983,397,Emergency,2020-08-18,Abnormal,5229,273,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5230,2021-03-08,29265.9523186035,474,Urgent,2021-03-11,Abnormal,5230,172,0,17,,,,DISCHARGED -5231,2022-06-14,22219.37329418572,453,Urgent,2022-07-01,Normal,5231,115,2,27,,,,DISCHARGED -5233,2021-11-17,24876.76609000926,138,Emergency,2021-11-21,Inconclusive,5233,348,2,9,,,,DISCHARGED -5234,2023-08-29,43069.08045232865,250,Elective,2023-08-30,Normal,5234,467,0,14,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5235,2019-08-24,20063.468608215764,288,Elective,2019-09-14,Abnormal,5235,180,0,29,,,,DISCHARGED -5236,2022-10-17,12071.366195923749,161,Elective,2022-11-09,Inconclusive,5236,90,2,23,,,,DISCHARGED -5237,2019-10-25,2751.955990536877,347,Emergency,2019-10-26,Abnormal,5237,81,4,21,,,,DISCHARGED -5237,2019-12-29,37020.925858857256,379,Urgent,2020-01-13,Normal,9632,323,2,10,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5238,2022-09-26,18538.95006147664,495,Urgent,2022-09-28,Abnormal,5238,448,3,25,,,,DISCHARGED -5239,2019-03-24,48708.8706878804,293,Urgent,2019-03-27,Inconclusive,5239,113,3,27,,,,DISCHARGED -5240,2019-06-17,41039.152467523294,145,Elective,2019-07-04,Inconclusive,5240,256,3,26,,,,DISCHARGED -5240,2023-05-13,39858.605919572365,243,Urgent,2023-05-28,Normal,7432,57,1,18,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5241,2022-06-27,2907.0567740026404,311,Emergency,2022-07-16,Inconclusive,5241,153,3,24,,,,DISCHARGED -5242,2020-08-17,46424.14934130371,270,Urgent,2020-09-10,Inconclusive,5242,364,4,12,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5243,2021-06-01,12021.925633727167,307,Urgent,2021-06-12,Abnormal,5243,403,1,26,,,,DISCHARGED -5244,2020-09-17,18219.643450890868,195,Emergency,2020-10-13,Inconclusive,5244,115,1,26,,,,DISCHARGED -5245,2023-09-23,44044.824301646346,500,Urgent,2023-10-02,Inconclusive,5245,342,3,29,,,,DISCHARGED -5246,2019-10-30,32393.922225869275,360,Urgent,2019-11-01,Abnormal,5246,265,2,19,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -5248,2020-11-20,38192.24708130329,444,Elective,2020-12-05,Normal,5248,314,0,2,,,,DISCHARGED -5248,2021-01-23,9054.056612162198,294,Emergency,2021-02-06,Inconclusive,7009,202,2,15,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5249,2019-04-29,31138.531570528456,246,Emergency,2019-05-28,Abnormal,5249,40,2,6,,,,DISCHARGED -5250,2022-12-09,9837.2564619063,294,Urgent,2022-12-20,Inconclusive,5250,104,1,11,,,,DISCHARGED -5251,2022-06-26,6243.818912741213,121,Elective,2022-06-28,Inconclusive,5251,388,1,28,,,,DISCHARGED -5252,2019-05-29,46435.406990034,105,Elective,2019-06-23,Normal,5252,377,1,14,,,,DISCHARGED -5253,2020-12-07,33714.713895835084,364,Elective,2020-12-28,Normal,5253,192,4,29,,,,DISCHARGED -5254,2021-03-19,47482.47335979292,211,Urgent,2021-03-27,Inconclusive,5254,400,4,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5255,2020-08-18,11390.808640513238,125,Urgent,2020-09-13,Normal,5255,277,0,22,,,,DISCHARGED -5256,2022-02-27,47406.65124654162,430,Urgent,2022-03-26,Normal,5256,353,1,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5257,2022-02-18,12123.022948194506,303,Urgent,2022-03-15,Abnormal,5257,236,3,0,,,,DISCHARGED -5258,2019-05-28,18156.354363072747,141,Elective,2019-06-04,Abnormal,5258,424,1,28,,,,DISCHARGED -5259,2021-02-21,44991.86684195481,468,Elective,2021-03-23,Normal,5259,220,4,20,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5260,2019-01-01,45770.0297892668,351,Urgent,2019-01-05,Inconclusive,5260,67,1,29,,,,DISCHARGED -5261,2022-08-24,49661.2470973855,261,Urgent,2022-09-05,Abnormal,5261,196,4,7,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5262,2021-03-25,16060.585663211245,359,Emergency,2021-04-07,Abnormal,5262,255,1,13,,,,DISCHARGED -5262,2019-06-16,22790.376840207064,239,Elective,2019-06-24,Inconclusive,7483,138,3,9,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5262,2023-10-05,8887.988126145556,210,Elective,2023-10-26,Abnormal,8475,311,0,26,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5263,2023-10-08,29618.68695088728,245,Elective,,Abnormal,5263,434,3,18,,,,OPEN -5264,2020-03-27,23040.68279097219,394,Urgent,2020-04-23,Abnormal,5264,148,4,7,,,,DISCHARGED -5265,2020-12-03,33400.77395852582,485,Urgent,2020-12-14,Abnormal,5265,98,2,18,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5267,2023-06-25,23191.437316779917,122,Elective,2023-06-29,Normal,5267,75,3,3,,,,DISCHARGED -5268,2023-09-29,27808.686260342136,238,Emergency,2023-10-04,Normal,5268,281,1,9,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5269,2020-02-01,18406.510117157035,438,Elective,2020-02-23,Normal,5269,370,0,22,,,,DISCHARGED -5270,2022-10-26,20152.934724714687,164,Emergency,2022-11-16,Inconclusive,5270,402,1,2,,,,DISCHARGED -5271,2021-03-10,35336.54685593156,477,Urgent,2021-03-14,Inconclusive,5271,108,1,3,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -5272,2019-01-05,45189.24584398605,441,Emergency,2019-01-14,Abnormal,5272,187,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5272,2022-11-06,32596.969893982976,237,Emergency,2022-11-26,Normal,8528,198,0,23,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -5273,2020-09-27,23387.498167739595,250,Elective,2020-10-10,Normal,5273,302,2,3,,,,DISCHARGED -5274,2019-10-29,48599.59229382341,187,Elective,2019-11-01,Normal,5274,326,1,24,,,,DISCHARGED -5275,2021-12-26,43801.88454043095,342,Elective,2021-12-30,Abnormal,5275,153,0,19,,,,DISCHARGED -5276,2023-09-21,11292.690655192097,441,Elective,2023-09-23,Abnormal,5276,39,2,28,,,,DISCHARGED -5277,2022-01-22,47708.84509469196,488,Emergency,2022-02-12,Abnormal,5277,132,1,29,,,,DISCHARGED -5278,2022-08-02,46405.609088226425,363,Emergency,2022-08-04,Normal,5278,404,0,19,,,,DISCHARGED -5279,2022-03-01,9302.207797850466,436,Elective,2022-03-20,Abnormal,5279,461,3,12,,,,DISCHARGED -5280,2020-01-23,18990.308273929,273,Emergency,2020-02-20,Normal,5280,131,1,20,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -5281,2018-12-25,5040.738326886707,446,Elective,2019-01-15,Inconclusive,5281,278,1,16,,,,DISCHARGED -5282,2020-03-15,17791.94959070682,201,Emergency,2020-03-19,Normal,5282,361,0,22,,,,DISCHARGED -5282,2021-04-17,20514.67691999995,351,Urgent,2021-04-20,Normal,7842,83,1,24,,,,DISCHARGED -5283,2020-01-07,33940.6495390121,142,Elective,2020-01-26,Normal,5283,398,2,15,,,,DISCHARGED -5285,2022-06-20,41984.88583170091,445,Elective,2022-07-08,Inconclusive,5285,241,1,27,,,,DISCHARGED -5286,2021-11-29,13923.722207965006,120,Urgent,2021-12-26,Inconclusive,5286,115,4,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5287,2023-01-17,30927.596774208425,380,Urgent,2023-02-03,Inconclusive,5287,108,2,16,,,,DISCHARGED -5288,2022-09-06,45332.9114383018,191,Elective,2022-09-30,Abnormal,5288,220,0,5,,,,DISCHARGED -5289,2023-06-03,7280.258731348832,121,Urgent,2023-06-09,Abnormal,5289,391,2,2,,,,DISCHARGED -5290,2020-04-07,44665.58346299991,269,Elective,2020-04-30,Abnormal,5290,40,4,19,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -5291,2023-04-22,6943.602234449973,190,Elective,2023-04-23,Inconclusive,5291,367,4,23,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -5291,2021-07-16,6743.587021111983,350,Elective,2021-08-15,Inconclusive,7038,146,1,3,,,,DISCHARGED -5293,2021-11-28,34290.81106653555,171,Emergency,2021-12-01,Normal,5293,111,1,7,,,,DISCHARGED -5294,2019-11-27,21269.961761348197,456,Elective,2019-12-23,Abnormal,5294,102,3,19,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -5295,2020-09-18,2426.6177893942768,364,Emergency,2020-09-23,Inconclusive,5295,45,2,8,,,,DISCHARGED -5296,2019-02-17,7271.705234775733,232,Emergency,2019-03-08,Inconclusive,5296,411,3,21,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5297,2019-11-28,6147.781585691975,354,Emergency,2019-12-26,Normal,5297,493,4,0,,,,DISCHARGED -5298,2022-10-21,38505.2933934196,185,Emergency,2022-11-03,Inconclusive,5298,474,1,12,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5299,2023-08-30,22940.65966947428,447,Elective,2023-09-24,Normal,5299,323,1,25,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -5300,2021-12-26,38652.44784415607,499,Emergency,2022-01-09,Normal,5300,377,1,1,,,,DISCHARGED -5301,2022-02-14,16975.993989791416,115,Elective,2022-02-20,Abnormal,5301,270,0,22,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5302,2023-03-18,5953.958899304417,446,Emergency,2023-03-29,Abnormal,5302,482,4,9,,,,DISCHARGED -5304,2023-04-03,41490.31352502009,425,Emergency,2023-04-19,Inconclusive,5304,420,1,22,,,,DISCHARGED -5305,2023-02-25,46001.29489302763,198,Emergency,2023-02-28,Abnormal,5305,384,4,18,,,,DISCHARGED -5306,2020-04-07,48407.9927355567,372,Urgent,2020-05-05,Abnormal,5306,194,1,16,,,,DISCHARGED -5307,2021-02-27,35159.076689868154,346,Urgent,2021-03-29,Inconclusive,5307,366,2,23,,,,DISCHARGED -5308,2023-10-17,46425.52394262858,474,Urgent,2023-10-18,Inconclusive,5308,279,4,12,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -5310,2020-10-26,10101.14795685093,396,Emergency,2020-11-15,Abnormal,5310,282,3,28,,,,DISCHARGED -5311,2020-08-18,19911.481805316693,154,Elective,2020-09-01,Inconclusive,5311,39,0,25,,,,DISCHARGED -5312,2020-04-03,31421.33605830356,435,Emergency,2020-04-10,Abnormal,5312,446,3,13,,,,DISCHARGED -5312,2021-01-13,10332.537182502045,136,Urgent,2021-01-27,Abnormal,6223,188,4,26,,,,DISCHARGED -5313,2022-11-20,6538.339832777338,109,Elective,2022-11-21,Normal,5313,163,1,10,,,,DISCHARGED -5314,2023-01-13,10528.691860138466,118,Emergency,,Inconclusive,5314,481,4,9,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",OPEN -5316,2019-05-19,37788.61108637827,224,Elective,2019-06-18,Abnormal,5316,476,0,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5317,2019-01-15,36269.15234978935,173,Urgent,2019-01-29,Normal,5317,23,4,9,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5318,2020-08-14,26857.80751957179,281,Elective,2020-09-03,Inconclusive,5318,23,1,23,,,,DISCHARGED -5319,2019-03-23,1750.4645692866843,197,Urgent,2019-04-12,Abnormal,5319,489,3,0,,,,DISCHARGED -5320,2023-09-13,28410.20032258373,314,Elective,2023-09-26,Abnormal,5320,3,2,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5321,2022-06-30,49874.62222518887,303,Urgent,2022-07-03,Normal,5321,322,3,2,,,,DISCHARGED -5322,2019-08-28,15207.704125165776,196,Elective,2019-09-06,Normal,5322,289,1,12,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5323,2022-11-14,21106.1622177802,455,Emergency,2022-12-07,Inconclusive,5323,440,1,1,,,,DISCHARGED -5324,2022-11-19,33294.20730722521,495,Emergency,2022-12-18,Inconclusive,5324,432,0,16,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -5325,2018-11-01,42411.20965936169,145,Emergency,2018-11-12,Normal,5325,470,4,20,,,,DISCHARGED -5326,2022-03-20,42758.97959650399,496,Urgent,2022-03-25,Normal,5326,180,4,2,,,,DISCHARGED -5327,2022-09-14,4645.351762174405,374,Elective,2022-09-29,Normal,5327,247,3,25,,,,DISCHARGED -5328,2021-04-19,35589.818019400314,241,Elective,2021-05-06,Inconclusive,5328,115,2,14,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5329,2023-10-17,40837.9125009489,150,Emergency,2023-11-13,Normal,5329,278,2,7,,,,DISCHARGED -5330,2021-11-24,15988.948357667903,388,Elective,2021-12-12,Abnormal,5330,364,0,5,,,,DISCHARGED -5331,2020-07-24,32447.69749887272,229,Urgent,2020-08-11,Abnormal,5331,68,1,25,,,,DISCHARGED -5332,2019-01-06,48068.42743358444,125,Emergency,2019-01-07,Normal,5332,350,0,29,,,,DISCHARGED -5333,2023-03-04,33527.72606393148,123,Urgent,2023-03-23,Inconclusive,5333,253,4,8,,,,DISCHARGED -5334,2022-12-29,8464.131385097815,497,Elective,2023-01-20,Inconclusive,5334,180,1,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5335,2022-03-14,29553.755389591177,321,Elective,2022-04-08,Normal,5335,317,0,10,,,,DISCHARGED -5336,2023-07-01,22080.99390125088,156,Urgent,2023-07-18,Normal,5336,168,3,21,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -5337,2023-08-06,37565.73816624861,310,Urgent,2023-08-28,Abnormal,5337,312,4,1,,,,DISCHARGED -5338,2019-07-31,24789.88105489378,275,Elective,2019-08-02,Abnormal,5338,248,2,8,,,,DISCHARGED -5339,2019-07-16,37165.99926019338,344,Emergency,2019-07-29,Abnormal,5339,187,0,17,,,,DISCHARGED -5340,2021-07-16,38047.23617445312,477,Emergency,2021-08-10,Inconclusive,5340,53,4,18,,,,DISCHARGED -5341,2019-12-24,1422.3067701407497,296,Elective,2020-01-03,Abnormal,5341,325,4,21,,,,DISCHARGED -5341,2020-07-21,40613.17537109844,194,Emergency,2020-08-19,Normal,7715,356,2,17,,,,DISCHARGED -5342,2021-04-28,2530.743028796275,338,Emergency,2021-05-04,Normal,5342,312,2,4,,,,DISCHARGED -5343,2020-07-12,39465.43991927848,477,Elective,2020-08-05,Inconclusive,5343,137,2,17,,,,DISCHARGED -5344,2021-04-13,16696.69493599367,383,Urgent,2021-04-23,Normal,5344,167,0,11,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5345,2023-01-15,8392.045632088782,113,Emergency,,Inconclusive,5345,390,2,3,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",OPEN -5346,2018-12-27,44835.551923487765,329,Elective,2019-01-07,Normal,5346,102,3,14,,,,DISCHARGED -5347,2022-07-15,41152.08651687772,116,Elective,2022-07-31,Abnormal,5347,421,4,10,,,,DISCHARGED -5348,2023-03-25,10938.3560169617,401,Emergency,,Inconclusive,5348,84,2,26,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,OPEN -5349,2020-11-04,39163.2761091567,388,Emergency,2020-11-08,Abnormal,5349,316,4,18,,,,DISCHARGED -5349,2022-10-07,28911.8217100814,422,Elective,2022-10-13,Normal,5967,211,1,4,,,,DISCHARGED -5350,2019-09-11,18429.65766887912,258,Emergency,2019-09-26,Abnormal,5350,2,1,5,,,,DISCHARGED -5351,2020-03-20,2321.0371386477877,341,Urgent,2020-04-14,Abnormal,5351,383,2,12,,,,DISCHARGED -5352,2022-11-10,27995.572777828173,283,Elective,2022-11-13,Normal,5352,178,4,22,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5352,2023-01-07,41047.74921477449,221,Elective,,Abnormal,7452,341,1,9,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5353,2022-07-28,24095.36526351721,344,Emergency,2022-08-18,Abnormal,5353,302,2,23,,,,DISCHARGED -5354,2020-05-19,49700.98120803751,133,Emergency,2020-05-29,Abnormal,5354,451,4,24,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5354,2023-10-23,22074.39268761999,222,Urgent,2023-11-12,Abnormal,7569,475,2,13,,,,DISCHARGED -5355,2019-07-09,13411.08305129469,349,Elective,2019-08-05,Normal,5355,331,4,3,,,,DISCHARGED -5356,2023-02-19,6639.058142140622,234,Urgent,,Normal,5356,37,1,19,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",OPEN -5357,2020-08-21,39291.57930780216,459,Emergency,2020-09-10,Inconclusive,5357,498,2,22,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -5357,2022-03-11,14624.447761972537,319,Elective,2022-04-02,Normal,8312,419,1,11,,,,DISCHARGED -5358,2022-02-27,17227.234822947503,256,Urgent,2022-03-08,Inconclusive,5358,238,2,14,,,,DISCHARGED -5359,2022-10-08,30539.400149840912,422,Emergency,2022-11-06,Normal,5359,168,0,25,,,,DISCHARGED -5360,2021-08-17,4170.371037880999,195,Urgent,2021-09-09,Inconclusive,5360,452,1,9,,,,DISCHARGED -5361,2023-09-27,9047.530841846115,157,Elective,2023-10-14,Normal,5361,396,1,10,,,,DISCHARGED -5362,2023-06-19,45809.65808749955,464,Elective,2023-07-10,Inconclusive,5362,342,3,8,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5363,2022-03-04,39428.53026744075,443,Urgent,2022-03-05,Abnormal,5363,313,1,10,,,,DISCHARGED -5364,2019-12-15,30263.184287280103,477,Urgent,2019-12-24,Inconclusive,5364,305,4,1,,,,DISCHARGED -5365,2023-09-16,28010.774778172246,203,Urgent,2023-10-11,Inconclusive,5365,29,2,12,,,,DISCHARGED -5365,2021-03-19,18843.142998483618,232,Elective,2021-03-21,Abnormal,8497,189,0,26,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5366,2022-11-21,1080.8669526267531,302,Elective,2022-11-23,Inconclusive,5366,356,4,21,,,,DISCHARGED -5367,2020-04-30,42836.19925513295,500,Elective,2020-05-10,Inconclusive,5367,24,4,25,,,,DISCHARGED -5368,2023-01-23,30861.70453786641,380,Urgent,2023-02-18,Normal,5368,111,4,25,,,,DISCHARGED -5369,2020-04-15,26804.80874203124,148,Elective,2020-05-10,Inconclusive,5369,410,4,7,,,,DISCHARGED -5370,2022-09-22,46032.57922096606,357,Emergency,2022-09-28,Normal,5370,434,0,28,,,,DISCHARGED -5371,2019-03-26,43214.8507055202,328,Emergency,2019-04-13,Normal,5371,205,3,20,,,,DISCHARGED -5372,2021-08-22,35865.4012798763,363,Urgent,2021-09-15,Normal,5372,184,1,20,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5373,2019-03-16,42233.967419656736,400,Elective,2019-04-01,Inconclusive,5373,381,4,7,,,,DISCHARGED -5374,2023-08-05,37953.00141973952,305,Urgent,,Normal,5374,495,1,0,,,,OPEN -5375,2022-01-21,42059.84507440352,216,Urgent,2022-02-09,Normal,5375,378,1,5,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -5376,2021-11-06,24684.18458097732,188,Elective,2021-11-15,Normal,5376,46,4,25,,,,DISCHARGED -5377,2022-05-19,13827.517439138348,195,Emergency,2022-05-23,Inconclusive,5377,373,3,12,,,,DISCHARGED -5378,2020-01-09,38452.14533880384,166,Urgent,2020-02-07,Abnormal,5378,227,1,8,,,,DISCHARGED -5379,2021-11-03,48785.143226280336,122,Emergency,2021-11-15,Inconclusive,5379,38,2,27,,,,DISCHARGED -5380,2019-11-06,9820.269855080442,300,Elective,2019-12-01,Normal,5380,15,1,5,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -5381,2022-09-07,32236.78326851948,242,Emergency,2022-09-28,Abnormal,5381,21,4,14,,,,DISCHARGED -5382,2019-11-09,42383.36091951493,190,Urgent,2019-11-21,Normal,5382,212,0,22,,,,DISCHARGED -5383,2021-01-19,24411.6592538423,165,Urgent,2021-02-02,Inconclusive,5383,309,1,15,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -5383,2023-10-11,13178.685214354206,486,Urgent,,Normal,5834,148,3,3,,,,OPEN -5384,2019-12-02,43428.36202951809,425,Emergency,2019-12-09,Abnormal,5384,455,2,27,,,,DISCHARGED -5385,2021-09-14,35476.09677467794,302,Emergency,2021-09-15,Abnormal,5385,240,2,25,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -5386,2020-08-24,16287.82264090078,423,Elective,2020-09-14,Normal,5386,271,0,16,,,,DISCHARGED -5387,2018-11-16,9545.64603043312,230,Urgent,2018-12-10,Abnormal,5387,58,0,8,,,,DISCHARGED -5388,2023-03-16,49250.1054529776,480,Emergency,2023-04-12,Inconclusive,5388,286,1,11,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5389,2020-12-22,36824.12385592929,141,Emergency,2020-12-26,Inconclusive,5389,425,4,21,,,,DISCHARGED -5390,2023-10-14,38851.27355297423,134,Emergency,2023-10-29,Inconclusive,5390,201,3,18,,,,DISCHARGED -5391,2018-12-21,27369.153397422564,197,Urgent,2019-01-20,Abnormal,5391,31,2,19,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5392,2020-02-10,7140.297578535327,211,Emergency,2020-02-11,Normal,5392,442,0,25,,,,DISCHARGED -5395,2019-12-07,22359.40877319428,439,Urgent,2019-12-26,Normal,5395,161,3,11,,,,DISCHARGED -5396,2022-04-05,34853.81702775787,204,Urgent,2022-04-17,Normal,5396,254,4,21,,,,DISCHARGED -5397,2021-02-27,5429.632982750025,118,Emergency,2021-03-29,Normal,5397,253,2,5,,,,DISCHARGED -5398,2021-07-21,38730.71082495431,330,Elective,2021-07-27,Normal,5398,8,2,11,,,,DISCHARGED -5399,2021-09-01,3237.2037960223056,427,Elective,2021-09-07,Normal,5399,464,4,8,,,,DISCHARGED -5400,2023-05-28,3062.780223094609,417,Emergency,,Inconclusive,5400,138,2,19,,,,OPEN -5401,2020-06-07,40806.31699083983,315,Urgent,2020-07-01,Inconclusive,5401,479,4,4,,,,DISCHARGED -5402,2019-10-02,38807.55158630943,284,Emergency,2019-10-29,Abnormal,5402,9,2,20,,,,DISCHARGED -5403,2020-07-14,36160.41237376924,297,Emergency,2020-08-04,Inconclusive,5403,213,1,2,,,,DISCHARGED -5404,2019-12-23,49932.9018159729,139,Elective,2020-01-16,Abnormal,5404,272,4,1,,,,DISCHARGED -5405,2020-10-07,23052.528213908503,126,Emergency,2020-10-17,Inconclusive,5405,323,3,7,,,,DISCHARGED -5406,2020-11-27,21193.1273674194,466,Emergency,2020-12-12,Abnormal,5406,47,1,9,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5407,2022-10-03,16674.88160857864,458,Elective,2022-10-16,Normal,5407,435,3,14,,,,DISCHARGED -5408,2020-05-30,5445.315077691656,331,Urgent,2020-06-16,Abnormal,5408,110,2,8,,,,DISCHARGED -5409,2023-08-01,2991.585877151348,297,Emergency,2023-08-20,Abnormal,5409,152,3,9,,,,DISCHARGED -5410,2022-02-28,27735.17374627667,397,Urgent,2022-03-21,Normal,5410,122,1,10,,,,DISCHARGED -5411,2019-12-16,5538.860169765128,431,Emergency,2019-12-19,Normal,5411,404,4,28,,,,DISCHARGED -5412,2021-01-24,40778.51024034466,420,Elective,2021-02-13,Inconclusive,5412,356,0,8,,,,DISCHARGED -5413,2022-03-06,45552.59617365875,284,Urgent,2022-03-13,Normal,5413,101,3,13,,,,DISCHARGED -5415,2019-03-16,37061.43491338366,357,Urgent,2019-04-09,Abnormal,5415,240,0,4,,,,DISCHARGED -5416,2020-12-28,28846.661833847807,278,Emergency,2021-01-14,Abnormal,5416,320,3,26,,,,DISCHARGED -5416,2020-06-26,27278.165514539785,488,Urgent,2020-06-27,Abnormal,9175,190,3,8,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5417,2018-11-28,14594.566067869942,137,Elective,2018-12-14,Abnormal,5417,216,4,3,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5418,2023-08-14,22296.73953689249,470,Emergency,,Normal,5418,50,2,1,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5419,2018-11-27,10023.970303055092,407,Urgent,2018-12-18,Abnormal,5419,291,1,18,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -5420,2022-10-03,29208.66801834079,244,Urgent,2022-10-29,Normal,5420,80,1,0,,,,DISCHARGED -5421,2021-04-06,36935.61043704975,176,Elective,2021-04-12,Inconclusive,5421,488,1,20,,,,DISCHARGED -5422,2019-10-21,13495.099745750576,199,Emergency,2019-11-07,Abnormal,5422,382,2,0,,,,DISCHARGED -5423,2020-10-26,1791.3037254107592,169,Urgent,2020-10-31,Abnormal,5423,87,0,11,,,,DISCHARGED -5424,2019-04-26,39884.67218928435,294,Urgent,2019-05-22,Normal,5424,193,1,10,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5426,2022-01-20,16277.077550480746,107,Urgent,2022-02-01,Abnormal,5426,103,0,0,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -5427,2022-11-02,31236.902863500552,257,Emergency,2022-11-04,Normal,5427,270,2,13,,,,DISCHARGED -5428,2019-02-06,5493.691696701916,457,Emergency,2019-02-14,Inconclusive,5428,95,2,26,,,,DISCHARGED -5429,2022-07-27,24513.15489993489,329,Elective,2022-08-20,Abnormal,5429,422,4,10,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -5430,2021-12-13,1764.4822924212513,124,Emergency,2021-12-27,Inconclusive,5430,378,1,28,,,,DISCHARGED -5431,2022-07-18,5752.507708254177,255,Urgent,2022-07-24,Abnormal,5431,197,4,6,,,,DISCHARGED -5432,2022-04-16,46865.626212657815,441,Elective,2022-05-15,Inconclusive,5432,0,1,1,,,,DISCHARGED -5433,2023-07-21,24518.20993969547,191,Emergency,2023-07-31,Abnormal,5433,494,2,14,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -5434,2022-11-05,13191.363987295816,316,Emergency,2022-11-26,Inconclusive,5434,406,2,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5435,2023-09-08,16738.006507391347,434,Emergency,,Normal,5435,377,3,21,,,,OPEN -5436,2021-02-17,22500.804527599492,367,Emergency,2021-03-14,Abnormal,5436,166,3,19,,,,DISCHARGED -5437,2023-03-27,26561.15042423582,305,Urgent,,Inconclusive,5437,125,2,24,,,,OPEN -5438,2019-01-04,16990.727072996044,134,Urgent,2019-01-12,Inconclusive,5438,312,2,14,,,,DISCHARGED -5439,2023-03-11,43497.94261493842,197,Urgent,,Normal,5439,80,0,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",OPEN -5440,2021-07-11,42186.70287432094,214,Elective,2021-08-06,Normal,5440,417,0,7,,,,DISCHARGED -5440,2019-07-30,31513.06488585425,295,Elective,2019-08-23,Normal,8413,250,4,28,,,,DISCHARGED -5441,2023-07-23,48974.16779572172,217,Elective,,Inconclusive,5441,168,3,9,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,OPEN -5442,2020-07-07,45776.19121582433,362,Elective,2020-07-21,Abnormal,5442,476,3,18,,,,DISCHARGED -5443,2021-04-03,48754.54852661361,357,Urgent,2021-04-28,Normal,5443,72,2,2,,,,DISCHARGED -5444,2021-11-17,49677.361740915374,227,Urgent,2021-12-02,Inconclusive,5444,140,2,19,,,,DISCHARGED -5446,2022-05-24,41944.96990492281,433,Elective,2022-06-14,Inconclusive,5446,69,4,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -5447,2021-02-02,25322.96010050705,354,Elective,2021-02-10,Inconclusive,5447,261,3,8,,,,DISCHARGED -5448,2021-09-28,34638.29465458193,219,Urgent,2021-10-03,Inconclusive,5448,339,0,8,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -5449,2021-05-05,49634.14975559975,471,Emergency,2021-05-20,Abnormal,5449,307,1,20,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5450,2019-05-17,27559.73375065933,151,Elective,2019-06-10,Abnormal,5450,244,4,27,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5451,2023-05-22,49681.632573105744,122,Urgent,2023-05-31,Inconclusive,5451,2,1,24,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5452,2019-02-25,39404.23567524226,204,Urgent,2019-03-09,Abnormal,5452,336,0,5,,,,DISCHARGED -5453,2019-11-25,14114.391134339276,327,Elective,2019-12-21,Inconclusive,5453,62,0,7,,,,DISCHARGED -5454,2020-03-31,48197.48511573792,354,Urgent,2020-04-21,Abnormal,5454,48,1,10,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -5455,2018-11-24,20635.83232207457,358,Urgent,2018-11-26,Normal,5455,75,4,7,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5456,2023-10-14,15011.811970797087,285,Emergency,2023-11-10,Abnormal,5456,367,1,11,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5457,2019-03-12,40490.06178194295,137,Emergency,2019-04-04,Inconclusive,5457,174,4,9,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -5458,2023-09-14,48296.69098795672,215,Elective,2023-09-26,Inconclusive,5458,108,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5459,2019-01-25,11435.536672536811,311,Emergency,2019-02-08,Normal,5459,182,2,3,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5460,2021-05-09,41209.828504691,245,Elective,2021-05-24,Inconclusive,5460,191,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5461,2022-01-09,19716.05716892109,123,Emergency,2022-01-30,Inconclusive,5461,64,3,19,,,,DISCHARGED -5462,2022-04-16,6280.45456453877,454,Emergency,2022-04-17,Normal,5462,336,0,5,,,,DISCHARGED -5463,2019-05-27,19455.289654116084,180,Urgent,2019-06-25,Abnormal,5463,450,2,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5464,2022-05-23,42544.932608938056,155,Elective,2022-06-03,Normal,5464,473,3,8,,,,DISCHARGED -5465,2019-10-03,26853.596179774904,419,Emergency,2019-10-31,Inconclusive,5465,270,4,22,,,,DISCHARGED -5466,2023-02-18,1752.278905377956,309,Elective,2023-03-13,Inconclusive,5466,99,4,4,,,,DISCHARGED -5467,2022-04-22,32598.26667597038,286,Urgent,2022-04-26,Abnormal,5467,31,1,20,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -5469,2019-10-25,40038.40258360773,116,Elective,2019-10-28,Normal,5469,351,1,23,,,,DISCHARGED -5470,2019-09-26,49317.80454141078,465,Elective,2019-09-28,Abnormal,5470,127,4,5,,,,DISCHARGED -5472,2023-01-16,23887.20644644489,432,Urgent,,Abnormal,5472,451,4,16,,,,OPEN -5473,2023-05-06,18095.28928942116,290,Emergency,,Abnormal,5473,401,1,16,,,,OPEN -5474,2020-03-21,47696.71156865114,358,Urgent,2020-04-17,Abnormal,5474,368,3,24,,,,DISCHARGED -5475,2021-07-26,25437.52023244568,238,Elective,2021-08-23,Normal,5475,338,0,23,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5476,2023-05-16,45112.76363156635,237,Urgent,2023-05-18,Inconclusive,5476,42,1,21,,,,DISCHARGED -5476,2021-01-07,28209.277420581533,333,Emergency,2021-02-06,Abnormal,7281,371,3,12,,,,DISCHARGED -5477,2022-10-01,47868.67773014483,226,Urgent,2022-10-08,Abnormal,5477,418,3,16,,,,DISCHARGED -5478,2020-03-29,4017.326220379593,304,Urgent,2020-04-02,Normal,5478,487,3,13,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -5479,2019-10-16,13827.383117892345,258,Urgent,2019-10-25,Normal,5479,77,2,1,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5480,2018-12-05,43790.45894859171,345,Urgent,2019-01-04,Abnormal,5480,313,2,25,,,,DISCHARGED -5481,2018-12-24,20507.74368592553,286,Urgent,2019-01-12,Inconclusive,5481,288,3,18,,,,DISCHARGED -5481,2019-01-10,27550.76728405913,373,Urgent,2019-01-22,Abnormal,9623,269,4,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -5482,2021-12-27,7843.595497328682,109,Emergency,2022-01-08,Normal,5482,161,2,27,,,,DISCHARGED -5483,2019-10-26,17841.742606173466,495,Elective,2019-11-13,Inconclusive,5483,188,1,2,,,,DISCHARGED -5484,2020-07-08,29167.34119712129,466,Emergency,2020-07-14,Inconclusive,5484,246,2,1,,,,DISCHARGED -5485,2021-02-07,33775.446353892046,209,Emergency,2021-02-16,Inconclusive,5485,387,4,27,,,,DISCHARGED -5486,2020-10-11,32706.281202055,325,Emergency,2020-10-30,Inconclusive,5486,215,0,1,,,,DISCHARGED -5487,2022-10-12,17257.5074224556,254,Emergency,2022-11-04,Inconclusive,5487,314,2,21,,,,DISCHARGED -5488,2021-03-10,9281.810846090568,327,Urgent,2021-03-21,Inconclusive,5488,412,3,6,,,,DISCHARGED -5489,2021-12-21,30107.17524570852,412,Urgent,2022-01-04,Abnormal,5489,338,3,3,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5490,2021-11-04,15596.575378101004,118,Emergency,2021-12-03,Normal,5490,389,3,16,,,,DISCHARGED -5491,2020-10-14,40532.34825106549,435,Emergency,2020-11-04,Normal,5491,376,0,5,,,,DISCHARGED -5492,2020-02-09,9251.907942613594,474,Emergency,2020-02-14,Normal,5492,480,4,6,,,,DISCHARGED -5493,2022-08-18,14673.780086112352,315,Emergency,2022-09-03,Normal,5493,432,1,19,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -5494,2022-09-09,5829.162439815217,125,Emergency,2022-10-03,Inconclusive,5494,167,4,5,,,,DISCHARGED -5495,2021-12-28,1171.4206586373248,354,Emergency,2022-01-08,Abnormal,5495,338,0,8,,,,DISCHARGED -5496,2020-03-06,6379.529525027945,266,Urgent,2020-03-07,Abnormal,5496,192,3,19,,,,DISCHARGED -5497,2023-09-14,13971.4243152323,498,Urgent,,Inconclusive,5497,452,4,27,,,,OPEN -5498,2020-06-08,20097.20931310368,146,Urgent,2020-06-24,Inconclusive,5498,282,1,29,,,,DISCHARGED -5499,2021-02-09,18985.709716127338,291,Elective,2021-02-23,Inconclusive,5499,335,3,25,,,,DISCHARGED -5500,2019-04-26,25853.24710900689,314,Urgent,2019-05-22,Abnormal,5500,389,1,3,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -5501,2023-01-14,9451.878754301972,252,Emergency,2023-02-08,Inconclusive,5501,487,2,25,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5502,2023-03-09,33844.07352681068,144,Urgent,,Normal,5502,12,1,27,,,,OPEN -5503,2021-02-27,8870.420105055236,136,Emergency,2021-02-28,Inconclusive,5503,239,3,4,,,,DISCHARGED -5504,2019-07-10,27241.209026550157,298,Emergency,2019-07-17,Inconclusive,5504,319,2,18,,,,DISCHARGED -5505,2019-01-10,27481.173241159617,152,Urgent,2019-01-12,Inconclusive,5505,445,3,9,,,,DISCHARGED -5506,2023-06-20,11801.951974206746,265,Elective,2023-07-06,Normal,5506,482,3,17,,,,DISCHARGED -5507,2021-02-24,43392.61962127786,267,Urgent,2021-03-09,Inconclusive,5507,146,2,14,,,,DISCHARGED -5508,2023-01-21,1848.5187892732315,407,Emergency,2023-02-20,Normal,5508,203,1,24,,,,DISCHARGED -5509,2019-06-22,10083.532618668076,440,Urgent,2019-07-08,Normal,5509,79,0,28,,,,DISCHARGED -5510,2021-02-02,1317.0555110624366,248,Urgent,2021-02-19,Abnormal,5510,378,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5511,2019-06-16,17853.73322610585,485,Emergency,2019-07-05,Inconclusive,5511,42,0,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -5512,2020-06-18,1090.4798751265444,274,Elective,2020-06-26,Abnormal,5512,457,0,4,,,,DISCHARGED -5513,2020-06-02,9870.166225123636,253,Emergency,2020-06-26,Inconclusive,5513,88,4,7,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5514,2022-08-26,1565.318159720578,228,Emergency,2022-08-29,Inconclusive,5514,147,0,21,,,,DISCHARGED -5515,2020-01-08,23444.41579454259,485,Emergency,2020-01-09,Normal,5515,94,2,21,,,,DISCHARGED -5516,2023-10-25,22192.03635583758,187,Elective,2023-10-26,Inconclusive,5516,451,0,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5517,2020-03-05,11915.283048303389,449,Emergency,2020-03-22,Normal,5517,427,3,19,,,,DISCHARGED -5520,2019-12-03,43119.38515863943,278,Urgent,2020-01-02,Inconclusive,5520,150,0,14,,,,DISCHARGED -5521,2023-07-12,20330.53178539943,195,Urgent,2023-07-15,Abnormal,5521,1,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -5522,2021-10-02,19406.62775687958,158,Urgent,2021-10-18,Abnormal,5522,375,2,18,,,,DISCHARGED -5523,2022-07-01,19313.957475013107,393,Emergency,2022-07-27,Inconclusive,5523,21,2,28,,,,DISCHARGED -5524,2020-03-24,12165.82119856502,296,Urgent,2020-04-03,Abnormal,5524,370,4,12,,,,DISCHARGED -5525,2023-01-17,37595.19110595963,151,Elective,2023-01-22,Inconclusive,5525,312,3,25,,,,DISCHARGED -5526,2022-10-14,15730.48708492797,486,Emergency,2022-10-18,Inconclusive,5526,484,2,27,,,,DISCHARGED -5527,2023-03-27,44514.06142166318,130,Urgent,2023-03-31,Normal,5527,327,1,26,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -5528,2020-03-22,38101.05263674001,104,Emergency,2020-04-14,Abnormal,5528,6,0,21,,,,DISCHARGED -5529,2022-06-21,17925.32225291541,384,Urgent,2022-07-17,Inconclusive,5529,205,2,20,,,,DISCHARGED -5530,2023-07-31,42151.09026458504,394,Urgent,2023-08-30,Normal,5530,439,1,9,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -5531,2020-07-09,26631.683125464417,243,Emergency,2020-07-10,Abnormal,5531,374,0,16,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -5532,2020-01-22,42214.17530048848,167,Elective,2020-02-18,Normal,5532,450,4,4,,,,DISCHARGED -5533,2020-11-17,5771.419236935768,102,Urgent,2020-11-26,Abnormal,5533,113,2,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5534,2021-05-18,11918.006576010368,490,Emergency,2021-05-28,Inconclusive,5534,271,2,16,,,,DISCHARGED -5535,2019-03-11,49438.0076061757,347,Emergency,2019-03-28,Abnormal,5535,82,1,3,,,,DISCHARGED -5536,2020-02-28,24878.26484293333,340,Urgent,2020-03-25,Inconclusive,5536,178,3,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5537,2022-04-15,30505.306210412044,498,Urgent,2022-04-18,Normal,5537,209,4,6,,,,DISCHARGED -5538,2020-07-01,36568.46414381794,168,Elective,2020-07-31,Abnormal,5538,499,3,24,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5539,2020-02-09,49909.18220645191,341,Elective,2020-03-02,Normal,5539,463,2,4,,,,DISCHARGED -5539,2019-11-25,23006.61167380606,250,Elective,2019-12-17,Abnormal,6981,327,3,7,,,,DISCHARGED -5540,2019-01-16,5077.590508859319,153,Elective,2019-01-29,Abnormal,5540,123,0,7,,,,DISCHARGED -5541,2022-10-22,5331.683334057343,283,Urgent,2022-11-12,Normal,5541,480,4,10,,,,DISCHARGED -5542,2022-01-17,18550.21627748104,353,Elective,2022-01-27,Normal,5542,112,3,8,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5543,2021-02-22,3428.931836088073,247,Emergency,2021-03-06,Abnormal,5543,11,0,18,,,,DISCHARGED -5544,2020-12-08,20096.283126410373,200,Urgent,2020-12-16,Abnormal,5544,125,1,18,,,,DISCHARGED -5546,2020-12-18,38710.7696472897,304,Emergency,2021-01-08,Inconclusive,5546,52,3,8,,,,DISCHARGED -5547,2018-12-05,7064.179237757457,418,Elective,2018-12-23,Inconclusive,5547,330,4,22,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5548,2022-11-14,23219.054089596983,308,Emergency,2022-12-14,Abnormal,5548,388,0,19,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5549,2021-03-19,38848.09466883852,238,Emergency,2021-04-07,Normal,5549,282,3,16,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -5550,2020-01-22,16387.39328439017,433,Urgent,2020-02-15,Abnormal,5550,139,1,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5551,2019-06-08,6515.100206365886,309,Urgent,2019-06-23,Abnormal,5551,400,3,6,,,,DISCHARGED -5552,2019-08-17,16645.647468518873,365,Emergency,2019-09-08,Inconclusive,5552,389,0,25,,,,DISCHARGED -5554,2021-03-31,33023.83276802979,463,Emergency,2021-04-02,Normal,5554,96,3,21,,,,DISCHARGED -5555,2020-12-05,24465.45861240059,489,Emergency,2020-12-22,Inconclusive,5555,4,4,2,,,,DISCHARGED -5556,2022-05-02,32860.62483981741,112,Urgent,2022-05-21,Normal,5556,56,2,29,,,,DISCHARGED -5557,2023-08-09,13981.360950147007,162,Elective,,Abnormal,5557,411,0,20,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -5558,2021-05-15,9995.572768966307,171,Emergency,2021-06-13,Inconclusive,5558,333,0,18,,,,DISCHARGED -5559,2021-07-09,4789.085848439766,366,Elective,2021-07-14,Normal,5559,68,0,7,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5560,2018-11-14,2510.8946413030926,192,Urgent,2018-11-22,Inconclusive,5560,117,0,4,,,,DISCHARGED -5561,2021-01-06,14355.618596031883,252,Emergency,2021-01-18,Normal,5561,375,3,25,,,,DISCHARGED -5562,2023-10-14,23527.84194061165,139,Elective,2023-10-26,Normal,5562,58,4,25,,,,DISCHARGED -5564,2020-01-15,29906.40318346309,375,Elective,2020-01-31,Normal,5564,32,1,5,,,,DISCHARGED -5567,2023-01-12,40213.047287467205,237,Emergency,,Inconclusive,5567,317,4,1,,,,OPEN -5568,2020-10-20,45927.48416195112,195,Elective,2020-10-27,Abnormal,5568,49,0,23,,,,DISCHARGED -5569,2023-07-17,44689.23117222465,346,Emergency,2023-08-15,Inconclusive,5569,367,3,24,,,,DISCHARGED -5570,2023-04-20,15917.577082387976,355,Emergency,2023-04-25,Abnormal,5570,488,3,18,,,,DISCHARGED -5571,2019-06-20,1488.2328137328843,405,Emergency,2019-07-10,Abnormal,5571,18,0,12,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -5572,2022-02-22,37711.81670605661,191,Emergency,2022-03-03,Abnormal,5572,213,3,5,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -5573,2022-06-30,34654.84177432377,476,Elective,2022-07-24,Normal,5573,196,0,5,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5574,2022-12-19,36354.02930778381,319,Urgent,2022-12-28,Abnormal,5574,378,4,1,,,,DISCHARGED -5575,2020-08-18,15438.610912911528,277,Elective,2020-08-31,Normal,5575,449,2,25,,,,DISCHARGED -5576,2020-03-18,34330.79074201225,380,Urgent,2020-04-02,Normal,5576,477,3,23,,,,DISCHARGED -5577,2022-12-01,9220.16754797901,116,Urgent,2022-12-07,Normal,5577,46,0,4,,,,DISCHARGED -5578,2020-05-20,44923.25744086493,438,Elective,2020-06-10,Inconclusive,5578,166,0,10,,,,DISCHARGED -5579,2020-11-07,22068.640535493523,213,Urgent,2020-12-06,Abnormal,5579,451,3,10,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5580,2022-10-25,42799.59918412646,289,Emergency,2022-10-31,Abnormal,5580,288,1,23,,,,DISCHARGED -5581,2021-08-03,47395.17921545352,143,Urgent,2021-08-22,Abnormal,5581,140,0,13,,,,DISCHARGED -5582,2023-01-15,39764.117164923344,309,Urgent,2023-01-22,Abnormal,5582,83,3,12,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5583,2021-12-31,49220.553079794336,367,Elective,2022-01-10,Normal,5583,181,0,29,,,,DISCHARGED -5584,2022-07-04,43274.20650763516,374,Urgent,2022-07-09,Normal,5584,390,1,7,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5586,2021-08-24,43446.94664550018,340,Urgent,2021-09-21,Inconclusive,5586,78,2,14,,,,DISCHARGED -5587,2019-04-17,14655.18387092568,399,Urgent,2019-04-22,Normal,5587,214,1,11,,,,DISCHARGED -5588,2020-10-22,9434.675755998407,397,Emergency,2020-11-20,Inconclusive,5588,13,4,2,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5590,2022-04-07,40815.12039678574,433,Elective,2022-04-10,Abnormal,5590,214,3,20,,,,DISCHARGED -5592,2021-02-20,24531.27398924686,184,Elective,2021-03-12,Abnormal,5592,402,1,22,,,,DISCHARGED -5593,2020-01-15,30795.47031065481,191,Emergency,2020-02-12,Abnormal,5593,127,2,4,,,,DISCHARGED -5594,2021-10-09,13207.348028691957,324,Emergency,2021-10-31,Normal,5594,309,0,5,,,,DISCHARGED -5595,2020-10-09,8040.212832703101,470,Emergency,2020-10-25,Normal,5595,476,3,1,,,,DISCHARGED -5596,2021-07-02,4161.722926333099,446,Emergency,2021-07-06,Normal,5596,247,1,7,,,,DISCHARGED -5597,2020-01-22,20070.28090316163,313,Urgent,2020-02-09,Abnormal,5597,403,2,4,,,,DISCHARGED -5598,2021-08-30,13139.890419137198,137,Emergency,2021-09-27,Normal,5598,28,1,21,,,,DISCHARGED -5600,2019-08-08,4162.362805840682,349,Emergency,2019-09-04,Normal,5600,279,4,16,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5601,2020-10-22,36661.40216194962,381,Emergency,2020-11-12,Abnormal,5601,337,3,25,,,,DISCHARGED -5602,2018-11-27,23045.374639854595,352,Elective,2018-12-10,Abnormal,5602,318,0,1,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5604,2023-10-24,3210.616254246515,214,Emergency,2023-11-04,Abnormal,5604,201,2,10,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -5605,2021-12-20,7461.403668350002,346,Emergency,2021-12-23,Abnormal,5605,360,1,3,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5606,2022-02-09,5270.709086060577,363,Urgent,2022-02-16,Inconclusive,5606,56,3,10,,,,DISCHARGED -5607,2020-04-12,7487.829803795133,269,Urgent,2020-05-06,Abnormal,5607,391,1,8,,,,DISCHARGED -5608,2019-01-02,36325.2152786961,258,Emergency,2019-01-21,Abnormal,5608,217,3,5,,,,DISCHARGED -5609,2018-12-09,22732.71868779149,156,Elective,2019-01-08,Abnormal,5609,61,4,23,,,,DISCHARGED -5610,2020-11-26,35233.89064235108,390,Urgent,2020-12-13,Abnormal,5610,156,1,1,,,,DISCHARGED -5611,2019-06-30,19740.5756484834,316,Emergency,2019-07-02,Normal,5611,201,4,25,,,,DISCHARGED -5612,2023-02-08,20388.025680574097,155,Emergency,2023-03-05,Inconclusive,5612,16,2,14,,,,DISCHARGED -5613,2020-12-15,46015.86130437745,472,Elective,2021-01-06,Normal,5613,321,4,4,,,,DISCHARGED -5614,2020-06-18,7884.663378720075,407,Elective,2020-06-29,Inconclusive,5614,5,3,27,,,,DISCHARGED -5615,2023-04-25,27739.58011355435,374,Elective,2023-05-11,Abnormal,5615,57,2,11,,,,DISCHARGED -5616,2019-05-16,44362.92171141461,167,Elective,2019-05-18,Normal,5616,324,1,12,,,,DISCHARGED -5617,2023-05-17,2821.05523952982,229,Emergency,2023-06-15,Inconclusive,5617,411,1,16,,,,DISCHARGED -5618,2022-08-06,48676.14664262107,480,Elective,2022-08-23,Normal,5618,317,3,3,,,,DISCHARGED -5619,2021-09-04,27585.57269442252,448,Emergency,2021-09-11,Inconclusive,5619,168,0,9,,,,DISCHARGED -5620,2023-03-18,27874.35597098301,359,Elective,2023-04-06,Inconclusive,5620,452,0,0,,,,DISCHARGED -5621,2020-04-24,11002.91140641999,385,Emergency,2020-05-09,Inconclusive,5621,81,1,10,,,,DISCHARGED -5622,2021-01-23,45881.272449917866,226,Emergency,2021-02-10,Abnormal,5622,473,3,15,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -5623,2021-11-15,25853.706752899558,487,Emergency,2021-11-30,Normal,5623,467,0,10,,,,DISCHARGED -5624,2021-10-06,48665.55069627846,401,Emergency,2021-11-03,Abnormal,5624,424,4,8,,,,DISCHARGED -5625,2023-10-05,42186.368950674754,258,Emergency,2023-10-23,Normal,5625,432,1,1,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5626,2020-08-04,31737.40129078574,122,Elective,2020-08-10,Abnormal,5626,218,4,6,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5627,2020-04-07,15823.579218098175,317,Urgent,2020-04-20,Normal,5627,176,3,18,,,,DISCHARGED -5628,2023-05-09,28350.11369627051,149,Emergency,2023-05-14,Normal,5628,203,4,29,,,,DISCHARGED -5629,2021-12-31,21264.44562119641,212,Emergency,2022-01-23,Inconclusive,5629,70,0,17,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -5630,2021-07-13,4300.140475867282,190,Urgent,2021-08-03,Inconclusive,5630,386,0,28,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5632,2019-04-19,42177.74827463338,235,Elective,2019-05-02,Normal,5632,265,2,19,,,,DISCHARGED -5633,2022-10-27,48154.36869166793,476,Elective,2022-11-24,Normal,5633,97,1,6,,,,DISCHARGED -5634,2022-02-23,23546.824236261076,165,Elective,2022-03-01,Abnormal,5634,344,3,22,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -5635,2023-02-04,3827.47615749252,303,Emergency,2023-03-03,Inconclusive,5635,290,1,8,,,,DISCHARGED -5636,2023-07-28,46966.75584267557,331,Urgent,,Inconclusive,5636,207,4,11,,,,OPEN -5637,2019-03-25,49423.49523302996,184,Emergency,2019-04-15,Abnormal,5637,1,3,28,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5638,2019-02-09,8357.29228941246,175,Emergency,2019-02-13,Abnormal,5638,123,3,2,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5639,2022-12-08,6158.640815770521,226,Emergency,2023-01-05,Normal,5639,279,0,22,,,,DISCHARGED -5640,2022-06-26,35905.18892706407,441,Urgent,2022-07-26,Normal,5640,73,4,21,,,,DISCHARGED -5641,2021-01-14,28555.815041452966,316,Elective,2021-01-26,Normal,5641,165,0,25,,,,DISCHARGED -5642,2023-01-06,15258.262477474316,167,Emergency,2023-01-09,Abnormal,5642,21,0,15,,,,DISCHARGED -5643,2019-12-31,6602.251287758873,372,Urgent,2020-01-24,Abnormal,5643,153,2,6,,,,DISCHARGED -5644,2019-06-06,43419.95581722009,316,Emergency,2019-06-07,Inconclusive,5644,426,0,22,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5645,2021-02-09,47211.49182779642,211,Urgent,2021-02-18,Normal,5645,438,1,25,,,,DISCHARGED -5647,2023-08-12,36132.48816773328,253,Urgent,2023-08-15,Inconclusive,5647,294,3,4,,,,DISCHARGED -5648,2023-01-17,11398.30961281586,220,Emergency,,Normal,5648,218,0,24,,,,OPEN -5649,2022-01-03,48089.11756732609,312,Elective,2022-01-16,Inconclusive,5649,156,1,22,,,,DISCHARGED -5650,2020-08-03,2947.8440318769035,228,Urgent,2020-08-27,Normal,5650,494,4,6,,,,DISCHARGED -5652,2021-11-20,26213.02241810872,489,Urgent,2021-12-17,Normal,5652,229,3,27,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -5653,2020-09-02,5323.758450915077,192,Elective,2020-09-26,Abnormal,5653,19,4,29,,,,DISCHARGED -5654,2023-10-25,34345.81066804729,193,Emergency,,Abnormal,5654,474,1,18,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5655,2022-09-20,25252.626807088083,492,Emergency,2022-10-03,Normal,5655,40,4,16,,,,DISCHARGED -5656,2020-05-27,4615.153353499796,492,Elective,2020-06-22,Inconclusive,5656,437,4,15,,,,DISCHARGED -5659,2023-04-02,8927.207797682033,252,Emergency,2023-04-26,Inconclusive,5659,147,4,29,,,,DISCHARGED -5660,2020-07-13,37583.68177193296,221,Urgent,2020-08-01,Inconclusive,5660,107,0,29,,,,DISCHARGED -5661,2019-07-31,30478.781418852614,476,Urgent,2019-08-18,Normal,5661,402,0,20,,,,DISCHARGED -5662,2023-01-13,4184.293920628197,271,Emergency,,Inconclusive,5662,83,0,23,,,,OPEN -5663,2019-10-24,4130.883390064402,227,Emergency,2019-11-02,Abnormal,5663,482,3,20,,,,DISCHARGED -5663,2020-02-01,34177.07794912983,282,Elective,2020-02-26,Inconclusive,9286,366,1,25,,,,DISCHARGED -5664,2019-07-26,26743.861006390787,247,Urgent,2019-07-28,Normal,5664,321,0,18,,,,DISCHARGED -5665,2022-02-06,9840.83120603295,128,Emergency,2022-02-09,Inconclusive,5665,413,4,24,,,,DISCHARGED -5667,2022-05-27,12251.998892896703,119,Elective,2022-06-18,Abnormal,5667,308,4,17,,,,DISCHARGED -5668,2020-05-06,15197.400021202966,113,Urgent,2020-05-18,Abnormal,5668,289,4,18,,,,DISCHARGED -5668,2019-11-25,5316.358466500731,463,Emergency,2019-12-25,Inconclusive,6242,405,4,27,,,,DISCHARGED -5668,2021-07-18,22756.839328326983,426,Urgent,2021-08-03,Inconclusive,7157,322,2,3,,,,DISCHARGED -5668,2018-11-05,10591.224896961778,489,Urgent,2018-11-06,Abnormal,8212,133,3,25,,,,DISCHARGED -5668,2019-10-26,28633.40747210143,188,Emergency,2019-10-28,Inconclusive,8627,206,1,0,,,,DISCHARGED -5668,2023-07-10,5866.170886251431,376,Urgent,,Normal,9748,282,1,26,,,,OPEN -5668,2023-06-01,41866.85304340323,319,Emergency,2023-06-26,Inconclusive,9804,265,0,3,,,,DISCHARGED -5669,2023-01-06,8763.035858471427,112,Elective,2023-01-08,Normal,5669,72,2,3,,,,DISCHARGED -5670,2020-10-27,15695.611575715258,307,Emergency,2020-11-14,Inconclusive,5670,480,1,8,,,,DISCHARGED -5671,2021-09-07,36737.00274310557,140,Urgent,2021-09-28,Inconclusive,5671,351,3,7,,,,DISCHARGED -5672,2021-02-11,27633.871154691664,442,Emergency,2021-02-23,Inconclusive,5672,47,4,1,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5673,2021-03-23,14923.44447975883,217,Urgent,2021-03-27,Inconclusive,5673,325,0,28,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5674,2023-07-01,14987.01155571157,369,Emergency,,Normal,5674,232,3,22,,,,OPEN -5675,2021-04-02,49678.36460338836,375,Emergency,2021-04-12,Abnormal,5675,442,1,5,,,,DISCHARGED -5675,2020-01-09,49541.88121075537,301,Urgent,2020-01-17,Inconclusive,7180,99,2,22,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -5676,2020-05-09,13871.759919105569,338,Urgent,2020-05-21,Abnormal,5676,58,0,10,,,,DISCHARGED -5677,2021-06-24,4315.537178870989,499,Emergency,2021-07-22,Inconclusive,5677,257,1,3,,,,DISCHARGED -5678,2018-12-06,44749.88722852461,152,Emergency,2018-12-22,Normal,5678,412,0,29,,,,DISCHARGED -5679,2022-01-18,4608.005854627593,174,Urgent,2022-02-11,Inconclusive,5679,451,1,13,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5680,2022-07-15,2406.8229283273627,334,Emergency,2022-07-25,Abnormal,5680,64,4,20,,,,DISCHARGED -5681,2021-12-25,10018.58276582826,105,Urgent,2021-12-28,Abnormal,5681,82,2,21,,,,DISCHARGED -5682,2019-11-10,47696.63249222352,366,Elective,2019-11-16,Inconclusive,5682,153,4,8,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -5683,2022-04-28,3055.7876552651387,273,Urgent,2022-05-17,Normal,5683,472,1,1,,,,DISCHARGED -5683,2022-06-20,33799.18645994579,494,Elective,2022-07-17,Abnormal,9417,265,3,26,,,,DISCHARGED -5684,2019-04-25,8512.098413981746,361,Emergency,2019-05-02,Normal,5684,308,4,24,,,,DISCHARGED -5685,2021-03-12,27327.57372010893,456,Urgent,2021-04-11,Normal,5685,78,3,25,,,,DISCHARGED -5686,2021-11-17,29510.074555864503,234,Emergency,2021-12-01,Normal,5686,314,1,0,,,,DISCHARGED -5687,2022-03-11,21010.370082254976,405,Emergency,2022-03-17,Normal,5687,149,2,3,,,,DISCHARGED -5688,2019-06-18,12758.226521406705,480,Emergency,2019-06-23,Normal,5688,434,3,11,,,,DISCHARGED -5689,2019-07-28,21172.06906887447,167,Urgent,2019-08-03,Inconclusive,5689,47,1,4,,,,DISCHARGED -5689,2021-06-22,40355.01784982245,370,Emergency,2021-07-10,Normal,7125,404,3,8,,,,DISCHARGED -5690,2021-09-24,30360.96204616538,314,Urgent,2021-09-25,Normal,5690,378,4,21,,,,DISCHARGED -5691,2022-02-01,37549.91348785777,237,Elective,2022-02-23,Normal,5691,247,1,3,,,,DISCHARGED -5692,2020-11-22,42775.47614220724,398,Emergency,2020-12-05,Normal,5692,277,4,15,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -5693,2019-11-18,17838.96637972813,326,Emergency,2019-12-13,Abnormal,5693,355,0,1,,,,DISCHARGED -5694,2022-03-03,13559.55845615191,270,Emergency,2022-03-18,Normal,5694,97,1,15,,,,DISCHARGED -5695,2019-10-22,34461.72131606651,210,Urgent,2019-11-09,Normal,5695,413,3,15,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5696,2023-05-12,47400.4582329689,358,Emergency,,Abnormal,5696,24,0,20,,,,OPEN -5698,2023-01-26,33094.70879573377,299,Urgent,2023-02-13,Normal,5698,492,4,23,,,,DISCHARGED -5699,2020-03-20,16573.236706481475,117,Urgent,2020-04-07,Normal,5699,283,4,23,,,,DISCHARGED -5700,2023-08-11,38498.71041560747,376,Urgent,2023-08-21,Inconclusive,5700,448,3,21,,,,DISCHARGED -5701,2023-08-18,44787.0651182221,406,Emergency,2023-08-28,Normal,5701,368,0,10,,,,DISCHARGED -5702,2020-08-26,37341.84121302799,482,Elective,2020-09-05,Inconclusive,5702,300,2,0,,,,DISCHARGED -5703,2022-06-04,13858.04865939046,238,Elective,2022-06-28,Normal,5703,67,3,14,,,,DISCHARGED -5704,2019-08-30,36131.43860743503,291,Elective,2019-09-10,Inconclusive,5704,6,4,23,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5705,2023-01-02,41861.69128051537,168,Urgent,2023-01-09,Abnormal,5705,304,1,3,,,,DISCHARGED -5706,2022-04-11,5930.110389450016,148,Emergency,2022-05-09,Inconclusive,5706,136,0,29,,,,DISCHARGED -5707,2019-09-22,4840.492342113495,388,Elective,2019-10-03,Abnormal,5707,163,2,17,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5708,2021-07-28,1827.4294799765569,379,Urgent,2021-08-21,Abnormal,5708,82,1,16,,,,DISCHARGED -5709,2022-08-29,48399.47492514278,292,Elective,2022-09-13,Normal,5709,384,0,6,,,,DISCHARGED -5710,2022-09-09,44965.81453031131,170,Urgent,2022-10-09,Inconclusive,5710,137,3,17,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -5711,2021-08-29,46584.580898071865,471,Elective,2021-09-27,Normal,5711,419,3,12,,,,DISCHARGED -5712,2022-06-08,48297.63335716982,243,Emergency,2022-06-14,Inconclusive,5712,72,0,19,,,,DISCHARGED -5714,2023-05-11,5136.397471761879,151,Urgent,2023-06-08,Abnormal,5714,236,2,19,,,,DISCHARGED -5715,2022-07-30,16331.063193536294,263,Emergency,2022-08-01,Inconclusive,5715,45,0,28,,,,DISCHARGED -5716,2020-09-17,16503.62973886917,299,Emergency,2020-09-22,Inconclusive,5716,105,1,9,,,,DISCHARGED -5717,2022-07-08,20522.829017123157,489,Urgent,2022-07-09,Inconclusive,5717,415,1,0,,,,DISCHARGED -5718,2021-08-12,14164.096932117964,462,Emergency,2021-08-30,Abnormal,5718,287,3,1,,,,DISCHARGED -5719,2023-09-17,5370.047013167488,174,Urgent,,Inconclusive,5719,261,0,16,,,,OPEN -5720,2019-01-06,28846.91754780325,342,Elective,2019-02-01,Inconclusive,5720,175,3,21,,,,DISCHARGED -5721,2020-09-26,47367.3561497254,485,Elective,2020-10-08,Abnormal,5721,165,2,28,,,,DISCHARGED -5723,2021-05-13,48557.01602548985,447,Elective,2021-05-21,Abnormal,5723,144,1,2,,,,DISCHARGED -5724,2021-10-24,19061.18429876577,491,Urgent,2021-11-13,Inconclusive,5724,329,4,16,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -5725,2019-07-28,22114.08045284868,370,Urgent,2019-08-13,Normal,5725,369,4,11,,,,DISCHARGED -5726,2019-03-09,24600.56607334664,151,Elective,2019-04-02,Abnormal,5726,282,0,23,,,,DISCHARGED -5727,2022-05-04,39101.73884494055,219,Elective,2022-06-01,Inconclusive,5727,53,0,29,,,,DISCHARGED -5728,2019-10-07,11481.075740603388,216,Urgent,2019-11-02,Inconclusive,5728,177,4,11,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5729,2019-01-13,33421.42863810723,463,Elective,2019-02-12,Normal,5729,418,0,29,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5730,2020-05-21,32683.2699086164,331,Elective,2020-06-20,Normal,5730,243,1,19,,,,DISCHARGED -5731,2023-03-27,42156.565468306886,375,Emergency,,Abnormal,5731,340,2,9,,,,OPEN -5731,2019-12-24,15914.248316226916,298,Emergency,2020-01-05,Normal,9021,126,2,6,,,,DISCHARGED -5731,2019-04-04,4639.5292352227225,127,Elective,2019-04-26,Abnormal,9370,408,3,9,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5731,2019-02-01,35425.886041243466,133,Emergency,2019-02-24,Normal,9895,411,1,17,,,,DISCHARGED -5732,2020-03-13,27194.710328396024,170,Emergency,2020-04-03,Inconclusive,5732,366,0,21,,,,DISCHARGED -5733,2023-01-03,23157.190000952392,134,Elective,2023-01-22,Abnormal,5733,270,0,5,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5734,2019-01-23,37299.71682528774,255,Emergency,2019-01-26,Inconclusive,5734,131,3,6,,,,DISCHARGED -5735,2022-03-26,15571.276439596191,146,Elective,2022-04-05,Normal,5735,92,3,27,,,,DISCHARGED -5736,2020-11-27,43616.74802278546,330,Emergency,2020-12-18,Inconclusive,5736,378,0,16,,,,DISCHARGED -5737,2022-12-16,49867.725384729696,431,Elective,2023-01-10,Inconclusive,5737,72,0,29,,,,DISCHARGED -5738,2019-06-04,25729.725925231505,339,Emergency,2019-06-30,Abnormal,5738,410,1,11,,,,DISCHARGED -5738,2021-05-15,16743.45490083031,221,Urgent,2021-05-29,Abnormal,7106,409,3,16,,,,DISCHARGED -5739,2022-09-17,20584.482012440338,475,Urgent,2022-10-08,Abnormal,5739,402,1,17,,,,DISCHARGED -5740,2022-06-09,48478.61993394317,433,Urgent,2022-06-14,Inconclusive,5740,247,0,13,,,,DISCHARGED -5741,2023-08-20,14300.264899069169,357,Emergency,2023-09-01,Inconclusive,5741,347,4,10,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -5742,2023-10-30,12727.74271497461,232,Emergency,2023-10-31,Abnormal,5742,272,4,1,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5743,2020-09-12,34819.71541971613,441,Emergency,2020-09-18,Inconclusive,5743,42,0,20,,,,DISCHARGED -5744,2023-08-21,17102.994488013057,245,Elective,,Inconclusive,5744,376,3,0,,,,OPEN -5745,2019-01-21,26675.96281068601,376,Emergency,2019-02-11,Normal,5745,40,4,10,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5746,2022-03-20,17266.817313593703,150,Urgent,2022-04-19,Normal,5746,169,3,1,,,,DISCHARGED -5747,2021-03-23,7852.092398446937,390,Elective,2021-03-26,Normal,5747,433,4,15,,,,DISCHARGED -5748,2018-12-21,22030.02937109001,208,Elective,2019-01-10,Normal,5748,211,3,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5749,2023-09-06,31149.52596576533,352,Urgent,,Abnormal,5749,492,4,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,OPEN -5750,2020-02-25,28148.24210457216,143,Emergency,2020-03-13,Normal,5750,167,3,19,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -5751,2022-12-25,41879.28204647698,366,Urgent,2022-12-31,Abnormal,5751,38,1,0,,,,DISCHARGED -5752,2019-06-03,18338.40500413429,212,Urgent,2019-06-22,Normal,5752,368,3,20,,,,DISCHARGED -5753,2021-08-22,35009.883490712666,409,Elective,2021-09-08,Inconclusive,5753,244,1,19,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5754,2023-10-12,16597.119745348034,253,Emergency,2023-10-31,Abnormal,5754,150,1,7,,,,DISCHARGED -5755,2023-04-21,49184.02876672157,466,Urgent,2023-05-10,Abnormal,5755,110,0,18,,,,DISCHARGED -5756,2022-07-08,37180.4313427351,339,Emergency,2022-07-09,Inconclusive,5756,479,1,25,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5757,2019-03-15,7087.373851232525,467,Emergency,2019-04-08,Normal,5757,435,2,0,,,,DISCHARGED -5758,2022-06-28,15995.36089902244,434,Emergency,2022-07-16,Inconclusive,5758,46,1,29,,,,DISCHARGED -5759,2020-11-09,40950.12132059218,118,Elective,2020-11-15,Inconclusive,5759,62,3,28,,,,DISCHARGED -5760,2020-09-02,41684.39817453037,241,Urgent,2020-09-12,Inconclusive,5760,224,1,25,,,,DISCHARGED -5761,2020-01-21,10899.542055880904,412,Elective,2020-01-29,Inconclusive,5761,365,3,4,,,,DISCHARGED -5762,2023-06-02,17289.84023678791,187,Urgent,,Normal,5762,68,3,29,,,,OPEN -5763,2019-04-14,33675.89134708535,422,Emergency,2019-05-05,Inconclusive,5763,298,2,0,,,,DISCHARGED -5764,2020-11-14,45548.51267032782,386,Emergency,2020-11-30,Inconclusive,5764,431,1,10,,,,DISCHARGED -5765,2023-08-26,39463.93182443523,186,Elective,2023-09-17,Normal,5765,289,1,20,,,,DISCHARGED -5766,2022-09-18,11269.907149120894,110,Elective,2022-09-24,Abnormal,5766,295,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5768,2023-02-09,43248.94433700831,108,Elective,,Normal,5768,202,4,4,,,,OPEN -5769,2019-10-31,18496.24237792658,194,Emergency,2019-11-28,Inconclusive,5769,60,0,1,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5770,2021-08-25,18541.16726544233,108,Elective,2021-08-27,Inconclusive,5770,433,3,12,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5772,2019-01-07,1669.043673886163,341,Elective,2019-02-04,Normal,5772,450,2,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -5773,2022-07-24,28661.7431811927,484,Elective,2022-08-06,Normal,5773,317,4,25,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5774,2022-12-18,26959.180753281984,376,Urgent,2022-12-25,Inconclusive,5774,313,1,24,,,,DISCHARGED -5775,2023-03-24,43552.75800014094,430,Urgent,2023-04-07,Normal,5775,160,0,11,,,,DISCHARGED -5776,2019-12-29,32019.79811285136,185,Elective,2020-01-10,Normal,5776,330,2,13,,,,DISCHARGED -5777,2022-01-03,48948.33346927594,403,Urgent,2022-01-14,Inconclusive,5777,15,1,4,,,,DISCHARGED -5778,2019-11-07,21988.6038189477,276,Emergency,2019-11-22,Normal,5778,337,1,26,,,,DISCHARGED -5779,2022-02-08,43160.54187875836,351,Urgent,2022-02-22,Normal,5779,93,3,23,,,,DISCHARGED -5780,2019-06-02,23048.547981640208,123,Urgent,2019-06-25,Normal,5780,303,3,9,,,,DISCHARGED -5781,2022-01-25,13801.225579838456,245,Emergency,2022-02-11,Normal,5781,137,4,19,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -5781,2019-03-01,1836.1561521746696,423,Urgent,2019-03-19,Normal,5960,337,4,1,,,,DISCHARGED -5782,2020-04-17,16258.18443999315,137,Emergency,2020-04-28,Inconclusive,5782,37,1,3,,,,DISCHARGED -5784,2023-09-15,4333.481416092538,286,Emergency,2023-09-19,Abnormal,5784,126,1,11,,,,DISCHARGED -5785,2023-01-14,10906.847568652323,433,Elective,2023-01-26,Normal,5785,274,4,10,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5786,2022-06-10,30886.826337844217,357,Elective,2022-07-02,Abnormal,5786,163,4,3,,,,DISCHARGED -5787,2021-03-17,44016.25337996813,368,Elective,2021-04-16,Normal,5787,442,1,10,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -5788,2018-12-22,47262.23550757792,188,Emergency,2019-01-02,Normal,5788,318,2,8,,,,DISCHARGED -5789,2020-04-08,19820.57848891653,393,Elective,2020-04-23,Abnormal,5789,76,1,9,,,,DISCHARGED -5790,2021-04-25,42914.2329374088,215,Urgent,2021-05-10,Abnormal,5790,173,2,26,,,,DISCHARGED -5791,2023-02-14,28901.18562768552,209,Emergency,2023-03-04,Abnormal,5791,386,2,5,,,,DISCHARGED -5792,2022-10-13,8845.568430814148,277,Urgent,2022-10-29,Abnormal,5792,457,1,14,,,,DISCHARGED -5793,2019-07-29,21599.183580621844,337,Emergency,2019-08-25,Inconclusive,5793,357,0,9,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -5794,2022-09-28,19912.007190439665,410,Elective,2022-10-26,Normal,5794,320,4,21,,,,DISCHARGED -5795,2020-12-01,45172.92417242992,357,Elective,2020-12-14,Abnormal,5795,375,3,20,,,,DISCHARGED -5796,2022-10-03,46194.69075171524,342,Urgent,2022-10-20,Abnormal,5796,90,1,5,,,,DISCHARGED -5797,2021-10-13,44560.56556772887,236,Urgent,2021-10-19,Abnormal,5797,237,2,0,,,,DISCHARGED -5798,2020-03-20,22729.197925047607,111,Emergency,2020-03-21,Inconclusive,5798,263,1,28,,,,DISCHARGED -5799,2023-02-13,29150.76872397366,199,Emergency,,Inconclusive,5799,178,4,20,,,,OPEN -5800,2020-01-20,17479.52945715791,109,Urgent,2020-02-02,Normal,5800,493,2,27,,,,DISCHARGED -5801,2021-08-18,20701.614613882208,124,Elective,2021-09-03,Normal,5801,489,3,21,,,,DISCHARGED -5802,2022-02-09,47339.85597283217,399,Emergency,2022-03-05,Inconclusive,5802,208,3,23,,,,DISCHARGED -5803,2019-08-07,45345.552231960144,175,Urgent,2019-08-25,Inconclusive,5803,72,3,19,,,,DISCHARGED -5804,2022-02-25,23026.72608087841,423,Emergency,2022-03-12,Normal,5804,389,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5805,2023-04-05,32135.579670758147,294,Urgent,,Normal,5805,106,2,20,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",OPEN -5806,2023-08-29,45500.46917087554,274,Urgent,,Normal,5806,344,2,3,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,OPEN -5807,2023-10-14,21874.444050306425,401,Emergency,,Inconclusive,5807,294,0,22,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",OPEN -5808,2022-04-13,49461.82935192647,133,Elective,2022-04-17,Inconclusive,5808,368,2,25,,,,DISCHARGED -5809,2019-05-08,14622.61692455964,213,Urgent,2019-05-15,Abnormal,5809,443,0,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -5810,2021-01-16,41563.12844469934,396,Emergency,2021-01-29,Normal,5810,283,1,13,,,,DISCHARGED -5811,2022-12-23,6112.92786961727,452,Emergency,2023-01-17,Inconclusive,5811,352,4,19,,,,DISCHARGED -5812,2019-08-14,30093.07734515799,408,Emergency,2019-08-27,Inconclusive,5812,181,3,21,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5813,2019-12-30,17640.524951930267,182,Emergency,2020-01-10,Normal,5813,36,0,28,,,,DISCHARGED -5813,2019-12-23,24046.4840152496,221,Elective,2020-01-20,Abnormal,9546,136,0,19,,,,DISCHARGED -5813,2022-03-22,39389.91754865901,466,Elective,2022-03-25,Inconclusive,9606,337,0,27,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -5814,2022-03-05,20567.98716184872,354,Elective,2022-03-26,Inconclusive,5814,55,1,7,,,,DISCHARGED -5815,2023-01-01,11276.382204336329,404,Elective,2023-01-08,Abnormal,5815,186,0,10,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5817,2022-10-12,23693.54529595784,136,Urgent,2022-10-24,Normal,5817,340,4,14,,,,DISCHARGED -5818,2023-10-14,14988.35038672491,246,Urgent,,Normal,5818,257,4,18,,,,OPEN -5819,2022-01-05,24565.706568687936,343,Elective,2022-02-04,Inconclusive,5819,444,3,7,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5820,2021-07-16,23997.705239597235,197,Elective,2021-08-06,Normal,5820,57,1,12,,,,DISCHARGED -5821,2023-05-28,42406.43853907525,256,Urgent,2023-05-30,Inconclusive,5821,362,4,17,,,,DISCHARGED -5822,2023-07-29,10670.187689967408,241,Emergency,2023-08-17,Abnormal,5822,122,2,21,,,,DISCHARGED -5823,2021-10-13,35101.878563323065,362,Urgent,2021-10-24,Inconclusive,5823,187,2,23,,,,DISCHARGED -5824,2023-07-20,45576.31435997374,174,Elective,2023-07-29,Inconclusive,5824,229,2,16,,,,DISCHARGED -5825,2023-01-28,19029.32154932333,348,Emergency,2023-02-07,Normal,5825,167,0,5,,,,DISCHARGED -5826,2022-07-21,36199.433172516416,201,Elective,2022-08-12,Normal,5826,419,0,24,,,,DISCHARGED -5827,2021-04-20,11921.672978391598,472,Emergency,2021-04-29,Abnormal,5827,113,2,14,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5828,2020-08-21,45547.95078050395,369,Elective,2020-08-31,Abnormal,5828,251,3,12,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -5829,2023-04-30,13478.190700482011,407,Urgent,,Abnormal,5829,106,3,25,,,,OPEN -5830,2021-12-27,24698.614404109256,410,Emergency,2022-01-22,Abnormal,5830,36,0,25,,,,DISCHARGED -5831,2018-11-28,43224.333545599846,437,Urgent,2018-12-26,Normal,5831,334,2,17,,,,DISCHARGED -5832,2022-07-22,46937.14038463809,167,Elective,2022-08-07,Normal,5832,91,3,10,,,,DISCHARGED -5833,2022-06-26,38345.28775896247,239,Elective,2022-06-30,Inconclusive,5833,17,0,12,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5835,2019-02-14,41935.419689399416,127,Urgent,2019-02-15,Normal,5835,353,2,0,,,,DISCHARGED -5836,2020-03-30,22530.169639872976,277,Emergency,2020-03-31,Inconclusive,5836,62,1,17,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5838,2020-01-03,4280.940044330634,206,Elective,2020-01-05,Normal,5838,149,2,4,,,,DISCHARGED -5839,2019-02-16,3783.910700582603,204,Urgent,2019-03-12,Normal,5839,138,2,5,,,,DISCHARGED -5840,2019-06-30,25294.405537941053,372,Emergency,2019-07-09,Abnormal,5840,185,4,0,,,,DISCHARGED -5842,2023-06-17,6183.514532732913,154,Emergency,,Abnormal,5842,184,4,6,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5844,2020-12-22,40093.084438571605,439,Urgent,2020-12-30,Abnormal,5844,204,1,26,,,,DISCHARGED -5845,2021-10-31,37497.77577624628,137,Urgent,2021-11-01,Inconclusive,5845,259,1,3,,,,DISCHARGED -5846,2022-09-17,14907.71956604352,328,Urgent,2022-09-24,Abnormal,5846,213,2,8,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -5849,2023-08-05,14673.462505964046,338,Elective,2023-08-13,Normal,5849,255,3,14,,,,DISCHARGED -5850,2019-08-28,3943.8805216772025,429,Emergency,2019-09-21,Normal,5850,134,1,5,,,,DISCHARGED -5851,2021-02-07,12521.845758159638,324,Urgent,2021-03-05,Abnormal,5851,60,2,24,,,,DISCHARGED -5852,2022-07-19,36083.19334909812,183,Emergency,2022-07-27,Abnormal,5852,362,0,16,,,,DISCHARGED -5853,2020-11-09,47055.45338132002,267,Urgent,2020-11-11,Normal,5853,309,4,19,,,,DISCHARGED -5854,2019-04-12,46377.806199025865,128,Elective,2019-04-28,Inconclusive,5854,87,3,17,,,,DISCHARGED -5855,2023-02-28,10562.514249173571,374,Urgent,2023-03-09,Normal,5855,323,2,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5856,2020-11-08,27586.898410261107,282,Emergency,2020-11-18,Normal,5856,475,0,3,,,,DISCHARGED -5857,2019-04-18,25312.26601218233,319,Elective,2019-05-17,Abnormal,5857,206,4,8,,,,DISCHARGED -5858,2022-12-08,11701.21626092594,192,Urgent,2023-01-03,Abnormal,5858,128,0,13,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -5859,2020-01-16,24169.977115139394,268,Elective,2020-02-05,Normal,5859,310,2,2,,,,DISCHARGED -5860,2022-10-13,5524.870740298888,174,Urgent,2022-11-01,Inconclusive,5860,2,1,0,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -5861,2022-08-01,4596.182829135514,374,Emergency,2022-08-09,Normal,5861,461,4,26,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -5863,2020-08-07,19663.114019123248,352,Elective,2020-08-22,Normal,5863,421,0,28,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -5865,2020-05-30,9318.907695455531,337,Emergency,2020-06-29,Normal,5865,241,1,10,,,,DISCHARGED -5866,2020-11-24,2641.4682385551496,351,Elective,2020-12-03,Normal,5866,120,3,0,,,,DISCHARGED -5867,2020-07-25,42287.61877335708,354,Emergency,2020-08-15,Abnormal,5867,384,2,11,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5868,2022-11-27,4496.148198774687,263,Urgent,2022-12-18,Normal,5868,101,2,24,,,,DISCHARGED -5869,2023-08-15,20852.540602137957,177,Urgent,2023-09-03,Normal,5869,37,4,8,,,,DISCHARGED -5869,2021-11-11,49476.7762061845,125,Urgent,2021-12-09,Abnormal,7544,340,0,4,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5870,2021-07-24,44651.93803562648,288,Elective,2021-08-13,Abnormal,5870,495,3,14,,,,DISCHARGED -5871,2020-07-21,26437.35836345445,136,Emergency,2020-08-08,Abnormal,5871,412,4,17,,,,DISCHARGED -5872,2020-12-24,18509.19644282935,222,Elective,2021-01-19,Abnormal,5872,132,4,8,,,,DISCHARGED -5873,2020-04-29,17594.434358445425,217,Urgent,2020-05-13,Inconclusive,5873,496,0,12,,,,DISCHARGED -5874,2019-04-07,15083.367820053334,491,Elective,2019-04-25,Inconclusive,5874,201,3,27,,,,DISCHARGED -5875,2021-04-10,26555.03714641204,192,Urgent,2021-04-15,Inconclusive,5875,347,0,12,,,,DISCHARGED -5876,2022-07-20,41357.24721302806,317,Emergency,2022-07-24,Abnormal,5876,20,2,23,,,,DISCHARGED -5877,2022-11-27,48381.62277487587,261,Elective,2022-12-25,Abnormal,5877,241,1,12,,,,DISCHARGED -5878,2023-10-26,39030.95085035015,349,Emergency,2023-11-04,Abnormal,5878,454,2,26,,,,DISCHARGED -5879,2019-12-02,26175.500439449104,425,Urgent,2019-12-12,Normal,5879,450,2,9,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -5880,2019-07-15,45227.78675798777,461,Emergency,2019-07-24,Abnormal,5880,108,4,9,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5881,2019-05-24,14423.58591974906,444,Elective,2019-06-18,Inconclusive,5881,302,2,21,,,,DISCHARGED -5882,2021-08-22,14930.015371629688,285,Emergency,2021-09-10,Abnormal,5882,83,3,6,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5884,2020-04-02,27047.85334383124,478,Urgent,2020-04-27,Inconclusive,5884,82,2,27,,,,DISCHARGED -5884,2019-06-30,30541.94990992974,138,Elective,2019-07-19,Inconclusive,7357,290,3,21,,,,DISCHARGED -5885,2023-03-02,24745.31389445365,495,Elective,,Normal,5885,451,0,4,,,,OPEN -5886,2020-07-06,13697.626454384575,113,Urgent,2020-08-01,Inconclusive,5886,68,4,19,,,,DISCHARGED -5887,2020-01-19,12601.533998081111,253,Emergency,2020-01-26,Abnormal,5887,128,3,6,,,,DISCHARGED -5887,2019-10-04,43030.53040830031,315,Urgent,2019-10-26,Inconclusive,6791,195,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5888,2019-08-01,18604.774225196896,371,Elective,2019-08-16,Inconclusive,5888,139,4,9,,,,DISCHARGED -5889,2020-06-17,42567.65533963311,293,Elective,2020-06-26,Inconclusive,5889,443,4,9,,,,DISCHARGED -5890,2023-05-29,38698.63254075844,143,Urgent,,Abnormal,5890,282,3,25,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -5891,2019-05-29,20091.351550050844,307,Urgent,2019-06-18,Inconclusive,5891,311,3,24,,,,DISCHARGED -5892,2021-10-28,40760.73241559383,307,Urgent,2021-11-12,Normal,5892,233,1,20,,,,DISCHARGED -5893,2021-08-02,24227.710939507822,394,Urgent,2021-08-19,Abnormal,5893,22,1,23,,,,DISCHARGED -5894,2020-11-02,5184.26988275542,414,Emergency,2020-11-20,Inconclusive,5894,152,4,27,,,,DISCHARGED -5895,2020-11-13,26915.193720158022,264,Urgent,2020-11-22,Normal,5895,276,1,12,,,,DISCHARGED -5896,2021-02-12,25215.012082755613,287,Urgent,2021-02-19,Abnormal,5896,60,2,14,,,,DISCHARGED -5897,2022-02-01,40903.985001991736,117,Emergency,2022-02-20,Abnormal,5897,318,0,27,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5898,2023-07-20,10116.998687717954,360,Emergency,,Abnormal,5898,377,4,27,,,,OPEN -5899,2020-07-10,16520.17027369717,391,Urgent,2020-07-17,Inconclusive,5899,51,0,5,,,,DISCHARGED -5900,2021-09-01,13536.916359878898,433,Emergency,2021-09-28,Inconclusive,5900,343,1,19,,,,DISCHARGED -5901,2020-08-14,23747.3833736443,424,Urgent,2020-08-17,Normal,5901,152,3,11,,,,DISCHARGED -5902,2020-11-27,22777.106392274614,477,Elective,2020-12-06,Normal,5902,236,4,18,,,,DISCHARGED -5903,2022-06-17,44082.366821003845,283,Elective,2022-07-07,Abnormal,5903,310,1,10,,,,DISCHARGED -5904,2021-12-19,12864.08301627652,325,Emergency,2021-12-30,Inconclusive,5904,301,2,5,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5905,2020-10-01,4746.56507262613,272,Emergency,2020-10-27,Inconclusive,5905,31,4,0,,,,DISCHARGED -5906,2021-08-07,37033.24584064084,312,Emergency,2021-08-28,Abnormal,5906,54,4,1,,,,DISCHARGED -5907,2020-02-19,48134.5593524709,304,Emergency,2020-03-20,Inconclusive,5907,351,3,22,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5908,2021-11-20,33099.51949697282,192,Elective,2021-12-20,Abnormal,5908,388,4,14,,,,DISCHARGED -5909,2023-08-30,30381.932790744137,195,Emergency,2023-09-11,Inconclusive,5909,35,3,3,,,,DISCHARGED -5910,2021-08-20,1599.6406981832902,389,Emergency,2021-08-24,Abnormal,5910,109,1,4,,,,DISCHARGED -5912,2019-11-23,24120.36757728615,196,Urgent,2019-12-01,Inconclusive,5912,489,2,14,,,,DISCHARGED -5913,2021-03-07,31298.845062980872,470,Elective,2021-04-06,Abnormal,5913,176,2,10,,,,DISCHARGED -5914,2023-05-01,3046.2018080691214,445,Emergency,2023-05-11,Abnormal,5914,361,4,9,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5915,2019-07-29,29813.539843456914,398,Elective,2019-08-13,Inconclusive,5915,313,4,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5916,2023-06-08,1616.9848923851412,424,Elective,,Abnormal,5916,294,1,1,,,,OPEN -5917,2021-12-06,25466.29126774474,387,Urgent,2021-12-15,Inconclusive,5917,335,3,19,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5918,2023-03-09,8911.507385719433,297,Elective,2023-03-28,Inconclusive,5918,96,2,23,,,,DISCHARGED -5919,2022-10-29,17659.82367043863,224,Emergency,2022-11-13,Inconclusive,5919,368,3,9,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -5920,2021-03-02,14332.36930516454,477,Emergency,2021-03-09,Abnormal,5920,212,1,19,,,,DISCHARGED -5921,2020-02-28,2789.1665426747923,269,Elective,2020-03-23,Abnormal,5921,316,2,29,,,,DISCHARGED -5922,2020-07-09,34704.978609524376,298,Urgent,2020-08-04,Abnormal,5922,136,2,2,,,,DISCHARGED -5923,2020-04-15,21558.994471884736,224,Urgent,2020-04-23,Inconclusive,5923,5,0,18,,,,DISCHARGED -5924,2023-08-26,26353.909437573453,446,Urgent,2023-09-21,Abnormal,5924,498,1,27,,,,DISCHARGED -5925,2020-11-16,9323.997217684306,118,Urgent,2020-12-10,Abnormal,5925,108,1,4,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5926,2019-12-14,37726.861035896494,185,Urgent,2020-01-10,Abnormal,5926,34,0,2,,,,DISCHARGED -5927,2019-10-18,34550.637098272855,368,Emergency,2019-10-20,Inconclusive,5927,38,3,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -5927,2021-12-29,16725.837700073927,447,Urgent,2022-01-20,Inconclusive,7802,149,0,4,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -5928,2022-05-11,6883.393394351776,333,Urgent,2022-05-17,Normal,5928,424,1,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -5929,2022-07-14,29159.34683613849,236,Emergency,2022-08-12,Normal,5929,117,3,29,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5930,2019-12-12,38022.55063014108,151,Emergency,2019-12-25,Normal,5930,260,2,11,,,,DISCHARGED -5931,2022-03-05,5045.807324305403,448,Urgent,2022-03-30,Inconclusive,5931,425,0,13,,,,DISCHARGED -5932,2020-01-13,5348.600174186669,125,Urgent,2020-01-29,Normal,5932,86,3,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5932,2020-12-24,36755.73641227056,343,Emergency,2021-01-22,Inconclusive,8829,464,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -5933,2021-04-02,18630.635202957503,384,Emergency,2021-04-24,Inconclusive,5933,75,3,7,,,,DISCHARGED -5933,2019-12-04,49409.7805414722,163,Emergency,2019-12-16,Inconclusive,9536,470,0,4,,,,DISCHARGED -5933,2023-04-21,49650.67288247996,150,Elective,2023-04-28,Normal,9891,463,2,7,,,,DISCHARGED -5934,2019-10-29,33835.720618442225,391,Urgent,2019-11-27,Inconclusive,5934,450,3,11,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5935,2022-05-08,16364.573734359798,158,Emergency,2022-05-20,Inconclusive,5935,413,0,14,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5936,2021-12-26,30085.556286655632,290,Urgent,2022-01-22,Inconclusive,5936,312,1,18,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -5937,2019-11-13,25762.858429483906,452,Emergency,2019-12-08,Inconclusive,5937,382,0,15,,,,DISCHARGED -5938,2022-02-08,28856.907094593997,436,Urgent,2022-02-17,Inconclusive,5938,213,0,13,,,,DISCHARGED -5939,2023-05-24,15372.317018843729,122,Elective,2023-05-26,Normal,5939,456,0,27,,,,DISCHARGED -5940,2020-07-09,39055.73775733056,394,Urgent,2020-07-23,Inconclusive,5940,284,3,6,,,,DISCHARGED -5941,2022-08-18,38069.75859176764,468,Emergency,2022-09-03,Inconclusive,5941,238,0,7,,,,DISCHARGED -5942,2023-03-11,45066.43568848367,449,Emergency,2023-03-28,Normal,5942,164,1,6,,,,DISCHARGED -5943,2021-12-22,35020.15685212769,435,Urgent,2022-01-16,Normal,5943,86,3,29,,,,DISCHARGED -5944,2019-07-02,32334.684722851747,136,Elective,2019-07-07,Normal,5944,140,1,17,,,,DISCHARGED -5945,2020-11-30,1042.981212355571,102,Urgent,2020-12-26,Inconclusive,5945,159,4,23,,,,DISCHARGED -5946,2022-02-13,27593.328512873995,204,Urgent,2022-02-23,Abnormal,5946,45,0,5,,,,DISCHARGED -5947,2019-12-07,19293.973354512163,127,Elective,2019-12-20,Abnormal,5947,371,3,25,,,,DISCHARGED -5948,2019-06-16,16901.43929972915,357,Elective,2019-07-06,Inconclusive,5948,494,3,18,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5949,2020-02-25,45417.712717121576,472,Elective,2020-03-09,Inconclusive,5949,111,0,3,,,,DISCHARGED -5950,2019-11-26,6381.992359118826,466,Urgent,2019-12-16,Abnormal,5950,406,2,22,,,,DISCHARGED -5951,2022-03-29,11004.423519309175,179,Emergency,2022-04-21,Inconclusive,5951,44,2,2,,,,DISCHARGED -5953,2019-10-18,8827.474941055696,378,Emergency,2019-11-10,Abnormal,5953,400,1,16,,,,DISCHARGED -5954,2023-03-16,8197.310249862994,471,Emergency,,Inconclusive,5954,246,0,21,,,,OPEN -5955,2020-09-06,34692.24222109207,173,Elective,2020-09-20,Inconclusive,5955,103,0,18,,,,DISCHARGED -5956,2018-11-11,26697.065206145307,390,Elective,2018-11-25,Abnormal,5956,84,4,26,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5957,2023-05-27,45591.89590686971,402,Emergency,2023-06-06,Inconclusive,5957,449,2,14,,,,DISCHARGED -5958,2022-01-03,38391.95584028942,268,Elective,2022-01-14,Normal,5958,484,2,25,,,,DISCHARGED -5959,2021-08-17,35814.73793055562,406,Elective,2021-09-06,Inconclusive,5959,133,0,5,,,,DISCHARGED -5962,2021-08-03,28971.754639264727,458,Elective,2021-08-17,Abnormal,5962,107,1,25,,,,DISCHARGED -5963,2019-02-28,35042.64468480079,149,Urgent,2019-03-11,Inconclusive,5963,17,0,11,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5964,2019-02-08,3286.8941288521664,139,Elective,2019-02-25,Normal,5964,93,1,18,,,,DISCHARGED -5965,2020-03-25,18853.52222401811,301,Emergency,2020-03-27,Inconclusive,5965,149,2,5,,,,DISCHARGED -5966,2019-10-22,32732.29254942737,146,Urgent,2019-11-13,Inconclusive,5966,245,4,10,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -5968,2023-05-25,22396.040457132563,105,Urgent,2023-06-11,Inconclusive,5968,288,3,19,,,,DISCHARGED -5969,2019-05-08,17280.236696628497,137,Urgent,2019-06-06,Abnormal,5969,413,2,28,,,,DISCHARGED -5970,2020-11-20,19730.65884625985,412,Emergency,2020-12-16,Abnormal,5970,208,1,19,,,,DISCHARGED -5971,2022-10-09,8368.835120707154,198,Emergency,2022-11-02,Inconclusive,5971,125,0,9,,,,DISCHARGED -5972,2023-07-10,8242.52621734721,448,Elective,2023-07-20,Abnormal,5972,234,2,25,,,,DISCHARGED -5974,2021-06-28,19631.170045271152,204,Elective,2021-07-15,Inconclusive,5974,415,4,15,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5975,2021-09-15,32089.786437380837,198,Elective,2021-09-16,Inconclusive,5975,425,1,26,,,,DISCHARGED -5976,2023-08-15,33534.24993420143,268,Elective,,Abnormal,5976,498,0,17,,,,OPEN -5977,2019-01-20,19420.951218525413,347,Elective,2019-02-15,Inconclusive,5977,461,3,13,,,,DISCHARGED -5978,2023-10-27,5483.5834146452735,395,Elective,2023-11-13,Normal,5978,121,1,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -5979,2019-09-08,1378.0009880748469,357,Emergency,2019-09-12,Normal,5979,137,0,26,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5980,2020-07-20,47834.50429510904,140,Elective,2020-08-19,Inconclusive,5980,494,3,11,,,,DISCHARGED -5981,2020-12-25,38503.31776706349,473,Urgent,2021-01-16,Normal,5981,114,0,19,,,,DISCHARGED -5982,2020-02-08,27728.566349198416,131,Urgent,2020-03-02,Abnormal,5982,419,3,26,,,,DISCHARGED -5983,2021-11-10,23559.849018799887,434,Emergency,2021-12-05,Abnormal,5983,161,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5984,2018-11-27,40804.66997411865,491,Emergency,2018-12-07,Abnormal,5984,200,3,20,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5985,2019-02-27,19203.629366162186,425,Urgent,2019-03-03,Normal,5985,233,0,7,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5986,2021-03-29,2717.8722357047604,473,Urgent,2021-04-13,Normal,5986,27,3,6,,,,DISCHARGED -5987,2023-08-09,17192.194092857884,478,Elective,,Abnormal,5987,10,1,25,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -5988,2023-10-04,14240.566572024592,259,Emergency,2023-10-10,Abnormal,5988,205,4,8,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5989,2022-05-24,16919.668953165707,377,Urgent,2022-06-11,Normal,5989,166,4,23,,,,DISCHARGED -5990,2019-10-26,31999.41875042375,196,Elective,2019-11-18,Abnormal,5990,246,3,24,,,,DISCHARGED -5991,2023-05-22,17251.998279581625,235,Emergency,2023-06-02,Normal,5991,46,4,16,,,,DISCHARGED -5991,2021-03-07,36914.84156071174,156,Emergency,2021-03-16,Inconclusive,9941,245,4,9,,,,DISCHARGED -5992,2021-01-08,3158.645462369566,152,Elective,2021-02-05,Inconclusive,5992,126,3,28,,,,DISCHARGED -5993,2019-08-08,23549.33909470684,219,Urgent,2019-08-31,Normal,5993,146,3,27,,,,DISCHARGED -5994,2021-10-11,2730.3191046085376,358,Urgent,2021-10-20,Normal,5994,117,1,2,,,,DISCHARGED -5995,2019-11-18,34860.843935419194,124,Emergency,2019-12-07,Abnormal,5995,398,2,20,,,,DISCHARGED -5996,2023-03-24,18220.601556604877,158,Urgent,2023-04-19,Abnormal,5996,381,0,24,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5997,2020-10-05,4750.89250702743,488,Urgent,2020-10-09,Inconclusive,5997,411,3,7,,,,DISCHARGED -5998,2020-11-30,15193.157340484317,434,Urgent,2020-12-29,Abnormal,5998,151,3,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5999,2019-06-09,42827.800252361805,402,Urgent,2019-06-27,Normal,5999,71,4,25,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -6000,2021-09-29,8970.000970695644,341,Urgent,2021-10-20,Inconclusive,6000,362,1,6,,,,DISCHARGED -6001,2022-08-09,9178.571798450394,256,Urgent,2022-08-15,Inconclusive,6001,136,4,15,,,,DISCHARGED -6002,2021-06-05,39902.55629115633,439,Urgent,2021-06-13,Inconclusive,6002,174,3,17,,,,DISCHARGED -6003,2019-03-04,12326.946459144618,122,Urgent,2019-03-07,Abnormal,6003,288,3,10,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -6005,2021-12-27,32335.889608311336,441,Emergency,2021-12-30,Abnormal,6005,445,4,5,,,,DISCHARGED -6006,2019-05-04,38983.39690377517,333,Elective,2019-05-22,Normal,6006,480,3,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6007,2023-03-15,4063.8833852474127,332,Emergency,2023-04-11,Abnormal,6007,18,2,20,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6008,2023-03-31,38975.40778060391,330,Emergency,2023-04-26,Normal,6008,194,0,13,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -6009,2023-08-23,4841.951551202654,297,Emergency,,Normal,6009,329,0,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -6010,2019-12-28,12909.297654361064,497,Urgent,2020-01-26,Normal,6010,423,0,12,,,,DISCHARGED -6011,2022-10-18,11518.852840732232,126,Elective,2022-10-31,Normal,6011,174,2,3,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6012,2021-10-20,45883.1796256381,405,Emergency,2021-11-01,Normal,6012,489,3,19,,,,DISCHARGED -6013,2020-06-19,16271.135835494846,298,Elective,2020-07-07,Abnormal,6013,448,4,19,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6014,2021-07-11,30466.692416681926,199,Elective,2021-07-28,Abnormal,6014,412,1,10,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -6015,2022-12-15,40309.36476932533,497,Elective,2022-12-26,Abnormal,6015,433,3,17,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -6016,2019-07-23,46805.42101295896,320,Emergency,2019-08-01,Inconclusive,6016,353,2,0,,,,DISCHARGED -6017,2022-02-20,3122.8045831751483,157,Elective,2022-03-03,Normal,6017,498,2,11,,,,DISCHARGED -6018,2023-01-30,32480.98615115175,397,Emergency,2023-02-10,Inconclusive,6018,140,0,17,,,,DISCHARGED -6019,2020-02-15,7713.898731274019,386,Emergency,2020-03-11,Abnormal,6019,245,3,6,,,,DISCHARGED -6021,2020-12-28,18415.405268949155,291,Elective,2021-01-07,Normal,6021,384,0,11,,,,DISCHARGED -6022,2019-04-14,22582.50171640081,368,Emergency,2019-04-17,Abnormal,6022,417,1,0,,,,DISCHARGED -6023,2019-10-13,26601.66365413308,371,Emergency,2019-11-02,Inconclusive,6023,92,0,21,,,,DISCHARGED -6024,2019-11-19,17143.945818964472,248,Emergency,2019-12-19,Normal,6024,431,1,3,,,,DISCHARGED -6025,2019-11-27,40637.7551932998,462,Elective,2019-12-01,Abnormal,6025,238,2,17,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -6026,2020-11-07,10875.096411080644,179,Urgent,2020-12-07,Abnormal,6026,204,0,14,,,,DISCHARGED -6028,2021-07-03,34014.79330689237,336,Emergency,2021-07-23,Abnormal,6028,47,0,2,,,,DISCHARGED -6029,2020-03-10,11916.903792412591,290,Urgent,2020-03-28,Inconclusive,6029,432,4,6,,,,DISCHARGED -6030,2023-01-05,30098.8873996369,273,Urgent,,Inconclusive,6030,244,2,5,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -6031,2019-11-03,11948.577113346237,354,Elective,2019-11-25,Inconclusive,6031,319,4,14,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6032,2023-03-09,26311.893968034638,283,Emergency,2023-03-19,Inconclusive,6032,316,1,14,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6033,2021-07-12,39130.03021153598,129,Elective,2021-08-01,Inconclusive,6033,412,1,5,,,,DISCHARGED -6034,2021-03-30,37463.34843224498,257,Urgent,2021-04-19,Normal,6034,294,2,7,,,,DISCHARGED -6035,2020-09-01,26252.970872754715,418,Emergency,2020-09-13,Normal,6035,127,1,7,,,,DISCHARGED -6035,2023-05-12,40441.96846952715,398,Urgent,2023-06-10,Normal,8329,343,2,21,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6036,2022-12-27,30853.352675023158,473,Urgent,2023-01-14,Abnormal,6036,281,1,0,,,,DISCHARGED -6037,2021-08-04,5077.834231965651,467,Elective,2021-08-27,Normal,6037,16,3,25,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -6038,2021-08-14,16659.706480507328,229,Emergency,2021-08-31,Abnormal,6038,70,0,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6039,2021-01-01,41398.91611388431,174,Urgent,2021-01-08,Inconclusive,6039,268,3,22,,,,DISCHARGED -6040,2023-04-17,28575.28418993742,215,Urgent,2023-04-18,Inconclusive,6040,324,2,23,,,,DISCHARGED -6041,2020-01-23,6944.7937028222,270,Emergency,2020-01-30,Normal,6041,281,2,20,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -6042,2020-11-10,48719.067467088,107,Urgent,2020-11-21,Inconclusive,6042,304,3,12,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6043,2021-06-24,4743.406570779665,417,Elective,2021-07-19,Inconclusive,6043,450,0,10,,,,DISCHARGED -6044,2019-10-21,26260.260751180136,333,Emergency,2019-11-16,Inconclusive,6044,6,0,3,,,,DISCHARGED -6045,2018-12-20,35330.79661087953,115,Urgent,2019-01-12,Abnormal,6045,313,4,6,,,,DISCHARGED -6046,2023-06-04,45646.94909067201,284,Urgent,2023-07-01,Inconclusive,6046,304,1,27,,,,DISCHARGED -6047,2020-02-07,24195.672795413982,155,Urgent,2020-03-04,Abnormal,6047,102,4,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -6048,2019-04-20,2041.8407667831616,495,Elective,2019-05-04,Abnormal,6048,308,0,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6049,2020-07-06,18679.07314822452,304,Emergency,2020-08-01,Abnormal,6049,192,3,12,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -6050,2022-10-29,30157.72372364938,116,Emergency,2022-11-16,Inconclusive,6050,240,1,21,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6050,2019-01-28,13225.16638451972,388,Urgent,2019-01-31,Abnormal,9869,61,3,11,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6052,2023-09-21,14627.995930200696,456,Urgent,2023-10-14,Inconclusive,6052,16,4,15,,,,DISCHARGED -6054,2022-03-28,10507.017825167057,130,Elective,2022-04-05,Inconclusive,6054,170,2,5,,,,DISCHARGED -6055,2022-08-07,2463.14168145493,201,Emergency,2022-08-28,Inconclusive,6055,24,3,13,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -6056,2023-09-15,43185.80145305649,405,Urgent,2023-09-17,Abnormal,6056,250,4,18,,,,DISCHARGED -6057,2019-04-06,6164.281923358486,369,Urgent,2019-05-06,Abnormal,6057,252,4,15,,,,DISCHARGED -6058,2022-04-26,19755.828880095723,449,Emergency,2022-05-01,Inconclusive,6058,386,4,26,,,,DISCHARGED -6059,2023-04-26,11287.34822284043,193,Emergency,2023-05-03,Normal,6059,206,2,25,,,,DISCHARGED -6060,2023-07-16,41603.29720625691,128,Elective,2023-07-22,Abnormal,6060,28,2,3,,,,DISCHARGED -6061,2022-10-24,38771.33562715259,372,Emergency,2022-11-03,Normal,6061,116,2,4,,,,DISCHARGED -6062,2023-07-24,41639.38493575151,327,Emergency,,Normal,6062,490,1,8,,,,OPEN -6064,2021-08-20,23563.15377954031,460,Emergency,2021-08-22,Abnormal,6064,415,2,23,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6066,2020-05-07,40656.39305192237,443,Urgent,2020-06-04,Abnormal,6066,281,2,2,,,,DISCHARGED -6067,2023-02-08,2030.966735933411,332,Urgent,2023-02-27,Abnormal,6067,379,2,21,,,,DISCHARGED -6068,2022-04-24,26736.9586944542,311,Urgent,2022-05-01,Abnormal,6068,143,3,9,,,,DISCHARGED -6069,2021-10-12,22484.01475668203,192,Urgent,2021-10-14,Inconclusive,6069,24,2,16,,,,DISCHARGED -6070,2019-02-03,2924.4589772935738,136,Emergency,2019-03-03,Inconclusive,6070,309,1,18,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6071,2022-03-31,42022.98956330117,255,Elective,2022-04-24,Inconclusive,6071,155,4,9,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6072,2021-01-07,19167.498606804467,242,Emergency,2021-01-25,Inconclusive,6072,72,3,29,,,,DISCHARGED -6073,2020-01-03,5580.290521121448,294,Emergency,2020-01-16,Inconclusive,6073,119,0,11,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6074,2023-08-03,2233.535350550429,154,Elective,2023-08-05,Normal,6074,311,2,22,,,,DISCHARGED -6075,2022-07-15,8720.357123981528,113,Emergency,2022-07-26,Abnormal,6075,320,4,6,,,,DISCHARGED -6076,2021-07-19,33733.967410745856,118,Urgent,2021-08-06,Abnormal,6076,92,4,17,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6077,2019-04-10,1352.748184486318,292,Urgent,2019-04-29,Inconclusive,6077,85,3,18,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6078,2020-08-24,21068.61727695532,125,Urgent,2020-09-05,Inconclusive,6078,335,0,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6079,2020-03-10,24310.254854187137,253,Elective,2020-04-05,Normal,6079,424,1,6,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -6080,2023-09-28,48710.62955931463,252,Emergency,,Inconclusive,6080,498,4,11,,,,OPEN -6081,2023-06-06,44697.33903475581,394,Elective,2023-06-21,Inconclusive,6081,363,4,21,,,,DISCHARGED -6082,2021-09-08,23616.02657226192,362,Urgent,2021-10-05,Abnormal,6082,434,4,28,,,,DISCHARGED -6083,2020-12-05,49878.9353502313,372,Urgent,2020-12-16,Abnormal,6083,117,4,6,,,,DISCHARGED -6084,2023-08-23,13072.08448257353,457,Elective,,Abnormal,6084,232,3,9,,,,OPEN -6085,2022-03-30,20737.036019191804,257,Urgent,2022-04-01,Abnormal,6085,198,0,24,,,,DISCHARGED -6086,2023-05-19,23105.22652158953,175,Elective,,Normal,6086,205,4,23,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6088,2021-01-26,17924.86023202854,335,Urgent,2021-02-25,Abnormal,6088,412,1,21,,,,DISCHARGED -6089,2019-10-24,18986.331968908245,204,Elective,2019-11-12,Inconclusive,6089,338,1,27,,,,DISCHARGED -6090,2021-01-02,16088.741924449598,135,Emergency,2021-01-26,Normal,6090,146,2,29,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6091,2021-02-03,5328.157487747513,339,Emergency,2021-03-03,Normal,6091,449,4,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6092,2021-11-18,4700.233026777709,122,Emergency,2021-11-28,Abnormal,6092,424,4,29,,,,DISCHARGED -6092,2021-10-21,40988.0344817342,454,Emergency,2021-11-04,Abnormal,6229,428,4,28,,,,DISCHARGED -6094,2021-02-27,46048.32020973106,131,Emergency,2021-03-23,Inconclusive,6094,270,4,9,,,,DISCHARGED -6095,2023-10-15,32903.22340985037,218,Elective,,Normal,6095,386,4,24,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",OPEN -6096,2019-04-04,33093.62417270338,124,Elective,2019-04-12,Inconclusive,6096,138,1,22,,,,DISCHARGED -6097,2020-10-19,19491.183352645603,170,Elective,2020-11-13,Abnormal,6097,180,0,4,,,,DISCHARGED -6098,2019-12-20,29138.81085988837,381,Emergency,2020-01-12,Inconclusive,6098,429,0,17,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -6099,2020-11-20,30090.863834624757,300,Elective,2020-12-02,Abnormal,6099,29,2,8,,,,DISCHARGED -6100,2019-03-18,18959.98701506969,156,Elective,2019-04-10,Inconclusive,6100,56,1,29,,,,DISCHARGED -6101,2023-01-30,23990.622338011097,311,Urgent,2023-02-08,Inconclusive,6101,231,4,15,,,,DISCHARGED -6102,2020-05-11,43662.89790791856,392,Emergency,2020-05-14,Abnormal,6102,145,0,6,,,,DISCHARGED -6103,2023-03-27,46090.69068944869,209,Urgent,2023-04-08,Normal,6103,434,3,24,,,,DISCHARGED -6104,2019-06-08,25403.45810365432,355,Urgent,2019-06-22,Abnormal,6104,383,3,26,,,,DISCHARGED -6105,2022-05-18,31581.714460647403,272,Emergency,2022-05-29,Abnormal,6105,47,3,24,,,,DISCHARGED -6106,2020-03-01,7419.347580921149,363,Elective,2020-03-03,Abnormal,6106,193,4,9,,,,DISCHARGED -6107,2019-09-02,4614.902595872119,361,Elective,2019-09-19,Normal,6107,223,4,4,,,,DISCHARGED -6109,2019-02-12,33777.330221004624,134,Urgent,2019-02-18,Inconclusive,6109,135,2,6,,,,DISCHARGED -6110,2019-09-29,42185.132971129264,137,Urgent,2019-10-24,Abnormal,6110,21,2,4,,,,DISCHARGED -6111,2020-08-18,13242.13439218701,372,Urgent,2020-09-15,Inconclusive,6111,5,2,14,,,,DISCHARGED -6113,2020-04-18,6738.384979570603,228,Elective,2020-05-18,Normal,6113,203,3,18,,,,DISCHARGED -6114,2020-08-23,48041.631844691816,461,Emergency,2020-09-16,Normal,6114,238,4,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6115,2022-09-05,15597.066771348253,364,Emergency,2022-10-01,Abnormal,6115,184,3,7,,,,DISCHARGED -6116,2022-09-30,47408.38777573841,329,Emergency,2022-10-23,Inconclusive,6116,359,2,23,,,,DISCHARGED -6117,2021-01-03,38794.58253617705,171,Elective,2021-01-28,Inconclusive,6117,291,4,8,,,,DISCHARGED -6119,2021-11-22,25348.705935905477,387,Emergency,2021-11-28,Normal,6119,334,1,10,,,,DISCHARGED -6120,2022-12-25,30636.084006927314,172,Elective,2023-01-20,Abnormal,6120,219,0,29,,,,DISCHARGED -6121,2021-08-03,22734.996414702007,445,Elective,2021-08-28,Normal,6121,115,0,27,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6122,2019-04-22,12400.895813112746,305,Urgent,2019-05-03,Normal,6122,312,2,21,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -6123,2020-05-30,21607.412165770384,428,Elective,2020-06-09,Normal,6123,48,3,1,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -6124,2019-12-11,41365.11781177608,484,Emergency,2019-12-31,Abnormal,6124,172,1,2,,,,DISCHARGED -6125,2021-06-24,20237.99408860453,262,Emergency,2021-07-01,Abnormal,6125,81,4,12,,,,DISCHARGED -6126,2023-05-16,16612.66607880724,353,Urgent,2023-06-03,Inconclusive,6126,321,3,10,,,,DISCHARGED -6127,2020-09-23,24098.63452986885,370,Urgent,2020-09-24,Inconclusive,6127,332,2,27,,,,DISCHARGED -6128,2023-09-13,29522.72367952392,127,Elective,,Inconclusive,6128,44,3,9,,,,OPEN -6129,2023-01-09,26396.06833246261,239,Urgent,2023-01-16,Normal,6129,334,2,26,,,,DISCHARGED -6130,2020-12-05,49344.59478878936,497,Elective,2021-01-04,Normal,6130,19,0,14,,,,DISCHARGED -6131,2023-07-27,18467.279290178358,285,Elective,2023-08-13,Inconclusive,6131,447,0,5,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6132,2019-04-07,27120.45220405838,364,Urgent,2019-05-02,Normal,6132,220,3,0,,,,DISCHARGED -6134,2019-11-28,37522.17784066239,443,Emergency,2019-12-15,Abnormal,6134,122,1,13,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -6135,2019-09-13,14360.82204091002,460,Urgent,2019-10-09,Normal,6135,233,4,17,,,,DISCHARGED -6136,2022-12-19,9726.594527822092,389,Elective,2023-01-14,Normal,6136,220,2,23,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6137,2021-01-21,9747.804400753566,286,Emergency,2021-02-01,Abnormal,6137,322,4,10,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -6138,2020-06-29,27700.638424488272,338,Elective,2020-07-23,Inconclusive,6138,338,0,7,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6139,2022-10-23,41069.41904162929,492,Urgent,2022-10-24,Abnormal,6139,2,1,21,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -6140,2021-07-13,12683.164387118475,474,Elective,2021-07-18,Abnormal,6140,181,1,2,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6141,2021-11-08,29309.57990292996,241,Emergency,2021-11-20,Abnormal,6141,205,4,13,,,,DISCHARGED -6141,2021-12-28,46535.200937036905,179,Emergency,2022-01-21,Normal,8167,319,0,1,,,,DISCHARGED -6142,2023-02-07,46224.79873010241,428,Elective,2023-02-19,Abnormal,6142,39,4,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6143,2019-02-04,43005.31830628686,489,Urgent,2019-03-04,Abnormal,6143,58,3,15,,,,DISCHARGED -6144,2019-12-10,45432.314592298375,154,Emergency,2019-12-31,Normal,6144,438,1,5,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6145,2020-04-16,9206.554307583525,398,Elective,2020-05-14,Normal,6145,61,1,0,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6146,2021-03-09,1475.7982615717308,370,Urgent,2021-03-19,Normal,6146,131,3,13,,,,DISCHARGED -6147,2021-09-05,32580.594671794504,346,Elective,2021-09-20,Abnormal,6147,59,0,9,,,,DISCHARGED -6148,2023-01-19,3230.9943158924525,312,Emergency,2023-01-22,Abnormal,6148,371,1,5,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6149,2022-02-21,38489.52841896299,345,Emergency,2022-03-12,Normal,6149,330,2,8,,,,DISCHARGED -6150,2022-11-28,47409.08953668171,302,Elective,2022-12-14,Normal,6150,121,2,6,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6151,2019-02-08,40827.013852454285,105,Urgent,2019-03-04,Normal,6151,478,0,24,,,,DISCHARGED -6152,2020-05-30,48451.38635989904,321,Elective,2020-06-26,Normal,6152,106,3,1,,,,DISCHARGED -6153,2018-12-12,42280.6133158642,381,Urgent,2019-01-07,Inconclusive,6153,95,4,10,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -6154,2020-10-20,10226.80854218207,299,Emergency,2020-10-26,Normal,6154,346,0,13,,,,DISCHARGED -6155,2020-05-07,22673.15885681665,171,Emergency,2020-05-26,Abnormal,6155,413,4,4,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -6156,2022-06-22,11482.053745428118,184,Elective,2022-07-07,Inconclusive,6156,234,0,8,,,,DISCHARGED -6157,2022-04-22,1991.9333147612751,433,Emergency,2022-05-08,Abnormal,6157,385,2,6,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -6158,2020-01-04,16936.338873847635,105,Emergency,2020-01-09,Inconclusive,6158,61,3,24,,,,DISCHARGED -6159,2023-09-24,16149.444371628577,360,Emergency,2023-10-03,Inconclusive,6159,255,2,13,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6160,2018-11-07,45140.73659282821,115,Elective,2018-11-17,Inconclusive,6160,48,3,26,,,,DISCHARGED -6162,2023-06-30,9900.17189749598,405,Elective,,Abnormal,6162,392,4,15,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6163,2020-10-20,47672.93154582539,124,Emergency,2020-11-17,Abnormal,6163,347,0,21,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6163,2022-10-02,37777.1552910288,496,Urgent,2022-10-31,Abnormal,8467,158,1,15,,,,DISCHARGED -6164,2022-09-12,6867.424515252065,323,Urgent,2022-10-10,Inconclusive,6164,123,1,6,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6165,2020-03-13,41498.11685589601,170,Urgent,2020-04-05,Abnormal,6165,481,3,9,,,,DISCHARGED -6166,2023-08-29,29470.6915412482,311,Emergency,2023-09-07,Inconclusive,6166,316,3,20,,,,DISCHARGED -6166,2021-06-04,31606.94697114073,263,Elective,2021-06-09,Normal,8793,206,2,5,,,,DISCHARGED -6167,2020-12-23,31959.387841430336,467,Urgent,2021-01-11,Abnormal,6167,47,1,16,,,,DISCHARGED -6168,2019-05-11,29217.23145986397,327,Urgent,2019-05-30,Inconclusive,6168,408,2,0,,,,DISCHARGED -6169,2019-01-28,20606.38435239024,195,Urgent,2019-02-06,Normal,6169,419,4,1,,,,DISCHARGED -6170,2022-09-23,41288.83756871875,437,Elective,2022-10-18,Normal,6170,135,1,26,,,,DISCHARGED -6171,2022-11-17,39817.60065185772,151,Urgent,2022-12-13,Abnormal,6171,200,4,13,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6172,2023-02-08,37345.41597518384,424,Elective,,Normal,6172,249,0,3,,,,OPEN -6173,2019-05-07,35929.09159349071,401,Emergency,2019-05-18,Inconclusive,6173,313,2,26,,,,DISCHARGED -6174,2020-12-20,4130.869339113963,340,Elective,2020-12-22,Normal,6174,356,3,8,,,,DISCHARGED -6175,2022-11-12,43926.65010139064,362,Elective,2022-12-04,Abnormal,6175,367,1,22,,,,DISCHARGED -6176,2020-05-18,32066.684256183773,201,Urgent,2020-06-14,Abnormal,6176,428,2,5,,,,DISCHARGED -6177,2020-05-15,38598.317047569966,407,Elective,2020-06-04,Normal,6177,317,3,16,,,,DISCHARGED -6178,2021-01-19,28572.96281598436,421,Urgent,2021-02-02,Normal,6178,294,0,20,,,,DISCHARGED -6179,2019-05-25,49865.84795118959,374,Emergency,2019-06-11,Abnormal,6179,479,1,10,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6181,2023-06-02,6816.642650056341,474,Elective,,Abnormal,6181,313,4,27,,,,OPEN -6182,2023-01-28,45961.12615610182,230,Elective,2023-02-05,Normal,6182,499,0,28,,,,DISCHARGED -6183,2018-12-03,4438.311336000047,388,Urgent,2018-12-04,Abnormal,6183,208,3,3,,,,DISCHARGED -6184,2022-09-21,42537.9020492107,210,Urgent,2022-10-12,Normal,6184,354,1,20,,,,DISCHARGED -6186,2022-01-26,3025.1800943642866,204,Urgent,2022-02-06,Abnormal,6186,484,1,26,,,,DISCHARGED -6187,2019-01-25,14295.44972275746,120,Urgent,2019-02-23,Inconclusive,6187,210,0,8,,,,DISCHARGED -6188,2020-01-14,5530.92629333341,241,Emergency,2020-02-10,Normal,6188,191,1,27,,,,DISCHARGED -6189,2021-09-11,47706.668252865085,230,Urgent,2021-09-18,Normal,6189,43,3,15,,,,DISCHARGED -6190,2019-11-07,39312.99811347667,468,Emergency,2019-11-12,Inconclusive,6190,28,0,2,,,,DISCHARGED -6191,2022-11-24,24275.67187138074,230,Emergency,2022-11-25,Normal,6191,58,4,3,,,,DISCHARGED -6192,2021-04-22,16114.569059248815,148,Urgent,2021-05-04,Normal,6192,70,0,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6193,2023-09-08,46556.27087797975,377,Elective,2023-09-09,Inconclusive,6193,91,0,2,,,,DISCHARGED -6194,2019-03-30,19341.673083933863,136,Urgent,2019-04-18,Inconclusive,6194,264,4,12,,,,DISCHARGED -6195,2019-01-18,28003.823887023857,117,Elective,2019-02-01,Abnormal,6195,382,3,18,,,,DISCHARGED -6196,2020-04-05,7686.553156068053,471,Emergency,2020-04-26,Inconclusive,6196,219,2,28,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -6197,2020-12-04,3843.528519592905,301,Emergency,2020-12-19,Inconclusive,6197,389,2,24,,,,DISCHARGED -6198,2021-04-12,32540.751352168507,491,Emergency,2021-05-11,Abnormal,6198,412,4,20,,,,DISCHARGED -6199,2023-07-10,20400.88808716771,206,Urgent,,Normal,6199,441,3,25,,,,OPEN -6200,2019-04-02,15813.10138707612,115,Emergency,2019-04-03,Inconclusive,6200,400,1,0,,,,DISCHARGED -6201,2021-04-21,14468.251353635906,349,Urgent,2021-05-21,Inconclusive,6201,399,4,22,,,,DISCHARGED -6202,2020-03-18,3748.3979325421537,172,Emergency,2020-04-09,Inconclusive,6202,214,2,22,,,,DISCHARGED -6203,2023-09-14,41219.50185701669,475,Urgent,2023-09-23,Inconclusive,6203,478,3,5,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -6203,2022-01-27,18281.015579073784,398,Emergency,2022-02-12,Abnormal,9463,386,0,21,,,,DISCHARGED -6205,2022-08-02,45354.2360103459,384,Elective,2022-08-13,Abnormal,6205,276,3,2,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -6206,2020-12-31,47063.29800131448,242,Emergency,2021-01-04,Abnormal,6206,63,3,2,,,,DISCHARGED -6207,2022-05-11,30068.87039543928,398,Urgent,2022-06-01,Inconclusive,6207,345,2,15,,,,DISCHARGED -6208,2020-03-02,35938.589967743064,362,Emergency,2020-03-23,Normal,6208,291,2,9,,,,DISCHARGED -6209,2019-10-26,15628.513922041211,427,Emergency,2019-10-28,Abnormal,6209,489,1,26,,,,DISCHARGED -6210,2019-11-30,38592.307992839706,106,Elective,2019-12-17,Inconclusive,6210,484,1,24,,,,DISCHARGED -6211,2019-02-16,43923.63012934363,208,Emergency,2019-03-12,Abnormal,6211,244,4,16,,,,DISCHARGED -6212,2020-11-06,45168.47816621722,206,Emergency,2020-11-28,Inconclusive,6212,469,0,6,,,,DISCHARGED -6212,2021-10-16,27931.43539338077,365,Urgent,2021-11-05,Inconclusive,9795,61,1,12,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6213,2020-03-02,26307.045823635894,200,Emergency,2020-03-16,Normal,6213,425,2,27,,,,DISCHARGED -6214,2021-12-20,14634.65959231155,257,Emergency,2022-01-12,Normal,6214,331,3,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6216,2022-02-07,37809.57489814309,250,Elective,2022-02-10,Normal,6216,169,4,9,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6217,2022-04-11,10941.548876368746,371,Urgent,2022-05-10,Inconclusive,6217,444,1,6,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -6218,2022-07-22,31459.12163046863,343,Elective,2022-08-04,Inconclusive,6218,268,3,23,,,,DISCHARGED -6219,2021-09-17,39896.15769803589,103,Elective,2021-10-13,Abnormal,6219,266,3,5,,,,DISCHARGED -6220,2022-05-22,1971.4650255665088,391,Urgent,2022-06-03,Abnormal,6220,53,1,23,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -6220,2022-12-31,36233.91324124278,386,Urgent,2023-01-04,Inconclusive,8653,15,0,0,,,,DISCHARGED -6221,2022-06-20,4493.970986534578,372,Emergency,2022-07-04,Normal,6221,7,0,16,,,,DISCHARGED -6222,2023-09-12,24413.27693643391,116,Urgent,,Abnormal,6222,103,4,24,,,,OPEN -6224,2020-06-11,38555.43104984762,225,Emergency,2020-06-18,Inconclusive,6224,58,0,11,,,,DISCHARGED -6225,2021-11-02,5567.633006001641,285,Urgent,2021-11-30,Inconclusive,6225,312,4,3,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -6226,2022-06-17,34566.9163623865,379,Elective,2022-07-06,Normal,6226,39,2,2,,,,DISCHARGED -6227,2019-09-17,46762.663205146586,239,Emergency,2019-10-10,Abnormal,6227,236,1,5,,,,DISCHARGED -6228,2022-04-14,17834.520252656082,115,Emergency,2022-05-12,Inconclusive,6228,442,3,25,,,,DISCHARGED -6230,2022-03-07,22171.132302551843,159,Emergency,2022-03-18,Inconclusive,6230,385,4,27,,,,DISCHARGED -6231,2020-12-08,26973.663555245108,458,Emergency,2020-12-15,Normal,6231,93,0,15,,,,DISCHARGED -6232,2023-10-25,17744.66305742216,409,Urgent,,Normal,6232,221,4,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",OPEN -6233,2023-09-08,44596.761025798325,135,Urgent,2023-10-05,Normal,6233,203,4,27,,,,DISCHARGED -6234,2022-03-13,15326.408580092371,461,Emergency,2022-03-19,Normal,6234,137,0,8,,,,DISCHARGED -6235,2021-04-11,26475.71665810182,425,Elective,2021-04-25,Inconclusive,6235,299,0,25,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -6236,2022-02-26,27056.74753592466,433,Elective,2022-03-01,Inconclusive,6236,394,1,10,,,,DISCHARGED -6237,2021-03-18,32784.45831993211,345,Urgent,2021-03-30,Inconclusive,6237,206,3,19,,,,DISCHARGED -6238,2020-12-21,45169.53202050832,308,Elective,2020-12-27,Inconclusive,6238,335,1,24,,,,DISCHARGED -6239,2022-04-20,42941.10175938614,437,Urgent,2022-04-21,Abnormal,6239,80,1,20,,,,DISCHARGED -6240,2019-09-03,34701.48887810339,291,Urgent,2019-09-26,Inconclusive,6240,217,0,12,,,,DISCHARGED -6241,2018-12-21,29685.08165495313,142,Urgent,2019-01-13,Normal,6241,1,0,22,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -6243,2023-02-07,48491.90699632781,154,Emergency,2023-02-09,Abnormal,6243,177,3,18,,,,DISCHARGED -6244,2023-09-25,2277.420196350031,133,Emergency,2023-10-11,Normal,6244,395,4,2,,,,DISCHARGED -6245,2021-08-12,42965.05116296528,394,Urgent,2021-08-16,Inconclusive,6245,370,1,11,,,,DISCHARGED -6246,2023-05-15,23028.25910827863,164,Urgent,2023-05-21,Normal,6246,345,3,18,,,,DISCHARGED -6247,2019-04-05,36311.61092148439,339,Urgent,2019-04-08,Inconclusive,6247,278,1,7,,,,DISCHARGED -6248,2023-08-30,20601.65926495438,444,Elective,2023-09-03,Normal,6248,145,4,13,,,,DISCHARGED -6249,2022-09-15,3192.161002612057,271,Elective,2022-10-05,Normal,6249,317,1,21,,,,DISCHARGED -6250,2022-10-23,25115.70049534741,308,Urgent,2022-11-13,Inconclusive,6250,223,2,8,,,,DISCHARGED -6251,2020-11-17,12218.129444457458,178,Urgent,2020-11-22,Abnormal,6251,368,3,24,,,,DISCHARGED -6252,2020-07-27,48228.96275138811,134,Elective,2020-08-09,Inconclusive,6252,383,0,23,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -6253,2019-03-06,17612.027669269068,311,Emergency,2019-03-15,Normal,6253,61,1,16,,,,DISCHARGED -6254,2021-02-24,19050.665929734118,127,Emergency,2021-03-20,Normal,6254,293,3,5,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6255,2019-04-18,9276.528131390927,261,Elective,2019-05-01,Normal,6255,238,3,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6256,2021-05-07,45414.6653474973,399,Urgent,2021-05-21,Abnormal,6256,194,1,3,,,,DISCHARGED -6257,2022-04-05,9523.460119166888,196,Urgent,2022-04-26,Inconclusive,6257,165,0,18,,,,DISCHARGED -6257,2020-05-29,49701.59285074048,253,Emergency,2020-06-08,Inconclusive,7398,450,0,11,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -6258,2023-09-28,46526.23601867224,275,Urgent,2023-10-09,Normal,6258,221,1,24,,,,DISCHARGED -6259,2021-04-30,18976.970844728214,106,Elective,2021-05-05,Normal,6259,60,3,1,,,,DISCHARGED -6260,2023-09-30,3954.394087385822,463,Urgent,2023-10-09,Abnormal,6260,128,0,16,,,,DISCHARGED -6261,2023-04-25,34819.58352622761,413,Urgent,2023-05-07,Abnormal,6261,477,1,29,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -6262,2021-06-27,17191.55707452727,405,Emergency,2021-07-23,Normal,6262,172,1,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6263,2021-06-03,26726.34781120176,327,Emergency,2021-06-26,Abnormal,6263,479,1,9,,,,DISCHARGED -6264,2019-08-04,33869.326218005765,293,Elective,2019-08-10,Normal,6264,155,3,2,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6265,2020-01-27,21208.935034574213,206,Elective,2020-01-30,Abnormal,6265,404,0,28,,,,DISCHARGED -6266,2023-07-02,36516.50454511538,421,Emergency,2023-08-01,Normal,6266,377,3,19,,,,DISCHARGED -6267,2023-02-07,48298.857995849066,355,Urgent,2023-02-28,Inconclusive,6267,109,2,3,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -6268,2023-05-04,12192.828410927816,289,Urgent,,Abnormal,6268,268,0,21,,,,OPEN -6269,2022-06-11,37733.93980784244,149,Urgent,2022-06-13,Normal,6269,410,3,0,,,,DISCHARGED -6270,2022-04-19,20169.98065941197,118,Emergency,2022-04-28,Normal,6270,355,0,0,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -6271,2019-02-17,15602.99780012213,491,Urgent,2019-03-12,Normal,6271,390,2,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -6272,2021-12-29,45543.98397755877,257,Emergency,2022-01-15,Normal,6272,277,4,3,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -6272,2019-10-21,45322.87491249462,281,Urgent,2019-11-04,Normal,6410,73,1,22,,,,DISCHARGED -6272,2019-10-28,37743.61604907189,119,Elective,2019-10-31,Normal,8134,486,3,21,,,,DISCHARGED -6274,2021-10-08,29890.736589541262,229,Elective,2021-10-23,Abnormal,6274,436,2,14,,,,DISCHARGED -6275,2023-10-03,32740.92574514204,101,Urgent,,Inconclusive,6275,462,2,26,,,,OPEN -6276,2021-11-06,9484.561597344376,347,Emergency,2021-11-28,Normal,6276,206,0,24,,,,DISCHARGED -6277,2019-07-24,22156.731990339817,310,Emergency,2019-08-14,Inconclusive,6277,387,0,22,,,,DISCHARGED -6278,2022-10-01,28087.173240632677,299,Elective,2022-10-13,Inconclusive,6278,479,1,27,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6279,2020-02-27,45459.75564855291,485,Emergency,2020-03-25,Abnormal,6279,278,0,20,,,,DISCHARGED -6280,2020-08-27,36501.97002806507,266,Urgent,2020-09-26,Normal,6280,374,3,21,,,,DISCHARGED -6281,2019-12-02,44773.1925129568,387,Elective,2019-12-12,Inconclusive,6281,325,3,9,,,,DISCHARGED -6282,2020-12-28,20597.331221718778,367,Elective,2021-01-18,Abnormal,6282,471,3,24,,,,DISCHARGED -6283,2022-12-22,2776.647406669794,191,Elective,2023-01-04,Normal,6283,339,4,16,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6284,2020-01-30,31062.37992543368,411,Emergency,2020-02-19,Inconclusive,6284,356,3,26,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6285,2022-10-30,12958.944116433528,359,Elective,2022-11-10,Abnormal,6285,339,0,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6286,2023-02-17,3645.142655875792,153,Urgent,2023-02-28,Abnormal,6286,203,0,21,,,,DISCHARGED -6287,2019-07-29,16284.262915163392,141,Elective,2019-08-02,Inconclusive,6287,160,3,11,,,,DISCHARGED -6288,2021-06-26,22298.239377625505,468,Emergency,2021-07-13,Abnormal,6288,27,2,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6289,2022-07-07,28223.966176477672,348,Urgent,2022-08-04,Inconclusive,6289,391,2,11,,,,DISCHARGED -6290,2019-12-02,31647.802050439448,304,Emergency,2019-12-17,Inconclusive,6290,256,2,15,,,,DISCHARGED -6291,2021-06-14,41419.76228132893,306,Urgent,2021-06-21,Abnormal,6291,164,1,4,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6293,2023-08-30,21395.64828735212,147,Emergency,2023-09-08,Normal,6293,62,4,28,,,,DISCHARGED -6294,2021-04-28,8381.671707759755,258,Elective,2021-05-16,Abnormal,6294,21,3,15,,,,DISCHARGED -6295,2020-08-24,48376.088832993766,188,Urgent,2020-09-06,Normal,6295,69,1,16,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6297,2022-05-06,32522.499149935287,158,Urgent,2022-05-23,Inconclusive,6297,380,2,22,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6298,2021-05-11,36131.75386382159,378,Urgent,2021-06-02,Normal,6298,404,3,28,,,,DISCHARGED -6299,2019-05-01,24676.176838998825,283,Urgent,2019-05-21,Inconclusive,6299,95,1,14,,,,DISCHARGED -6300,2023-06-11,15525.91164448756,332,Emergency,2023-06-30,Normal,6300,162,0,12,,,,DISCHARGED -6301,2020-03-22,46494.09289928049,144,Urgent,2020-04-18,Inconclusive,6301,78,2,7,,,,DISCHARGED -6302,2021-05-04,49516.31337760794,480,Urgent,2021-05-20,Abnormal,6302,4,1,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -6305,2021-01-13,5805.097992573134,304,Emergency,2021-01-27,Inconclusive,6305,315,0,20,,,,DISCHARGED -6306,2020-05-19,47227.26072631823,240,Emergency,2020-06-12,Abnormal,6306,119,2,1,,,,DISCHARGED -6307,2021-07-23,29810.43532804897,278,Emergency,2021-08-05,Inconclusive,6307,301,4,7,,,,DISCHARGED -6308,2022-11-06,45805.19650123357,384,Emergency,2022-11-11,Inconclusive,6308,177,2,9,,,,DISCHARGED -6309,2023-04-25,4912.829136820908,173,Emergency,,Abnormal,6309,175,4,6,,,,OPEN -6310,2021-03-01,23544.864488158502,258,Elective,2021-03-21,Abnormal,6310,389,4,9,,,,DISCHARGED -6311,2019-09-06,35386.11067234685,320,Urgent,2019-09-28,Abnormal,6311,216,4,24,,,,DISCHARGED -6312,2022-06-16,32418.295874994077,426,Emergency,2022-07-06,Normal,6312,55,3,3,,,,DISCHARGED -6312,2023-09-06,14276.47340348072,270,Urgent,2023-10-05,Abnormal,8640,365,3,10,,,,DISCHARGED -6312,2020-05-11,4780.693192207359,382,Elective,2020-05-25,Normal,9877,186,4,8,,,,DISCHARGED -6313,2022-04-05,24822.26794898652,172,Elective,2022-04-09,Normal,6313,231,0,3,,,,DISCHARGED -6315,2021-07-13,31622.653332477646,261,Urgent,2021-08-02,Normal,6315,254,4,2,,,,DISCHARGED -6316,2021-11-07,2614.092123383107,466,Elective,2021-12-02,Inconclusive,6316,412,1,10,,,,DISCHARGED -6317,2020-06-15,9161.065246397118,301,Elective,2020-06-17,Inconclusive,6317,454,4,2,,,,DISCHARGED -6318,2022-02-14,38806.59439247778,418,Emergency,2022-02-28,Inconclusive,6318,103,3,25,,,,DISCHARGED -6319,2020-03-14,15810.726796890822,472,Urgent,2020-03-15,Inconclusive,6319,76,3,17,,,,DISCHARGED -6320,2022-10-02,23174.406843495814,379,Urgent,2022-10-09,Inconclusive,6320,229,1,25,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -6321,2023-07-10,9400.965253547003,254,Elective,,Normal,6321,401,1,18,,,,OPEN -6322,2019-12-26,27310.46112970099,350,Urgent,2020-01-11,Normal,6322,257,2,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -6323,2023-05-01,46468.10833232258,489,Elective,,Inconclusive,6323,263,0,23,,,,OPEN -6324,2021-11-23,41023.47493868809,332,Urgent,2021-12-02,Abnormal,6324,330,0,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6325,2019-01-22,12006.459507091142,134,Urgent,2019-02-21,Normal,6325,480,0,23,,,,DISCHARGED -6326,2019-10-08,28571.455096843823,193,Elective,2019-10-24,Abnormal,6326,181,3,1,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6327,2022-08-01,14259.08139952214,286,Elective,2022-08-24,Inconclusive,6327,380,0,26,,,,DISCHARGED -6328,2020-12-23,5120.1787819202045,373,Emergency,2020-12-24,Inconclusive,6328,255,2,1,,,,DISCHARGED -6329,2023-02-21,35926.11979016372,168,Urgent,,Abnormal,6329,37,2,1,,,,OPEN -6330,2022-10-26,43874.28249272077,274,Emergency,2022-11-23,Inconclusive,6330,175,0,9,,,,DISCHARGED -6331,2020-09-08,19404.20463056126,313,Urgent,2020-09-13,Normal,6331,26,1,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -6332,2021-08-18,2502.917758197785,421,Elective,2021-08-22,Abnormal,6332,275,2,14,,,,DISCHARGED -6333,2022-04-04,27641.238520391715,336,Elective,2022-04-06,Normal,6333,139,1,21,,,,DISCHARGED -6334,2019-03-16,4143.797079417624,338,Urgent,2019-03-29,Normal,6334,298,3,11,,,,DISCHARGED -6335,2022-03-05,18604.25210957644,110,Emergency,2022-03-13,Normal,6335,444,2,10,,,,DISCHARGED -6336,2023-02-14,28854.67467505926,220,Elective,2023-02-21,Normal,6336,286,1,16,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6337,2020-07-07,32002.503192300108,187,Elective,2020-07-24,Normal,6337,90,0,17,,,,DISCHARGED -6338,2018-11-07,17020.934264470074,162,Elective,2018-11-22,Abnormal,6338,479,3,13,,,,DISCHARGED -6339,2023-02-13,17258.576991761205,337,Emergency,2023-03-12,Inconclusive,6339,60,4,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6340,2019-05-19,44564.50016325569,367,Urgent,2019-06-16,Abnormal,6340,457,4,14,,,,DISCHARGED -6341,2023-08-21,5937.25609150677,228,Elective,,Abnormal,6341,450,0,11,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",OPEN -6342,2023-05-31,10525.809317349374,294,Emergency,2023-06-04,Inconclusive,6342,364,3,26,,,,DISCHARGED -6343,2019-02-07,28091.394862690144,316,Elective,2019-02-10,Inconclusive,6343,346,3,15,,,,DISCHARGED -6344,2020-09-13,2510.0327631516425,425,Elective,2020-09-24,Inconclusive,6344,162,3,22,,,,DISCHARGED -6345,2021-03-03,39829.48079846791,159,Elective,2021-03-20,Inconclusive,6345,350,3,5,,,,DISCHARGED -6346,2020-04-01,38746.34539557557,451,Emergency,2020-04-07,Abnormal,6346,142,4,1,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -6347,2022-01-23,38386.73077117908,468,Elective,2022-02-12,Inconclusive,6347,399,1,1,,,,DISCHARGED -6348,2022-07-23,36389.81872389086,389,Elective,2022-08-01,Normal,6348,252,3,15,,,,DISCHARGED -6349,2019-10-07,11491.29578256735,296,Elective,2019-10-10,Normal,6349,268,1,1,,,,DISCHARGED -6350,2019-04-08,45686.56916405727,498,Emergency,2019-04-29,Abnormal,6350,368,3,7,,,,DISCHARGED -6351,2022-06-08,26968.69450468538,362,Elective,2022-06-09,Abnormal,6351,290,2,29,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6352,2023-10-23,19726.62638984905,179,Emergency,2023-11-15,Abnormal,6352,499,2,6,,,,DISCHARGED -6353,2020-11-19,20914.506348441475,469,Emergency,2020-12-03,Abnormal,6353,458,2,0,,,,DISCHARGED -6355,2019-02-23,44355.73182946607,450,Urgent,2019-03-05,Inconclusive,6355,186,3,3,,,,DISCHARGED -6356,2021-06-11,9269.023067480211,382,Emergency,2021-06-22,Normal,6356,404,1,10,,,,DISCHARGED -6357,2019-04-05,36299.56357949784,129,Elective,2019-04-19,Inconclusive,6357,498,4,19,,,,DISCHARGED -6358,2019-10-01,9842.50863259775,285,Elective,2019-10-24,Inconclusive,6358,437,0,6,,,,DISCHARGED -6359,2021-09-26,40872.67431546992,114,Urgent,2021-10-22,Abnormal,6359,458,4,17,,,,DISCHARGED -6360,2020-04-29,44105.38470748311,247,Emergency,2020-05-01,Inconclusive,6360,413,3,3,,,,DISCHARGED -6361,2021-10-06,35919.16141725073,157,Emergency,2021-11-01,Abnormal,6361,303,2,16,,,,DISCHARGED -6362,2021-11-18,38080.06489172251,455,Urgent,2021-12-16,Abnormal,6362,290,2,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -6363,2019-01-01,11434.768359367456,172,Urgent,2019-01-15,Normal,6363,85,1,28,,,,DISCHARGED -6364,2019-03-11,3416.0378503970755,222,Urgent,2019-03-12,Inconclusive,6364,165,3,10,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6365,2022-12-21,20250.068156215777,203,Emergency,2023-01-18,Normal,6365,414,4,10,,,,DISCHARGED -6366,2019-01-19,45362.20148536764,490,Emergency,2019-02-15,Inconclusive,6366,461,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6367,2019-11-30,8603.052351088463,310,Emergency,2019-12-25,Normal,6367,407,3,10,,,,DISCHARGED -6368,2022-06-30,20822.617860667076,153,Urgent,2022-07-11,Inconclusive,6368,113,2,14,,,,DISCHARGED -6369,2021-10-22,43297.7336529021,486,Emergency,2021-11-13,Abnormal,6369,432,4,13,,,,DISCHARGED -6371,2020-05-28,14843.51530137342,406,Emergency,2020-06-17,Normal,6371,479,0,16,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6372,2022-05-17,41742.22724248023,208,Elective,2022-05-26,Inconclusive,6372,355,2,1,,,,DISCHARGED -6373,2019-06-30,45112.52317188774,455,Urgent,2019-07-04,Abnormal,6373,415,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -6374,2021-06-15,24606.99943039784,478,Emergency,2021-06-21,Inconclusive,6374,182,1,15,,,,DISCHARGED -6375,2023-03-09,20791.154851465977,351,Urgent,2023-03-21,Normal,6375,206,2,11,,,,DISCHARGED -6376,2022-02-07,10724.782890796803,145,Urgent,2022-02-24,Inconclusive,6376,255,1,9,,,,DISCHARGED -6377,2022-04-13,19498.54255164778,382,Emergency,2022-05-09,Abnormal,6377,234,2,27,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6378,2020-04-27,33024.65602517636,163,Urgent,2020-05-24,Normal,6378,441,3,15,,,,DISCHARGED -6379,2021-12-12,35356.44393007982,455,Emergency,2021-12-22,Normal,6379,354,4,2,,,,DISCHARGED -6380,2021-07-21,16323.827520557152,125,Urgent,2021-08-14,Inconclusive,6380,2,1,7,,,,DISCHARGED -6381,2020-06-02,29827.156976012637,140,Urgent,2020-06-18,Normal,6381,207,2,26,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6382,2023-01-17,38079.7486759851,485,Elective,,Abnormal,6382,196,1,21,,,,OPEN -6383,2022-10-16,3252.623825548033,145,Urgent,2022-10-20,Inconclusive,6383,340,2,21,,,,DISCHARGED -6384,2020-10-23,12857.850428642969,190,Urgent,2020-11-12,Inconclusive,6384,124,2,24,,,,DISCHARGED -6385,2023-06-15,6253.512305256351,143,Urgent,,Inconclusive,6385,137,0,23,,,,OPEN -6386,2019-05-25,3278.1754712039424,396,Emergency,2019-05-29,Normal,6386,338,0,1,,,,DISCHARGED -6387,2022-11-23,48530.12420514535,447,Elective,2022-12-09,Abnormal,6387,24,0,21,,,,DISCHARGED -6388,2021-02-02,26731.538959177946,415,Elective,2021-02-18,Normal,6388,67,1,0,,,,DISCHARGED -6389,2023-10-28,34562.79529663183,309,Urgent,2023-11-16,Abnormal,6389,60,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -6390,2020-09-14,44486.43401762952,319,Urgent,2020-09-16,Abnormal,6390,28,2,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6391,2020-06-09,23579.69137565181,458,Elective,2020-06-19,Abnormal,6391,382,4,24,,,,DISCHARGED -6392,2019-11-06,10445.980492927923,227,Emergency,2019-12-06,Normal,6392,18,0,3,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -6393,2023-05-22,38173.9257316802,154,Elective,,Abnormal,6393,170,1,3,,,,OPEN -6394,2019-08-10,8227.714523297263,416,Urgent,2019-08-26,Inconclusive,6394,449,1,8,,,,DISCHARGED -6395,2021-04-14,26158.396838799526,261,Urgent,2021-05-03,Normal,6395,73,1,2,,,,DISCHARGED -6396,2022-11-12,17939.54109740164,131,Elective,2022-11-17,Normal,6396,60,4,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -6397,2022-01-31,1428.6194928533328,461,Urgent,2022-02-14,Abnormal,6397,426,4,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6398,2022-03-03,15312.402684283905,476,Urgent,2022-04-02,Normal,6398,152,0,21,,,,DISCHARGED -6399,2021-12-12,15611.025760339273,196,Urgent,2022-01-07,Abnormal,6399,275,4,18,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -6400,2023-09-23,44862.82867055065,469,Urgent,,Abnormal,6400,47,0,0,,,,OPEN -6401,2021-02-09,1510.0174542278176,307,Elective,2021-03-11,Abnormal,6401,210,4,9,,,,DISCHARGED -6402,2023-08-02,21607.16446733318,291,Urgent,2023-08-21,Abnormal,6402,342,4,21,,,,DISCHARGED -6403,2022-04-08,24256.84641421933,450,Urgent,2022-04-12,Abnormal,6403,407,4,29,,,,DISCHARGED -6405,2019-02-26,36020.02597604894,409,Elective,2019-03-24,Normal,6405,138,0,11,,,,DISCHARGED -6406,2020-01-02,1297.1265139423306,146,Urgent,2020-01-05,Abnormal,6406,109,2,9,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6408,2022-11-26,27520.734687519034,463,Emergency,2022-12-19,Abnormal,6408,481,0,1,,,,DISCHARGED -6409,2020-11-18,7483.788011774308,105,Elective,2020-12-10,Inconclusive,6409,182,2,15,,,,DISCHARGED -6411,2019-11-09,38310.284764213386,386,Emergency,2019-12-04,Abnormal,6411,27,1,7,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6412,2023-06-20,7840.692750012547,469,Urgent,2023-06-26,Inconclusive,6412,196,1,13,,,,DISCHARGED -6413,2019-09-27,14474.870506402229,167,Emergency,2019-10-22,Normal,6413,190,0,28,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6414,2023-04-14,38216.70514985092,455,Emergency,,Inconclusive,6414,314,2,14,,,,OPEN -6415,2021-07-28,8691.640039626809,444,Elective,2021-08-03,Normal,6415,388,2,15,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -6416,2021-03-19,27298.734315302598,405,Elective,2021-03-22,Inconclusive,6416,50,2,10,,,,DISCHARGED -6417,2023-04-06,19972.80664006177,155,Emergency,2023-04-23,Normal,6417,148,1,11,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -6418,2023-10-25,31820.2795035068,432,Elective,2023-11-12,Inconclusive,6418,267,0,1,,,,DISCHARGED -6419,2022-12-12,33315.480493456016,135,Emergency,2022-12-29,Normal,6419,49,3,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6420,2019-01-25,27180.243589882703,138,Urgent,2019-02-20,Abnormal,6420,387,2,29,,,,DISCHARGED -6421,2023-09-13,43932.49307678761,488,Elective,2023-10-02,Abnormal,6421,245,2,2,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6422,2022-06-05,2996.658611545702,118,Urgent,2022-07-01,Normal,6422,112,3,8,,,,DISCHARGED -6423,2022-12-21,15072.294837733678,141,Elective,2022-12-24,Normal,6423,169,0,17,,,,DISCHARGED -6424,2020-04-07,26504.173734799824,229,Urgent,2020-04-20,Abnormal,6424,467,2,18,,,,DISCHARGED -6425,2021-06-16,18483.959711816584,391,Urgent,2021-07-10,Inconclusive,6425,165,0,6,,,,DISCHARGED -6427,2020-03-08,38533.4245579365,193,Emergency,2020-03-15,Inconclusive,6427,408,2,3,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -6429,2022-01-20,11329.43673130454,294,Urgent,2022-02-18,Abnormal,6429,13,4,5,,,,DISCHARGED -6430,2020-09-01,12463.992586612105,294,Emergency,2020-09-27,Normal,6430,202,2,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6431,2023-08-23,23275.6840946182,315,Urgent,2023-09-01,Inconclusive,6431,287,4,0,,,,DISCHARGED -6432,2021-09-30,24158.106073829145,179,Urgent,2021-10-29,Normal,6432,394,0,15,,,,DISCHARGED -6433,2021-02-09,30852.388454299653,205,Elective,2021-03-01,Inconclusive,6433,188,2,10,,,,DISCHARGED -6434,2021-02-13,2742.3709276833183,392,Emergency,2021-02-20,Abnormal,6434,401,1,21,,,,DISCHARGED -6435,2019-09-18,22138.94999962974,331,Emergency,2019-10-12,Abnormal,6435,154,1,3,,,,DISCHARGED -6435,2022-09-16,18765.389652883478,297,Urgent,2022-09-21,Abnormal,8955,54,3,17,,,,DISCHARGED -6437,2023-10-18,7874.9356277291645,152,Emergency,2023-10-31,Inconclusive,6437,181,1,22,,,,DISCHARGED -6438,2023-01-31,23288.320481482748,457,Urgent,2023-02-28,Inconclusive,6438,209,4,25,,,,DISCHARGED -6439,2020-10-29,22853.24411337351,165,Elective,2020-11-18,Normal,6439,375,1,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -6441,2021-02-07,17611.629241012157,329,Emergency,2021-03-09,Normal,6441,470,1,27,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6442,2022-05-24,43578.58892589563,406,Emergency,2022-06-07,Abnormal,6442,74,1,28,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -6443,2023-08-14,20109.16897740629,374,Urgent,2023-08-22,Abnormal,6443,276,2,4,,,,DISCHARGED -6444,2022-11-01,35808.94134798303,297,Emergency,2022-11-15,Inconclusive,6444,427,3,21,,,,DISCHARGED -6445,2022-12-28,48027.55601450049,216,Emergency,2023-01-15,Normal,6445,132,0,5,,,,DISCHARGED -6446,2023-03-25,35084.300305117344,244,Emergency,2023-04-01,Normal,6446,342,3,29,,,,DISCHARGED -6447,2019-07-26,26015.539765533045,167,Emergency,2019-08-17,Inconclusive,6447,424,4,24,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -6448,2019-04-22,19784.20559356157,103,Emergency,2019-05-09,Abnormal,6448,58,2,27,,,,DISCHARGED -6449,2022-10-06,13249.652206260307,142,Urgent,2022-10-22,Inconclusive,6449,344,2,1,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -6450,2019-03-15,18715.415491806765,385,Emergency,2019-04-13,Abnormal,6450,488,1,11,,,,DISCHARGED -6451,2021-07-19,18925.55700290145,229,Emergency,2021-07-26,Normal,6451,181,1,21,,,,DISCHARGED -6453,2021-04-30,28807.28176484504,294,Elective,2021-05-19,Inconclusive,6453,457,4,8,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6454,2020-09-24,35173.555002044486,342,Emergency,2020-10-08,Inconclusive,6454,405,2,27,,,,DISCHARGED -6455,2021-06-02,19340.95334968545,102,Emergency,2021-06-26,Normal,6455,338,0,19,,,,DISCHARGED -6457,2022-04-23,4103.562709052907,360,Urgent,2022-05-16,Abnormal,6457,320,3,28,,,,DISCHARGED -6458,2022-10-31,44885.7231746151,482,Elective,2022-11-05,Inconclusive,6458,63,2,11,,,,DISCHARGED -6459,2020-05-19,40659.61807959143,316,Elective,2020-06-12,Inconclusive,6459,326,0,28,,,,DISCHARGED -6460,2018-12-04,37677.354071304646,313,Urgent,2018-12-19,Abnormal,6460,259,0,12,,,,DISCHARGED -6461,2020-05-22,12218.485583623378,434,Emergency,2020-06-11,Abnormal,6461,192,3,26,,,,DISCHARGED -6462,2022-06-14,25092.920106769976,382,Urgent,2022-07-13,Abnormal,6462,142,0,21,,,,DISCHARGED -6463,2021-03-03,46927.26166401963,429,Emergency,2021-03-28,Abnormal,6463,103,4,22,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6464,2022-06-04,24069.892535706607,356,Urgent,2022-06-25,Inconclusive,6464,459,0,16,,,,DISCHARGED -6466,2022-07-18,9408.97569855612,399,Emergency,2022-08-15,Normal,6466,405,4,4,,,,DISCHARGED -6467,2020-07-31,3830.439965553167,272,Elective,2020-08-01,Abnormal,6467,213,0,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6468,2022-09-23,12110.253455149204,169,Elective,2022-10-14,Normal,6468,241,1,12,,,,DISCHARGED -6468,2020-09-11,30889.02978054228,193,Emergency,2020-10-05,Abnormal,9824,430,0,28,,,,DISCHARGED -6469,2020-07-12,8455.933132181595,326,Emergency,2020-08-02,Normal,6469,208,4,12,,,,DISCHARGED -6470,2022-05-21,2110.3311710334483,191,Emergency,2022-06-01,Inconclusive,6470,92,0,9,,,,DISCHARGED -6472,2023-05-25,46797.90447911199,427,Emergency,,Abnormal,6472,429,0,14,,,,OPEN -6473,2020-01-01,10176.238289943954,460,Emergency,2020-01-15,Inconclusive,6473,141,0,14,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6474,2022-07-01,38896.73676388027,214,Elective,2022-07-04,Normal,6474,433,4,17,,,,DISCHARGED -6474,2019-04-27,29534.06437873794,450,Urgent,2019-05-03,Abnormal,9954,403,0,17,,,,DISCHARGED -6475,2022-05-07,47186.643012484645,144,Urgent,2022-05-17,Normal,6475,433,3,1,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6476,2020-11-28,18711.57437451129,157,Urgent,2020-12-24,Abnormal,6476,111,3,22,,,,DISCHARGED -6477,2019-05-03,26091.750109589066,305,Urgent,2019-05-11,Normal,6477,416,4,10,,,,DISCHARGED -6478,2020-05-12,19318.13874997756,379,Elective,2020-05-13,Inconclusive,6478,374,1,12,,,,DISCHARGED -6479,2022-02-11,48137.36153400999,427,Elective,2022-02-17,Inconclusive,6479,58,3,10,,,,DISCHARGED -6480,2020-05-25,30617.517995217724,135,Emergency,2020-06-17,Inconclusive,6480,42,2,3,,,,DISCHARGED -6481,2021-11-17,35403.3079465154,219,Urgent,2021-12-07,Normal,6481,206,3,14,,,,DISCHARGED -6482,2020-04-28,35502.10023303405,281,Urgent,2020-05-04,Inconclusive,6482,267,2,21,,,,DISCHARGED -6483,2022-11-05,39426.65592253163,248,Elective,2022-12-04,Normal,6483,295,4,22,,,,DISCHARGED -6484,2023-10-14,48160.80364209265,416,Elective,2023-10-25,Inconclusive,6484,117,1,24,,,,DISCHARGED -6485,2022-01-02,10467.718585228504,168,Elective,2022-01-04,Normal,6485,19,2,10,,,,DISCHARGED -6486,2021-09-16,26818.31334499874,411,Urgent,2021-10-11,Inconclusive,6486,221,2,17,,,,DISCHARGED -6488,2020-08-23,31316.02989557156,347,Emergency,2020-09-19,Abnormal,6488,165,3,15,,,,DISCHARGED -6489,2019-02-17,18109.812067873427,319,Emergency,2019-03-19,Normal,6489,130,2,9,,,,DISCHARGED -6490,2021-02-22,27058.63201980125,268,Elective,2021-03-23,Normal,6490,155,4,11,,,,DISCHARGED -6491,2021-09-09,2225.498606371526,295,Emergency,2021-10-07,Inconclusive,6491,183,4,12,,,,DISCHARGED -6492,2020-10-29,40221.425409786985,102,Elective,2020-11-09,Abnormal,6492,89,4,8,,,,DISCHARGED -6493,2019-10-21,39686.40942163981,498,Elective,2019-11-01,Inconclusive,6493,93,3,26,,,,DISCHARGED -6494,2021-06-26,11379.973646328,364,Urgent,2021-07-11,Inconclusive,6494,12,1,20,,,,DISCHARGED -6496,2023-06-28,18933.876349247857,370,Emergency,,Normal,6496,460,3,12,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6497,2020-12-03,27990.04934907472,234,Urgent,2021-01-01,Inconclusive,6497,321,4,5,,,,DISCHARGED -6498,2023-02-10,11303.720672191046,219,Emergency,2023-02-25,Normal,6498,292,3,5,,,,DISCHARGED -6499,2022-12-05,22796.47098961584,358,Elective,2022-12-20,Abnormal,6499,432,4,10,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -6500,2022-09-02,47947.42754337616,320,Elective,2022-09-22,Abnormal,6500,229,0,18,,,,DISCHARGED -6501,2019-04-25,11531.45029232743,336,Urgent,2019-05-17,Normal,6501,321,0,26,,,,DISCHARGED -6502,2019-04-05,1639.9367572640513,329,Emergency,2019-04-15,Inconclusive,6502,291,2,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6503,2022-11-11,45157.04114735989,434,Elective,2022-12-01,Normal,6503,437,1,9,,,,DISCHARGED -6504,2021-12-01,17821.32053835732,156,Urgent,2021-12-18,Abnormal,6504,25,0,22,,,,DISCHARGED -6505,2019-10-07,6449.3025579987625,425,Elective,2019-10-25,Inconclusive,6505,74,4,14,,,,DISCHARGED -6506,2020-09-01,11651.878079559883,195,Emergency,2020-09-19,Normal,6506,455,3,12,,,,DISCHARGED -6507,2021-11-17,13293.229207479431,303,Urgent,2021-11-27,Abnormal,6507,363,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -6508,2022-05-05,43593.777029287325,320,Emergency,2022-05-08,Abnormal,6508,423,2,7,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -6510,2022-01-24,48828.09919031179,130,Elective,2022-02-11,Abnormal,6510,298,3,4,,,,DISCHARGED -6511,2023-10-30,25084.610651048384,152,Emergency,,Inconclusive,6511,149,0,1,,,,OPEN -6512,2023-02-11,31598.67402435054,387,Urgent,2023-03-10,Normal,6512,147,3,15,,,,DISCHARGED -6513,2023-10-22,10105.207379691195,111,Elective,2023-11-03,Abnormal,6513,7,0,12,,,,DISCHARGED -6514,2019-03-28,36974.12370398772,460,Urgent,2019-04-22,Inconclusive,6514,28,0,18,,,,DISCHARGED -6515,2019-05-17,23841.53465453391,495,Urgent,2019-06-13,Normal,6515,295,1,8,,,,DISCHARGED -6516,2021-07-03,44109.01857303184,146,Elective,2021-07-19,Inconclusive,6516,473,2,14,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6517,2018-12-24,13700.531651410329,140,Emergency,2019-01-01,Inconclusive,6517,413,4,5,,,,DISCHARGED -6518,2021-05-26,43995.63273430472,369,Elective,2021-06-01,Abnormal,6518,208,0,7,,,,DISCHARGED -6519,2020-10-08,24881.750842571968,483,Elective,2020-10-11,Abnormal,6519,127,2,23,,,,DISCHARGED -6520,2021-12-02,12510.723860368304,432,Urgent,2021-12-17,Normal,6520,339,4,13,,,,DISCHARGED -6521,2022-05-15,2511.467092047872,107,Elective,2022-06-09,Abnormal,6521,115,3,4,,,,DISCHARGED -6522,2023-03-03,47032.53132076731,325,Elective,2023-03-23,Abnormal,6522,438,2,16,,,,DISCHARGED -6523,2021-06-05,29136.69213992961,426,Urgent,2021-06-18,Abnormal,6523,143,2,21,,,,DISCHARGED -6523,2021-06-22,5629.6077747215895,102,Urgent,2021-06-27,Abnormal,8107,429,2,6,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -6524,2021-09-03,28480.05216557829,358,Urgent,2021-09-10,Inconclusive,6524,317,3,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -6525,2022-10-03,36820.65106609598,428,Emergency,2022-10-06,Normal,6525,234,3,15,,,,DISCHARGED -6526,2019-04-30,20525.26239410496,140,Emergency,2019-05-21,Abnormal,6526,6,2,17,,,,DISCHARGED -6527,2020-11-18,19110.81383010283,249,Elective,2020-11-19,Abnormal,6527,463,1,27,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6528,2018-12-06,10181.973029741674,412,Emergency,2018-12-30,Abnormal,6528,44,0,12,,,,DISCHARGED -6529,2023-01-08,31391.37446400957,206,Emergency,2023-01-16,Normal,6529,442,3,17,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -6530,2021-05-06,34021.0400547744,408,Elective,2021-06-05,Normal,6530,238,1,9,,,,DISCHARGED -6531,2023-07-01,42927.232323350894,402,Elective,2023-07-06,Normal,6531,439,3,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6532,2023-07-04,6688.166188336051,246,Emergency,2023-07-23,Inconclusive,6532,431,2,20,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6533,2019-05-14,36683.82144295969,449,Elective,2019-05-19,Inconclusive,6533,154,1,17,,,,DISCHARGED -6534,2023-10-02,30658.94501948577,216,Urgent,,Normal,6534,180,4,18,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,OPEN -6535,2022-05-24,10851.179695773326,406,Emergency,2022-06-05,Inconclusive,6535,214,0,1,,,,DISCHARGED -6536,2020-08-24,38388.72381185949,226,Urgent,2020-09-12,Normal,6536,87,0,26,,,,DISCHARGED -6538,2022-12-29,10879.11401335479,260,Emergency,2023-01-27,Normal,6538,255,3,3,,,,DISCHARGED -6539,2020-04-22,34534.28629193115,458,Elective,2020-05-11,Inconclusive,6539,72,0,10,,,,DISCHARGED -6540,2022-02-23,25263.584712358992,237,Urgent,2022-03-20,Inconclusive,6540,418,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6541,2021-07-03,46148.41610851614,242,Emergency,2021-07-23,Normal,6541,178,1,8,,,,DISCHARGED -6542,2019-08-15,34926.432703066894,316,Emergency,2019-09-10,Normal,6542,211,1,9,,,,DISCHARGED -6543,2022-06-23,23549.199777734368,111,Elective,2022-07-02,Normal,6543,292,2,27,,,,DISCHARGED -6544,2021-01-13,45069.391862605095,265,Elective,2021-02-05,Inconclusive,6544,233,1,1,,,,DISCHARGED -6545,2019-10-03,34945.287741910404,423,Urgent,2019-10-29,Abnormal,6545,464,3,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6546,2021-02-25,17333.432585199174,312,Urgent,2021-03-21,Normal,6546,238,4,14,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6548,2022-06-01,11958.833783556503,161,Emergency,2022-06-26,Normal,6548,222,2,26,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6549,2022-09-01,26167.673580693387,307,Urgent,2022-09-22,Abnormal,6549,118,3,29,,,,DISCHARGED -6550,2023-06-11,8573.572947078203,478,Elective,,Normal,6550,312,3,18,,,,OPEN -6551,2020-11-07,5293.745359537666,257,Elective,2020-11-24,Abnormal,6551,263,3,9,,,,DISCHARGED -6552,2023-10-15,40239.94509618528,329,Elective,2023-10-19,Abnormal,6552,206,0,23,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -6553,2021-11-28,28684.25135348031,210,Elective,2021-12-21,Normal,6553,94,3,19,,,,DISCHARGED -6554,2019-08-23,17657.416351515432,311,Elective,2019-08-30,Normal,6554,372,0,13,,,,DISCHARGED -6555,2019-06-14,14003.265128834311,284,Elective,2019-06-17,Normal,6555,221,1,3,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -6556,2021-01-26,38851.55395328927,333,Emergency,2021-02-06,Inconclusive,6556,365,0,24,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6557,2023-10-18,28410.24745176708,469,Elective,2023-10-24,Normal,6557,275,3,10,,,,DISCHARGED -6558,2022-12-07,48207.54706603848,450,Elective,2022-12-16,Inconclusive,6558,379,4,2,,,,DISCHARGED -6559,2020-10-26,36269.68762402382,126,Urgent,2020-11-21,Normal,6559,230,4,22,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -6560,2018-12-24,35229.37872668747,289,Emergency,2019-01-12,Inconclusive,6560,308,1,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -6561,2021-05-11,43796.59703445785,346,Urgent,2021-05-30,Normal,6561,118,3,6,,,,DISCHARGED -6562,2020-08-28,35400.33811486774,267,Urgent,2020-09-25,Inconclusive,6562,267,0,25,,,,DISCHARGED -6563,2021-11-17,9127.477608107109,240,Urgent,2021-11-27,Inconclusive,6563,432,4,10,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6564,2022-08-30,20564.355730617037,188,Elective,2022-09-07,Normal,6564,272,2,17,,,,DISCHARGED -6565,2019-11-25,2819.2696253223567,243,Emergency,2019-12-06,Normal,6565,63,3,27,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -6566,2019-06-23,14904.474279957903,214,Emergency,2019-07-20,Abnormal,6566,297,3,13,,,,DISCHARGED -6567,2019-08-29,5425.935372465265,331,Emergency,2019-08-30,Normal,6567,349,2,13,,,,DISCHARGED -6568,2021-07-03,45776.51509565352,420,Urgent,2021-07-07,Inconclusive,6568,412,4,5,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -6569,2020-12-18,27689.944263444944,281,Elective,2021-01-13,Inconclusive,6569,402,2,28,,,,DISCHARGED -6570,2023-02-21,14851.789382675071,471,Urgent,2023-03-17,Abnormal,6570,493,1,8,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6571,2019-08-01,31233.542046345,334,Elective,2019-08-17,Abnormal,6571,10,0,21,,,,DISCHARGED -6572,2021-10-17,9428.84136505866,460,Emergency,2021-11-01,Normal,6572,97,0,2,,,,DISCHARGED -6573,2022-08-13,5185.303973295573,401,Emergency,2022-09-06,Inconclusive,6573,433,4,16,,,,DISCHARGED -6574,2022-10-08,21430.717821295453,181,Elective,2022-10-22,Inconclusive,6574,70,2,27,,,,DISCHARGED -6575,2023-07-28,28255.311069061085,428,Urgent,2023-08-22,Normal,6575,363,3,11,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -6576,2021-01-30,30713.20589605569,227,Emergency,2021-02-16,Inconclusive,6576,57,3,3,,,,DISCHARGED -6577,2019-09-01,22984.49013461101,265,Elective,2019-09-19,Abnormal,6577,289,3,19,,,,DISCHARGED -6578,2020-08-14,45844.47258661566,236,Urgent,2020-08-21,Abnormal,6578,250,1,15,,,,DISCHARGED -6579,2020-04-05,11153.824718376234,347,Emergency,2020-04-15,Abnormal,6579,275,1,28,,,,DISCHARGED -6580,2019-04-14,29264.84724292384,252,Elective,2019-04-30,Abnormal,6580,49,3,23,,,,DISCHARGED -6581,2021-08-17,33337.25114824751,461,Elective,2021-09-09,Abnormal,6581,357,4,9,,,,DISCHARGED -6582,2023-02-23,43489.81540707157,249,Urgent,2023-03-25,Normal,6582,215,1,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6583,2023-10-12,14445.168188533233,168,Urgent,2023-10-18,Inconclusive,6583,393,1,29,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -6585,2021-10-10,25256.85518795779,212,Urgent,2021-10-26,Inconclusive,6585,415,0,28,,,,DISCHARGED -6586,2020-08-19,47175.7431904998,445,Urgent,2020-08-23,Inconclusive,6586,51,0,6,,,,DISCHARGED -6587,2021-04-23,39416.18648829994,227,Emergency,2021-05-10,Normal,6587,270,4,9,,,,DISCHARGED -6588,2019-10-04,42051.586444843146,386,Urgent,2019-10-11,Abnormal,6588,484,1,6,,,,DISCHARGED -6588,2021-08-08,11306.885137040565,337,Elective,2021-08-21,Normal,8715,83,1,22,,,,DISCHARGED -6589,2018-12-11,12727.895202263906,374,Urgent,2019-01-01,Abnormal,6589,386,2,27,,,,DISCHARGED -6590,2020-10-26,34022.298168073205,329,Urgent,2020-11-23,Inconclusive,6590,292,4,17,,,,DISCHARGED -6591,2021-02-23,44957.289633932174,169,Elective,2021-03-19,Abnormal,6591,125,4,8,,,,DISCHARGED -6592,2020-03-17,43048.163649792135,208,Elective,2020-04-12,Inconclusive,6592,295,2,21,,,,DISCHARGED -6593,2019-02-13,26576.76628783185,414,Urgent,2019-03-10,Abnormal,6593,71,2,17,,,,DISCHARGED -6594,2020-06-04,9152.50786332433,241,Elective,2020-06-06,Inconclusive,6594,295,0,16,,,,DISCHARGED -6594,2023-05-16,20103.47591684117,155,Urgent,2023-05-20,Inconclusive,9326,235,4,10,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -6595,2023-10-09,24937.61996852029,274,Emergency,,Inconclusive,6595,55,4,0,,,,OPEN -6596,2020-10-17,29039.929192462605,237,Emergency,2020-11-02,Abnormal,6596,406,2,16,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6597,2022-08-17,11023.592023568868,349,Emergency,2022-08-21,Normal,6597,359,3,3,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6598,2023-06-14,10703.41961658105,362,Elective,,Abnormal,6598,394,3,3,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -6599,2022-07-03,16106.94367703098,268,Urgent,2022-08-02,Inconclusive,6599,109,0,13,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -6600,2018-12-26,2024.8128271470955,173,Emergency,2019-01-21,Normal,6600,191,3,27,,,,DISCHARGED -6601,2021-09-27,29203.22330675468,319,Urgent,2021-10-05,Abnormal,6601,391,3,8,,,,DISCHARGED -6601,2021-09-25,36358.13618181468,466,Elective,2021-10-03,Abnormal,7028,92,3,12,,,,DISCHARGED -6602,2022-09-11,16970.758233044584,253,Urgent,2022-09-24,Abnormal,6602,349,1,27,,,,DISCHARGED -6603,2023-05-02,30199.60841912832,212,Urgent,2023-05-13,Normal,6603,55,0,27,,,,DISCHARGED -6604,2023-08-21,16609.266625408978,386,Urgent,2023-08-22,Inconclusive,6604,59,2,15,,,,DISCHARGED -6606,2020-12-05,29735.58711549783,386,Elective,2020-12-21,Abnormal,6606,137,3,0,,,,DISCHARGED -6607,2023-05-15,46846.27531714412,211,Elective,2023-06-05,Normal,6607,38,1,2,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -6608,2019-10-03,8185.924507537746,351,Elective,2019-10-14,Inconclusive,6608,27,3,18,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -6610,2023-06-04,41800.11373715216,494,Emergency,2023-06-09,Abnormal,6610,48,1,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -6611,2019-04-01,15583.457574642316,499,Urgent,2019-04-15,Normal,6611,419,0,17,,,,DISCHARGED -6612,2020-08-30,12432.654015868047,355,Emergency,2020-08-31,Normal,6612,124,3,5,,,,DISCHARGED -6613,2019-04-16,31646.438830694795,241,Emergency,2019-05-06,Abnormal,6613,12,1,26,,,,DISCHARGED -6614,2020-11-18,26371.461895141678,224,Emergency,2020-12-11,Normal,6614,479,4,19,,,,DISCHARGED -6615,2022-02-10,35122.17191646656,333,Elective,2022-02-14,Normal,6615,35,4,28,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -6617,2022-06-26,5934.634779140558,137,Urgent,2022-06-28,Normal,6617,100,1,25,,,,DISCHARGED -6618,2021-08-26,32974.01568924844,101,Emergency,2021-08-30,Normal,6618,281,3,5,,,,DISCHARGED -6619,2021-12-08,47678.16360697733,476,Emergency,2021-12-28,Inconclusive,6619,85,3,28,,,,DISCHARGED -6620,2022-10-18,42140.96938429981,458,Urgent,2022-11-03,Normal,6620,3,0,4,,,,DISCHARGED -6621,2019-07-29,19324.83321065109,482,Emergency,2019-07-30,Abnormal,6621,222,0,11,,,,DISCHARGED -6622,2020-06-04,26232.216458243856,337,Emergency,2020-06-07,Normal,6622,337,2,8,,,,DISCHARGED -6623,2021-07-17,7069.395437945416,376,Elective,2021-08-07,Normal,6623,447,0,8,,,,DISCHARGED -6624,2021-10-24,17316.980219845973,407,Emergency,2021-11-14,Inconclusive,6624,165,3,16,,,,DISCHARGED -6625,2023-02-16,37631.73449268179,260,Urgent,,Abnormal,6625,382,2,18,,,,OPEN -6626,2021-10-23,43604.154287424295,460,Elective,2021-11-12,Normal,6626,343,0,16,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -6627,2022-11-17,8836.849299455425,138,Emergency,2022-12-15,Inconclusive,6627,382,1,21,,,,DISCHARGED -6628,2022-03-13,12194.934656706071,353,Urgent,2022-03-27,Normal,6628,375,4,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6629,2023-08-10,4261.993956501122,156,Emergency,,Normal,6629,470,0,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -6630,2020-12-07,18610.67393743832,181,Emergency,2020-12-19,Normal,6630,277,0,2,,,,DISCHARGED -6631,2022-03-30,2279.8670176115047,127,Emergency,2022-04-20,Normal,6631,129,1,13,,,,DISCHARGED -6632,2023-03-25,42120.73020131739,300,Elective,2023-04-22,Inconclusive,6632,30,3,16,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6633,2021-01-23,7877.192497358189,431,Elective,2021-02-02,Normal,6633,374,1,21,,,,DISCHARGED -6634,2020-11-16,10441.187850098246,434,Emergency,2020-11-18,Abnormal,6634,10,0,15,,,,DISCHARGED -6635,2021-06-18,23211.02340624118,442,Urgent,2021-07-14,Abnormal,6635,475,3,20,,,,DISCHARGED -6637,2023-04-30,31989.563754005798,269,Elective,,Normal,6637,301,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",OPEN -6638,2020-01-30,12737.149025052233,439,Elective,2020-02-15,Abnormal,6638,95,0,27,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6639,2023-02-21,12709.075514934071,431,Emergency,2023-03-05,Normal,6639,189,1,23,,,,DISCHARGED -6641,2020-04-27,37549.255820193415,285,Emergency,2020-05-26,Inconclusive,6641,452,2,29,,,,DISCHARGED -6642,2023-01-16,43857.57648295956,492,Urgent,,Inconclusive,6642,191,4,1,,,,OPEN -6643,2022-05-17,5453.882929190576,128,Urgent,2022-06-09,Abnormal,6643,485,2,7,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6644,2022-12-19,48050.609947525205,217,Emergency,2023-01-13,Inconclusive,6644,265,1,11,,,,DISCHARGED -6645,2018-11-19,27229.912943286738,301,Urgent,2018-11-25,Normal,6645,423,2,20,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -6646,2020-06-19,24487.848455260464,459,Emergency,2020-07-03,Normal,6646,127,1,15,,,,DISCHARGED -6647,2023-09-16,21571.40538230428,334,Urgent,2023-10-15,Abnormal,6647,237,0,7,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -6648,2022-12-29,17542.226992311284,400,Urgent,2023-01-27,Abnormal,6648,407,3,27,,,,DISCHARGED -6649,2022-11-09,31234.537627924605,194,Urgent,2022-11-30,Abnormal,6649,354,4,15,,,,DISCHARGED -6650,2019-08-18,16001.884800259271,361,Urgent,2019-08-31,Inconclusive,6650,427,3,9,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -6651,2019-04-12,34983.98196849732,380,Urgent,2019-05-05,Inconclusive,6651,111,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6652,2021-07-04,21317.912733759804,419,Emergency,2021-07-23,Abnormal,6652,315,3,14,,,,DISCHARGED -6653,2021-12-04,19905.46212920566,453,Urgent,2021-12-30,Abnormal,6653,445,1,3,,,,DISCHARGED -6654,2019-07-28,45148.610409885136,468,Elective,2019-07-30,Inconclusive,6654,342,1,25,,,,DISCHARGED -6655,2020-08-14,39915.43238922771,182,Emergency,2020-09-02,Inconclusive,6655,144,4,14,,,,DISCHARGED -6656,2022-09-10,39731.59519659988,279,Urgent,2022-10-01,Abnormal,6656,64,1,3,,,,DISCHARGED -6657,2021-10-17,34316.53293777999,304,Emergency,2021-10-21,Inconclusive,6657,246,1,29,,,,DISCHARGED -6658,2020-08-03,36587.26130657394,398,Urgent,2020-08-07,Abnormal,6658,222,1,10,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -6659,2023-07-27,29100.86060251551,138,Elective,,Normal,6659,478,1,5,,,,OPEN -6660,2020-05-29,20062.201482819277,239,Urgent,2020-06-28,Abnormal,6660,489,0,3,,,,DISCHARGED -6661,2019-08-13,8849.129967443303,300,Elective,2019-08-20,Inconclusive,6661,312,4,8,,,,DISCHARGED -6662,2021-04-22,41734.13586213612,122,Emergency,2021-05-19,Inconclusive,6662,438,1,8,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -6664,2019-07-25,26645.33840257226,265,Elective,2019-07-30,Normal,6664,105,4,2,,,,DISCHARGED -6665,2021-08-22,45729.3716678944,411,Elective,2021-09-05,Inconclusive,6665,180,2,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6666,2021-08-11,20760.247031449388,232,Urgent,2021-08-16,Inconclusive,6666,183,0,27,,,,DISCHARGED -6667,2018-12-17,43425.79603214072,489,Urgent,2018-12-30,Inconclusive,6667,225,1,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -6668,2021-10-30,8091.971315786723,439,Elective,2021-11-22,Normal,6668,264,0,14,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6669,2020-01-13,48390.96913421875,491,Elective,2020-01-25,Normal,6669,277,0,27,,,,DISCHARGED -6669,2021-10-23,11525.16141640984,248,Elective,2021-11-15,Inconclusive,7172,396,2,8,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -6669,2020-05-03,13788.72195528592,219,Elective,2020-06-01,Abnormal,9911,88,4,1,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6671,2021-05-18,31590.4900008648,344,Urgent,2021-06-05,Inconclusive,6671,175,0,2,,,,DISCHARGED -6672,2022-08-05,9203.703947789943,165,Urgent,2022-08-31,Inconclusive,6672,17,3,25,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -6673,2022-11-30,17473.093354464032,282,Emergency,2022-12-04,Normal,6673,370,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6674,2020-08-07,31116.180508175567,429,Urgent,2020-08-14,Normal,6674,459,3,11,,,,DISCHARGED -6675,2021-11-15,30692.210433559954,136,Urgent,2021-11-27,Abnormal,6675,423,2,15,,,,DISCHARGED -6676,2023-06-14,4888.096416293663,262,Elective,2023-07-06,Abnormal,6676,400,3,4,,,,DISCHARGED -6677,2023-06-14,13566.573581326702,230,Elective,2023-06-20,Inconclusive,6677,398,3,9,,,,DISCHARGED -6678,2021-11-06,9812.976468835102,279,Emergency,2021-11-16,Normal,6678,105,0,27,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -6679,2022-02-24,42041.831748304,451,Urgent,2022-03-21,Inconclusive,6679,270,0,14,,,,DISCHARGED -6680,2019-04-15,17845.61428582277,289,Elective,2019-05-02,Abnormal,6680,462,2,13,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6681,2020-06-19,6607.440035325331,451,Urgent,2020-07-17,Inconclusive,6681,318,4,13,,,,DISCHARGED -6681,2019-03-04,36616.3341896765,286,Emergency,2019-03-09,Normal,7087,166,0,22,,,,DISCHARGED -6682,2022-10-05,46307.90735658391,449,Emergency,2022-10-11,Abnormal,6682,12,0,12,,,,DISCHARGED -6683,2020-03-09,14997.264071857058,471,Elective,2020-03-17,Inconclusive,6683,336,1,15,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6684,2020-06-16,34922.53068334383,262,Emergency,2020-07-08,Normal,6684,31,0,29,,,,DISCHARGED -6685,2022-03-15,41051.61438023765,198,Urgent,2022-03-16,Abnormal,6685,392,4,7,,,,DISCHARGED -6686,2019-08-23,27317.565132086816,144,Emergency,2019-09-16,Normal,6686,39,1,7,,,,DISCHARGED -6687,2023-06-26,39942.01391426238,142,Urgent,2023-06-27,Normal,6687,147,3,29,,,,DISCHARGED -6688,2020-11-20,34388.85149958681,233,Urgent,2020-11-22,Abnormal,6688,217,3,16,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -6689,2021-07-22,43552.257548488335,292,Elective,2021-08-03,Inconclusive,6689,218,1,29,,,,DISCHARGED -6690,2021-09-06,12929.735904777008,321,Elective,2021-09-29,Inconclusive,6690,468,1,16,,,,DISCHARGED -6691,2020-10-19,12102.912631949252,445,Urgent,2020-10-30,Normal,6691,81,1,2,,,,DISCHARGED -6692,2019-11-03,26162.20324817585,203,Emergency,2019-11-09,Inconclusive,6692,332,2,0,,,,DISCHARGED -6693,2019-08-31,25558.31376305041,395,Emergency,2019-09-19,Normal,6693,207,4,16,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -6694,2021-09-09,21775.055716108727,275,Emergency,2021-09-10,Abnormal,6694,200,4,25,,,,DISCHARGED -6695,2021-12-08,10833.651985964583,117,Elective,2022-01-05,Abnormal,6695,446,3,23,,,,DISCHARGED -6696,2021-06-09,31895.507606318053,333,Urgent,2021-06-24,Inconclusive,6696,331,3,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -6697,2020-08-19,38136.54060508222,218,Elective,2020-08-25,Abnormal,6697,427,3,16,,,,DISCHARGED -6698,2020-03-09,2809.921442528688,256,Emergency,2020-03-31,Abnormal,6698,37,0,24,,,,DISCHARGED -6699,2021-12-27,2894.396184118178,483,Emergency,2022-01-20,Abnormal,6699,210,3,1,,,,DISCHARGED -6701,2019-03-18,39136.08803197802,470,Elective,2019-03-21,Abnormal,6701,443,1,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6702,2021-10-02,31687.996097646643,161,Elective,2021-10-04,Inconclusive,6702,326,3,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6703,2019-06-06,31589.81782293324,164,Urgent,2019-06-29,Inconclusive,6703,248,1,6,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -6704,2023-01-20,24604.88403923852,336,Elective,,Abnormal,6704,226,2,24,,,,OPEN -6705,2022-01-24,35481.76144805839,224,Emergency,2022-02-11,Normal,6705,47,0,18,,,,DISCHARGED -6706,2019-12-24,7251.787459353241,192,Elective,2020-01-11,Inconclusive,6706,17,0,0,,,,DISCHARGED -6707,2020-08-23,16860.15690378194,314,Emergency,2020-08-26,Inconclusive,6707,399,4,16,,,,DISCHARGED -6708,2019-07-12,40137.37554459394,131,Urgent,2019-07-26,Inconclusive,6708,438,2,26,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -6709,2020-02-15,36228.6105527836,108,Elective,2020-03-08,Abnormal,6709,294,1,9,,,,DISCHARGED -6709,2023-04-20,26036.911033581742,474,Emergency,2023-05-04,Inconclusive,8514,195,2,5,,,,DISCHARGED -6710,2019-01-11,22235.937443538674,326,Elective,2019-01-31,Normal,6710,186,0,6,,,,DISCHARGED -6711,2021-01-07,10686.772413413302,185,Urgent,2021-01-08,Abnormal,6711,344,1,24,,,,DISCHARGED -6712,2022-12-15,26243.822918569495,237,Urgent,2022-12-17,Abnormal,6712,223,2,5,,,,DISCHARGED -6713,2023-10-15,41129.046340795176,377,Emergency,2023-11-13,Abnormal,6713,317,0,4,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -6714,2021-11-06,10895.017983367385,410,Emergency,2021-11-11,Normal,6714,487,1,29,,,,DISCHARGED -6715,2020-03-13,36417.10103071475,183,Urgent,2020-03-31,Normal,6715,396,1,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6715,2021-02-15,23966.741174988038,477,Emergency,2021-02-23,Abnormal,9853,364,0,17,,,,DISCHARGED -6716,2020-05-13,13242.635557259016,139,Emergency,2020-05-20,Abnormal,6716,336,1,23,,,,DISCHARGED -6716,2021-10-16,17953.42610025,402,Urgent,2021-11-03,Inconclusive,9539,496,0,16,,,,DISCHARGED -6717,2022-09-04,5530.717638599587,461,Emergency,2022-09-10,Normal,6717,228,3,23,,,,DISCHARGED -6718,2022-09-14,14219.481427041805,393,Emergency,2022-10-09,Normal,6718,389,3,26,,,,DISCHARGED -6719,2020-08-09,47827.56024301192,429,Emergency,2020-08-15,Inconclusive,6719,466,1,25,,,,DISCHARGED -6720,2023-05-13,10898.556311882634,407,Emergency,2023-06-03,Abnormal,6720,76,1,26,,,,DISCHARGED -6721,2018-11-19,18076.80553372419,269,Urgent,2018-12-01,Inconclusive,6721,187,0,22,,,,DISCHARGED -6723,2019-06-11,11503.186814887396,368,Urgent,2019-07-04,Abnormal,6723,345,1,6,,,,DISCHARGED -6724,2021-12-22,29304.21466771696,437,Urgent,2022-01-10,Abnormal,6724,269,4,20,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6725,2020-07-07,9396.348495937347,135,Urgent,2020-07-10,Inconclusive,6725,94,3,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -6726,2019-09-05,21974.747036402245,474,Urgent,2019-09-09,Inconclusive,6726,309,1,6,,,,DISCHARGED -6727,2020-08-16,17547.719595956114,268,Emergency,2020-08-24,Inconclusive,6727,131,1,22,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -6728,2019-03-10,39080.0862725537,111,Elective,2019-03-21,Normal,6728,38,2,6,,,,DISCHARGED -6729,2022-03-03,25854.2731122455,161,Emergency,2022-03-18,Inconclusive,6729,71,1,15,,,,DISCHARGED -6730,2019-06-16,48074.11973742916,233,Elective,2019-07-03,Inconclusive,6730,280,4,11,,,,DISCHARGED -6731,2021-04-12,38189.75473668005,145,Emergency,2021-04-29,Normal,6731,332,3,14,,,,DISCHARGED -6732,2022-02-26,5338.401611256891,407,Elective,2022-03-25,Inconclusive,6732,159,2,14,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6733,2021-07-08,17663.70429305998,355,Elective,2021-07-22,Inconclusive,6733,186,0,10,,,,DISCHARGED -6734,2021-01-25,21538.449231231123,376,Urgent,2021-02-24,Inconclusive,6734,485,0,1,,,,DISCHARGED -6735,2019-02-11,30998.720689258167,151,Urgent,2019-02-20,Abnormal,6735,190,3,2,,,,DISCHARGED -6736,2020-04-22,37652.05616652651,499,Urgent,2020-05-17,Normal,6736,421,0,18,,,,DISCHARGED -6738,2021-06-24,41225.23507086748,249,Emergency,2021-06-26,Abnormal,6738,119,4,19,,,,DISCHARGED -6739,2020-05-25,35733.14794121401,175,Emergency,2020-06-02,Normal,6739,219,1,27,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6740,2022-10-21,26383.9861687766,139,Urgent,2022-11-14,Normal,6740,52,3,24,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -6741,2022-10-07,32760.62008856683,214,Emergency,2022-10-18,Normal,6741,221,2,25,,,,DISCHARGED -6743,2022-05-30,19702.908359676472,117,Emergency,2022-06-01,Inconclusive,6743,450,1,14,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -6744,2022-04-16,3958.287461418514,389,Elective,2022-05-05,Abnormal,6744,411,0,15,,,,DISCHARGED -6745,2022-12-26,23387.18652094939,389,Emergency,2023-01-14,Abnormal,6745,130,0,0,,,,DISCHARGED -6745,2020-11-23,38807.74978960813,348,Emergency,2020-12-02,Abnormal,9541,236,2,14,,,,DISCHARGED -6746,2020-01-28,1665.8450468960314,158,Urgent,2020-02-15,Abnormal,6746,245,4,11,,,,DISCHARGED -6747,2021-05-20,6281.270091872381,127,Elective,2021-05-26,Inconclusive,6747,225,2,6,,,,DISCHARGED -6748,2021-11-26,10801.52640736577,140,Emergency,2021-11-29,Abnormal,6748,207,3,6,,,,DISCHARGED -6749,2021-03-03,23153.23633536031,254,Urgent,2021-03-23,Inconclusive,6749,405,2,10,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6750,2022-06-14,13167.279299986343,465,Urgent,2022-06-21,Normal,6750,95,0,19,,,,DISCHARGED -6752,2020-04-04,42927.09861722169,134,Emergency,2020-04-29,Abnormal,6752,421,4,28,,,,DISCHARGED -6753,2020-10-16,47127.78976187629,111,Elective,2020-11-01,Abnormal,6753,199,4,10,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6754,2020-10-11,5688.87599328374,359,Emergency,2020-10-18,Normal,6754,246,2,16,,,,DISCHARGED -6755,2022-01-01,21681.11327240588,119,Elective,2022-01-20,Abnormal,6755,71,3,2,,,,DISCHARGED -6756,2018-12-07,5067.668484927059,180,Elective,2018-12-27,Inconclusive,6756,317,0,15,,,,DISCHARGED -6758,2020-08-09,34412.56846460215,491,Urgent,2020-08-18,Normal,6758,184,1,4,,,,DISCHARGED -6759,2020-09-13,39798.2634460689,219,Emergency,2020-09-15,Inconclusive,6759,5,4,27,,,,DISCHARGED -6760,2019-03-02,46762.11167563197,115,Emergency,2019-03-14,Normal,6760,205,2,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -6761,2020-11-10,15084.550448952972,301,Emergency,2020-12-08,Normal,6761,31,3,22,,,,DISCHARGED -6762,2023-02-12,32089.721345788374,384,Urgent,,Abnormal,6762,98,3,29,,,,OPEN -6763,2019-03-15,16579.85894640888,263,Urgent,2019-03-28,Abnormal,6763,393,0,25,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -6763,2019-10-25,18993.746786159045,126,Emergency,2019-11-22,Abnormal,9572,386,4,25,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6764,2023-03-11,4082.719248015938,377,Emergency,2023-04-06,Abnormal,6764,255,0,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6764,2022-01-22,39712.48183752979,370,Urgent,2022-02-10,Inconclusive,8254,186,1,27,,,,DISCHARGED -6765,2022-11-09,9972.098326065843,483,Emergency,2022-11-13,Abnormal,6765,75,1,9,,,,DISCHARGED -6766,2021-05-08,22033.469341008127,277,Elective,2021-05-30,Normal,6766,176,1,4,,,,DISCHARGED -6767,2020-12-18,29978.472948887087,430,Urgent,2020-12-26,Inconclusive,6767,314,3,14,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -6768,2021-05-21,8885.902239498577,193,Elective,2021-06-07,Abnormal,6768,286,4,11,,,,DISCHARGED -6769,2020-04-28,18888.90688612863,249,Elective,2020-04-30,Inconclusive,6769,348,0,9,,,,DISCHARGED -6770,2023-01-19,8307.850650717448,187,Emergency,2023-02-16,Normal,6770,254,0,21,,,,DISCHARGED -6771,2022-10-04,49891.4023850776,498,Emergency,2022-11-03,Normal,6771,324,1,16,,,,DISCHARGED -6772,2021-04-08,28388.19549054882,247,Urgent,2021-04-21,Normal,6772,189,4,19,,,,DISCHARGED -6774,2020-08-01,42260.23384085925,111,Urgent,2020-08-15,Inconclusive,6774,307,4,19,,,,DISCHARGED -6774,2019-01-15,37917.90879953535,413,Emergency,2019-01-21,Normal,6829,344,2,10,,,,DISCHARGED -6776,2019-05-17,23091.707904819024,453,Emergency,2019-06-08,Abnormal,6776,126,4,7,,,,DISCHARGED -6777,2023-08-08,23423.81058518871,423,Emergency,2023-08-10,Normal,6777,424,4,14,,,,DISCHARGED -6778,2020-06-15,29638.165586676943,200,Urgent,2020-07-10,Abnormal,6778,286,0,1,,,,DISCHARGED -6779,2021-03-04,3611.919798361324,289,Urgent,2021-03-21,Abnormal,6779,253,4,16,,,,DISCHARGED -6780,2021-12-18,36805.26902320039,358,Emergency,2022-01-06,Normal,6780,212,4,22,,,,DISCHARGED -6781,2021-02-23,27536.81055158076,191,Emergency,2021-03-16,Inconclusive,6781,249,0,5,,,,DISCHARGED -6782,2022-02-20,13848.023110436465,179,Urgent,2022-02-25,Inconclusive,6782,83,4,20,,,,DISCHARGED -6784,2022-03-17,49283.835528546144,193,Urgent,2022-04-10,Normal,6784,486,0,27,,,,DISCHARGED -6785,2019-12-28,21661.62726686921,394,Elective,2020-01-13,Normal,6785,382,2,12,,,,DISCHARGED -6786,2021-08-06,37768.322790260034,339,Elective,2021-08-21,Inconclusive,6786,405,3,28,,,,DISCHARGED -6787,2019-02-16,36635.16527108637,376,Urgent,2019-02-27,Normal,6787,387,0,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -6788,2022-03-01,1265.5501148893609,169,Emergency,2022-03-22,Normal,6788,12,0,7,,,,DISCHARGED -6788,2020-09-15,5808.278937785468,360,Urgent,2020-10-08,Abnormal,9675,44,4,10,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -6789,2022-06-14,25986.222968787864,424,Urgent,2022-06-15,Inconclusive,6789,126,0,14,,,,DISCHARGED -6790,2021-02-16,11138.59870069578,300,Emergency,2021-03-14,Inconclusive,6790,425,1,12,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6792,2020-12-11,10724.794197778696,193,Urgent,2020-12-19,Normal,6792,113,1,17,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -6793,2022-10-05,6034.367887122445,106,Emergency,2022-10-07,Inconclusive,6793,432,2,17,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -6794,2021-08-12,34688.95857647393,214,Emergency,2021-09-10,Abnormal,6794,275,0,24,,,,DISCHARGED -6795,2021-12-08,47172.02721470661,468,Urgent,2021-12-16,Abnormal,6795,499,4,16,,,,DISCHARGED -6796,2019-08-20,15793.149417861488,448,Elective,2019-09-16,Abnormal,6796,204,4,21,,,,DISCHARGED -6797,2021-07-17,23228.220638015995,338,Urgent,2021-08-09,Normal,6797,336,3,12,,,,DISCHARGED -6798,2021-04-21,15489.840599610798,240,Emergency,2021-05-16,Inconclusive,6798,437,2,28,,,,DISCHARGED -6799,2019-10-05,23851.84821955305,488,Elective,2019-10-18,Abnormal,6799,419,4,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6800,2022-06-28,49134.45183489225,305,Emergency,2022-07-21,Abnormal,6800,480,3,28,,,,DISCHARGED -6801,2020-04-03,20640.491350576103,450,Emergency,2020-04-25,Normal,6801,384,4,20,,,,DISCHARGED -6802,2022-09-23,26922.832193811475,451,Urgent,2022-10-11,Inconclusive,6802,398,3,23,,,,DISCHARGED -6803,2019-06-24,9557.985592313362,347,Emergency,2019-07-13,Normal,6803,460,1,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -6804,2021-09-14,33731.49187331864,444,Urgent,2021-09-28,Inconclusive,6804,272,1,28,,,,DISCHARGED -6805,2019-05-18,5905.255937904605,105,Elective,2019-06-14,Normal,6805,407,4,11,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6806,2021-06-12,37833.68041213759,468,Emergency,2021-07-04,Abnormal,6806,57,2,3,,,,DISCHARGED -6807,2021-04-11,37240.11656114114,133,Urgent,2021-04-20,Normal,6807,327,0,23,,,,DISCHARGED -6808,2023-09-30,19847.893217887427,364,Elective,2023-10-21,Inconclusive,6808,497,2,26,,,,DISCHARGED -6809,2019-06-25,41278.45968872735,278,Urgent,2019-07-19,Normal,6809,218,2,26,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6810,2023-10-15,11490.13540107364,290,Urgent,,Normal,6810,108,0,25,,,,OPEN -6811,2023-09-01,40621.44835822586,242,Emergency,,Abnormal,6811,278,1,10,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -6812,2023-03-15,8875.007087375528,444,Urgent,2023-04-09,Abnormal,6812,173,1,13,,,,DISCHARGED -6813,2023-10-23,38274.79803427497,425,Urgent,2023-11-05,Inconclusive,6813,327,0,17,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -6814,2023-10-04,49554.98005095694,450,Urgent,,Abnormal,6814,263,3,6,,,,OPEN -6815,2021-11-02,46067.11710227902,496,Emergency,2021-12-02,Abnormal,6815,314,2,4,,,,DISCHARGED -6817,2020-06-13,12098.951932052512,399,Urgent,2020-07-08,Normal,6817,473,4,15,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -6818,2023-08-13,3273.3393055642578,444,Elective,2023-09-06,Abnormal,6818,110,1,10,,,,DISCHARGED -6819,2022-10-01,25248.056598320552,388,Elective,2022-10-30,Inconclusive,6819,186,4,21,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6820,2019-05-27,27535.76280641123,425,Urgent,2019-06-10,Inconclusive,6820,268,0,2,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -6821,2019-08-06,33352.49130228466,277,Emergency,2019-08-09,Normal,6821,422,4,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6822,2023-10-20,46919.172747968114,443,Elective,2023-10-27,Abnormal,6822,228,4,10,,,,DISCHARGED -6823,2020-03-25,49332.83843060683,456,Urgent,2020-03-27,Normal,6823,496,2,9,,,,DISCHARGED -6824,2023-06-29,31941.383308484303,353,Emergency,2023-07-28,Normal,6824,155,0,22,,,,DISCHARGED -6825,2020-01-22,39259.94568729573,456,Elective,2020-01-31,Abnormal,6825,472,4,22,,,,DISCHARGED -6826,2021-10-31,42923.98717991964,337,Elective,2021-11-28,Abnormal,6826,188,1,1,,,,DISCHARGED -6827,2023-08-16,22258.13357326732,281,Emergency,,Inconclusive,6827,271,0,15,,,,OPEN -6828,2022-12-18,39894.473851939285,215,Emergency,2023-01-06,Inconclusive,6828,374,1,16,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6830,2022-02-23,36561.052219648,296,Urgent,2022-03-02,Inconclusive,6830,1,3,9,,,,DISCHARGED -6831,2019-08-21,3709.635192406705,469,Elective,2019-09-11,Abnormal,6831,245,4,17,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6832,2021-03-21,44195.71446070025,153,Elective,2021-03-22,Abnormal,6832,209,0,11,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -6833,2019-10-28,3871.021510012909,442,Emergency,2019-11-02,Normal,6833,400,1,7,,,,DISCHARGED -6834,2018-12-13,15330.377847638065,495,Elective,2019-01-07,Inconclusive,6834,285,4,26,,,,DISCHARGED -6835,2022-05-14,3542.558009010238,450,Elective,2022-05-30,Normal,6835,358,2,25,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6836,2020-09-03,11639.12315736314,457,Urgent,2020-09-25,Normal,6836,12,1,2,,,,DISCHARGED -6836,2021-06-12,30105.37812991968,192,Elective,2021-06-26,Inconclusive,9689,95,1,26,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -6837,2020-06-17,12222.118534809171,305,Emergency,2020-07-13,Inconclusive,6837,497,3,19,,,,DISCHARGED -6838,2023-06-28,34796.30106044404,497,Emergency,,Normal,6838,220,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",OPEN -6839,2021-12-15,38823.5029365312,115,Elective,2021-12-17,Abnormal,6839,237,3,2,,,,DISCHARGED -6839,2019-06-29,13336.24486339428,466,Emergency,2019-07-04,Normal,9640,93,2,5,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6840,2021-04-11,3927.2914703935953,226,Elective,2021-04-21,Inconclusive,6840,337,1,1,,,,DISCHARGED -6841,2022-03-19,19799.89570417404,486,Elective,2022-04-18,Normal,6841,268,3,2,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6842,2022-11-08,20543.31824474834,361,Emergency,2022-11-13,Inconclusive,6842,170,4,16,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6843,2023-09-19,43066.20041767901,419,Elective,,Abnormal,6843,468,2,8,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6844,2021-02-04,15886.513701909227,485,Emergency,2021-03-03,Normal,6844,93,1,3,,,,DISCHARGED -6845,2021-08-25,24478.59005983633,443,Urgent,2021-08-30,Normal,6845,148,0,21,,,,DISCHARGED -6846,2020-06-21,31928.77706783889,254,Elective,2020-07-03,Inconclusive,6846,111,2,22,,,,DISCHARGED -6847,2019-12-29,40522.767502145696,493,Emergency,2020-01-09,Abnormal,6847,54,2,1,,,,DISCHARGED -6848,2023-05-01,40028.13037664336,180,Elective,2023-05-11,Abnormal,6848,336,4,23,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6849,2020-11-26,11106.76612539273,218,Urgent,2020-12-13,Inconclusive,6849,423,2,27,,,,DISCHARGED -6850,2019-07-01,41841.76114562413,257,Urgent,2019-07-13,Normal,6850,466,2,8,,,,DISCHARGED -6851,2019-12-15,49608.493204814935,460,Emergency,2020-01-14,Abnormal,6851,115,4,13,,,,DISCHARGED -6852,2019-10-12,38258.90955394836,153,Elective,2019-10-24,Normal,6852,142,4,25,,,,DISCHARGED -6853,2023-02-26,14062.51605492558,339,Emergency,2023-03-20,Normal,6853,200,3,10,,,,DISCHARGED -6854,2022-01-29,30532.64595498513,332,Emergency,2022-02-20,Inconclusive,6854,179,1,1,,,,DISCHARGED -6855,2021-03-05,29017.230643956736,356,Emergency,2021-03-08,Normal,6855,201,1,20,,,,DISCHARGED -6856,2020-06-17,41121.71152928503,366,Elective,2020-06-27,Inconclusive,6856,363,3,1,,,,DISCHARGED -6857,2021-06-21,18036.6056891088,324,Urgent,2021-07-18,Inconclusive,6857,478,1,26,,,,DISCHARGED -6858,2019-10-11,30917.45181530212,109,Urgent,2019-10-15,Normal,6858,52,2,4,,,,DISCHARGED -6860,2021-10-17,2586.4473596958296,388,Urgent,2021-10-25,Abnormal,6860,470,3,6,,,,DISCHARGED -6861,2021-12-19,36048.72835013831,174,Urgent,2021-12-25,Abnormal,6861,383,3,21,,,,DISCHARGED -6862,2020-02-25,37635.6190387398,359,Urgent,2020-03-13,Normal,6862,179,1,3,,,,DISCHARGED -6863,2022-01-07,48346.26011856065,171,Emergency,2022-01-30,Inconclusive,6863,413,0,13,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -6864,2019-08-28,12912.292134373329,140,Elective,2019-08-29,Inconclusive,6864,416,1,1,,,,DISCHARGED -6865,2022-08-03,26982.51766238641,114,Urgent,2022-08-17,Inconclusive,6865,312,0,22,,,,DISCHARGED -6866,2020-03-10,7404.2028717968515,209,Emergency,2020-04-01,Abnormal,6866,307,3,11,,,,DISCHARGED -6867,2022-04-07,47069.83926797268,183,Urgent,2022-04-09,Abnormal,6867,136,0,9,,,,DISCHARGED -6868,2020-11-10,36057.88192007509,439,Urgent,2020-11-12,Normal,6868,181,2,24,,,,DISCHARGED -6869,2020-07-21,18013.974861642266,441,Urgent,2020-08-03,Normal,6869,366,4,0,,,,DISCHARGED -6870,2019-07-06,21666.55289525704,336,Emergency,2019-07-27,Inconclusive,6870,0,0,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6872,2022-12-14,20504.421867831286,195,Emergency,2023-01-06,Inconclusive,6872,43,4,22,,,,DISCHARGED -6873,2021-10-06,24400.941979654413,209,Elective,2021-11-04,Inconclusive,6873,226,2,15,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6874,2021-08-23,32721.63505836967,384,Emergency,2021-09-04,Normal,6874,330,4,14,,,,DISCHARGED -6874,2020-02-21,18055.322911241845,217,Urgent,2020-03-21,Abnormal,9000,97,2,13,,,,DISCHARGED -6875,2021-10-02,3678.787753757528,457,Elective,2021-10-10,Inconclusive,6875,207,4,8,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6876,2020-12-21,49656.78745179476,466,Urgent,2020-12-29,Inconclusive,6876,264,4,28,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6877,2021-04-12,17809.273882068108,137,Elective,2021-04-14,Inconclusive,6877,287,1,20,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6878,2023-08-19,5220.074018843153,285,Emergency,,Abnormal,6878,270,0,22,,,,OPEN -6879,2021-08-29,17367.006768132334,465,Emergency,2021-09-13,Normal,6879,139,4,14,,,,DISCHARGED -6880,2019-06-01,8344.872038158588,459,Elective,2019-06-04,Inconclusive,6880,480,3,25,,,,DISCHARGED -6881,2020-12-16,24081.170221704542,109,Elective,2020-12-23,Normal,6881,236,1,6,,,,DISCHARGED -6882,2022-09-24,41512.65687507838,479,Urgent,2022-10-14,Abnormal,6882,461,0,3,,,,DISCHARGED -6883,2022-01-29,34585.77783088951,363,Emergency,2022-02-23,Abnormal,6883,440,1,20,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6884,2018-12-19,36179.82211297054,141,Elective,2018-12-20,Inconclusive,6884,391,0,17,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -6885,2019-02-01,42060.54190245227,396,Emergency,2019-02-18,Inconclusive,6885,71,2,7,,,,DISCHARGED -6886,2022-02-23,22670.597120583967,393,Emergency,2022-03-09,Normal,6886,154,4,11,,,,DISCHARGED -6887,2023-05-26,41243.18009707191,235,Urgent,2023-05-29,Abnormal,6887,189,3,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6888,2022-01-04,28760.72377634086,401,Urgent,2022-01-31,Normal,6888,267,1,14,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -6889,2023-09-12,30672.66870908002,189,Emergency,2023-10-07,Normal,6889,320,1,16,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -6890,2023-05-27,32553.66667017798,336,Urgent,2023-06-18,Inconclusive,6890,106,1,1,,,,DISCHARGED -6891,2018-12-18,40040.86636058092,151,Emergency,2019-01-09,Normal,6891,231,1,11,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6892,2022-09-13,49199.74601371455,493,Elective,2022-09-14,Abnormal,6892,41,4,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6893,2019-01-29,21122.759451362013,342,Emergency,2019-01-31,Normal,6893,189,0,6,,,,DISCHARGED -6894,2019-05-29,23954.88018096705,245,Emergency,2019-05-30,Normal,6894,370,4,5,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6896,2021-12-31,27010.57413095525,114,Elective,2022-01-06,Abnormal,6896,138,2,13,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6897,2021-07-31,21582.63099122441,181,Emergency,2021-08-23,Abnormal,6897,102,4,22,,,,DISCHARGED -6898,2023-09-15,39004.398259655536,176,Emergency,2023-09-26,Abnormal,6898,170,4,26,,,,DISCHARGED -6899,2021-07-05,9784.253420517382,272,Emergency,2021-07-21,Normal,6899,350,2,4,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6900,2020-08-26,2190.613269353852,122,Elective,2020-09-20,Abnormal,6900,272,4,29,,,,DISCHARGED -6901,2023-04-23,20189.35857799911,468,Emergency,,Abnormal,6901,480,0,3,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,OPEN -6902,2021-12-23,49721.48933520515,341,Elective,2021-12-26,Inconclusive,6902,415,3,14,,,,DISCHARGED -6903,2023-05-24,47989.83459902162,358,Emergency,,Inconclusive,6903,220,2,6,,,,OPEN -6904,2019-07-15,9719.042869549468,112,Emergency,2019-08-01,Abnormal,6904,212,1,2,,,,DISCHARGED -6905,2021-03-20,24455.72398371465,115,Urgent,2021-03-25,Normal,6905,340,0,12,,,,DISCHARGED -6906,2022-01-13,29148.62010659719,242,Elective,2022-02-02,Inconclusive,6906,423,3,9,,,,DISCHARGED -6907,2019-11-13,33035.04051135661,389,Emergency,2019-12-01,Abnormal,6907,406,0,22,,,,DISCHARGED -6908,2021-02-07,21704.12367705071,177,Urgent,2021-02-21,Normal,6908,55,0,1,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6909,2018-12-16,4681.999280526896,203,Urgent,2019-01-11,Normal,6909,389,1,11,,,,DISCHARGED -6910,2021-04-02,13881.042211211625,360,Urgent,2021-04-20,Normal,6910,341,3,27,,,,DISCHARGED -6911,2021-07-21,25721.757753734502,229,Elective,2021-07-27,Abnormal,6911,433,0,23,,,,DISCHARGED -6912,2023-06-13,33362.80820852976,406,Urgent,2023-07-12,Abnormal,6912,101,1,27,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -6914,2022-08-03,48316.58750800679,250,Emergency,2022-08-27,Abnormal,6914,420,2,21,,,,DISCHARGED -6915,2019-07-09,18873.33861875201,104,Urgent,2019-08-02,Abnormal,6915,492,1,11,,,,DISCHARGED -6916,2019-02-14,29983.666771928347,374,Urgent,2019-03-13,Normal,6916,191,4,18,,,,DISCHARGED -6917,2023-02-23,12571.879872742453,211,Emergency,,Abnormal,6917,498,1,18,,,,OPEN -6918,2022-01-03,16599.28789167924,276,Elective,2022-01-18,Normal,6918,309,1,20,,,,DISCHARGED -6919,2020-07-30,24125.69050911835,476,Emergency,2020-08-21,Abnormal,6919,199,1,2,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6920,2022-09-09,2976.7440454205766,441,Urgent,2022-09-16,Abnormal,6920,232,0,5,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -6921,2020-12-07,37146.98486188007,375,Urgent,2020-12-25,Abnormal,6921,432,3,1,,,,DISCHARGED -6922,2022-08-27,5883.158390461255,220,Elective,2022-09-21,Normal,6922,226,1,23,,,,DISCHARGED -6923,2020-04-24,13016.178264976284,426,Elective,2020-05-19,Normal,6923,370,1,12,,,,DISCHARGED -6924,2022-07-19,4587.07832525065,264,Elective,2022-07-29,Inconclusive,6924,138,4,26,,,,DISCHARGED -6925,2022-11-15,28751.31529811376,109,Elective,2022-12-14,Inconclusive,6925,343,4,27,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6926,2019-05-14,38287.62735509396,476,Elective,2019-06-09,Abnormal,6926,304,2,26,,,,DISCHARGED -6927,2022-12-29,1844.6653963004087,329,Urgent,2023-01-14,Normal,6927,148,2,8,,,,DISCHARGED -6928,2019-12-11,21422.786020571628,317,Emergency,2019-12-12,Inconclusive,6928,114,4,12,,,,DISCHARGED -6930,2018-12-03,43026.43138295912,386,Urgent,2018-12-12,Normal,6930,449,3,22,,,,DISCHARGED -6931,2022-08-30,44251.29820347973,311,Elective,2022-09-10,Normal,6931,62,2,13,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6931,2019-08-27,19912.78488841649,421,Urgent,2019-09-20,Abnormal,9596,103,3,18,,,,DISCHARGED -6932,2021-05-13,1271.4330373254052,499,Urgent,2021-06-05,Abnormal,6932,338,4,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6933,2019-07-10,41964.94123413667,447,Elective,2019-08-01,Normal,6933,358,2,13,,,,DISCHARGED -6934,2022-07-31,42928.0748197408,244,Emergency,2022-08-28,Normal,6934,155,1,15,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6935,2019-03-31,20407.00690319005,396,Emergency,2019-04-10,Normal,6935,272,4,9,,,,DISCHARGED -6936,2022-04-27,13158.124974652472,166,Urgent,2022-05-26,Abnormal,6936,5,2,19,,,,DISCHARGED -6937,2023-08-06,3106.0434201333437,105,Urgent,2023-08-31,Normal,6937,146,3,15,,,,DISCHARGED -6938,2019-09-19,49874.35205172004,207,Elective,2019-09-27,Abnormal,6938,183,3,27,,,,DISCHARGED -6939,2019-12-10,34435.00715638833,284,Emergency,2020-01-06,Inconclusive,6939,485,2,25,,,,DISCHARGED -6940,2021-12-08,41974.30956664626,495,Elective,2021-12-15,Abnormal,6940,27,3,1,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -6941,2020-08-29,5840.761894779029,319,Urgent,2020-09-27,Normal,6941,449,2,24,,,,DISCHARGED -6942,2022-04-05,18828.985033991587,174,Elective,2022-04-15,Abnormal,6942,37,2,15,,,,DISCHARGED -6943,2021-04-04,29021.530383541096,345,Emergency,2021-04-09,Inconclusive,6943,118,3,13,,,,DISCHARGED -6944,2020-09-19,36569.7359015632,415,Elective,2020-09-25,Normal,6944,292,0,20,,,,DISCHARGED -6945,2019-05-29,7212.095181705559,193,Urgent,2019-06-24,Inconclusive,6945,370,1,27,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -6946,2020-10-29,45125.53092988562,126,Elective,2020-11-07,Inconclusive,6946,243,4,17,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6947,2019-11-01,22205.908443391763,244,Emergency,2019-12-01,Inconclusive,6947,67,1,25,,,,DISCHARGED -6948,2019-01-17,9751.256054537394,312,Elective,2019-01-29,Abnormal,6948,213,4,5,,,,DISCHARGED -6949,2022-06-15,14540.995424455135,123,Urgent,2022-06-21,Normal,6949,217,4,6,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6950,2019-12-18,9393.384143227926,369,Urgent,2020-01-11,Normal,6950,176,1,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -6951,2021-05-25,17385.6942661642,247,Emergency,2021-06-06,Inconclusive,6951,298,2,1,,,,DISCHARGED -6952,2022-04-27,23191.49097221982,288,Urgent,2022-04-28,Normal,6952,163,3,14,,,,DISCHARGED -6953,2021-08-21,8757.444361387468,340,Emergency,2021-09-03,Abnormal,6953,57,0,16,,,,DISCHARGED -6954,2021-04-23,15119.263594399192,249,Elective,2021-05-06,Abnormal,6954,268,0,12,,,,DISCHARGED -6955,2020-03-24,33098.47806222107,200,Emergency,2020-04-17,Abnormal,6955,307,0,6,,,,DISCHARGED -6956,2020-06-30,28202.02463123516,392,Emergency,2020-07-20,Inconclusive,6956,57,1,0,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -6957,2022-07-01,3921.269858654899,153,Elective,2022-07-09,Normal,6957,287,1,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6958,2021-04-12,5743.795054067121,366,Urgent,2021-04-26,Inconclusive,6958,464,2,19,,,,DISCHARGED -6959,2020-03-01,31230.146441875662,114,Urgent,2020-03-08,Normal,6959,104,0,17,,,,DISCHARGED -6960,2018-11-19,44594.51048092537,444,Urgent,2018-11-26,Abnormal,6960,227,2,6,,,,DISCHARGED -6961,2019-03-15,18717.30553192645,379,Emergency,2019-04-13,Normal,6961,246,0,20,,,,DISCHARGED -6962,2023-02-24,29969.31082460949,287,Emergency,2023-03-23,Normal,6962,187,1,16,,,,DISCHARGED -6963,2023-07-21,15527.34878869212,370,Emergency,2023-07-31,Normal,6963,493,3,27,,,,DISCHARGED -6964,2023-08-18,7614.503507240185,237,Elective,,Abnormal,6964,82,3,11,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",OPEN -6965,2019-01-30,35830.872708983195,441,Urgent,2019-02-02,Normal,6965,185,3,15,,,,DISCHARGED -6966,2021-03-04,3323.1493877491453,337,Emergency,2021-03-27,Inconclusive,6966,251,3,23,,,,DISCHARGED -6967,2019-01-20,19165.95622356114,411,Elective,2019-02-17,Inconclusive,6967,354,4,9,,,,DISCHARGED -6968,2023-02-19,36922.40795023482,318,Urgent,2023-02-26,Normal,6968,237,0,22,,,,DISCHARGED -6969,2023-03-30,42953.35070067596,311,Emergency,2023-04-28,Normal,6969,359,3,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -6970,2020-09-26,24628.638701085616,370,Urgent,2020-10-09,Inconclusive,6970,183,4,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -6971,2021-02-09,39147.73981123817,415,Elective,2021-02-23,Abnormal,6971,283,4,17,,,,DISCHARGED -6972,2021-12-08,3683.299679083855,370,Elective,2021-12-25,Abnormal,6972,384,4,14,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6973,2019-02-07,17029.84381319199,118,Urgent,2019-03-07,Abnormal,6973,425,2,22,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -6974,2020-08-08,32544.248420748994,448,Elective,2020-08-29,Normal,6974,209,2,10,,,,DISCHARGED -6975,2023-07-13,37186.17202104556,295,Urgent,,Inconclusive,6975,303,4,17,,,,OPEN -6976,2021-11-24,20785.120348210043,383,Urgent,2021-11-29,Abnormal,6976,295,3,5,,,,DISCHARGED -6977,2020-06-22,23191.696371418355,355,Emergency,2020-07-07,Inconclusive,6977,96,0,0,,,,DISCHARGED -6978,2022-05-28,6420.664097170925,147,Emergency,2022-06-22,Normal,6978,446,1,29,,,,DISCHARGED -6979,2021-07-16,21924.850084613707,388,Elective,2021-07-17,Normal,6979,459,2,22,,,,DISCHARGED -6980,2020-04-14,45594.05190315254,267,Elective,2020-04-23,Inconclusive,6980,455,3,6,,,,DISCHARGED -6982,2023-01-10,8996.36230333845,500,Elective,,Abnormal,6982,471,3,11,,,,OPEN -6983,2020-01-12,38772.294762515696,307,Urgent,2020-01-14,Normal,6983,207,1,19,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -6984,2019-02-19,36334.49165561649,245,Urgent,2019-03-14,Abnormal,6984,369,1,3,,,,DISCHARGED -6985,2020-09-08,18805.210172743948,434,Elective,2020-09-23,Normal,6985,387,3,9,,,,DISCHARGED -6986,2021-11-21,10578.934274622165,300,Emergency,2021-12-13,Inconclusive,6986,421,1,20,,,,DISCHARGED -6987,2019-12-11,43181.07556432056,379,Elective,2020-01-09,Abnormal,6987,491,3,1,,,,DISCHARGED -6988,2021-07-11,18815.487208475053,142,Urgent,2021-07-25,Inconclusive,6988,410,1,8,,,,DISCHARGED -6989,2020-07-02,44200.98515737494,342,Emergency,2020-07-17,Abnormal,6989,136,1,9,,,,DISCHARGED -6991,2022-10-10,32421.41053753488,409,Emergency,2022-10-28,Normal,6991,366,3,19,,,,DISCHARGED -6992,2022-06-26,44340.91194664272,345,Emergency,2022-07-21,Abnormal,6992,399,4,10,,,,DISCHARGED -6993,2023-02-13,28947.395382327337,183,Urgent,2023-03-08,Normal,6993,183,3,24,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6994,2023-05-26,12658.82425861454,491,Emergency,,Normal,6994,75,0,13,,,,OPEN -6995,2023-05-30,30566.481418628096,131,Emergency,,Abnormal,6995,286,1,2,,,,OPEN -6996,2019-04-19,23115.99583049012,358,Emergency,2019-04-21,Normal,6996,471,2,24,,,,DISCHARGED -6997,2022-07-18,37754.68036336889,433,Elective,2022-08-09,Abnormal,6997,374,1,0,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6998,2019-03-10,33048.60738867,108,Emergency,2019-03-18,Inconclusive,6998,141,0,6,,,,DISCHARGED -6999,2021-12-05,28066.850326825373,469,Emergency,2021-12-17,Inconclusive,6999,236,2,3,,,,DISCHARGED -7000,2019-12-03,28022.077120481412,318,Urgent,2019-12-04,Normal,7000,24,2,6,,,,DISCHARGED -7001,2019-12-14,43643.2185991089,276,Elective,2020-01-07,Abnormal,7001,289,3,15,,,,DISCHARGED -7002,2019-03-06,10165.625602412832,312,Emergency,2019-03-14,Normal,7002,66,4,29,,,,DISCHARGED -7003,2021-05-24,17775.0711507952,215,Urgent,2021-05-28,Inconclusive,7003,249,3,9,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7004,2021-08-08,16789.876984746872,497,Elective,2021-08-29,Normal,7004,407,2,14,,,,DISCHARGED -7005,2021-07-21,1624.3416946945954,393,Emergency,2021-08-13,Normal,7005,117,2,15,,,,DISCHARGED -7006,2021-07-16,19111.079143988805,346,Elective,2021-08-13,Normal,7006,489,4,5,,,,DISCHARGED -7007,2022-10-23,44348.96664206508,469,Urgent,2022-11-08,Normal,7007,72,1,3,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7008,2020-12-04,4852.941455185139,221,Urgent,2020-12-19,Normal,7008,281,4,3,,,,DISCHARGED -7010,2021-05-08,2988.082316116417,314,Emergency,2021-05-25,Abnormal,7010,403,3,23,,,,DISCHARGED -7011,2019-07-22,6285.273179005883,235,Emergency,2019-07-26,Abnormal,7011,447,1,22,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -7012,2019-10-05,49835.01817990041,308,Elective,2019-10-29,Inconclusive,7012,359,3,3,,,,DISCHARGED -7013,2018-12-30,45617.60148270567,112,Urgent,2019-01-19,Inconclusive,7013,9,4,26,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -7014,2021-02-10,12472.3016246608,378,Emergency,2021-02-22,Inconclusive,7014,210,1,21,,,,DISCHARGED -7015,2020-05-23,1558.0693002955077,181,Emergency,2020-06-07,Abnormal,7015,322,4,21,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -7016,2020-12-22,46231.33327074372,417,Urgent,2021-01-16,Abnormal,7016,151,0,16,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7017,2021-05-30,47302.27132981174,170,Urgent,2021-06-16,Abnormal,7017,4,2,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7018,2019-02-11,7021.633557241288,285,Emergency,2019-02-15,Normal,7018,194,1,1,,,,DISCHARGED -7019,2020-08-18,42079.942863036194,262,Urgent,2020-09-10,Abnormal,7019,441,2,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -7020,2022-05-02,46151.28129108493,496,Elective,2022-05-06,Normal,7020,282,0,5,,,,DISCHARGED -7021,2019-07-07,15754.20285448002,498,Urgent,2019-07-15,Inconclusive,7021,463,1,21,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7022,2022-07-02,19690.996407116847,468,Emergency,2022-08-01,Normal,7022,112,2,0,,,,DISCHARGED -7024,2022-06-16,8347.455292656887,142,Emergency,2022-06-17,Inconclusive,7024,270,2,7,,,,DISCHARGED -7026,2022-06-19,9643.520510261009,360,Emergency,2022-07-19,Abnormal,7026,162,1,17,,,,DISCHARGED -7029,2022-12-28,10720.533851319837,462,Urgent,2023-01-25,Abnormal,7029,459,2,28,,,,DISCHARGED -7030,2023-05-17,47674.5582439801,217,Emergency,,Inconclusive,7030,104,2,20,,,,OPEN -7031,2021-05-13,45319.94992170451,495,Urgent,2021-06-12,Inconclusive,7031,180,1,3,,,,DISCHARGED -7032,2020-12-16,32129.827083327928,240,Urgent,2021-01-09,Inconclusive,7032,43,2,4,,,,DISCHARGED -7033,2020-05-25,36862.2259661634,197,Emergency,2020-06-01,Abnormal,7033,281,2,4,,,,DISCHARGED -7034,2019-03-20,7669.027644818167,147,Elective,2019-03-28,Normal,7034,174,3,14,,,,DISCHARGED -7035,2020-10-08,33384.89314404058,387,Urgent,2020-11-07,Normal,7035,161,3,9,,,,DISCHARGED -7037,2020-05-10,18452.33495118273,163,Emergency,2020-05-16,Normal,7037,470,0,7,,,,DISCHARGED -7039,2020-09-19,14971.788759435414,343,Urgent,2020-10-18,Abnormal,7039,350,3,25,,,,DISCHARGED -7040,2019-10-15,11246.221282683617,165,Elective,2019-10-27,Abnormal,7040,433,3,6,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7041,2020-04-21,22038.87416508738,111,Urgent,2020-05-06,Normal,7041,339,0,11,,,,DISCHARGED -7042,2020-01-25,42622.75933691992,386,Emergency,2020-02-23,Normal,7042,139,2,29,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7043,2020-05-27,30196.03671471688,284,Urgent,2020-06-02,Abnormal,7043,470,2,24,,,,DISCHARGED -7044,2020-06-19,48617.47109802048,123,Elective,2020-06-29,Abnormal,7044,131,3,27,,,,DISCHARGED -7045,2022-04-03,13603.833695843485,435,Emergency,2022-04-07,Inconclusive,7045,86,0,10,,,,DISCHARGED -7046,2023-09-05,18391.8996685034,359,Emergency,,Abnormal,7046,175,2,12,,,,OPEN -7047,2022-03-15,22561.42873182083,295,Emergency,2022-04-02,Abnormal,7047,182,4,14,,,,DISCHARGED -7048,2021-11-10,29605.13648065304,367,Emergency,2021-12-07,Abnormal,7048,367,1,16,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7049,2020-05-07,7113.477012233674,213,Emergency,2020-05-09,Inconclusive,7049,128,1,21,,,,DISCHARGED -7050,2022-02-06,35665.405572029216,312,Elective,2022-02-18,Normal,7050,245,1,21,,,,DISCHARGED -7051,2023-07-31,33372.17197336503,193,Urgent,2023-08-16,Abnormal,7051,88,3,17,,,,DISCHARGED -7052,2020-12-21,5996.388238063388,214,Urgent,2021-01-14,Abnormal,7052,65,1,26,,,,DISCHARGED -7053,2023-04-25,24753.04718018185,165,Emergency,2023-05-05,Normal,7053,157,1,7,,,,DISCHARGED -7054,2021-09-09,1491.4259908042727,367,Elective,2021-09-17,Normal,7054,386,4,5,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7055,2019-10-20,48967.70097634383,172,Emergency,2019-11-09,Normal,7055,377,2,10,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7056,2023-08-22,34855.1856269224,346,Urgent,2023-08-31,Abnormal,7056,148,4,28,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7057,2020-07-23,45884.35251757271,421,Emergency,2020-08-15,Abnormal,7057,472,3,25,,,,DISCHARGED -7058,2019-03-29,26745.25370544875,453,Emergency,2019-04-26,Inconclusive,7058,339,1,8,,,,DISCHARGED -7059,2019-04-03,16295.959803509952,289,Urgent,2019-05-02,Normal,7059,432,2,25,,,,DISCHARGED -7060,2023-09-17,16287.97853596497,327,Emergency,,Abnormal,7060,115,1,4,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",OPEN -7061,2021-05-06,40684.505484486064,422,Elective,2021-05-19,Normal,7061,213,1,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7062,2020-03-08,6401.271009325388,407,Elective,2020-03-18,Inconclusive,7062,468,3,21,,,,DISCHARGED -7063,2021-08-13,43195.045179384346,302,Elective,2021-08-24,Abnormal,7063,445,1,26,,,,DISCHARGED -7064,2021-11-14,49848.9617670132,309,Emergency,2021-12-11,Normal,7064,480,0,14,,,,DISCHARGED -7065,2023-06-10,46654.15202107294,446,Urgent,2023-07-04,Normal,7065,371,2,20,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -7066,2018-12-11,29205.63931245221,491,Elective,2019-01-08,Inconclusive,7066,293,2,21,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7067,2021-12-19,10894.031638453083,273,Elective,2022-01-11,Abnormal,7067,252,0,3,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -7068,2019-10-25,22476.138091971294,315,Urgent,2019-11-04,Normal,7068,142,3,18,,,,DISCHARGED -7069,2021-11-21,17028.19333414566,411,Emergency,2021-12-11,Inconclusive,7069,249,1,12,,,,DISCHARGED -7070,2021-07-20,26803.9697993017,209,Urgent,2021-08-01,Inconclusive,7070,365,1,0,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -7071,2021-01-04,13211.982394459112,202,Urgent,2021-01-17,Normal,7071,435,2,0,,,,DISCHARGED -7072,2020-03-31,5873.908262540625,196,Emergency,2020-04-19,Abnormal,7072,462,3,21,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7073,2019-12-02,41263.20100000215,315,Urgent,2019-12-13,Inconclusive,7073,301,3,13,,,,DISCHARGED -7074,2023-07-20,14079.82477736208,284,Elective,2023-08-19,Inconclusive,7074,24,3,8,,,,DISCHARGED -7075,2022-08-19,28151.67210628584,500,Urgent,2022-09-06,Normal,7075,276,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -7076,2022-03-08,27494.7333131783,346,Urgent,2022-03-30,Inconclusive,7076,471,3,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7078,2019-02-27,42467.90159877492,182,Elective,2019-03-13,Inconclusive,7078,376,0,17,,,,DISCHARGED -7080,2022-09-20,26519.79531729132,337,Emergency,2022-09-24,Normal,7080,377,4,8,,,,DISCHARGED -7081,2019-03-24,36848.88222905856,107,Elective,2019-03-27,Inconclusive,7081,388,3,7,,,,DISCHARGED -7082,2022-08-07,12291.30093234208,135,Urgent,2022-08-14,Inconclusive,7082,69,4,29,,,,DISCHARGED -7084,2020-04-03,16618.638782435875,441,Urgent,2020-04-05,Normal,7084,112,1,13,,,,DISCHARGED -7085,2020-08-01,4503.271013887793,300,Elective,2020-08-29,Inconclusive,7085,362,3,27,,,,DISCHARGED -7085,2022-12-07,29736.060639802552,398,Emergency,2022-12-15,Normal,9890,111,2,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7086,2022-06-20,37102.007021229234,213,Elective,2022-06-27,Inconclusive,7086,363,1,19,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7088,2020-09-06,32013.8829280533,195,Urgent,2020-10-01,Inconclusive,7088,302,0,24,,,,DISCHARGED -7089,2019-03-26,2127.590487194777,428,Elective,2019-03-28,Inconclusive,7089,470,0,1,,,,DISCHARGED -7090,2019-06-24,17646.1661251343,404,Emergency,2019-07-18,Abnormal,7090,451,4,28,,,,DISCHARGED -7091,2021-07-21,10529.911922347848,113,Emergency,2021-08-19,Inconclusive,7091,90,4,0,,,,DISCHARGED -7092,2019-08-07,39057.424257618935,174,Elective,2019-08-20,Abnormal,7092,17,2,12,,,,DISCHARGED -7094,2023-01-20,20155.521024480197,418,Urgent,,Inconclusive,7094,148,2,24,,,,OPEN -7094,2023-07-11,27529.97440820637,112,Elective,2023-08-03,Normal,8912,475,0,9,,,,DISCHARGED -7096,2020-02-09,20800.256005646625,360,Elective,2020-02-18,Normal,7096,226,3,7,,,,DISCHARGED -7097,2022-08-05,18062.793452994247,157,Urgent,2022-09-01,Normal,7097,213,0,6,,,,DISCHARGED -7098,2022-05-07,46529.20099626824,108,Urgent,2022-05-11,Abnormal,7098,359,0,29,,,,DISCHARGED -7099,2021-12-04,4227.275781451428,476,Emergency,2021-12-24,Inconclusive,7099,150,2,28,,,,DISCHARGED -7100,2018-12-12,26322.58090495932,450,Elective,2019-01-01,Inconclusive,7100,191,4,23,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7101,2019-07-12,21030.4321002445,327,Urgent,2019-07-15,Abnormal,7101,450,2,11,,,,DISCHARGED -7102,2020-01-03,17199.672597827237,409,Emergency,2020-01-09,Abnormal,7102,39,2,16,,,,DISCHARGED -7103,2021-06-19,39373.42563456408,301,Urgent,2021-06-28,Inconclusive,7103,241,2,29,,,,DISCHARGED -7104,2019-11-02,1237.2508300624338,314,Elective,2019-11-05,Inconclusive,7104,137,0,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -7105,2022-11-17,25787.91272472085,185,Emergency,2022-11-18,Inconclusive,7105,344,3,11,,,,DISCHARGED -7107,2021-07-19,49792.10009117197,290,Emergency,2021-07-22,Inconclusive,7107,179,0,15,,,,DISCHARGED -7108,2020-10-25,29953.76922076988,491,Emergency,2020-11-04,Normal,7108,496,1,9,,,,DISCHARGED -7109,2021-12-01,8162.559699233293,103,Elective,2021-12-31,Inconclusive,7109,199,2,26,,,,DISCHARGED -7110,2019-02-09,5074.770052671522,436,Elective,2019-02-11,Normal,7110,202,2,24,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7111,2020-04-20,41555.73679216185,487,Urgent,2020-04-28,Inconclusive,7111,60,1,11,,,,DISCHARGED -7112,2020-05-05,18822.1132164572,345,Emergency,2020-05-22,Normal,7112,191,2,10,,,,DISCHARGED -7113,2021-03-25,6397.180958100335,204,Elective,2021-04-22,Abnormal,7113,4,2,24,,,,DISCHARGED -7114,2022-06-10,23959.67721020742,491,Elective,2022-07-08,Abnormal,7114,377,2,28,,,,DISCHARGED -7115,2023-03-29,3212.321099081732,164,Urgent,2023-04-19,Inconclusive,7115,236,1,13,,,,DISCHARGED -7116,2021-08-21,7027.1252073885225,272,Emergency,2021-09-02,Abnormal,7116,180,0,21,,,,DISCHARGED -7117,2022-07-27,46468.92284464366,102,Elective,2022-08-14,Abnormal,7117,310,2,19,,,,DISCHARGED -7118,2022-09-28,8030.721529139739,326,Emergency,2022-10-04,Normal,7118,36,3,12,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7119,2022-11-03,33903.101708471964,256,Urgent,2022-11-13,Abnormal,7119,55,1,1,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7121,2020-05-24,25369.4763721589,485,Urgent,2020-06-23,Abnormal,7121,442,4,26,,,,DISCHARGED -7122,2019-03-23,26680.700177879346,214,Urgent,2019-03-28,Inconclusive,7122,236,1,19,,,,DISCHARGED -7123,2021-12-24,47144.95223130249,263,Urgent,2022-01-08,Inconclusive,7123,357,0,6,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7126,2023-03-19,1301.15435196795,180,Urgent,2023-03-29,Normal,7126,348,1,0,,,,DISCHARGED -7127,2020-10-30,10931.312349866865,436,Urgent,2020-11-04,Abnormal,7127,196,4,29,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -7128,2020-06-16,24919.838175483044,140,Emergency,2020-06-19,Normal,7128,72,3,24,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7128,2019-10-02,5439.113225786939,359,Urgent,2019-10-25,Abnormal,9900,58,4,2,,,,DISCHARGED -7129,2020-04-24,37830.23901868565,363,Elective,2020-05-03,Abnormal,7129,239,1,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -7130,2019-06-23,32203.170676483947,346,Emergency,2019-07-22,Normal,7130,1,4,28,,,,DISCHARGED -7131,2020-04-11,49537.836556769806,138,Urgent,2020-05-08,Abnormal,7131,448,1,19,,,,DISCHARGED -7132,2022-04-11,29141.438216020822,468,Elective,2022-04-16,Abnormal,7132,359,3,11,,,,DISCHARGED -7133,2019-12-26,30800.192578808164,463,Elective,2020-01-02,Inconclusive,7133,187,3,4,,,,DISCHARGED -7134,2020-08-30,16819.99792549633,454,Emergency,2020-09-18,Abnormal,7134,306,0,11,,,,DISCHARGED -7135,2019-11-03,21590.05968050994,381,Emergency,2019-11-22,Abnormal,7135,29,3,28,,,,DISCHARGED -7136,2019-11-28,35944.56290912836,236,Emergency,2019-12-14,Abnormal,7136,266,2,2,,,,DISCHARGED -7137,2019-12-17,39493.38238438234,103,Emergency,2019-12-31,Normal,7137,475,4,19,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7138,2020-06-12,17801.78962708057,344,Urgent,2020-07-06,Abnormal,7138,107,4,4,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7139,2021-09-11,6445.675572263648,450,Elective,2021-10-07,Abnormal,7139,331,1,27,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7140,2022-12-12,13669.66304710929,371,Elective,2022-12-24,Abnormal,7140,422,3,0,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7141,2019-03-30,20378.114327795065,284,Emergency,2019-04-25,Normal,7141,89,0,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7142,2021-01-21,26212.49513013249,372,Urgent,2021-01-23,Normal,7142,204,0,29,,,,DISCHARGED -7143,2019-05-15,41024.26391659207,145,Urgent,2019-06-02,Normal,7143,378,0,8,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7144,2019-12-22,26606.99648348217,392,Emergency,2019-12-25,Inconclusive,7144,455,2,9,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7145,2020-04-01,3436.1046141771485,249,Elective,2020-04-23,Normal,7145,446,3,28,,,,DISCHARGED -7146,2019-05-06,24191.54111516324,327,Urgent,2019-05-28,Inconclusive,7146,447,0,9,,,,DISCHARGED -7148,2019-11-02,27172.657012505337,382,Elective,2019-11-03,Abnormal,7148,444,2,12,,,,DISCHARGED -7149,2023-05-31,3163.0661839396794,336,Emergency,2023-06-22,Inconclusive,7149,380,4,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7150,2020-05-03,39057.94301172147,377,Emergency,2020-05-28,Inconclusive,7150,437,1,29,,,,DISCHARGED -7151,2019-05-16,37045.16506376791,492,Urgent,2019-05-28,Abnormal,7151,219,3,19,,,,DISCHARGED -7152,2023-05-08,5848.965302685062,192,Urgent,,Abnormal,7152,377,3,28,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7153,2022-12-13,4629.222019886309,432,Emergency,2022-12-14,Inconclusive,7153,93,4,24,,,,DISCHARGED -7154,2022-05-16,48471.478861202006,188,Emergency,2022-06-13,Normal,7154,456,3,3,,,,DISCHARGED -7155,2021-12-15,45259.33023102657,159,Emergency,2022-01-08,Abnormal,7155,102,3,13,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7156,2021-11-12,10463.716893575824,237,Emergency,2021-11-28,Inconclusive,7156,222,3,16,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7158,2019-02-18,41840.74498856691,417,Elective,2019-03-01,Normal,7158,185,3,27,,,,DISCHARGED -7159,2021-06-20,38745.06802313855,123,Elective,2021-07-11,Abnormal,7159,468,2,4,,,,DISCHARGED -7160,2022-05-20,7485.053731149499,106,Urgent,2022-05-21,Abnormal,7160,183,2,12,,,,DISCHARGED -7161,2019-08-30,15066.522876957524,324,Emergency,2019-09-17,Inconclusive,7161,494,1,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7162,2020-05-17,30216.501164675457,367,Urgent,2020-06-08,Normal,7162,161,3,2,,,,DISCHARGED -7163,2022-09-18,49223.7153460014,492,Urgent,2022-10-03,Inconclusive,7163,246,4,4,,,,DISCHARGED -7164,2020-12-09,27313.93170070976,313,Urgent,2021-01-06,Normal,7164,30,0,15,,,,DISCHARGED -7165,2020-11-28,49391.72658539869,134,Emergency,2020-12-18,Inconclusive,7165,51,1,18,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -7166,2019-09-01,47697.669841166986,395,Urgent,2019-09-03,Abnormal,7166,344,0,27,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7167,2023-05-13,10469.871969881302,263,Emergency,2023-05-26,Inconclusive,7167,75,0,18,,,,DISCHARGED -7168,2021-01-17,44585.56577915259,492,Emergency,2021-02-13,Abnormal,7168,384,3,16,,,,DISCHARGED -7169,2021-01-03,26520.658624456268,123,Urgent,2021-01-16,Inconclusive,7169,438,4,17,,,,DISCHARGED -7170,2020-02-26,2825.3267360231384,117,Emergency,2020-03-21,Normal,7170,277,0,17,,,,DISCHARGED -7171,2019-10-01,12749.560176320609,253,Urgent,2019-10-20,Abnormal,7171,39,0,24,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7174,2019-10-14,27127.680595704023,174,Emergency,2019-10-25,Normal,7174,100,1,22,,,,DISCHARGED -7175,2020-03-19,38256.61327356869,162,Emergency,2020-04-16,Abnormal,7175,110,4,7,,,,DISCHARGED -7177,2022-02-02,12144.03854480725,186,Emergency,2022-02-15,Abnormal,7177,384,4,17,,,,DISCHARGED -7178,2020-06-27,31870.24892567946,170,Elective,2020-07-02,Inconclusive,7178,320,0,8,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -7179,2021-09-16,4282.856565371199,377,Urgent,2021-10-03,Normal,7179,248,4,28,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -7181,2020-01-22,34828.25978986324,447,Elective,2020-02-02,Normal,7181,190,1,18,,,,DISCHARGED -7182,2022-08-18,47643.04762356633,173,Elective,2022-08-27,Abnormal,7182,489,1,9,,,,DISCHARGED -7184,2023-01-08,33668.23258294844,466,Elective,2023-01-11,Abnormal,7184,181,1,28,,,,DISCHARGED -7185,2021-02-23,16501.498554667844,164,Urgent,2021-02-24,Normal,7185,425,3,1,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -7186,2021-07-14,3974.976004387348,399,Urgent,2021-08-05,Inconclusive,7186,404,0,27,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7188,2021-05-06,4444.410933750696,113,Elective,2021-05-31,Abnormal,7188,334,4,16,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -7189,2023-02-26,10039.133779796635,346,Elective,,Inconclusive,7189,208,1,24,,,,OPEN -7190,2019-08-20,4962.356680587922,169,Urgent,2019-08-21,Inconclusive,7190,21,0,23,,,,DISCHARGED -7191,2022-06-19,36124.95387827857,296,Emergency,2022-07-07,Normal,7191,165,0,12,,,,DISCHARGED -7192,2023-06-19,44109.41425193822,241,Urgent,2023-06-24,Normal,7192,98,3,27,,,,DISCHARGED -7193,2022-09-18,22094.33486443696,417,Emergency,2022-10-15,Abnormal,7193,492,4,10,,,,DISCHARGED -7194,2022-01-26,38505.34801080887,448,Elective,2022-02-22,Inconclusive,7194,207,4,15,,,,DISCHARGED -7195,2019-04-02,13972.993115925368,319,Elective,2019-04-04,Inconclusive,7195,7,1,19,,,,DISCHARGED -7196,2019-08-07,15667.02336453579,468,Elective,2019-08-25,Normal,7196,189,1,6,,,,DISCHARGED -7197,2021-08-09,14857.686632671244,360,Elective,2021-08-24,Inconclusive,7197,174,0,27,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7198,2020-06-02,47898.271328171206,398,Emergency,2020-06-28,Inconclusive,7198,272,4,29,,,,DISCHARGED -7199,2022-07-10,42074.9730337654,381,Elective,2022-07-20,Normal,7199,16,4,2,,,,DISCHARGED -7200,2022-03-23,24717.073126320494,153,Elective,2022-04-14,Normal,7200,89,1,15,,,,DISCHARGED -7201,2022-12-02,44468.0410282488,347,Emergency,2022-12-05,Inconclusive,7201,140,2,18,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7202,2019-07-06,10169.326700314938,438,Urgent,2019-08-03,Normal,7202,144,0,19,,,,DISCHARGED -7203,2019-06-07,9763.372377286158,311,Emergency,2019-06-29,Abnormal,7203,165,4,15,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -7204,2023-07-29,26487.21994075691,296,Emergency,,Inconclusive,7204,336,3,1,,,,OPEN -7205,2020-06-04,42271.12073781485,246,Elective,2020-06-10,Inconclusive,7205,495,3,13,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -7206,2023-08-31,4514.147149922848,323,Emergency,,Abnormal,7206,77,2,25,,,,OPEN -7207,2022-10-02,11918.240761657962,204,Elective,2022-10-21,Abnormal,7207,428,1,19,,,,DISCHARGED -7208,2023-02-18,21410.521559982142,416,Elective,,Normal,7208,261,1,9,,,,OPEN -7209,2021-05-18,20804.63486730664,465,Elective,2021-06-04,Normal,7209,162,1,18,,,,DISCHARGED -7209,2019-07-04,7128.807212460624,376,Elective,2019-07-31,Abnormal,8621,365,3,23,,,,DISCHARGED -7210,2021-08-04,29332.316922106555,133,Urgent,2021-08-30,Normal,7210,13,1,10,,,,DISCHARGED -7211,2020-04-28,42247.97895693903,470,Urgent,2020-05-01,Normal,7211,238,3,17,,,,DISCHARGED -7212,2022-06-26,35048.57201279444,295,Elective,2022-07-20,Normal,7212,71,2,10,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7213,2019-01-22,26001.18565758748,180,Emergency,2019-01-27,Inconclusive,7213,444,0,8,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7214,2021-01-01,45137.95602534278,421,Elective,2021-01-02,Normal,7214,142,4,18,,,,DISCHARGED -7215,2023-10-17,33281.04736978501,130,Elective,2023-11-06,Inconclusive,7215,309,2,19,,,,DISCHARGED -7216,2020-02-04,12208.788597447134,401,Urgent,2020-02-10,Abnormal,7216,282,3,28,,,,DISCHARGED -7217,2022-07-13,42823.30654603339,412,Emergency,2022-07-20,Normal,7217,268,2,9,,,,DISCHARGED -7218,2019-03-01,21049.944131522625,233,Urgent,2019-03-04,Inconclusive,7218,240,4,29,,,,DISCHARGED -7219,2019-09-15,20614.66156413718,449,Emergency,2019-09-19,Abnormal,7219,414,0,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7220,2021-05-27,36922.01627674975,374,Urgent,2021-06-07,Inconclusive,7220,244,4,2,,,,DISCHARGED -7221,2020-12-01,25220.527285467928,260,Emergency,2020-12-10,Abnormal,7221,162,3,2,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -7222,2020-09-23,12138.41263571739,442,Urgent,2020-10-21,Normal,7222,59,4,23,,,,DISCHARGED -7223,2020-12-16,37569.61885467492,331,Urgent,2020-12-30,Abnormal,7223,5,2,7,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7225,2020-04-14,1283.5444729060396,349,Elective,2020-04-29,Abnormal,7225,196,1,28,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7226,2021-04-23,37096.01575440009,368,Emergency,2021-05-14,Normal,7226,469,2,28,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7227,2021-12-10,15391.661939336847,257,Urgent,2021-12-22,Abnormal,7227,57,3,5,,,,DISCHARGED -7228,2022-01-03,49502.1458422292,132,Emergency,2022-01-07,Abnormal,7228,304,0,19,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7228,2020-08-27,4134.078433260449,250,Emergency,2020-09-04,Abnormal,9274,406,4,0,,,,DISCHARGED -7229,2019-02-21,5053.98258298866,353,Emergency,2019-02-23,Inconclusive,7229,216,0,19,,,,DISCHARGED -7230,2020-03-04,25806.752119469355,138,Urgent,2020-03-07,Inconclusive,7230,417,3,23,,,,DISCHARGED -7231,2019-12-20,40948.33559829411,136,Elective,2019-12-30,Abnormal,7231,25,4,5,,,,DISCHARGED -7232,2019-01-07,6738.405125048368,474,Emergency,2019-02-02,Inconclusive,7232,302,2,1,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7233,2023-01-06,9689.8474944542,180,Elective,,Normal,7233,4,2,18,,,,OPEN -7234,2019-10-20,13885.287958494991,195,Urgent,2019-10-28,Normal,7234,473,3,27,,,,DISCHARGED -7235,2022-03-31,26868.503297706848,178,Emergency,2022-04-27,Normal,7235,19,4,6,,,,DISCHARGED -7236,2022-03-14,3178.5010606660694,338,Urgent,2022-04-05,Abnormal,7236,389,2,10,,,,DISCHARGED -7237,2021-06-23,43164.09378001368,325,Elective,2021-06-24,Abnormal,7237,197,3,10,,,,DISCHARGED -7238,2023-01-27,44030.329838229896,431,Urgent,,Normal,7238,58,3,3,,,,OPEN -7239,2023-09-17,26117.363659353778,249,Elective,2023-09-22,Abnormal,7239,447,0,19,,,,DISCHARGED -7240,2022-07-20,46649.60136533374,278,Urgent,2022-07-24,Inconclusive,7240,241,2,15,,,,DISCHARGED -7241,2019-01-18,12897.903898812683,324,Urgent,2019-02-15,Inconclusive,7241,145,4,4,,,,DISCHARGED -7243,2023-01-30,25857.685344121022,423,Urgent,,Inconclusive,7243,387,2,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,OPEN -7245,2020-07-29,24315.43491074983,297,Emergency,2020-08-24,Abnormal,7245,272,2,29,,,,DISCHARGED -7246,2020-06-26,32389.55044573958,188,Elective,2020-07-24,Abnormal,7246,248,2,29,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7247,2019-01-27,8586.671063246058,349,Emergency,2019-02-03,Inconclusive,7247,13,3,6,,,,DISCHARGED -7248,2021-06-17,19769.610089432168,275,Urgent,2021-06-23,Normal,7248,461,1,24,,,,DISCHARGED -7249,2022-02-17,8736.076592500785,199,Emergency,2022-03-08,Normal,7249,12,1,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -7250,2019-06-14,28951.027499187792,425,Elective,2019-06-26,Inconclusive,7250,390,0,14,,,,DISCHARGED -7251,2019-11-17,34543.67024655781,418,Elective,2019-11-23,Inconclusive,7251,383,2,4,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7252,2021-02-22,21708.910422007106,443,Elective,2021-03-23,Normal,7252,43,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7253,2021-04-10,46787.03583825796,299,Emergency,2021-05-10,Abnormal,7253,374,0,19,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -7254,2021-10-12,22060.566690528813,340,Urgent,2021-11-06,Abnormal,7254,398,3,21,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -7255,2019-07-13,29668.322448802643,452,Elective,2019-08-09,Normal,7255,18,2,21,,,,DISCHARGED -7256,2019-02-13,9353.51604502461,403,Emergency,2019-02-27,Abnormal,7256,62,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7257,2019-02-24,2698.259802818861,347,Elective,2019-03-06,Inconclusive,7257,490,3,25,,,,DISCHARGED -7258,2021-07-21,42360.522869150656,195,Emergency,2021-08-07,Inconclusive,7258,238,0,28,,,,DISCHARGED -7259,2021-09-15,2347.02709898368,269,Urgent,2021-09-24,Abnormal,7259,491,3,20,,,,DISCHARGED -7260,2022-01-29,36290.32306418081,250,Emergency,2022-02-22,Abnormal,7260,418,4,4,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -7261,2019-06-08,49225.37669705644,270,Urgent,2019-06-14,Normal,7261,336,3,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7262,2023-01-06,23892.430872093057,114,Emergency,2023-01-26,Normal,7262,418,0,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7264,2021-06-08,31615.33489890834,177,Emergency,2021-06-18,Inconclusive,7264,402,4,5,,,,DISCHARGED -7265,2021-02-24,22979.49545104826,186,Elective,2021-03-11,Abnormal,7265,403,4,2,,,,DISCHARGED -7266,2020-03-31,26053.96631110648,330,Emergency,2020-04-14,Abnormal,7266,99,3,5,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7267,2019-10-07,18645.61401817668,367,Emergency,2019-11-04,Abnormal,7267,162,4,7,,,,DISCHARGED -7268,2022-11-05,43028.00994174671,396,Elective,2022-11-07,Inconclusive,7268,415,3,27,,,,DISCHARGED -7269,2020-04-09,11125.417695661792,142,Urgent,2020-04-12,Abnormal,7269,121,2,5,,,,DISCHARGED -7270,2022-02-08,1614.535068761606,387,Elective,2022-02-21,Normal,7270,431,4,15,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7271,2021-09-05,45856.61103778065,148,Elective,2021-09-22,Inconclusive,7271,43,3,27,,,,DISCHARGED -7271,2020-10-13,20789.28877956234,127,Emergency,2020-11-04,Inconclusive,8141,359,2,15,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7271,2023-04-10,6532.309644695497,255,Emergency,2023-05-02,Normal,9988,407,4,26,,,,DISCHARGED -7272,2020-04-16,3344.3776578108336,375,Elective,2020-05-11,Normal,7272,316,2,20,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -7273,2019-04-21,6678.583545364742,175,Elective,2019-05-07,Abnormal,7273,380,4,2,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7273,2022-04-12,5312.1736173784575,104,Emergency,2022-05-02,Inconclusive,9112,144,0,16,,,,DISCHARGED -7274,2021-11-16,26186.030421242183,308,Elective,2021-12-09,Abnormal,7274,326,0,20,,,,DISCHARGED -7275,2021-05-29,3638.808622041157,164,Urgent,2021-06-28,Normal,7275,362,3,5,,,,DISCHARGED -7276,2020-10-19,26768.41041403627,310,Urgent,2020-11-06,Inconclusive,7276,49,1,29,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7277,2019-12-10,21858.98134712455,233,Emergency,2019-12-28,Normal,7277,64,0,5,,,,DISCHARGED -7278,2020-01-25,44079.34545470767,500,Emergency,2020-02-06,Abnormal,7278,354,1,29,,,,DISCHARGED -7279,2020-03-05,37902.61440369776,460,Urgent,2020-03-17,Normal,7279,287,2,21,,,,DISCHARGED -7280,2022-02-17,14376.30531003069,361,Urgent,2022-03-02,Normal,7280,163,2,18,,,,DISCHARGED -7282,2019-03-25,21932.92672110809,130,Urgent,2019-04-13,Normal,7282,140,1,19,,,,DISCHARGED -7283,2019-09-03,7729.990420936987,492,Urgent,2019-09-20,Normal,7283,453,3,14,,,,DISCHARGED -7284,2021-05-06,30688.05626736491,130,Emergency,2021-05-12,Normal,7284,313,4,18,,,,DISCHARGED -7285,2022-10-05,37629.88975010929,242,Emergency,2022-10-06,Abnormal,7285,127,1,1,,,,DISCHARGED -7286,2020-06-17,29645.86632358496,288,Elective,2020-06-26,Normal,7286,397,1,7,,,,DISCHARGED -7287,2018-11-18,6384.259683165454,360,Elective,2018-11-24,Abnormal,7287,420,1,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7288,2021-08-25,47198.38305434755,175,Urgent,2021-09-20,Abnormal,7288,367,1,26,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7289,2019-01-17,49947.56281494798,154,Emergency,2019-01-19,Inconclusive,7289,462,1,7,,,,DISCHARGED -7290,2019-09-28,39386.44181941064,201,Emergency,2019-10-17,Inconclusive,7290,238,3,12,,,,DISCHARGED -7291,2020-09-13,8545.402217475505,405,Elective,2020-09-18,Abnormal,7291,323,0,21,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7292,2018-12-08,40512.7870171696,210,Elective,2018-12-17,Normal,7292,295,4,26,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7293,2023-05-30,17310.070131499404,443,Elective,,Normal,7293,186,0,14,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",OPEN -7295,2022-08-05,15723.29263320653,170,Emergency,2022-08-10,Abnormal,7295,207,1,11,,,,DISCHARGED -7296,2020-10-25,24172.795837042133,216,Urgent,2020-11-20,Abnormal,7296,219,0,14,,,,DISCHARGED -7299,2021-01-31,15212.07391488521,196,Urgent,2021-02-26,Abnormal,7299,399,3,13,,,,DISCHARGED -7300,2021-04-25,42072.98675596639,350,Elective,2021-05-04,Inconclusive,7300,189,2,6,,,,DISCHARGED -7301,2020-10-27,48132.21867296519,250,Urgent,2020-11-04,Abnormal,7301,387,0,16,,,,DISCHARGED -7302,2023-08-07,17611.99713891229,489,Urgent,2023-08-16,Inconclusive,7302,428,4,25,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7303,2022-01-03,31445.17404752583,124,Elective,2022-01-31,Normal,7303,345,3,4,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7304,2021-04-21,20736.505722524777,120,Emergency,2021-04-27,Abnormal,7304,283,2,19,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7306,2020-11-07,11395.142928508438,239,Elective,2020-11-13,Abnormal,7306,351,3,9,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7307,2021-01-31,1244.000621332449,245,Emergency,2021-02-01,Normal,7307,236,1,18,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -7308,2022-04-22,23118.67859885996,210,Elective,2022-05-14,Inconclusive,7308,193,2,17,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7309,2019-05-14,9063.481874101006,251,Emergency,2019-06-07,Abnormal,7309,286,4,29,,,,DISCHARGED -7310,2021-05-11,4802.670310740336,127,Urgent,2021-05-27,Normal,7310,258,2,29,,,,DISCHARGED -7310,2023-04-30,5651.250351468582,440,Urgent,,Abnormal,8233,245,4,24,,,,OPEN -7311,2020-10-16,31265.88194378888,403,Urgent,2020-11-12,Inconclusive,7311,135,1,23,,,,DISCHARGED -7312,2021-11-08,43564.12658775894,467,Emergency,2021-12-02,Inconclusive,7312,279,4,9,,,,DISCHARGED -7313,2022-02-11,23892.08658065549,494,Emergency,2022-03-03,Abnormal,7313,270,3,1,,,,DISCHARGED -7314,2023-08-23,9874.148894248528,471,Elective,,Abnormal,7314,170,0,5,,,,OPEN -7315,2019-02-25,32789.184430280424,206,Elective,2019-03-04,Abnormal,7315,158,3,2,,,,DISCHARGED -7316,2020-02-17,37844.0472769887,120,Emergency,2020-02-28,Inconclusive,7316,200,3,18,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -7317,2019-05-13,9682.843417848137,153,Emergency,2019-06-09,Abnormal,7317,486,2,4,,,,DISCHARGED -7319,2021-07-03,44920.11240746373,224,Elective,2021-07-12,Inconclusive,7319,44,1,6,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -7320,2019-04-30,21661.837660256755,200,Urgent,2019-05-10,Inconclusive,7320,449,0,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7321,2023-07-07,36770.67829171979,284,Elective,,Normal,7321,263,4,26,,,,OPEN -7322,2020-06-27,49159.46187513699,261,Urgent,2020-06-28,Inconclusive,7322,70,2,9,,,,DISCHARGED -7323,2019-07-27,49368.23485879436,106,Elective,2019-08-17,Normal,7323,363,1,0,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7325,2019-01-05,10532.648283416613,149,Urgent,2019-02-03,Inconclusive,7325,370,0,10,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7326,2022-08-21,49475.70018441851,164,Urgent,2022-09-17,Normal,7326,102,3,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7327,2021-06-24,15786.091589801425,429,Emergency,2021-07-06,Normal,7327,489,1,6,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7328,2020-05-23,10265.07339387778,255,Emergency,2020-06-06,Normal,7328,124,1,5,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7329,2019-10-10,7716.662985024071,430,Emergency,2019-11-06,Normal,7329,312,1,5,,,,DISCHARGED -7330,2019-09-26,41522.30587888796,409,Urgent,2019-10-23,Normal,7330,463,3,12,,,,DISCHARGED -7331,2021-09-07,2625.98297351886,358,Urgent,2021-10-01,Abnormal,7331,482,4,15,,,,DISCHARGED -7332,2022-01-17,2003.7692479004927,406,Emergency,2022-02-10,Inconclusive,7332,285,2,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7333,2021-11-11,37045.19275152549,365,Elective,2021-12-01,Abnormal,7333,457,4,1,,,,DISCHARGED -7334,2022-06-21,38950.76353434449,150,Urgent,2022-07-20,Inconclusive,7334,229,0,18,,,,DISCHARGED -7335,2019-08-15,49877.69565091977,371,Urgent,2019-09-14,Normal,7335,145,2,18,,,,DISCHARGED -7336,2020-07-09,41024.06595877488,240,Emergency,2020-07-28,Inconclusive,7336,369,0,28,,,,DISCHARGED -7337,2020-04-02,47172.93316534732,368,Emergency,2020-05-02,Abnormal,7337,196,3,18,,,,DISCHARGED -7338,2023-05-21,22384.474105809688,401,Elective,2023-05-28,Abnormal,7338,372,4,17,,,,DISCHARGED -7339,2022-03-16,19451.27909273757,174,Urgent,2022-04-08,Inconclusive,7339,220,1,24,,,,DISCHARGED -7340,2022-09-18,4564.584714342207,498,Elective,2022-10-04,Normal,7340,422,2,5,,,,DISCHARGED -7341,2023-06-18,37777.25843683521,492,Emergency,2023-07-05,Normal,7341,59,1,1,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7342,2023-05-05,33814.08289483565,493,Elective,,Inconclusive,7342,97,0,18,,,,OPEN -7343,2019-04-29,11887.257112353243,315,Urgent,2019-05-14,Normal,7343,170,1,25,,,,DISCHARGED -7344,2019-08-11,31322.55260039573,172,Elective,2019-09-10,Abnormal,7344,381,1,5,,,,DISCHARGED -7345,2019-10-13,7718.712938027591,481,Emergency,2019-10-26,Normal,7345,172,3,19,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7346,2023-03-15,14369.191173870406,266,Urgent,2023-04-08,Inconclusive,7346,150,3,22,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7347,2019-06-17,35507.67243678987,354,Elective,2019-07-08,Normal,7347,452,4,21,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7348,2021-06-03,22688.84301631749,134,Elective,2021-06-21,Inconclusive,7348,349,0,14,,,,DISCHARGED -7349,2023-09-06,16606.961278887073,294,Urgent,,Normal,7349,389,3,5,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,OPEN -7350,2023-03-16,39959.04942750109,303,Emergency,,Inconclusive,7350,439,3,27,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",OPEN -7351,2022-09-22,9509.387200503164,428,Urgent,2022-10-11,Normal,7351,121,4,2,,,,DISCHARGED -7352,2019-10-03,46028.18327459657,323,Emergency,2019-10-18,Normal,7352,493,2,10,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -7353,2019-02-14,33481.51754841848,103,Elective,2019-03-02,Inconclusive,7353,107,4,7,,,,DISCHARGED -7354,2018-11-30,3593.6346439365584,181,Elective,2018-12-30,Abnormal,7354,3,1,24,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7356,2019-10-23,6104.171480807141,360,Emergency,2019-10-26,Inconclusive,7356,92,1,21,,,,DISCHARGED -7358,2018-11-26,26420.97513218171,289,Emergency,2018-12-26,Inconclusive,7358,406,3,17,,,,DISCHARGED -7359,2020-02-17,47498.09660959636,336,Elective,2020-02-29,Inconclusive,7359,5,3,16,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -7360,2020-09-21,3102.520177151073,459,Urgent,2020-10-01,Inconclusive,7360,287,4,18,,,,DISCHARGED -7360,2019-06-09,46415.71303815014,424,Urgent,2019-07-08,Normal,7753,105,4,18,,,,DISCHARGED -7361,2021-05-26,17511.354247874424,305,Elective,2021-06-12,Normal,7361,145,0,23,,,,DISCHARGED -7362,2023-03-21,46186.136418578615,333,Urgent,2023-04-05,Inconclusive,7362,270,1,20,,,,DISCHARGED -7363,2019-12-30,1281.1282780073082,137,Urgent,2019-12-31,Abnormal,7363,423,4,16,,,,DISCHARGED -7364,2022-05-27,27140.922228342904,377,Emergency,2022-06-15,Normal,7364,377,2,26,,,,DISCHARGED -7366,2019-08-16,36218.09921416106,464,Emergency,2019-09-02,Inconclusive,7366,95,0,3,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7367,2018-12-30,15629.941586556652,485,Urgent,2019-01-18,Abnormal,7367,456,4,6,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7368,2019-08-23,35986.93140715571,456,Urgent,2019-09-14,Normal,7368,228,3,4,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7369,2020-03-27,7446.201272026424,484,Urgent,2020-04-02,Inconclusive,7369,201,4,25,,,,DISCHARGED -7370,2018-11-09,27918.96096064302,429,Elective,2018-12-05,Inconclusive,7370,211,3,28,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -7372,2020-03-14,10658.782196833989,113,Elective,2020-03-15,Abnormal,7372,5,3,15,,,,DISCHARGED -7373,2022-09-02,30745.753575815357,101,Elective,2022-09-28,Normal,7373,111,1,5,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7374,2022-04-25,1360.8912942231163,370,Emergency,2022-05-08,Normal,7374,375,1,13,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7375,2019-01-28,11994.264546742726,290,Elective,2019-01-29,Normal,7375,378,4,25,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7376,2021-11-25,47045.40079051405,411,Elective,2021-12-18,Inconclusive,7376,446,4,19,,,,DISCHARGED -7377,2020-07-12,48533.40150312601,132,Urgent,2020-08-07,Normal,7377,322,2,1,,,,DISCHARGED -7378,2019-12-04,1478.3481195815905,169,Emergency,2019-12-23,Abnormal,7378,105,0,24,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7379,2021-03-31,39856.71432033812,283,Urgent,2021-04-11,Inconclusive,7379,138,0,17,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7380,2019-11-03,29125.793415575383,366,Emergency,2019-11-14,Normal,7380,298,4,17,,,,DISCHARGED -7381,2019-08-06,20359.875578127005,145,Elective,2019-08-18,Normal,7381,400,1,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7383,2021-10-24,32394.229845199243,281,Elective,2021-11-08,Abnormal,7383,95,2,27,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -7384,2022-08-01,20850.358986226045,406,Urgent,2022-08-26,Inconclusive,7384,387,0,17,,,,DISCHARGED -7385,2021-07-13,34077.92896248795,192,Urgent,2021-07-31,Abnormal,7385,446,4,16,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7386,2023-10-28,6769.277346453472,386,Elective,2023-11-20,Normal,7386,451,1,12,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7387,2021-06-28,43101.60586486373,467,Urgent,2021-07-07,Inconclusive,7387,336,1,27,,,,DISCHARGED -7387,2023-05-13,20321.829790717133,296,Urgent,2023-05-20,Inconclusive,9202,296,1,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7388,2020-08-01,16976.601102467925,412,Emergency,2020-08-07,Normal,7388,466,3,2,,,,DISCHARGED -7389,2021-02-23,41175.74948770679,365,Elective,2021-03-12,Inconclusive,7389,388,1,21,,,,DISCHARGED -7390,2018-11-12,33056.898305941606,196,Elective,2018-11-22,Abnormal,7390,415,4,6,,,,DISCHARGED -7391,2023-02-14,49929.7987260518,455,Emergency,2023-02-16,Abnormal,7391,213,2,0,,,,DISCHARGED -7392,2020-06-26,46139.925387324336,198,Urgent,2020-07-23,Inconclusive,7392,453,4,29,,,,DISCHARGED -7392,2023-01-05,21212.336237180574,302,Urgent,2023-02-02,Inconclusive,8419,290,1,4,,,,DISCHARGED -7393,2022-02-15,47034.01300356706,220,Urgent,2022-02-19,Inconclusive,7393,21,2,20,,,,DISCHARGED -7394,2020-05-10,17150.848338674838,387,Urgent,2020-05-22,Normal,7394,192,0,0,,,,DISCHARGED -7395,2020-04-01,37087.95395226936,473,Elective,2020-04-05,Normal,7395,467,0,3,,,,DISCHARGED -7396,2023-02-10,5824.262451376051,480,Elective,2023-02-18,Abnormal,7396,149,4,25,,,,DISCHARGED -7397,2022-08-06,41554.904721816936,137,Emergency,2022-08-18,Inconclusive,7397,367,2,0,,,,DISCHARGED -7399,2021-03-16,17560.42889417878,475,Urgent,2021-03-31,Normal,7399,246,4,12,,,,DISCHARGED -7400,2022-12-07,44516.817607446654,209,Emergency,2022-12-08,Abnormal,7400,266,2,13,,,,DISCHARGED -7401,2021-11-13,1704.6336100252934,351,Emergency,2021-12-09,Inconclusive,7401,460,2,14,,,,DISCHARGED -7402,2020-12-18,47112.7380335924,248,Urgent,2020-12-20,Inconclusive,7402,250,4,16,,,,DISCHARGED -7403,2020-03-03,8371.273328608018,143,Urgent,2020-03-30,Normal,7403,489,2,11,,,,DISCHARGED -7403,2021-04-06,48301.590278803895,310,Urgent,2021-04-24,Abnormal,8841,2,1,6,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7404,2021-10-23,41803.3731700074,309,Elective,2021-11-19,Inconclusive,7404,392,2,22,,,,DISCHARGED -7405,2022-07-25,38942.65729693895,282,Elective,2022-08-11,Abnormal,7405,315,2,18,,,,DISCHARGED -7406,2019-07-02,10814.04280236292,163,Emergency,2019-07-22,Inconclusive,7406,75,4,22,,,,DISCHARGED -7407,2022-10-02,25069.46781391736,469,Emergency,2022-10-04,Normal,7407,86,0,2,,,,DISCHARGED -7408,2020-10-19,11012.49986288973,268,Emergency,2020-10-25,Normal,7408,269,3,17,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -7409,2022-12-01,24903.290377906564,414,Emergency,2022-12-05,Inconclusive,7409,224,2,25,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7410,2023-05-05,17224.410183747044,392,Elective,2023-05-23,Abnormal,7410,17,3,3,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -7411,2022-01-23,17133.008343237874,335,Elective,2022-02-16,Abnormal,7411,112,2,29,,,,DISCHARGED -7412,2019-11-07,33610.743194768555,251,Elective,2019-11-22,Inconclusive,7412,250,4,25,,,,DISCHARGED -7413,2020-06-23,23716.67081110378,140,Emergency,2020-07-17,Abnormal,7413,232,4,2,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -7414,2019-01-30,1590.4097463553687,460,Elective,2019-02-21,Normal,7414,328,2,11,,,,DISCHARGED -7415,2020-11-23,35326.6337948422,319,Urgent,2020-11-30,Normal,7415,278,4,22,,,,DISCHARGED -7416,2021-08-19,24711.070112272955,236,Urgent,2021-09-11,Abnormal,7416,201,4,27,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7417,2020-09-29,21571.727016175897,438,Emergency,2020-10-04,Inconclusive,7417,82,2,11,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7418,2022-06-21,48977.79264938505,165,Emergency,2022-07-12,Inconclusive,7418,124,0,16,,,,DISCHARGED -7419,2018-11-26,7661.288741484641,162,Urgent,2018-12-25,Inconclusive,7419,174,2,5,,,,DISCHARGED -7420,2021-03-30,13728.703049715024,475,Emergency,2021-04-27,Normal,7420,68,0,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7421,2021-12-12,38569.21220081457,321,Emergency,2021-12-28,Abnormal,7421,46,4,29,,,,DISCHARGED -7422,2021-04-15,37643.026077415954,271,Elective,2021-05-03,Inconclusive,7422,371,0,1,,,,DISCHARGED -7423,2022-08-03,40430.56959668833,208,Emergency,2022-08-25,Normal,7423,255,4,7,,,,DISCHARGED -7424,2019-04-20,11032.645604499015,347,Emergency,2019-05-15,Abnormal,7424,214,0,13,,,,DISCHARGED -7425,2021-07-13,11564.3115220851,144,Emergency,2021-08-05,Inconclusive,7425,29,0,4,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -7426,2020-01-23,30073.195135329923,150,Elective,2020-01-31,Abnormal,7426,280,2,2,,,,DISCHARGED -7428,2019-10-13,13539.668728509292,341,Emergency,2019-11-10,Inconclusive,7428,411,0,9,,,,DISCHARGED -7431,2021-09-09,43519.631793763176,136,Elective,2021-09-12,Inconclusive,7431,481,4,6,,,,DISCHARGED -7433,2019-07-16,3801.112621764575,370,Urgent,2019-08-01,Inconclusive,7433,236,2,29,,,,DISCHARGED -7434,2019-12-31,30055.591726123723,185,Urgent,2020-01-13,Normal,7434,247,0,10,,,,DISCHARGED -7435,2019-04-10,28586.20731398601,262,Emergency,2019-04-29,Abnormal,7435,367,2,14,,,,DISCHARGED -7436,2022-09-07,7221.674070155697,366,Elective,2022-09-13,Normal,7436,494,3,1,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -7437,2021-05-26,45141.18176872801,101,Elective,2021-06-11,Inconclusive,7437,24,2,4,,,,DISCHARGED -7438,2023-06-14,44677.05926055205,425,Emergency,,Inconclusive,7438,73,3,10,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,OPEN -7439,2021-11-25,40219.24804402496,412,Emergency,2021-12-03,Abnormal,7439,205,3,7,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7440,2020-05-15,26287.501879486583,472,Emergency,2020-05-17,Normal,7440,489,2,12,,,,DISCHARGED -7441,2022-03-06,5948.4688287366425,237,Emergency,2022-03-27,Normal,7441,493,4,10,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -7442,2020-01-21,6777.181085690823,418,Urgent,2020-01-24,Normal,7442,313,4,16,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7443,2019-07-23,49324.72797131844,337,Emergency,2019-07-30,Normal,7443,93,4,14,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -7444,2019-01-13,45192.28021610689,113,Urgent,2019-02-05,Abnormal,7444,374,1,0,,,,DISCHARGED -7445,2019-07-09,22615.639542517845,133,Emergency,2019-07-17,Abnormal,7445,126,3,18,,,,DISCHARGED -7446,2019-10-07,49570.40702682619,413,Emergency,2019-10-16,Inconclusive,7446,424,2,15,,,,DISCHARGED -7447,2019-08-16,49954.968325041846,455,Emergency,2019-09-03,Abnormal,7447,24,4,18,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -7448,2020-04-17,8385.546001166742,361,Urgent,2020-05-11,Normal,7448,333,4,12,,,,DISCHARGED -7449,2021-06-16,32650.07223619745,224,Urgent,2021-06-22,Abnormal,7449,354,2,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7450,2023-09-11,47133.1123765677,361,Urgent,2023-09-18,Normal,7450,115,3,21,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7453,2023-03-03,48131.91947237794,361,Urgent,2023-03-22,Abnormal,7453,47,2,22,,,,DISCHARGED -7454,2022-11-08,32964.75562550961,172,Elective,2022-11-24,Inconclusive,7454,225,1,3,,,,DISCHARGED -7457,2020-11-09,7759.353096552857,312,Urgent,2020-11-27,Inconclusive,7457,265,1,10,,,,DISCHARGED -7458,2020-10-31,5979.757451023036,476,Emergency,2020-11-18,Abnormal,7458,98,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -7459,2020-02-10,25406.23372868209,178,Elective,2020-02-24,Abnormal,7459,458,3,17,,,,DISCHARGED -7460,2020-07-16,34681.09203646238,360,Urgent,2020-07-17,Abnormal,7460,10,4,9,,,,DISCHARGED -7461,2022-12-12,13730.432920688105,180,Urgent,2022-12-16,Normal,7461,84,1,16,,,,DISCHARGED -7462,2023-09-20,29315.82149081989,138,Emergency,2023-10-09,Normal,7462,404,1,29,,,,DISCHARGED -7464,2020-04-26,41866.63911363858,372,Urgent,2020-05-02,Normal,7464,213,3,12,,,,DISCHARGED -7465,2019-07-05,30068.203154665476,310,Urgent,2019-07-30,Inconclusive,7465,172,1,29,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -7466,2022-07-24,38926.43656797616,465,Emergency,2022-08-17,Inconclusive,7466,390,1,24,,,,DISCHARGED -7467,2019-04-30,35229.40427768582,205,Elective,2019-05-16,Inconclusive,7467,208,3,13,,,,DISCHARGED -7468,2020-12-28,21729.94285500025,177,Emergency,2021-01-23,Normal,7468,447,2,29,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7469,2019-06-05,17035.548681484644,221,Elective,2019-07-03,Abnormal,7469,381,4,6,,,,DISCHARGED -7471,2019-11-06,33492.87654641562,437,Elective,2019-11-20,Normal,7471,63,4,9,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7472,2019-08-23,30585.1306811603,251,Emergency,2019-08-28,Abnormal,7472,257,1,2,,,,DISCHARGED -7473,2022-11-18,24235.38675274028,444,Emergency,2022-12-14,Normal,7473,331,4,1,,,,DISCHARGED -7475,2019-04-25,14622.252518513578,229,Emergency,2019-05-05,Abnormal,7475,120,2,29,,,,DISCHARGED -7477,2020-03-31,2237.213829753809,487,Elective,2020-04-07,Inconclusive,7477,297,1,18,,,,DISCHARGED -7478,2022-09-11,20044.03797917539,102,Emergency,2022-09-14,Abnormal,7478,465,4,6,,,,DISCHARGED -7479,2022-12-04,18257.35989313068,459,Elective,2023-01-01,Normal,7479,53,0,4,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -7480,2021-06-04,39254.47268067215,362,Elective,2021-06-17,Normal,7480,330,0,27,,,,DISCHARGED -7481,2020-02-28,43923.18154458272,470,Elective,2020-03-11,Abnormal,7481,271,0,2,,,,DISCHARGED -7482,2019-11-02,9953.065946239403,105,Emergency,2019-11-16,Inconclusive,7482,240,0,24,,,,DISCHARGED -7484,2022-03-17,49671.246513651975,409,Urgent,2022-04-09,Abnormal,7484,242,0,1,,,,DISCHARGED -7485,2019-07-30,2800.3666717192627,369,Urgent,2019-08-25,Abnormal,7485,17,1,22,,,,DISCHARGED -7486,2023-07-07,6945.9227709571005,475,Emergency,2023-08-06,Inconclusive,7486,482,3,25,,,,DISCHARGED -7486,2019-11-12,34528.275381539795,432,Urgent,2019-11-13,Inconclusive,8399,186,3,21,,,,DISCHARGED -7487,2019-03-22,25734.900690737184,378,Elective,2019-04-02,Abnormal,7487,345,1,5,,,,DISCHARGED -7489,2021-12-01,34154.26972180311,233,Urgent,2021-12-14,Normal,7489,143,1,13,,,,DISCHARGED -7490,2020-02-27,27722.4360895578,206,Elective,2020-03-19,Normal,7490,261,2,6,,,,DISCHARGED -7491,2019-05-16,28878.905360924786,431,Elective,2019-06-13,Abnormal,7491,440,3,21,,,,DISCHARGED -7492,2020-04-16,19916.144351224702,342,Elective,2020-05-15,Abnormal,7492,363,0,1,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -7493,2019-09-17,48301.6132076731,246,Elective,2019-10-11,Normal,7493,490,1,10,,,,DISCHARGED -7494,2018-11-01,9938.327634874786,186,Emergency,2018-11-24,Inconclusive,7494,430,0,20,,,,DISCHARGED -7495,2023-05-15,40617.37265241343,318,Elective,,Normal,7495,238,3,2,,,,OPEN -7496,2020-12-31,21557.962752780608,292,Emergency,2021-01-02,Abnormal,7496,303,4,8,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7497,2020-07-31,35175.01955642231,297,Urgent,2020-08-18,Abnormal,7497,297,4,7,,,,DISCHARGED -7498,2022-06-29,17396.41494720043,210,Elective,2022-07-11,Normal,7498,75,1,25,,,,DISCHARGED -7499,2021-02-15,40350.04379074857,280,Emergency,2021-03-17,Normal,7499,187,2,10,,,,DISCHARGED -7500,2023-02-01,3926.076159638417,390,Emergency,2023-02-26,Inconclusive,7500,332,0,17,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7501,2021-09-02,24120.31194826931,163,Elective,2021-09-21,Inconclusive,7501,387,1,0,,,,DISCHARGED -7502,2022-11-09,4458.713982585574,222,Emergency,2022-11-19,Inconclusive,7502,486,2,14,,,,DISCHARGED -7503,2021-07-06,43241.42067557055,263,Emergency,2021-07-21,Abnormal,7503,245,0,3,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7504,2020-11-17,35530.414759572,317,Urgent,2020-12-12,Abnormal,7504,129,3,3,,,,DISCHARGED -7505,2023-10-13,42689.21709586649,196,Elective,2023-10-16,Normal,7505,473,4,27,,,,DISCHARGED -7506,2021-12-01,33252.597967831,138,Urgent,2021-12-26,Normal,7506,314,2,9,,,,DISCHARGED -7507,2019-12-07,8946.537283860012,281,Elective,2019-12-19,Normal,7507,410,0,10,,,,DISCHARGED -7508,2020-10-21,29349.412425786253,382,Urgent,2020-11-06,Normal,7508,282,1,17,,,,DISCHARGED -7509,2022-04-06,14935.139181821229,269,Emergency,2022-04-30,Inconclusive,7509,78,0,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -7510,2022-07-23,39533.17700364416,176,Elective,2022-08-07,Inconclusive,7510,71,1,28,,,,DISCHARGED -7511,2023-01-18,33783.29086904596,430,Urgent,2023-01-23,Inconclusive,7511,262,4,14,,,,DISCHARGED -7513,2018-12-16,22585.332696216825,311,Urgent,2019-01-07,Normal,7513,190,4,2,,,,DISCHARGED -7514,2020-10-21,29727.458154591168,116,Emergency,2020-11-10,Normal,7514,366,0,6,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7515,2020-11-27,11846.9018454956,307,Urgent,2020-12-14,Inconclusive,7515,374,0,6,,,,DISCHARGED -7516,2018-12-05,24070.575063104447,262,Emergency,2018-12-10,Abnormal,7516,429,1,16,,,,DISCHARGED -7517,2021-03-01,17281.275060380758,229,Elective,2021-03-08,Inconclusive,7517,62,1,21,,,,DISCHARGED -7517,2023-03-30,7246.224321922904,469,Emergency,2023-04-01,Abnormal,7827,487,2,19,,,,DISCHARGED -7518,2021-09-09,15241.01319560443,330,Elective,2021-09-26,Inconclusive,7518,379,2,26,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7519,2019-01-21,19078.174491168207,234,Emergency,2019-02-18,Inconclusive,7519,11,2,23,,,,DISCHARGED -7520,2021-03-10,33010.20773855482,277,Urgent,2021-04-05,Abnormal,7520,140,0,15,,,,DISCHARGED -7522,2019-05-13,4759.932137398591,178,Elective,2019-06-07,Normal,7522,253,2,15,,,,DISCHARGED -7523,2021-07-13,23900.173952384263,156,Emergency,2021-07-16,Inconclusive,7523,42,0,7,,,,DISCHARGED -7524,2020-01-05,23955.03324012349,358,Urgent,2020-01-18,Normal,7524,16,4,2,,,,DISCHARGED -7525,2022-04-02,13749.589500401757,180,Emergency,2022-04-22,Inconclusive,7525,62,3,19,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7526,2019-10-17,25067.95406129665,214,Urgent,2019-10-25,Abnormal,7526,252,4,14,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -7527,2018-12-04,24812.64083526269,428,Elective,2018-12-31,Normal,7527,464,0,0,,,,DISCHARGED -7528,2022-01-01,47342.145612677385,286,Elective,2022-01-31,Abnormal,7528,375,0,9,,,,DISCHARGED -7529,2023-05-04,31419.59359869032,286,Elective,,Inconclusive,7529,291,3,1,,,,OPEN -7530,2020-11-27,8373.869924308441,137,Elective,2020-12-19,Normal,7530,468,1,6,,,,DISCHARGED -7531,2022-10-13,23322.28154651912,259,Emergency,2022-11-01,Normal,7531,7,1,13,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7532,2020-08-28,11150.694338427196,159,Emergency,2020-08-30,Inconclusive,7532,324,1,15,,,,DISCHARGED -7533,2022-03-17,45799.49536639733,282,Urgent,2022-03-18,Normal,7533,89,2,26,,,,DISCHARGED -7534,2023-04-21,32429.35597646565,413,Emergency,2023-04-24,Inconclusive,7534,207,1,27,,,,DISCHARGED -7535,2020-09-23,10353.015811602032,258,Urgent,2020-09-26,Inconclusive,7535,291,2,14,,,,DISCHARGED -7536,2018-12-02,31096.17167917293,337,Emergency,2018-12-13,Abnormal,7536,283,2,6,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7537,2021-02-19,24776.963691451743,359,Elective,2021-03-17,Inconclusive,7537,117,1,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -7539,2019-10-07,9249.604453365868,145,Urgent,2019-10-17,Normal,7539,348,1,24,,,,DISCHARGED -7540,2020-11-17,17003.279796990715,167,Elective,2020-12-14,Inconclusive,7540,174,3,9,,,,DISCHARGED -7541,2022-10-20,25600.23079981989,366,Urgent,2022-10-27,Abnormal,7541,75,3,8,,,,DISCHARGED -7542,2023-04-21,30967.39653599477,125,Emergency,,Abnormal,7542,100,2,8,,,,OPEN -7543,2020-05-24,12309.00015229968,221,Urgent,2020-06-07,Normal,7543,413,3,5,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7545,2020-03-18,27264.57685737836,306,Urgent,2020-04-08,Inconclusive,7545,150,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7547,2022-07-01,49354.88765759358,405,Emergency,2022-07-12,Abnormal,7547,399,0,24,,,,DISCHARGED -7548,2022-03-11,38712.46098213759,422,Elective,2022-03-14,Abnormal,7548,269,2,11,,,,DISCHARGED -7549,2023-10-23,26666.06848656508,227,Urgent,,Abnormal,7549,457,2,29,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,OPEN -7550,2022-04-03,25397.300218633816,362,Emergency,2022-04-22,Inconclusive,7550,70,3,22,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7551,2023-01-20,10304.704586592808,105,Emergency,2023-02-01,Abnormal,7551,492,0,19,,,,DISCHARGED -7552,2023-06-18,36474.05836049384,379,Elective,2023-06-26,Normal,7552,179,4,29,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -7553,2020-03-14,15343.189128399616,359,Elective,2020-03-19,Normal,7553,123,4,19,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7554,2020-09-30,41316.53930923124,486,Urgent,2020-10-15,Normal,7554,380,4,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -7555,2022-12-13,39280.97229570934,332,Emergency,2022-12-31,Abnormal,7555,292,0,13,,,,DISCHARGED -7556,2022-10-21,26454.54152496901,471,Elective,2022-11-10,Inconclusive,7556,284,1,26,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -7557,2020-09-08,35268.98010936694,281,Urgent,2020-09-14,Inconclusive,7557,194,0,19,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -7558,2023-05-07,21566.39008498816,176,Emergency,,Normal,7558,398,3,26,,,,OPEN -7559,2023-08-21,42482.76834704472,396,Urgent,2023-09-04,Inconclusive,7559,227,2,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7560,2022-03-31,27436.781941440066,296,Elective,2022-04-05,Normal,7560,430,2,7,,,,DISCHARGED -7561,2020-05-25,20254.563439425183,326,Elective,2020-06-03,Inconclusive,7561,429,3,7,,,,DISCHARGED -7562,2020-05-13,44648.80888479472,161,Urgent,2020-06-04,Normal,7562,435,3,29,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -7563,2023-04-10,8077.510380160883,235,Elective,2023-04-26,Abnormal,7563,274,2,7,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7565,2022-03-20,35202.74867748666,256,Urgent,2022-03-27,Inconclusive,7565,460,1,1,,,,DISCHARGED -7566,2023-07-03,17772.670112284315,459,Emergency,2023-07-31,Abnormal,7566,105,1,13,,,,DISCHARGED -7567,2020-07-12,1276.0740036201405,223,Urgent,2020-08-01,Normal,7567,20,1,9,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7568,2019-07-09,20042.115211190205,498,Urgent,2019-08-07,Inconclusive,7568,63,3,17,,,,DISCHARGED -7571,2022-05-14,30805.32113071227,291,Elective,2022-05-27,Abnormal,7571,164,2,17,,,,DISCHARGED -7572,2019-01-21,48613.18087703866,455,Emergency,2019-02-01,Abnormal,7572,26,2,17,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7573,2021-12-30,26982.81019659724,161,Emergency,2022-01-09,Abnormal,7573,310,2,15,,,,DISCHARGED -7574,2022-10-24,19037.289144380786,379,Elective,2022-11-22,Normal,7574,499,0,19,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -7575,2021-03-15,40735.34224928746,487,Emergency,2021-03-23,Normal,7575,284,0,4,,,,DISCHARGED -7577,2021-07-26,11453.54796503632,446,Urgent,2021-08-20,Abnormal,7577,147,4,19,,,,DISCHARGED -7578,2022-11-16,40287.76080098123,459,Elective,2022-11-17,Inconclusive,7578,280,0,4,,,,DISCHARGED -7579,2021-05-20,37077.45492268149,320,Emergency,2021-06-15,Inconclusive,7579,325,1,19,,,,DISCHARGED -7580,2023-05-16,28612.59176559864,397,Elective,,Abnormal,7580,318,1,22,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -7581,2019-06-24,9245.928921296689,154,Elective,2019-07-19,Abnormal,7581,163,1,9,,,,DISCHARGED -7582,2022-09-01,45034.31550129354,445,Elective,2022-09-28,Normal,7582,385,1,16,,,,DISCHARGED -7583,2021-11-27,2311.084445295098,341,Urgent,2021-12-21,Normal,7583,405,4,29,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7583,2022-06-22,15673.557008471418,440,Elective,2022-07-10,Abnormal,9789,223,1,12,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7584,2022-05-27,47961.16734645986,344,Elective,2022-06-16,Inconclusive,7584,271,3,16,,,,DISCHARGED -7585,2023-01-05,39405.59983581299,373,Emergency,2023-01-17,Normal,7585,145,3,17,,,,DISCHARGED -7586,2022-08-21,29803.70806986676,400,Elective,2022-08-31,Abnormal,7586,452,3,12,,,,DISCHARGED -7587,2020-12-12,2840.059836079563,480,Elective,2020-12-14,Normal,7587,437,0,16,,,,DISCHARGED -7588,2020-07-31,25687.303402688325,389,Elective,2020-08-07,Abnormal,7588,355,2,27,,,,DISCHARGED -7589,2020-06-10,44022.69970621039,478,Urgent,2020-06-30,Abnormal,7589,29,4,14,,,,DISCHARGED -7590,2020-01-25,48595.98903354435,316,Emergency,2020-02-15,Abnormal,7590,44,3,25,,,,DISCHARGED -7590,2023-01-09,41660.02058108216,419,Emergency,,Inconclusive,8922,274,3,11,,,,OPEN -7591,2020-09-22,25298.39649780224,226,Elective,2020-10-04,Inconclusive,7591,470,1,27,,,,DISCHARGED -7592,2023-10-29,31326.76492035724,428,Urgent,2023-11-19,Normal,7592,33,3,9,,,,DISCHARGED -7593,2019-01-14,29273.413310825053,124,Urgent,2019-01-29,Inconclusive,7593,140,1,12,,,,DISCHARGED -7594,2023-07-14,40373.17216182071,486,Urgent,,Normal,7594,426,1,29,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,OPEN -7595,2019-03-17,32571.69215518851,151,Urgent,2019-03-28,Abnormal,7595,317,2,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7596,2020-01-16,15958.00361033491,228,Urgent,2020-02-06,Inconclusive,7596,373,0,2,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7597,2022-01-07,36780.56685612672,229,Emergency,2022-01-30,Abnormal,7597,220,1,21,,,,DISCHARGED -7599,2019-01-03,17547.573809900583,390,Elective,2019-01-10,Normal,7599,355,1,9,,,,DISCHARGED -7600,2021-07-26,47575.66853569025,269,Urgent,2021-08-12,Inconclusive,7600,21,2,10,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7601,2019-11-07,47043.76405765129,200,Elective,2019-12-05,Normal,7601,179,1,5,,,,DISCHARGED -7602,2021-07-14,2029.826589406668,423,Emergency,2021-07-31,Abnormal,7602,435,4,0,,,,DISCHARGED -7603,2019-01-22,40106.24816316746,173,Emergency,2019-02-13,Abnormal,7603,366,0,5,,,,DISCHARGED -7604,2023-06-17,18144.696741633557,317,Elective,,Inconclusive,7604,419,4,4,,,,OPEN -7605,2023-07-29,43330.42405321675,467,Elective,2023-08-13,Abnormal,7605,328,3,6,,,,DISCHARGED -7605,2020-07-01,23715.361937958616,362,Emergency,2020-07-26,Abnormal,9328,230,0,21,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7606,2019-04-17,35396.45494422474,303,Emergency,2019-04-22,Normal,7606,498,3,11,,,,DISCHARGED -7607,2021-09-24,10006.78652315574,412,Urgent,2021-10-21,Inconclusive,7607,402,1,11,,,,DISCHARGED -7608,2020-02-05,12395.468079593553,280,Emergency,2020-02-18,Abnormal,7608,37,2,6,,,,DISCHARGED -7610,2023-08-21,5590.3993575547765,181,Elective,,Normal,7610,69,4,1,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,OPEN -7611,2021-06-11,15900.065316128868,359,Emergency,2021-06-21,Abnormal,7611,115,3,27,,,,DISCHARGED -7612,2020-07-01,18268.8935760037,342,Elective,2020-07-10,Abnormal,7612,238,1,0,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7614,2020-07-28,8772.45086080625,432,Elective,2020-08-12,Normal,7614,334,4,29,,,,DISCHARGED -7615,2020-05-08,3156.8184330689965,324,Urgent,2020-05-11,Normal,7615,440,4,22,,,,DISCHARGED -7616,2022-04-27,4499.8866998457215,197,Elective,2022-05-06,Abnormal,7616,147,3,24,,,,DISCHARGED -7617,2021-01-02,21748.6189773504,436,Elective,2021-01-30,Normal,7617,8,1,17,,,,DISCHARGED -7618,2021-01-22,12553.923219262631,411,Elective,2021-01-28,Abnormal,7618,287,2,11,,,,DISCHARGED -7619,2019-05-25,21509.15069415214,254,Emergency,2019-06-02,Abnormal,7619,387,3,6,,,,DISCHARGED -7620,2021-10-12,31995.64562501236,147,Elective,2021-10-18,Abnormal,7620,49,4,18,,,,DISCHARGED -7621,2020-08-31,45123.65092597917,261,Elective,2020-09-27,Normal,7621,337,4,21,,,,DISCHARGED -7622,2020-08-03,5779.592656388444,180,Elective,2020-08-30,Inconclusive,7622,4,0,2,,,,DISCHARGED -7623,2018-11-18,47714.51195701646,389,Urgent,2018-12-02,Inconclusive,7623,403,1,28,,,,DISCHARGED -7624,2020-10-08,5982.688136972958,266,Emergency,2020-11-02,Inconclusive,7624,342,0,9,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -7626,2022-03-23,13793.092940101482,152,Elective,2022-04-13,Inconclusive,7626,125,2,28,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7628,2018-12-27,19752.10009010144,425,Elective,2019-01-16,Inconclusive,7628,74,3,26,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7629,2020-11-22,14842.790025218645,459,Emergency,2020-11-27,Normal,7629,164,4,26,,,,DISCHARGED -7630,2020-10-19,19346.38549114672,243,Emergency,2020-11-03,Abnormal,7630,277,1,10,,,,DISCHARGED -7631,2018-10-31,18142.84307737513,255,Elective,2018-11-13,Abnormal,7631,441,4,4,,,,DISCHARGED -7632,2019-04-14,2677.185352127938,467,Emergency,2019-05-04,Normal,7632,323,0,1,,,,DISCHARGED -7633,2022-08-10,31204.62311944347,374,Emergency,2022-08-17,Abnormal,7633,476,0,7,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7634,2021-10-02,30856.406894235894,355,Elective,2021-10-22,Inconclusive,7634,299,3,13,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7635,2021-07-14,35174.45573061164,354,Emergency,2021-07-31,Abnormal,7635,289,1,7,,,,DISCHARGED -7636,2020-03-21,11424.81216709894,251,Elective,2020-04-19,Normal,7636,76,1,22,,,,DISCHARGED -7637,2019-03-18,21781.87716637204,137,Urgent,2019-04-12,Inconclusive,7637,297,3,5,,,,DISCHARGED -7639,2021-08-01,29292.163626148085,225,Emergency,2021-08-05,Abnormal,7639,136,0,0,,,,DISCHARGED -7640,2020-01-10,36182.90739086442,188,Elective,2020-01-14,Normal,7640,105,0,23,,,,DISCHARGED -7641,2020-02-19,46643.84023934264,204,Urgent,2020-03-05,Normal,7641,94,0,0,,,,DISCHARGED -7643,2022-03-17,12313.508623174104,171,Urgent,2022-04-09,Inconclusive,7643,134,4,7,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -7644,2023-01-06,38216.06919943145,134,Elective,,Normal,7644,67,2,10,,,,OPEN -7645,2022-05-28,17577.232673794424,328,Urgent,2022-06-14,Normal,7645,146,0,17,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -7646,2023-08-17,45446.40306876984,242,Elective,,Inconclusive,7646,489,2,23,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -7647,2020-08-28,32427.11276252716,156,Urgent,2020-09-27,Normal,7647,477,2,9,,,,DISCHARGED -7648,2021-03-31,22482.39614793812,499,Elective,2021-04-18,Inconclusive,7648,158,1,11,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7649,2018-11-18,43402.96492054654,123,Elective,2018-12-01,Normal,7649,383,3,19,,,,DISCHARGED -7650,2021-11-23,13420.958480220388,482,Elective,2021-11-26,Inconclusive,7650,162,4,22,,,,DISCHARGED -7651,2022-04-13,31311.424660852867,230,Urgent,2022-05-01,Inconclusive,7651,440,2,15,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7652,2020-02-19,3158.890263988276,481,Emergency,2020-02-27,Inconclusive,7652,340,4,4,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -7653,2023-09-21,23191.689107501123,194,Elective,2023-10-08,Abnormal,7653,188,1,15,,,,DISCHARGED -7654,2019-04-13,22181.91768147275,370,Elective,2019-05-05,Abnormal,7654,414,0,23,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7655,2021-05-02,29628.535062676077,105,Elective,2021-05-25,Normal,7655,338,2,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -7656,2019-04-27,28297.49309566936,172,Urgent,2019-05-22,Inconclusive,7656,94,3,5,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7657,2023-02-18,49853.500988004256,481,Elective,,Normal,7657,180,1,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -7659,2023-03-21,43318.943901710736,470,Urgent,,Abnormal,7659,287,4,4,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -7660,2020-11-15,4148.220930134432,199,Elective,2020-11-19,Normal,7660,321,0,0,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7661,2021-02-08,28288.43592212357,361,Elective,2021-02-22,Abnormal,7661,186,4,18,,,,DISCHARGED -7662,2022-10-30,17687.931585270235,408,Urgent,2022-11-28,Inconclusive,7662,371,3,9,,,,DISCHARGED -7663,2022-10-07,34805.203241882395,184,Elective,2022-10-14,Normal,7663,137,2,24,,,,DISCHARGED -7664,2021-10-19,10183.782288769242,272,Emergency,2021-10-29,Inconclusive,7664,129,3,13,,,,DISCHARGED -7665,2021-05-09,11981.494931619198,176,Urgent,2021-06-02,Abnormal,7665,193,4,24,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7666,2023-06-10,6935.345564503594,337,Emergency,2023-06-16,Abnormal,7666,315,4,20,,,,DISCHARGED -7667,2022-02-01,37877.60797099058,280,Elective,2022-02-21,Abnormal,7667,471,3,2,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7668,2019-10-01,48362.3539628386,117,Emergency,2019-10-04,Abnormal,7668,272,3,5,,,,DISCHARGED -7669,2020-09-02,35698.37153851072,221,Emergency,2020-09-13,Abnormal,7669,351,3,4,,,,DISCHARGED -7671,2021-08-25,12745.443238021262,308,Urgent,2021-09-19,Abnormal,7671,143,0,16,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7672,2021-09-22,1862.8311249810265,414,Urgent,2021-10-05,Inconclusive,7672,15,4,17,,,,DISCHARGED -7673,2023-01-02,40888.37822861642,179,Elective,,Normal,7673,301,1,11,,,,OPEN -7674,2020-10-01,14978.26711171732,174,Emergency,2020-10-15,Normal,7674,422,0,4,,,,DISCHARGED -7675,2020-07-09,7192.006776039567,412,Urgent,2020-07-21,Inconclusive,7675,244,0,29,,,,DISCHARGED -7676,2020-01-11,45775.03619804968,127,Elective,2020-02-02,Abnormal,7676,414,0,8,,,,DISCHARGED -7677,2020-12-22,34233.9483511713,131,Elective,2021-01-01,Inconclusive,7677,106,1,11,,,,DISCHARGED -7678,2020-02-08,9006.068513154656,112,Urgent,2020-02-19,Inconclusive,7678,87,3,19,,,,DISCHARGED -7679,2020-08-25,22873.510387314516,129,Urgent,2020-09-24,Normal,7679,128,4,8,,,,DISCHARGED -7680,2023-09-30,44376.65774673086,374,Elective,,Abnormal,7680,394,2,2,,,,OPEN -7681,2022-11-21,13875.388597989107,429,Urgent,2022-11-23,Abnormal,7681,374,2,0,,,,DISCHARGED -7682,2019-05-14,18781.242067348667,278,Elective,2019-05-15,Normal,7682,340,4,21,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7683,2020-04-08,25782.120305549048,330,Elective,2020-04-17,Normal,7683,3,1,14,,,,DISCHARGED -7684,2023-08-27,15593.845440778265,268,Urgent,,Normal,7684,326,2,9,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,OPEN -7685,2019-12-26,27050.273411943308,104,Urgent,2020-01-22,Inconclusive,7685,409,0,13,,,,DISCHARGED -7685,2019-03-08,31419.259785053164,339,Emergency,2019-03-19,Normal,9379,366,2,6,,,,DISCHARGED -7686,2023-02-06,4454.4955768808895,493,Elective,2023-02-14,Normal,7686,305,4,3,,,,DISCHARGED -7687,2022-01-11,45038.43045134747,298,Elective,2022-01-18,Inconclusive,7687,395,0,25,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7688,2020-09-10,39694.167419873535,133,Elective,2020-09-29,Inconclusive,7688,94,2,4,,,,DISCHARGED -7689,2020-01-26,35637.27706068588,306,Elective,2020-02-11,Inconclusive,7689,208,4,19,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7689,2021-08-07,22519.030419525014,302,Emergency,2021-08-25,Abnormal,7757,224,1,15,,,,DISCHARGED -7689,2021-06-12,37290.977520786975,250,Emergency,2021-06-30,Inconclusive,9214,458,4,2,,,,DISCHARGED -7690,2019-11-26,4529.550047294355,204,Elective,2019-12-09,Inconclusive,7690,347,1,16,,,,DISCHARGED -7691,2021-12-06,28524.851709465114,208,Urgent,2022-01-04,Normal,7691,479,0,12,,,,DISCHARGED -7692,2021-09-09,37546.11006387198,330,Emergency,2021-09-30,Abnormal,7692,320,4,5,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -7693,2019-01-15,33574.607661775735,295,Elective,2019-01-27,Normal,7693,46,3,25,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7694,2020-05-16,16789.952494847894,336,Emergency,2020-06-04,Inconclusive,7694,475,3,4,,,,DISCHARGED -7695,2023-04-25,22428.317361134337,179,Emergency,,Abnormal,7695,180,3,15,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -7696,2020-08-23,27342.039211629948,407,Elective,2020-09-19,Abnormal,7696,105,3,10,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7697,2019-11-15,35750.66688616853,455,Elective,2019-11-27,Normal,7697,198,3,16,,,,DISCHARGED -7698,2021-08-05,46208.3365541836,363,Urgent,2021-08-08,Inconclusive,7698,385,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7699,2021-04-20,46762.16940929933,407,Elective,2021-04-25,Abnormal,7699,105,4,5,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7700,2022-01-06,45302.95974356179,274,Elective,2022-01-15,Normal,7700,279,0,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -7701,2019-01-06,22412.16837033752,252,Emergency,2019-02-05,Inconclusive,7701,259,3,20,,,,DISCHARGED -7702,2023-03-08,39989.319058238354,314,Elective,2023-04-07,Normal,7702,107,3,0,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7703,2019-02-06,44495.658182367406,272,Urgent,2019-02-27,Abnormal,7703,18,0,29,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7704,2022-03-20,2049.218709825745,203,Elective,2022-03-27,Inconclusive,7704,409,0,20,,,,DISCHARGED -7705,2020-12-07,43091.60946423059,218,Urgent,2020-12-26,Normal,7705,458,3,9,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7706,2019-06-06,6713.31103783384,105,Elective,2019-06-22,Normal,7706,295,1,16,,,,DISCHARGED -7707,2023-09-03,5368.3604993887375,123,Emergency,2023-09-26,Normal,7707,305,0,26,,,,DISCHARGED -7707,2022-07-11,47531.80857876352,247,Urgent,2022-08-04,Inconclusive,7780,170,4,2,,,,DISCHARGED -7708,2023-06-27,30732.68742238442,409,Urgent,2023-07-20,Inconclusive,7708,330,4,27,,,,DISCHARGED -7709,2018-12-07,6958.629020585729,437,Elective,2018-12-16,Abnormal,7709,492,1,28,,,,DISCHARGED -7710,2018-11-29,18551.501874,293,Elective,2018-12-05,Normal,7710,194,2,1,,,,DISCHARGED -7711,2020-05-28,46278.79613850746,416,Elective,2020-06-25,Abnormal,7711,11,1,28,,,,DISCHARGED -7712,2020-02-17,15163.33802539704,488,Emergency,2020-03-03,Abnormal,7712,194,3,16,,,,DISCHARGED -7713,2020-10-29,37849.93139457389,455,Emergency,2020-11-19,Inconclusive,7713,489,2,3,,,,DISCHARGED -7714,2021-11-03,49746.207799581374,188,Elective,2021-11-09,Inconclusive,7714,282,3,1,,,,DISCHARGED -7716,2021-11-22,7440.760707896285,317,Emergency,2021-12-02,Abnormal,7716,368,4,4,,,,DISCHARGED -7717,2020-05-06,38389.39250726174,264,Urgent,2020-06-02,Inconclusive,7717,181,0,9,,,,DISCHARGED -7718,2020-05-25,8376.578094819706,228,Elective,2020-06-02,Abnormal,7718,449,3,0,,,,DISCHARGED -7719,2021-05-26,10199.247755534712,196,Elective,2021-06-11,Normal,7719,304,4,27,,,,DISCHARGED -7720,2022-04-29,4033.098229763275,235,Elective,2022-05-03,Inconclusive,7720,143,1,25,,,,DISCHARGED -7721,2021-10-06,18774.383817861653,207,Elective,2021-10-24,Inconclusive,7721,385,3,0,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7722,2021-05-05,3509.5569278122102,235,Urgent,2021-05-23,Normal,7722,315,4,26,,,,DISCHARGED -7723,2019-12-28,39276.88198910996,395,Elective,2019-12-29,Inconclusive,7723,181,0,25,,,,DISCHARGED -7724,2020-04-04,43134.09555725192,492,Emergency,2020-04-13,Abnormal,7724,29,3,3,,,,DISCHARGED -7725,2021-11-08,23209.654228541734,444,Urgent,2021-11-29,Abnormal,7725,83,4,6,,,,DISCHARGED -7726,2021-11-29,6120.775741440538,122,Urgent,2021-12-23,Inconclusive,7726,165,3,13,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7727,2020-05-05,4414.295160830624,351,Urgent,2020-05-08,Abnormal,7727,283,0,13,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -7728,2018-12-14,48048.84834294605,149,Urgent,2019-01-07,Abnormal,7728,280,3,17,,,,DISCHARGED -7729,2022-01-06,26125.131725791376,498,Urgent,2022-01-20,Inconclusive,7729,95,3,1,,,,DISCHARGED -7730,2022-09-07,41633.44106869959,364,Emergency,2022-09-15,Inconclusive,7730,380,4,0,,,,DISCHARGED -7731,2021-11-30,32083.661556473835,445,Urgent,2021-12-19,Abnormal,7731,265,2,20,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7732,2023-08-03,6743.503122315439,399,Urgent,2023-08-16,Inconclusive,7732,443,3,21,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7733,2020-10-30,48013.30131520327,153,Urgent,2020-11-04,Normal,7733,297,2,15,,,,DISCHARGED -7734,2023-04-20,40008.78406934922,282,Urgent,2023-05-12,Inconclusive,7734,295,1,28,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7735,2021-01-16,34303.92416623917,330,Elective,2021-01-28,Inconclusive,7735,224,3,21,,,,DISCHARGED -7735,2023-01-28,25298.17609805868,353,Urgent,2023-02-03,Normal,9212,332,2,17,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -7736,2021-03-17,36799.57315370416,273,Elective,2021-04-05,Inconclusive,7736,360,1,15,,,,DISCHARGED -7737,2022-02-21,2806.840574850862,241,Urgent,2022-02-25,Abnormal,7737,373,4,27,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7738,2022-06-27,2370.414645186479,390,Elective,2022-07-24,Inconclusive,7738,41,3,27,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7739,2019-12-04,18941.661255241022,109,Elective,2019-12-15,Normal,7739,302,4,22,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -7741,2023-01-13,1572.8415334497367,378,Urgent,2023-02-08,Inconclusive,7741,420,1,21,,,,DISCHARGED -7742,2019-10-21,25262.709104199024,282,Emergency,2019-11-12,Inconclusive,7742,245,4,23,,,,DISCHARGED -7743,2019-06-07,15814.965379643949,147,Elective,2019-07-06,Inconclusive,7743,207,4,5,,,,DISCHARGED -7744,2020-04-14,31251.02139876768,190,Emergency,2020-04-17,Normal,7744,236,0,24,,,,DISCHARGED -7746,2022-03-21,9835.44968867658,234,Elective,2022-04-05,Inconclusive,7746,21,1,9,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -7748,2020-02-17,8291.457868706462,308,Elective,2020-03-02,Normal,7748,184,4,1,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -7749,2020-01-11,32133.792653107103,495,Emergency,2020-01-27,Abnormal,7749,467,2,6,,,,DISCHARGED -7750,2023-05-14,4474.830761342988,265,Urgent,,Normal,7750,241,1,20,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",OPEN -7751,2018-11-06,47415.90555368184,273,Emergency,2018-11-09,Inconclusive,7751,362,0,16,,,,DISCHARGED -7752,2021-06-15,24805.5707409932,290,Urgent,2021-06-27,Normal,7752,282,3,2,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7754,2019-11-21,48063.80210654905,299,Urgent,2019-12-09,Abnormal,7754,40,4,19,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7755,2023-09-20,31377.65713478639,284,Urgent,,Normal,7755,335,2,11,,,,OPEN -7756,2022-10-01,4474.671264229802,435,Elective,2022-10-29,Normal,7756,161,0,1,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7758,2020-05-05,41695.49895379978,211,Urgent,2020-05-25,Normal,7758,159,1,6,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7759,2021-06-03,1945.5584042267517,478,Emergency,2021-06-23,Inconclusive,7759,473,4,16,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -7760,2023-02-12,36797.65183415827,265,Elective,2023-03-03,Inconclusive,7760,88,0,18,,,,DISCHARGED -7762,2020-11-18,21860.784994617545,171,Urgent,2020-12-03,Normal,7762,321,0,11,,,,DISCHARGED -7763,2021-01-12,11055.393569204623,409,Emergency,2021-01-30,Normal,7763,11,2,8,,,,DISCHARGED -7764,2020-09-03,38922.33376671378,178,Elective,2020-09-07,Abnormal,7764,423,3,26,,,,DISCHARGED -7765,2020-04-19,41141.59632068442,242,Elective,2020-05-09,Abnormal,7765,72,3,13,,,,DISCHARGED -7766,2022-11-06,9840.099003880285,433,Urgent,2022-11-29,Normal,7766,75,3,1,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7767,2023-05-15,31868.45078500088,118,Elective,2023-05-27,Inconclusive,7767,345,1,20,,,,DISCHARGED -7768,2022-08-09,29081.35570175221,405,Emergency,2022-08-14,Abnormal,7768,200,0,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -7768,2020-03-12,37776.91749843912,313,Emergency,2020-03-15,Normal,9361,9,1,27,,,,DISCHARGED -7769,2022-03-04,16308.114029146824,198,Emergency,2022-03-20,Normal,7769,351,0,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -7771,2019-08-31,39612.239526898586,441,Emergency,2019-09-30,Inconclusive,7771,225,2,20,,,,DISCHARGED -7772,2021-06-16,10491.40516226454,275,Elective,2021-06-22,Abnormal,7772,175,2,15,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -7773,2019-07-07,22748.22060244582,353,Emergency,2019-07-19,Inconclusive,7773,275,1,21,,,,DISCHARGED -7774,2023-05-03,36415.528481924746,499,Emergency,,Abnormal,7774,38,1,16,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,OPEN -7775,2023-06-09,24936.44578934288,458,Urgent,2023-07-08,Inconclusive,7775,59,2,1,,,,DISCHARGED -7776,2019-11-23,11959.769398229046,161,Emergency,2019-12-03,Normal,7776,65,4,16,,,,DISCHARGED -7778,2021-05-07,10487.56903793358,301,Urgent,2021-05-10,Normal,7778,320,3,18,,,,DISCHARGED -7781,2019-04-22,22371.753733155776,161,Elective,2019-05-01,Inconclusive,7781,434,3,7,,,,DISCHARGED -7782,2021-10-16,32569.824969369205,464,Urgent,2021-10-17,Inconclusive,7782,123,2,23,,,,DISCHARGED -7783,2021-07-11,33361.98400499496,144,Urgent,2021-08-04,Abnormal,7783,163,3,19,,,,DISCHARGED -7784,2021-04-23,14142.877526157072,418,Emergency,2021-04-30,Inconclusive,7784,407,4,5,,,,DISCHARGED -7786,2021-09-12,42943.96369664044,236,Urgent,2021-09-16,Abnormal,7786,410,4,11,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7787,2020-03-17,10197.548363160871,127,Elective,2020-03-25,Inconclusive,7787,385,0,24,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -7789,2020-03-05,5479.926031800201,256,Urgent,2020-03-30,Normal,7789,158,1,29,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7790,2021-08-06,6134.895820650226,201,Emergency,2021-08-28,Normal,7790,56,3,22,,,,DISCHARGED -7791,2023-03-31,43701.6616833722,244,Urgent,,Inconclusive,7791,77,4,17,,,,OPEN -7793,2021-11-30,44912.76481054358,464,Emergency,2021-12-01,Inconclusive,7793,193,1,26,,,,DISCHARGED -7794,2021-09-05,24029.882379408908,261,Emergency,2021-09-28,Inconclusive,7794,284,1,1,,,,DISCHARGED -7795,2018-12-31,40492.89057419783,433,Elective,2019-01-24,Abnormal,7795,14,0,18,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7796,2020-06-30,23416.974473249025,316,Emergency,2020-07-19,Abnormal,7796,11,1,23,,,,DISCHARGED -7797,2019-05-23,23615.1733470237,400,Elective,2019-05-30,Normal,7797,100,1,9,,,,DISCHARGED -7798,2019-09-20,19089.380809571678,245,Elective,2019-09-28,Abnormal,7798,155,2,24,,,,DISCHARGED -7799,2022-05-26,3627.179428308804,121,Elective,2022-06-21,Normal,7799,339,0,28,,,,DISCHARGED -7800,2019-08-02,46310.72667247677,453,Elective,2019-08-30,Abnormal,7800,124,0,29,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7801,2019-04-21,29847.71025219188,182,Elective,2019-05-08,Normal,7801,358,3,2,,,,DISCHARGED -7803,2020-07-05,27136.63519447968,396,Elective,2020-08-04,Inconclusive,7803,279,1,24,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -7804,2020-06-24,34764.97782240485,218,Emergency,2020-07-08,Abnormal,7804,404,3,27,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -7805,2019-01-18,20050.02566531668,186,Urgent,2019-01-31,Normal,7805,393,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7806,2019-06-28,38358.70144422049,339,Emergency,2019-07-09,Normal,7806,109,1,25,,,,DISCHARGED -7807,2021-03-30,11959.715790548446,440,Emergency,2021-04-22,Abnormal,7807,333,4,15,,,,DISCHARGED -7808,2022-09-17,45265.01644275665,430,Elective,2022-09-25,Normal,7808,356,2,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -7809,2022-11-11,42201.90733298428,290,Emergency,2022-12-03,Inconclusive,7809,145,1,7,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -7809,2022-06-06,42781.11037144584,103,Elective,2022-07-06,Abnormal,8492,215,3,4,,,,DISCHARGED -7810,2020-11-24,6895.3029667210885,427,Emergency,2020-11-27,Inconclusive,7810,397,3,10,,,,DISCHARGED -7811,2023-06-24,14460.233216944822,189,Elective,2023-07-03,Inconclusive,7811,161,1,9,,,,DISCHARGED -7812,2020-06-09,32017.27268000004,403,Urgent,2020-07-08,Abnormal,7812,127,3,2,,,,DISCHARGED -7813,2022-06-05,45443.92086452643,417,Emergency,2022-06-13,Abnormal,7813,313,1,26,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7814,2019-12-07,31611.80425783832,137,Elective,2019-12-27,Normal,7814,331,0,22,,,,DISCHARGED -7815,2020-08-29,3247.818886508557,311,Urgent,2020-09-14,Abnormal,7815,149,3,8,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -7816,2021-01-15,7521.617747171937,450,Elective,2021-02-09,Abnormal,7816,453,1,11,,,,DISCHARGED -7817,2022-11-05,37040.63460571891,358,Elective,2022-12-01,Normal,7817,35,1,5,,,,DISCHARGED -7818,2023-08-05,37153.40059667414,440,Elective,,Normal,7818,172,3,18,,,,OPEN -7819,2019-12-24,40029.7656255471,346,Emergency,2020-01-11,Inconclusive,7819,419,0,15,,,,DISCHARGED -7820,2023-06-11,9799.417230085248,267,Emergency,2023-07-10,Inconclusive,7820,21,3,20,,,,DISCHARGED -7821,2021-09-05,14757.795134815808,169,Elective,2021-09-06,Inconclusive,7821,205,1,22,,,,DISCHARGED -7822,2021-03-20,24024.574530482365,300,Urgent,2021-04-08,Normal,7822,126,0,23,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7823,2023-10-24,23314.307677866524,176,Elective,2023-10-31,Abnormal,7823,335,4,28,,,,DISCHARGED -7824,2020-04-14,24101.762141812545,449,Urgent,2020-04-26,Normal,7824,444,2,13,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7825,2020-02-02,24493.36628645637,260,Emergency,2020-03-03,Abnormal,7825,355,3,27,,,,DISCHARGED -7826,2022-10-20,12867.171447839715,213,Emergency,2022-10-29,Abnormal,7826,439,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -7828,2021-12-26,25193.63857168861,312,Urgent,2022-01-06,Normal,7828,216,0,17,,,,DISCHARGED -7829,2022-12-26,13210.92704386586,276,Urgent,2023-01-11,Abnormal,7829,95,0,9,,,,DISCHARGED -7830,2021-12-28,14146.195209196232,174,Emergency,2022-01-17,Inconclusive,7830,416,4,17,,,,DISCHARGED -7831,2021-08-10,40044.59129563626,140,Emergency,2021-08-21,Normal,7831,428,3,11,,,,DISCHARGED -7832,2019-01-16,31476.721721113565,107,Urgent,2019-02-11,Inconclusive,7832,163,0,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7833,2021-06-30,49885.4061939152,267,Urgent,2021-07-07,Normal,7833,147,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7834,2020-03-30,29785.708241143693,408,Urgent,2020-04-11,Abnormal,7834,17,1,0,,,,DISCHARGED -7835,2019-06-20,24424.9908269495,468,Urgent,2019-07-01,Normal,7835,293,4,13,,,,DISCHARGED -7837,2021-03-03,21010.455467362124,457,Elective,2021-03-14,Inconclusive,7837,194,3,22,,,,DISCHARGED -7838,2020-05-13,5541.565143164122,439,Elective,2020-05-16,Inconclusive,7838,150,4,5,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7839,2019-09-17,4400.285337338293,360,Emergency,2019-09-24,Abnormal,7839,479,0,13,,,,DISCHARGED -7840,2021-10-09,8261.04108859116,221,Elective,2021-10-21,Inconclusive,7840,364,0,1,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7841,2022-09-24,20226.430212594725,191,Urgent,2022-10-15,Normal,7841,122,2,8,,,,DISCHARGED -7843,2019-03-15,18427.96489198603,203,Elective,2019-04-09,Abnormal,7843,399,4,28,,,,DISCHARGED -7844,2023-09-07,42273.50095150334,404,Urgent,,Normal,7844,186,1,11,,,,OPEN -7845,2019-01-05,7553.50788964731,293,Emergency,2019-01-07,Normal,7845,452,3,4,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -7846,2022-04-09,30468.48710831845,243,Elective,2022-05-08,Inconclusive,7846,451,2,1,,,,DISCHARGED -7847,2022-12-08,5271.526491397599,479,Elective,2022-12-20,Inconclusive,7847,148,4,18,,,,DISCHARGED -7848,2022-11-18,2368.700722196308,395,Urgent,2022-12-07,Inconclusive,7848,103,1,6,,,,DISCHARGED -7849,2021-04-25,35842.414845888976,257,Emergency,2021-05-12,Inconclusive,7849,242,2,6,,,,DISCHARGED -7850,2020-05-23,2133.698601160449,484,Elective,2020-06-15,Abnormal,7850,461,0,9,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -7851,2023-03-24,25801.98340341388,244,Urgent,,Abnormal,7851,230,3,16,,,,OPEN -7852,2019-11-17,20773.26561932548,315,Urgent,2019-12-09,Abnormal,7852,478,4,25,,,,DISCHARGED -7853,2021-07-07,46520.26173993712,230,Elective,2021-08-02,Abnormal,7853,205,1,13,,,,DISCHARGED -7854,2022-03-15,6236.53487186241,429,Urgent,2022-04-14,Normal,7854,197,0,26,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7855,2021-10-02,6483.941456539704,257,Elective,2021-10-17,Abnormal,7855,395,2,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -7856,2023-02-10,34309.73457970126,273,Elective,2023-02-14,Abnormal,7856,399,3,27,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7857,2021-11-24,38692.579492860685,499,Emergency,2021-12-11,Inconclusive,7857,336,2,19,,,,DISCHARGED -7858,2022-09-10,49715.26453946666,423,Elective,2022-10-06,Normal,7858,492,2,5,,,,DISCHARGED -7859,2018-11-24,15407.96433079085,122,Urgent,2018-12-16,Inconclusive,7859,86,1,7,,,,DISCHARGED -7861,2019-05-04,33534.25583530908,262,Emergency,2019-05-21,Inconclusive,7861,141,0,18,,,,DISCHARGED -7862,2023-06-20,8079.253951961806,179,Elective,,Inconclusive,7862,316,4,29,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7863,2022-07-06,20179.55494060116,441,Elective,2022-07-16,Normal,7863,198,1,18,,,,DISCHARGED -7865,2021-07-25,45721.04351555346,339,Elective,2021-08-16,Normal,7865,45,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7866,2023-10-01,34844.047491746926,234,Emergency,2023-10-02,Normal,7866,287,2,23,,,,DISCHARGED -7867,2019-02-25,33842.457246643164,113,Urgent,2019-03-04,Inconclusive,7867,14,3,23,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7868,2019-09-27,32362.406429892988,286,Emergency,2019-10-03,Normal,7868,43,1,16,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7869,2022-02-18,17609.2901067118,164,Emergency,2022-02-26,Inconclusive,7869,400,1,23,,,,DISCHARGED -7870,2021-09-29,37929.15799729977,222,Urgent,2021-10-20,Normal,7870,168,4,23,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7871,2022-10-14,16102.415539445275,500,Elective,2022-10-15,Abnormal,7871,309,2,17,,,,DISCHARGED -7872,2022-10-01,10726.744848153305,118,Elective,2022-10-08,Abnormal,7872,494,1,11,,,,DISCHARGED -7873,2022-07-12,1704.480241031892,192,Elective,2022-08-06,Normal,7873,43,3,8,,,,DISCHARGED -7874,2020-09-17,36273.54520730225,208,Elective,2020-10-13,Normal,7874,97,4,22,,,,DISCHARGED -7875,2021-03-13,2042.608388212213,214,Elective,2021-04-12,Inconclusive,7875,260,3,23,,,,DISCHARGED -7876,2021-01-15,4505.2774209551935,410,Urgent,2021-01-21,Inconclusive,7876,108,2,15,,,,DISCHARGED -7877,2021-01-16,16536.666679728813,101,Emergency,2021-02-09,Inconclusive,7877,282,4,17,,,,DISCHARGED -7878,2023-02-08,1954.7285284503505,417,Emergency,2023-03-06,Normal,7878,371,4,15,,,,DISCHARGED -7879,2021-03-09,10716.56503761419,394,Emergency,2021-03-18,Normal,7879,342,4,15,,,,DISCHARGED -7880,2022-12-25,46483.87360757595,322,Emergency,2022-12-27,Abnormal,7880,103,0,3,,,,DISCHARGED -7881,2020-04-27,17572.34257507783,179,Elective,2020-05-03,Normal,7881,255,4,22,,,,DISCHARGED -7882,2020-11-12,40976.08942886659,265,Elective,2020-11-19,Abnormal,7882,378,3,21,,,,DISCHARGED -7883,2023-08-24,30800.86619773728,424,Urgent,2023-09-21,Inconclusive,7883,205,3,6,,,,DISCHARGED -7884,2020-11-30,23959.36171982866,414,Elective,2020-12-06,Abnormal,7884,334,2,0,,,,DISCHARGED -7885,2021-11-19,13511.72328178813,183,Emergency,2021-11-30,Normal,7885,42,1,23,,,,DISCHARGED -7886,2023-04-11,31141.452383221167,357,Emergency,2023-05-06,Abnormal,7886,352,1,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7887,2023-08-17,3455.5464277487595,329,Urgent,2023-08-26,Normal,7887,244,0,22,,,,DISCHARGED -7888,2020-06-15,33770.298323908464,227,Urgent,2020-07-09,Abnormal,7888,286,4,28,,,,DISCHARGED -7889,2023-01-17,14419.957166055648,387,Emergency,2023-01-18,Inconclusive,7889,354,0,19,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7890,2023-01-06,39743.38481979622,405,Elective,2023-01-07,Normal,7890,272,2,0,,,,DISCHARGED -7891,2019-04-24,9056.11036796189,277,Urgent,2019-05-02,Abnormal,7891,475,2,7,,,,DISCHARGED -7892,2021-03-30,16645.254196291266,247,Elective,2021-04-27,Abnormal,7892,82,1,25,,,,DISCHARGED -7893,2019-01-05,32763.32794025565,196,Urgent,2019-01-08,Inconclusive,7893,109,2,22,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7894,2019-09-27,37532.9870148227,251,Urgent,2019-10-21,Normal,7894,437,4,7,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -7895,2019-09-21,31147.01871956208,124,Elective,2019-09-26,Inconclusive,7895,189,3,9,,,,DISCHARGED -7896,2021-01-09,38828.5649058704,346,Urgent,2021-01-13,Inconclusive,7896,470,2,0,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7897,2021-08-19,7136.77653246491,478,Elective,2021-08-20,Abnormal,7897,287,0,20,,,,DISCHARGED -7898,2018-12-31,25049.791327162555,358,Urgent,2019-01-04,Inconclusive,7898,423,4,24,,,,DISCHARGED -7899,2021-12-12,8612.9581220524,323,Elective,2021-12-30,Inconclusive,7899,396,2,20,,,,DISCHARGED -7900,2021-06-24,43370.39587486161,197,Urgent,2021-06-25,Inconclusive,7900,250,2,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7901,2021-08-10,13133.514334257978,127,Urgent,2021-08-29,Normal,7901,211,4,13,,,,DISCHARGED -7902,2022-11-30,28890.320561252756,467,Emergency,2022-12-11,Inconclusive,7902,290,2,13,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7903,2021-10-17,13872.230802670872,420,Emergency,2021-10-22,Abnormal,7903,132,3,9,,,,DISCHARGED -7904,2019-11-20,9771.778448210434,356,Emergency,2019-12-05,Abnormal,7904,200,1,27,,,,DISCHARGED -7905,2023-07-26,23655.90092030198,394,Emergency,2023-08-07,Inconclusive,7905,284,4,18,,,,DISCHARGED -7906,2020-03-15,16735.599193249585,295,Elective,2020-04-04,Inconclusive,7906,325,0,24,,,,DISCHARGED -7907,2020-02-13,28163.491270007355,299,Urgent,2020-02-19,Inconclusive,7907,408,2,28,,,,DISCHARGED -7908,2019-01-02,26446.13896969572,317,Emergency,2019-01-26,Abnormal,7908,94,1,15,,,,DISCHARGED -7909,2020-05-06,29523.8450385338,468,Emergency,2020-05-08,Normal,7909,277,0,8,,,,DISCHARGED -7910,2022-03-26,28551.288189323288,205,Elective,2022-04-12,Normal,7910,449,0,19,,,,DISCHARGED -7911,2021-02-06,35122.48348027565,173,Urgent,2021-03-06,Normal,7911,428,3,15,,,,DISCHARGED -7912,2021-04-15,27526.40595488985,413,Urgent,2021-05-08,Inconclusive,7912,324,1,19,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7914,2019-09-08,2136.711562218529,305,Urgent,2019-10-01,Inconclusive,7914,218,4,26,,,,DISCHARGED -7915,2021-12-17,24016.3313538022,327,Urgent,2021-12-22,Inconclusive,7915,88,1,7,,,,DISCHARGED -7916,2021-01-22,1902.1131216083488,136,Elective,2021-01-27,Abnormal,7916,71,1,6,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -7917,2021-11-28,14762.063716513072,186,Emergency,2021-12-11,Abnormal,7917,246,0,10,,,,DISCHARGED -7918,2020-03-11,11821.174189375522,237,Emergency,2020-03-29,Normal,7918,128,3,20,,,,DISCHARGED -7919,2018-12-12,28389.13161584998,440,Emergency,2019-01-08,Inconclusive,7919,211,3,5,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -7920,2023-03-27,15830.618866459588,117,Elective,2023-04-02,Normal,7920,427,1,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7921,2019-02-24,13296.347302606027,335,Urgent,2019-03-02,Abnormal,7921,342,1,18,,,,DISCHARGED -7921,2019-07-02,31866.124175432706,322,Elective,2019-07-16,Normal,8964,95,2,13,,,,DISCHARGED -7922,2022-06-14,8315.877633169357,157,Urgent,2022-07-10,Abnormal,7922,74,0,14,,,,DISCHARGED -7924,2021-07-06,46363.79689305256,460,Emergency,2021-07-27,Inconclusive,7924,422,4,5,,,,DISCHARGED -7925,2020-07-19,41955.41001462372,462,Urgent,2020-07-30,Abnormal,7925,494,4,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7926,2019-05-08,42565.01532080216,480,Urgent,2019-06-06,Abnormal,7926,53,3,23,,,,DISCHARGED -7926,2023-01-26,3708.014755954044,189,Elective,2023-02-23,Inconclusive,8315,343,0,9,,,,DISCHARGED -7927,2020-05-14,39685.56807450206,450,Urgent,2020-05-27,Normal,7927,458,3,13,,,,DISCHARGED -7928,2022-03-27,16878.05992028713,257,Emergency,2022-03-29,Normal,7928,412,4,15,,,,DISCHARGED -7929,2023-09-11,12826.466559755483,206,Elective,2023-10-05,Normal,7929,53,1,12,,,,DISCHARGED -7930,2022-06-30,47634.95678681968,468,Elective,2022-07-24,Inconclusive,7930,217,0,10,,,,DISCHARGED -7931,2018-12-15,49346.30429552528,223,Emergency,2019-01-07,Normal,7931,15,0,24,,,,DISCHARGED -7932,2020-05-27,3180.575344076771,330,Emergency,2020-06-14,Abnormal,7932,98,2,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -7933,2022-07-27,37881.29220145484,132,Urgent,2022-08-10,Inconclusive,7933,19,1,7,,,,DISCHARGED -7934,2022-12-26,27521.06037262449,195,Elective,2022-12-27,Abnormal,7934,45,1,27,,,,DISCHARGED -7936,2022-01-20,35304.09548678137,120,Emergency,2022-02-11,Normal,7936,450,3,2,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7937,2021-09-08,35247.61623416267,150,Emergency,2021-09-12,Abnormal,7937,192,0,1,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -7938,2018-12-15,17647.824014810394,465,Emergency,2019-01-07,Normal,7938,382,3,20,,,,DISCHARGED -7939,2023-02-06,33409.58085113268,483,Emergency,2023-02-09,Abnormal,7939,57,1,13,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7939,2022-09-24,21760.266228445307,260,Elective,2022-10-06,Normal,9265,436,2,19,,,,DISCHARGED -7940,2019-04-13,44605.10704855014,195,Urgent,2019-05-05,Inconclusive,7940,110,0,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7941,2019-11-30,9146.001745938682,448,Emergency,2019-12-10,Inconclusive,7941,128,1,20,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -7942,2019-08-23,35759.59793004762,430,Urgent,2019-09-13,Inconclusive,7942,336,2,21,,,,DISCHARGED -7943,2019-05-26,33019.01576878836,226,Emergency,2019-06-18,Abnormal,7943,193,4,14,,,,DISCHARGED -7944,2023-06-27,42133.651975696426,197,Urgent,2023-07-14,Inconclusive,7944,412,1,2,,,,DISCHARGED -7945,2019-10-25,20942.10431975059,433,Emergency,2019-11-19,Normal,7945,339,4,0,,,,DISCHARGED -7946,2022-09-02,6787.122071407948,333,Elective,2022-09-18,Normal,7946,325,3,14,,,,DISCHARGED -7947,2021-03-26,39731.90218474498,378,Emergency,2021-04-20,Inconclusive,7947,7,4,19,,,,DISCHARGED -7948,2019-01-10,49675.48297875196,475,Urgent,2019-01-28,Abnormal,7948,28,1,21,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -7952,2022-06-04,32894.35765823763,115,Elective,2022-06-22,Normal,7952,111,4,1,,,,DISCHARGED -7953,2023-07-28,18033.72680262501,295,Urgent,,Normal,7953,434,0,17,,,,OPEN -7954,2019-07-25,8408.620870595569,445,Emergency,2019-08-21,Normal,7954,160,1,0,,,,DISCHARGED -7955,2023-01-02,44487.59572380077,266,Emergency,,Abnormal,7955,130,2,8,,,,OPEN -7957,2020-04-27,4214.611851238462,473,Elective,2020-05-17,Inconclusive,7957,187,4,2,,,,DISCHARGED -7958,2019-01-05,2620.7427686378837,353,Urgent,2019-01-09,Normal,7958,162,0,1,,,,DISCHARGED -7959,2020-06-28,12385.737665048577,151,Urgent,2020-07-14,Abnormal,7959,196,3,3,,,,DISCHARGED -7960,2023-03-16,32917.84530749517,295,Emergency,2023-04-04,Normal,7960,474,3,15,,,,DISCHARGED -7961,2021-11-18,39381.61261074992,186,Elective,2021-11-21,Normal,7961,363,4,21,,,,DISCHARGED -7962,2021-06-23,32466.875185721023,400,Urgent,2021-07-05,Abnormal,7962,203,3,0,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -7963,2021-09-29,34824.572632110576,117,Emergency,2021-10-12,Abnormal,7963,211,2,8,,,,DISCHARGED -7964,2021-01-26,14791.407815936833,432,Elective,2021-02-07,Inconclusive,7964,108,1,24,,,,DISCHARGED -7966,2020-11-17,3390.355788072462,371,Emergency,2020-12-14,Abnormal,7966,275,0,7,,,,DISCHARGED -7967,2019-05-02,26932.975881030183,167,Emergency,2019-05-28,Abnormal,7967,72,4,5,,,,DISCHARGED -7968,2023-01-14,22977.04755013185,187,Emergency,,Inconclusive,7968,166,3,19,,,,OPEN -7969,2023-09-03,47034.5007084385,262,Elective,2023-09-23,Inconclusive,7969,259,1,17,,,,DISCHARGED -7970,2023-06-01,41943.39930023557,224,Emergency,2023-06-02,Abnormal,7970,242,2,15,,,,DISCHARGED -7971,2020-06-18,25717.903364204863,353,Urgent,2020-07-11,Inconclusive,7971,274,3,7,,,,DISCHARGED -7972,2019-04-14,29635.76863758357,209,Emergency,2019-04-18,Inconclusive,7972,101,3,22,,,,DISCHARGED -7973,2021-04-21,18011.6687619248,153,Emergency,2021-05-08,Abnormal,7973,474,0,27,,,,DISCHARGED -7974,2020-07-31,15380.864467483172,432,Urgent,2020-08-04,Inconclusive,7974,172,2,29,,,,DISCHARGED -7975,2023-01-20,24797.4275291282,404,Elective,2023-02-07,Normal,7975,170,2,3,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -7976,2022-02-04,26977.850157884208,203,Elective,2022-03-03,Inconclusive,7976,140,4,2,,,,DISCHARGED -7977,2020-07-16,14883.719365732752,180,Urgent,2020-08-08,Normal,7977,396,0,14,,,,DISCHARGED -7978,2021-07-20,17098.469362828666,446,Emergency,2021-07-24,Inconclusive,7978,187,4,5,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7979,2023-08-05,26584.38046797354,280,Emergency,,Normal,7979,440,0,0,,,,OPEN -7981,2023-09-01,48670.6485746654,414,Urgent,2023-09-09,Normal,7981,85,2,17,,,,DISCHARGED -7982,2020-03-17,11869.28365115142,203,Elective,2020-03-31,Inconclusive,7982,475,0,22,,,,DISCHARGED -7983,2021-02-07,4466.509870388432,314,Emergency,2021-02-12,Abnormal,7983,51,0,10,,,,DISCHARGED -7984,2020-12-19,13689.239045463744,440,Emergency,2021-01-09,Abnormal,7984,110,0,2,,,,DISCHARGED -7985,2021-12-23,36066.43015392841,250,Urgent,2022-01-09,Inconclusive,7985,436,1,29,,,,DISCHARGED -7986,2019-11-27,29769.69862572903,234,Emergency,2019-12-12,Inconclusive,7986,364,1,12,,,,DISCHARGED -7989,2021-07-25,35770.321186130815,320,Elective,2021-07-29,Normal,7989,341,2,16,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7990,2021-08-17,9299.230454822056,253,Urgent,2021-09-06,Inconclusive,7990,42,0,17,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -7991,2021-02-07,23677.85046968515,357,Urgent,2021-02-14,Abnormal,7991,210,2,25,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7991,2020-11-28,36026.93518906284,440,Urgent,2020-12-26,Normal,8163,455,1,25,,,,DISCHARGED -7993,2020-09-18,9366.04465678097,459,Urgent,2020-10-07,Inconclusive,7993,499,0,13,,,,DISCHARGED -7994,2019-12-14,19941.988504235927,259,Urgent,2020-01-01,Abnormal,7994,199,4,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -7995,2022-08-08,1777.330521600477,124,Urgent,2022-08-20,Inconclusive,7995,297,1,6,,,,DISCHARGED -7996,2019-05-30,14038.735754443547,167,Elective,2019-06-04,Inconclusive,7996,345,1,6,,,,DISCHARGED -7997,2021-10-08,7482.822583433615,382,Urgent,2021-10-12,Inconclusive,7997,239,1,13,,,,DISCHARGED -7998,2020-04-13,24429.46037518099,334,Emergency,2020-04-29,Abnormal,7998,114,0,25,,,,DISCHARGED -7999,2019-06-26,28522.68683883542,448,Urgent,2019-07-02,Abnormal,7999,25,3,23,,,,DISCHARGED -8000,2022-09-28,44157.88796829378,391,Urgent,2022-10-25,Abnormal,8000,406,4,14,,,,DISCHARGED -8001,2022-10-29,48795.34957616802,147,Emergency,2022-11-28,Normal,8001,298,4,11,,,,DISCHARGED -8002,2020-01-28,44610.623561795175,112,Urgent,2020-02-07,Inconclusive,8002,76,2,11,,,,DISCHARGED -8003,2021-02-25,2288.6750533199747,404,Urgent,2021-02-28,Inconclusive,8003,411,0,7,,,,DISCHARGED -8004,2023-06-23,18877.345951072017,143,Emergency,2023-07-12,Abnormal,8004,136,1,15,,,,DISCHARGED -8005,2023-07-31,36638.91942957427,138,Urgent,2023-08-22,Normal,8005,19,3,8,,,,DISCHARGED -8006,2023-04-14,30619.874984804617,131,Urgent,,Inconclusive,8006,439,0,1,,,,OPEN -8007,2019-12-17,41649.70399638107,162,Emergency,2019-12-29,Inconclusive,8007,210,0,13,,,,DISCHARGED -8008,2021-11-15,34802.67778278916,309,Elective,2021-11-24,Inconclusive,8008,239,3,23,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -8009,2019-11-12,19162.83510227641,492,Urgent,2019-12-10,Abnormal,8009,38,1,23,,,,DISCHARGED -8010,2022-07-23,17189.857186421206,369,Urgent,2022-08-17,Abnormal,8010,434,0,28,,,,DISCHARGED -8011,2018-11-30,7497.967096445521,469,Elective,2018-12-02,Inconclusive,8011,267,4,15,,,,DISCHARGED -8013,2020-07-14,40039.25622407387,333,Elective,2020-08-07,Abnormal,8013,206,4,4,,,,DISCHARGED -8014,2023-01-04,20091.838921682003,391,Emergency,2023-01-05,Inconclusive,8014,478,3,4,,,,DISCHARGED -8016,2023-03-12,40384.2501216712,242,Elective,2023-03-23,Inconclusive,8016,438,1,19,,,,DISCHARGED -8016,2022-12-27,26980.772259471087,129,Emergency,2023-01-22,Inconclusive,9702,461,3,29,,,,DISCHARGED -8017,2019-08-04,4267.079919594942,491,Emergency,2019-08-07,Inconclusive,8017,266,0,20,,,,DISCHARGED -8018,2021-02-18,15137.31621014056,465,Urgent,2021-02-24,Normal,8018,153,4,17,,,,DISCHARGED -8019,2023-05-26,47346.49011336828,490,Elective,,Abnormal,8019,41,2,17,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -8020,2021-09-06,21008.125728737767,110,Emergency,2021-10-05,Inconclusive,8020,410,3,4,,,,DISCHARGED -8022,2020-09-25,49591.48878231641,231,Urgent,2020-10-11,Normal,8022,10,2,10,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -8023,2022-12-05,30813.72310001923,393,Elective,2022-12-11,Abnormal,8023,293,2,12,,,,DISCHARGED -8024,2023-05-23,37857.19461111237,410,Elective,2023-05-24,Inconclusive,8024,97,4,2,,,,DISCHARGED -8024,2021-01-26,12573.135605697154,205,Elective,2021-02-20,Inconclusive,8555,426,3,16,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -8025,2022-04-27,3046.992905391492,421,Elective,2022-04-30,Inconclusive,8025,274,2,24,,,,DISCHARGED -8026,2021-02-11,22619.828323771188,246,Emergency,2021-02-12,Normal,8026,447,0,17,,,,DISCHARGED -8027,2019-10-30,1532.6661191521391,120,Urgent,2019-11-09,Normal,8027,389,1,13,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8028,2022-05-23,5944.992954293303,314,Urgent,2022-06-04,Abnormal,8028,429,1,11,,,,DISCHARGED -8029,2021-07-08,17587.51498684621,118,Elective,2021-07-10,Abnormal,8029,371,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8030,2020-05-30,9708.574296331106,172,Urgent,2020-05-31,Abnormal,8030,229,3,25,,,,DISCHARGED -8031,2020-12-07,16142.049025876117,480,Elective,2020-12-31,Normal,8031,368,3,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -8032,2023-05-25,39736.58023804133,227,Urgent,2023-06-12,Inconclusive,8032,425,1,29,,,,DISCHARGED -8033,2019-08-31,29386.26818230457,404,Elective,2019-09-14,Abnormal,8033,219,0,19,,,,DISCHARGED -8034,2019-07-27,21548.447469971776,246,Emergency,2019-08-14,Abnormal,8034,64,1,1,,,,DISCHARGED -8035,2020-06-03,17909.13878021324,128,Urgent,2020-06-27,Inconclusive,8035,354,1,6,,,,DISCHARGED -8036,2022-11-19,33473.32332722099,237,Emergency,2022-12-13,Inconclusive,8036,231,3,14,,,,DISCHARGED -8037,2022-10-07,15649.485023824673,488,Elective,2022-10-12,Inconclusive,8037,327,2,27,,,,DISCHARGED -8038,2022-10-29,46387.14647433006,365,Elective,2022-11-26,Inconclusive,8038,442,0,9,,,,DISCHARGED -8039,2021-03-29,49114.82027460238,404,Elective,2021-04-03,Inconclusive,8039,51,3,14,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -8040,2018-12-09,43337.404539403935,247,Elective,2019-01-05,Normal,8040,373,1,16,,,,DISCHARGED -8041,2020-01-27,12067.591897507951,334,Urgent,2020-02-16,Normal,8041,430,2,10,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8042,2019-12-01,22361.69522542653,233,Emergency,2019-12-03,Normal,8042,375,0,1,,,,DISCHARGED -8043,2022-11-23,33863.638143614495,469,Elective,2022-12-17,Abnormal,8043,262,4,26,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -8044,2023-06-01,28633.65151052959,398,Emergency,2023-06-11,Abnormal,8044,266,0,20,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8045,2019-10-04,19116.828971499068,314,Elective,2019-10-08,Inconclusive,8045,358,0,17,,,,DISCHARGED -8046,2020-03-30,14589.914858118653,138,Elective,2020-04-09,Inconclusive,8046,316,1,24,,,,DISCHARGED -8047,2021-04-22,42683.87948917641,202,Urgent,2021-05-22,Abnormal,8047,323,1,3,,,,DISCHARGED -8048,2019-01-24,10591.009673587014,139,Elective,2019-01-29,Normal,8048,408,4,8,,,,DISCHARGED -8049,2020-07-07,24963.74716875285,265,Emergency,2020-07-26,Inconclusive,8049,395,4,26,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8050,2019-01-29,29554.88672560693,461,Emergency,2019-02-26,Inconclusive,8050,153,4,27,,,,DISCHARGED -8051,2019-04-22,8562.407906626475,222,Emergency,2019-05-18,Normal,8051,357,3,16,,,,DISCHARGED -8052,2023-09-16,6684.271348449877,118,Urgent,2023-09-28,Normal,8052,365,3,16,,,,DISCHARGED -8053,2019-02-13,18760.81392229971,249,Emergency,2019-03-04,Inconclusive,8053,139,1,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8054,2019-05-08,15854.758749961986,217,Urgent,2019-06-04,Inconclusive,8054,426,1,29,,,,DISCHARGED -8055,2019-07-25,28949.005309941866,472,Emergency,2019-08-24,Abnormal,8055,50,4,15,,,,DISCHARGED -8056,2019-10-01,38485.656349510034,412,Elective,2019-10-31,Abnormal,8056,116,3,19,,,,DISCHARGED -8057,2023-03-07,24397.07139592009,213,Emergency,2023-03-13,Inconclusive,8057,420,2,24,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8059,2021-03-10,1865.7538063463944,190,Urgent,2021-03-28,Abnormal,8059,45,3,7,,,,DISCHARGED -8060,2019-09-25,29102.039615518763,292,Urgent,2019-10-04,Inconclusive,8060,308,1,22,,,,DISCHARGED -8061,2022-08-16,3937.714377524664,454,Elective,2022-09-14,Inconclusive,8061,87,3,14,,,,DISCHARGED -8062,2019-07-02,22741.25592031215,195,Elective,2019-07-16,Inconclusive,8062,207,1,0,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8065,2022-02-24,17745.148897040537,338,Elective,2022-03-12,Inconclusive,8065,376,4,18,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8066,2022-03-24,31074.71075388216,412,Elective,2022-04-20,Normal,8066,268,4,24,,,,DISCHARGED -8067,2021-02-14,15085.36450794674,238,Urgent,2021-02-27,Inconclusive,8067,88,4,14,,,,DISCHARGED -8068,2019-09-10,14244.655626313588,450,Urgent,2019-10-07,Inconclusive,8068,380,2,8,,,,DISCHARGED -8070,2020-11-21,31429.059757826144,158,Urgent,2020-11-22,Normal,8070,117,2,4,,,,DISCHARGED -8071,2021-02-01,29351.18509657692,405,Urgent,2021-03-03,Normal,8071,53,1,15,,,,DISCHARGED -8072,2020-12-21,24977.800089659773,333,Urgent,2021-01-05,Normal,8072,440,0,27,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8073,2021-07-25,24410.4160731522,497,Elective,2021-08-10,Normal,8073,115,2,12,,,,DISCHARGED -8075,2023-08-18,16178.730138081652,339,Elective,,Normal,8075,117,1,15,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -8076,2021-11-18,39922.07039964093,417,Emergency,2021-12-05,Inconclusive,8076,259,3,21,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -8077,2021-12-08,31288.036175160087,428,Emergency,2021-12-17,Inconclusive,8077,74,4,10,,,,DISCHARGED -8078,2023-07-31,37995.5917246705,263,Elective,2023-08-04,Inconclusive,8078,479,4,12,,,,DISCHARGED -8079,2020-03-04,44783.95533354963,391,Emergency,2020-03-07,Normal,8079,304,4,5,,,,DISCHARGED -8080,2022-04-14,43277.13904435948,227,Elective,2022-04-27,Normal,8080,6,1,25,,,,DISCHARGED -8081,2019-07-07,49777.67115002487,301,Urgent,2019-08-01,Normal,8081,365,4,19,,,,DISCHARGED -8082,2023-07-02,41495.55968603143,228,Emergency,,Abnormal,8082,121,2,16,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",OPEN -8083,2022-01-02,12861.65498960089,227,Elective,2022-01-18,Inconclusive,8083,10,3,4,,,,DISCHARGED -8084,2023-09-12,35773.670655190006,250,Elective,,Normal,8084,347,4,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",OPEN -8085,2023-04-06,20939.862312985933,222,Emergency,2023-04-27,Abnormal,8085,437,1,16,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8087,2019-10-07,34575.10208382801,296,Elective,2019-10-21,Abnormal,8087,488,3,0,,,,DISCHARGED -8088,2020-12-03,20528.587507838394,270,Urgent,2020-12-24,Inconclusive,8088,214,4,26,,,,DISCHARGED -8089,2020-06-02,12944.13835129208,424,Elective,2020-06-19,Normal,8089,428,0,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8090,2023-09-03,11848.781462569274,123,Emergency,2023-09-14,Normal,8090,278,4,4,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8091,2019-09-13,21793.986508167032,198,Urgent,2019-10-12,Normal,8091,497,2,6,,,,DISCHARGED -8092,2019-03-20,23389.21909820357,147,Elective,2019-03-30,Inconclusive,8092,27,3,15,,,,DISCHARGED -8093,2023-01-25,20685.706228150317,274,Emergency,2023-02-07,Inconclusive,8093,234,2,17,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8094,2019-03-12,11734.302836704854,125,Urgent,2019-04-10,Inconclusive,8094,366,0,5,,,,DISCHARGED -8095,2020-07-09,27684.43237575122,402,Elective,2020-07-11,Abnormal,8095,312,0,1,,,,DISCHARGED -8096,2021-03-25,34062.387353531754,446,Urgent,2021-03-30,Inconclusive,8096,25,2,12,,,,DISCHARGED -8097,2022-03-31,22117.67472674186,357,Elective,2022-04-12,Normal,8097,408,3,9,,,,DISCHARGED -8098,2021-08-03,43098.71002996974,258,Elective,2021-08-15,Abnormal,8098,53,0,20,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8099,2021-04-08,26605.08394638205,202,Emergency,2021-05-04,Abnormal,8099,28,0,19,,,,DISCHARGED -8100,2020-12-27,32693.3475802384,176,Elective,2021-01-19,Abnormal,8100,466,4,10,,,,DISCHARGED -8101,2023-03-16,11055.808953041364,313,Urgent,2023-03-30,Normal,8101,352,1,25,,,,DISCHARGED -8102,2021-10-10,4668.285337054693,439,Emergency,2021-11-06,Abnormal,8102,163,0,20,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -8103,2021-07-11,12858.59156706464,276,Elective,2021-07-18,Abnormal,8103,269,3,1,,,,DISCHARGED -8104,2020-05-26,28929.953261186696,124,Urgent,2020-06-19,Inconclusive,8104,333,3,7,,,,DISCHARGED -8105,2020-11-12,30162.582575883735,285,Elective,2020-12-12,Inconclusive,8105,34,4,23,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8106,2022-06-27,17072.454149204434,256,Elective,2022-07-27,Normal,8106,285,3,21,,,,DISCHARGED -8108,2022-12-22,15909.992366885155,249,Elective,2023-01-08,Normal,8108,347,4,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8109,2021-05-19,17358.003543321513,122,Emergency,2021-06-16,Inconclusive,8109,272,0,19,,,,DISCHARGED -8110,2023-05-11,17364.806535577223,242,Elective,2023-05-17,Normal,8110,450,0,16,,,,DISCHARGED -8112,2022-04-17,44128.50464867092,262,Emergency,2022-04-21,Inconclusive,8112,207,0,15,,,,DISCHARGED -8113,2022-10-17,3012.391100738386,402,Elective,2022-11-10,Abnormal,8113,237,0,24,,,,DISCHARGED -8114,2023-09-27,10233.646538853262,115,Elective,2023-10-04,Abnormal,8114,413,1,9,,,,DISCHARGED -8115,2019-01-31,20441.07817968359,268,Emergency,2019-03-01,Inconclusive,8115,499,1,4,,,,DISCHARGED -8117,2021-09-17,32730.72946207612,115,Urgent,2021-10-03,Normal,8117,92,0,13,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -8118,2021-09-02,18872.496276636622,247,Elective,2021-09-27,Normal,8118,172,3,23,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8119,2022-08-20,17194.422885715467,401,Emergency,2022-09-07,Abnormal,8119,78,4,18,,,,DISCHARGED -8120,2020-03-05,18863.735622974946,490,Elective,2020-04-03,Inconclusive,8120,109,2,3,,,,DISCHARGED -8121,2020-04-30,20628.00818333727,180,Elective,2020-05-01,Inconclusive,8121,216,4,19,,,,DISCHARGED -8122,2020-01-14,14037.703378817114,467,Elective,2020-02-05,Normal,8122,434,2,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8123,2019-01-06,49367.10326129973,243,Emergency,2019-01-21,Abnormal,8123,357,2,23,,,,DISCHARGED -8124,2021-06-25,21581.423337379685,322,Elective,2021-07-25,Abnormal,8124,105,0,14,,,,DISCHARGED -8125,2018-11-28,49701.36599806445,228,Elective,2018-12-26,Abnormal,8125,46,2,27,,,,DISCHARGED -8126,2023-02-22,1700.053606371073,380,Emergency,,Abnormal,8126,180,0,8,,,,OPEN -8127,2021-12-15,38646.81128708596,251,Emergency,2021-12-28,Normal,8127,63,1,2,,,,DISCHARGED -8128,2022-01-03,22352.881112797684,343,Urgent,2022-01-05,Normal,8128,245,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8129,2022-09-11,10175.554780789307,284,Emergency,2022-09-28,Inconclusive,8129,243,2,8,,,,DISCHARGED -8130,2019-12-03,45467.23942769469,277,Emergency,2019-12-24,Abnormal,8130,421,3,17,,,,DISCHARGED -8131,2020-09-07,26241.95612971654,453,Urgent,2020-09-30,Inconclusive,8131,319,0,3,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8132,2022-08-20,26042.26742413884,271,Elective,2022-09-18,Abnormal,8132,86,2,18,,,,DISCHARGED -8133,2021-01-27,37808.50969214741,365,Urgent,2021-02-24,Normal,8133,216,4,23,,,,DISCHARGED -8135,2019-08-21,41509.42590540384,453,Elective,2019-09-20,Normal,8135,489,1,3,,,,DISCHARGED -8137,2019-10-08,29269.66182627233,367,Emergency,2019-10-25,Abnormal,8137,6,1,8,,,,DISCHARGED -8138,2023-01-19,45128.96454828569,139,Elective,,Abnormal,8138,277,2,0,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8139,2023-06-25,32684.7719649079,342,Elective,,Normal,8139,336,1,0,,,,OPEN -8140,2022-09-14,2095.687238387226,367,Elective,2022-10-10,Abnormal,8140,209,4,19,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -8142,2023-04-04,48075.27871728106,414,Urgent,2023-04-24,Normal,8142,496,3,18,,,,DISCHARGED -8143,2021-10-16,28969.43809564237,282,Urgent,2021-10-26,Normal,8143,168,4,2,,,,DISCHARGED -8144,2023-08-29,34509.27029228193,109,Elective,,Normal,8144,329,1,9,,,,OPEN -8145,2019-09-11,1084.422303472434,421,Emergency,2019-10-04,Normal,8145,137,3,11,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8146,2022-12-29,46396.11167993047,317,Urgent,2023-01-14,Inconclusive,8146,440,4,17,,,,DISCHARGED -8147,2020-09-17,12321.440452901628,172,Emergency,2020-10-08,Normal,8147,390,0,13,,,,DISCHARGED -8148,2020-04-21,27698.5271708579,361,Urgent,2020-04-27,Abnormal,8148,495,0,9,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -8149,2022-11-04,45717.8568733596,202,Urgent,2022-11-05,Normal,8149,380,3,9,,,,DISCHARGED -8150,2021-11-05,46083.13258409305,468,Urgent,2021-12-04,Normal,8150,305,3,17,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8151,2023-10-30,11449.716676880198,490,Emergency,2023-11-05,Abnormal,8151,229,3,23,,,,DISCHARGED -8152,2023-08-20,45758.100330583824,428,Emergency,,Inconclusive,8152,474,0,0,,,,OPEN -8153,2023-04-21,31043.650104158936,185,Elective,2023-05-07,Inconclusive,8153,307,4,29,,,,DISCHARGED -8154,2022-10-06,31540.30734617747,305,Urgent,2022-10-13,Inconclusive,8154,160,3,14,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -8155,2021-03-02,9324.88021823037,323,Urgent,2021-03-11,Abnormal,8155,0,0,7,,,,DISCHARGED -8156,2021-03-07,45495.08518507029,301,Elective,2021-03-22,Inconclusive,8156,235,3,25,,,,DISCHARGED -8157,2021-11-25,14665.11355699728,142,Elective,2021-12-13,Abnormal,8157,436,3,2,,,,DISCHARGED -8158,2019-03-06,12281.14362722844,230,Urgent,2019-03-25,Normal,8158,187,3,17,,,,DISCHARGED -8159,2021-10-06,18077.153268402544,199,Emergency,2021-10-14,Normal,8159,417,0,8,,,,DISCHARGED -8160,2020-12-31,49180.4800862382,209,Urgent,2021-01-05,Inconclusive,8160,3,4,15,,,,DISCHARGED -8161,2020-12-09,16158.25569514116,154,Urgent,2021-01-05,Inconclusive,8161,400,0,20,,,,DISCHARGED -8162,2021-07-28,33426.44968815497,220,Urgent,2021-08-03,Abnormal,8162,131,0,14,,,,DISCHARGED -8164,2023-01-16,38848.17033967297,257,Emergency,2023-02-07,Abnormal,8164,426,3,29,,,,DISCHARGED -8165,2021-09-03,14316.42825944667,367,Emergency,2021-09-06,Abnormal,8165,217,2,4,,,,DISCHARGED -8166,2020-12-07,32377.83582902399,413,Urgent,2020-12-11,Abnormal,8166,259,2,12,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8168,2020-01-31,39484.59465133421,395,Elective,2020-02-10,Abnormal,8168,0,2,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -8169,2022-01-09,48006.407283263165,450,Emergency,2022-01-15,Abnormal,8169,70,0,19,,,,DISCHARGED -8170,2020-06-24,12314.148393642512,424,Urgent,2020-07-21,Normal,8170,477,3,6,,,,DISCHARGED -8171,2020-08-23,17046.06634961922,106,Elective,2020-09-08,Inconclusive,8171,177,2,15,,,,DISCHARGED -8173,2020-12-23,27947.42441906278,440,Elective,2021-01-07,Normal,8173,456,1,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8174,2023-09-30,11150.064814619383,432,Elective,2023-10-03,Normal,8174,188,1,26,,,,DISCHARGED -8175,2021-04-25,16636.364895615956,176,Urgent,2021-05-20,Abnormal,8175,290,1,24,,,,DISCHARGED -8176,2021-12-27,18908.843523342905,132,Elective,2022-01-20,Normal,8176,7,4,21,,,,DISCHARGED -8177,2022-06-10,14443.695294742984,189,Elective,2022-06-11,Abnormal,8177,252,3,15,,,,DISCHARGED -8179,2020-06-30,20862.724134298933,229,Elective,2020-07-27,Abnormal,8179,407,0,12,,,,DISCHARGED -8180,2021-12-10,27602.565483626488,434,Urgent,2021-12-28,Normal,8180,466,0,16,,,,DISCHARGED -8181,2022-01-27,31753.077634604208,372,Elective,2022-02-02,Inconclusive,8181,291,3,8,,,,DISCHARGED -8182,2023-09-03,29389.31778160135,283,Elective,,Normal,8182,433,4,11,,,,OPEN -8183,2021-06-12,2347.804003261987,345,Emergency,2021-06-17,Inconclusive,8183,243,3,12,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -8184,2022-07-01,26552.30027906584,435,Emergency,2022-07-14,Normal,8184,122,4,25,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -8185,2019-07-13,28628.37240462693,303,Urgent,2019-08-12,Normal,8185,298,2,8,,,,DISCHARGED -8186,2019-09-26,28176.838868388462,246,Urgent,2019-10-21,Abnormal,8186,282,2,4,,,,DISCHARGED -8187,2019-10-25,38838.10519530371,152,Emergency,2019-11-05,Abnormal,8187,31,4,6,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8188,2021-03-29,1596.9012780504906,456,Urgent,2021-04-15,Normal,8188,333,3,0,,,,DISCHARGED -8189,2023-02-05,1036.0790678076903,135,Elective,,Normal,8189,376,2,3,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,OPEN -8190,2020-07-13,17165.75843783682,440,Urgent,2020-07-28,Inconclusive,8190,145,3,27,,,,DISCHARGED -8191,2023-05-08,37582.77715765098,135,Urgent,2023-05-13,Abnormal,8191,155,2,25,,,,DISCHARGED -8192,2022-06-02,8120.30003185976,446,Elective,2022-06-29,Abnormal,8192,412,3,3,,,,DISCHARGED -8193,2020-05-19,12393.441109697676,282,Urgent,2020-06-18,Inconclusive,8193,15,3,15,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",DISCHARGED -8193,2020-11-02,43383.040981795006,317,Urgent,2020-11-20,Normal,9590,354,1,4,,,,DISCHARGED -8194,2022-03-18,23728.64050755175,220,Urgent,2022-03-28,Abnormal,8194,46,4,21,,,,DISCHARGED -8195,2021-09-19,15178.111047743025,356,Urgent,2021-10-18,Normal,8195,250,0,3,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8197,2019-03-11,14781.337851482873,358,Elective,2019-03-30,Normal,8197,186,4,5,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8199,2023-02-21,47547.16557898432,205,Elective,2023-03-01,Abnormal,8199,30,3,25,,,,DISCHARGED -8200,2022-09-15,46311.15130096009,425,Elective,2022-09-29,Inconclusive,8200,259,3,22,,,,DISCHARGED -8201,2019-04-07,34038.91066945543,348,Emergency,2019-04-14,Inconclusive,8201,420,4,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8202,2019-09-21,30550.628272190235,410,Urgent,2019-09-26,Normal,8202,16,3,24,,,,DISCHARGED -8203,2020-09-12,32645.36846590968,258,Elective,2020-09-15,Inconclusive,8203,38,2,7,,,,DISCHARGED -8204,2018-12-15,46218.211974603226,203,Elective,2018-12-31,Normal,8204,303,3,16,,,,DISCHARGED -8205,2023-07-24,17586.129732065914,444,Elective,2023-08-10,Normal,8205,429,4,28,,,,DISCHARGED -8206,2021-04-27,41078.14985222499,413,Elective,2021-05-16,Abnormal,8206,473,4,17,,,,DISCHARGED -8207,2019-05-11,34279.98739240158,414,Urgent,2019-05-18,Normal,8207,431,4,17,,,,DISCHARGED -8209,2019-06-30,40276.97082034466,158,Emergency,2019-07-01,Normal,8209,38,1,25,,,,DISCHARGED -8210,2021-01-28,7502.061908290743,466,Emergency,2021-02-24,Inconclusive,8210,488,1,24,,,,DISCHARGED -8211,2021-02-02,33743.984111235186,119,Urgent,2021-03-04,Inconclusive,8211,131,1,11,,,,DISCHARGED -8213,2022-07-12,6987.26302786904,245,Urgent,2022-07-15,Normal,8213,29,1,24,,,,DISCHARGED -8214,2021-12-13,27535.205056834813,308,Elective,2021-12-20,Normal,8214,157,1,24,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -8215,2020-03-06,17762.446925208802,329,Urgent,2020-03-07,Abnormal,8215,277,1,0,,,,DISCHARGED -8216,2020-07-02,39061.50521683533,413,Emergency,2020-07-18,Normal,8216,202,1,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -8217,2022-09-12,11041.17914606933,225,Emergency,2022-09-18,Abnormal,8217,65,4,11,,,,DISCHARGED -8219,2023-10-06,20781.9359512618,482,Elective,2023-10-15,Normal,8219,107,0,10,,,,DISCHARGED -8219,2023-02-24,32701.924144207984,405,Urgent,2023-03-15,Normal,9646,267,1,12,,,,DISCHARGED -8220,2019-07-12,25737.38428790393,402,Emergency,2019-07-24,Abnormal,8220,221,4,2,,,,DISCHARGED -8221,2021-03-23,17301.879823357995,243,Emergency,2021-04-07,Abnormal,8221,291,0,26,,,,DISCHARGED -8221,2022-12-25,42819.60872991142,395,Urgent,2023-01-21,Abnormal,9118,17,1,24,,,,DISCHARGED -8222,2019-07-02,18887.098181081088,354,Urgent,2019-07-23,Abnormal,8222,89,0,7,,,,DISCHARGED -8223,2023-07-11,34363.185592446855,119,Elective,,Inconclusive,8223,180,0,2,,,,OPEN -8224,2023-01-04,43828.06650639463,117,Urgent,2023-01-23,Abnormal,8224,254,2,16,,,,DISCHARGED -8225,2021-04-04,46809.30431582996,104,Urgent,2021-04-10,Inconclusive,8225,454,3,24,,,,DISCHARGED -8226,2020-02-10,13912.006090260644,340,Elective,2020-03-03,Abnormal,8226,252,2,12,,,,DISCHARGED -8228,2021-10-31,18915.940457037697,469,Emergency,2021-11-28,Inconclusive,8228,256,0,9,,,,DISCHARGED -8229,2022-08-17,23334.53997035574,236,Urgent,2022-08-20,Normal,8229,382,4,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8230,2020-04-20,20654.878628662267,125,Urgent,2020-04-23,Abnormal,8230,441,1,2,,,,DISCHARGED -8231,2022-10-08,29820.19746380228,490,Emergency,2022-10-15,Normal,8231,345,3,12,,,,DISCHARGED -8234,2021-05-25,49764.53091429238,309,Emergency,2021-06-12,Inconclusive,8234,86,1,21,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8236,2021-09-04,31615.57642691528,394,Urgent,2021-09-07,Inconclusive,8236,89,4,5,,,,DISCHARGED -8238,2023-10-16,33630.60534591856,143,Urgent,2023-10-27,Normal,8238,236,3,13,,,,DISCHARGED -8239,2020-12-25,35569.58120224116,206,Elective,2021-01-10,Normal,8239,389,2,26,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -8240,2021-01-18,18993.263614677868,160,Emergency,2021-02-01,Normal,8240,69,0,9,,,,DISCHARGED -8241,2022-09-13,28377.109104338037,198,Elective,2022-10-08,Inconclusive,8241,43,4,19,,,,DISCHARGED -8242,2021-08-19,16772.071428086085,150,Emergency,2021-09-12,Inconclusive,8242,199,0,15,,,,DISCHARGED -8243,2022-10-31,34500.706211185694,119,Elective,2022-11-27,Abnormal,8243,151,0,17,,,,DISCHARGED -8244,2022-12-03,10136.537037566552,173,Emergency,2022-12-11,Inconclusive,8244,85,1,12,,,,DISCHARGED -8245,2021-04-07,31216.924469266207,335,Elective,2021-04-12,Inconclusive,8245,18,4,9,,,,DISCHARGED -8246,2021-07-29,20607.06279243067,452,Urgent,2021-08-18,Inconclusive,8246,100,0,5,,,,DISCHARGED -8246,2019-09-26,46724.30354131043,209,Emergency,2019-10-25,Abnormal,9594,401,2,9,,,,DISCHARGED -8247,2022-09-07,9969.772316244218,489,Emergency,2022-09-17,Normal,8247,94,3,4,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8248,2023-10-04,44137.53001306059,382,Urgent,2023-10-06,Abnormal,8248,253,4,28,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -8249,2020-04-26,39061.3302155582,199,Elective,2020-05-14,Inconclusive,8249,356,1,5,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8250,2018-11-29,4517.581380501233,160,Elective,2018-12-09,Abnormal,8250,29,4,6,,,,DISCHARGED -8251,2022-07-01,38426.257969882834,493,Elective,2022-07-21,Inconclusive,8251,248,1,10,,,,DISCHARGED -8252,2019-06-22,21517.865453191334,105,Elective,2019-07-15,Abnormal,8252,425,3,15,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -8253,2022-06-13,46288.587414587055,200,Urgent,2022-06-14,Normal,8253,32,2,24,,,,DISCHARGED -8255,2021-01-21,2539.900332189388,366,Emergency,2021-02-04,Inconclusive,8255,457,0,11,,,,DISCHARGED -8256,2020-09-04,28110.55377044643,170,Urgent,2020-09-28,Normal,8256,228,4,11,,,,DISCHARGED -8258,2020-04-21,3837.451205474301,475,Elective,2020-05-14,Abnormal,8258,11,1,29,,,,DISCHARGED -8260,2019-12-11,46071.51763959746,212,Emergency,2019-12-18,Abnormal,8260,117,3,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -8261,2021-11-27,38341.92896119356,200,Elective,2021-12-27,Normal,8261,349,0,19,,,,DISCHARGED -8262,2023-06-23,35508.752827718825,283,Urgent,2023-07-13,Inconclusive,8262,154,3,25,,,,DISCHARGED -8264,2022-09-29,1827.9396774334384,181,Emergency,2022-10-17,Normal,8264,422,2,4,,,,DISCHARGED -8265,2021-08-13,33259.38570442068,460,Elective,2021-09-10,Abnormal,8265,392,0,15,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8266,2021-04-05,38171.68266076186,306,Elective,2021-04-06,Abnormal,8266,245,0,28,,,,DISCHARGED -8267,2020-12-27,4513.79417586097,299,Emergency,2021-01-06,Inconclusive,8267,404,0,5,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -8268,2018-11-13,8537.58184521964,133,Emergency,2018-11-27,Abnormal,8268,331,1,28,,,,DISCHARGED -8269,2021-04-17,46965.88762564629,445,Elective,2021-04-30,Abnormal,8269,246,0,8,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -8270,2020-02-04,21342.291982984403,349,Elective,2020-02-10,Normal,8270,28,3,4,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -8271,2022-10-27,40468.538140267054,211,Elective,2022-11-12,Inconclusive,8271,160,1,20,,,,DISCHARGED -8272,2023-01-27,6964.237866340817,198,Elective,2023-02-10,Normal,8272,234,0,22,,,,DISCHARGED -8273,2018-11-10,7304.660576641682,229,Elective,2018-12-01,Normal,8273,189,3,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -8274,2021-02-02,45037.46269886021,312,Emergency,2021-02-26,Normal,8274,116,3,17,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8275,2020-10-15,15002.463921110377,326,Elective,2020-10-21,Abnormal,8275,270,4,18,,,,DISCHARGED -8276,2020-03-02,6282.546819679948,355,Emergency,2020-03-07,Inconclusive,8276,257,3,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8278,2019-06-24,29743.361920748925,406,Elective,2019-06-26,Inconclusive,8278,179,2,1,,,,DISCHARGED -8279,2018-11-23,24793.520279808545,306,Emergency,2018-12-16,Normal,8279,486,0,25,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8280,2022-06-23,13557.317658573716,105,Urgent,2022-06-24,Normal,8280,372,0,9,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8281,2022-06-23,16457.371931855716,392,Elective,2022-07-08,Abnormal,8281,171,0,11,,,,DISCHARGED -8282,2023-02-20,38697.31564743623,327,Elective,,Abnormal,8282,437,3,13,,,,OPEN -8283,2021-12-02,42705.4087931323,493,Urgent,2021-12-23,Abnormal,8283,273,3,17,,,,DISCHARGED -8284,2023-06-05,18219.78450729501,190,Emergency,,Abnormal,8284,258,0,18,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -8285,2019-12-09,24187.761031066933,121,Emergency,2019-12-14,Abnormal,8285,134,1,5,,,,DISCHARGED -8286,2020-01-20,18397.33414002344,422,Elective,2020-01-23,Abnormal,8286,170,1,4,,,,DISCHARGED -8287,2019-12-04,48386.39238101044,331,Elective,2019-12-08,Inconclusive,8287,209,2,26,,,,DISCHARGED -8288,2022-08-25,37027.03703077011,396,Urgent,2022-08-26,Inconclusive,8288,235,4,15,,,,DISCHARGED -8289,2019-02-13,21265.85465934489,142,Urgent,2019-03-06,Inconclusive,8289,421,2,13,,,,DISCHARGED -8290,2020-03-22,14403.00588435372,406,Emergency,2020-03-30,Inconclusive,8290,420,0,12,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -8291,2020-07-26,39890.98833261332,297,Urgent,2020-08-21,Abnormal,8291,185,0,20,,,,DISCHARGED -8292,2020-11-15,34443.94650094133,281,Elective,2020-12-09,Inconclusive,8292,416,0,1,,,,DISCHARGED -8293,2019-04-14,29837.116698559254,489,Elective,2019-05-04,Normal,8293,363,4,1,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -8294,2021-02-14,49428.167508309794,390,Urgent,2021-02-17,Inconclusive,8294,442,3,11,,,,DISCHARGED -8296,2022-10-29,28072.654601027945,245,Emergency,2022-11-05,Normal,8296,94,4,0,,,,DISCHARGED -8297,2020-08-17,37027.31534592706,336,Elective,2020-08-19,Normal,8297,377,2,18,,,,DISCHARGED -8298,2019-08-23,41979.64105239214,231,Emergency,2019-09-21,Inconclusive,8298,10,3,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8299,2023-01-03,37118.28417017284,296,Urgent,2023-01-23,Abnormal,8299,67,3,27,,,,DISCHARGED -8300,2020-04-18,47350.37315158523,432,Emergency,2020-04-27,Normal,8300,378,2,26,,,,DISCHARGED -8301,2020-03-25,15160.477689471663,480,Urgent,2020-04-18,Inconclusive,8301,209,3,15,,,,DISCHARGED -8302,2023-10-23,21289.84276502331,230,Emergency,,Normal,8302,195,1,29,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,OPEN -8303,2020-05-12,8365.254966987366,458,Emergency,2020-06-01,Inconclusive,8303,368,2,6,,,,DISCHARGED -8304,2023-06-16,47837.80026291821,123,Emergency,,Abnormal,8304,97,2,26,,,,OPEN -8307,2021-04-21,41191.93397607293,456,Elective,2021-05-12,Inconclusive,8307,92,1,20,,,,DISCHARGED -8308,2019-01-10,6637.021910141978,199,Emergency,2019-02-07,Inconclusive,8308,471,4,6,,,,DISCHARGED -8309,2023-05-30,8199.03831110839,473,Emergency,2023-06-24,Abnormal,8309,21,4,15,,,,DISCHARGED -8310,2021-12-31,44281.65802476424,428,Emergency,2022-01-07,Normal,8310,449,4,24,,,,DISCHARGED -8311,2020-04-07,34848.34524505698,308,Emergency,2020-04-22,Inconclusive,8311,171,3,5,,,,DISCHARGED -8313,2022-11-16,12851.42958189394,301,Urgent,2022-12-10,Abnormal,8313,382,1,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8314,2023-03-12,3110.029727725993,353,Elective,,Normal,8314,133,2,0,,,,OPEN -8316,2020-08-16,12630.4021618884,310,Elective,2020-09-10,Normal,8316,425,2,0,,,,DISCHARGED -8317,2022-07-24,12093.058672847565,439,Urgent,2022-08-15,Normal,8317,24,2,25,,,,DISCHARGED -8318,2022-01-26,3136.0364273625505,461,Urgent,2022-02-13,Abnormal,8318,184,3,24,,,,DISCHARGED -8319,2019-06-01,17039.89073446181,400,Urgent,2019-06-11,Abnormal,8319,84,3,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8320,2020-01-19,15982.016851434704,440,Urgent,2020-02-10,Inconclusive,8320,54,4,5,,,,DISCHARGED -8321,2019-03-19,11482.881826080433,120,Emergency,2019-04-07,Inconclusive,8321,250,3,5,,,,DISCHARGED -8322,2019-05-08,3608.407583844075,337,Elective,2019-05-21,Normal,8322,143,4,3,,,,DISCHARGED -8323,2022-10-17,39135.322554736485,383,Elective,2022-10-24,Inconclusive,8323,350,4,11,,,,DISCHARGED -8324,2023-06-21,48387.12135461989,315,Urgent,2023-07-03,Abnormal,8324,397,2,29,,,,DISCHARGED -8325,2023-10-06,29283.018608449704,162,Emergency,2023-10-28,Abnormal,8325,166,3,17,,,,DISCHARGED -8326,2023-03-01,11456.786185176685,355,Elective,2023-03-18,Inconclusive,8326,411,4,9,,,,DISCHARGED -8327,2022-07-02,28223.497178375423,166,Elective,2022-07-05,Inconclusive,8327,223,1,2,,,,DISCHARGED -8328,2020-11-02,42572.47850506077,210,Urgent,2020-11-08,Abnormal,8328,219,1,2,,,,DISCHARGED -8330,2023-09-07,3222.9854382617905,157,Emergency,,Abnormal,8330,178,3,7,,,,OPEN -8331,2020-03-10,36773.468095144606,467,Emergency,2020-03-30,Normal,8331,118,2,21,,,,DISCHARGED -8332,2021-10-16,43285.66928980906,311,Urgent,2021-11-05,Inconclusive,8332,432,2,22,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8333,2021-07-26,45806.61074539374,108,Elective,2021-08-22,Inconclusive,8333,264,4,24,,,,DISCHARGED -8334,2019-11-27,2611.01795440362,261,Elective,2019-12-05,Normal,8334,441,3,0,,,,DISCHARGED -8335,2022-09-29,49140.87878095109,413,Urgent,2022-10-01,Inconclusive,8335,428,1,17,,,,DISCHARGED -8336,2023-07-11,34482.51703873634,478,Urgent,,Inconclusive,8336,149,4,14,,,,OPEN -8337,2019-12-17,44638.598376786176,197,Urgent,2020-01-09,Abnormal,8337,415,4,24,,,,DISCHARGED -8338,2022-10-03,8584.056356614996,458,Emergency,2022-10-24,Normal,8338,452,0,20,,,,DISCHARGED -8339,2023-09-13,28857.283047653087,111,Emergency,2023-10-02,Abnormal,8339,214,3,19,,,,DISCHARGED -8341,2022-09-25,3512.1603534048486,416,Urgent,2022-10-09,Inconclusive,8341,196,4,16,,,,DISCHARGED -8342,2019-08-30,29882.989974098185,308,Urgent,2019-09-24,Inconclusive,8342,41,1,24,,,,DISCHARGED -8343,2018-11-11,4872.252483834007,384,Emergency,2018-12-06,Inconclusive,8343,52,0,10,,,,DISCHARGED -8344,2020-09-10,42171.68204572897,276,Elective,2020-09-25,Abnormal,8344,479,1,12,,,,DISCHARGED -8345,2022-01-07,9261.337941411326,260,Elective,2022-01-21,Normal,8345,442,2,24,,,,DISCHARGED -8346,2022-04-21,48757.698732604,101,Urgent,2022-05-11,Inconclusive,8346,329,0,19,,,,DISCHARGED -8347,2022-05-20,24735.434355201374,322,Urgent,2022-06-12,Abnormal,8347,250,0,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8348,2019-06-21,43185.35409782744,215,Emergency,2019-07-04,Inconclusive,8348,294,4,9,,,,DISCHARGED -8349,2019-06-19,29905.18338029509,318,Urgent,2019-06-26,Normal,8349,377,2,12,,,,DISCHARGED -8350,2020-12-31,21410.578883277834,165,Emergency,2021-01-24,Inconclusive,8350,270,4,16,,,,DISCHARGED -8351,2022-07-13,25131.779081002544,120,Emergency,2022-08-06,Normal,8351,454,3,20,,,,DISCHARGED -8351,2022-10-06,37033.87748684664,380,Emergency,2022-10-23,Normal,9319,412,1,0,,,,DISCHARGED -8352,2022-03-13,46514.228528404325,193,Emergency,2022-03-17,Normal,8352,122,1,19,,,,DISCHARGED -8353,2023-10-10,41630.53578197566,438,Elective,,Normal,8353,366,4,15,,,,OPEN -8354,2020-03-22,5953.510835237855,129,Emergency,2020-04-14,Inconclusive,8354,386,1,15,,,,DISCHARGED -8355,2018-12-05,19489.62650276664,387,Emergency,2018-12-31,Abnormal,8355,338,1,27,,,,DISCHARGED -8356,2023-03-19,31614.04106601988,339,Urgent,2023-04-04,Normal,8356,265,3,20,,,,DISCHARGED -8357,2022-10-15,3492.74028433862,488,Elective,2022-10-28,Abnormal,8357,347,2,29,,,,DISCHARGED -8358,2021-02-21,36302.94733895276,202,Emergency,2021-03-03,Abnormal,8358,28,0,26,,,,DISCHARGED -8359,2020-08-30,38876.73965799117,393,Emergency,2020-09-06,Abnormal,8359,462,4,2,,,,DISCHARGED -8360,2021-12-24,19803.81853772989,293,Urgent,2022-01-23,Abnormal,8360,34,4,1,,,,DISCHARGED -8361,2020-07-05,32532.81691747898,208,Urgent,2020-07-13,Normal,8361,5,3,5,,,,DISCHARGED -8362,2023-05-21,24428.721023984035,335,Urgent,,Inconclusive,8362,395,3,10,,,,OPEN -8363,2019-02-05,36608.40121370153,195,Emergency,2019-02-17,Normal,8363,110,0,28,,,,DISCHARGED -8364,2023-02-02,36213.69220885789,293,Elective,2023-02-28,Inconclusive,8364,293,2,2,,,,DISCHARGED -8365,2019-01-15,44604.48540998071,484,Elective,2019-01-18,Abnormal,8365,76,4,25,,,,DISCHARGED -8366,2019-05-24,17034.54319927463,123,Urgent,2019-05-27,Normal,8366,348,3,0,,,,DISCHARGED -8367,2019-06-26,29317.0261830391,410,Elective,2019-07-05,Inconclusive,8367,146,4,10,,,,DISCHARGED -8368,2022-05-28,30799.123216588338,319,Emergency,2022-06-19,Normal,8368,66,1,12,,,,DISCHARGED -8369,2022-12-08,3799.468942388866,443,Emergency,2022-12-09,Normal,8369,391,4,4,,,,DISCHARGED -8370,2020-05-21,17790.948470264102,297,Urgent,2020-06-08,Abnormal,8370,7,2,17,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8371,2019-04-10,4229.62167795524,351,Urgent,2019-04-22,Inconclusive,8371,121,2,14,,,,DISCHARGED -8372,2023-10-29,28368.467860262463,156,Urgent,,Inconclusive,8372,339,4,17,,,,OPEN -8373,2022-06-14,35211.16808745828,420,Urgent,2022-07-08,Inconclusive,8373,174,1,14,,,,DISCHARGED -8374,2021-10-09,43827.82214419748,395,Urgent,2021-10-22,Inconclusive,8374,387,2,19,,,,DISCHARGED -8375,2023-07-24,34614.54207354463,236,Urgent,2023-07-30,Normal,8375,178,3,19,,,,DISCHARGED -8376,2021-07-21,9446.967428988191,311,Emergency,2021-08-03,Abnormal,8376,84,4,19,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -8377,2020-02-09,46467.227563441855,470,Urgent,2020-02-16,Inconclusive,8377,450,1,6,,,,DISCHARGED -8378,2023-09-17,33173.965493179014,276,Emergency,2023-10-02,Inconclusive,8378,44,3,16,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8379,2021-10-29,14020.030183021903,362,Elective,2021-11-05,Inconclusive,8379,135,4,28,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8380,2022-05-18,43866.4453409479,253,Emergency,2022-06-13,Abnormal,8380,342,1,7,,,,DISCHARGED -8381,2022-02-16,22936.506466698705,237,Elective,2022-02-20,Inconclusive,8381,15,3,27,,,,DISCHARGED -8382,2019-01-20,9395.849645957844,314,Urgent,2019-02-08,Abnormal,8382,332,2,12,,,,DISCHARGED -8383,2021-09-28,1621.830197776983,404,Emergency,2021-10-03,Inconclusive,8383,194,4,25,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -8384,2018-12-22,29633.272805783305,176,Urgent,2019-01-16,Abnormal,8384,495,4,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8386,2019-04-16,7645.336328339558,338,Elective,2019-04-24,Normal,8386,8,2,24,,,,DISCHARGED -8387,2021-06-01,49304.91287065599,253,Emergency,2021-07-01,Inconclusive,8387,315,0,9,,,,DISCHARGED -8388,2021-01-29,34687.19983640641,213,Elective,2021-02-08,Normal,8388,333,3,28,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8389,2021-08-09,22371.373229225308,188,Urgent,2021-08-31,Abnormal,8389,332,2,13,,,,DISCHARGED -8390,2020-05-08,13130.362308996844,409,Urgent,2020-05-11,Abnormal,8390,326,4,5,,,,DISCHARGED -8391,2021-05-05,25062.29231756852,458,Urgent,2021-05-13,Abnormal,8391,14,3,19,,,,DISCHARGED -8392,2023-02-08,8330.79358699481,157,Emergency,,Inconclusive,8392,326,3,21,,,,OPEN -8393,2018-10-31,37980.14715475678,308,Emergency,2018-11-24,Abnormal,8393,101,0,25,,,,DISCHARGED -8394,2022-02-02,47060.392877269165,369,Urgent,2022-02-14,Abnormal,8394,225,4,6,,,,DISCHARGED -8395,2022-09-03,11308.352290060144,206,Elective,2022-10-01,Abnormal,8395,424,1,5,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8396,2018-11-04,31127.817672858146,135,Elective,2018-11-14,Normal,8396,277,0,26,,,,DISCHARGED -8397,2023-01-12,12864.065641714107,248,Urgent,2023-01-22,Normal,8397,407,0,16,,,,DISCHARGED -8397,2019-04-29,17516.4482513964,157,Elective,2019-05-06,Inconclusive,8846,112,1,20,,,,DISCHARGED -8398,2023-06-15,41995.01542034207,126,Elective,2023-07-11,Abnormal,8398,484,1,23,,,,DISCHARGED -8400,2021-06-03,33308.28199451362,139,Urgent,2021-06-08,Abnormal,8400,427,0,7,,,,DISCHARGED -8401,2021-05-31,21891.33315823238,171,Elective,2021-06-08,Normal,8401,0,3,11,,,,DISCHARGED -8402,2022-01-17,19872.64758687871,379,Elective,2022-02-13,Inconclusive,8402,265,2,25,,,,DISCHARGED -8403,2019-05-18,47390.49085081662,121,Urgent,2019-06-07,Abnormal,8403,490,2,24,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -8404,2019-04-27,34257.64990300737,492,Urgent,2019-05-01,Abnormal,8404,207,0,3,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8405,2023-01-21,29924.42313750195,292,Emergency,2023-01-23,Normal,8405,109,3,9,,,,DISCHARGED -8406,2023-08-06,7867.16653361466,330,Emergency,,Inconclusive,8406,199,1,5,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",OPEN -8407,2019-12-23,12306.247538318205,431,Urgent,2020-01-20,Normal,8407,439,0,6,,,,DISCHARGED -8408,2022-07-20,42046.10932162721,495,Urgent,2022-08-09,Abnormal,8408,368,4,20,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8409,2022-09-09,37931.75165728488,259,Emergency,2022-10-03,Abnormal,8409,472,3,26,,,,DISCHARGED -8410,2019-02-18,11944.064925410736,390,Emergency,2019-02-22,Normal,8410,305,4,7,,,,DISCHARGED -8411,2022-02-14,28044.040179382213,475,Urgent,2022-03-10,Abnormal,8411,11,4,2,,,,DISCHARGED -8411,2023-07-24,12276.707696736226,377,Emergency,,Abnormal,9368,344,0,7,,,,OPEN -8412,2021-04-29,26641.207212629797,448,Emergency,2021-05-16,Inconclusive,8412,464,3,14,,,,DISCHARGED -8415,2022-03-08,7166.965465519757,258,Urgent,2022-03-12,Abnormal,8415,187,4,29,,,,DISCHARGED -8416,2021-09-22,8105.49002100708,433,Elective,2021-10-01,Inconclusive,8416,153,3,20,,,,DISCHARGED -8417,2020-10-05,14051.377062196008,118,Elective,2020-10-31,Normal,8417,493,2,0,,,,DISCHARGED -8418,2019-12-24,46112.8236345238,331,Urgent,2019-12-30,Abnormal,8418,367,4,12,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -8420,2023-01-10,10775.331426227624,324,Elective,2023-02-09,Normal,8420,333,4,21,,,,DISCHARGED -8421,2019-07-23,46831.43920374231,253,Urgent,2019-08-08,Inconclusive,8421,424,3,17,,,,DISCHARGED -8422,2019-11-02,20143.025577320837,396,Elective,2019-11-17,Inconclusive,8422,419,2,14,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -8423,2021-12-25,35745.6907787062,249,Urgent,2022-01-24,Abnormal,8423,376,4,6,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -8424,2021-06-16,1243.9728976242625,178,Emergency,2021-07-11,Inconclusive,8424,278,0,14,,,,DISCHARGED -8425,2019-01-21,49100.458363573794,244,Elective,2019-01-28,Normal,8425,170,3,24,,,,DISCHARGED -8426,2020-01-07,40953.34441089516,314,Elective,2020-01-24,Normal,8426,133,3,2,,,,DISCHARGED -8427,2020-06-28,46320.03442207755,244,Emergency,2020-07-19,Abnormal,8427,494,4,29,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8428,2023-02-08,18697.998489384427,147,Elective,2023-02-15,Inconclusive,8428,452,2,25,,,,DISCHARGED -8429,2023-02-14,15193.755609347454,384,Urgent,,Abnormal,8429,426,4,13,,,,OPEN -8430,2018-11-24,49242.05785018929,378,Urgent,2018-12-16,Inconclusive,8430,24,1,19,,,,DISCHARGED -8431,2020-06-06,19829.048590703103,365,Elective,2020-06-14,Abnormal,8431,17,4,3,,,,DISCHARGED -8432,2020-07-06,6153.377667907586,274,Urgent,2020-08-03,Abnormal,8432,189,1,3,,,,DISCHARGED -8433,2019-10-27,25524.99173845405,139,Elective,2019-11-04,Abnormal,8433,140,0,2,,,,DISCHARGED -8434,2020-06-16,7816.979418672698,211,Elective,2020-06-20,Abnormal,8434,42,3,4,,,,DISCHARGED -8435,2020-06-16,9365.924503115237,345,Emergency,2020-07-15,Inconclusive,8435,333,3,24,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -8436,2023-02-06,18833.72734981708,228,Emergency,,Inconclusive,8436,283,2,10,,,,OPEN -8437,2021-06-18,24458.46840504675,455,Urgent,2021-07-05,Abnormal,8437,145,4,7,,,,DISCHARGED -8438,2022-06-14,38765.26479449626,418,Elective,2022-06-16,Abnormal,8438,314,0,25,,,,DISCHARGED -8439,2021-05-16,11451.595848175535,309,Emergency,2021-06-02,Inconclusive,8439,443,1,1,,,,DISCHARGED -8440,2019-07-15,25133.964115481285,242,Urgent,2019-07-19,Abnormal,8440,318,2,27,,,,DISCHARGED -8441,2022-03-22,25655.6544197151,459,Elective,2022-04-15,Normal,8441,440,0,15,,,,DISCHARGED -8442,2022-07-05,16701.953527999445,379,Elective,2022-07-12,Abnormal,8442,91,0,24,,,,DISCHARGED -8443,2023-04-25,4428.433520844079,442,Emergency,2023-05-23,Abnormal,8443,178,1,27,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8444,2018-12-27,11232.31079748094,423,Elective,2019-01-02,Inconclusive,8444,55,1,9,,,,DISCHARGED -8447,2019-02-08,19608.09486574254,411,Urgent,2019-02-16,Abnormal,8447,154,3,17,,,,DISCHARGED -8448,2023-05-07,30847.13871778822,187,Emergency,2023-06-04,Normal,8448,159,4,6,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8449,2020-11-05,37106.6062018785,242,Urgent,2020-11-22,Abnormal,8449,110,2,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -8451,2021-12-01,22679.045220794484,399,Elective,2021-12-07,Inconclusive,8451,136,4,28,,,,DISCHARGED -8452,2020-05-16,32978.53380122561,500,Elective,2020-05-28,Inconclusive,8452,231,2,6,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8453,2019-04-29,7765.002313376223,465,Elective,2019-05-20,Abnormal,8453,479,0,20,,,,DISCHARGED -8454,2023-02-16,17665.08869552336,460,Emergency,2023-02-19,Abnormal,8454,467,1,27,,,,DISCHARGED -8455,2021-05-26,20572.471670862484,209,Elective,2021-06-04,Normal,8455,219,1,5,,,,DISCHARGED -8456,2023-07-25,9615.71524065711,113,Urgent,,Abnormal,8456,480,0,23,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",OPEN -8458,2019-08-17,17806.088816633313,235,Emergency,2019-09-01,Inconclusive,8458,67,0,0,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8459,2019-06-18,49333.156823314166,139,Urgent,2019-06-23,Inconclusive,8459,301,2,28,,,,DISCHARGED -8461,2021-11-09,26831.99249281976,127,Emergency,2021-11-21,Abnormal,8461,248,0,10,,,,DISCHARGED -8462,2021-03-01,14055.937364116306,166,Urgent,2021-03-17,Inconclusive,8462,481,2,12,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8463,2020-11-02,5991.611735145802,350,Emergency,2020-11-29,Inconclusive,8463,495,4,11,Sudden onset of leg cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8464,2020-09-11,2949.0432555313664,290,Emergency,2020-09-20,Normal,8464,322,1,0,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -8465,2020-07-01,5133.211233428802,375,Urgent,2020-07-04,Inconclusive,8465,409,1,20,,,,DISCHARGED -8466,2020-09-21,18000.0894935308,342,Urgent,2020-10-08,Abnormal,8466,391,1,14,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -8468,2020-11-05,17719.18614826582,399,Elective,2020-11-24,Inconclusive,8468,5,4,0,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8469,2021-02-01,27915.63103398423,206,Elective,2021-02-14,Normal,8469,463,4,2,,,,DISCHARGED -8470,2021-01-07,41588.71164822058,449,Emergency,2021-01-19,Inconclusive,8470,279,3,25,,,,DISCHARGED -8471,2019-05-28,5460.244639223006,484,Elective,2019-06-11,Abnormal,8471,431,2,14,,,,DISCHARGED -8472,2020-08-07,27221.428291092183,156,Emergency,2020-08-28,Abnormal,8472,486,2,8,,,,DISCHARGED -8473,2020-06-23,27434.39695936583,403,Elective,2020-07-06,Normal,8473,93,3,13,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -8474,2020-03-03,35822.50646468301,451,Urgent,2020-03-25,Inconclusive,8474,428,1,28,,,,DISCHARGED -8476,2019-05-29,22292.41755373483,257,Emergency,2019-06-05,Normal,8476,268,2,22,,,,DISCHARGED -8477,2021-01-05,5630.094102982314,471,Emergency,2021-01-23,Inconclusive,8477,196,2,27,,,,DISCHARGED -8478,2020-04-23,31689.33564421653,399,Emergency,2020-05-07,Inconclusive,8478,24,1,21,,,,DISCHARGED -8479,2019-06-16,13004.903544849783,496,Elective,2019-06-25,Normal,8479,147,0,23,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8480,2019-11-24,38369.256959013066,365,Elective,2019-12-16,Abnormal,8480,117,0,7,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -8481,2023-06-17,32904.538764746474,256,Emergency,2023-07-05,Abnormal,8481,337,3,21,,,,DISCHARGED -8482,2022-11-05,27262.736813076568,214,Elective,2022-11-28,Normal,8482,366,4,3,,,,DISCHARGED -8483,2022-01-06,46747.29711322217,414,Urgent,2022-01-20,Abnormal,8483,337,2,19,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -8484,2021-01-04,36305.41546759692,445,Emergency,2021-01-31,Inconclusive,8484,65,2,19,,,,DISCHARGED -8485,2023-09-21,11335.320895131854,320,Urgent,2023-10-02,Inconclusive,8485,457,3,5,,,,DISCHARGED -8486,2021-01-31,32821.591832816106,469,Urgent,2021-02-26,Normal,8486,300,3,0,,,,DISCHARGED -8487,2019-02-11,19579.094754850976,451,Emergency,2019-03-13,Inconclusive,8487,369,2,27,,,,DISCHARGED -8488,2020-10-17,47564.20759522408,272,Urgent,2020-11-05,Normal,8488,174,1,17,,,,DISCHARGED -8489,2019-07-12,46008.80490890444,280,Elective,2019-07-15,Abnormal,8489,318,1,5,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8490,2022-07-04,4360.214208595335,448,Emergency,2022-07-16,Normal,8490,75,4,29,,,,DISCHARGED -8491,2022-10-10,35038.33812167479,395,Emergency,2022-11-02,Abnormal,8491,494,2,13,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8493,2020-05-23,9156.536190512912,211,Emergency,2020-06-11,Normal,8493,460,2,10,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8494,2020-02-22,22728.26720058117,104,Emergency,2020-03-18,Normal,8494,113,2,16,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -8495,2021-03-23,1429.8886578265167,164,Urgent,2021-04-20,Abnormal,8495,110,2,8,,,,DISCHARGED -8496,2021-10-13,20796.1376382904,116,Emergency,2021-11-03,Abnormal,8496,248,3,27,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8498,2020-04-17,30490.696525128096,405,Emergency,2020-05-11,Inconclusive,8498,438,0,21,,,,DISCHARGED -8499,2019-12-16,42006.021230579536,419,Urgent,2019-12-28,Abnormal,8499,202,2,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -8500,2021-06-02,1709.9047516469795,500,Urgent,2021-06-09,Inconclusive,8500,146,0,13,,,,DISCHARGED -8501,2019-11-10,44321.09951336394,264,Urgent,2019-11-17,Normal,8501,34,1,27,,,,DISCHARGED -8502,2021-03-19,48056.68034120919,230,Urgent,2021-04-05,Inconclusive,8502,486,4,16,,,,DISCHARGED -8503,2023-06-25,17736.92969622423,490,Urgent,2023-07-10,Normal,8503,308,1,7,,,,DISCHARGED -8504,2023-06-24,17202.77293670304,360,Elective,2023-07-19,Inconclusive,8504,25,2,27,,,,DISCHARGED -8505,2023-04-29,48911.60518935587,256,Elective,2023-05-13,Normal,8505,237,1,15,,,,DISCHARGED -8506,2019-11-10,10981.158339716423,214,Emergency,2019-12-04,Abnormal,8506,13,3,11,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8507,2019-12-15,37483.69656408943,323,Elective,2020-01-14,Abnormal,8507,373,0,11,,,,DISCHARGED -8508,2020-01-08,36776.93488629535,199,Elective,2020-01-13,Inconclusive,8508,44,2,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8509,2019-05-19,6804.433924892192,250,Emergency,2019-05-25,Normal,8509,427,3,27,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -8510,2023-08-17,22140.51416288374,496,Emergency,,Abnormal,8510,215,0,4,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,OPEN -8511,2019-08-18,34642.17508574862,176,Elective,2019-09-06,Inconclusive,8511,232,3,4,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -8512,2020-09-29,38549.258757141535,202,Elective,2020-10-09,Normal,8512,192,1,13,,,,DISCHARGED -8513,2021-08-24,29359.203636483417,244,Emergency,2021-09-01,Abnormal,8513,50,2,5,,,,DISCHARGED -8515,2023-07-01,38091.43669080757,229,Urgent,,Abnormal,8515,426,1,6,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,OPEN -8516,2020-11-10,17866.98231632598,144,Emergency,2020-11-30,Abnormal,8516,374,4,22,,,,DISCHARGED -8517,2021-03-03,39887.37641348983,258,Emergency,2021-03-09,Inconclusive,8517,213,2,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -8518,2022-04-08,39210.055985093706,440,Urgent,2022-05-05,Inconclusive,8518,150,1,16,,,,DISCHARGED -8519,2019-01-08,28622.025406534613,173,Emergency,2019-01-14,Abnormal,8519,439,2,26,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8520,2022-12-02,18857.82924641502,377,Elective,2022-12-07,Inconclusive,8520,274,0,8,,,,DISCHARGED -8521,2022-05-13,34192.98585998548,127,Urgent,2022-06-12,Inconclusive,8521,337,2,21,,,,DISCHARGED -8521,2019-08-04,18930.46839702707,170,Urgent,2019-08-28,Inconclusive,9252,75,2,12,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -8522,2022-12-19,4667.545922530266,168,Emergency,2023-01-03,Inconclusive,8522,438,0,8,,,,DISCHARGED -8523,2021-05-22,47233.7122492197,312,Urgent,2021-06-16,Inconclusive,8523,219,1,26,,,,DISCHARGED -8524,2021-01-07,17269.24533018908,425,Urgent,2021-01-22,Normal,8524,347,2,15,,,,DISCHARGED -8525,2020-11-24,7602.858353111617,180,Elective,2020-12-02,Normal,8525,443,3,3,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -8526,2020-02-08,23363.75566989012,496,Elective,2020-03-08,Inconclusive,8526,186,2,1,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -8527,2019-11-29,19697.002441317363,486,Emergency,2019-12-11,Abnormal,8527,288,1,12,,,,DISCHARGED -8529,2019-09-17,28519.89276905813,311,Urgent,2019-10-02,Abnormal,8529,402,0,12,,,,DISCHARGED -8530,2019-02-24,46476.25070139772,353,Emergency,2019-03-14,Normal,8530,27,1,18,,,,DISCHARGED -8531,2021-05-04,39302.2872947826,222,Urgent,2021-05-18,Abnormal,8531,378,4,11,,,,DISCHARGED -8532,2020-10-03,35655.0123337886,183,Urgent,2020-10-18,Inconclusive,8532,179,2,3,,,,DISCHARGED -8533,2019-12-04,49527.53956308346,264,Elective,2019-12-18,Abnormal,8533,252,2,9,,,,DISCHARGED -8534,2022-08-29,18966.58485007633,253,Emergency,2022-09-17,Abnormal,8534,125,0,15,,,,DISCHARGED -8535,2021-05-17,5907.641409649576,166,Emergency,2021-06-10,Normal,8535,176,2,27,,,,DISCHARGED -8536,2019-01-03,44434.100887535686,210,Elective,2019-01-31,Inconclusive,8536,36,3,23,,,,DISCHARGED -8537,2018-12-08,28021.50789664872,469,Emergency,2019-01-07,Abnormal,8537,409,3,18,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8539,2023-04-26,43554.54860683461,340,Urgent,2023-04-30,Normal,8539,98,1,7,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8540,2022-02-22,13510.33204129477,112,Urgent,2022-03-12,Abnormal,8540,97,0,5,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8541,2022-07-01,8479.476082817766,485,Urgent,2022-07-27,Normal,8541,126,4,3,,,,DISCHARGED -8542,2021-05-14,17233.951715408184,491,Urgent,2021-06-12,Abnormal,8542,482,1,29,,,,DISCHARGED -8543,2022-10-18,35082.49600341645,447,Emergency,2022-11-14,Abnormal,8543,167,0,6,,,,DISCHARGED -8544,2019-02-22,12776.873061970577,435,Emergency,2019-02-28,Inconclusive,8544,79,0,13,,,,DISCHARGED -8545,2022-04-24,42058.64875523408,389,Urgent,2022-04-29,Abnormal,8545,293,1,26,,,,DISCHARGED -8546,2020-07-20,1939.869308973412,134,Emergency,2020-07-27,Abnormal,8546,332,1,12,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8547,2020-07-07,30126.789136248768,166,Emergency,2020-07-16,Normal,8547,125,2,20,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -8548,2022-06-16,32377.1789887482,313,Elective,2022-06-30,Normal,8548,342,4,4,,,,DISCHARGED -8549,2018-11-19,40329.92228167312,212,Urgent,2018-11-27,Inconclusive,8549,309,3,8,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -8550,2022-07-28,47145.45635650896,156,Elective,2022-08-07,Abnormal,8550,149,2,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -8551,2018-11-07,18530.373825181712,380,Emergency,2018-12-02,Abnormal,8551,15,0,2,,,,DISCHARGED -8552,2020-07-22,2488.319624128384,243,Elective,2020-08-16,Inconclusive,8552,27,4,9,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -8554,2020-01-30,37997.50845356644,444,Urgent,2020-02-06,Normal,8554,495,4,14,,,,DISCHARGED -8556,2022-06-21,14738.370173267724,105,Urgent,2022-06-29,Normal,8556,418,1,19,,,,DISCHARGED -8557,2019-06-05,36256.493265753656,261,Emergency,2019-06-27,Inconclusive,8557,443,4,20,,,,DISCHARGED -8558,2019-09-09,14482.946018131712,354,Emergency,2019-10-07,Inconclusive,8558,172,4,16,,,,DISCHARGED -8559,2020-02-17,38391.00703026782,211,Elective,2020-03-04,Inconclusive,8559,45,0,22,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -8560,2022-01-03,14181.060090229732,305,Emergency,2022-01-16,Inconclusive,8560,327,2,23,,,,DISCHARGED -8561,2022-12-23,43448.35084813244,216,Urgent,2023-01-11,Abnormal,8561,235,4,5,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8562,2023-07-28,19136.3642052854,279,Urgent,,Inconclusive,8562,438,1,24,,,,OPEN -8563,2022-09-09,16870.187481818073,441,Emergency,2022-09-23,Normal,8563,213,2,2,,,,DISCHARGED -8565,2020-02-21,11229.345585670471,177,Elective,2020-03-11,Normal,8565,84,1,17,,,,DISCHARGED -8566,2023-04-30,20964.39866902374,349,Emergency,,Abnormal,8566,281,4,4,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -8567,2019-01-08,43054.65398107384,144,Urgent,2019-01-13,Normal,8567,231,2,12,,,,DISCHARGED -8568,2020-03-09,21031.759211334345,275,Urgent,2020-03-14,Inconclusive,8568,84,4,24,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8569,2023-07-26,48989.69712204453,144,Elective,2023-08-12,Abnormal,8569,408,0,26,,,,DISCHARGED -8570,2023-07-31,19564.730353206516,382,Emergency,2023-08-15,Normal,8570,488,2,0,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -8571,2019-04-30,39561.23671708903,310,Elective,2019-05-14,Abnormal,8571,64,1,16,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -8572,2023-07-05,18235.414140711386,388,Urgent,2023-07-08,Inconclusive,8572,133,0,25,,,,DISCHARGED -8573,2019-03-09,11040.958629268,359,Emergency,2019-03-14,Abnormal,8573,150,3,2,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8574,2020-03-30,24973.48979153339,289,Urgent,2020-04-02,Inconclusive,8574,114,1,25,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8575,2023-04-27,4666.137099162626,284,Emergency,2023-05-21,Normal,8575,63,4,18,,,,DISCHARGED -8576,2020-12-28,27349.683692315084,183,Emergency,2021-01-13,Inconclusive,8576,342,1,20,,,,DISCHARGED -8577,2020-08-28,18532.066112946017,444,Urgent,2020-09-04,Inconclusive,8577,426,3,19,,,,DISCHARGED -8578,2023-03-08,47974.393515456,406,Urgent,,Normal,8578,362,1,21,,,,OPEN -8579,2022-11-18,6222.364613076986,441,Emergency,2022-12-03,Abnormal,8579,406,0,11,,,,DISCHARGED -8580,2022-09-18,9189.289369024831,462,Urgent,2022-09-26,Normal,8580,351,1,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8581,2022-05-22,5294.36063821127,218,Emergency,2022-06-05,Abnormal,8581,157,2,7,,,,DISCHARGED -8582,2020-05-22,23192.02171176258,353,Urgent,2020-05-29,Inconclusive,8582,76,3,14,,,,DISCHARGED -8583,2018-10-31,15276.018269401537,117,Elective,2018-11-26,Inconclusive,8583,490,1,10,,,,DISCHARGED -8584,2020-12-06,32769.16614446891,432,Emergency,2020-12-30,Abnormal,8584,145,3,19,,,,DISCHARGED -8585,2019-06-16,29764.49005529812,333,Emergency,2019-07-14,Abnormal,8585,342,0,0,,,,DISCHARGED -8586,2021-12-27,46969.6116791708,323,Emergency,2022-01-10,Abnormal,8586,462,2,28,,,,DISCHARGED -8587,2019-08-20,20057.983279314925,357,Urgent,2019-09-03,Inconclusive,8587,224,4,15,,,,DISCHARGED -8588,2022-03-23,9941.174376382973,394,Elective,2022-04-07,Inconclusive,8588,404,1,29,,,,DISCHARGED -8589,2020-05-31,19859.05871424804,399,Emergency,2020-06-26,Normal,8589,312,0,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -8590,2023-04-08,17782.743947627478,163,Emergency,,Abnormal,8590,102,3,6,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",OPEN -8590,2021-03-02,43354.01301421569,138,Emergency,2021-03-18,Abnormal,8784,406,3,5,,,,DISCHARGED -8591,2021-07-14,14918.85311075017,238,Urgent,2021-07-19,Abnormal,8591,346,0,20,,,,DISCHARGED -8592,2023-09-25,4419.106658496902,208,Urgent,,Inconclusive,8592,300,1,3,,,,OPEN -8593,2020-11-26,13290.726571961077,466,Elective,2020-12-26,Inconclusive,8593,427,4,21,,,,DISCHARGED -8594,2020-03-29,46913.25532663583,186,Urgent,2020-04-05,Abnormal,8594,465,1,7,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8595,2023-03-27,17431.419557387566,333,Emergency,2023-04-07,Abnormal,8595,87,2,21,,,,DISCHARGED -8596,2022-05-16,8426.391308738366,212,Emergency,2022-05-27,Inconclusive,8596,370,1,18,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -8597,2020-10-07,30698.234587921863,136,Urgent,2020-10-15,Normal,8597,302,2,24,,,,DISCHARGED -8598,2018-11-29,24187.23346855943,464,Urgent,2018-12-25,Inconclusive,8598,167,3,2,,,,DISCHARGED -8599,2022-06-10,14580.675566612226,151,Urgent,2022-07-02,Normal,8599,434,2,3,,,,DISCHARGED -8600,2022-02-04,39716.91290792697,335,Urgent,2022-02-22,Inconclusive,8600,169,4,12,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -8601,2019-03-14,19079.51775049902,110,Urgent,2019-03-15,Normal,8601,134,0,20,,,,DISCHARGED -8602,2022-08-30,32393.69761721157,177,Emergency,2022-09-02,Normal,8602,49,2,26,,,,DISCHARGED -8603,2023-06-10,22101.802132493005,311,Elective,2023-07-02,Normal,8603,431,1,1,,,,DISCHARGED -8604,2020-06-06,42442.482266730425,410,Elective,2020-06-20,Inconclusive,8604,339,2,10,,,,DISCHARGED -8605,2020-10-22,41049.0310524492,312,Urgent,2020-11-02,Abnormal,8605,346,3,15,,,,DISCHARGED -8606,2021-11-06,39397.53286950098,442,Elective,2021-11-27,Inconclusive,8606,133,2,9,,,,DISCHARGED -8607,2022-09-06,6516.217620749194,285,Elective,2022-09-22,Normal,8607,346,4,14,,,,DISCHARGED -8608,2019-05-29,1291.1943106706103,194,Emergency,2019-06-02,Normal,8608,136,2,26,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8609,2023-06-19,45275.82145895949,170,Urgent,2023-06-30,Inconclusive,8609,244,4,9,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8610,2020-04-30,40931.17346290707,285,Elective,2020-05-15,Abnormal,8610,108,1,1,,,,DISCHARGED -8612,2022-11-18,4246.625553762583,340,Urgent,2022-11-25,Abnormal,8612,312,3,5,,,,DISCHARGED -8613,2019-07-10,40806.765033179465,364,Urgent,2019-08-04,Abnormal,8613,286,0,13,,,,DISCHARGED -8614,2019-09-05,26061.870959413536,334,Elective,2019-10-05,Normal,8614,20,1,1,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8615,2020-04-12,44693.50721985696,150,Elective,2020-04-17,Inconclusive,8615,89,1,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8616,2019-10-18,33081.62932363766,483,Elective,2019-11-10,Abnormal,8616,295,0,16,,,,DISCHARGED -8617,2022-10-06,10602.809765571308,270,Emergency,2022-10-25,Inconclusive,8617,111,2,7,,,,DISCHARGED -8618,2023-02-04,6391.1608044937175,309,Urgent,2023-03-01,Abnormal,8618,300,2,25,,,,DISCHARGED -8619,2022-03-18,22625.92637723782,315,Urgent,2022-03-26,Abnormal,8619,76,2,15,,,,DISCHARGED -8620,2023-10-01,39144.88616716336,387,Urgent,2023-10-15,Abnormal,8620,176,3,13,,,,DISCHARGED -8622,2022-07-19,45671.54483160411,493,Urgent,2022-08-02,Normal,8622,342,1,9,,,,DISCHARGED -8623,2020-02-15,26591.126249455207,407,Emergency,2020-03-14,Abnormal,8623,147,4,12,,,,DISCHARGED -8624,2020-12-22,24267.37959445451,242,Elective,2021-01-09,Normal,8624,100,0,0,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -8625,2022-04-06,27608.160156980543,121,Urgent,2022-04-26,Abnormal,8625,245,1,9,,,,DISCHARGED -8626,2019-10-28,29111.892896914334,125,Emergency,2019-10-30,Abnormal,8626,116,2,29,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -8628,2021-11-03,46267.869149613405,462,Emergency,2021-11-24,Inconclusive,8628,91,0,21,,,,DISCHARGED -8629,2020-03-13,21156.64212030629,248,Urgent,2020-04-10,Inconclusive,8629,400,4,11,,,,DISCHARGED -8630,2019-04-29,33733.332286762336,492,Elective,2019-05-05,Abnormal,8630,27,1,29,,,,DISCHARGED -8631,2019-09-11,25892.405116587677,277,Emergency,2019-09-20,Abnormal,8631,424,1,16,,,,DISCHARGED -8632,2023-10-06,39163.84867732234,351,Urgent,2023-10-11,Abnormal,8632,449,3,23,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8633,2023-01-11,49167.640130179134,363,Emergency,2023-01-20,Inconclusive,8633,24,1,13,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8634,2021-09-22,28844.56025998443,108,Urgent,2021-10-12,Inconclusive,8634,57,1,4,,,,DISCHARGED -8636,2019-04-25,17631.07584104041,497,Urgent,2019-04-27,Normal,8636,497,4,18,,,,DISCHARGED -8637,2018-10-30,3700.492792020604,412,Emergency,2018-11-01,Normal,8637,296,4,4,,,,DISCHARGED -8638,2021-03-02,36627.55105054712,110,Elective,2021-03-21,Normal,8638,133,0,14,,,,DISCHARGED -8641,2020-01-08,26506.958402153617,358,Emergency,2020-02-06,Abnormal,8641,330,2,12,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8642,2021-07-31,32905.673599632544,182,Urgent,2021-08-10,Inconclusive,8642,248,4,16,,,,DISCHARGED -8644,2019-09-19,23716.221389245184,270,Emergency,2019-09-27,Abnormal,8644,37,0,0,,,,DISCHARGED -8645,2021-04-17,29720.63218212293,374,Emergency,2021-05-03,Abnormal,8645,389,1,27,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -8646,2021-02-28,35285.826961641484,454,Elective,2021-03-19,Normal,8646,428,0,13,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8647,2022-12-26,14024.970192637467,496,Urgent,2023-01-17,Normal,8647,74,0,3,,,,DISCHARGED -8648,2020-03-04,34668.08503838363,153,Elective,2020-03-09,Normal,8648,141,0,24,,,,DISCHARGED -8649,2022-09-20,6533.844231395243,330,Elective,2022-10-07,Normal,8649,321,0,29,,,,DISCHARGED -8650,2021-04-14,38349.7700935063,462,Emergency,2021-04-19,Normal,8650,167,4,8,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8651,2023-01-02,33896.988099156886,273,Urgent,2023-01-22,Normal,8651,258,2,16,,,,DISCHARGED -8652,2022-09-29,10049.968524517948,231,Emergency,2022-10-12,Normal,8652,372,0,2,,,,DISCHARGED -8654,2020-02-01,1152.310743280387,222,Urgent,2020-02-10,Abnormal,8654,354,3,12,,,,DISCHARGED -8655,2023-04-29,5718.780372449003,443,Urgent,2023-05-29,Abnormal,8655,224,1,11,,,,DISCHARGED -8656,2022-02-15,2906.538366336583,108,Urgent,2022-03-15,Normal,8656,151,1,15,,,,DISCHARGED -8657,2021-03-26,28204.476806295264,278,Elective,2021-04-03,Abnormal,8657,18,1,3,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8658,2019-12-02,49191.40004277582,452,Emergency,2019-12-23,Abnormal,8658,145,1,17,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8659,2022-03-29,2964.9539195557845,271,Emergency,2022-04-06,Inconclusive,8659,447,1,22,,,,DISCHARGED -8660,2022-02-10,31485.9006881171,356,Emergency,2022-03-03,Abnormal,8660,240,0,2,,,,DISCHARGED -8661,2019-01-28,49277.22931474176,351,Elective,2019-02-01,Inconclusive,8661,371,2,16,,,,DISCHARGED -8663,2021-08-11,17453.28206996105,128,Emergency,2021-08-18,Normal,8663,380,3,0,,,,DISCHARGED -8665,2020-11-15,16902.316175898784,471,Elective,2020-12-15,Normal,8665,343,4,18,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -8666,2022-11-09,41333.60162685347,285,Urgent,2022-12-05,Abnormal,8666,236,3,21,,,,DISCHARGED -8666,2019-07-25,22880.745670884626,262,Urgent,2019-08-24,Normal,9699,34,4,3,,,,DISCHARGED -8667,2019-06-12,15224.85975555282,458,Urgent,2019-06-17,Inconclusive,8667,189,4,16,,,,DISCHARGED -8668,2023-07-12,30026.23053735445,407,Elective,2023-07-16,Normal,8668,0,3,6,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8669,2023-06-11,4176.834899472101,477,Urgent,2023-06-24,Normal,8669,483,0,1,,,,DISCHARGED -8670,2021-08-07,15278.436974502298,393,Elective,2021-09-03,Inconclusive,8670,152,1,11,,,,DISCHARGED -8671,2023-06-24,20253.070430926316,218,Urgent,2023-06-28,Normal,8671,428,0,4,,,,DISCHARGED -8672,2023-08-25,19801.48951516921,271,Elective,2023-09-16,Inconclusive,8672,432,1,15,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -8673,2022-08-31,4211.71738280996,324,Emergency,2022-09-08,Normal,8673,125,2,7,,,,DISCHARGED -8674,2020-01-13,1582.0782060576712,164,Elective,2020-02-02,Inconclusive,8674,490,4,22,,,,DISCHARGED -8675,2020-03-27,47333.64992028892,115,Emergency,2020-04-15,Inconclusive,8675,481,3,26,,,,DISCHARGED -8676,2022-10-11,12933.87238248588,171,Emergency,2022-10-24,Inconclusive,8676,344,2,27,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -8677,2021-12-08,37392.0139747122,160,Emergency,2021-12-15,Inconclusive,8677,399,1,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -8678,2019-07-06,41412.00476419916,157,Emergency,2019-07-30,Abnormal,8678,225,0,12,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8679,2019-11-21,25917.703226027763,245,Elective,2019-12-02,Normal,8679,220,3,25,,,,DISCHARGED -8680,2023-07-11,15196.351837065124,350,Elective,2023-07-21,Inconclusive,8680,402,4,13,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8681,2023-01-24,5101.94671881426,223,Emergency,2023-01-26,Abnormal,8681,406,2,10,,,,DISCHARGED -8682,2019-11-23,43449.65348962339,135,Urgent,2019-11-27,Normal,8682,210,4,5,,,,DISCHARGED -8683,2021-07-01,45706.98479115704,270,Emergency,2021-07-11,Inconclusive,8683,24,1,15,,,,DISCHARGED -8684,2021-09-10,27895.20904586642,262,Urgent,2021-10-10,Inconclusive,8684,15,4,22,,,,DISCHARGED -8685,2021-09-18,38752.27169096681,267,Emergency,2021-09-25,Normal,8685,181,0,24,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -8686,2019-11-07,39688.13603084733,497,Emergency,2019-12-07,Normal,8686,498,2,21,,,,DISCHARGED -8687,2020-06-09,40786.13191735392,148,Emergency,2020-06-20,Inconclusive,8687,328,2,24,,,,DISCHARGED -8688,2023-02-19,29275.64954629657,440,Urgent,2023-03-07,Inconclusive,8688,128,0,14,,,,DISCHARGED -8689,2021-04-27,45653.76071716618,485,Emergency,2021-04-28,Abnormal,8689,41,4,15,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8690,2021-11-12,7396.168131341648,436,Urgent,2021-11-24,Inconclusive,8690,402,0,12,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8691,2023-06-06,27764.172527570543,140,Elective,2023-07-02,Abnormal,8691,480,3,11,,,,DISCHARGED -8692,2021-07-12,1982.235228462564,230,Emergency,2021-07-14,Normal,8692,417,0,17,,,,DISCHARGED -8693,2023-01-07,28263.44703116675,346,Emergency,,Normal,8693,335,4,28,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",OPEN -8694,2021-01-18,28889.051684635797,404,Emergency,2021-01-26,Inconclusive,8694,235,0,17,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8695,2023-08-01,14496.099640500195,298,Elective,2023-08-07,Inconclusive,8695,359,1,13,,,,DISCHARGED -8696,2023-03-04,20373.09187901853,500,Elective,2023-03-31,Normal,8696,438,0,1,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8697,2021-07-03,15159.584795588327,320,Emergency,2021-07-14,Normal,8697,401,0,21,,,,DISCHARGED -8698,2022-04-14,40266.14823042958,184,Urgent,2022-05-09,Inconclusive,8698,33,4,1,,,,DISCHARGED -8699,2020-04-13,19836.922036712956,489,Emergency,2020-05-13,Abnormal,8699,344,3,2,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8700,2018-12-22,44240.08887997178,402,Emergency,2018-12-26,Inconclusive,8700,380,3,28,,,,DISCHARGED -8701,2022-12-22,6140.662283043372,456,Emergency,2023-01-17,Abnormal,8701,44,4,23,,,,DISCHARGED -8702,2020-08-14,39318.35814839982,445,Elective,2020-09-09,Abnormal,8702,133,4,7,,,,DISCHARGED -8703,2022-05-23,16542.84340877849,376,Urgent,2022-06-02,Normal,8703,20,4,10,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -8704,2019-08-12,20309.542732046142,383,Elective,2019-09-03,Abnormal,8704,121,1,11,,,,DISCHARGED -8705,2023-05-23,23574.01952169489,238,Urgent,2023-06-22,Abnormal,8705,69,2,3,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8706,2020-11-04,31217.055872418165,412,Elective,2020-11-25,Normal,8706,351,0,8,,,,DISCHARGED -8707,2023-07-11,2894.0332957492437,469,Elective,,Inconclusive,8707,360,4,23,,,,OPEN -8708,2021-12-09,15008.772519052927,229,Urgent,2021-12-21,Abnormal,8708,47,4,16,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -8709,2018-11-01,16215.102176726516,360,Urgent,2018-11-09,Normal,8709,490,4,23,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8710,2023-08-09,3767.521151136848,177,Urgent,2023-08-27,Inconclusive,8710,38,3,15,,,,DISCHARGED -8711,2021-02-26,9527.858942146975,133,Emergency,2021-03-19,Inconclusive,8711,286,4,16,,,,DISCHARGED -8712,2019-01-12,42521.87376027004,424,Elective,2019-01-18,Normal,8712,489,0,14,,,,DISCHARGED -8713,2021-10-05,26139.54314482733,182,Urgent,2021-10-11,Inconclusive,8713,9,4,19,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8714,2023-06-12,16173.15518604218,303,Elective,,Abnormal,8714,29,0,25,,,,OPEN -8716,2022-12-01,26513.982826153024,102,Emergency,2022-12-21,Normal,8716,243,1,21,,,,DISCHARGED -8717,2023-01-07,11627.89408350979,215,Elective,2023-01-10,Normal,8717,273,2,6,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8718,2018-11-24,20523.4776346566,305,Elective,2018-11-30,Abnormal,8718,443,3,9,,,,DISCHARGED -8719,2020-08-30,21608.95622541413,141,Emergency,2020-09-07,Normal,8719,87,0,28,,,,DISCHARGED -8720,2018-12-20,44176.79850181088,226,Elective,2019-01-15,Normal,8720,243,1,3,,,,DISCHARGED -8721,2022-01-21,8920.27933496386,316,Emergency,2022-01-30,Inconclusive,8721,380,2,23,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8722,2023-08-15,1848.4853746754584,286,Urgent,,Abnormal,8722,328,2,23,,,,OPEN -8723,2020-12-28,46979.65916959913,469,Elective,2021-01-07,Abnormal,8723,478,2,13,,,,DISCHARGED -8724,2020-05-28,11245.901145231675,216,Urgent,2020-06-24,Inconclusive,8724,14,0,13,,,,DISCHARGED -8725,2019-08-05,15531.442175944569,230,Elective,2019-08-24,Normal,8725,3,1,13,,,,DISCHARGED -8725,2023-08-18,9000.789173546491,270,Emergency,2023-09-13,Normal,9189,190,4,24,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8726,2020-06-03,21093.99854085436,491,Emergency,2020-06-19,Inconclusive,8726,167,1,13,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -8727,2021-12-25,37081.56196356824,394,Emergency,2022-01-07,Inconclusive,8727,8,1,21,,,,DISCHARGED -8728,2020-07-12,13131.378059604129,450,Emergency,2020-07-31,Inconclusive,8728,108,1,19,,,,DISCHARGED -8729,2020-05-08,21820.031775058625,480,Elective,2020-05-24,Normal,8729,136,0,17,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -8730,2019-10-18,34874.32472074103,230,Urgent,2019-11-11,Abnormal,8730,153,0,14,,,,DISCHARGED -8732,2022-03-13,23389.08489101608,117,Urgent,2022-04-02,Abnormal,8732,387,0,22,,,,DISCHARGED -8733,2020-08-11,21445.767332907104,247,Emergency,2020-09-07,Abnormal,8733,208,1,25,,,,DISCHARGED -8734,2023-09-23,22962.93609582673,175,Emergency,2023-10-15,Abnormal,8734,271,0,18,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8735,2020-09-11,36032.08127354367,406,Elective,2020-10-06,Abnormal,8735,142,2,26,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8736,2021-02-10,12858.556883054562,151,Emergency,2021-02-24,Normal,8736,98,0,12,,,,DISCHARGED -8737,2022-03-17,12294.397835012687,430,Emergency,2022-04-16,Abnormal,8737,376,3,11,,,,DISCHARGED -8738,2022-08-09,24257.760765731604,268,Urgent,2022-08-13,Inconclusive,8738,307,0,18,,,,DISCHARGED -8739,2021-02-16,20948.274451910405,191,Emergency,2021-03-17,Inconclusive,8739,68,0,18,,,,DISCHARGED -8740,2021-04-01,4934.618762681976,336,Emergency,2021-04-02,Abnormal,8740,246,0,19,,,,DISCHARGED -8741,2020-06-30,28388.147738741685,461,Elective,2020-07-20,Abnormal,8741,260,0,1,,,,DISCHARGED -8742,2020-12-19,23002.28270626964,388,Elective,2021-01-09,Abnormal,8742,275,3,28,,,,DISCHARGED -8743,2019-05-17,24020.733817810364,147,Elective,2019-05-25,Abnormal,8743,78,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8744,2019-04-05,40933.05843889134,103,Emergency,2019-04-28,Normal,8744,145,0,20,,,,DISCHARGED -8745,2023-08-24,45493.200610768174,166,Emergency,2023-09-03,Abnormal,8745,110,2,2,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -8746,2022-10-27,16480.561354994497,318,Emergency,2022-11-26,Abnormal,8746,257,3,9,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -8747,2019-03-16,19364.2925443635,303,Emergency,2019-03-19,Abnormal,8747,92,4,4,,,,DISCHARGED -8748,2022-09-23,15892.99606523397,481,Urgent,2022-10-02,Abnormal,8748,12,0,11,,,,DISCHARGED -8749,2021-02-25,5043.753604038759,366,Elective,2021-03-23,Normal,8749,259,4,28,,,,DISCHARGED -8750,2022-05-24,22064.396325319965,398,Urgent,2022-06-07,Normal,8750,425,2,6,,,,DISCHARGED -8751,2019-09-30,13091.472070393673,289,Elective,2019-10-08,Abnormal,8751,108,3,8,,,,DISCHARGED -8752,2019-12-26,28550.08016377527,456,Elective,2020-01-20,Abnormal,8752,329,3,1,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -8753,2021-05-21,42537.04768272656,459,Emergency,2021-05-27,Normal,8753,188,4,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8754,2019-08-05,28236.858927967056,382,Urgent,2019-08-13,Abnormal,8754,94,0,9,,,,DISCHARGED -8755,2023-10-29,46014.45365746004,343,Urgent,2023-11-12,Normal,8755,104,1,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -8756,2021-09-18,49379.47933534483,237,Urgent,2021-10-11,Abnormal,8756,7,3,11,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8757,2020-04-29,39616.85995851848,346,Elective,2020-05-14,Abnormal,8757,66,1,5,,,,DISCHARGED -8758,2022-06-29,15613.08711872064,358,Urgent,2022-07-29,Normal,8758,495,3,26,,,,DISCHARGED -8759,2020-03-04,19944.113700528887,178,Emergency,2020-03-29,Abnormal,8759,190,0,2,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8760,2021-12-10,21113.191415002315,108,Urgent,2021-12-12,Inconclusive,8760,365,0,29,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -8761,2021-11-13,11744.960012023532,372,Elective,2021-11-28,Inconclusive,8761,255,3,9,,,,DISCHARGED -8762,2023-09-26,9932.098150870052,371,Emergency,2023-10-23,Abnormal,8762,8,4,28,,,,DISCHARGED -8763,2019-03-12,20852.64898764576,489,Emergency,2019-04-07,Normal,8763,477,0,8,,,,DISCHARGED -8764,2020-09-20,19452.34354673211,119,Elective,2020-10-16,Normal,8764,116,0,19,,,,DISCHARGED -8765,2022-03-24,36635.80930655231,240,Elective,2022-04-07,Inconclusive,8765,266,2,4,,,,DISCHARGED -8766,2020-03-04,20662.848665624497,434,Emergency,2020-03-17,Abnormal,8766,98,0,2,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -8767,2023-07-21,42660.638251246295,127,Emergency,2023-08-04,Normal,8767,484,2,4,,,,DISCHARGED -8768,2020-01-19,20474.61252069474,114,Elective,2020-01-29,Normal,8768,297,0,7,,,,DISCHARGED -8769,2019-02-19,32365.593377994377,180,Elective,2019-03-14,Normal,8769,396,0,7,,,,DISCHARGED -8770,2023-02-16,36560.36485754349,155,Elective,2023-03-13,Inconclusive,8770,163,4,13,,,,DISCHARGED -8771,2019-10-28,32722.50671498724,479,Elective,2019-11-07,Normal,8771,375,4,23,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8773,2021-10-06,9147.755775366291,226,Emergency,2021-10-11,Abnormal,8773,140,0,21,,,,DISCHARGED -8774,2019-06-13,32543.39737643392,156,Elective,2019-06-20,Normal,8774,267,3,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -8775,2019-01-17,26899.292786988943,176,Elective,2019-01-24,Abnormal,8775,36,3,10,,,,DISCHARGED -8776,2022-03-24,22863.633180661105,368,Emergency,2022-03-28,Abnormal,8776,73,0,25,,,,DISCHARGED -8777,2021-02-06,2370.594240984364,196,Emergency,2021-02-19,Normal,8777,72,3,15,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8778,2022-05-23,31802.00918426117,272,Elective,2022-06-15,Normal,8778,307,0,27,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8779,2020-02-18,13120.256411533355,106,Urgent,2020-03-14,Normal,8779,198,4,5,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8780,2022-10-25,32086.237733317244,481,Elective,2022-11-14,Abnormal,8780,129,1,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -8781,2019-12-01,10243.532588127282,459,Elective,2019-12-17,Inconclusive,8781,245,2,10,,,,DISCHARGED -8782,2021-03-08,2932.650504559624,437,Urgent,2021-04-02,Inconclusive,8782,311,3,9,,,,DISCHARGED -8783,2021-07-02,20466.53538387883,177,Urgent,2021-07-23,Abnormal,8783,59,3,22,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -8785,2019-03-08,40219.59087107677,152,Elective,2019-03-14,Normal,8785,278,4,29,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8787,2020-09-30,31385.989006774293,459,Emergency,2020-10-08,Inconclusive,8787,102,3,8,,,,DISCHARGED -8788,2023-03-05,32694.66216524664,140,Emergency,,Abnormal,8788,295,0,27,,,,OPEN -8789,2018-12-04,49995.90228322116,196,Emergency,2018-12-11,Abnormal,8789,319,0,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -8790,2020-01-13,24549.336768721707,467,Emergency,2020-02-09,Inconclusive,8790,486,1,26,,,,DISCHARGED -8791,2021-01-03,25040.73209841201,354,Emergency,2021-01-23,Normal,8791,340,1,27,,,,DISCHARGED -8792,2019-10-30,32227.05152251872,382,Elective,2019-11-13,Abnormal,8792,150,1,23,,,,DISCHARGED -8794,2021-02-06,33631.463439198706,223,Elective,2021-02-13,Abnormal,8794,156,0,14,,,,DISCHARGED -8795,2020-11-01,37441.33469240476,140,Urgent,2020-11-08,Abnormal,8795,205,1,6,,,,DISCHARGED -8796,2022-08-03,22804.329661455173,365,Elective,2022-08-11,Abnormal,8796,473,1,17,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -8797,2022-11-16,29185.08007237015,235,Emergency,2022-12-01,Inconclusive,8797,178,0,0,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8798,2020-10-28,46947.169445363215,498,Urgent,2020-10-29,Inconclusive,8798,196,4,14,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -8799,2022-03-22,14007.12618191666,475,Urgent,2022-04-09,Abnormal,8799,222,3,1,,,,DISCHARGED -8800,2020-01-07,41396.865371356296,316,Urgent,2020-01-18,Abnormal,8800,88,2,21,,,,DISCHARGED -8801,2023-02-08,5992.242186031815,182,Elective,,Normal,8801,286,0,28,,,,OPEN -8802,2021-10-28,28071.733800422026,226,Elective,2021-11-08,Abnormal,8802,433,0,1,,,,DISCHARGED -8803,2019-12-29,17768.198240682097,147,Emergency,2020-01-11,Inconclusive,8803,275,2,9,,,,DISCHARGED -8804,2019-06-28,1421.173737697727,142,Emergency,2019-07-20,Normal,8804,235,2,19,,,,DISCHARGED -8805,2021-11-29,39779.32591852544,129,Emergency,2021-12-01,Abnormal,8805,182,1,14,,,,DISCHARGED -8806,2021-01-03,29144.16909817545,180,Elective,2021-01-08,Inconclusive,8806,208,2,9,,,,DISCHARGED -8807,2021-07-09,33255.59064938876,490,Emergency,2021-07-24,Normal,8807,492,3,18,,,,DISCHARGED -8808,2023-02-01,23867.496630199785,155,Emergency,2023-02-06,Normal,8808,129,3,21,,,,DISCHARGED -8809,2020-09-19,18902.43155787442,408,Urgent,2020-10-10,Normal,8809,152,3,27,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -8810,2021-04-15,23071.51048687228,201,Emergency,2021-05-09,Abnormal,8810,12,3,27,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8811,2019-02-09,17563.329851257087,321,Urgent,2019-02-23,Normal,8811,121,3,12,,,,DISCHARGED -8813,2023-01-06,42259.15488087408,438,Emergency,2023-01-30,Abnormal,8813,358,1,29,,,,DISCHARGED -8814,2020-12-14,46972.341781159244,148,Elective,2021-01-05,Normal,8814,219,0,23,,,,DISCHARGED -8816,2020-01-14,23128.816875445504,482,Emergency,2020-01-19,Normal,8816,105,2,10,,,,DISCHARGED -8817,2023-04-22,44314.40754519525,478,Elective,,Normal,8817,374,0,21,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),OPEN -8818,2019-09-12,1207.38153187721,460,Emergency,2019-10-02,Normal,8818,69,2,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -8819,2020-12-15,32098.891980889173,334,Elective,2020-12-31,Inconclusive,8819,194,1,20,,,,DISCHARGED -8821,2020-01-28,10149.9279737987,395,Emergency,2020-02-06,Normal,8821,185,1,26,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8822,2022-06-10,38305.1269067513,428,Elective,2022-06-27,Normal,8822,98,4,12,,,,DISCHARGED -8823,2022-11-15,36158.41247639777,494,Elective,2022-12-15,Inconclusive,8823,81,4,21,,,,DISCHARGED -8824,2022-10-25,45240.42667200669,212,Elective,2022-11-24,Inconclusive,8824,74,1,24,,,,DISCHARGED -8825,2021-08-21,3446.7423231202984,301,Emergency,2021-09-13,Inconclusive,8825,373,1,21,,,,DISCHARGED -8826,2023-03-25,44771.17436831207,437,Elective,2023-04-11,Abnormal,8826,339,2,25,,,,DISCHARGED -8827,2019-01-18,31620.93575294441,135,Elective,2019-02-07,Inconclusive,8827,191,1,20,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8828,2021-10-25,18258.212595218567,488,Urgent,2021-11-12,Abnormal,8828,324,0,0,,,,DISCHARGED -8830,2020-05-18,46086.262768810186,388,Urgent,2020-06-13,Abnormal,8830,466,2,25,,,,DISCHARGED -8831,2021-07-07,15030.203473365353,380,Elective,2021-07-25,Abnormal,8831,213,1,4,,,,DISCHARGED -8832,2022-06-22,34096.99120017301,420,Emergency,2022-06-28,Abnormal,8832,314,2,20,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8833,2022-03-03,1648.6815797705244,304,Elective,2022-03-06,Abnormal,8833,443,2,21,,,,DISCHARGED -8834,2022-08-12,17437.233275508286,135,Urgent,2022-09-07,Abnormal,8834,466,3,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8835,2021-11-03,21597.844402057253,185,Urgent,2021-11-15,Abnormal,8835,381,4,12,,,,DISCHARGED -8836,2021-01-23,21970.20890031881,344,Emergency,2021-02-02,Normal,8836,366,2,12,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8838,2021-12-30,38143.40974201474,212,Emergency,2022-01-21,Inconclusive,8838,317,2,19,,,,DISCHARGED -8839,2020-12-07,26938.24038777928,111,Urgent,2021-01-04,Normal,8839,143,3,22,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -8840,2018-12-29,33250.43652797085,203,Emergency,2019-01-12,Inconclusive,8840,383,1,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -8842,2023-09-12,1057.0173328013211,417,Elective,2023-09-13,Normal,8842,215,2,5,,,,DISCHARGED -8843,2018-12-09,21290.5516115989,487,Elective,2018-12-23,Abnormal,8843,360,3,19,,,,DISCHARGED -8844,2018-12-15,34894.74191223091,138,Urgent,2018-12-19,Normal,8844,323,0,11,,,,DISCHARGED -8845,2022-10-31,35752.34683154368,128,Emergency,2022-11-02,Abnormal,8845,14,3,7,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8847,2022-09-11,48512.20574926701,271,Urgent,2022-10-08,Abnormal,8847,216,4,8,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -8848,2019-08-15,4221.521414111998,474,Emergency,2019-09-02,Inconclusive,8848,491,4,17,,,,DISCHARGED -8849,2021-08-12,45622.74088808528,127,Emergency,2021-08-18,Normal,8849,438,1,27,,,,DISCHARGED -8850,2019-07-19,21415.300355684216,300,Urgent,2019-07-29,Normal,8850,34,1,10,,,,DISCHARGED -8851,2022-12-05,37088.86760765881,182,Emergency,2022-12-17,Normal,8851,182,4,19,,,,DISCHARGED -8852,2021-11-16,42332.96341216854,173,Urgent,2021-11-22,Inconclusive,8852,269,4,10,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8853,2019-05-17,15554.63780928277,321,Elective,2019-06-05,Inconclusive,8853,432,2,23,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8854,2018-10-31,16342.647401791084,132,Emergency,2018-11-09,Normal,8854,466,4,23,,,,DISCHARGED -8855,2023-01-06,49793.61481604037,124,Emergency,,Normal,8855,357,1,14,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -8856,2020-03-11,22695.255248953174,259,Elective,2020-03-26,Normal,8856,99,4,8,,,,DISCHARGED -8857,2022-09-30,1205.0023448830134,401,Urgent,2022-10-23,Abnormal,8857,6,1,2,,,,DISCHARGED -8858,2022-03-27,27851.90957688142,376,Emergency,2022-04-14,Abnormal,8858,29,0,16,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -8859,2022-07-03,4776.335565785606,492,Emergency,2022-08-02,Inconclusive,8859,466,4,24,,,,DISCHARGED -8860,2019-07-30,34345.20255806178,427,Emergency,2019-08-14,Abnormal,8860,304,1,16,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8861,2020-05-05,46053.18340586411,169,Elective,2020-05-08,Normal,8861,472,3,2,,,,DISCHARGED -8862,2021-05-16,44332.88342638182,464,Elective,2021-05-26,Abnormal,8862,143,2,18,,,,DISCHARGED -8863,2022-10-16,36239.18123326368,470,Emergency,2022-10-24,Abnormal,8863,110,1,8,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8864,2021-07-27,8158.801358616851,302,Elective,2021-08-12,Normal,8864,231,4,16,,,,DISCHARGED -8865,2019-07-27,19640.21974211076,278,Elective,2019-08-26,Inconclusive,8865,178,4,22,,,,DISCHARGED -8866,2021-02-06,22270.216813227325,277,Urgent,2021-02-19,Normal,8866,71,0,17,,,,DISCHARGED -8867,2018-11-30,12722.916124155116,325,Elective,2018-12-01,Normal,8867,209,3,22,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8868,2020-06-14,28704.598234273,334,Emergency,2020-06-22,Normal,8868,219,1,14,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -8869,2020-11-02,13297.978057229811,212,Elective,2020-11-29,Inconclusive,8869,79,3,0,,,,DISCHARGED -8870,2020-10-16,39010.69256403665,389,Urgent,2020-11-01,Inconclusive,8870,499,0,28,,,,DISCHARGED -8871,2020-10-06,29714.10632345313,408,Emergency,2020-10-10,Abnormal,8871,82,2,25,,,,DISCHARGED -8872,2020-07-07,36090.2835690568,371,Elective,2020-07-19,Inconclusive,8872,41,3,9,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -8873,2020-10-22,17107.55128020529,370,Emergency,2020-11-02,Inconclusive,8873,272,0,7,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -8874,2020-06-08,22361.075098493384,121,Elective,2020-06-20,Normal,8874,190,1,9,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8875,2021-07-23,44852.06205789174,180,Elective,2021-08-08,Normal,8875,172,2,28,,,,DISCHARGED -8876,2023-07-15,8234.347136322793,262,Urgent,2023-07-19,Inconclusive,8876,460,4,25,,,,DISCHARGED -8877,2020-11-06,26891.698187647817,407,Elective,2020-11-19,Inconclusive,8877,6,0,1,,,,DISCHARGED -8878,2019-03-15,16118.464519963878,469,Emergency,2019-03-22,Inconclusive,8878,154,4,18,,,,DISCHARGED -8879,2020-11-01,16768.88958616399,458,Urgent,2020-11-05,Abnormal,8879,9,2,13,,,,DISCHARGED -8880,2023-06-26,19440.15245480085,110,Emergency,2023-07-26,Abnormal,8880,33,0,7,,,,DISCHARGED -8881,2023-07-20,45196.07955763424,190,Urgent,2023-08-05,Normal,8881,35,0,18,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8882,2020-02-08,42604.69830355437,197,Elective,2020-02-21,Abnormal,8882,408,2,0,,,,DISCHARGED -8883,2019-05-09,23105.48964709527,131,Emergency,2019-05-12,Abnormal,8883,5,1,15,,,,DISCHARGED -8884,2023-08-12,34805.28914653571,360,Emergency,,Abnormal,8884,407,0,24,,,,OPEN -8885,2023-10-14,45477.06014120869,431,Urgent,,Normal,8885,401,2,23,,,,OPEN -8886,2022-01-06,40869.317220283774,492,Elective,2022-01-28,Inconclusive,8886,214,3,14,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -8887,2020-12-05,11299.29708560354,445,Urgent,2020-12-28,Inconclusive,8887,133,4,19,,,,DISCHARGED -8888,2022-02-08,36884.81221275551,214,Elective,2022-02-24,Inconclusive,8888,284,0,23,,,,DISCHARGED -8889,2022-06-26,10369.077866893536,110,Emergency,2022-07-07,Abnormal,8889,125,3,29,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -8890,2019-10-28,38231.915430776746,337,Emergency,2019-11-08,Normal,8890,408,0,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8891,2022-09-02,16917.90347100207,304,Urgent,2022-09-26,Abnormal,8891,438,1,2,,,,DISCHARGED -8892,2019-06-06,27717.00745236392,477,Urgent,2019-06-15,Abnormal,8892,336,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8893,2020-04-11,43211.09093660289,237,Elective,2020-04-22,Inconclusive,8893,173,0,28,,,,DISCHARGED -8895,2022-06-09,44509.26579540538,202,Emergency,2022-06-22,Inconclusive,8895,151,2,9,,,,DISCHARGED -8896,2023-10-12,33644.878187553724,366,Emergency,,Inconclusive,8896,330,0,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",OPEN -8897,2021-10-06,45339.75780168944,351,Emergency,2021-10-19,Normal,8897,25,1,10,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8898,2020-01-13,49505.17942694056,430,Emergency,2020-02-04,Inconclusive,8898,382,1,5,,,,DISCHARGED -8899,2023-10-11,46925.43295989384,354,Emergency,2023-10-15,Abnormal,8899,114,3,3,,,,DISCHARGED -8900,2021-12-07,42997.25850307118,394,Urgent,2021-12-18,Inconclusive,8900,381,1,6,,,,DISCHARGED -8901,2022-12-23,47905.59878064817,220,Emergency,2023-01-13,Normal,8901,481,2,18,,,,DISCHARGED -8902,2023-03-03,5607.5789234838085,296,Emergency,2023-03-11,Abnormal,8902,283,1,6,,,,DISCHARGED -8903,2019-06-29,41928.02935320205,132,Elective,2019-07-04,Normal,8903,386,0,13,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8904,2021-08-20,40919.77331102932,347,Emergency,2021-09-08,Abnormal,8904,74,1,16,,,,DISCHARGED -8905,2022-05-15,14885.39641630494,250,Elective,2022-06-12,Normal,8905,165,2,22,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8906,2021-02-25,5404.22659317914,283,Urgent,2021-03-23,Inconclusive,8906,188,0,16,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -8907,2019-01-15,45155.856245248986,418,Urgent,2019-01-22,Inconclusive,8907,77,3,12,,,,DISCHARGED -8908,2022-09-19,39256.51859257606,440,Urgent,2022-10-12,Abnormal,8908,434,3,26,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8909,2023-03-09,15720.767589225248,387,Urgent,2023-03-12,Inconclusive,8909,89,3,0,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8910,2020-07-31,39576.44156529724,338,Elective,2020-08-12,Abnormal,8910,175,0,1,,,,DISCHARGED -8911,2023-08-04,34993.850535433296,493,Urgent,2023-08-20,Inconclusive,8911,20,3,17,,,,DISCHARGED -8913,2020-09-30,37608.99728979994,295,Emergency,2020-10-20,Normal,8913,53,1,3,,,,DISCHARGED -8914,2020-05-06,32822.53860908498,132,Emergency,2020-06-03,Abnormal,8914,183,0,12,,,,DISCHARGED -8915,2021-04-28,29257.6185609011,255,Urgent,2021-05-09,Inconclusive,8915,358,0,0,,,,DISCHARGED -8916,2018-12-05,17633.18863917003,429,Elective,2018-12-18,Normal,8916,221,0,3,,,,DISCHARGED -8917,2019-01-07,8574.686543798145,442,Urgent,2019-02-02,Abnormal,8917,314,4,1,,,,DISCHARGED -8918,2023-04-26,6977.992688976139,449,Emergency,2023-05-14,Normal,8918,327,2,3,,,,DISCHARGED -8919,2019-01-15,25957.890155685956,457,Urgent,2019-01-21,Normal,8919,178,4,15,,,,DISCHARGED -8920,2020-10-14,6332.782405740347,490,Urgent,2020-10-24,Normal,8920,275,4,3,,,,DISCHARGED -8921,2022-01-07,47086.46889949201,358,Elective,2022-01-13,Inconclusive,8921,111,4,24,,,,DISCHARGED -8923,2023-10-05,16076.570488251871,200,Emergency,2023-10-13,Inconclusive,8923,223,2,8,,,,DISCHARGED -8924,2022-01-01,37180.65231316765,313,Emergency,2022-01-31,Abnormal,8924,213,4,16,,,,DISCHARGED -8925,2019-01-31,10184.754974590553,220,Elective,2019-02-03,Inconclusive,8925,58,3,20,,,,DISCHARGED -8926,2019-12-26,18195.180826518423,317,Elective,2020-01-20,Normal,8926,326,0,22,,,,DISCHARGED -8927,2019-08-22,38187.57621397792,231,Elective,2019-09-19,Abnormal,8927,392,0,19,,,,DISCHARGED -8928,2022-02-15,27449.29643590696,181,Urgent,2022-02-28,Abnormal,8928,108,1,27,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -8930,2023-10-09,25969.070628162943,476,Urgent,2023-10-22,Abnormal,8930,384,3,20,,,,DISCHARGED -8931,2020-04-29,18694.21190093016,223,Emergency,2020-05-25,Inconclusive,8931,156,2,1,,,,DISCHARGED -8932,2021-04-24,49289.85116757696,478,Emergency,2021-05-07,Abnormal,8932,190,0,2,,,,DISCHARGED -8933,2022-04-08,47926.65374072431,364,Urgent,2022-05-03,Abnormal,8933,199,4,22,,,,DISCHARGED -8934,2023-04-21,23986.89677398524,251,Urgent,,Inconclusive,8934,311,1,25,,,,OPEN -8935,2020-02-05,46020.76588294241,338,Elective,2020-02-16,Inconclusive,8935,195,1,28,,,,DISCHARGED -8936,2021-05-11,26981.63482085532,340,Emergency,2021-06-06,Normal,8936,34,0,14,,,,DISCHARGED -8937,2022-09-05,31318.46582945402,236,Emergency,2022-10-02,Abnormal,8937,378,3,6,,,,DISCHARGED -8938,2018-11-08,38453.1710640005,446,Urgent,2018-11-10,Inconclusive,8938,386,1,3,,,,DISCHARGED -8939,2022-04-01,41619.30247989572,266,Emergency,2022-04-08,Normal,8939,245,0,11,,,,DISCHARGED -8940,2022-09-19,45714.63357766769,268,Emergency,2022-10-13,Inconclusive,8940,236,3,0,,,,DISCHARGED -8941,2022-11-13,9757.978910490763,477,Urgent,2022-12-02,Inconclusive,8941,103,0,16,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -8943,2018-12-01,21578.28782841036,215,Emergency,2018-12-04,Inconclusive,8943,6,0,3,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8944,2021-04-04,27788.69446378368,451,Elective,2021-04-18,Abnormal,8944,282,3,3,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8945,2023-09-11,10237.928963854469,118,Emergency,,Inconclusive,8945,0,3,21,,,,OPEN -8946,2023-07-23,27513.435346467493,326,Urgent,,Inconclusive,8946,218,3,22,,,,OPEN -8947,2020-11-08,15255.912575103685,242,Emergency,2020-11-26,Inconclusive,8947,463,0,24,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -8948,2020-04-02,39339.96760241062,288,Elective,2020-04-25,Abnormal,8948,229,1,8,,,,DISCHARGED -8949,2022-05-04,1103.5589034954205,345,Emergency,2022-05-25,Abnormal,8949,454,2,25,,,,DISCHARGED -8950,2023-04-19,2979.550097229357,187,Urgent,2023-05-06,Inconclusive,8950,171,2,27,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -8951,2019-06-19,44909.60326566342,444,Elective,2019-07-15,Normal,8951,86,0,27,,,,DISCHARGED -8953,2019-07-13,37089.49028451794,331,Urgent,2019-08-04,Normal,8953,40,0,20,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -8954,2019-09-27,14580.828009319526,224,Emergency,2019-10-01,Normal,8954,122,1,9,,,,DISCHARGED -8956,2019-04-01,16523.342250811147,234,Urgent,2019-04-27,Inconclusive,8956,330,3,26,,,,DISCHARGED -8957,2018-11-23,2342.513870137612,420,Emergency,2018-12-20,Normal,8957,297,0,18,,,,DISCHARGED -8958,2020-05-03,12478.88755864046,168,Urgent,2020-06-02,Abnormal,8958,372,4,18,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8959,2021-02-15,25017.528171226066,118,Urgent,2021-02-21,Abnormal,8959,416,3,14,,,,DISCHARGED -8960,2022-11-05,39365.920372673965,442,Urgent,2022-11-19,Inconclusive,8960,177,0,21,,,,DISCHARGED -8961,2019-08-27,20784.89707187038,182,Urgent,2019-09-06,Normal,8961,62,4,16,,,,DISCHARGED -8962,2019-11-03,21031.4641980804,279,Emergency,2019-11-25,Normal,8962,483,1,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8963,2022-04-27,35444.10057011059,434,Emergency,2022-05-17,Abnormal,8963,164,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8965,2019-06-03,41283.04620658344,468,Elective,2019-07-02,Abnormal,8965,488,0,4,,,,DISCHARGED -8966,2023-10-30,35678.113133597435,107,Emergency,2023-11-24,Inconclusive,8966,186,2,15,,,,DISCHARGED -8967,2020-08-04,46000.95491087031,289,Urgent,2020-08-10,Normal,8967,382,0,22,,,,DISCHARGED -8970,2021-12-17,25656.66716619958,414,Emergency,2021-12-24,Abnormal,8970,208,2,6,,,,DISCHARGED -8971,2021-01-06,36841.18294071179,228,Elective,2021-01-21,Inconclusive,8971,226,1,15,,,,DISCHARGED -8972,2022-10-22,19075.959559934552,415,Elective,2022-11-04,Normal,8972,431,1,8,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -8973,2020-06-27,1068.4196591442185,438,Urgent,2020-07-03,Normal,8973,388,3,0,,,,DISCHARGED -8974,2021-05-03,40613.149785464346,126,Elective,2021-05-19,Inconclusive,8974,47,3,2,,,,DISCHARGED -8975,2018-11-03,25776.085524792627,428,Urgent,2018-11-21,Abnormal,8975,223,2,24,,,,DISCHARGED -8976,2021-03-04,44064.14569972938,376,Urgent,2021-03-06,Inconclusive,8976,2,2,7,,,,DISCHARGED -8977,2019-03-21,4628.516595170861,212,Emergency,2019-03-25,Normal,8977,371,1,17,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8978,2020-07-02,11316.038568230137,445,Urgent,2020-07-24,Normal,8978,174,4,23,,,,DISCHARGED -8979,2019-11-06,6891.492220774002,149,Elective,2019-11-24,Inconclusive,8979,445,2,23,,,,DISCHARGED -8980,2020-05-27,42373.154448485846,300,Urgent,2020-06-09,Inconclusive,8980,98,2,17,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -8981,2022-07-26,8930.375011807073,215,Urgent,2022-08-04,Abnormal,8981,115,4,23,,,,DISCHARGED -8983,2022-09-18,49180.3840908525,471,Elective,2022-10-13,Inconclusive,8983,269,3,18,,,,DISCHARGED -8984,2023-10-27,38860.183285570594,127,Elective,2023-11-24,Normal,8984,446,3,6,,,,DISCHARGED -8985,2019-07-13,14467.8201216075,237,Emergency,2019-08-01,Abnormal,8985,367,2,28,,,,DISCHARGED -8986,2023-08-14,10984.12294760183,338,Urgent,,Normal,8986,252,3,24,,,,OPEN -8987,2019-02-09,17204.34905232734,258,Urgent,2019-02-16,Normal,8987,316,3,19,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -8989,2021-10-04,31899.22464201341,500,Elective,2021-10-20,Inconclusive,8989,414,3,26,,,,DISCHARGED -8990,2019-07-29,20828.840333860324,174,Elective,2019-08-27,Abnormal,8990,94,1,5,,,,DISCHARGED -8991,2023-03-26,24170.86723812414,458,Urgent,,Normal,8991,272,0,24,,,,OPEN -8992,2020-11-16,47536.94054492415,354,Emergency,2020-11-18,Inconclusive,8992,379,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8993,2020-02-01,45778.730706115326,286,Urgent,2020-02-04,Normal,8993,23,2,10,,,,DISCHARGED -8994,2020-02-04,3024.2314154897304,292,Emergency,2020-02-21,Abnormal,8994,115,1,4,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8995,2023-08-14,13651.046437620967,285,Urgent,,Normal,8995,150,0,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8997,2020-05-19,45904.67994932743,171,Elective,2020-05-30,Inconclusive,8997,337,0,0,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -8998,2021-11-05,26586.927559572134,358,Urgent,2021-11-26,Abnormal,8998,49,1,18,,,,DISCHARGED -8999,2022-09-11,15702.215911687625,170,Elective,2022-09-17,Inconclusive,8999,205,4,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9001,2022-10-12,25216.236316628874,246,Elective,2022-10-28,Abnormal,9001,497,4,14,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -9002,2021-02-22,14059.115889418728,248,Emergency,2021-03-12,Inconclusive,9002,334,0,24,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9003,2022-05-08,29362.31441022983,347,Urgent,2022-05-14,Abnormal,9003,78,4,15,,,,DISCHARGED -9004,2020-09-06,15749.302925232005,221,Urgent,2020-10-02,Inconclusive,9004,69,4,2,,,,DISCHARGED -9005,2021-09-17,43393.65425095729,137,Elective,2021-10-03,Inconclusive,9005,26,4,10,,,,DISCHARGED -9006,2020-03-28,8766.898674793429,438,Elective,2020-04-23,Inconclusive,9006,270,0,10,,,,DISCHARGED -9007,2020-04-26,13777.319364682857,464,Elective,2020-05-20,Normal,9007,49,4,9,,,,DISCHARGED -9008,2019-08-09,12926.293857749148,186,Urgent,2019-09-01,Inconclusive,9008,291,2,1,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -9010,2020-04-22,40075.6639036937,299,Elective,2020-05-21,Normal,9010,246,0,19,,,,DISCHARGED -9011,2019-01-14,14805.486471993025,217,Elective,2019-02-13,Abnormal,9011,263,1,4,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -9012,2020-08-29,42216.44940298435,129,Elective,2020-09-28,Inconclusive,9012,78,4,22,,,,DISCHARGED -9013,2019-01-15,9110.661612663942,473,Elective,2019-01-21,Inconclusive,9013,386,3,22,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -9014,2021-10-11,6635.995533243206,391,Urgent,2021-11-06,Inconclusive,9014,189,0,24,,,,DISCHARGED -9015,2018-12-23,9725.55642941671,258,Urgent,2019-01-16,Normal,9015,46,1,28,,,,DISCHARGED -9016,2021-07-22,22499.5888991289,467,Urgent,2021-08-10,Inconclusive,9016,460,2,7,,,,DISCHARGED -9017,2020-03-07,47725.05935888982,479,Emergency,2020-03-25,Normal,9017,360,1,12,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9018,2019-09-06,45814.58180829432,276,Elective,2019-09-14,Normal,9018,353,4,14,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -9020,2021-06-05,6052.482315462576,237,Emergency,2021-06-25,Abnormal,9020,471,3,1,,,,DISCHARGED -9022,2019-05-31,5402.833460534351,410,Elective,2019-06-09,Abnormal,9022,487,4,11,,,,DISCHARGED -9023,2019-04-19,48779.537910585495,235,Elective,2019-05-18,Abnormal,9023,351,1,23,,,,DISCHARGED -9024,2021-03-30,47431.90570159217,472,Urgent,2021-04-17,Normal,9024,188,0,7,,,,DISCHARGED -9025,2019-07-14,4600.008462547212,108,Elective,2019-08-05,Inconclusive,9025,415,3,20,,,,DISCHARGED -9027,2021-05-17,1739.106108275013,222,Urgent,2021-06-16,Normal,9027,255,3,28,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9028,2020-12-24,34865.241658574785,398,Emergency,2021-01-12,Abnormal,9028,221,1,18,,,,DISCHARGED -9029,2019-04-11,23130.84142407352,245,Emergency,2019-04-14,Normal,9029,371,4,24,,,,DISCHARGED -9031,2019-01-02,20414.82208651168,210,Urgent,2019-01-31,Abnormal,9031,240,1,27,,,,DISCHARGED -9032,2019-01-31,41697.874001312906,458,Urgent,2019-03-02,Normal,9032,268,3,22,,,,DISCHARGED -9033,2019-01-08,48391.14147288998,295,Urgent,2019-01-13,Abnormal,9033,0,1,0,,,,DISCHARGED -9034,2022-05-02,41756.77426243366,337,Elective,2022-05-27,Inconclusive,9034,33,3,7,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9035,2020-08-05,13041.684990853948,280,Elective,2020-08-28,Normal,9035,445,4,9,,,,DISCHARGED -9036,2022-03-30,42964.941605907065,352,Elective,2022-04-21,Normal,9036,78,0,12,,,,DISCHARGED -9037,2019-01-29,11222.608729303662,318,Elective,2019-02-11,Normal,9037,235,0,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9039,2021-12-05,5585.951554729145,477,Urgent,2021-12-15,Abnormal,9039,333,1,21,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9040,2021-02-25,27505.07437219164,464,Urgent,2021-03-01,Abnormal,9040,376,3,8,,,,DISCHARGED -9041,2019-12-11,44867.8638072376,234,Elective,2019-12-12,Abnormal,9041,348,0,9,,,,DISCHARGED -9042,2022-02-27,41457.56377363006,105,Urgent,2022-03-05,Abnormal,9042,97,3,13,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9043,2020-12-20,43405.73356794137,257,Elective,2021-01-19,Inconclusive,9043,81,4,23,,,,DISCHARGED -9044,2023-04-10,42718.14619517718,135,Urgent,,Normal,9044,454,1,29,,,,OPEN -9045,2020-02-12,14688.627736285349,143,Emergency,2020-02-22,Inconclusive,9045,476,3,10,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -9046,2019-07-19,19994.69628873585,470,Urgent,2019-07-28,Abnormal,9046,414,1,13,,,,DISCHARGED -9047,2019-08-11,12083.688667707274,485,Elective,2019-09-06,Abnormal,9047,191,3,29,,,,DISCHARGED -9048,2022-03-02,44427.00578342563,180,Urgent,2022-03-21,Normal,9048,252,3,2,,,,DISCHARGED -9049,2019-09-17,40416.1045034484,357,Urgent,2019-10-07,Inconclusive,9049,408,4,28,,,,DISCHARGED -9050,2020-07-03,37843.55399166356,120,Urgent,2020-07-04,Inconclusive,9050,37,1,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9051,2021-07-18,44415.90473238212,178,Elective,2021-07-29,Abnormal,9051,13,2,15,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9052,2021-05-16,26578.871163079235,228,Emergency,2021-05-23,Normal,9052,391,3,19,,,,DISCHARGED -9053,2020-01-14,8114.22304823118,293,Emergency,2020-02-03,Inconclusive,9053,346,3,29,,,,DISCHARGED -9054,2019-12-30,30015.78133206465,198,Elective,2020-01-19,Normal,9054,309,0,16,,,,DISCHARGED -9055,2021-05-16,36560.71526928349,301,Emergency,2021-06-01,Inconclusive,9055,385,1,4,,,,DISCHARGED -9056,2021-03-06,13414.902698189984,259,Emergency,2021-03-20,Abnormal,9056,208,2,25,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -9057,2019-01-09,33745.52133752985,302,Emergency,2019-01-19,Abnormal,9057,356,4,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9058,2020-01-01,37448.58950307509,351,Urgent,2020-01-11,Inconclusive,9058,461,2,16,,,,DISCHARGED -9059,2022-03-13,41365.99900053181,436,Emergency,2022-03-20,Abnormal,9059,88,4,19,,,,DISCHARGED -9060,2019-03-04,20613.58693324452,495,Elective,2019-03-06,Normal,9060,55,2,21,,,,DISCHARGED -9061,2023-08-27,20051.093613361045,148,Urgent,2023-09-04,Normal,9061,93,2,10,,,,DISCHARGED -9062,2023-02-03,9318.109792301088,149,Elective,2023-02-15,Abnormal,9062,92,1,11,,,,DISCHARGED -9063,2023-01-20,14688.05525672029,455,Elective,2023-02-07,Abnormal,9063,339,0,24,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9064,2023-10-19,42913.03552456971,269,Emergency,2023-10-27,Inconclusive,9064,84,2,26,,,,DISCHARGED -9065,2023-09-08,1811.5322525903173,447,Elective,2023-09-20,Abnormal,9065,444,3,23,,,,DISCHARGED -9066,2022-12-24,34238.72727724299,280,Emergency,2023-01-17,Inconclusive,9066,244,3,1,,,,DISCHARGED -9067,2020-09-30,40647.756070176656,407,Elective,2020-10-10,Inconclusive,9067,21,3,26,,,,DISCHARGED -9069,2019-08-08,29235.717758505325,121,Emergency,2019-08-16,Abnormal,9069,290,0,18,,,,DISCHARGED -9070,2020-07-13,19300.80935426816,370,Emergency,2020-07-16,Abnormal,9070,484,2,25,,,,DISCHARGED -9071,2020-01-21,7622.071570457409,224,Elective,2020-02-17,Abnormal,9071,271,4,28,,,,DISCHARGED -9073,2021-09-03,24704.99934384552,264,Emergency,2021-09-29,Normal,9073,305,4,4,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -9074,2020-07-15,28072.3500940625,262,Elective,2020-07-21,Inconclusive,9074,121,1,10,,,,DISCHARGED -9075,2019-03-20,8156.966032298364,452,Emergency,2019-04-06,Inconclusive,9075,127,0,22,,,,DISCHARGED -9076,2022-12-03,45387.88189075296,179,Urgent,2022-12-08,Inconclusive,9076,112,2,18,,,,DISCHARGED -9077,2020-08-05,38174.646162379686,146,Emergency,2020-08-23,Normal,9077,426,3,27,,,,DISCHARGED -9078,2023-10-30,11566.110209267605,409,Urgent,2023-11-03,Abnormal,9078,272,0,6,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -9079,2022-10-24,20677.59158730373,271,Emergency,2022-10-26,Inconclusive,9079,335,0,20,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9080,2022-02-27,28577.12688175262,483,Elective,2022-03-21,Normal,9080,441,2,25,,,,DISCHARGED -9081,2022-06-26,9158.547203367772,195,Elective,2022-07-17,Abnormal,9081,129,1,21,,,,DISCHARGED -9082,2019-08-06,19497.1185288297,153,Emergency,2019-08-23,Inconclusive,9082,131,1,5,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9083,2023-05-11,28022.26742703769,426,Urgent,,Abnormal,9083,84,1,10,,,,OPEN -9084,2020-09-23,31184.880606871666,385,Emergency,2020-09-30,Normal,9084,422,3,26,,,,DISCHARGED -9085,2019-06-02,27108.26641112268,241,Elective,2019-06-21,Abnormal,9085,481,3,13,,,,DISCHARGED -9086,2020-01-04,15921.235407007502,230,Emergency,2020-01-15,Normal,9086,349,2,27,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -9087,2021-08-16,32916.66277012341,122,Urgent,2021-09-10,Abnormal,9087,389,1,3,,,,DISCHARGED -9088,2019-12-18,38890.94391235366,333,Emergency,2020-01-15,Inconclusive,9088,80,2,27,,,,DISCHARGED -9090,2023-02-05,6723.376785837038,368,Emergency,2023-02-18,Normal,9090,486,1,7,,,,DISCHARGED -9091,2021-12-22,32553.871186127188,459,Urgent,2022-01-18,Inconclusive,9091,472,0,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9092,2022-01-07,14114.800108453635,295,Elective,2022-01-18,Normal,9092,324,4,1,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -9093,2020-10-09,38708.22762271941,166,Emergency,2020-10-13,Inconclusive,9093,68,4,24,,,,DISCHARGED -9094,2020-11-08,47121.86592697616,137,Emergency,2020-11-09,Abnormal,9094,147,1,10,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9095,2019-12-19,11554.0692389646,412,Elective,2019-12-24,Normal,9095,447,2,27,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9096,2022-03-12,6095.279708524971,129,Urgent,2022-03-20,Abnormal,9096,15,3,19,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -9097,2021-11-09,1540.0041442287657,145,Elective,2021-11-20,Abnormal,9097,306,1,21,,,,DISCHARGED -9098,2020-01-04,32508.75338095534,151,Urgent,2020-01-07,Inconclusive,9098,104,1,29,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9099,2022-08-30,6870.61826161369,145,Elective,2022-09-29,Inconclusive,9099,164,3,6,,,,DISCHARGED -9100,2019-01-21,38855.98088303855,478,Elective,2019-01-28,Normal,9100,487,1,3,,,,DISCHARGED -9101,2023-01-24,37962.27052585737,141,Emergency,2023-02-11,Inconclusive,9101,200,0,23,,,,DISCHARGED -9102,2021-10-02,39286.80404588618,347,Urgent,2021-10-22,Inconclusive,9102,196,3,28,,,,DISCHARGED -9103,2023-03-15,29654.08826834418,158,Urgent,2023-03-24,Abnormal,9103,425,0,13,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9104,2019-12-30,31300.28518632404,156,Elective,2020-01-26,Abnormal,9104,184,4,25,,,,DISCHARGED -9105,2022-02-19,3919.8757597064746,428,Elective,2022-02-20,Normal,9105,321,3,23,,,,DISCHARGED -9106,2022-12-29,28406.254402941053,266,Emergency,2023-01-17,Inconclusive,9106,264,3,0,,,,DISCHARGED -9107,2021-02-23,16912.606878360537,273,Emergency,2021-02-26,Inconclusive,9107,362,2,23,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9108,2022-03-12,17293.558492254306,471,Urgent,2022-04-05,Inconclusive,9108,99,2,25,,,,DISCHARGED -9109,2020-05-08,19440.584963511104,147,Emergency,2020-05-18,Normal,9109,341,3,29,,,,DISCHARGED -9111,2023-09-16,1636.173851281305,144,Elective,2023-09-28,Normal,9111,319,4,11,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -9113,2020-01-28,45709.62795360011,414,Emergency,2020-02-06,Normal,9113,213,1,18,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9114,2023-09-15,39668.90185316746,172,Elective,2023-10-10,Inconclusive,9114,277,2,4,,,,DISCHARGED -9115,2020-05-05,1880.322966540844,384,Urgent,2020-05-31,Abnormal,9115,161,4,29,,,,DISCHARGED -9116,2020-04-30,49136.017199237045,232,Emergency,2020-05-05,Inconclusive,9116,438,4,25,,,,DISCHARGED -9117,2022-10-30,18484.01112658948,240,Elective,2022-11-07,Normal,9117,156,2,7,,,,DISCHARGED -9119,2022-12-26,11421.4245875114,350,Urgent,2023-01-11,Inconclusive,9119,421,1,10,,,,DISCHARGED -9120,2023-08-03,43819.890745822966,419,Elective,2023-08-29,Abnormal,9120,250,2,21,,,,DISCHARGED -9121,2021-05-05,33593.18577373371,425,Emergency,2021-05-18,Normal,9121,365,4,3,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9122,2022-07-10,14213.243831598911,126,Elective,2022-07-15,Normal,9122,96,0,14,,,,DISCHARGED -9123,2022-12-26,30845.43076070712,207,Elective,2023-01-14,Abnormal,9123,17,2,19,,,,DISCHARGED -9124,2021-08-10,3962.8255015053296,331,Urgent,2021-08-30,Inconclusive,9124,326,4,11,,,,DISCHARGED -9125,2018-12-18,41428.57399137461,292,Elective,2018-12-21,Normal,9125,448,2,19,,,,DISCHARGED -9126,2023-09-04,28087.521955188604,200,Elective,,Normal,9126,382,4,21,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",OPEN -9127,2019-04-29,6795.909152097385,155,Elective,2019-05-12,Inconclusive,9127,96,1,22,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9128,2022-04-27,26105.81430282644,123,Urgent,2022-05-05,Inconclusive,9128,0,4,28,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9129,2020-01-14,23861.395863975704,307,Emergency,2020-01-29,Abnormal,9129,215,3,20,,,,DISCHARGED -9130,2022-04-01,46894.36288157077,395,Emergency,2022-04-10,Inconclusive,9130,131,0,9,,,,DISCHARGED -9131,2022-10-15,32665.798488631368,161,Elective,2022-10-30,Normal,9131,259,4,29,,,,DISCHARGED -9132,2022-09-05,8021.494408912946,401,Urgent,2022-09-20,Normal,9132,124,2,23,,,,DISCHARGED -9133,2023-07-10,10153.685752398243,495,Emergency,2023-07-13,Abnormal,9133,81,2,15,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9134,2019-09-19,35046.63257233002,391,Elective,2019-10-13,Inconclusive,9134,282,4,22,,,,DISCHARGED -9135,2023-05-26,32647.80942820762,348,Urgent,2023-06-07,Abnormal,9135,170,3,7,,,,DISCHARGED -9136,2020-05-18,22610.8375483538,357,Elective,2020-05-22,Abnormal,9136,58,4,19,,,,DISCHARGED -9137,2020-08-16,48790.5976304974,307,Urgent,2020-08-26,Normal,9137,31,1,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -9138,2020-01-06,31867.740481754296,140,Urgent,2020-01-22,Inconclusive,9138,160,3,28,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9139,2023-10-27,11306.550792601443,110,Urgent,2023-11-18,Abnormal,9139,283,4,5,,,,DISCHARGED -9140,2020-12-26,30646.709999666367,194,Emergency,2021-01-09,Abnormal,9140,105,0,2,,,,DISCHARGED -9141,2019-07-23,31593.6860575208,417,Elective,2019-08-12,Normal,9141,104,3,28,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9142,2022-07-14,30117.14651273541,160,Emergency,2022-08-01,Inconclusive,9142,438,4,7,,,,DISCHARGED -9143,2022-01-19,40893.66789528081,281,Emergency,2022-02-13,Abnormal,9143,227,0,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9144,2023-01-02,12707.296002540905,321,Urgent,,Abnormal,9144,187,4,22,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",OPEN -9145,2020-05-10,43962.38794955955,316,Elective,2020-06-04,Abnormal,9145,69,1,9,,,,DISCHARGED -9146,2020-01-19,23492.26290128188,484,Urgent,2020-02-14,Normal,9146,317,2,4,,,,DISCHARGED -9147,2020-06-02,46174.22599965044,275,Emergency,2020-06-13,Abnormal,9147,463,4,10,,,,DISCHARGED -9148,2021-08-07,14429.22163061138,378,Urgent,2021-08-13,Abnormal,9148,289,3,3,,,,DISCHARGED -9149,2020-05-06,24056.935522750093,471,Elective,2020-06-04,Inconclusive,9149,86,4,16,,,,DISCHARGED -9150,2019-01-21,44002.48718363696,271,Elective,2019-02-06,Normal,9150,369,4,25,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9151,2020-05-08,47390.49293494775,461,Emergency,2020-05-24,Abnormal,9151,361,4,2,,,,DISCHARGED -9152,2020-10-24,6691.812759987741,291,Emergency,2020-11-19,Inconclusive,9152,471,4,17,,,,DISCHARGED -9153,2022-08-01,37015.50889465102,193,Urgent,2022-08-12,Inconclusive,9153,55,3,7,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9154,2019-01-30,45946.51214299432,370,Urgent,2019-02-07,Inconclusive,9154,112,3,29,,,,DISCHARGED -9155,2020-07-19,28445.73494624793,239,Emergency,2020-07-22,Abnormal,9155,12,4,23,,,,DISCHARGED -9156,2022-02-16,4090.581059082534,266,Elective,2022-03-09,Inconclusive,9156,439,2,11,,,,DISCHARGED -9157,2022-12-09,33388.53859236135,310,Elective,2022-12-27,Inconclusive,9157,17,4,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9158,2020-10-10,42680.12977919788,264,Emergency,2020-10-11,Normal,9158,181,3,15,,,,DISCHARGED -9159,2022-05-19,25301.234037396716,267,Urgent,2022-05-25,Abnormal,9159,460,1,13,,,,DISCHARGED -9161,2019-04-26,24260.336634343654,254,Urgent,2019-05-07,Inconclusive,9161,112,4,20,,,,DISCHARGED -9162,2023-04-01,31811.795148321813,185,Elective,,Normal,9162,228,4,15,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,OPEN -9164,2021-05-03,45060.35200754853,453,Urgent,2021-05-20,Normal,9164,170,4,26,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9165,2022-08-06,34216.25761307277,253,Elective,2022-08-20,Abnormal,9165,294,4,3,,,,DISCHARGED -9166,2023-07-05,47306.08356532561,346,Emergency,2023-07-31,Inconclusive,9166,188,0,0,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9167,2022-10-01,39659.8386443888,181,Elective,2022-10-17,Abnormal,9167,425,4,0,,,,DISCHARGED -9168,2023-01-26,1032.6402799537905,435,Emergency,2023-02-13,Abnormal,9168,464,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9169,2021-12-26,1497.440621496697,489,Elective,2022-01-19,Inconclusive,9169,78,3,21,,,,DISCHARGED -9170,2021-05-06,13067.426497220697,452,Urgent,2021-05-14,Abnormal,9170,145,0,14,,,,DISCHARGED -9171,2021-08-13,12533.814445348706,347,Elective,2021-09-09,Normal,9171,406,4,19,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9172,2021-07-02,40389.991448140885,305,Elective,2021-07-09,Inconclusive,9172,181,2,19,,,,DISCHARGED -9173,2022-06-08,18806.551321118328,362,Urgent,2022-06-09,Normal,9173,498,4,2,,,,DISCHARGED -9176,2023-04-23,37147.200363707,399,Emergency,,Normal,9176,285,3,13,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -9177,2023-07-06,13732.020872628313,239,Emergency,2023-07-18,Normal,9177,249,1,8,,,,DISCHARGED -9178,2020-09-09,6473.06041160084,236,Urgent,2020-10-09,Normal,9178,353,1,18,,,,DISCHARGED -9179,2019-02-06,20591.37548132204,496,Urgent,2019-02-24,Abnormal,9179,313,2,7,,,,DISCHARGED -9180,2019-03-22,19699.639448510745,366,Emergency,2019-04-10,Inconclusive,9180,195,4,1,,,,DISCHARGED -9181,2018-12-05,40051.3889055392,349,Elective,2018-12-22,Abnormal,9181,322,0,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -9182,2020-01-07,23341.601693308086,125,Elective,2020-01-25,Abnormal,9182,70,4,0,,,,DISCHARGED -9183,2020-04-09,36187.796011793485,295,Urgent,2020-05-06,Abnormal,9183,247,2,10,,,,DISCHARGED -9184,2020-12-14,17809.366508878404,313,Emergency,2020-12-23,Normal,9184,145,2,4,,,,DISCHARGED -9185,2022-07-28,39649.465913420114,113,Elective,2022-08-09,Normal,9185,105,2,1,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",DISCHARGED -9186,2021-11-30,17758.48286453917,464,Urgent,2021-12-23,Inconclusive,9186,262,1,26,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9187,2021-12-17,31630.19317380787,248,Elective,2021-12-20,Normal,9187,295,4,12,,,,DISCHARGED -9188,2019-11-15,18519.21312014216,410,Emergency,2019-12-15,Normal,9188,69,4,16,,,,DISCHARGED -9190,2022-01-01,35644.04666024292,469,Elective,2022-01-10,Abnormal,9190,469,0,16,,,,DISCHARGED -9191,2022-07-10,3043.838664053392,232,Emergency,2022-07-22,Normal,9191,192,2,17,,,,DISCHARGED -9192,2023-09-02,28812.1329791255,467,Emergency,2023-09-20,Normal,9192,67,2,20,,,,DISCHARGED -9194,2021-01-25,32768.46758967712,266,Urgent,2021-02-12,Abnormal,9194,493,3,27,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9195,2021-11-06,27916.00787108927,104,Emergency,2021-11-07,Normal,9195,304,3,8,,,,DISCHARGED -9196,2022-02-18,22474.98793606993,133,Emergency,2022-03-06,Inconclusive,9196,51,1,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9197,2022-09-28,43030.7212216746,339,Emergency,2022-10-12,Normal,9197,369,4,27,,,,DISCHARGED -9198,2021-11-03,7065.089630541504,348,Emergency,2021-12-03,Normal,9198,362,0,19,,,,DISCHARGED -9199,2022-09-29,11936.925147111628,355,Emergency,2022-10-08,Abnormal,9199,284,0,2,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -9200,2019-07-24,38494.16460678756,416,Emergency,2019-08-13,Abnormal,9200,404,2,7,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9201,2021-08-12,20649.82852327101,150,Urgent,2021-08-28,Normal,9201,473,0,2,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -9203,2022-11-22,18810.1634733766,500,Urgent,2022-11-26,Inconclusive,9203,333,2,0,,,,DISCHARGED -9204,2023-05-25,40109.3980092654,450,Elective,2023-05-27,Normal,9204,8,4,19,,,,DISCHARGED -9205,2021-12-25,26442.436843884712,276,Emergency,2022-01-14,Abnormal,9205,250,0,26,,,,DISCHARGED -9206,2022-03-05,26277.13785238277,244,Emergency,2022-03-07,Inconclusive,9206,430,2,12,,,,DISCHARGED -9207,2023-07-15,33692.742282837906,112,Emergency,2023-07-18,Inconclusive,9207,331,4,20,,,,DISCHARGED -9208,2023-01-08,17786.095130184985,122,Urgent,,Normal,9208,297,4,4,,,,OPEN -9209,2019-02-05,33846.15076436708,248,Elective,2019-02-17,Abnormal,9209,434,2,15,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9210,2021-05-27,38276.2385915472,313,Elective,2021-06-08,Inconclusive,9210,183,2,20,,,,DISCHARGED -9211,2020-05-18,5416.551710982865,314,Elective,2020-06-11,Abnormal,9211,178,1,23,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9213,2022-06-10,19405.74377833543,269,Emergency,2022-07-06,Abnormal,9213,197,4,15,,,,DISCHARGED -9215,2019-03-20,10706.034589100109,136,Emergency,2019-04-17,Normal,9215,127,2,23,,,,DISCHARGED -9216,2019-07-15,28900.61587404047,292,Elective,2019-07-23,Abnormal,9216,19,4,11,,,,DISCHARGED -9217,2023-06-09,45920.88391953048,144,Elective,2023-07-06,Abnormal,9217,471,0,12,,,,DISCHARGED -9218,2022-11-26,25881.00320533265,146,Emergency,2022-12-17,Inconclusive,9218,410,3,3,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9219,2020-10-02,11079.52216643536,271,Urgent,2020-10-30,Abnormal,9219,421,3,8,,,,DISCHARGED -9220,2022-09-20,41310.60455345712,219,Urgent,2022-09-26,Normal,9220,327,2,15,,,,DISCHARGED -9221,2022-10-03,47097.00310462988,246,Elective,2022-10-18,Abnormal,9221,64,2,0,,,,DISCHARGED -9222,2019-05-18,14677.465308173922,150,Elective,2019-06-16,Inconclusive,9222,181,4,4,,,,DISCHARGED -9223,2020-03-24,20176.54747515125,194,Elective,2020-04-01,Inconclusive,9223,240,2,20,,,,DISCHARGED -9224,2021-06-21,28438.63022199069,176,Elective,2021-06-26,Abnormal,9224,368,4,4,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -9225,2023-06-18,42590.11774975663,236,Urgent,2023-06-19,Abnormal,9225,23,2,23,,,,DISCHARGED -9226,2020-10-08,8827.320776535924,148,Urgent,2020-11-06,Abnormal,9226,383,4,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9227,2020-05-02,19640.89683994048,287,Urgent,2020-05-05,Inconclusive,9227,430,2,18,,,,DISCHARGED -9228,2023-02-20,8533.906785612762,384,Urgent,,Inconclusive,9228,454,1,8,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -9229,2023-01-07,23038.82920872588,162,Urgent,,Normal,9229,82,4,28,,,,OPEN -9230,2021-03-12,24628.035065105712,306,Elective,2021-03-26,Normal,9230,469,1,26,,,,DISCHARGED -9232,2020-11-08,31961.91967515936,113,Emergency,2020-11-24,Inconclusive,9232,318,1,7,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -9233,2022-03-20,22426.243495701518,147,Elective,2022-03-27,Abnormal,9233,184,1,18,,,,DISCHARGED -9234,2019-11-02,20842.397571364767,275,Emergency,2019-11-16,Inconclusive,9234,438,1,17,,,,DISCHARGED -9235,2019-03-05,33766.84910407517,451,Emergency,2019-03-06,Normal,9235,315,0,14,,,,DISCHARGED -9236,2020-09-26,45109.45059540842,305,Elective,2020-10-18,Inconclusive,9236,98,3,3,,,,DISCHARGED -9238,2019-01-02,43350.3038008802,354,Urgent,2019-01-18,Abnormal,9238,61,0,14,,,,DISCHARGED -9239,2020-06-29,10448.804318961562,457,Urgent,2020-07-17,Normal,9239,285,2,12,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9240,2019-08-29,19038.58205291466,186,Emergency,2019-09-23,Abnormal,9240,476,2,27,,,,DISCHARGED -9241,2019-01-31,21487.35912003917,131,Emergency,2019-02-13,Abnormal,9241,21,3,17,,,,DISCHARGED -9242,2021-04-26,25595.851509823988,160,Emergency,2021-05-07,Abnormal,9242,458,3,19,,,,DISCHARGED -9243,2021-04-21,21375.61766477089,305,Elective,2021-05-16,Normal,9243,211,3,4,,,,DISCHARGED -9244,2022-01-07,7155.059016050976,254,Urgent,2022-01-08,Normal,9244,125,1,17,,,,DISCHARGED -9245,2022-10-08,46881.14090052211,256,Elective,2022-10-15,Inconclusive,9245,412,0,27,,,,DISCHARGED -9246,2018-11-07,25543.61222507702,338,Elective,2018-11-27,Inconclusive,9246,498,2,7,,,,DISCHARGED -9247,2018-11-21,36127.45278042385,125,Urgent,2018-12-11,Abnormal,9247,424,0,0,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -9249,2021-03-07,23932.090249903224,351,Elective,2021-03-27,Inconclusive,9249,41,0,18,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9250,2019-12-06,24059.718542100163,472,Elective,2019-12-21,Inconclusive,9250,97,0,22,,,,DISCHARGED -9251,2023-03-02,32678.741347794406,374,Elective,2023-03-23,Normal,9251,448,3,25,,,,DISCHARGED -9253,2023-08-31,39000.19084064411,482,Elective,2023-09-16,Inconclusive,9253,30,3,16,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -9254,2020-12-05,20629.373432074124,218,Emergency,2020-12-30,Abnormal,9254,157,2,28,,,,DISCHARGED -9256,2022-03-29,41013.94113700745,295,Urgent,2022-04-03,Inconclusive,9256,111,2,26,,,,DISCHARGED -9257,2023-09-26,29226.52072758039,195,Urgent,2023-10-04,Abnormal,9257,401,2,1,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9258,2019-02-23,31895.23822280346,210,Urgent,2019-03-10,Abnormal,9258,246,0,18,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9259,2018-11-23,28646.345338695905,364,Urgent,2018-12-09,Abnormal,9259,121,3,29,,,,DISCHARGED -9260,2023-02-04,37691.09231623789,209,Urgent,,Abnormal,9260,272,1,15,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -9261,2023-10-17,17421.4615553139,251,Elective,2023-11-12,Normal,9261,293,0,29,,,,DISCHARGED -9262,2019-02-01,19507.32151239824,468,Elective,2019-02-27,Inconclusive,9262,397,4,17,,,,DISCHARGED -9263,2022-07-08,16143.559236297968,241,Elective,2022-07-15,Abnormal,9263,470,0,1,,,,DISCHARGED -9264,2023-01-26,31769.193030406743,467,Urgent,2023-02-17,Inconclusive,9264,472,3,27,,,,DISCHARGED -9266,2021-06-07,19681.998200715934,404,Urgent,2021-06-30,Inconclusive,9266,206,4,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9267,2022-05-23,24669.582619731795,145,Urgent,2022-06-11,Normal,9267,109,0,5,,,,DISCHARGED -9269,2023-04-28,30477.159338650137,130,Urgent,2023-05-16,Normal,9269,439,3,6,,,,DISCHARGED -9270,2023-03-15,35848.73746620928,416,Emergency,2023-04-12,Normal,9270,277,3,5,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -9271,2020-10-13,42732.72129217082,166,Elective,2020-11-05,Normal,9271,450,1,26,,,,DISCHARGED -9272,2021-06-15,11341.775820989484,112,Elective,2021-06-27,Abnormal,9272,55,0,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9273,2022-10-22,27854.42974682749,459,Emergency,2022-11-03,Normal,9273,374,3,8,,,,DISCHARGED -9275,2021-12-19,21613.846233016448,396,Elective,2022-01-08,Abnormal,9275,402,2,7,,,,DISCHARGED -9276,2021-12-06,19878.80640734216,386,Urgent,2021-12-18,Normal,9276,56,3,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -9277,2020-05-22,11822.494922749092,265,Urgent,2020-05-26,Normal,9277,427,1,23,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9278,2020-08-13,25331.852437222253,199,Elective,2020-09-12,Abnormal,9278,481,3,21,,,,DISCHARGED -9279,2020-07-27,10712.844483669409,296,Urgent,2020-08-08,Normal,9279,290,0,20,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9280,2022-07-15,26731.998537993,121,Elective,2022-07-18,Normal,9280,113,0,8,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9282,2020-11-21,44202.60650873288,166,Emergency,2020-12-01,Normal,9282,380,4,11,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -9283,2019-05-20,25827.760275844485,179,Emergency,2019-06-14,Normal,9283,384,0,17,,,,DISCHARGED -9284,2019-11-21,5061.508708162552,166,Emergency,2019-12-10,Normal,9284,307,4,22,,,,DISCHARGED -9285,2020-05-03,30565.47657359989,396,Urgent,2020-05-24,Abnormal,9285,340,2,5,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9287,2022-11-21,19615.077338255043,323,Urgent,2022-12-10,Inconclusive,9287,476,1,22,,,,DISCHARGED -9288,2021-08-01,29820.11001362812,415,Urgent,2021-08-07,Inconclusive,9288,197,2,27,,,,DISCHARGED -9289,2022-02-11,9535.904015048776,168,Emergency,2022-03-03,Abnormal,9289,420,4,3,,,,DISCHARGED -9290,2020-08-30,48623.35444411356,404,Emergency,2020-09-23,Abnormal,9290,320,3,24,,,,DISCHARGED -9291,2021-08-12,27691.66794939068,152,Emergency,2021-08-29,Normal,9291,178,3,6,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9292,2023-02-06,8501.851987704971,234,Emergency,2023-03-04,Inconclusive,9292,384,2,17,,,,DISCHARGED -9293,2020-06-18,49838.14628926682,295,Elective,2020-06-20,Inconclusive,9293,218,3,28,,,,DISCHARGED -9295,2023-09-15,26099.46667518135,137,Emergency,2023-09-27,Inconclusive,9295,276,4,19,,,,DISCHARGED -9296,2021-09-19,48329.15474719292,133,Urgent,2021-10-18,Inconclusive,9296,436,1,4,,,,DISCHARGED -9297,2021-12-31,24511.625240985803,320,Emergency,2022-01-22,Normal,9297,15,0,17,,,,DISCHARGED -9298,2021-11-29,5047.726365789606,306,Urgent,2021-12-21,Normal,9298,491,4,9,,,,DISCHARGED -9299,2022-02-12,24868.731572862245,209,Urgent,2022-03-12,Normal,9299,378,4,7,,,,DISCHARGED -9300,2019-05-30,44371.56612753764,222,Emergency,2019-06-16,Abnormal,9300,60,0,0,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9301,2022-09-21,48879.92025953608,166,Elective,2022-10-01,Inconclusive,9301,53,0,14,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9302,2019-04-08,6917.4583773330405,307,Emergency,2019-04-13,Abnormal,9302,167,1,2,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9303,2018-12-31,39182.239327105686,362,Urgent,2019-01-17,Normal,9303,25,1,14,,,,DISCHARGED -9305,2023-03-16,49665.22442631546,385,Emergency,2023-04-13,Inconclusive,9305,335,1,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -9306,2021-12-12,14325.041915361202,369,Elective,2021-12-13,Abnormal,9306,475,3,0,,,,DISCHARGED -9307,2019-03-31,4777.118150278067,389,Emergency,2019-04-07,Inconclusive,9307,64,4,20,,,,DISCHARGED -9308,2019-09-29,5338.355443452173,275,Emergency,2019-10-10,Normal,9308,99,0,7,,,,DISCHARGED -9309,2019-02-02,14861.22317444336,120,Emergency,2019-02-15,Normal,9309,73,4,6,,,,DISCHARGED -9310,2019-06-03,35704.01456552509,420,Emergency,2019-07-01,Abnormal,9310,191,4,8,,,,DISCHARGED -9311,2019-09-24,37962.74655368364,352,Urgent,2019-10-15,Abnormal,9311,170,1,17,,,,DISCHARGED -9312,2020-01-27,24363.8256371307,106,Emergency,2020-02-03,Abnormal,9312,272,1,11,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -9313,2020-03-20,19209.9541309703,226,Urgent,2020-04-07,Normal,9313,376,4,7,,,,DISCHARGED -9314,2020-06-14,24081.536172408447,489,Elective,2020-07-09,Abnormal,9314,186,1,7,,,,DISCHARGED -9315,2021-12-10,12770.306970049183,450,Urgent,2021-12-30,Normal,9315,22,3,29,,,,DISCHARGED -9316,2022-01-23,1758.2493908085812,251,Elective,2022-02-07,Normal,9316,390,0,5,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9317,2018-12-19,21621.459770268644,336,Urgent,2019-01-03,Normal,9317,427,4,2,,,,DISCHARGED -9318,2023-02-04,29037.788393762683,317,Elective,2023-03-03,Normal,9318,180,0,1,,,,DISCHARGED -9320,2020-06-27,22688.33874544689,196,Elective,2020-06-29,Abnormal,9320,326,3,13,,,,DISCHARGED -9321,2022-09-11,4952.327522480191,449,Urgent,2022-09-20,Inconclusive,9321,107,1,7,,,,DISCHARGED -9323,2019-11-18,16297.872161767751,342,Elective,2019-12-18,Inconclusive,9323,334,2,5,,,,DISCHARGED -9324,2019-01-05,46451.51134859765,220,Emergency,2019-01-26,Inconclusive,9324,161,3,3,,,,DISCHARGED -9325,2020-02-26,32906.75375044161,225,Elective,2020-03-13,Inconclusive,9325,301,2,4,,,,DISCHARGED -9327,2023-04-16,1282.4935905657246,210,Elective,,Abnormal,9327,492,0,20,,,,OPEN -9329,2019-02-17,37623.28059260853,324,Elective,2019-03-12,Inconclusive,9329,451,4,12,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -9330,2022-04-15,25266.668359697534,250,Elective,2022-05-10,Inconclusive,9330,205,1,8,,,,DISCHARGED -9331,2021-10-04,11546.981424233449,408,Emergency,2021-10-24,Abnormal,9331,77,3,12,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9332,2020-01-02,20328.887634743107,278,Emergency,2020-01-03,Inconclusive,9332,15,1,28,,,,DISCHARGED -9333,2021-11-25,36342.65227117117,183,Urgent,2021-11-29,Inconclusive,9333,326,2,8,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -9334,2023-08-17,25154.555652474508,368,Elective,2023-08-28,Abnormal,9334,95,2,23,,,,DISCHARGED -9335,2019-01-06,18472.705147173838,143,Emergency,2019-01-19,Abnormal,9335,146,4,23,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9336,2020-11-25,5949.344774226577,164,Emergency,2020-11-28,Abnormal,9336,1,2,15,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -9337,2021-03-14,17451.117258502367,192,Elective,2021-04-02,Inconclusive,9337,9,4,11,,,,DISCHARGED -9338,2022-11-25,32168.443553115478,340,Urgent,2022-12-13,Inconclusive,9338,433,3,1,,,,DISCHARGED -9339,2023-08-25,47469.151036631054,373,Emergency,2023-09-10,Abnormal,9339,124,4,29,,,,DISCHARGED -9340,2019-12-29,18154.347850080874,407,Urgent,2020-01-17,Inconclusive,9340,80,2,18,,,,DISCHARGED -9341,2022-04-29,24676.963650681057,109,Urgent,2022-05-06,Inconclusive,9341,484,0,29,,,,DISCHARGED -9342,2020-10-03,32774.278099476694,389,Elective,2020-10-27,Inconclusive,9342,139,4,15,,,,DISCHARGED -9343,2021-03-16,29153.87533034293,376,Urgent,2021-04-12,Normal,9343,325,1,23,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9344,2022-09-24,39678.65823724333,313,Urgent,2022-10-01,Inconclusive,9344,149,0,12,,,,DISCHARGED -9345,2021-01-21,46876.45885847635,201,Urgent,2021-02-03,Inconclusive,9345,287,4,4,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9346,2023-01-27,38679.95763303203,294,Urgent,2023-02-10,Normal,9346,360,1,22,,,,DISCHARGED -9347,2022-10-31,19038.612746642943,153,Emergency,2022-11-09,Inconclusive,9347,339,0,29,,,,DISCHARGED -9348,2022-02-18,46066.49345544951,169,Urgent,2022-03-04,Abnormal,9348,128,4,23,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -9349,2023-09-25,42093.41236687576,285,Emergency,,Inconclusive,9349,437,3,5,,,,OPEN -9350,2020-03-01,7201.922452657804,257,Emergency,2020-03-20,Abnormal,9350,238,1,20,,,,DISCHARGED -9351,2019-03-19,35295.25308937945,191,Emergency,2019-04-03,Abnormal,9351,57,3,23,,,,DISCHARGED -9352,2020-03-15,26805.84481648384,148,Urgent,2020-04-14,Abnormal,9352,197,2,16,,,,DISCHARGED -9353,2023-09-18,23561.063561966712,486,Urgent,2023-09-26,Inconclusive,9353,210,4,16,,,,DISCHARGED -9354,2021-09-30,10544.000809207651,423,Emergency,2021-10-15,Normal,9354,401,4,16,,,,DISCHARGED -9355,2022-08-05,21427.434062808486,473,Emergency,2022-08-28,Abnormal,9355,389,1,2,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9356,2022-05-21,38694.149033370406,299,Urgent,2022-06-06,Inconclusive,9356,44,4,25,,,,DISCHARGED -9357,2020-11-14,22402.21199359324,134,Elective,2020-11-15,Inconclusive,9357,96,2,12,,,,DISCHARGED -9358,2021-09-15,28085.982626306013,272,Urgent,2021-10-03,Abnormal,9358,278,4,11,,,,DISCHARGED -9359,2021-09-21,49676.42731793135,273,Elective,2021-09-28,Inconclusive,9359,22,0,5,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -9362,2022-08-05,42393.01836700056,392,Urgent,2022-09-02,Abnormal,9362,409,3,21,,,,DISCHARGED -9363,2022-07-05,27869.598900321653,207,Emergency,2022-07-28,Normal,9363,460,2,20,,,,DISCHARGED -9364,2021-07-11,9982.07424634433,368,Elective,2021-07-15,Normal,9364,390,2,28,,,,DISCHARGED -9365,2020-08-02,22650.760475787447,451,Emergency,2020-08-17,Normal,9365,334,3,12,,,,DISCHARGED -9366,2018-11-09,40119.37505328199,185,Urgent,2018-11-27,Normal,9366,43,3,13,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9367,2021-07-05,25083.939536984348,316,Urgent,2021-07-23,Normal,9367,26,2,6,,,,DISCHARGED -9369,2019-09-08,31441.23447042926,334,Elective,2019-10-02,Normal,9369,281,3,4,,,,DISCHARGED -9371,2019-02-18,31200.18080146332,388,Elective,2019-03-18,Abnormal,9371,96,1,13,,,,DISCHARGED -9372,2020-04-27,16679.97902794942,283,Elective,2020-04-30,Inconclusive,9372,462,3,17,,,,DISCHARGED -9373,2022-02-04,34570.43253912493,202,Urgent,2022-03-05,Abnormal,9373,35,0,3,,,,DISCHARGED -9374,2018-11-23,23339.00144209056,390,Elective,2018-11-28,Abnormal,9374,108,0,0,,,,DISCHARGED -9375,2021-09-09,35204.14174780302,140,Emergency,2021-09-25,Normal,9375,54,1,6,,,,DISCHARGED -9376,2023-10-01,36422.75218530123,365,Elective,2023-10-23,Abnormal,9376,191,3,19,,,,DISCHARGED -9378,2021-06-04,15032.48734788492,432,Emergency,2021-06-25,Normal,9378,218,0,12,,,,DISCHARGED -9380,2023-05-15,47757.80644395418,343,Emergency,2023-05-26,Inconclusive,9380,184,4,3,,,,DISCHARGED -9381,2021-01-11,11247.279517713832,358,Emergency,2021-02-07,Abnormal,9381,68,3,12,,,,DISCHARGED -9382,2021-06-15,33927.88221774943,236,Emergency,2021-06-16,Normal,9382,316,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9383,2018-11-16,46118.1806193116,278,Urgent,2018-12-14,Inconclusive,9383,129,3,2,,,,DISCHARGED -9384,2020-11-22,49994.98474012479,296,Urgent,2020-11-28,Inconclusive,9384,54,2,7,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -9385,2023-02-16,46667.939352190166,232,Emergency,2023-03-13,Abnormal,9385,377,2,19,,,,DISCHARGED -9386,2019-03-14,29405.67708895468,170,Emergency,2019-03-23,Abnormal,9386,96,0,7,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -9387,2022-01-17,5314.574677601878,403,Elective,2022-01-29,Inconclusive,9387,335,2,24,,,,DISCHARGED -9388,2020-02-11,20946.11573278365,428,Elective,2020-02-15,Normal,9388,86,1,16,,,,DISCHARGED -9389,2020-10-23,33266.615764341244,118,Elective,2020-11-08,Abnormal,9389,293,0,14,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9390,2019-04-15,27881.59117570333,251,Emergency,2019-04-25,Inconclusive,9390,118,1,3,,,,DISCHARGED -9391,2020-09-23,37615.2162952283,399,Urgent,2020-10-15,Normal,9391,207,1,5,,,,DISCHARGED -9392,2022-08-06,46442.46664257765,199,Emergency,2022-09-02,Inconclusive,9392,333,2,23,,,,DISCHARGED -9393,2021-05-31,21405.019699251,380,Emergency,2021-06-19,Normal,9393,412,2,29,,,,DISCHARGED -9394,2023-08-29,27974.34037210844,496,Urgent,2023-09-09,Abnormal,9394,153,1,21,,,,DISCHARGED -9395,2022-03-23,38826.99348414473,191,Urgent,2022-03-25,Abnormal,9395,34,2,27,,,,DISCHARGED -9396,2020-09-23,18925.58099027542,494,Urgent,2020-09-29,Abnormal,9396,78,2,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9397,2021-09-17,49148.49027845049,224,Urgent,2021-09-21,Inconclusive,9397,66,2,9,,,,DISCHARGED -9398,2023-10-24,47518.05280498618,197,Urgent,2023-11-17,Abnormal,9398,342,3,3,,,,DISCHARGED -9399,2021-11-01,38332.05113260467,103,Urgent,2021-11-08,Normal,9399,412,1,8,,,,DISCHARGED -9400,2019-05-08,32331.495205226205,457,Emergency,2019-05-30,Normal,9400,33,4,15,,,,DISCHARGED -9401,2021-01-28,23091.741414290507,458,Emergency,2021-02-24,Normal,9401,96,1,6,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -9402,2019-10-11,1792.4246196991949,428,Emergency,2019-10-19,Normal,9402,168,0,13,,,,DISCHARGED -9403,2019-04-19,35201.62942549824,475,Emergency,2019-04-28,Inconclusive,9403,168,2,26,,,,DISCHARGED -9404,2019-01-20,9084.79242942949,391,Urgent,2019-01-24,Normal,9404,150,2,5,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9405,2020-10-22,7182.445706240468,188,Elective,2020-11-02,Inconclusive,9405,70,4,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9406,2021-09-22,27475.719219408817,340,Urgent,2021-10-20,Normal,9406,2,0,17,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9407,2020-11-21,17433.153686754224,367,Urgent,2020-12-13,Inconclusive,9407,313,3,11,,,,DISCHARGED -9408,2021-06-07,40652.26497962092,481,Urgent,2021-06-22,Abnormal,9408,31,1,21,,,,DISCHARGED -9409,2020-08-24,2164.925691532292,471,Elective,2020-09-12,Abnormal,9409,286,3,26,,,,DISCHARGED -9411,2019-01-17,40389.12344940273,385,Emergency,2019-02-03,Inconclusive,9411,81,0,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9412,2021-09-29,49666.21654235537,488,Urgent,2021-10-23,Normal,9412,42,4,0,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9414,2022-06-04,12741.717323206023,446,Urgent,2022-06-08,Inconclusive,9414,390,0,14,,,,DISCHARGED -9415,2020-05-31,3934.350554801208,383,Urgent,2020-06-07,Abnormal,9415,104,4,14,,,,DISCHARGED -9416,2020-01-08,34556.18080207123,494,Urgent,2020-01-10,Abnormal,9416,0,3,26,,,,DISCHARGED -9418,2023-09-24,23507.982618731963,292,Urgent,2023-09-26,Abnormal,9418,60,3,15,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9419,2021-02-19,21561.71216792462,238,Elective,2021-03-18,Abnormal,9419,269,0,20,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -9420,2022-05-30,35047.35970688111,274,Emergency,2022-06-05,Abnormal,9420,179,0,0,,,,DISCHARGED -9422,2018-11-06,37071.55079513312,476,Urgent,2018-11-08,Abnormal,9422,223,2,28,,,,DISCHARGED -9423,2019-05-24,35893.53826316144,421,Emergency,2019-06-16,Normal,9423,5,4,2,,,,DISCHARGED -9424,2021-05-13,31995.895731988447,372,Elective,2021-06-07,Normal,9424,102,2,11,,,,DISCHARGED -9425,2021-10-18,29794.51556332412,417,Emergency,2021-11-01,Abnormal,9425,9,1,27,,,,DISCHARGED -9426,2023-08-03,36944.42218527525,215,Urgent,2023-08-20,Inconclusive,9426,70,1,27,,,,DISCHARGED -9427,2021-11-07,8886.046223776952,327,Emergency,2021-11-21,Normal,9427,89,0,6,,,,DISCHARGED -9429,2021-11-11,34227.00302465879,178,Elective,2021-11-28,Normal,9429,225,3,4,,,,DISCHARGED -9430,2021-03-15,23325.616210738157,172,Emergency,2021-03-17,Normal,9430,157,1,27,,,,DISCHARGED -9431,2022-06-02,44960.75213210133,191,Urgent,2022-06-18,Normal,9431,227,1,25,,,,DISCHARGED -9432,2020-06-10,18996.551498971363,366,Emergency,2020-07-04,Inconclusive,9432,404,2,0,,,,DISCHARGED -9433,2019-09-25,31334.069244997445,171,Elective,2019-10-04,Abnormal,9433,125,2,0,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9435,2021-05-18,6894.148215034962,250,Urgent,2021-05-21,Abnormal,9435,443,1,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -9436,2021-02-15,40706.28232850206,486,Emergency,2021-02-18,Normal,9436,208,0,7,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9438,2020-06-24,21893.440392859677,135,Emergency,2020-07-08,Inconclusive,9438,96,2,10,,,,DISCHARGED -9439,2022-04-21,21771.5999866856,391,Emergency,2022-05-08,Abnormal,9439,73,1,13,,,,DISCHARGED -9440,2020-09-02,27047.145959020592,348,Emergency,2020-09-16,Inconclusive,9440,114,3,28,,,,DISCHARGED -9442,2020-11-02,45081.99019792554,320,Emergency,2020-11-14,Normal,9442,190,2,24,,,,DISCHARGED -9443,2018-11-25,20121.179009483803,115,Elective,2018-12-16,Normal,9443,494,1,22,,,,DISCHARGED -9444,2020-08-20,32826.24184837564,275,Elective,2020-09-04,Abnormal,9444,169,4,12,,,,DISCHARGED -9445,2020-08-05,5866.316845229658,468,Emergency,2020-08-31,Normal,9445,306,2,18,,,,DISCHARGED -9446,2022-03-12,47899.53619504728,408,Urgent,2022-04-07,Normal,9446,447,4,11,,,,DISCHARGED -9447,2020-05-22,41036.06865480509,372,Urgent,2020-06-15,Inconclusive,9447,203,2,21,,,,DISCHARGED -9448,2021-03-24,8697.372146952988,206,Emergency,2021-04-02,Inconclusive,9448,55,2,18,,,,DISCHARGED -9449,2019-03-08,14001.503518408868,476,Urgent,2019-03-16,Inconclusive,9449,207,4,25,,,,DISCHARGED -9450,2022-09-03,22539.709852770786,212,Urgent,2022-09-30,Abnormal,9450,40,0,3,,,,DISCHARGED -9451,2020-05-12,9156.881161793448,340,Elective,2020-05-16,Abnormal,9451,31,1,27,,,,DISCHARGED -9452,2022-03-13,18674.170884767744,114,Emergency,2022-03-28,Abnormal,9452,14,0,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -9453,2021-01-07,20987.895485764057,287,Urgent,2021-01-27,Abnormal,9453,61,0,2,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -9454,2021-12-13,3841.900370166045,258,Elective,2021-12-25,Inconclusive,9454,154,1,25,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -9455,2023-08-18,45043.78266147874,314,Urgent,2023-09-01,Normal,9455,283,3,5,,,,DISCHARGED -9456,2019-02-24,35467.44207633017,461,Emergency,2019-02-27,Normal,9456,208,0,4,,,,DISCHARGED -9457,2019-11-08,22277.64873448645,346,Elective,2019-11-29,Abnormal,9457,319,0,10,,,,DISCHARGED -9458,2018-12-09,23976.9671148463,154,Elective,2018-12-13,Inconclusive,9458,493,0,24,,,,DISCHARGED -9459,2019-05-07,38112.84266866648,350,Emergency,2019-06-06,Normal,9459,186,3,8,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9460,2020-08-31,35544.9684576915,320,Emergency,2020-09-05,Normal,9460,497,2,2,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -9461,2023-05-27,25660.622524077677,343,Emergency,2023-06-02,Abnormal,9461,441,4,28,,,,DISCHARGED -9462,2020-01-04,17973.91591587562,334,Elective,2020-02-03,Normal,9462,129,4,8,,,,DISCHARGED -9464,2019-07-26,44655.75764866704,404,Emergency,2019-08-02,Inconclusive,9464,126,3,28,,,,DISCHARGED -9465,2023-02-22,20851.09255626411,419,Elective,,Inconclusive,9465,291,0,11,,,,OPEN -9466,2019-11-17,9669.683157364569,189,Elective,2019-12-12,Inconclusive,9466,113,4,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -9467,2022-10-24,6326.766676443482,300,Emergency,2022-10-25,Inconclusive,9467,198,3,19,,,,DISCHARGED -9468,2021-06-07,24893.81409562455,270,Elective,2021-06-09,Inconclusive,9468,12,1,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -9469,2022-07-05,26273.94774221461,160,Emergency,2022-07-27,Normal,9469,270,4,20,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -9470,2020-02-03,20235.35948019497,157,Emergency,2020-02-16,Abnormal,9470,88,1,11,,,,DISCHARGED -9471,2021-07-26,23083.1476405667,339,Emergency,2021-08-11,Normal,9471,214,0,24,,,,DISCHARGED -9472,2021-01-12,28869.71412013064,477,Elective,2021-01-27,Abnormal,9472,443,4,17,,,,DISCHARGED -9473,2023-04-12,20216.30580383417,487,Elective,2023-05-05,Abnormal,9473,277,3,3,,,,DISCHARGED -9474,2021-04-01,15796.458488449449,295,Urgent,2021-04-19,Abnormal,9474,446,2,9,,,,DISCHARGED -9475,2022-11-15,36694.77298838087,124,Emergency,2022-12-05,Normal,9475,473,4,17,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -9476,2023-07-13,16087.62088676793,438,Elective,2023-07-22,Normal,9476,480,4,29,,,,DISCHARGED -9477,2019-03-25,39706.23109483318,120,Urgent,2019-04-04,Abnormal,9477,202,4,7,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9479,2018-12-12,15730.346149122504,283,Urgent,2019-01-11,Normal,9479,73,4,8,,,,DISCHARGED -9481,2022-10-14,27435.353300764546,417,Emergency,2022-10-18,Inconclusive,9481,24,3,18,,,,DISCHARGED -9483,2019-07-25,3514.00445738335,164,Elective,2019-08-02,Abnormal,9483,100,3,12,,,,DISCHARGED -9484,2019-05-04,15027.643479342656,311,Emergency,2019-05-21,Abnormal,9484,175,2,24,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -9485,2022-08-23,36845.368376636754,153,Emergency,2022-08-29,Inconclusive,9485,426,3,5,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9486,2021-02-10,29932.570757261343,401,Urgent,2021-02-14,Inconclusive,9486,116,3,21,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -9487,2019-01-13,40339.722335899256,498,Emergency,2019-02-09,Inconclusive,9487,165,0,6,,,,DISCHARGED -9488,2021-07-27,13107.239897771657,496,Emergency,2021-08-18,Inconclusive,9488,40,0,27,,,,DISCHARGED -9489,2022-04-08,41842.10834290922,227,Emergency,2022-04-24,Normal,9489,428,1,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9490,2022-07-20,38383.377799786205,280,Elective,2022-08-19,Abnormal,9490,343,2,5,,,,DISCHARGED -9491,2022-12-02,5050.940121350248,117,Emergency,2023-01-01,Inconclusive,9491,423,0,10,,,,DISCHARGED -9492,2019-07-15,30642.479451448653,493,Urgent,2019-07-19,Normal,9492,365,2,16,,,,DISCHARGED -9493,2022-09-21,22871.061343627684,236,Emergency,2022-10-17,Inconclusive,9493,119,2,18,,,,DISCHARGED -9494,2023-02-25,31725.32117221325,285,Emergency,,Normal,9494,96,4,27,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,OPEN -9495,2020-11-17,38111.29381293717,175,Emergency,2020-12-12,Abnormal,9495,144,2,24,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -9496,2023-08-16,34769.0322217827,395,Elective,2023-09-05,Abnormal,9496,215,4,11,,,,DISCHARGED -9497,2022-09-12,12988.80289254354,471,Elective,2022-10-08,Normal,9497,228,1,20,,,,DISCHARGED -9498,2020-10-31,41742.00475799513,229,Urgent,2020-11-13,Normal,9498,312,1,20,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -9499,2023-09-02,16665.621666478204,395,Urgent,2023-09-06,Normal,9499,129,1,23,,,,DISCHARGED -9500,2021-09-27,18732.85244892231,164,Elective,2021-10-24,Abnormal,9500,351,4,26,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9501,2020-12-19,18620.42327871196,170,Emergency,2021-01-03,Inconclusive,9501,376,4,26,,,,DISCHARGED -9502,2019-04-01,33858.91413381646,296,Elective,2019-04-17,Abnormal,9502,317,1,12,,,,DISCHARGED -9503,2023-06-25,47742.40124760268,466,Urgent,,Abnormal,9503,471,4,17,,,,OPEN -9504,2023-04-23,45316.06452075124,430,Emergency,2023-05-23,Normal,9504,136,3,28,,,,DISCHARGED -9505,2020-09-25,28162.98037111235,395,Elective,2020-10-08,Inconclusive,9505,323,3,6,,,,DISCHARGED -9506,2023-01-09,31633.72509066413,125,Elective,,Inconclusive,9506,336,4,24,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",OPEN -9508,2018-11-06,34022.650854211926,136,Emergency,2018-11-29,Normal,9508,272,4,22,,,,DISCHARGED -9509,2022-01-18,29665.20936050615,497,Urgent,2022-01-25,Normal,9509,116,0,27,,,,DISCHARGED -9510,2021-01-06,43285.47124727106,271,Elective,2021-01-27,Inconclusive,9510,305,0,4,,,,DISCHARGED -9511,2023-05-25,4943.335248138081,142,Emergency,2023-06-03,Inconclusive,9511,367,2,28,,,,DISCHARGED -9512,2018-11-02,25491.45995824052,243,Urgent,2018-11-29,Abnormal,9512,93,2,15,,,,DISCHARGED -9513,2019-02-09,20321.171156775617,108,Elective,2019-03-05,Inconclusive,9513,167,2,21,,,,DISCHARGED -9514,2019-05-14,15054.431375192453,426,Emergency,2019-05-22,Inconclusive,9514,441,1,3,,,,DISCHARGED -9515,2022-12-09,16119.092077507516,442,Emergency,2022-12-17,Normal,9515,202,3,29,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -9516,2021-12-10,31823.36128271307,286,Elective,2022-01-06,Abnormal,9516,340,1,27,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -9517,2019-03-05,20575.37328588353,125,Urgent,2019-04-03,Normal,9517,148,4,22,,,,DISCHARGED -9518,2020-11-06,33948.779627094314,482,Urgent,2020-12-06,Normal,9518,401,0,0,,,,DISCHARGED -9519,2021-10-31,17038.06636584955,450,Emergency,2021-11-29,Normal,9519,182,4,3,,,,DISCHARGED -9520,2022-05-24,4520.428471040106,210,Emergency,2022-05-29,Inconclusive,9520,412,4,2,,,,DISCHARGED -9521,2021-03-19,33779.91029091437,442,Elective,2021-03-27,Abnormal,9521,151,0,28,,,,DISCHARGED -9522,2022-12-16,3639.468565416816,493,Elective,2023-01-02,Inconclusive,9522,73,4,3,,,,DISCHARGED -9523,2019-09-18,8593.398870021509,298,Emergency,2019-10-15,Abnormal,9523,364,2,0,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9524,2023-08-16,17684.762010789018,325,Emergency,2023-08-29,Abnormal,9524,400,0,11,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9525,2023-09-22,42808.60659685682,105,Emergency,,Normal,9525,273,4,12,,,,OPEN -9526,2022-10-08,25360.569096716343,279,Elective,2022-10-16,Inconclusive,9526,41,2,1,,,,DISCHARGED -9527,2022-10-27,46447.27727137179,270,Elective,2022-11-18,Abnormal,9527,495,2,27,,,,DISCHARGED -9528,2023-01-30,34669.98243188253,107,Emergency,2023-02-03,Inconclusive,9528,211,3,26,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -9529,2020-10-28,1548.3368775235483,257,Emergency,2020-11-14,Abnormal,9529,100,2,28,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -9530,2020-08-10,20926.538191285246,137,Elective,2020-08-20,Inconclusive,9530,44,1,8,,,,DISCHARGED -9531,2021-08-13,8221.348155076532,372,Elective,2021-09-07,Abnormal,9531,81,0,6,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -9532,2019-10-14,24724.842171256714,491,Elective,2019-10-22,Abnormal,9532,16,0,12,,,,DISCHARGED -9533,2021-02-18,48460.2450274802,416,Emergency,2021-03-05,Abnormal,9533,72,0,21,,,,DISCHARGED -9534,2020-10-12,4979.105338812041,480,Urgent,2020-10-22,Inconclusive,9534,13,4,1,,,,DISCHARGED -9535,2022-09-12,33656.77039022831,385,Urgent,2022-10-08,Normal,9535,432,4,0,,,,DISCHARGED -9537,2020-05-31,23589.279140744387,462,Elective,2020-06-04,Normal,9537,156,1,17,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9538,2019-07-21,36036.69929517323,197,Emergency,2019-08-02,Normal,9538,222,2,6,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -9540,2022-02-03,32516.290620891294,439,Elective,2022-02-27,Abnormal,9540,131,4,17,,,,DISCHARGED -9542,2020-11-04,34759.860804141885,348,Elective,2020-11-30,Abnormal,9542,337,2,18,,,,DISCHARGED -9543,2023-04-28,4781.314784376214,202,Urgent,2023-05-24,Inconclusive,9543,403,2,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9544,2021-08-04,43560.90099564828,229,Urgent,2021-09-01,Normal,9544,375,4,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -9545,2020-02-19,40025.17456123845,238,Urgent,2020-03-02,Inconclusive,9545,375,4,11,,,,DISCHARGED -9547,2019-03-25,24197.014145831803,474,Urgent,2019-04-11,Abnormal,9547,46,1,10,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -9548,2018-11-15,32330.303114066508,148,Urgent,2018-12-08,Inconclusive,9548,106,3,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9549,2021-10-23,42219.02802517201,305,Urgent,2021-10-25,Normal,9549,107,0,29,,,,DISCHARGED -9550,2019-09-09,28750.639875588982,124,Elective,2019-09-30,Normal,9550,264,4,26,,,,DISCHARGED -9551,2019-04-16,8609.459057071082,358,Urgent,2019-05-04,Abnormal,9551,204,4,8,,,,DISCHARGED -9552,2021-08-05,21971.32859928623,379,Elective,2021-08-23,Normal,9552,78,2,27,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9553,2022-11-11,26554.52056586294,120,Emergency,2022-12-10,Normal,9553,154,3,3,,,,DISCHARGED -9554,2023-10-08,22516.2563831082,308,Urgent,2023-11-04,Abnormal,9554,270,4,6,,,,DISCHARGED -9555,2019-03-11,19400.181370063765,442,Elective,2019-04-03,Normal,9555,475,3,16,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -9556,2020-05-09,38277.62299470359,341,Emergency,2020-05-19,Abnormal,9556,484,0,10,,,,DISCHARGED -9557,2020-02-17,48914.00079112096,353,Elective,2020-03-03,Normal,9557,246,2,26,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9558,2022-01-05,12266.84149046783,158,Emergency,2022-02-01,Abnormal,9558,18,1,1,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -9559,2018-11-14,11503.794815587926,173,Elective,2018-12-06,Abnormal,9559,345,0,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -9560,2022-01-23,45007.351578048445,485,Urgent,2022-02-07,Normal,9560,435,3,17,,,,DISCHARGED -9561,2023-10-11,28805.913758427363,146,Elective,2023-11-08,Normal,9561,25,3,21,,,,DISCHARGED -9562,2019-02-28,13529.073534769725,350,Emergency,2019-03-09,Normal,9562,216,0,28,,,,DISCHARGED -9564,2020-04-29,32514.971787729737,304,Urgent,2020-05-24,Abnormal,9564,153,3,25,,,,DISCHARGED -9565,2019-10-08,37903.84442387519,286,Emergency,2019-10-25,Normal,9565,153,1,11,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9566,2020-07-18,9115.071499220208,419,Elective,2020-08-03,Normal,9566,173,1,8,,,,DISCHARGED -9568,2022-09-15,41031.31988853498,257,Urgent,2022-09-18,Abnormal,9568,91,3,10,,,,DISCHARGED -9569,2020-07-07,19786.71808836456,493,Urgent,2020-07-16,Inconclusive,9569,432,3,4,,,,DISCHARGED -9570,2019-12-24,18639.780088219784,484,Urgent,2020-01-20,Normal,9570,337,1,25,,,,DISCHARGED -9573,2021-10-30,2530.0986781064216,211,Urgent,2021-11-16,Abnormal,9573,479,3,6,,,,DISCHARGED -9574,2019-01-28,11123.52436891824,498,Emergency,2019-02-11,Abnormal,9574,180,4,28,,,,DISCHARGED -9575,2022-08-27,6078.465880220616,356,Emergency,2022-09-13,Inconclusive,9575,130,2,0,,,,DISCHARGED -9576,2019-08-02,13569.169535617571,388,Emergency,2019-08-25,Normal,9576,449,4,23,,,,DISCHARGED -9577,2019-04-08,17840.96932556043,306,Elective,2019-04-26,Normal,9577,480,3,24,,,,DISCHARGED -9578,2020-07-04,5757.23611769241,355,Elective,2020-07-29,Inconclusive,9578,297,3,28,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9579,2020-09-08,12680.731107725816,259,Emergency,2020-09-12,Inconclusive,9579,274,2,4,,,,DISCHARGED -9580,2022-09-03,37467.489815670415,293,Elective,2022-09-08,Abnormal,9580,272,3,5,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -9581,2019-01-14,47506.44548042351,448,Emergency,2019-01-29,Abnormal,9581,491,2,12,,,,DISCHARGED -9582,2020-11-30,14314.168372631711,408,Urgent,2020-12-10,Normal,9582,416,1,10,,,,DISCHARGED -9583,2021-05-06,34613.16313938826,425,Elective,2021-05-09,Abnormal,9583,75,2,7,,,,DISCHARGED -9584,2019-07-23,6220.413527115213,356,Elective,2019-08-12,Normal,9584,176,2,19,,,,DISCHARGED -9585,2022-10-17,31923.58473727357,367,Urgent,2022-11-12,Normal,9585,183,4,1,,,,DISCHARGED -9586,2023-07-21,23555.178661707552,116,Elective,2023-08-08,Abnormal,9586,318,3,14,,,,DISCHARGED -9587,2022-07-18,44028.19446047585,439,Urgent,2022-08-02,Normal,9587,130,1,9,,,,DISCHARGED -9588,2019-11-20,15929.691855087283,485,Urgent,2019-12-16,Inconclusive,9588,362,0,7,,,,DISCHARGED -9589,2019-02-11,46381.34450604894,276,Urgent,2019-02-27,Abnormal,9589,48,2,1,,,,DISCHARGED -9591,2023-04-09,12892.9774021263,371,Elective,2023-04-21,Normal,9591,54,0,20,,,,DISCHARGED -9592,2023-01-09,33264.410768208254,255,Emergency,2023-01-21,Abnormal,9592,153,3,14,,,,DISCHARGED -9593,2022-12-14,28536.187706717083,145,Elective,2022-12-25,Abnormal,9593,354,2,28,,,,DISCHARGED -9595,2021-07-20,33967.623063863786,296,Elective,2021-07-28,Normal,9595,199,0,5,,,,DISCHARGED -9597,2021-07-14,37552.19906707758,194,Urgent,2021-07-16,Abnormal,9597,307,4,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -9598,2020-08-28,24490.554625411227,390,Elective,2020-09-14,Abnormal,9598,355,0,21,,,,DISCHARGED -9599,2018-12-04,49408.03000527031,464,Emergency,2018-12-25,Normal,9599,372,4,21,,,,DISCHARGED -9600,2020-11-18,18939.732687823023,379,Elective,2020-11-21,Inconclusive,9600,117,1,2,,,,DISCHARGED -9601,2019-09-12,10703.999522457989,458,Elective,2019-10-09,Inconclusive,9601,262,3,10,,,,DISCHARGED -9602,2021-01-15,34439.13690726538,128,Urgent,2021-02-01,Normal,9602,45,0,10,,,,DISCHARGED -9603,2019-11-07,41835.3061035786,169,Emergency,2019-11-26,Normal,9603,301,2,15,,,,DISCHARGED -9604,2019-06-30,29264.76996200568,209,Urgent,2019-07-20,Normal,9604,355,3,2,,,,DISCHARGED -9605,2019-01-05,42620.34076314887,385,Elective,2019-01-20,Abnormal,9605,399,0,8,,,,DISCHARGED -9608,2019-08-06,4001.372218502296,451,Urgent,2019-08-29,Inconclusive,9608,407,2,2,,,,DISCHARGED -9609,2020-09-15,35678.65321517284,167,Emergency,2020-09-23,Abnormal,9609,188,2,18,,,,DISCHARGED -9610,2021-07-08,33989.64739884446,360,Emergency,2021-07-27,Normal,9610,309,2,10,,,,DISCHARGED -9612,2021-11-10,5651.689048138985,488,Elective,2021-12-09,Inconclusive,9612,317,2,13,,,,DISCHARGED -9613,2023-04-08,21329.582052576367,360,Urgent,2023-04-15,Abnormal,9613,128,0,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9614,2021-05-22,24040.23543122317,268,Emergency,2021-06-18,Inconclusive,9614,48,1,6,,,,DISCHARGED -9615,2021-08-04,23528.6374244111,452,Emergency,2021-08-18,Normal,9615,24,4,9,,,,DISCHARGED -9616,2020-05-24,23054.34358715714,293,Urgent,2020-05-30,Abnormal,9616,265,4,9,,,,DISCHARGED -9617,2022-05-21,1118.8311260671571,438,Urgent,2022-05-22,Inconclusive,9617,117,4,19,,,,DISCHARGED -9618,2022-08-07,20463.76918799592,482,Emergency,2022-09-03,Normal,9618,463,1,0,,,,DISCHARGED -9619,2019-06-11,39749.41489228431,378,Elective,2019-06-27,Normal,9619,143,2,5,,,,DISCHARGED -9620,2019-11-29,18682.22855805374,177,Elective,2019-12-02,Abnormal,9620,441,2,20,,,,DISCHARGED -9621,2022-10-25,26950.24528618453,298,Elective,2022-11-02,Normal,9621,199,3,13,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9622,2021-10-06,21807.003212103267,209,Elective,2021-10-23,Normal,9622,156,4,26,,,,DISCHARGED -9624,2022-03-14,28369.142535520463,336,Urgent,2022-03-21,Inconclusive,9624,486,4,1,,,,DISCHARGED -9625,2023-03-31,48532.69397319835,293,Emergency,2023-04-07,Normal,9625,347,2,5,,,,DISCHARGED -9626,2020-06-21,34251.48653543129,176,Urgent,2020-06-22,Inconclusive,9626,133,4,0,,,,DISCHARGED -9627,2021-06-19,34029.180643996275,348,Urgent,2021-07-11,Abnormal,9627,399,2,2,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9628,2022-07-11,37575.4171294518,346,Elective,2022-07-30,Abnormal,9628,147,2,3,,,,DISCHARGED -9629,2022-04-10,45440.14704771098,407,Emergency,2022-04-19,Normal,9629,335,2,12,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9630,2022-03-11,19119.35911161525,136,Elective,2022-03-28,Inconclusive,9630,70,0,2,,,,DISCHARGED -9633,2023-09-12,49331.925357798274,472,Urgent,,Abnormal,9633,232,0,14,,,,OPEN -9634,2021-02-06,16001.770406330012,155,Elective,2021-02-17,Abnormal,9634,333,0,12,,,,DISCHARGED -9635,2023-06-11,17407.914278539127,166,Emergency,2023-06-29,Normal,9635,298,0,21,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9636,2023-01-14,40591.69926562745,290,Urgent,,Abnormal,9636,153,1,10,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -9637,2019-04-24,4048.725642947292,126,Urgent,2019-05-05,Inconclusive,9637,89,3,3,,,,DISCHARGED -9638,2022-09-05,3691.849225546685,497,Elective,2022-10-04,Normal,9638,333,3,29,,,,DISCHARGED -9639,2021-02-18,12470.951401999228,452,Emergency,2021-03-03,Inconclusive,9639,198,2,16,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -9641,2022-10-27,26175.413431594963,442,Emergency,2022-11-26,Normal,9641,160,4,4,,,,DISCHARGED -9642,2021-10-01,47798.352690945954,174,Urgent,2021-10-05,Inconclusive,9642,25,0,20,,,,DISCHARGED -9643,2020-12-21,11312.338562001529,361,Emergency,2021-01-08,Abnormal,9643,120,3,24,,,,DISCHARGED -9644,2023-08-21,18171.27602925551,300,Elective,,Normal,9644,300,3,23,,,,OPEN -9645,2021-03-07,29189.589592356217,132,Elective,2021-03-24,Normal,9645,211,0,7,,,,DISCHARGED -9648,2018-12-19,35365.03687567495,423,Elective,2018-12-26,Normal,9648,62,1,20,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9649,2021-05-03,27082.46860557441,269,Elective,2021-05-17,Normal,9649,450,1,23,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9650,2020-07-08,17765.328890597513,309,Emergency,2020-07-23,Inconclusive,9650,435,3,29,,,,DISCHARGED -9651,2022-10-10,19121.81064338493,258,Urgent,2022-11-08,Abnormal,9651,67,1,9,,,,DISCHARGED -9652,2020-03-18,22691.3180079067,342,Elective,2020-04-13,Inconclusive,9652,252,0,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -9653,2019-01-11,2702.255028943887,172,Emergency,2019-01-16,Inconclusive,9653,409,3,16,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -9654,2022-12-06,42216.522948794656,490,Elective,2023-01-04,Normal,9654,458,0,27,,,,DISCHARGED -9655,2019-07-16,10475.950408255008,165,Elective,2019-08-15,Inconclusive,9655,1,1,6,,,,DISCHARGED -9656,2022-10-21,15449.024882169548,425,Urgent,2022-10-31,Abnormal,9656,397,0,26,,,,DISCHARGED -9657,2019-07-18,7498.035177188293,358,Urgent,2019-08-13,Abnormal,9657,107,1,23,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -9658,2020-01-18,16717.665164574028,345,Urgent,2020-01-24,Inconclusive,9658,285,1,18,,,,DISCHARGED -9659,2019-04-11,46941.69795646965,432,Emergency,2019-04-26,Inconclusive,9659,48,0,8,,,,DISCHARGED -9660,2019-10-15,22950.418602827987,436,Elective,2019-11-01,Abnormal,9660,139,1,23,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9661,2022-11-01,14755.68995432073,424,Emergency,2022-11-10,Abnormal,9661,217,2,1,,,,DISCHARGED -9662,2021-07-19,5870.637951863089,397,Urgent,2021-08-16,Inconclusive,9662,43,0,21,,,,DISCHARGED -9663,2021-10-16,15237.945526635076,176,Emergency,2021-10-17,Abnormal,9663,416,2,19,,,,DISCHARGED -9664,2023-04-28,12481.101145800443,348,Emergency,2023-05-06,Abnormal,9664,268,0,18,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9665,2019-12-17,42759.41513912659,491,Emergency,2020-01-13,Abnormal,9665,77,1,26,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -9666,2022-02-21,2825.8628607741107,384,Emergency,2022-03-15,Normal,9666,215,1,5,,,,DISCHARGED -9667,2019-02-18,10502.410516779371,350,Elective,2019-02-26,Inconclusive,9667,381,3,9,,,,DISCHARGED -9668,2021-04-02,9699.424772705905,293,Elective,2021-04-23,Normal,9668,97,3,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -9669,2019-05-10,20246.388784920397,182,Elective,2019-05-20,Inconclusive,9669,235,2,24,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9670,2022-10-05,20491.93058442884,183,Elective,2022-10-14,Inconclusive,9670,281,1,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -9671,2022-02-08,37989.780508136864,235,Urgent,2022-03-09,Abnormal,9671,148,3,9,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9672,2023-05-25,24899.339789045487,363,Elective,,Normal,9672,411,1,9,,,,OPEN -9673,2022-10-29,6554.936512300236,404,Emergency,2022-11-23,Inconclusive,9673,303,0,25,,,,DISCHARGED -9674,2019-03-10,37746.77903382421,463,Emergency,2019-03-21,Normal,9674,483,3,4,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -9676,2019-10-20,28148.575886522383,340,Emergency,2019-11-03,Inconclusive,9676,423,2,21,,,,DISCHARGED -9677,2022-05-29,23625.09689969844,191,Elective,2022-06-02,Inconclusive,9677,65,3,3,,,,DISCHARGED -9678,2019-04-29,19668.947533492355,250,Emergency,2019-05-23,Normal,9678,233,1,22,,,,DISCHARGED -9679,2020-09-23,17248.98840250034,420,Emergency,2020-10-08,Normal,9679,456,4,1,,,,DISCHARGED -9680,2020-11-24,17258.32127966442,357,Urgent,2020-12-16,Inconclusive,9680,86,4,6,,,,DISCHARGED -9681,2022-02-10,8639.499734471934,108,Urgent,2022-02-15,Normal,9681,78,1,17,,,,DISCHARGED -9682,2021-11-09,8106.62731560165,208,Urgent,2021-11-25,Normal,9682,204,0,16,,,,DISCHARGED -9683,2020-05-30,5818.806502327479,475,Elective,2020-06-03,Inconclusive,9683,278,3,10,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -9684,2020-04-08,32194.51375357532,178,Elective,2020-04-29,Abnormal,9684,336,4,20,,,,DISCHARGED -9685,2021-12-01,35646.35208119993,495,Urgent,2021-12-11,Inconclusive,9685,253,0,17,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9686,2019-09-03,26452.040576515148,298,Emergency,2019-09-28,Inconclusive,9686,303,1,7,,,,DISCHARGED -9687,2022-01-15,31430.89880796007,219,Elective,2022-01-16,Normal,9687,379,0,27,,,,DISCHARGED -9688,2023-09-06,47938.14487629312,193,Urgent,,Abnormal,9688,129,1,27,,,,OPEN -9690,2021-09-29,42995.60963656225,460,Urgent,2021-10-24,Normal,9690,83,3,11,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -9691,2022-10-03,7460.393199892693,396,Emergency,2022-10-14,Abnormal,9691,275,0,23,,,,DISCHARGED -9692,2019-11-23,15243.158324036942,114,Emergency,2019-11-26,Abnormal,9692,186,3,0,,,,DISCHARGED -9693,2020-09-09,11964.137562873244,320,Urgent,2020-09-26,Normal,9693,45,0,19,,,,DISCHARGED -9694,2020-08-10,6699.178105948575,172,Urgent,2020-08-14,Abnormal,9694,386,1,29,,,,DISCHARGED -9695,2023-10-26,16736.248526230556,253,Elective,2023-11-21,Inconclusive,9695,182,1,24,,,,DISCHARGED -9696,2023-01-04,11280.992523600917,138,Elective,2023-01-31,Normal,9696,267,0,20,,,,DISCHARGED -9697,2018-11-28,28638.76870546042,209,Elective,2018-12-07,Normal,9697,295,1,11,,,,DISCHARGED -9698,2020-09-28,32711.12112420037,140,Emergency,2020-10-09,Abnormal,9698,321,2,26,,,,DISCHARGED -9700,2019-04-12,5500.38352277576,339,Emergency,2019-05-11,Abnormal,9700,99,2,25,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9701,2019-04-28,28412.454889008248,220,Urgent,2019-05-07,Abnormal,9701,77,3,28,,,,DISCHARGED -9703,2019-07-27,5906.052893056745,176,Urgent,2019-08-07,Inconclusive,9703,271,2,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -9704,2020-04-12,19179.031435993384,334,Emergency,2020-05-06,Inconclusive,9704,338,2,2,,,,DISCHARGED -9705,2021-11-13,17340.573465789937,410,Emergency,2021-12-13,Abnormal,9705,161,4,4,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -9706,2018-11-02,32616.76600426902,363,Urgent,2018-11-14,Normal,9706,43,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -9707,2023-05-04,27332.66087193986,265,Elective,2023-05-29,Normal,9707,237,4,11,,,,DISCHARGED -9708,2021-07-19,28922.65913693515,149,Elective,2021-07-21,Normal,9708,133,4,12,,,,DISCHARGED -9709,2020-01-11,30019.690600064056,288,Elective,2020-02-05,Abnormal,9709,460,1,12,,,,DISCHARGED -9710,2019-11-13,45584.15560000882,263,Urgent,2019-11-27,Abnormal,9710,191,3,28,,,,DISCHARGED -9711,2020-11-22,7130.664083479242,134,Elective,2020-12-10,Normal,9711,355,3,16,,,,DISCHARGED -9712,2022-01-05,13790.50620060984,265,Urgent,2022-01-19,Normal,9712,277,2,23,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9713,2020-10-05,40687.85448176824,196,Urgent,2020-10-18,Abnormal,9713,17,3,26,,,,DISCHARGED -9714,2023-10-03,42712.67485971958,440,Elective,,Inconclusive,9714,11,2,14,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -9715,2022-08-18,43363.23023083918,170,Elective,2022-09-05,Inconclusive,9715,179,3,5,,,,DISCHARGED -9716,2022-05-19,35431.81134218681,317,Elective,2022-06-18,Inconclusive,9716,122,0,11,,,,DISCHARGED -9717,2021-05-13,13563.249041623523,161,Urgent,2021-05-23,Normal,9717,245,0,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -9718,2021-02-08,32056.25617943407,251,Urgent,2021-03-07,Abnormal,9718,221,3,3,,,,DISCHARGED -9719,2019-04-05,47026.89186132301,438,Emergency,2019-04-06,Inconclusive,9719,372,1,19,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -9720,2019-04-07,24754.647932548327,327,Elective,2019-04-22,Normal,9720,50,2,24,,,,DISCHARGED -9721,2023-10-28,43047.41106018499,405,Elective,2023-11-27,Inconclusive,9721,487,3,24,,,,DISCHARGED -9722,2020-06-14,13743.409289062054,166,Urgent,2020-07-03,Normal,9722,70,2,20,,,,DISCHARGED -9723,2023-10-05,27186.509092691125,224,Elective,2023-10-20,Abnormal,9723,479,4,11,,,,DISCHARGED -9724,2023-05-01,42847.70206225144,115,Urgent,2023-05-30,Abnormal,9724,47,3,2,,,,DISCHARGED -9725,2021-04-07,46321.489055376594,278,Emergency,2021-04-09,Abnormal,9725,18,1,16,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -9726,2023-10-07,16605.718483135443,451,Emergency,2023-10-20,Abnormal,9726,261,4,5,,,,DISCHARGED -9727,2022-04-11,38809.31012111005,240,Urgent,2022-05-03,Inconclusive,9727,83,3,23,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -9729,2019-01-16,24944.63208705401,178,Emergency,2019-01-17,Inconclusive,9729,154,0,16,,,,DISCHARGED -9730,2020-06-09,42129.350010958144,281,Emergency,2020-06-22,Normal,9730,52,3,26,,,,DISCHARGED -9731,2019-06-15,12095.117714089787,201,Urgent,2019-06-20,Inconclusive,9731,106,0,16,,,,DISCHARGED -9732,2021-11-08,21584.10229499755,272,Emergency,2021-11-26,Normal,9732,356,0,10,,,,DISCHARGED -9733,2019-10-05,22208.328318435804,318,Elective,2019-10-12,Inconclusive,9733,303,3,22,,,,DISCHARGED -9734,2022-02-19,16957.17420233623,481,Urgent,2022-02-23,Normal,9734,134,3,6,,,,DISCHARGED -9736,2022-09-24,13581.0089167484,423,Emergency,2022-10-03,Normal,9736,442,0,1,,,,DISCHARGED -9737,2022-01-07,9209.45351961647,213,Urgent,2022-02-04,Abnormal,9737,68,2,18,,,,DISCHARGED -9738,2021-10-01,11578.265499407742,236,Emergency,2021-10-23,Abnormal,9738,10,4,1,,,,DISCHARGED -9739,2022-05-31,5287.393250021994,464,Elective,2022-06-29,Normal,9739,142,1,21,,,,DISCHARGED -9740,2021-07-20,30707.487068089777,371,Emergency,2021-08-07,Inconclusive,9740,191,3,28,,,,DISCHARGED -9742,2022-11-02,25712.33842063509,236,Emergency,2022-11-19,Abnormal,9742,386,4,12,,,,DISCHARGED -9743,2019-06-20,19350.61491477125,224,Urgent,2019-07-05,Abnormal,9743,377,4,23,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9744,2019-01-30,2758.335750637233,117,Urgent,2019-02-21,Normal,9744,68,2,23,,,,DISCHARGED -9745,2021-05-07,10659.36509199032,350,Elective,2021-06-03,Inconclusive,9745,22,4,15,,,,DISCHARGED -9746,2021-02-17,40322.320481317176,146,Emergency,2021-03-13,Normal,9746,180,3,16,,,,DISCHARGED -9747,2022-07-09,49397.99886262989,382,Urgent,2022-08-03,Normal,9747,292,4,10,,,,DISCHARGED -9749,2020-06-01,29709.082207880638,404,Elective,2020-06-11,Abnormal,9749,8,3,8,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -9750,2021-08-06,18555.540732174897,355,Emergency,2021-08-25,Abnormal,9750,270,3,26,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -9751,2020-07-06,22735.21328037933,307,Elective,2020-07-07,Normal,9751,386,0,23,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9752,2022-10-03,3325.854786482901,355,Emergency,2022-10-14,Abnormal,9752,92,2,8,,,,DISCHARGED -9753,2023-08-04,34689.217904932564,237,Urgent,2023-08-26,Abnormal,9753,453,1,28,,,,DISCHARGED -9754,2020-12-18,28623.423800404795,381,Elective,2020-12-20,Inconclusive,9754,16,0,13,,,,DISCHARGED -9755,2021-08-11,47707.81839002663,270,Elective,2021-08-15,Abnormal,9755,153,1,12,,,,DISCHARGED -9756,2020-12-27,29031.933569662207,307,Urgent,2021-01-21,Normal,9756,404,3,24,,,,DISCHARGED -9757,2023-05-14,32403.867384594152,280,Emergency,2023-05-19,Inconclusive,9757,327,0,10,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -9758,2022-03-08,7013.703138185272,378,Urgent,2022-03-20,Abnormal,9758,148,4,11,,,,DISCHARGED -9759,2023-09-11,30429.17678092431,366,Urgent,2023-09-26,Inconclusive,9759,376,4,21,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9760,2022-05-23,13046.561061175236,388,Urgent,2022-06-12,Abnormal,9760,266,1,2,,,,DISCHARGED -9761,2023-03-27,30737.38612489365,150,Emergency,,Inconclusive,9761,421,3,0,,,,OPEN -9762,2022-10-06,37668.99231087265,279,Emergency,2022-10-14,Inconclusive,9762,327,1,26,,,,DISCHARGED -9763,2022-04-20,18469.36016439754,365,Emergency,2022-05-01,Normal,9763,105,2,7,,,,DISCHARGED -9765,2023-03-22,47765.5175157545,419,Urgent,2023-03-30,Abnormal,9765,471,4,25,,,,DISCHARGED -9766,2022-02-17,47699.03529922939,229,Elective,2022-03-10,Normal,9766,380,0,18,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9767,2021-04-17,23380.073571168672,396,Urgent,2021-05-08,Inconclusive,9767,34,0,12,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -9768,2022-10-04,23913.339851483797,245,Urgent,2022-10-20,Inconclusive,9768,118,0,6,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9769,2022-01-25,33910.75473829914,121,Elective,2022-02-02,Abnormal,9769,13,4,12,,,,DISCHARGED -9770,2019-08-11,6015.95267461178,176,Emergency,2019-08-28,Abnormal,9770,13,3,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -9771,2021-03-20,10800.610057635917,484,Urgent,2021-04-05,Inconclusive,9771,265,4,5,,,,DISCHARGED -9772,2019-12-03,46032.15309346579,252,Urgent,2019-12-05,Abnormal,9772,139,4,2,,,,DISCHARGED -9773,2019-02-28,36842.56870364607,157,Urgent,2019-03-23,Inconclusive,9773,293,0,5,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9774,2019-04-07,21535.95199755365,208,Emergency,2019-04-19,Normal,9774,363,4,27,,,,DISCHARGED -9775,2020-08-17,35388.82831578764,206,Emergency,2020-09-16,Normal,9775,118,0,2,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9776,2022-10-08,42470.149259777216,159,Urgent,2022-10-30,Inconclusive,9776,237,3,12,,,,DISCHARGED -9777,2020-06-27,34773.11672276814,139,Elective,2020-07-27,Abnormal,9777,33,2,12,,,,DISCHARGED -9778,2023-09-20,28835.050352851187,460,Elective,2023-09-21,Inconclusive,9778,168,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -9779,2023-01-25,40706.756367193695,382,Elective,2023-01-30,Abnormal,9779,9,1,24,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9780,2020-02-15,11879.459621555614,265,Elective,2020-03-02,Inconclusive,9780,121,2,12,,,,DISCHARGED -9781,2019-07-11,37112.45944905461,369,Elective,2019-07-12,Inconclusive,9781,400,3,0,,,,DISCHARGED -9782,2022-07-28,39823.19094686836,186,Urgent,2022-07-31,Abnormal,9782,144,2,28,,,,DISCHARGED -9783,2023-10-30,48754.92114615348,350,Elective,2023-11-18,Normal,9783,450,0,7,,,,DISCHARGED -9784,2023-06-05,23012.892520303205,438,Emergency,2023-06-19,Normal,9784,445,3,4,,,,DISCHARGED -9785,2021-06-02,2166.596844607958,361,Elective,2021-06-28,Normal,9785,222,1,19,,,,DISCHARGED -9786,2022-07-08,16899.464928324745,200,Emergency,2022-07-26,Abnormal,9786,370,0,16,,,,DISCHARGED -9787,2023-10-10,41430.88386465394,377,Elective,,Inconclusive,9787,256,0,8,,,,OPEN -9788,2020-12-06,47778.244349762965,409,Urgent,2021-01-01,Normal,9788,267,3,12,,,,DISCHARGED -9790,2023-06-08,2202.002980999018,129,Emergency,2023-07-04,Inconclusive,9790,358,3,24,,,,DISCHARGED -9792,2023-10-15,5079.171586366583,200,Emergency,2023-10-21,Abnormal,9792,3,2,12,,,,DISCHARGED -9793,2023-10-18,15276.258410256076,218,Elective,2023-11-13,Inconclusive,9793,425,1,4,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9794,2020-01-31,15014.257274069723,496,Urgent,2020-02-19,Abnormal,9794,396,2,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -9796,2020-12-17,11333.21108973169,343,Urgent,2021-01-14,Normal,9796,353,2,10,,,,DISCHARGED -9797,2020-03-23,43545.93887670325,205,Urgent,2020-03-31,Inconclusive,9797,105,0,24,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -9798,2019-07-25,3410.9377230355044,395,Emergency,2019-08-11,Normal,9798,84,3,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9799,2020-07-25,21444.502242224906,311,Emergency,2020-08-17,Inconclusive,9799,213,0,13,,,,DISCHARGED -9800,2023-02-13,44948.76988215603,257,Emergency,2023-03-15,Inconclusive,9800,120,1,24,,,,DISCHARGED -9801,2023-08-04,22781.12720747372,290,Urgent,2023-08-24,Abnormal,9801,131,2,6,,,,DISCHARGED -9802,2022-03-26,7796.311386434458,241,Elective,2022-03-31,Inconclusive,9802,337,1,23,,,,DISCHARGED -9803,2022-12-13,32113.30182993484,279,Urgent,2022-12-28,Abnormal,9803,196,3,16,,,,DISCHARGED -9805,2021-02-13,14705.97144935834,381,Urgent,2021-03-07,Normal,9805,18,3,3,,,,DISCHARGED -9807,2021-05-15,47748.71634464196,482,Elective,2021-06-05,Normal,9807,129,4,9,,,,DISCHARGED -9808,2020-03-02,42206.57159968563,369,Emergency,2020-03-28,Normal,9808,11,1,9,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9809,2022-07-30,18734.69948543802,474,Emergency,2022-08-03,Abnormal,9809,80,0,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9810,2019-02-22,39238.10515880027,328,Emergency,2019-03-13,Normal,9810,329,1,19,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9811,2019-03-19,4466.9219144162735,397,Urgent,2019-03-31,Inconclusive,9811,353,2,11,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -9812,2021-12-21,22135.06754243555,366,Elective,2022-01-19,Abnormal,9812,261,3,8,,,,DISCHARGED -9813,2020-09-01,46663.76859979641,382,Urgent,2020-09-19,Normal,9813,391,3,2,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -9814,2022-02-12,13049.755779648058,312,Urgent,2022-02-22,Inconclusive,9814,124,1,14,,,,DISCHARGED -9815,2021-02-12,17269.41067955875,456,Elective,2021-02-19,Abnormal,9815,306,1,11,,,,DISCHARGED -9816,2020-08-15,8643.200302209143,334,Elective,2020-09-07,Normal,9816,266,1,25,,,,DISCHARGED -9817,2019-11-04,34921.00392304842,329,Emergency,2019-12-03,Abnormal,9817,446,2,14,,,,DISCHARGED -9818,2019-10-10,6765.8331684450895,284,Urgent,2019-10-20,Inconclusive,9818,440,2,25,,,,DISCHARGED -9819,2020-09-18,26823.862274730447,201,Emergency,2020-10-08,Normal,9819,382,0,0,,,,DISCHARGED -9820,2019-12-12,16741.267080950478,358,Emergency,2019-12-28,Inconclusive,9820,139,1,14,,,,DISCHARGED -9821,2023-08-19,12118.785653512374,391,Emergency,2023-08-26,Abnormal,9821,328,0,10,,,,DISCHARGED -9822,2022-08-13,38642.26103114028,234,Emergency,2022-08-30,Inconclusive,9822,1,4,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -9823,2023-05-25,47915.214461528565,280,Emergency,2023-06-20,Abnormal,9823,7,2,6,,,,DISCHARGED -9825,2019-09-26,36417.61284594979,317,Emergency,2019-10-24,Inconclusive,9825,249,3,11,,,,DISCHARGED -9826,2021-03-18,37541.875298376304,113,Elective,2021-04-05,Abnormal,9826,138,4,19,,,,DISCHARGED -9827,2023-04-13,34757.78975456076,205,Elective,2023-05-06,Abnormal,9827,123,3,24,,,,DISCHARGED -9828,2021-06-09,13435.528635815212,266,Elective,2021-06-13,Normal,9828,308,4,5,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9829,2020-10-20,31488.027156085187,328,Elective,2020-11-18,Abnormal,9829,227,0,21,,,,DISCHARGED -9830,2021-06-20,21340.88365488702,165,Elective,2021-07-12,Normal,9830,9,0,2,,,,DISCHARGED -9831,2020-03-02,27189.88326150428,347,Elective,2020-03-14,Normal,9831,468,2,9,,,,DISCHARGED -9832,2021-03-13,33795.96129444848,372,Urgent,2021-03-24,Normal,9832,211,3,25,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -9833,2022-06-10,44801.62700601499,221,Elective,2022-06-30,Inconclusive,9833,111,4,20,,,,DISCHARGED -9834,2021-03-07,45206.9820431323,376,Urgent,2021-03-22,Abnormal,9834,7,1,25,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -9835,2020-09-21,42817.19779737234,285,Emergency,2020-10-18,Normal,9835,291,1,21,,,,DISCHARGED -9836,2023-05-13,28844.185454967195,246,Urgent,2023-05-31,Inconclusive,9836,476,2,29,,,,DISCHARGED -9837,2020-10-27,40771.30573754242,480,Emergency,2020-11-25,Normal,9837,361,3,3,,,,DISCHARGED -9838,2022-01-09,41197.52402614246,420,Emergency,2022-01-25,Inconclusive,9838,459,1,12,,,,DISCHARGED -9839,2022-05-21,44684.03127045113,148,Elective,2022-05-31,Abnormal,9839,252,2,18,,,,DISCHARGED -9840,2022-03-25,26692.800531825986,445,Elective,2022-04-17,Normal,9840,13,2,4,,,,DISCHARGED -9841,2020-09-11,14047.059542709438,195,Urgent,2020-10-02,Abnormal,9841,239,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9842,2023-06-19,23031.06799478597,230,Emergency,2023-06-27,Abnormal,9842,437,1,26,,,,DISCHARGED -9843,2022-12-03,37979.31092166392,352,Emergency,2022-12-25,Normal,9843,241,1,21,,,,DISCHARGED -9845,2023-03-27,26350.532740571187,272,Elective,2023-04-05,Inconclusive,9845,468,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9846,2019-06-20,38745.17587433256,275,Emergency,2019-06-22,Abnormal,9846,341,0,0,,,,DISCHARGED -9847,2021-09-06,15620.254668842545,295,Emergency,2021-09-29,Inconclusive,9847,148,1,20,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -9848,2019-07-12,20519.99016059257,220,Urgent,2019-07-23,Normal,9848,235,4,20,,,,DISCHARGED -9849,2020-08-17,42053.7688302178,338,Urgent,2020-08-19,Abnormal,9849,305,0,27,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -9850,2020-12-15,11011.46410275345,207,Elective,2021-01-13,Inconclusive,9850,477,0,15,,,,DISCHARGED -9851,2020-01-23,44496.9101828404,142,Elective,2020-02-20,Normal,9851,166,0,15,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -9852,2023-05-29,35696.85736045369,159,Urgent,2023-05-31,Abnormal,9852,19,0,15,,,,DISCHARGED -9854,2019-04-28,18184.480136417707,258,Urgent,2019-05-04,Normal,9854,215,2,27,,,,DISCHARGED -9856,2020-05-29,24240.32310302941,367,Elective,2020-06-02,Normal,9856,342,4,21,,,,DISCHARGED -9857,2022-11-19,41595.22025421151,294,Elective,2022-11-29,Inconclusive,9857,134,3,18,,,,DISCHARGED -9858,2023-03-24,42645.15112144123,252,Urgent,2023-03-25,Abnormal,9858,392,1,15,,,,DISCHARGED -9859,2020-06-30,8056.605525248469,176,Emergency,2020-07-30,Abnormal,9859,128,0,0,,,,DISCHARGED -9860,2023-10-05,34659.15796406989,414,Urgent,,Inconclusive,9860,409,3,19,,,,OPEN -9861,2023-03-22,21619.576123892017,142,Elective,2023-04-03,Normal,9861,421,2,19,,,,DISCHARGED -9862,2023-08-23,35817.969737550135,316,Emergency,2023-09-08,Inconclusive,9862,293,3,9,,,,DISCHARGED -9863,2019-12-29,48335.96428065138,146,Elective,2020-01-13,Abnormal,9863,245,0,1,,,,DISCHARGED -9864,2023-05-17,10810.151737261876,443,Urgent,2023-06-03,Inconclusive,9864,188,4,13,,,,DISCHARGED -9865,2022-05-16,23232.54753921958,382,Emergency,2022-05-24,Normal,9865,43,3,7,,,,DISCHARGED -9866,2019-04-16,31485.60579909287,390,Emergency,2019-04-20,Inconclusive,9866,85,0,5,,,,DISCHARGED -9867,2023-02-22,23193.954195134866,247,Emergency,2023-02-28,Abnormal,9867,43,0,27,,,,DISCHARGED -9868,2023-06-03,13795.300114503212,163,Elective,,Abnormal,9868,329,1,2,,,,OPEN -9870,2019-12-14,41041.61450399758,367,Emergency,2020-01-04,Inconclusive,9870,374,1,15,,,,DISCHARGED -9872,2021-06-12,4427.709908878663,398,Urgent,2021-06-21,Inconclusive,9872,445,4,16,,,,DISCHARGED -9873,2020-10-27,39196.8179375508,228,Elective,2020-11-03,Inconclusive,9873,377,1,11,,,,DISCHARGED -9874,2019-02-22,37733.90503375637,299,Urgent,2019-02-25,Inconclusive,9874,389,4,26,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9875,2021-06-27,38382.05769240431,233,Elective,2021-07-18,Inconclusive,9875,144,2,18,,,,DISCHARGED -9876,2018-11-28,40070.90994005198,107,Emergency,2018-12-18,Abnormal,9876,50,2,23,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -9879,2020-04-12,24461.09201046662,232,Emergency,2020-04-21,Abnormal,9879,241,1,19,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -9880,2023-05-28,8566.857147250108,265,Urgent,,Abnormal,9880,293,2,2,,,,OPEN -9881,2023-09-19,18698.263748536832,373,Elective,,Inconclusive,9881,407,3,12,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",OPEN -9882,2023-05-10,24288.40903048542,367,Emergency,,Inconclusive,9882,50,3,15,,,,OPEN -9883,2023-10-27,49318.25219949161,114,Emergency,2023-11-10,Normal,9883,265,3,10,,,,DISCHARGED -9886,2022-09-23,2313.393614715073,153,Urgent,2022-10-10,Inconclusive,9886,119,2,19,,,,DISCHARGED -9887,2020-12-17,14335.201916936188,326,Emergency,2020-12-30,Inconclusive,9887,199,3,26,,,,DISCHARGED -9888,2023-02-12,13307.3476128259,104,Urgent,2023-03-01,Abnormal,9888,404,4,15,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -9892,2020-11-02,32158.62433197718,319,Elective,2020-11-29,Inconclusive,9892,247,0,19,,,,DISCHARGED -9893,2022-08-04,16652.75320255519,327,Emergency,2022-08-18,Inconclusive,9893,69,1,1,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -9894,2019-02-11,39980.41430525488,142,Elective,2019-02-16,Normal,9894,340,4,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9896,2019-11-23,6858.789498835268,473,Elective,2019-12-12,Abnormal,9896,56,3,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -9897,2021-01-10,36286.222945517125,218,Emergency,2021-01-18,Inconclusive,9897,381,0,27,,,,DISCHARGED -9898,2021-11-02,9368.304069240534,409,Elective,2021-11-16,Inconclusive,9898,38,1,24,,,,DISCHARGED -9899,2022-02-23,39832.75477666103,495,Elective,2022-03-13,Normal,9899,471,4,3,,,,DISCHARGED -9901,2020-03-27,25964.156646785843,488,Emergency,2020-04-19,Inconclusive,9901,288,1,27,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9902,2019-03-14,30944.78314296131,259,Elective,2019-03-29,Abnormal,9902,442,2,16,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -9903,2023-02-24,3639.902717162287,113,Elective,2023-03-02,Normal,9903,17,3,0,,,,DISCHARGED -9904,2022-09-14,29362.847315438463,448,Elective,2022-09-15,Abnormal,9904,439,4,0,,,,DISCHARGED -9905,2018-12-04,28095.84431737133,251,Urgent,2018-12-18,Inconclusive,9905,219,4,29,,,,DISCHARGED -9906,2019-07-11,26808.05931344583,442,Emergency,2019-07-17,Inconclusive,9906,312,0,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -9907,2021-12-30,5747.392516161541,244,Urgent,2022-01-27,Inconclusive,9907,243,0,21,,,,DISCHARGED -9908,2019-05-30,47331.61914995915,454,Emergency,2019-06-24,Inconclusive,9908,351,0,11,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9909,2022-01-05,28391.15507272907,198,Emergency,2022-01-20,Abnormal,9909,459,1,5,,,,DISCHARGED -9910,2018-11-10,36241.46652564103,495,Urgent,2018-11-22,Normal,9910,303,3,5,,,,DISCHARGED -9912,2021-01-15,5656.9830731089405,234,Emergency,2021-02-06,Inconclusive,9912,297,1,24,,,,DISCHARGED -9913,2019-04-27,27286.86204746917,485,Elective,2019-05-02,Inconclusive,9913,282,3,16,,,,DISCHARGED -9914,2020-03-21,11794.209346759251,279,Emergency,2020-04-03,Inconclusive,9914,73,4,25,,,,DISCHARGED -9915,2022-10-07,20330.483167829065,296,Elective,2022-10-14,Normal,9915,109,1,21,,,,DISCHARGED -9916,2021-02-19,25956.520629540857,199,Emergency,2021-02-27,Abnormal,9916,179,1,12,,,,DISCHARGED -9917,2019-07-13,33120.34668950248,219,Emergency,2019-08-11,Abnormal,9917,425,1,7,,,,DISCHARGED -9918,2019-02-27,48186.31782177068,360,Elective,2019-03-07,Normal,9918,31,2,23,,,,DISCHARGED -9919,2019-02-06,1725.1148896641266,415,Elective,2019-02-18,Normal,9919,233,3,11,,,,DISCHARGED -9920,2018-11-17,27613.682838009183,178,Emergency,2018-12-04,Inconclusive,9920,281,3,14,,,,DISCHARGED -9921,2022-07-08,10205.114353228477,131,Urgent,2022-08-03,Abnormal,9921,24,1,18,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -9922,2020-04-20,40729.62766346608,307,Elective,2020-05-09,Inconclusive,9922,330,2,28,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9923,2023-07-29,20494.000982512905,251,Urgent,2023-08-17,Inconclusive,9923,278,1,20,,,,DISCHARGED -9925,2022-03-01,3531.068696569242,429,Elective,2022-03-23,Normal,9925,225,3,25,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9926,2023-09-06,47419.39761466359,201,Emergency,,Normal,9926,56,4,19,,,,OPEN -9927,2023-08-15,11198.217185056232,130,Elective,2023-08-27,Abnormal,9927,179,2,27,,,,DISCHARGED -9928,2019-01-30,21250.44793985744,148,Urgent,2019-02-27,Normal,9928,231,2,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9929,2021-09-27,24744.98632893047,478,Elective,2021-10-01,Normal,9929,381,1,8,,,,DISCHARGED -9930,2022-11-25,24646.93435464152,386,Emergency,2022-12-21,Inconclusive,9930,342,4,20,,,,DISCHARGED -9931,2021-01-06,21209.20306730281,360,Urgent,2021-01-26,Abnormal,9931,476,3,17,,,,DISCHARGED -9932,2023-07-17,44446.0092126594,264,Urgent,2023-07-25,Abnormal,9932,286,0,27,,,,DISCHARGED -9933,2023-07-09,18734.46151956501,154,Emergency,2023-07-27,Abnormal,9933,63,3,1,,,,DISCHARGED -9934,2019-10-15,29530.40378547967,133,Urgent,2019-11-06,Inconclusive,9934,454,3,10,,,,DISCHARGED -9935,2021-03-02,14816.249950810636,439,Elective,2021-03-14,Inconclusive,9935,231,4,22,,,,DISCHARGED -9936,2019-04-29,35092.03441461157,185,Emergency,2019-05-13,Abnormal,9936,288,2,19,,,,DISCHARGED -9937,2021-01-19,5147.765404180009,308,Elective,2021-02-04,Abnormal,9937,212,3,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9938,2022-09-21,31242.295549312053,315,Emergency,2022-09-30,Abnormal,9938,257,2,20,,,,DISCHARGED -9939,2023-02-18,11720.131219777695,342,Elective,2023-02-28,Inconclusive,9939,17,4,17,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9940,2019-11-15,46252.88787641144,175,Elective,2019-11-19,Inconclusive,9940,174,4,14,,,,DISCHARGED -9942,2020-11-11,16708.970337510567,214,Urgent,2020-11-29,Normal,9942,416,1,6,,,,DISCHARGED -9943,2019-12-12,30199.155225932805,229,Elective,2019-12-14,Inconclusive,9943,228,0,15,,,,DISCHARGED -9944,2022-04-03,6725.077713641716,185,Emergency,2022-04-21,Abnormal,9944,225,4,24,,,,DISCHARGED -9945,2023-07-21,24267.25807774405,306,Elective,2023-08-02,Normal,9945,83,4,28,,,,DISCHARGED -9946,2019-06-13,26137.619165325617,236,Elective,2019-06-18,Abnormal,9946,290,2,0,,,,DISCHARGED -9947,2019-05-04,48795.9726263526,408,Emergency,2019-05-25,Abnormal,9947,434,4,27,,,,DISCHARGED -9948,2019-12-30,27439.21562104252,125,Urgent,2020-01-10,Normal,9948,369,3,17,,,,DISCHARGED -9949,2022-02-14,4692.280656836254,451,Urgent,2022-03-10,Normal,9949,245,1,26,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9950,2023-01-10,7397.07567111418,118,Urgent,,Abnormal,9950,401,1,21,,,,OPEN -9951,2023-02-06,47210.79219383532,233,Urgent,2023-02-28,Normal,9951,109,3,7,,,,DISCHARGED -9952,2021-12-31,21104.79583255904,258,Elective,2022-01-16,Abnormal,9952,253,4,6,,,,DISCHARGED -9953,2019-07-17,10612.01005106014,333,Emergency,2019-08-03,Abnormal,9953,87,0,24,,,,DISCHARGED -9955,2023-03-11,26695.446744601653,452,Elective,2023-03-23,Abnormal,9955,71,4,29,,,,DISCHARGED -9956,2021-08-24,34762.966698467644,204,Elective,2021-09-22,Normal,9956,380,1,1,,,,DISCHARGED -9957,2020-05-29,6062.385270237259,447,Emergency,2020-06-10,Inconclusive,9957,29,0,11,,,,DISCHARGED -9958,2022-01-01,21208.288062255288,478,Urgent,2022-01-13,Normal,9958,171,2,15,,,,DISCHARGED -9959,2020-06-01,4662.825734981702,464,Elective,2020-06-12,Normal,9959,308,2,8,,,,DISCHARGED -9960,2019-07-01,31462.12268844626,478,Elective,2019-07-22,Abnormal,9960,393,4,19,,,,DISCHARGED -9961,2021-11-05,21106.01470190646,340,Elective,2021-11-22,Inconclusive,9961,342,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9962,2022-09-13,23271.652610987217,120,Elective,2022-09-27,Inconclusive,9962,435,0,14,,,,DISCHARGED -9963,2022-11-20,35072.34407888043,147,Urgent,2022-12-13,Abnormal,9963,176,0,2,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9964,2022-11-29,10615.971734907136,353,Elective,2022-12-15,Abnormal,9964,138,4,22,,,,DISCHARGED -9965,2021-10-23,11621.731148179237,245,Elective,2021-10-27,Abnormal,9965,193,1,20,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9966,2021-02-04,6929.770519816653,235,Urgent,2021-02-22,Inconclusive,9966,185,2,12,,,,DISCHARGED -9967,2023-08-21,47126.00320093231,256,Elective,2023-09-07,Normal,9967,217,0,20,,,,DISCHARGED -9968,2022-08-18,31861.53905660595,484,Elective,2022-08-26,Inconclusive,9968,163,1,27,,,,DISCHARGED -9969,2023-09-12,7716.363471943133,462,Elective,2023-09-20,Inconclusive,9969,160,4,12,,,,DISCHARGED -9970,2020-10-11,9640.998632347708,308,Emergency,2020-11-03,Abnormal,9970,430,3,1,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9971,2021-07-25,38831.70789279436,151,Emergency,2021-08-11,Abnormal,9971,12,0,5,,,,DISCHARGED -9972,2019-09-15,27648.104886261364,134,Urgent,2019-09-19,Abnormal,9972,295,3,5,,,,DISCHARGED -9973,2020-11-17,18614.469753615056,202,Urgent,2020-12-08,Abnormal,9973,88,1,11,,,,DISCHARGED -9974,2022-05-09,10021.900739617146,298,Urgent,2022-05-31,Abnormal,9974,323,2,3,,,,DISCHARGED -9975,2023-09-13,20793.03137670616,351,Urgent,2023-09-21,Normal,9975,41,1,4,,,,DISCHARGED -9976,2019-03-06,37726.18175745981,245,Elective,2019-04-05,Normal,9976,402,2,22,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9977,2020-05-24,22434.60461042568,103,Emergency,2020-05-29,Abnormal,9977,209,1,29,,,,DISCHARGED -9978,2021-03-08,4997.5802356219,170,Emergency,2021-03-31,Normal,9978,228,0,7,,,,DISCHARGED -9979,2022-01-30,14416.634915039309,307,Urgent,2022-02-19,Inconclusive,9979,349,0,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9980,2023-01-09,47369.54997726243,298,Urgent,2023-01-31,Abnormal,9980,274,3,20,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9981,2021-08-23,46629.771749257714,151,Emergency,2021-09-21,Abnormal,9981,441,1,27,,,,DISCHARGED -9982,2021-01-26,35961.40669720744,235,Elective,2021-02-13,Abnormal,9982,278,1,2,,,,DISCHARGED -9983,2022-01-22,1675.088638953351,374,Elective,2022-02-05,Abnormal,9983,250,3,22,,,,DISCHARGED -9984,2021-09-17,37181.84125741365,151,Emergency,2021-10-02,Normal,9984,309,4,7,,,,DISCHARGED -9985,2019-09-14,27476.721750744066,351,Urgent,2019-09-26,Inconclusive,9985,207,1,18,,,,DISCHARGED -9987,2022-04-18,27920.309415771462,128,Urgent,2022-05-09,Inconclusive,9987,320,1,20,,,,DISCHARGED -9989,2020-07-23,36044.46748784443,137,Elective,2020-08-15,Abnormal,9989,139,1,10,,,,DISCHARGED -9990,2020-10-30,48753.12903257892,179,Urgent,2020-11-13,Inconclusive,9990,279,4,17,,,,DISCHARGED -9991,2022-06-03,14426.402161726,265,Emergency,2022-06-07,Normal,9991,33,0,9,,,,DISCHARGED -9994,2021-12-25,16793.598395039444,341,Elective,2022-01-06,Inconclusive,9994,308,3,25,,,,DISCHARGED -9995,2022-07-29,39606.84008259848,110,Elective,2022-08-02,Abnormal,9995,391,4,27,,,,DISCHARGED -9996,2022-01-06,5995.717487831519,244,Emergency,2022-01-29,Normal,9996,17,2,19,,,,DISCHARGED -9997,2022-07-01,49559.20290467316,312,Elective,2022-07-15,Normal,9997,56,2,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9998,2020-02-06,25236.344760975877,420,Urgent,2020-02-26,Normal,9998,111,4,19,,,,DISCHARGED -9999,2023-03-22,37223.965864725855,290,Emergency,2023-04-15,Abnormal,9999,4,4,27,,,,DISCHARGED diff --git a/langchain-rag-app/source_code_step_3/docker-compose.yml b/langchain-rag-app/source_code_step_3/docker-compose.yml index d149e2b875..66042a06e0 100644 --- a/langchain-rag-app/source_code_step_3/docker-compose.yml +++ b/langchain-rag-app/source_code_step_3/docker-compose.yml @@ -1,8 +1,24 @@ -version: '3' - services: + neo4j: + image: neo4j:2026.05-community + ports: + - "7474:7474" + - "7687:7687" + environment: + - NEO4J_AUTH=neo4j/${NEO4J_PASSWORD} + - NEO4J_PLUGINS=["apoc"] + volumes: + - neo4j_data:/data + hospital_neo4j_etl: build: context: ./hospital_neo4j_etl env_file: - - .env \ No newline at end of file + - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 + depends_on: + - neo4j + +volumes: + neo4j_data: diff --git a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/Dockerfile b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/Dockerfile +++ b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/pyproject.toml b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/pyproject.toml index 35c7467ebb..eb44f09746 100644 --- a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/pyproject.toml +++ b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/pyproject.toml @@ -2,9 +2,9 @@ name = "hospital_neo4j_etl" version = "0.1" dependencies = [ - "neo4j==5.14.1", + "neo4j==6.2.0", "retry==0.9.2" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/entrypoint.sh b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/entrypoint.sh index 94764de2a7..af607f4c6a 100644 --- a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/entrypoint.sh +++ b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Running ETL to move hospital data from csvs to Neo4j..." # Run the ETL script -python hospital_bulk_csv_write.py \ No newline at end of file +python hospital_bulk_csv_write.py diff --git a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/hospital_bulk_csv_write.py b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/hospital_bulk_csv_write.py index fa7c6c161e..84d9b82766 100644 --- a/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/hospital_bulk_csv_write.py +++ b/langchain-rag-app/source_code_step_3/hospital_neo4j_etl/src/hospital_bulk_csv_write.py @@ -29,7 +29,7 @@ def _set_uniqueness_constraints(tx, node): query = f"""CREATE CONSTRAINT IF NOT EXISTS FOR (n:{node}) REQUIRE n.id IS UNIQUE;""" - _ = tx.run(query, {}) + tx.run(query, {}) @retry(tries=100, delay=10) @@ -55,7 +55,7 @@ def load_hospital_graph_from_csv() -> None: name: hospitals.hospital_name, state_name: hospitals.hospital_state}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading payer nodes") with driver.session(database="neo4j") as session: @@ -65,7 +65,7 @@ def load_hospital_graph_from_csv() -> None: MERGE (p:Payer {{id: toInteger(payers.payer_id), name: payers.payer_name}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading physician nodes") with driver.session(database="neo4j") as session: @@ -80,7 +80,7 @@ def load_hospital_graph_from_csv() -> None: salary: toFloat(physicians.salary) }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading visit nodes") with driver.session(database="neo4j") as session: @@ -103,7 +103,7 @@ def load_hospital_graph_from_csv() -> None: ON CREATE SET v.discharge_date = visits.discharge_date ON MATCH SET v.discharge_date = visits.discharge_date """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading patient nodes") with driver.session(database="neo4j") as session: @@ -117,7 +117,7 @@ def load_hospital_graph_from_csv() -> None: blood_type: patients.patient_blood_type }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading review nodes") with driver.session(database="neo4j") as session: @@ -131,7 +131,7 @@ def load_hospital_graph_from_csv() -> None: hospital_name: reviews.hospital_name }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'AT' relationships") with driver.session(database="neo4j") as session: @@ -142,7 +142,7 @@ def load_hospital_graph_from_csv() -> None: toInteger(trim(row.`hospital_id`))}}) MERGE (source)-[r: `AT`]->(target) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'WRITES' relationships") with driver.session(database="neo4j") as session: @@ -152,7 +152,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (r:Review {{id: toInteger(reviews.review_id)}}) MERGE (v)-[writes:WRITES]->(r) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'TREATS' relationships") with driver.session(database="neo4j") as session: @@ -162,7 +162,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[treats:TREATS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'COVERED_BY' relationships") with driver.session(database="neo4j") as session: @@ -175,7 +175,7 @@ def load_hospital_graph_from_csv() -> None: covered_by.service_date = visits.discharge_date, covered_by.billing_amount = toFloat(visits.billing_amount) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'HAS' relationships") with driver.session(database="neo4j") as session: @@ -185,7 +185,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[has:HAS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'EMPLOYS' relationships") with driver.session(database="neo4j") as session: @@ -195,7 +195,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (p:Physician {{id: toInteger(visits.physician_id)}}) MERGE (h)-[employs:EMPLOYS]->(p) """ - _ = session.run(query, {}) + session.run(query, {}) if __name__ == "__main__": diff --git a/langchain-rag-app/source_code_step_3/requirements.txt b/langchain-rag-app/source_code_step_3/requirements.txt new file mode 100644 index 0000000000..b4295fb85f --- /dev/null +++ b/langchain-rag-app/source_code_step_3/requirements.txt @@ -0,0 +1,2 @@ +neo4j==6.2.0 +retry==0.9.2 diff --git a/langchain-rag-app/source_code_step_4/chatbot_api/pyproject.toml b/langchain-rag-app/source_code_step_4/chatbot_api/pyproject.toml index 330db6ddb4..bc7d970213 100644 --- a/langchain-rag-app/source_code_step_4/chatbot_api/pyproject.toml +++ b/langchain-rag-app/source_code_step_4/chatbot_api/pyproject.toml @@ -2,18 +2,16 @@ name = "chatbot_api" version = "0.1" dependencies = [ - "asyncio==3.4.3", - "fastapi==0.109.0", - "langchain==0.1.0", - "langchain-openai==0.0.2", - "langchainhub==0.1.14", - "neo4j==5.14.1", - "numpy==1.26.2", - "openai==1.7.2", - "opentelemetry-api==1.22.0", - "pydantic==2.5.1", - "uvicorn==0.25.0" + "fastapi==0.136.3", + "langchain==1.3.4", + "langchain-openai==1.2.2", + "langchain-neo4j==0.9.0", + "neo4j==6.2.0", + "numpy==2.4.6", + "openai==2.41.0", + "pydantic==2.13.4", + "uvicorn==0.49.0" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_4/chatbot_api/src/agents/hospital_rag_agent.py b/langchain-rag-app/source_code_step_4/chatbot_api/src/agents/hospital_rag_agent.py index 7094a93011..b891829b8a 100644 --- a/langchain-rag-app/source_code_step_4/chatbot_api/src/agents/hospital_rag_agent.py +++ b/langchain-rag-app/source_code_step_4/chatbot_api/src/agents/hospital_rag_agent.py @@ -1,10 +1,11 @@ import os +from langchain.agents import create_agent +from langchain_core.tools import Tool +from langchain_openai import ChatOpenAI + from chains.hospital_cypher_chain import hospital_cypher_chain from chains.hospital_review_chain import reviews_vector_chain -from langchain import hub -from langchain.agents import AgentExecutor, Tool, create_openai_functions_agent -from langchain_openai import ChatOpenAI from tools.wait_times import ( get_current_wait_times, get_most_available_hospital, @@ -12,12 +13,28 @@ HOSPITAL_AGENT_MODEL = os.getenv("HOSPITAL_AGENT_MODEL") -hospital_agent_prompt = hub.pull("hwchase17/openai-functions-agent") +agent_system_prompt = ( + "You are a helpful assistant for a hospital system. Use the tools " + "available to you to answer the user's questions about patients, " + "visits, physicians, hospitals, insurance payers, patient reviews, " + "and current wait times." +) + + +def query_reviews(query: str) -> str: + """Answer questions about patient experiences from their reviews.""" + return reviews_vector_chain.invoke(query) + + +def query_graph(query: str) -> str: + """Answer questions by querying the hospital graph database.""" + return hospital_cypher_chain.invoke(query)["result"] + tools = [ Tool( name="Experiences", - func=reviews_vector_chain.invoke, + func=query_reviews, description="""Useful when you need to answer questions about patient experiences, feelings, or any other qualitative question that could be answered about a patient using semantic @@ -30,7 +47,7 @@ ), Tool( name="Graph", - func=hospital_cypher_chain.invoke, + func=query_graph, description="""Useful for answering questions about patients, physicians, hospitals, insurance payers, patient review statistics, and hospital visit details. Use the entire prompt as @@ -63,20 +80,10 @@ ), ] -chat_model = ChatOpenAI( - model=HOSPITAL_AGENT_MODEL, - temperature=0, -) - -hospital_rag_agent = create_openai_functions_agent( - llm=chat_model, - prompt=hospital_agent_prompt, - tools=tools, -) +chat_model = ChatOpenAI(model=HOSPITAL_AGENT_MODEL) -hospital_rag_agent_executor = AgentExecutor( - agent=hospital_rag_agent, +hospital_rag_agent_executor = create_agent( + model=chat_model, tools=tools, - return_intermediate_steps=True, - verbose=True, + system_prompt=agent_system_prompt, ) diff --git a/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_cypher_chain.py b/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_cypher_chain.py index 198a5df311..71d8a9694f 100644 --- a/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_cypher_chain.py +++ b/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_cypher_chain.py @@ -1,8 +1,7 @@ import os -from langchain.chains import GraphCypherQAChain -from langchain.prompts import PromptTemplate -from langchain_community.graphs import Neo4jGraph +from langchain_core.prompts import PromptTemplate +from langchain_neo4j import GraphCypherQAChain, Neo4jGraph from langchain_openai import ChatOpenAI HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -72,15 +71,15 @@ LIMIT 1 # How many non-emergency patients in North Carolina have written reviews? -match (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) -where h.state_name = 'NC' and v.admission_type <> 'Emergency' -return count(*) +MATCH (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) +WHERE h.state_name = 'NC' and v.admission_type <> 'Emergency' +RETURN count(*) String category values: Test results are one of: 'Inconclusive', 'Normal', 'Abnormal' Visit statuses are one of: 'OPEN', 'DISCHARGED' Admission Types are one of: 'Elective', 'Emergency', 'Urgent' -Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicare', +Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicaid', 'Aetna' A visit is considered open if its status is 'OPEN' and the discharge date is @@ -88,7 +87,7 @@ Use abbreviations when filtering on hospital states (e.g. "Texas" is "TX", "Colorado" is "CO", "North Carolina" is "NC", -"Florida" is "FL", "Georgia" is "GA, etc.) +"Florida" is "FL", "Georgia" is "GA", etc.) Make sure to use IS NULL or IS NOT NULL when analyzing missing properties. Never return embedding properties in your queries. You must never include the @@ -109,7 +108,7 @@ qa_generation_template = """You are an assistant that takes the results from a Neo4j Cypher query and forms a human-readable response. The query results section contains the results of a Cypher query that was -generated based on a users natural language question. The provided +generated based on a user's natural language question. The provided information is authoritative, you must never doubt it or try to use your internal knowledge to correct it. Make the answer sound like a response to the question. @@ -128,15 +127,14 @@ results are in units of days unless otherwise specified. When names are provided in the query results, such as hospital names, -beware of any names that have commas or other punctuation in them. +beware of any names that have commas or other punctuation in them. For instance, 'Jones, Brown and Murray' is a single hospital name, not multiple hospitals. Make sure you return any list of names in a way that isn't ambiguous and allows someone to tell what the full names are. Never say you don't have the right information if there is data in -the query results. Make sure to show all the relevant query results -if you're asked. +the query results. Always use the data in the query results. Helpful Answer: """ @@ -146,12 +144,13 @@ ) hospital_cypher_chain = GraphCypherQAChain.from_llm( - cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL, temperature=0), - qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), + cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL), + qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL), graph=graph, verbose=True, qa_prompt=qa_generation_prompt, cypher_prompt=cypher_generation_prompt, validate_cypher=True, top_k=100, + allow_dangerous_requests=True, ) diff --git a/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_review_chain.py b/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_review_chain.py index 28ebe95513..40fb7e74e7 100644 --- a/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_review_chain.py +++ b/langchain-rag-app/source_code_step_4/chatbot_api/src/chains/hospital_review_chain.py @@ -1,14 +1,20 @@ +import logging import os -from langchain.chains import RetrievalQA -from langchain.prompts import ( +from langchain_core.output_parsers import StrOutputParser +from langchain_core.prompts import ( ChatPromptTemplate, HumanMessagePromptTemplate, PromptTemplate, SystemMessagePromptTemplate, ) -from langchain.vectorstores.neo4j_vector import Neo4jVector -from langchain_openai import ChatOpenAI, OpenAIEmbeddings +from langchain_core.runnables import RunnablePassthrough +from langchain_neo4j import Neo4jVector +from langchain_openai import ChatOpenAI +from langchain_openai import OpenAIEmbeddings + +# Silence Neo4j's deprecation notice for db.index.vector.queryNodes +logging.getLogger("neo4j.notifications").setLevel(logging.ERROR) HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -29,11 +35,10 @@ ) review_template = """Your job is to use patient -reviews to answer questions about their experience at -a hospital. Use the following context to answer questions. -Be as detailed as possible, but don't make up any information -that's not from the context. If you don't know an answer, -say you don't know. +reviews to answer questions about their experience at a hospital. Use +the following context to answer questions. Be as detailed as possible, +but don't make up any information that's not from the context. If you +don't know an answer, say you don't know. {context} """ @@ -52,9 +57,12 @@ input_variables=["context", "question"], messages=messages ) -reviews_vector_chain = RetrievalQA.from_chain_type( - llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), - chain_type="stuff", - retriever=neo4j_vector_index.as_retriever(k=12), +reviews_retriever = neo4j_vector_index.as_retriever(search_kwargs={"k": 12}) +review_chat_model = ChatOpenAI(model=HOSPITAL_QA_MODEL) + +reviews_vector_chain = ( + {"context": reviews_retriever, "question": RunnablePassthrough()} + | review_prompt + | review_chat_model + | StrOutputParser() ) -reviews_vector_chain.combine_documents_chain.llm_chain.prompt = review_prompt diff --git a/langchain-rag-app/source_code_step_4/chatbot_api/src/tools/wait_times.py b/langchain-rag-app/source_code_step_4/chatbot_api/src/tools/wait_times.py index f696cfed82..4840f9d156 100644 --- a/langchain-rag-app/source_code_step_4/chatbot_api/src/tools/wait_times.py +++ b/langchain-rag-app/source_code_step_4/chatbot_api/src/tools/wait_times.py @@ -2,7 +2,7 @@ from typing import Any import numpy as np -from langchain_community.graphs import Neo4jGraph +from langchain_neo4j import Neo4jGraph def _get_current_hospitals() -> list[str]: @@ -20,14 +20,11 @@ def _get_current_hospitals() -> list[str]: """ ) - current_hospitals = [d["hospital_name"].lower() for d in current_hospitals] - - return current_hospitals + return [d["hospital_name"].lower() for d in current_hospitals] def _get_current_wait_time_minutes(hospital: str) -> int: """Get the current wait time at a hospital in minutes.""" - current_hospitals = _get_current_hospitals() if hospital.lower() not in current_hospitals: @@ -38,7 +35,6 @@ def _get_current_wait_time_minutes(hospital: str) -> int: def get_current_wait_times(hospital: str) -> str: """Get the current wait time at a hospital formatted as a string.""" - wait_time_in_minutes = _get_current_wait_time_minutes(hospital) if wait_time_in_minutes == -1: @@ -47,16 +43,13 @@ def get_current_wait_times(hospital: str) -> str: hours, minutes = divmod(wait_time_in_minutes, 60) if hours > 0: - formatted_wait_time = f"{hours} hours {minutes} minutes" + return f"{hours} hours {minutes} minutes" else: - formatted_wait_time = f"{minutes} minutes" - - return formatted_wait_time + return f"{minutes} minutes" def get_most_available_hospital(_: Any) -> dict[str, float]: """Find the hospital with the shortest wait time.""" - current_hospitals = _get_current_hospitals() current_wait_times = [ diff --git a/langchain-rag-app/source_code_step_4/data/hospitals.csv b/langchain-rag-app/source_code_step_4/data/hospitals.csv deleted file mode 100644 index f99d3f84d6..0000000000 --- a/langchain-rag-app/source_code_step_4/data/hospitals.csv +++ /dev/null @@ -1,31 +0,0 @@ -hospital_id,hospital_name,hospital_state -0,Wallace-Hamilton,CO -1,"Burke, Griffin and Cooper",NC -2,Walton LLC,FL -3,Garcia Ltd,NC -4,"Jones, Brown and Murray",NC -5,Boyd PLC,GA -6,"Wheeler, Bryant and Johns",FL -7,Brown Inc,FL -8,"Smith, Edwards and Obrien",FL -9,Brown-Golden,NC -10,Little-Spencer,CO -11,Rose Inc,FL -12,"Malone, Thompson and Mejia",NC -13,Mcneil-Ali,GA -14,"Jones, Taylor and Garcia",CO -15,Richardson-Powell,GA -16,Castaneda-Hardy,CO -17,Burch-White,NC -18,Cunningham and Sons,TX -19,"Bell, Mcknight and Willis",CO -20,Pugh-Rogers,GA -21,"Rush, Owens and Johnson",NC -22,Pearson LLC,CO -23,Taylor and Sons,TX -24,Schultz-Powers,TX -25,Jordan Inc,FL -26,Lewis-Nelson,FL -27,Shea LLC,GA -28,Huynh PLC,CO -29,Vaughn PLC,CO diff --git a/langchain-rag-app/source_code_step_4/data/patients.csv b/langchain-rag-app/source_code_step_4/data/patients.csv deleted file mode 100644 index 8f6e0c03d2..0000000000 --- a/langchain-rag-app/source_code_step_4/data/patients.csv +++ /dev/null @@ -1,9650 +0,0 @@ -patient_name,patient_sex,patient_id,patient_dob,patient_blood_type -Tiffany Ramirez,Female,0,1994-10-06,O+ -Ruben Burns,Male,1,1973-03-31,A- -Chad Byrd,Male,2,1932-05-10,O- -Antonio Frederick,Male,3,1944-10-04,AB+ -Mrs. Brandy Flowers,Male,4,1989-01-26,AB+ -Patrick Parker,Male,5,1962-10-04,A+ -Charles Horton,Male,6,1960-11-23,B- -Patty Norman,Female,7,1990-07-23,B- -Ryan Hayes,Male,8,1947-02-26,O- -Sharon Perez,Female,9,1976-02-19,AB- -Amy Roberts,Male,10,1942-02-13,AB+ -Mrs. Caroline Farrell,Female,11,1990-02-17,A+ -Christina Williams,Female,12,1969-06-28,O- -William Page,Female,13,1961-02-10,B- -Michael Bradshaw,Female,14,1973-11-14,AB+ -Brian Dorsey,Female,15,1952-10-14,A- -Olivia Gonzalez,Male,16,1934-08-13,A+ -Teresa Caldwell,Male,17,1932-02-09,O+ -Desiree Williams MD,Male,18,1993-11-19,AB+ -Sally Shaw,Male,19,1936-08-30,A+ -William Johnson,Female,20,1944-07-17,O- -Steven Bennett,Male,21,1943-10-31,O+ -Haley Li,Male,22,1947-07-31,A+ -Angela Brown,Female,23,1978-02-06,A+ -Beverly Miller,Male,24,1987-05-01,B+ -Daniel Dickson,Female,25,1984-02-16,B+ -Kimberly Mason,Female,26,1947-07-07,B+ -Francis Newman,Female,27,1953-09-23,B- -Ronnie Hughes,Female,28,2000-04-01,AB- -Shannon Fitzpatrick DVM,Female,29,1981-11-11,AB+ -Teresa Gonzalez,Female,30,1996-05-07,B- -Rodney Maynard,Male,31,1980-06-18,A- -Kevin Johnson,Male,32,1937-07-10,O+ -Rebecca Parsons,Male,33,1999-12-16,AB- -Linda Chavez,Male,34,2002-03-26,A+ -Jennifer Rodriguez,Female,35,1930-07-09,B- -Anna Adams,Female,36,1982-05-06,B+ -Mariah Williams,Male,37,1938-03-25,AB- -Brendan Moody,Male,38,1987-08-12,A- -Michael Burns,Male,39,1935-03-15,AB+ -Miguel Baker,Male,40,1996-01-13,A- -Mr. Christopher Miller,Male,41,1933-06-21,O+ -Theresa Mendoza,Female,42,1979-01-16,O- -Laura Adams,Female,43,1961-03-13,B- -Lauren Barton,Male,44,1939-09-27,B+ -Christina Hernandez,Female,45,1940-08-26,O+ -Kyle Byrd,Female,46,1954-03-14,O- -Jasmine Singleton,Male,47,1969-09-15,B+ -John Griffin,Female,48,1989-08-16,B+ -Justin Kaufman,Female,49,1959-02-05,B+ -Dylan Mcknight,Male,50,1954-01-27,B- -Olivia Ayala,Male,51,1958-11-25,O+ -Frank Mccormick,Male,52,1958-01-27,B+ -Rachael Davidson,Female,53,1953-02-02,A- -Lori Owens,Male,54,1958-01-07,O+ -Frank Reid,Female,55,1960-02-29,AB- -Cynthia Stanton,Male,56,1995-06-06,A- -Nicole Williams,Male,57,1937-02-25,B- -Michael Miller,Male,58,1994-02-19,B+ -Kenneth Lopez,Female,59,2001-01-07,O+ -Gabrielle Russell,Male,60,1991-12-06,A+ -Mary Brown,Male,61,1989-11-17,B- -Evan Martinez,Female,62,1994-04-18,O+ -Amanda Stein DVM,Female,63,2001-05-02,AB- -Paul Graham,Female,64,1973-03-23,B+ -Lisa Gonzalez,Male,65,1976-12-24,O- -Angela Sanchez,Female,66,1963-06-03,B+ -Kimberly Wheeler,Female,67,1952-07-10,O- -Francisco Ritter,Male,68,1969-10-24,A+ -Kenneth Smith,Male,69,1938-08-19,B- -Christina Martinez,Female,70,2002-08-22,AB- -Ryan Richmond,Male,71,1934-05-05,O+ -Linda Wheeler,Male,72,1940-10-18,O+ -Anna Phillips,Male,73,1995-07-18,O- -Juan Patel,Female,74,1983-04-10,AB- -Miguel Fields,Female,75,1932-10-18,A- -Tyler Rosario,Female,76,1961-11-27,A+ -Lisa Johnson,Male,77,1959-08-02,O- -David Sanchez,Male,78,1966-09-26,O- -Teresa Marks,Female,79,1985-05-19,A+ -Jonathan Fernandez,Female,80,1951-11-16,B- -Douglas Crawford,Male,81,1956-07-15,O+ -Anthony Fisher,Female,82,1965-07-26,B- -Kimberly Vargas,Female,83,1948-10-26,AB- -Travis Walker,Female,84,1945-07-16,A- -Amanda Ortiz,Male,85,1930-06-11,B+ -Keith Johns,Female,86,1941-10-07,AB+ -Jesse Williams,Male,87,2002-09-17,AB+ -Michael Ford,Female,88,1932-09-22,AB+ -Jessica Ford,Female,89,1961-07-31,A+ -Thomas Washington,Female,90,1950-11-21,O- -Ariel Davis,Female,91,2000-10-11,A- -Joyce Vaughn,Male,92,1932-10-13,B- -Jermaine Thomas,Female,93,1996-05-27,B+ -Jason Horn,Female,94,1992-06-27,O+ -Samuel Welch,Male,95,1996-06-19,AB+ -Steven Boyer,Male,96,1993-08-25,B- -Gabrielle Francis,Male,97,1996-07-13,AB+ -Christian Guerrero,Male,98,1953-05-09,A- -Christopher Juarez,Male,99,1977-04-06,AB+ -Paul Greer,Male,100,1955-05-18,O+ -Brian Robinson,Female,101,1988-03-28,B+ -Scott Adams,Male,102,1963-05-13,AB- -Amber Solomon,Male,103,1988-02-29,AB- -Jacob Howell,Female,104,1947-05-03,A- -Monica Stevens,Female,105,1953-06-20,AB- -Kurt Sloan,Female,106,1998-08-20,A+ -Allison White,Female,107,1949-09-26,O- -Ronald Rollins,Female,108,1944-06-12,A+ -Albert Dunn,Male,109,1980-07-03,B- -Anthony Armstrong,Female,110,1975-01-13,A+ -William Jacobson,Female,111,1974-05-26,B- -Jennifer Reeves,Male,112,1951-12-03,B- -Tammy Thompson,Male,113,1937-01-12,O- -Susan Mills,Male,114,1989-10-25,O+ -Kelly Manning,Female,115,1935-07-21,B+ -Joseph Barrera,Female,116,1937-05-19,A- -Jason Hunter,Male,117,2001-05-19,O- -Martha Franklin,Male,118,1972-03-23,A- -Alyssa Osborne,Male,119,1944-05-25,AB- -Carlos Young,Male,120,1990-03-29,AB- -Jesse Sanders,Female,121,1948-06-11,A+ -Mrs. Brittany Fields,Female,122,1931-01-27,B- -Melanie Clark,Male,123,1968-04-17,AB+ -Kevin Andrews,Female,124,1964-09-05,AB+ -Caitlin Sanders,Male,125,1946-02-18,A- -Sabrina Patterson,Female,126,1939-10-02,B- -Destiny Parks,Female,127,1946-12-07,A- -Antonio Miller,Female,128,1983-05-06,O- -Matthew Oliver,Male,129,1992-01-18,O+ -Joshua Benjamin,Male,130,1952-12-23,B+ -Albert Carter,Female,131,1965-10-11,O- -James Pittman,Male,132,1971-10-18,B- -Danielle Rice,Male,133,1983-05-11,B- -John Edwards,Female,134,1994-08-12,O+ -Lori Sanders,Male,135,1936-09-20,A- -Rebecca Mcdonald,Male,136,1962-05-30,A+ -James Marsh,Female,137,1968-06-09,A+ -Patrick Bates,Male,138,1999-06-28,O+ -Sheila Castro,Female,139,1982-05-03,A+ -Tim Mercer,Female,140,1960-01-09,AB+ -Andrea Williams,Male,141,1997-03-08,A+ -Zachary Wood,Male,142,1956-09-23,A+ -Meghan Burns,Female,143,1943-11-05,A+ -Mark Grant,Male,144,1970-12-05,AB+ -Kelly Walker,Female,145,1952-03-16,A- -Kelly Miller,Male,146,1967-09-17,A+ -Tina Vargas,Female,147,1985-05-16,AB- -Christopher Gilbert,Male,148,1977-09-03,AB+ -Randall Meyer,Female,149,1995-01-29,O+ -Russell Holden,Female,150,1931-05-18,O- -Sara Bates,Male,151,1948-12-02,O+ -Jeff Cooper MD,Female,152,1964-09-24,O- -Anne Smith,Male,153,1999-09-02,B+ -Ernest Peters,Female,154,1993-11-08,O+ -Tammy Savage,Female,155,1987-02-23,AB- -Deborah Butler,Female,156,1930-07-26,O- -Amy Jensen,Female,157,1988-11-30,O- -Zachary Martinez,Male,158,1991-03-23,B- -Eric Wilson,Female,159,1995-12-31,O- -Matthew Pratt,Female,160,1994-02-13,O- -Andrew Alvarez,Female,161,1978-12-03,B- -Jocelyn Simmons,Female,162,1996-05-16,A+ -Andre Perez MD,Male,163,1973-08-17,A+ -Michael White,Male,164,1977-03-22,B- -Emily Perez,Female,165,1982-07-01,AB+ -David Casey,Male,166,1995-02-21,B+ -Joseph Bailey,Male,167,1953-12-21,O- -Raymond Cain,Female,168,1988-11-12,O- -Victoria Dunn,Female,169,1963-11-27,B- -Paula Knight,Female,170,1991-05-04,B- -Jennifer Trevino,Male,171,1979-09-02,AB+ -Mrs. Deborah Rose,Female,172,1970-07-30,AB- -Ryan Cross,Male,173,1950-09-27,A+ -Michael Morgan,Male,174,1947-06-15,O+ -Christina Armstrong,Male,175,1993-09-23,AB- -Anne Bates,Male,176,1934-08-06,A- -Scott Nicholson,Male,177,1983-09-26,A+ -Jeffrey Cross,Female,178,1987-07-21,O- -Holly Hickman,Male,179,1932-11-25,A- -Jacob Rodriguez,Female,180,1993-02-11,AB- -Jessica Joseph,Female,181,1974-05-08,B- -Stacy Williams,Male,182,1957-02-22,AB+ -Gregory Wilson,Female,183,1983-07-03,A+ -Elizabeth Sullivan,Male,184,1991-01-20,AB+ -Wendy Cantu,Female,185,1959-08-14,A- -Paul Wells,Male,187,1959-11-26,A+ -Troy Villarreal,Female,188,1956-10-20,B+ -Latoya Price,Male,189,1974-08-30,B+ -Paul Watson,Female,190,1960-10-22,AB- -Alejandro Ramirez DDS,Male,191,1937-05-17,O- -Timothy Miranda,Male,192,1968-02-22,B+ -Brian Shea,Male,193,1939-12-07,B+ -Shirley Casey,Female,194,2001-01-07,O+ -Kathy Cross,Female,195,1974-03-28,AB+ -Pam Cantu,Female,196,1957-11-08,AB+ -Heidi Parker,Male,197,1989-10-12,B+ -Lori Anderson,Male,198,1979-05-31,O+ -Colleen Swanson,Male,199,2001-06-22,AB+ -Christopher Campos,Female,200,1958-01-04,AB+ -Samantha Simpson,Male,201,1973-01-02,A+ -Terrence Edwards,Male,202,1990-03-03,A+ -Amanda Lee,Female,203,1961-06-21,O+ -Nancy Moore,Female,204,1995-02-05,A- -Rachel Williams,Male,205,1933-07-30,O- -Carolyn Murphy,Female,206,1948-07-21,AB- -Angela Beard,Male,207,1990-11-30,B+ -Vanessa Taylor,Male,208,1955-12-10,B+ -Brooke Ellison,Male,209,1950-08-10,AB- -Kevin Copeland,Female,210,1999-03-25,B+ -Timothy Lynch,Male,211,1990-02-14,B+ -Christopher Barker,Male,212,1945-02-21,A- -Stephanie Ayers,Female,213,1986-12-10,AB+ -Amber Foley,Female,214,1940-04-06,O- -Geoffrey Robertson,Female,215,1967-02-01,B+ -Laurie Mitchell,Female,216,1931-10-26,O+ -Stephanie Carter,Male,217,1935-06-22,A- -Ana Hall,Female,218,1951-11-21,B+ -Thomas Lopez,Female,219,1978-12-14,O+ -Paul Welch,Female,220,1939-01-18,A+ -David Harding,Male,221,1985-02-28,AB+ -Frederick Salazar,Female,222,1989-03-08,B- -Jose Hayes,Female,223,1979-12-07,B+ -Kara Long,Female,224,1967-10-22,O+ -David Reed,Male,225,1948-01-12,A- -Wayne Livingston,Female,226,1978-05-24,AB+ -Joel Williams,Female,227,1984-08-30,O- -Michael Daniel,Female,228,1961-11-23,A- -Deanna Moon,Male,229,1995-07-17,A+ -Wanda Moore MD,Male,230,1994-10-16,AB- -Charles Singleton,Female,231,1934-06-25,B+ -Matthew Russell,Female,232,1984-12-23,O- -Anna Davis,Female,233,1976-10-08,O+ -Emily Sanders,Female,234,1942-12-21,B+ -Erin Molina,Female,235,1969-11-07,O+ -Alyssa Wright,Female,236,1967-12-30,O- -Samantha Mora,Female,237,1932-05-04,O+ -Kyle Dean,Male,238,1997-03-18,A- -Jodi Moore,Female,239,1946-01-12,AB+ -Mark Chen,Male,240,1950-03-29,O+ -Christina Rogers,Male,241,1992-09-24,A+ -Alejandro Baxter,Female,242,1968-03-11,AB+ -Felicia Rodriguez,Female,243,1989-03-25,A- -Rebecca Campbell,Female,244,1989-01-07,B+ -Michael Pollard,Male,245,1979-07-14,B- -Willie Chan,Male,246,1945-11-09,B+ -Adam Ballard,Female,247,2002-01-12,O+ -William Mahoney,Male,248,1990-01-05,O+ -Aaron Hughes,Male,249,1943-07-03,A+ -Jeanette White,Female,250,1984-06-20,A- -Tammy Williams,Female,251,1930-07-22,A+ -Travis Morales,Male,252,1961-05-05,AB- -John Garza,Female,253,1986-05-29,A- -Elizabeth Adams,Male,254,1964-09-27,O- -Mindy Torres,Male,255,1999-05-21,O- -Nicole Smith,Female,256,1942-01-07,O- -Donna Sanchez,Female,257,1936-05-16,A+ -Stephen Manning,Female,258,1951-12-01,O- -Willie Black,Male,259,1982-11-19,A- -Jennifer Berg,Male,260,1951-04-18,O- -Lauren Ward,Male,261,1930-07-17,B- -John Briggs,Female,262,1994-05-14,O- -Yvette Scott,Female,263,1935-04-15,O+ -Eric Martinez,Female,264,1962-03-28,AB- -Jennifer Frye,Male,265,1971-04-23,A+ -Jamie Kelley,Male,266,1992-01-27,AB+ -Richard Kramer,Male,267,1998-12-14,AB- -Ashley Armstrong,Female,268,1955-07-28,B- -Jacob Meyers,Male,269,1986-08-01,A+ -Jillian Robinson,Male,270,1961-09-24,A- -Roberta Fisher,Female,271,1981-09-25,B+ -Andrew Morales,Male,272,1973-01-03,A+ -Jason Evans,Female,273,2002-03-14,O+ -Harry Thomas,Female,274,1976-08-30,A- -Natalie Jackson,Male,275,1937-09-12,AB- -Molly Houston,Male,276,1994-04-17,AB- -Ryan Lee,Female,277,1968-12-30,O- -Christopher Martin,Female,278,1947-12-04,A- -Tabitha Carr,Male,279,2001-01-13,B+ -Lisa Rojas,Male,280,1935-06-10,O+ -Mary Delgado,Female,281,1952-10-30,O- -Lisa Sanchez,Female,282,1961-03-30,O- -Kathleen Hanson,Female,283,1937-12-21,B+ -Donna Jones,Male,284,1934-10-01,A+ -Rachel Morales,Male,285,1979-11-27,AB- -Michelle Quinn,Female,286,1953-10-07,O- -Crystal Smith,Male,287,1983-01-03,B- -Tracey Martin,Female,288,1980-03-22,B- -Matthew Palmer,Female,289,1945-10-08,AB- -Kristy Donaldson,Female,290,1993-03-09,B- -Amy Jackson,Male,291,1936-07-13,B+ -Patrick Taylor DDS,Female,292,1960-06-03,A+ -Robert Carter DDS,Male,293,1942-12-20,O+ -Elizabeth Charles,Male,294,1934-12-08,AB+ -Melissa Jones,Female,295,1952-04-30,O- -Tammy Cook,Female,296,1952-03-26,AB+ -Dennis Banks,Female,297,1948-02-12,O+ -Cody Gonzales,Male,298,1969-01-13,O+ -Peter Alvarado,Female,299,1969-08-30,B+ -Timothy Melton,Male,300,1990-01-04,A+ -Donald Moreno,Female,301,1985-12-23,B- -Lori Barrett,Male,302,1975-07-30,B- -Cynthia Patterson,Female,303,1968-07-15,B+ -Angel Robles,Male,304,1992-01-27,O+ -Denise Randall,Male,305,1998-12-29,A+ -Laurie Turner,Male,306,1955-03-19,A+ -Whitney Garza,Female,307,1974-10-28,AB- -Erin Porter,Male,308,1962-05-28,A- -Victor Gardner,Female,309,1966-01-20,O- -Angelica Chen,Male,310,1935-08-12,B+ -Alan Rodriguez,Male,311,1944-11-06,A- -Angela Garcia,Male,312,1969-12-11,B+ -Julia Johnson,Female,313,1987-04-24,B- -David Hess,Male,314,1983-05-15,O+ -Jeffery Young,Male,315,1949-08-07,B+ -Louis Lewis,Female,316,1958-01-22,B+ -Jennifer Benson,Female,317,1950-04-06,AB- -Daniel Alexander,Male,318,1983-07-16,AB+ -Robert Taylor,Male,319,1957-01-13,B- -Mrs. Crystal Garcia,Female,320,1971-06-26,O- -Eduardo Davidson,Male,321,1981-01-12,A+ -Dustin Garrett,Female,322,1933-02-28,O+ -Jacqueline Sanchez,Female,323,1942-04-27,B- -Brian Foster,Male,324,1947-03-28,AB+ -Elizabeth Kline,Female,325,1991-10-29,B+ -Angela Ramos,Female,326,2001-12-06,O- -Lisa Howell,Female,327,1963-05-11,B+ -Jonathan Nielsen,Female,328,1965-04-01,O- -Rose Robinson,Male,329,1979-05-16,AB- -Timothy Mcgrath,Male,330,1945-03-02,B+ -Jonathan Brown,Female,331,1956-05-21,B- -Christopher Velasquez,Female,332,1986-05-10,AB+ -Louis Campbell,Female,333,1997-12-24,O- -William Dawson,Male,334,1972-09-03,O+ -Cindy Jones,Male,335,1937-01-01,O- -Adrian Valencia,Male,336,1945-04-24,AB+ -Alexis Chen,Female,337,1975-02-16,A+ -Kathleen Murray,Female,338,1936-01-10,A+ -Michelle Harris,Female,339,1968-10-20,AB- -Julie Mckenzie,Female,340,1938-02-09,B- -Robert Ho,Female,341,1968-11-24,AB+ -Katelyn Vincent,Male,342,1988-06-22,AB- -Anne Wallace,Female,343,1986-12-30,A- -Joseph Lynch,Male,344,1962-10-09,O- -Dr. Leah Delgado,Female,345,1937-11-09,A- -Melissa Robinson,Male,346,1977-06-23,O- -Carol Murray,Male,347,1968-04-23,A+ -Nathan Elliott,Female,348,1997-09-22,AB- -Melissa Harris,Male,349,1945-08-09,A+ -Gabriel Mccormick,Male,350,1993-11-14,O+ -Erica Santos,Male,351,1987-02-28,A- -Carrie Miller,Female,352,2000-11-05,A- -Barbara Salinas,Male,353,1988-04-21,A+ -Amanda Smith MD,Male,354,1940-12-01,O+ -Charles Simmons,Female,355,2001-06-20,O- -Christina Mccoy,Male,356,1991-04-30,AB- -Brett Montoya,Female,357,1966-10-25,O+ -Mr. Ricardo Bullock,Male,358,1933-05-03,AB- -Mrs. Kristine Hall MD,Female,359,1987-03-03,A- -Mary Jones,Male,360,1942-12-19,AB- -Jeffrey Wilson,Female,361,1960-12-05,A- -John Miller,Female,362,1942-06-22,O+ -Ashley Cherry,Male,363,1955-01-16,A- -Douglas Myers,Male,364,1952-01-16,B+ -Stephanie Fowler,Male,365,1964-12-05,B- -David Hines,Male,366,1984-04-17,A- -Robert Mcdonald,Male,367,1977-09-20,A+ -Ryan Frazier,Female,368,1948-11-15,O+ -Eric Price,Female,369,1979-06-30,B+ -Meagan Smith,Female,370,1969-05-09,O- -Jordan Nelson,Female,371,1969-11-17,AB- -Patrick Howard,Female,372,1939-05-30,B+ -Shelley Martinez,Male,373,1953-12-20,AB+ -Donna Mitchell,Male,374,1959-03-27,B+ -Lindsey Hampton,Male,375,1946-02-21,O+ -Dr. Wendy Taylor,Male,376,1984-01-16,B+ -Jodi Shannon,Female,377,1975-06-23,B+ -Nancy Peters,Male,378,1972-10-23,A+ -Vanessa Landry,Male,379,1988-04-03,A- -Carlos Bennett,Male,380,1949-03-24,AB- -Jessica Roman,Male,381,1955-01-21,B- -Mrs. Margaret Morris DDS,Female,382,1945-05-02,O- -Adam Butler,Male,383,1951-11-23,B- -Cheryl Mcgee,Male,384,1954-08-30,B+ -George Gordon,Female,385,1965-06-12,AB+ -Mrs. Ashley Simpson MD,Male,386,1995-11-23,O+ -Rose Rios,Male,387,1942-09-17,AB- -Gerald Moreno,Female,388,1960-12-21,O+ -Danielle Kim DVM,Female,389,1951-01-10,A+ -Nicole Casey,Male,390,1952-06-22,O+ -Terry Branch,Male,391,1994-12-14,O- -Michael Schmidt,Female,392,2000-09-09,AB+ -Justin Parker,Female,393,1980-11-23,B- -Donna Strickland,Female,394,1959-05-05,B+ -Jessica Garcia,Male,395,1977-10-14,B+ -David Brock,Male,396,1939-06-07,AB+ -Mark Mack,Male,397,1959-06-15,AB- -Renee Tate,Male,398,1969-07-09,O+ -Christopher Farmer,Female,399,1932-11-26,AB- -Bryan Moyer,Male,400,1981-03-25,B- -James Evans,Male,401,1939-05-14,AB- -Deborah Barrera,Male,402,1930-10-29,A+ -Laura Robinson,Female,403,1964-02-20,AB+ -Hannah Joseph,Male,404,1976-07-08,B- -Richard Smith,Female,405,1983-07-16,B- -Drew Edwards,Female,406,1931-12-01,A- -Dana Peterson,Female,407,1988-10-15,B- -David Stuart,Female,408,2000-05-28,A- -Allen Munoz,Male,409,1930-07-10,O- -Donald Mccoy,Male,410,1958-09-23,B+ -Jamie Day,Female,411,1977-07-17,A- -Corey Johnson,Male,412,1938-02-23,AB+ -Sarah Henson,Female,413,1946-09-16,AB- -Chelsea Johnson,Male,414,1978-02-06,A- -Danielle Ballard,Female,415,1983-12-20,B- -Heather Turner,Female,416,1984-02-25,AB+ -Joel Whitehead,Female,417,1997-08-20,A- -Lauren Clark,Male,418,2002-12-10,A- -Cory Miller,Female,419,1934-12-22,B- -Eric Aguirre,Female,420,1990-11-20,A+ -Cheryl Jones,Male,421,1993-03-24,A+ -Christopher Baker,Female,422,1931-07-24,A- -Thomas Stevens,Female,423,1944-11-25,A+ -Christopher Duffy,Male,424,1935-03-11,O+ -Donna Bailey,Female,425,1982-05-05,B- -John Gill,Female,426,1940-07-30,O+ -Kristina Becker,Male,427,1965-05-10,AB+ -Mrs. Christine Rodriguez,Female,428,1950-05-31,O+ -Scott Dickerson MD,Female,429,1940-12-28,AB+ -Ruth Perry,Male,430,1960-05-16,A- -Mrs. Penny Sanchez,Female,431,1979-06-23,AB+ -Benjamin Hanson,Male,432,1938-03-29,AB+ -Michael Hall,Female,433,1996-03-25,AB- -William Stokes,Female,434,1975-04-13,O+ -Tiffany White,Female,435,1959-05-18,AB- -Bradley Cross,Male,436,1933-11-10,A- -Richard Brown,Male,437,1963-07-16,B- -Megan Gibson DVM,Female,438,1932-02-24,O+ -Taylor Byrd,Female,439,1952-03-02,B- -Daniel Kline,Male,440,1950-09-13,B- -Alicia French,Female,441,1964-04-25,AB+ -Shelley Lee,Male,442,1950-02-08,B+ -Jennifer Cunningham,Male,443,1949-09-24,O+ -Robert Powell,Male,444,1990-03-07,B- -Amanda Martinez,Male,445,1945-11-19,B+ -Suzanne Clark,Female,446,1982-07-17,A+ -Cassandra Burke,Male,447,1976-04-30,B- -Mike Winters,Female,448,1946-05-23,A+ -Christopher Clark MD,Female,450,1979-11-25,O+ -Charles Wade,Male,451,1959-02-25,A- -Gabriel Vasquez,Male,452,1953-11-12,AB- -Donald Holden,Male,453,1993-12-11,O+ -Nancy Hodges,Male,454,1990-04-05,AB- -Albert Sandoval,Male,455,1982-12-08,AB- -George Morton,Female,456,1996-09-27,O+ -Peter Sutton,Female,457,1963-09-28,B- -Francisco Allen,Female,458,1943-02-02,O- -Richard Johnson,Female,459,1936-06-26,B- -Jessica Duncan,Male,460,1962-12-18,B- -William Cohen,Female,461,1948-03-22,A- -Gary Jackson,Female,462,1952-05-18,AB+ -Frederick Newman,Female,463,1942-04-23,AB+ -Jason Alvarez,Female,464,1959-10-29,B- -Linda Brown,Female,465,1999-12-12,A+ -Travis Williams,Male,466,1991-04-17,A- -Joshua Brooks,Female,467,1992-12-19,AB- -Catherine Wallace,Female,468,2000-06-24,B+ -Matthew Landry,Female,469,1966-09-12,AB+ -Nicholas Jordan,Female,470,1965-12-04,B- -Jose Brown,Female,471,1991-01-24,A- -Tami Oliver,Female,472,1960-01-10,O- -Rachel Brooks,Male,473,2002-09-18,A+ -Frank Rosario,Male,474,1932-05-03,O+ -Kayla Jackson,Female,475,1986-03-18,B- -Melissa Martinez,Female,476,1985-03-06,A- -Emily Hull,Male,477,1976-06-06,B- -Stephen Reynolds,Male,478,1978-01-01,B+ -Glen Brown,Male,479,1992-02-02,AB- -Ashley Greene,Female,480,1992-07-15,A+ -Julie Acevedo,Male,481,1995-06-02,AB+ -Micheal Duran,Male,482,1957-02-15,AB+ -Rebecca Harrison,Female,483,1943-01-30,AB+ -Johnny Johnson,Male,484,1985-05-30,B+ -Harry Brown,Female,485,1971-12-30,O+ -Tasha Smith,Female,486,1936-10-27,A- -April Young,Female,487,1971-12-20,A+ -Cathy Duncan,Male,488,1969-12-21,A+ -Megan Johnson,Male,489,1983-05-31,AB+ -Joshua Owens,Female,490,1990-06-10,AB+ -Teresa Williams,Male,491,1938-05-10,AB- -Ryan Garrison,Male,492,1973-10-01,B+ -Dr. Benjamin Jimenez,Female,493,1974-11-14,O- -Mariah Davis,Female,494,1989-02-26,O- -Nathan Schwartz,Female,495,1989-05-30,B- -Vickie Bernard,Female,496,1988-03-10,B- -Robert Brown,Male,497,1932-05-26,A+ -Daniel Mayo,Male,498,2000-01-01,A+ -Danny Farley,Male,499,1994-02-05,O+ -Maria Williams,Male,500,1941-05-05,O+ -Sally Henderson,Female,501,1971-08-16,O- -Kathy Walls,Male,502,1949-01-27,B+ -Angela Lara,Female,503,1949-05-20,B- -Terry Martinez,Male,504,1951-11-14,O- -Alicia Bartlett,Male,505,1948-08-13,B+ -Melissa Smith,Female,506,1942-03-24,O- -Bruce Atkinson,Male,507,1976-08-06,B- -Monica Hampton,Male,508,1966-09-26,A- -Travis Barrett,Male,509,1979-06-30,O+ -Kayla Herrera,Male,510,2001-11-22,AB- -Brian Gibson,Male,511,1987-11-14,AB- -Ryan Rodriguez,Male,512,1952-10-03,AB- -Jeremy Whitney,Female,513,1977-02-17,B- -Amanda Hernandez,Female,514,1968-08-07,AB+ -Steven Schaefer,Male,515,1944-03-05,AB+ -Matthew Norris,Male,516,1969-01-18,AB+ -Diana Watkins,Female,517,2001-01-13,A+ -Keith Chambers,Male,518,1999-04-25,O+ -Andrew Davis,Male,519,1952-09-30,O+ -Daniel Horne,Male,520,1946-04-16,A- -Angela Hunter,Male,521,1982-08-18,A- -Karen Clark,Female,522,1933-02-24,A+ -Walter Miller,Male,523,1995-07-23,O- -Shane Olson,Female,524,1935-04-16,B+ -Rhonda Larson,Male,525,1955-03-15,A- -Jasmine Hernandez,Female,526,1979-06-01,AB- -Christopher Delgado,Female,527,1932-12-17,AB+ -Laura Banks,Male,528,1976-04-05,AB- -John Johnson,Female,529,1966-09-16,AB+ -Craig Garcia,Male,530,1951-05-16,AB- -Stephen Wheeler,Male,531,1944-05-04,O- -Heather Walters,Female,532,1976-05-22,B+ -Alexis Huynh,Female,533,1984-11-29,AB- -Timothy Henderson,Female,534,1964-12-23,AB- -Colleen Allen,Male,535,1995-02-17,B- -Robert Cruz,Female,536,1974-06-23,B+ -Laura Torres,Male,537,1966-02-05,AB- -Laura Leonard,Female,538,1939-02-26,B- -Andrew Sharp,Male,539,1966-12-18,O+ -Jacob Jenkins,Female,540,1986-01-01,B+ -Theodore Sanchez,Male,541,1956-06-15,A+ -Robert Harris,Female,542,1976-06-12,B+ -Julie Johnston,Female,543,1971-05-31,B+ -Angela Lewis,Female,544,1994-01-13,AB- -Steven Irwin,Male,545,1952-04-05,O+ -Katelyn Barron,Male,546,1983-06-23,B+ -Karen Sanford,Male,547,1986-06-29,A- -Yvette Banks,Female,548,1934-08-07,A- -James Perkins,Female,549,1939-08-08,B- -Nicholas Marquez,Female,550,1966-05-16,AB- -Christopher Haynes,Male,551,1949-11-10,AB- -Heather Johnson,Female,552,1982-05-16,B+ -John Turner,Female,553,1955-11-01,O- -Maria Mahoney,Female,554,1989-01-23,O+ -Michelle Johnson,Female,555,1960-12-19,AB+ -Monica Serrano,Male,556,1966-05-28,AB+ -Larry Fitzpatrick,Female,557,1980-09-20,O- -Karen Dunn,Male,558,1966-04-07,B- -David Kim,Male,559,1960-07-13,AB+ -Christian Gonzalez,Male,560,1958-08-19,B+ -Martin Hines,Female,561,1992-12-22,AB+ -Sandra Rose,Male,562,1936-10-15,A- -Casey Brown,Male,563,1992-08-11,A- -Vincent Reese,Female,564,2001-10-06,A+ -Mr. John Martin DVM,Female,565,1995-03-06,O+ -Amanda Stone,Female,566,2002-02-05,B- -Timothy Hernandez,Female,567,1942-03-11,AB- -Kelly Jones,Male,568,2002-12-15,O+ -Megan Kelley,Female,569,1946-02-07,B- -Michelle Robinson MD,Female,570,1993-02-08,AB+ -Mr. Christopher Burns DDS,Female,571,1968-07-09,A+ -Deborah Kelley,Male,572,1937-10-20,O+ -Julie Long,Female,573,1950-03-27,AB+ -Natalie Johnson,Male,574,1993-10-06,B- -Steven Rodriguez,Male,575,1962-08-23,O+ -Jennifer Williams,Male,576,1936-10-25,AB- -Mark Gordon,Male,577,1956-11-23,O+ -Jon Harding,Male,578,1955-03-18,AB+ -Leslie Kennedy,Male,579,1956-02-14,B+ -Christina Roberts,Female,580,1974-10-21,B+ -Zachary Roberts,Female,581,1942-08-17,O+ -Steven Reilly,Male,582,1982-08-19,AB- -Amber Carter,Female,583,1998-03-16,A+ -Victor Edwards,Male,584,1946-02-04,A+ -Jeffery Tucker,Female,585,1974-10-04,B+ -Robert Cooper,Female,586,1999-09-27,AB+ -Victoria Velez,Female,587,1992-02-12,B- -Angela Scott,Female,588,1932-05-01,AB+ -Sarah Burke,Male,589,1979-06-24,A+ -Karen Fox,Female,590,2002-07-29,O- -Nathan Harrison,Male,591,1948-09-16,O- -Allen Chen,Male,592,1962-09-08,O+ -Bryan Williams,Female,593,1936-08-24,AB- -Stephanie Reed,Male,594,2001-07-31,B+ -Bradley Jones,Male,595,1940-12-14,A- -Francis Wheeler,Female,596,1943-11-01,A- -Ricardo Mcconnell,Male,597,1937-07-01,A- -Heather Stephens,Female,598,1990-07-21,O+ -Michael Parker,Male,599,1944-10-01,O- -Craig Leonard,Female,600,1951-11-29,A+ -Kevin Cunningham,Female,601,1945-02-27,O+ -Terrance Knapp,Female,602,1966-11-27,A- -Teresa Martinez,Male,603,1940-09-18,A- -Desiree Gordon,Female,604,1977-10-11,B+ -David Reyes,Female,605,1996-01-02,AB+ -Jessica Yates,Female,606,1986-11-07,A- -Amber Wade,Female,607,1959-02-14,AB- -Jo Clark,Male,608,1986-02-07,A- -Kevin Frederick,Female,609,1945-09-05,AB+ -Alfred Johnson,Male,610,1939-03-28,A- -Emily Mason,Female,611,1963-04-19,AB- -Terry Thompson,Female,612,1999-05-08,A+ -Michael Simon,Female,613,1935-09-14,O+ -Diana Stevens,Male,614,1999-05-30,AB- -Luis Cooper,Female,615,1993-05-02,AB+ -George Allison,Male,616,1974-07-30,O+ -David Boyd,Female,617,1971-11-27,O+ -Leonard Benton,Male,618,1956-11-17,AB+ -Kenneth Armstrong,Female,619,1960-10-31,B+ -Angela Lopez,Female,620,1931-02-22,O- -Stanley Kirby,Male,621,1997-08-07,A- -Stephanie Bryant,Female,622,1954-02-12,AB- -Daniel Barajas,Male,623,1985-09-27,AB+ -Joy Mitchell,Male,624,1938-12-12,A+ -Daniel Mccoy,Female,625,1977-02-12,B- -Latoya Liu,Male,626,1995-11-08,AB+ -Michael Thompson,Female,627,1945-09-24,A- -Daryl Torres,Female,628,2001-06-09,A- -Cindy Gomez,Female,629,1961-01-16,O+ -Sherry Williams,Male,630,1931-02-17,O+ -Kurt Gordon,Female,631,1950-08-27,AB+ -Tammy Hamilton,Male,632,1950-10-10,B- -Kevin Montoya,Female,633,1931-12-30,B+ -Dana Beck,Male,634,1994-06-22,AB+ -Crystal Green,Male,635,1999-02-19,B- -Steven Clark,Female,636,1961-12-01,B+ -Cheryl Thomas,Male,637,1946-05-25,B- -Judith Trevino,Female,638,1981-09-18,A- -Amy Keller,Female,639,1938-02-15,A- -Gerald Moore,Male,640,1969-10-10,A- -Deanna Stone,Female,641,1982-06-27,A+ -John Rios,Female,643,1973-12-09,A- -James Chung,Female,644,1977-12-06,AB- -Kimberly Mccarthy,Male,645,1986-01-10,O+ -Christine Young,Female,646,1979-02-28,O+ -Donald Walker,Female,647,1943-11-22,B- -Shane Black,Male,648,1943-12-23,O+ -Derek Henderson,Male,649,1935-11-14,O- -Pamela Miller,Male,650,2001-11-27,B+ -Allison Aguilar,Male,651,1993-06-29,B- -Ms. Katelyn Lopez MD,Female,652,1950-02-22,O+ -Alicia Evans,Female,653,1962-12-22,O- -David Collins,Male,654,1939-06-03,B+ -Lisa Marshall,Male,655,1985-03-03,A+ -Miss Courtney Navarro,Male,656,1945-06-15,O+ -Pamela Sullivan,Female,657,1958-10-19,O- -Linda Stewart,Male,658,1969-11-04,AB+ -Daniel Blevins,Female,659,1937-12-24,AB- -Kenneth Oconnell,Female,660,1988-06-17,AB+ -Tamara Salazar,Female,661,1991-01-22,O- -Tammy Lewis,Female,662,1967-03-12,B- -Christine Lewis,Male,663,1963-04-02,A- -Lynn Lowery,Male,664,1969-06-02,A- -Marie Franklin,Male,665,1954-01-22,A- -Holly Norman,Female,666,1968-11-08,B+ -Michael Russell,Male,667,1931-12-30,B- -Richard Vega,Male,668,1978-08-06,B+ -Jessica Mcdonald,Female,669,1987-02-27,O+ -Bruce Johnson,Female,670,1931-11-30,A- -Daniel Meadows,Male,671,1949-09-04,AB+ -Jesse Tucker,Female,672,1969-09-25,B- -Ryan Anderson,Male,673,1968-02-14,B- -Kaitlyn Sampson,Female,674,1975-12-10,A- -Brian York,Male,675,1950-04-06,AB+ -Ashley Martinez,Female,676,1996-12-26,A+ -Andre Burch,Female,677,1941-06-03,B- -Stephen Combs,Male,678,1941-12-09,A- -Allison Reed PhD,Male,679,1936-11-07,AB- -Abigail Mitchell,Female,680,2002-04-08,O- -Jackie Arellano,Female,681,1976-10-27,B+ -Sierra Moreno,Female,682,1982-06-23,O+ -Daniel Golden,Male,683,1988-05-26,B- -Melissa Martin,Female,684,1945-01-08,AB- -Emily Johnson,Female,685,1952-10-27,AB- -Angela Taylor,Male,686,1988-06-29,B- -Ronald Becker,Male,687,1994-10-02,A+ -Tanya Sanford DDS,Male,688,1942-04-19,O- -Jerry Roman,Male,689,1994-07-20,O+ -Adam Stephens,Female,690,1960-06-22,B- -Jane Vargas,Female,691,1990-02-27,B+ -Joseph Smith,Male,692,1950-12-13,O+ -Sydney Gill,Male,693,1984-10-24,AB+ -Katherine White,Female,694,1933-03-13,AB- -Joy Martinez,Female,695,1932-11-28,AB- -Karen Mccoy,Male,696,1980-10-05,B- -David Pierce,Female,697,1996-05-18,B- -Sandra Payne,Female,698,1988-12-27,B+ -Theresa Woodard,Female,699,1989-05-20,AB+ -Cindy Lowe,Female,700,1960-08-05,A+ -Deborah Perry,Female,701,1992-10-07,B- -Yesenia Williams,Female,702,1942-12-13,AB- -Amanda Jones,Male,703,1955-08-06,O+ -Julie Brooks,Male,704,1994-12-05,O- -Nicholas Martin,Male,705,1944-08-09,A- -Patricia Rivera,Female,706,1954-06-08,O+ -Jeffrey Lawrence,Male,707,1941-11-09,A+ -Curtis Dean,Male,708,1996-10-15,O- -Tabitha Price,Male,709,1948-08-15,O+ -Todd Hernandez,Male,710,1943-04-09,O+ -Seth Burgess,Male,711,1948-06-06,AB+ -Stephanie James,Male,712,1972-01-29,A- -Brandon Scott,Female,713,1994-09-07,B+ -Clarence Munoz,Male,714,1977-06-20,A+ -Theresa Ball,Male,715,1936-12-14,AB- -Barbara Gutierrez,Female,716,1949-04-27,AB+ -Kimberly Fernandez,Female,717,1961-07-13,O- -Eric Combs,Female,718,1961-06-20,A- -Travis Jordan,Female,719,1934-03-23,AB- -Dillon Dunlap,Female,720,1989-05-08,AB+ -Sonya Gonzales,Female,721,1968-03-26,A- -Erin Sharp,Male,722,1978-02-13,B+ -Eric Green,Female,723,1947-04-15,A+ -Tina Howard,Female,724,1993-11-08,B- -Michael Lewis,Male,725,1982-03-14,B+ -Thomas Rodriguez,Female,726,2000-08-14,B- -Linda Gillespie,Male,727,1979-01-28,O- -Terry Lawson,Female,728,1991-10-04,B- -Kelsey Perry,Female,729,1990-01-11,AB+ -Erik Wood,Male,730,1967-10-21,O- -Jeremy Jones,Female,731,1956-03-25,AB- -Elizabeth Stafford,Male,732,2002-05-15,B+ -Jason Alvarado,Female,733,1978-08-06,B+ -Mary Stein,Male,734,1953-10-18,A+ -Sandra Green,Male,735,2001-11-20,O- -Nicholas Mitchell,Male,736,1998-09-07,AB- -Joshua Gates,Male,737,1950-07-09,B+ -William Hart,Female,738,1941-10-22,O- -Leah Harrington,Male,739,1933-08-17,O+ -Victoria Kennedy,Female,740,2000-06-13,O+ -Juan Vargas,Male,741,2002-04-16,O- -Mr. Bryan Williams,Male,742,1938-08-08,B+ -Sabrina Barron,Male,743,1995-03-04,A- -Anthony Bailey,Male,744,1984-05-27,B- -Ryan Edwards,Male,745,1934-12-16,O+ -William Osborne,Male,746,1948-01-15,A- -Jennifer Perez,Female,747,1982-11-11,A- -Natasha Fischer,Male,748,1944-07-07,A+ -Jennifer Wang,Male,749,1986-04-27,AB- -Danielle Jones,Female,750,1999-03-29,AB+ -Lori Walker,Male,751,1991-03-23,O+ -Lauren Sosa,Female,752,1972-05-25,O- -John Lynch,Male,753,1962-01-27,B- -Elizabeth Johnson,Male,754,1986-07-18,AB+ -Karen Butler,Male,755,1943-01-01,AB- -Brittany Baker,Male,756,1988-02-19,A- -Melissa Dean,Male,757,1955-11-01,AB- -Sylvia Johnson,Male,758,1940-02-27,B+ -Johnny Stephens,Male,759,2000-03-31,O+ -Michele Thompson,Female,760,1992-12-24,AB- -Loretta Schmitt,Female,761,1998-07-14,AB- -Malik Phillips,Female,762,1965-11-29,B- -Andrea Thompson,Male,763,1999-09-26,B+ -Brenda James,Female,764,1956-03-21,B+ -Jeff Castillo,Female,765,1957-10-16,A- -John Kim,Male,766,1983-04-09,B- -Marie Cooper,Male,767,1947-11-18,B- -Christopher Powers,Female,768,1957-11-23,O- -Rebecca Johnson,Female,769,1970-03-15,AB- -Annette Cruz,Female,770,1931-05-20,AB- -Melissa Mcdonald,Male,771,1933-04-29,B+ -Ashley English,Female,772,1934-03-12,AB- -Kevin Thomas,Male,773,1995-08-08,A+ -Sean Sullivan,Female,774,1932-04-03,B- -Mark Proctor,Male,775,1977-05-26,AB+ -Annette Mitchell,Female,776,1943-10-09,B+ -Carl Thompson,Female,777,1966-10-07,O+ -Steven Davis,Female,778,1975-03-23,B+ -Justin Cunningham,Male,779,1935-10-07,A- -Christine Bryant,Female,780,1939-12-07,AB+ -Andrea Rich,Male,781,1965-07-08,A- -Audrey Moore,Male,782,1992-02-25,O- -Rebecca Lyons,Female,783,1935-01-27,O- -Steven Davis,Male,784,1943-06-12,A- -Ana Clark,Male,785,1986-04-16,AB- -Brandon Miller MD,Female,786,1960-02-16,AB+ -Autumn Ortiz,Female,787,1989-07-02,AB- -Ana Stone,Female,788,2000-09-16,B+ -Anthony Conner Jr.,Male,789,1967-11-26,A+ -April Williams,Male,790,1962-01-17,O- -Justin Martin,Male,791,1973-02-25,O- -Jason Whitaker,Male,792,1946-12-13,AB+ -Holly Knight,Female,793,1978-04-19,O- -Lori Phillips,Male,794,1984-02-07,A+ -Nicholas Johnson,Female,795,1945-06-16,A+ -Amy Bowman,Female,796,1984-05-27,A+ -Joshua Frey,Male,797,1984-09-02,O+ -William Farrell,Female,798,1956-04-02,A+ -Danielle Nunez,Male,799,1962-05-22,A+ -Mrs. Natasha Williams,Male,800,1952-01-19,O+ -Peter Davis MD,Female,801,1939-02-13,AB- -Angie Robinson,Male,802,1982-04-05,B+ -Elizabeth Burton,Female,803,1953-09-19,B- -Gloria Weaver,Female,804,1997-02-02,O- -David Thomas,Female,805,1949-06-24,A+ -Hector Gross,Female,806,1966-06-24,O- -Sean Holmes,Male,807,1933-09-15,AB+ -Sandra Mcclain,Female,808,1960-01-19,O- -Ashley Osborne,Female,809,1960-03-07,A- -Erin Baldwin,Female,810,1988-09-20,AB- -Kenneth Mcfarland,Female,811,1998-04-07,B+ -Timothy Wu,Female,812,1995-08-07,O+ -Margaret Hamilton,Male,813,1931-10-30,O- -Jeffery Patton,Male,814,1987-02-03,O- -Cameron Hall,Male,815,1955-07-26,O- -Matthew Olson,Male,816,1967-05-26,B- -Kevin Padilla,Female,817,1993-07-12,B- -Paul Brooks,Male,818,1940-03-08,AB+ -Crystal Allen,Female,819,1982-05-17,O+ -Brian Williams,Male,820,1950-06-28,O- -Laura Schmidt,Female,821,1931-06-24,O- -Sarah Campbell,Male,822,1943-08-05,O- -Kristen Johnson,Male,823,1943-03-29,O- -Antonio Robbins,Male,824,1985-03-12,B- -Debra Mcdaniel,Male,825,1946-07-18,AB- -Virginia Wolfe,Male,826,1970-08-16,AB- -Carolyn Nguyen DVM,Male,827,1994-04-21,AB+ -Christopher Cervantes,Female,828,1950-01-08,A- -Alan Alvarado,Female,829,1944-07-26,A+ -Kelly Taylor,Male,830,1966-03-09,O+ -Justin Perry,Male,831,1991-08-25,AB- -Kristin Proctor,Female,832,1996-06-18,A- -Danielle Hunter,Female,833,1937-08-11,B+ -Jeanne Gray,Female,834,1977-05-22,B+ -Rachel Marks,Female,835,1934-05-01,O- -Matthew Bush,Male,836,1995-12-24,B+ -Justin Buck,Female,837,1983-12-17,AB- -Julie Murray,Male,838,1964-09-16,AB+ -Travis Dyer,Male,839,1945-08-23,A+ -Matthew Good DVM,Female,840,1994-02-04,AB- -Lori Lyons,Female,841,1975-07-23,AB+ -Michael Monroe,Male,842,1943-02-26,B+ -Christopher Miller,Male,843,1979-11-22,B- -Chris Roth,Female,844,1957-10-02,A+ -Jennifer Harrison,Male,845,1930-01-10,AB+ -Jeffrey Carter,Female,846,1982-09-20,A- -Alexis Jones,Male,847,1999-06-21,AB- -Karen Mills,Female,848,1995-02-22,B- -Linda Collins,Male,849,1995-03-03,A- -Tricia Oliver,Female,850,1944-01-12,AB+ -Corey Cruz,Male,851,1932-10-12,AB+ -Christopher Adams,Female,852,2002-04-13,B+ -Michael Mccall,Female,853,1936-01-03,A- -Monica Ryan,Female,854,1953-01-15,AB- -Shannon Gonzales,Female,855,1967-02-06,A+ -Mason Boyd,Male,856,1969-09-25,B- -Laura Romero PhD,Male,857,1995-04-03,B+ -Angela Lewis,Male,858,1941-05-21,O- -Dwayne Fletcher,Female,859,1985-08-09,O+ -Robert Benitez PhD,Female,860,1949-01-31,A+ -Jamie Holland,Male,861,1948-12-30,B+ -Miss Lisa Hale,Male,862,1987-12-16,B- -Michelle Williams,Male,863,1967-09-16,A- -Mark Browning,Female,864,1985-10-23,AB+ -Heather Johnston,Female,865,1979-05-01,A- -Joy Henry,Female,866,1958-04-28,B+ -Sonya Hernandez,Female,867,1949-11-23,B- -Steven Martinez,Female,868,1953-10-29,A- -Heather Washington,Male,869,1931-01-20,A- -Michael Crawford,Male,870,1931-02-09,O+ -Andrew Harmon,Female,871,1952-05-20,AB- -Stacey Wade,Female,872,1971-07-03,B+ -Shannon Williams,Male,873,1964-12-11,O+ -Mr. Theodore Roberts,Male,874,1980-05-02,B+ -Catherine Potter,Male,875,1956-12-30,O- -Daniel Murray,Female,876,1946-05-26,O- -John Steele,Female,877,1971-05-12,O+ -Bradley Sanford,Female,878,1978-11-09,A+ -Courtney Salinas,Male,879,1994-07-18,A+ -Kevin Hernandez,Male,880,1994-05-29,A- -Lisa Gallegos,Male,881,1939-12-16,A- -Heather Hoffman,Male,882,1959-11-21,AB+ -Madeline Vaughan,Female,883,1943-03-03,O- -Susan Oconnell,Female,884,1986-04-19,B+ -Jeffrey Clark,Female,885,1966-11-04,AB+ -Robert Trevino,Male,886,1972-04-14,O- -Kayla Williams,Female,887,1994-09-11,O+ -Jeremy Duffy,Female,888,1992-12-05,A+ -Steven Lyons,Female,889,1946-06-03,A- -Linda Davis,Female,890,1935-08-11,A+ -James Roberts,Female,891,1963-10-13,O+ -Kevin Armstrong,Female,892,1987-12-12,AB+ -Tamara Scott,Male,893,1976-10-26,AB+ -Tiffany Macias,Male,894,1996-08-05,B- -Diana Brown,Female,895,1990-02-04,A- -Jeremy Gentry,Female,896,1942-06-11,A- -Rebecca Blackwell,Female,897,1943-08-17,B+ -Lauren Patterson,Male,898,1964-12-23,A- -Lisa Phillips,Male,899,1957-06-03,O- -Thomas Walsh,Male,900,2002-12-26,AB+ -Justin Cardenas,Male,901,1939-05-13,O+ -David Wright,Female,902,1969-07-05,AB+ -Renee Miller,Male,903,1949-10-27,A+ -Jeffrey Mckinney DDS,Female,904,2001-08-06,O- -David Copeland,Male,905,1969-09-02,A- -Alec Hess,Male,906,1975-07-17,B+ -Anthony Brown,Male,907,1999-02-17,B+ -Harry Johns,Male,908,1958-05-11,B+ -Roberto Beck,Male,909,1976-12-19,AB- -Jessica Hanna,Female,910,1941-12-12,B- -Daniel Evans,Male,911,1957-11-11,O- -Samantha Patel,Female,912,1977-10-22,A+ -Megan Livingston,Male,913,1953-01-27,A- -Thomas Brown,Female,914,1953-06-29,A+ -Jeremy Vasquez,Female,915,1996-06-28,A+ -Joshua Faulkner,Male,916,1943-04-21,A- -Kimberly Shelton,Female,917,1957-06-28,A+ -Marissa Dixon,Male,918,1992-10-10,B+ -Theresa May,Male,919,1987-10-12,O+ -Derek Patton,Male,920,1982-07-25,B- -Kristina Day,Female,921,1984-02-05,AB- -Andrea Nicholson,Male,922,1971-10-07,A+ -Andrew Jenkins,Female,923,1961-05-28,A+ -Kelly Graham,Female,924,1933-06-06,AB+ -David Jacobs,Male,925,1949-02-26,B- -David Garcia,Female,926,1963-05-01,O- -Sherry Petty,Male,927,1942-10-18,B- -Jonathan Snyder,Male,928,1987-04-06,B- -Wayne May,Female,929,1973-03-17,A- -Thomas Sharp,Male,930,1965-09-25,A- -Randy Huffman,Male,931,1948-11-03,A- -Chase Mooney,Male,932,1949-01-10,AB- -April Eaton,Female,933,1956-01-26,B+ -Johnny Johnson,Female,934,1991-12-12,B- -Jessica Lee,Male,935,1951-12-14,AB- -Steve Meyer,Female,936,1949-01-02,A+ -Laura Henderson,Female,937,2001-01-02,A- -Sandra Ford,Male,938,1994-01-11,A+ -Tara Graham,Female,939,1957-12-14,A- -Nicholas Lewis,Female,940,1978-07-03,O+ -Michael Jones,Male,941,1986-07-11,AB- -Bradley Durham,Female,942,1995-10-19,AB- -James Blair,Female,943,1956-02-24,B+ -Glenda Cooper,Male,944,1988-11-11,O- -Lee Clark,Female,945,1942-09-12,AB+ -Joshua Sullivan,Female,946,1943-04-17,B- -Jennifer Hoover,Male,947,1983-07-23,O- -Jacqueline Walker,Female,948,1996-01-09,AB- -Daniel Branch,Male,949,1958-04-04,O- -Christopher Barron,Male,950,1980-10-29,O+ -Marie Vargas,Male,951,1943-05-25,AB+ -William Garza,Female,952,1949-04-14,B+ -Bernard Gibbs,Female,953,1975-03-27,AB- -Mark French,Female,954,1992-03-07,AB- -Jennifer Walker,Female,955,1984-05-13,B- -Elizabeth Anderson,Female,956,1989-10-11,B+ -Theodore Zamora,Female,957,1982-08-12,B+ -Kenneth Obrien,Male,958,1984-08-28,A- -Aaron Gray,Male,959,1991-03-17,AB+ -Jennifer Le,Male,960,1941-05-27,O+ -Samuel Braun,Male,962,1951-09-29,A+ -Chloe Adams,Female,963,1969-05-24,O- -Gail Harris,Male,964,1945-04-01,B+ -Andrew Gibbs,Female,965,1941-10-10,B- -Jonathan Jimenez,Female,966,1947-03-02,AB- -James Smith,Male,967,1940-06-15,A+ -Jonathan Herring,Female,968,1962-11-24,O+ -Jasmin Scott,Male,969,1963-07-01,AB+ -Daniel Wilkinson,Male,970,1980-01-29,B+ -Kevin Robinson,Female,971,1947-02-15,O- -Lance Bradley,Female,972,1976-12-09,B+ -Jacob Franco,Male,973,1996-04-18,B- -Jennifer Nelson MD,Female,974,1950-02-15,B+ -Gabriella James,Female,975,1971-07-28,B+ -Megan Wheeler,Female,976,1947-01-30,B+ -Molly Brewer,Male,977,1946-09-04,AB- -William Williams,Male,978,1961-11-11,AB- -Drew Crane,Female,979,1991-05-16,A+ -Stacey Craig,Female,980,1995-11-27,A+ -Joel Mendoza,Male,981,1999-10-01,O- -Sarah Weaver,Male,982,1964-08-17,AB+ -Barbara Garrett,Female,983,1957-02-19,O+ -Whitney Bradley,Male,984,1953-03-13,A- -Patricia Taylor,Female,985,1980-01-10,AB+ -David Richardson,Male,986,1938-12-11,AB+ -Lee Peterson,Female,987,1931-10-29,AB+ -Kenneth Rollins,Male,988,1941-06-20,A- -Ryan Copeland,Male,989,1976-09-11,O- -Laura Jones,Female,990,1957-10-27,A- -Nicole Bullock,Female,991,1993-05-31,O- -Christopher Phillips,Male,992,1960-12-23,A- -Joshua Phillips,Male,993,1995-08-02,O+ -Zachary Collins,Female,994,1996-08-22,B+ -Natalie Navarro,Female,995,1988-11-20,AB+ -John George,Female,996,1990-02-24,B+ -April Gomez,Female,997,1965-04-18,O- -Jacob Hoover,Male,998,1943-01-30,A- -Alan Bell,Male,999,1940-09-05,O+ -Stacey Wilson,Female,1000,1993-02-20,A- -April Martin,Male,1001,1967-07-22,B+ -Kimberly Williams,Female,1002,1949-02-11,AB- -Jonathan Moore,Female,1003,1947-06-17,O+ -Paul Davidson,Female,1004,1976-04-16,AB+ -Anthony Johnson,Male,1005,1981-05-30,B- -Mark Moss,Male,1006,1981-12-16,AB+ -Greg Richardson,Female,1007,1957-10-26,B- -Philip Hall,Male,1008,2002-02-01,O+ -Judith Jackson,Female,1009,1968-09-02,AB- -Amber Perez,Male,1010,1974-07-31,B+ -Sherry Bass,Female,1011,1994-09-06,AB- -Tiffany Davies,Female,1012,1993-11-07,O- -Sabrina House MD,Male,1013,1958-09-19,AB- -Bill Garcia,Male,1014,1991-10-22,A+ -Jesse Kelly,Male,1015,1944-05-07,O+ -Emily Mosley,Male,1016,1958-08-15,B+ -Megan Garcia,Male,1017,1958-09-09,B+ -Austin Buchanan,Female,1018,1992-08-20,O- -Destiny Hicks DVM,Female,1019,1963-12-08,B+ -Joseph Johnson PhD,Female,1020,1982-09-27,AB- -Daniel Merritt,Male,1021,1986-03-15,O+ -Morgan Sanchez,Female,1022,1984-11-01,AB+ -Michael Gibbs,Male,1023,1942-02-19,AB- -Michael Phillips,Female,1024,1967-02-24,A- -Nathan Frank,Male,1025,2002-11-30,B- -John Perez,Male,1026,1968-10-26,O+ -Jason Henry,Male,1027,1978-05-09,B+ -Sarah Long,Male,1028,1990-10-08,O- -Rachel Vaughan,Female,1029,1930-10-30,AB+ -April Smith,Female,1030,1976-08-09,A+ -Kathleen Conner,Male,1031,1930-02-25,AB+ -Ryan Lopez,Female,1032,1965-08-18,AB- -Meagan Wright,Male,1033,1953-11-13,B- -Ashley Gonzales,Female,1034,1952-04-25,AB+ -Steven Simmons,Male,1035,1935-10-27,A+ -Scott Green,Male,1036,1961-06-06,A- -Jennifer Hunter,Male,1037,1973-02-09,O- -Christopher Gallegos,Female,1038,1975-11-09,O+ -Elizabeth Fernandez,Male,1039,1948-08-23,B- -Holly Meyers,Female,1040,1942-08-27,A+ -Bailey Wells,Female,1041,1971-03-01,B+ -Edward Decker,Female,1042,1967-04-20,AB- -David Wilson,Female,1043,1944-01-14,AB- -Michael Robertson,Male,1044,1944-01-10,AB- -Miss Mary Moon,Female,1045,1979-05-14,B+ -Theresa Young,Female,1046,1977-05-16,B+ -Bonnie Harding,Female,1047,1982-07-08,B- -Christopher Cabrera,Male,1048,1992-09-02,AB+ -John Carlson,Female,1049,1946-01-27,B- -Katherine Thompson,Male,1050,1934-03-12,AB- -Jessica Garcia,Female,1051,1952-05-17,A- -Christy Martinez,Female,1052,1984-01-07,A+ -Christina Perry,Male,1053,1951-01-04,O+ -Ryan Allen,Male,1054,1993-11-19,O+ -Christine Washington,Female,1055,1948-11-04,B- -Tim Rich,Female,1056,1935-03-22,AB- -Jessica Wagner,Male,1057,1938-06-14,B+ -Thomas Davis,Female,1058,1966-12-21,O- -Kelly Robertson,Male,1059,1952-04-27,A- -Terry Wong,Female,1060,1945-09-29,B- -Angela Copeland,Female,1061,1964-12-20,AB- -Anna Lopez,Female,1062,1958-02-10,AB+ -Jared Scott,Male,1063,1999-03-29,O+ -Mrs. Kristin Stephenson,Female,1064,1932-11-28,O+ -Lisa Lee,Female,1065,1980-04-08,A- -Sara Taylor,Male,1066,1978-05-29,O+ -Amanda Patel,Female,1067,1947-01-21,O- -Danielle Andrews,Female,1068,1995-10-12,AB- -Robert Thomas,Female,1069,1975-03-15,AB- -Kevin Mccormick,Male,1070,1971-06-22,A- -Joseph Hill,Male,1071,1942-09-07,AB- -Adam Burnett,Female,1072,1947-03-21,B+ -Joe Jones,Female,1073,1939-11-06,A- -Gregory Robertson,Male,1074,1961-06-02,AB- -Colleen Mann,Female,1075,1946-11-21,O- -David Turner,Male,1076,1956-10-26,A+ -Daniel Harris,Male,1077,1950-09-14,B- -Jamie Hughes,Male,1078,1952-08-11,B- -Harry Higgins,Female,1079,1975-06-30,AB- -Danielle Robles,Male,1080,2000-06-27,AB+ -Courtney Davis,Male,1081,1947-06-12,O+ -Penny Ross,Female,1082,1986-05-17,O- -Evan Fletcher,Female,1083,2001-05-17,AB+ -Brandon Scott,Male,1084,1969-05-05,B+ -George Petersen,Female,1085,1965-05-07,AB+ -Clayton Franklin,Female,1086,1951-10-01,AB- -Amanda Villegas,Female,1087,1963-05-27,O- -Brandon Thornton,Female,1088,1973-01-23,B- -Tracy Sheppard,Male,1089,1993-09-22,O+ -Lauren Carr,Male,1090,1948-06-13,B- -William Stephens,Female,1091,1973-07-27,AB+ -Autumn Proctor,Female,1092,1936-10-08,B+ -Kelly Wilson,Female,1093,1982-05-11,O+ -Cindy Combs,Female,1094,1989-08-24,A+ -Karen Ramirez,Male,1095,1972-12-05,AB+ -Isabella Powell,Male,1096,1934-10-28,B- -Matthew Greene,Male,1097,1957-11-02,B- -Karen Jackson,Female,1098,1958-11-24,AB- -Michael Martin,Female,1099,1977-04-04,B- -Morgan Collins,Female,1100,1969-02-02,O- -Jerry Welch,Female,1101,1940-06-09,AB+ -Lisa Friedman,Male,1102,2000-11-17,A- -Diane Green,Female,1103,1978-11-09,A- -Sandra Young,Female,1104,1979-08-09,B+ -Nicole Morris,Male,1105,1934-05-25,O+ -David Avila,Female,1106,1945-05-24,B- -John Powers,Female,1107,1948-07-12,AB- -Judy Anderson,Female,1108,1961-10-18,AB- -Julie Krause,Female,1109,1993-12-26,B- -David Richards,Female,1110,1984-06-27,O- -Charles Webster,Female,1111,1958-12-29,AB- -Karen Robinson,Male,1112,1968-02-09,A- -Michael Roth,Female,1113,1985-01-31,O+ -Travis Durham,Male,1114,2000-06-18,AB+ -Jessica Riley,Male,1115,1965-09-20,A+ -Rebecca Travis,Female,1116,1997-12-13,O- -Melvin Miller,Female,1117,1937-02-03,B+ -Dr. Deanna Rodriguez,Male,1118,1977-10-08,B+ -Barbara Love,Male,1119,1941-11-03,AB- -Anthony Steele,Female,1120,1959-07-15,AB+ -Matthew Hoffman,Female,1121,1954-12-12,A+ -Jennifer Ward,Female,1122,1944-08-17,B+ -Brian Charles,Male,1123,1974-11-15,B- -Regina Byrd,Female,1124,1995-05-13,B- -Karen Velazquez,Male,1125,1953-09-16,O+ -Brandon Mcbride,Female,1126,1968-06-13,A+ -Catherine Alvarado,Male,1127,1997-04-18,B- -Erika Anthony,Female,1128,1991-03-12,B+ -Mark Goodman,Male,1129,1954-03-13,B- -Maria Fuentes,Male,1130,1930-04-28,A- -Meghan Jordan,Male,1131,1968-02-08,AB- -John Klein,Male,1132,1981-11-04,B+ -Charlene Clayton,Male,1133,1969-03-06,B+ -Luke Lowery,Male,1134,1966-03-27,B+ -Robert Gould,Female,1135,1945-03-23,O+ -Heather Adams,Female,1136,1986-08-08,AB+ -Crystal Baker,Male,1137,1932-04-26,B+ -Elizabeth Murphy,Female,1138,1959-12-29,B- -Joel Butler,Male,1139,1967-07-09,A- -Jennifer Smith,Male,1140,1972-02-15,B+ -Marilyn Murray,Female,1141,1967-08-21,O- -David Crawford,Female,1142,1992-02-25,O- -Alexandra Murphy,Female,1143,1947-09-18,AB+ -Cynthia Garner DDS,Male,1144,1955-07-22,A+ -Sherry Robertson,Male,1145,2002-03-30,O+ -Sarah Strickland,Female,1146,1999-04-08,A- -Cheryl Herrera,Female,1147,1975-06-22,AB- -Michael Barajas,Male,1148,1965-02-05,A- -Elizabeth Dunn,Female,1149,1941-07-10,O- -Aaron Mack,Male,1150,1947-03-16,O- -Nicholas Castillo,Female,1151,1935-08-11,AB+ -Bryan Saunders,Male,1152,1947-01-25,A+ -Michael Soto,Male,1153,1965-06-07,A+ -Eric Thompson,Female,1154,1964-07-08,AB+ -Nicholas Carrillo,Male,1155,1956-09-26,B+ -Kayla James,Male,1156,1935-01-03,A- -Chelsea Henderson,Female,1157,1935-04-02,O- -Kimberly Carter,Male,1158,1986-06-14,A- -Ronald Mueller,Female,1159,1949-02-18,A- -Brenda Scott,Female,1160,1980-05-28,O+ -Robert Thompson,Male,1161,1969-12-16,O- -Kimberly Taylor,Male,1162,1985-02-09,A+ -Connie Stevens,Male,1163,1999-10-03,AB- -Logan Levine,Male,1164,1965-07-13,A- -Tina Ochoa,Female,1165,2002-11-14,O- -Kristin Nichols,Female,1166,1930-01-10,A- -Amanda Patrick,Female,1167,1975-07-28,O+ -Patricia Jones,Male,1168,1991-05-23,B+ -Anthony Young,Male,1169,1957-01-04,B- -Danielle Watson,Male,1170,1936-01-29,O- -Thomas Lewis,Female,1171,1949-04-12,AB+ -Brittany Smith,Female,1172,1980-07-01,B- -Mrs. Jessica Larsen MD,Male,1173,1944-06-23,A- -Christine Leonard,Male,1174,1934-06-08,AB+ -Leah Meyer,Female,1175,1953-04-22,AB+ -William Moon,Female,1176,1933-09-04,AB+ -Teresa Oconnell,Female,1177,1958-12-08,O- -Marilyn Ramsey,Female,1178,1982-08-12,A+ -Heather Yang,Male,1179,1982-08-04,A- -Jeremy Sandoval,Male,1180,1980-04-26,B- -Jamie Davis,Female,1181,1968-12-18,O+ -Lauren Gonzalez,Female,1182,2002-11-13,A+ -James Townsend,Male,1183,1939-07-23,A- -Taylor Bennett,Female,1184,1955-06-29,B+ -Justin Lane,Male,1185,1951-11-11,B+ -Nancy Lee,Male,1186,1979-04-02,O- -Robert Jenkins,Male,1187,1963-06-16,AB+ -Mercedes Estrada,Female,1188,1930-08-24,O+ -Gary Morris,Male,1189,1957-10-27,A- -Nathan Wilson,Female,1190,1935-03-24,B- -Samantha Herrera,Male,1191,1953-06-16,A- -Vickie Rogers,Male,1192,1939-09-01,A+ -Jacqueline Adams,Female,1193,1944-05-23,B+ -Heidi Burns PhD,Female,1194,1982-01-27,AB- -Samantha Peters,Female,1195,1952-05-07,A+ -Willie Perry,Female,1196,2001-08-02,A- -Kathleen Smith,Female,1197,1981-11-13,O+ -John Sandoval,Female,1198,1944-10-29,A- -Stephen Casey,Female,1199,1939-04-15,A- -Aaron Hill,Male,1200,1960-07-19,O- -Kelly Orozco,Female,1201,1946-04-18,B- -Curtis Allen,Female,1202,1989-10-30,O+ -John Smith,Male,1203,1951-12-04,A- -Kathleen Diaz,Female,1204,1954-10-26,AB+ -Brandon Wood,Male,1205,2000-09-18,B- -Carla Mitchell,Male,1206,1992-06-01,A+ -Dawn Taylor,Female,1207,1993-11-11,O+ -Chelsea Cardenas,Male,1208,2000-11-19,A+ -Jordan Miller,Female,1209,1988-01-21,B+ -Brendan Cross,Female,1210,1972-07-03,A- -Heather Watson,Female,1211,1982-10-17,A+ -Kenneth Johnston,Male,1212,1995-07-09,A+ -David Smith,Female,1213,1930-03-19,O- -Adam Daniels,Male,1214,1950-09-30,A+ -Charles Arnold,Female,1215,1986-06-07,AB+ -Sean Flores,Male,1216,1976-07-02,AB+ -Patricia Weeks,Male,1217,1968-06-30,B- -Pam Davis,Male,1218,1977-10-10,A- -Ronald Caldwell,Male,1219,1980-09-15,AB- -Blake Daniels,Male,1220,1958-11-05,B+ -Gregory Miller,Male,1221,2002-05-22,A+ -Vicki Camacho,Male,1222,1956-01-15,A+ -Melissa Henry,Male,1223,1949-01-04,O+ -Tammy James,Male,1224,1962-09-24,O- -Cynthia Davidson,Female,1225,1951-05-15,AB- -Daniel Luna,Female,1226,1947-12-23,B- -Connie Garcia,Male,1227,1946-05-21,B+ -Tina Serrano,Female,1228,1988-12-08,AB- -Jonathan Richards,Male,1229,1942-10-15,A+ -Anthony Moss,Male,1230,1980-11-08,O+ -Rhonda Young,Male,1231,1955-02-23,A- -Jessica Nguyen,Female,1232,1982-04-14,O- -Michael Robbins,Female,1233,1936-01-02,A- -Brandon Crawford,Female,1234,1933-06-02,B- -Tonya Horton,Male,1235,1960-10-16,AB- -Marcia Mckenzie,Female,1236,1965-01-07,B- -Mary Turner,Male,1237,1985-11-25,A+ -Amanda Washington,Female,1238,1980-04-29,B- -Michael Miller,Female,1239,1940-02-05,A- -Teresa Baker,Female,1240,1941-01-01,O+ -Edward Smith,Female,1241,1960-12-11,B- -Brittany Jones,Female,1242,1935-05-25,AB+ -John Murray,Male,1243,1952-12-20,O+ -Samuel Peterson,Male,1244,1990-08-23,AB- -William Cochran,Male,1245,1978-02-24,O- -Melissa Lewis,Female,1246,1997-02-17,O- -Erica Ray,Male,1247,1990-02-06,A+ -Michelle Lopez,Female,1248,1995-11-07,A+ -Julie Harris,Female,1249,1972-02-04,AB+ -Sabrina Flores,Male,1250,1990-07-31,AB- -Shane Smith,Male,1251,1945-11-06,A- -Linda Richardson,Male,1252,1944-10-22,O- -Allison Valentine,Female,1253,2002-11-10,O- -Kathleen Reyes,Male,1254,1998-08-05,O- -Courtney Elliott,Male,1255,1955-11-12,A- -Paul Vega,Female,1256,1932-07-11,O- -Sabrina Johnson,Female,1258,1931-02-24,B- -Elizabeth Alexander,Male,1259,1980-11-22,AB- -Kerry Brown,Female,1260,1959-07-17,O+ -Amy Zavala,Female,1261,1933-01-25,O+ -Crystal Brown,Female,1262,1960-10-30,AB+ -John York,Female,1263,1977-06-17,B- -Meghan Baker,Female,1264,1936-05-25,O- -Lisa Morrison,Female,1265,1944-09-17,O- -Shelby Avery,Male,1266,1936-02-22,A+ -Daniel Phillips,Male,1267,1982-02-06,A+ -Ashley Valentine,Female,1268,2002-05-16,AB+ -Mike Spears,Male,1269,1942-08-18,O- -Mark Booth,Male,1270,1968-03-08,AB+ -Darren Woods,Male,1271,1979-12-19,B- -Elizabeth Ellis,Female,1272,1960-05-27,O+ -Angela Powell,Male,1273,1966-10-08,O- -Jenny Smith,Male,1274,1991-05-13,AB- -Jamie Chavez,Female,1275,1994-12-01,A- -Courtney Duarte,Female,1276,1947-06-12,B- -Mr. Shawn Davis Jr.,Female,1277,1947-05-31,O- -Geoffrey Woods,Male,1278,1951-07-13,A- -Whitney Newman MD,Female,1279,1938-11-03,AB- -William Johnson,Male,1280,1985-01-15,A+ -Daniel Scott,Male,1281,1969-05-18,AB+ -Paul Gonzalez,Female,1282,1981-05-08,A+ -Jennifer Johnston,Female,1283,1937-12-01,O+ -Kathy Hayden,Female,1284,1940-04-14,A+ -Erica Brown,Male,1285,1986-06-05,O- -Haley Jones,Female,1286,1973-03-06,AB- -Wendy Weber,Male,1287,1975-02-12,A+ -Chad Conrad,Male,1288,1937-04-28,O- -Jonathan Carroll,Male,1290,1948-11-20,O+ -Katherine Reid,Female,1291,1957-10-13,A- -Margaret Owens,Female,1292,1932-03-04,AB- -Mindy Wood,Male,1293,2002-04-23,A+ -Tonya Smith,Male,1294,1935-10-18,AB+ -Jessica Lowe,Male,1295,1945-10-28,AB+ -Bryan Erickson,Male,1296,1963-09-03,AB- -Crystal Patterson,Male,1297,1968-10-01,AB+ -Melissa Larson,Male,1298,1960-06-03,A+ -Rachel Macdonald,Male,1299,1959-07-17,A+ -James Lloyd,Female,1300,1961-03-16,AB- -Zachary Murphy,Male,1301,1965-08-04,A+ -Diana Smith,Female,1302,1991-09-28,A- -Jessica Burke,Female,1303,1932-03-25,O- -Brandi Ramirez,Female,1304,1975-10-21,O+ -Roy Thomas,Female,1305,1958-11-11,A- -Rodney Harper,Female,1306,1998-04-12,A- -Brittany Burnett,Male,1307,1936-09-09,AB+ -William Wilson,Male,1308,1958-08-19,O- -Richard Herrera,Female,1309,1958-06-03,AB- -Donna Weaver,Male,1310,1951-04-24,B+ -Jason Hernandez,Male,1311,1961-05-31,AB+ -Gregory Russell,Female,1312,1977-07-21,O- -Ryan Randall,Female,1313,1971-12-20,A+ -Stephen Edwards,Female,1314,1996-03-09,AB- -Jonathan Rios,Male,1315,2001-10-10,B+ -Robert Campbell,Female,1316,1932-04-07,AB- -Christina Soto,Male,1317,1984-07-11,B+ -Gary Hamilton,Female,1318,1949-07-27,B+ -Edward Whitehead,Female,1319,1942-03-10,AB+ -Ryan Baldwin,Male,1320,1972-01-04,A+ -Leslie Harris,Male,1321,1967-05-02,AB+ -Nathan Smith,Male,1322,1985-06-21,B+ -Rachael Johnson,Female,1323,1946-04-26,B+ -Brian Nelson,Male,1324,1930-05-07,B- -Katelyn Thomas,Male,1325,1983-07-23,O- -Thomas David,Male,1326,1954-01-30,B- -Joseph Nelson,Male,1327,1961-11-15,O- -Bobby Osborne,Male,1328,1991-05-09,O+ -Austin Ortega,Female,1329,1988-11-05,A- -Chad Martin,Male,1330,1986-03-18,AB- -Anthony Butler,Male,1331,1949-09-14,AB+ -Christina Frank,Male,1332,1961-08-25,O+ -Lisa Campbell,Male,1333,1939-03-23,O+ -Amy Wall,Male,1334,1940-05-25,AB- -Melissa Lin,Female,1335,1971-05-20,AB- -Pamela Rodriguez,Female,1336,1967-07-24,O- -Michael Garcia,Male,1337,1934-11-28,B- -Kenneth Choi,Female,1338,1960-04-06,A+ -Margaret Casey,Male,1339,1990-07-21,O- -Matthew Stevens,Male,1340,1939-07-09,A+ -Sean Hernandez,Female,1341,1939-05-11,O+ -Courtney Graham,Female,1342,1934-07-04,A+ -Thomas Collier,Male,1343,1970-05-26,B- -Andrew Howard,Male,1344,2000-08-02,O- -Wendy Flores,Male,1345,1983-02-26,B+ -Willie Gibbs,Male,1346,1982-09-21,AB- -Samuel Johnson,Male,1347,1938-05-31,B+ -Alexander Turner,Female,1348,1935-01-29,B- -Allison Warner,Female,1349,1985-11-13,A- -Kim Galloway,Male,1350,1942-10-07,B- -Amy Johnson,Male,1351,1947-11-02,A- -Jasmine Middleton,Male,1352,1988-08-19,O- -Stephanie Berry,Male,1353,1937-06-01,AB- -Matthew Brock,Male,1354,1962-01-07,B- -Caitlin Day,Male,1355,1994-05-01,B+ -Nicole Evans,Male,1356,1956-01-29,A- -William Harris,Female,1357,1997-11-02,AB- -Brian Gomez,Male,1358,1984-06-17,AB+ -Cassandra White,Female,1359,1947-09-05,AB+ -Aaron Jones,Male,1360,1941-07-14,AB+ -Marilyn Steele,Male,1361,1966-03-17,A+ -Eric Roberts,Male,1362,1951-10-28,B- -Rebecca Knox,Male,1363,1998-11-10,O- -Alex Wright,Male,1364,1976-04-29,B+ -Clinton Moore,Female,1366,1934-06-14,O- -Tyler Sanders DVM,Female,1367,1958-03-29,A+ -Robert Olson,Female,1368,1951-10-31,O- -Michael Smith,Male,1369,1953-06-26,A- -Jaime Holmes,Male,1370,1952-02-05,AB+ -Todd Moore,Male,1371,1953-09-23,B+ -James Lopez,Male,1372,1998-06-06,B- -Thomas Long,Female,1373,1992-08-17,O- -Justin Lewis,Female,1374,1939-11-10,O- -Monique Castro,Female,1375,1948-07-28,O+ -Brian Hardin,Female,1376,1966-03-19,O+ -Kent Peters,Male,1377,1955-01-16,O+ -Michele Gardner,Female,1378,1943-08-12,B- -Joseph Perez,Male,1379,1966-12-08,AB+ -Mary Taylor,Female,1380,1978-02-27,AB- -Kelli Richardson,Male,1381,1965-06-17,AB+ -Dr. Cheyenne Chen DDS,Female,1382,1963-09-17,B+ -Peggy Miller,Male,1383,1935-06-14,AB+ -Linda Douglas,Female,1384,1944-07-05,B- -Jennifer Nelson,Male,1385,1965-08-02,A- -Bryan Harmon,Female,1386,1984-08-21,A- -Joseph Lewis,Female,1387,1991-03-21,B- -Mackenzie Ward,Male,1388,1966-11-20,O+ -David Peterson,Female,1389,1992-02-29,O- -Mr. Joshua Salazar,Female,1390,1941-12-29,A+ -Elizabeth Donovan,Female,1391,1943-01-10,A+ -Karen Martinez,Male,1392,1982-04-15,AB- -Elizabeth Tucker,Male,1393,1958-06-18,O- -Eric Campbell,Male,1394,1974-06-20,AB- -Debbie James,Male,1395,1945-04-20,O+ -Alan Ibarra,Male,1396,1977-07-03,AB- -Christine Hernandez,Male,1397,1943-07-16,O- -Lee Kramer,Female,1398,1966-09-04,B+ -Kyle Johnson,Female,1399,1984-04-03,O- -Ruth Meyer,Female,1400,1976-09-28,A+ -Tonya Ferguson,Male,1401,1941-08-14,A- -Kevin Fowler,Female,1402,1984-12-28,O+ -Felicia Ramirez,Male,1403,1998-03-22,B+ -Joshua Ellis,Female,1404,1989-01-17,B- -Patrick Farmer,Female,1405,1957-02-24,B+ -Maria Novak,Female,1406,1993-03-19,B+ -Samantha Roberts,Male,1407,1986-12-19,AB- -Michael Powell,Female,1408,1957-05-03,A+ -Jamie Santos,Male,1409,1934-10-26,AB- -John Rodriguez,Female,1410,1955-02-20,AB- -Brian Wilson,Male,1411,1936-10-18,B- -Justin Alexander,Female,1412,1996-12-02,O+ -Christopher White,Male,1413,1932-08-09,O- -Abigail Lamb,Male,1414,1999-04-07,AB+ -Ralph Kirk,Female,1415,1935-09-11,AB- -Caroline Riley,Male,1416,1937-06-10,AB+ -Susan Phillips,Male,1417,1987-03-31,O+ -Rachel Greene,Female,1418,1956-07-15,AB+ -Anthony Thompson,Male,1419,1998-01-25,AB- -Claudia Dickerson,Male,1420,1950-01-07,B- -Holly Nunez,Female,1421,1994-07-14,AB+ -Christian Holloway,Female,1422,1980-07-06,O+ -Juan Simon,Female,1423,1932-02-08,O+ -Juan Stephenson,Male,1424,1945-01-12,A- -Walter Smith,Male,1425,1972-07-13,A- -Matthew Montgomery,Male,1426,1948-03-12,B- -Virginia Morgan,Female,1427,1988-10-10,AB+ -Susan Ramirez,Female,1428,1944-04-29,AB+ -Robin Lara,Female,1429,1961-06-12,A- -Jennifer Robinson,Female,1430,1945-11-15,O- -Kevin White,Male,1431,1999-11-17,A+ -Vanessa Kim,Female,1432,1988-05-06,O+ -Daniel Wright,Male,1433,1991-05-01,O- -Ashley Hamilton,Male,1434,1983-12-28,O+ -Kristina Odonnell,Female,1435,1963-10-17,B+ -Joshua Mcdonald,Female,1436,1952-01-04,B+ -Matthew Lee,Male,1437,1973-10-24,O- -Jordan Schwartz,Male,1438,1965-10-31,B+ -Stacy Taylor,Male,1439,1943-05-06,A- -Colton Rose,Male,1440,1934-01-21,A- -Maria Williams,Female,1441,1957-08-20,A+ -Mr. Paul Simpson,Male,1442,1992-02-14,O- -Nicole Garcia,Female,1443,1984-04-22,O+ -William Christian,Female,1444,1969-06-27,AB+ -David Bauer,Male,1445,1975-01-03,O+ -Daniel Campbell,Female,1446,1950-12-05,AB- -Thomas Walters,Male,1447,2002-04-12,A- -Erin Marsh,Male,1448,1984-05-03,B- -Cassandra Koch,Female,1449,1973-01-03,B- -Gregory Morales,Female,1450,1960-11-10,A- -Cathy Martin,Male,1451,1977-02-19,AB- -Rita Cooper,Male,1452,1964-07-01,B- -Robert Washington,Female,1453,1960-02-11,B+ -Allison Hill,Female,1454,1991-02-28,A- -Jennifer Abbott,Male,1455,1969-02-20,B- -Victoria Mathews,Male,1456,1959-04-01,A- -Jennifer Lawson,Male,1457,1974-11-06,A+ -Tiffany Harper,Female,1458,1953-04-29,AB+ -Kenneth Stewart,Male,1459,1994-08-18,AB+ -Melissa Cline,Female,1460,1983-12-03,O+ -Sarah Jordan,Male,1461,1939-01-14,AB- -Alfred Wells,Female,1462,1948-05-28,A- -Belinda Castillo,Female,1463,1949-10-06,O- -Christina Clayton,Male,1464,1996-02-24,O+ -Mallory Jones,Male,1465,1984-12-02,O+ -Jimmy Gomez,Female,1466,1938-05-13,A- -Sarah Sanders,Male,1467,1967-03-03,A- -Francisco Young,Male,1468,1951-10-28,O+ -Amy Waller,Male,1469,1935-11-14,O+ -Kathy Benjamin,Male,1470,1989-02-11,AB+ -Mr. Brian Cordova,Male,1471,1956-01-08,O- -Gregory Martin,Female,1472,1971-06-24,B+ -Julia Davila,Male,1473,1981-10-22,O+ -Julie Grant,Male,1474,1963-05-03,B+ -Carla Bailey,Male,1475,1987-04-23,AB+ -Patrick Gonzalez,Male,1476,1990-03-30,O+ -Shane Rasmussen,Female,1477,1952-11-17,B- -Jesus Larson,Female,1478,1992-12-17,O+ -Brendan Peck,Male,1479,1988-07-24,A- -Spencer Good,Female,1480,1971-04-06,AB- -Matthew Barton,Male,1481,1932-04-02,AB- -Joshua Beasley,Female,1482,1977-06-10,O+ -Amanda Warren,Male,1483,1969-02-14,A+ -Danielle Singleton,Male,1484,1946-11-03,B- -Bryan Walker,Male,1485,1942-02-12,O- -Robin Nelson,Male,1486,1999-05-29,O+ -Kelly Pearson,Male,1487,1973-11-23,B+ -Brittany Ray,Female,1488,1936-01-08,O- -Cheryl Jennings,Female,1489,1986-06-22,B- -David Clayton,Male,1490,1984-12-22,O+ -Carlos Castro DVM,Male,1491,1939-06-15,A+ -Elizabeth Adams,Female,1492,1954-12-07,AB+ -Juan Walter,Male,1493,1967-12-12,A+ -Shirley Garza,Female,1494,1978-06-10,A- -Holly Clayton,Male,1495,1986-04-18,A+ -Carol Byrd,Female,1496,1953-11-01,B+ -Michelle Williams,Female,1497,1957-09-08,AB+ -Michael Delgado,Female,1498,1993-08-14,A- -Anthony Barron,Female,1499,1991-05-20,AB+ -Alexander Thomas,Female,1500,1984-09-12,AB- -Kevin Harper,Male,1501,1943-04-04,AB+ -Samuel Adams,Female,1502,1972-01-19,O+ -Jordan Chandler,Male,1503,1933-11-10,O- -Anna Morrison,Female,1504,1942-07-03,AB- -Brandy Cross,Male,1505,1961-03-01,AB- -Lauren Williamson,Female,1506,1987-02-26,O- -Bryan Payne,Female,1507,1979-02-12,B+ -Christine Scott,Male,1508,1969-12-18,AB- -Courtney Gonzales,Male,1509,1932-03-15,AB+ -Teresa Green,Male,1510,1966-03-14,A+ -Kevin Duke,Male,1511,1933-07-03,B- -Kimberly Parker,Female,1512,1966-02-13,B+ -John Reed,Male,1513,1949-05-24,AB+ -Brent Roth,Male,1514,1991-04-01,A- -Thomas Garrett,Male,1515,1990-03-30,A- -Rebecca Calderon,Female,1516,1960-05-16,A+ -Samantha Gallagher,Male,1517,1978-08-28,B+ -Joshua Rodriguez,Female,1518,1965-04-07,B+ -James Thompson MD,Male,1519,1972-06-26,A+ -Daniel Santos,Male,1520,1982-03-12,B+ -Heather Smith,Female,1521,1935-10-08,AB- -John Beck,Female,1522,1997-03-27,O+ -Jillian Hernandez,Female,1523,1974-01-16,O+ -Matthew Mayer,Male,1524,1986-06-03,B+ -Hannah Welch,Female,1525,1943-03-25,AB- -Crystal Wright,Female,1526,1982-06-09,AB- -Timothy Holt,Female,1527,1938-09-22,O- -Heather Pacheco,Male,1528,1937-01-17,O- -Kimberly Stephens,Male,1529,1965-01-25,B- -David Allen,Female,1530,1937-02-12,B- -Cassandra Greene,Male,1531,1941-01-16,B- -Tina Huff,Male,1532,1953-01-28,B- -Michael Newton,Female,1533,1933-07-28,A+ -Rachel Evans,Male,1534,1995-01-12,A+ -Adam Williams,Male,1535,1990-12-13,O- -Deborah Walker,Male,1536,1978-06-03,O+ -Omar Matthews,Female,1537,1981-10-25,AB- -Mrs. Anne Reid MD,Male,1538,1980-06-22,A- -Jeffrey Peterson,Female,1539,1993-07-02,O+ -Megan Fields,Male,1540,1953-08-21,AB+ -Sharon Tucker,Male,1541,2002-12-21,A+ -Jesse Esparza,Female,1542,1961-02-19,B- -Anthony Lee,Male,1543,1954-08-19,B- -Stephen Jones,Male,1544,1975-01-23,AB+ -Jessica Patterson PhD,Female,1545,1993-12-21,O+ -Jacqueline Hawkins,Female,1546,1944-12-28,B- -Linda Harris,Female,1547,1997-05-25,O+ -Benjamin Jackson,Female,1548,2002-12-26,AB- -Brian Jacobs,Male,1549,1949-09-02,AB+ -Steven Bryan,Female,1550,1990-09-23,A- -Paul Wilson,Male,1551,1994-05-30,O+ -Kevin Campbell,Female,1552,1965-04-02,AB- -Richard Huerta,Female,1553,1934-06-11,B+ -Daniel Garcia,Female,1554,1973-10-10,B+ -Michelle Blake,Female,1555,1952-01-07,O+ -Lawrence Bradford,Female,1556,1975-10-17,B+ -Suzanne Bailey,Female,1557,1980-07-15,O+ -Shannon Jackson,Female,1558,1951-11-19,B- -Zachary Jones,Male,1559,1972-11-02,O- -Alyssa Monroe,Female,1560,1976-08-16,B+ -Jennifer Gonzalez,Male,1561,1941-09-03,A+ -Christopher Green,Female,1562,1998-12-15,O+ -Teresa Coleman,Male,1563,1968-06-30,O+ -John Atkinson,Male,1564,1991-08-29,O+ -Mark Mcdowell,Female,1565,1971-07-01,O- -Meagan Mullins,Male,1566,1953-09-03,AB- -Scott Perez,Male,1567,2001-12-18,B+ -Lauren Fischer,Male,1568,1961-12-08,A- -Harry Moore,Female,1569,1938-02-17,A- -Katie Crane,Female,1570,1938-04-17,AB+ -Michael Browning,Female,1571,1995-10-14,B- -Chelsea Wu,Male,1572,1982-03-14,O- -Joyce Jones,Male,1573,1939-12-09,AB- -Anthony Lucas,Male,1574,1986-06-05,O+ -Jared Martinez,Male,1575,1938-05-26,AB- -Christopher Carter,Male,1576,1946-04-08,O- -Kimberly Hodges,Male,1577,1978-08-27,O- -Stephen Owen,Female,1578,1982-09-15,O- -Maria Mack,Male,1579,1987-12-20,AB+ -Katelyn Daniel,Male,1580,1961-08-21,A+ -Alan Garcia,Male,1581,1989-11-21,B- -Henry Choi,Female,1582,1965-10-25,AB+ -Tracy Diaz,Male,1583,1986-02-24,AB+ -Alicia Kennedy,Female,1584,1997-09-10,B+ -Kristopher Griffin,Female,1585,1985-05-26,A+ -Emily Vega,Male,1586,1989-09-07,AB+ -Jennifer Chavez,Male,1587,2002-12-03,O- -Jennifer Chen,Female,1588,1995-11-19,O- -Tyler Morrison,Male,1589,1948-09-02,B+ -Kimberly Fletcher,Female,1590,2000-05-25,AB- -Linda Gray,Female,1591,1997-10-18,O+ -Mr. Jason Wilson,Male,1592,1960-03-30,AB+ -Mary Rodriguez,Male,1593,2000-09-16,O+ -Mr. Taylor Williams DDS,Female,1594,1978-07-05,B- -Sylvia Oneal,Female,1595,1986-03-22,A- -Tina Williams,Male,1596,1993-05-20,O- -Renee Walker,Female,1597,1937-06-04,AB- -Danny Rojas,Female,1598,1943-04-16,B- -Jamie Holt,Female,1599,1991-11-13,B+ -Carrie Ford,Female,1600,1995-05-03,AB- -Drew Mccullough,Male,1601,1989-08-31,A- -Charles Hampton,Male,1602,2002-03-05,A- -Mr. John Wright,Female,1603,1951-02-15,B+ -Victor Thomas,Male,1604,1954-06-26,A+ -Michelle Bell,Male,1605,1972-06-16,B+ -Susan Matthews,Female,1606,1973-05-01,O- -Jodi Freeman,Female,1607,1934-10-29,B- -Stacie Snyder,Female,1608,1973-05-25,A+ -Mackenzie Curry,Female,1609,1963-03-01,A- -Jamie Zimmerman,Female,1610,1994-04-20,B- -Teresa Lynn,Male,1611,1995-11-14,AB- -Nathaniel Nichols,Female,1612,1964-08-22,A+ -Aaron Smith,Male,1613,1946-10-06,A+ -Joshua Rogers,Female,1614,1931-04-27,O- -George Harris,Female,1615,1969-10-19,B+ -Jesse Blair,Female,1616,1930-06-03,O+ -Kenneth Yu,Male,1617,1950-11-09,AB- -Christine Chavez,Female,1618,1934-03-05,AB- -Timothy Ford,Male,1619,1935-10-22,B+ -Susan Munoz,Female,1620,1971-03-15,A+ -Joanne Clark,Male,1621,1936-06-01,A+ -Steven Adams,Female,1622,1944-01-24,O- -Robin Robbins,Female,1623,1990-08-18,O+ -Adam Dominguez,Male,1624,1933-05-25,AB- -Ashley Watkins,Male,1625,1930-03-02,A- -Hunter Smith,Male,1626,1954-12-31,AB+ -Edward Wagner,Male,1627,1979-05-07,AB+ -Christopher Bray,Male,1628,1991-10-17,O+ -Debra Lambert,Female,1629,1963-09-17,B- -Steve Hunt,Male,1630,1966-07-21,O- -Johnny Howard,Male,1631,1996-09-05,O+ -Anthony Cantu,Male,1632,1964-01-01,B+ -Devon Gonzalez,Female,1633,1933-06-06,B+ -Jason Sexton,Female,1634,1986-05-14,AB+ -Benjamin Rice,Male,1635,1952-11-24,A+ -Jessica Wilson,Female,1636,1956-06-03,AB+ -Blake Wood,Female,1637,1984-07-29,A+ -Arthur James,Female,1638,1986-05-08,O- -Lauren Wilcox,Male,1639,1994-01-18,A+ -Melissa Weaver,Male,1640,1993-02-10,O+ -Amber Scott,Male,1641,1981-03-20,A+ -Jennifer Mejia,Male,1642,2001-10-07,B- -Donald Huffman,Female,1643,1974-09-01,B+ -Ian Jefferson,Male,1644,1941-03-14,O+ -Lori Smith,Female,1645,1949-01-21,B+ -Robert Simpson DDS,Female,1646,1938-03-24,O- -Theresa Holland,Female,1647,1988-12-02,O+ -Jackie Carroll,Male,1648,1975-10-05,B- -Emily White,Female,1649,1939-12-20,O- -Anthony Hunt,Female,1651,1996-09-17,AB+ -Christina George,Male,1652,1986-02-07,B- -Andrea Carr,Male,1653,1933-09-03,O- -Joel Young,Female,1654,1962-06-17,A- -Dr. Andrew Lester,Female,1655,1997-11-16,A+ -Frances Johnson,Male,1656,1930-12-05,O+ -George Cox,Male,1657,1946-02-21,O- -Timothy Smith,Female,1658,1963-07-21,O+ -Samuel Gonzales,Male,1659,1982-04-10,A+ -Timothy Perry,Female,1660,1961-01-22,O- -Kenneth Ross,Female,1661,1934-10-17,AB+ -Timothy Cox,Male,1662,1990-03-15,A- -Joseph Frazier,Male,1663,1936-08-18,A- -Angela Lowery,Male,1664,1949-06-29,B- -Kim Aguilar,Male,1665,1999-03-25,O- -Patricia Roth,Female,1666,1944-07-25,A+ -Tracy Brown,Female,1667,1973-07-10,O- -Stephanie Reyes,Male,1668,1992-12-14,O+ -Larry Martin,Female,1669,1989-08-10,AB- -David Webb,Female,1670,1962-08-19,B+ -Christopher Anderson,Female,1671,1985-10-16,O- -Tina Martinez,Female,1672,1998-08-16,A- -James Jackson,Male,1673,1996-11-18,A- -Cindy Meyer,Male,1674,1967-12-02,B+ -Mary Bennett,Male,1675,1997-05-31,A- -Jessica Rhodes,Female,1677,1943-05-06,AB+ -Deborah Camacho,Male,1678,1943-02-28,O- -Jacob Garcia,Female,1679,1953-07-11,B- -Erica Russell,Male,1680,1963-05-10,O- -Brian Evans,Male,1681,1991-01-18,AB- -Charles Rodriguez,Male,1682,1994-05-13,A- -Richard Gonzalez,Female,1683,1983-07-03,O+ -Alexis Dalton,Male,1684,1975-12-05,A- -Aaron Miller,Female,1685,1962-12-24,O- -Erica Mullins,Female,1686,1942-02-17,AB+ -Rebecca Patterson,Male,1687,1954-02-24,A+ -Leslie Hall,Male,1688,1995-11-26,O- -Dakota Hamilton,Female,1689,1941-08-03,O- -Greg Webster,Female,1690,1960-06-14,B- -Sean Hernandez,Male,1691,1971-02-18,AB+ -Antonio Robinson,Male,1692,1951-12-04,AB- -Kristy Shepherd,Male,1693,1979-01-09,A+ -Jodi Lee,Male,1694,1954-09-10,A- -Cameron Ross,Male,1695,1934-02-09,O+ -Lisa Austin,Male,1696,1948-06-12,O- -Brian Roberts,Male,1697,1939-01-08,AB- -Tommy Hines,Female,1698,1988-10-12,A+ -Shane Espinoza,Male,1699,1981-06-25,O+ -Rebecca Ibarra,Male,1700,1999-11-05,AB- -Brandon Gregory,Male,1701,1983-03-10,AB+ -Michael Herrera,Female,1702,1942-04-25,AB+ -Donald Alexander,Female,1703,1978-11-15,A+ -Lisa Bryant,Female,1704,1984-08-10,A- -Kristina Montgomery,Female,1705,1931-09-07,B+ -Sara Hines,Female,1706,1989-08-15,O+ -Denise Stein,Female,1707,1995-12-03,AB+ -Karen Osborne,Male,1708,1955-09-01,B+ -Ricardo Sullivan,Female,1709,1983-09-07,A+ -Roger Morgan,Female,1710,1994-05-27,AB+ -Matthew Ford,Female,1711,1937-04-21,AB+ -Dana Chambers,Female,1712,1996-09-15,AB- -Melissa Dominguez,Female,1713,1966-09-18,B+ -Andrew Hill,Male,1714,1975-03-20,AB- -Madison Rodriguez,Female,1715,1938-03-03,AB+ -Natasha Martin,Female,1716,1986-07-28,B+ -Douglas Wong,Male,1717,1994-05-15,B- -Kathryn Garcia,Female,1718,1964-08-21,B+ -Marissa Schultz,Female,1719,1952-07-14,AB- -Dana Wilson,Male,1720,1995-12-04,O+ -Christina Reynolds,Female,1721,1948-03-07,A+ -James Maynard,Male,1722,1962-04-02,A+ -Susan Banks,Male,1723,1989-10-30,A- -Jaime Santiago,Male,1724,1971-12-09,O+ -Pamela Medina,Female,1725,1977-05-18,O+ -Rebekah Wells,Female,1726,1950-09-17,O+ -Christina Dixon,Male,1727,1972-06-29,A- -William Baker,Female,1728,1998-08-20,O+ -Tyrone Campbell,Female,1729,1967-08-12,O- -John Carroll,Female,1730,1955-07-12,A- -Kristy Thomas,Female,1731,1971-09-12,A+ -Brett Hobbs,Male,1732,1962-01-26,O- -Amanda Wise,Male,1733,1953-04-12,A- -Amy Carpenter,Male,1734,1999-04-23,AB+ -Shannon Macias,Male,1735,1983-09-25,AB+ -Dr. Sean Hansen,Male,1736,1931-06-30,A+ -Jason York,Male,1737,1941-11-25,AB+ -Melvin Smith,Male,1738,1957-05-15,O+ -Victoria Graham,Female,1739,1973-03-11,A- -Robert Garcia,Male,1740,1968-02-10,O- -Sarah Dougherty,Male,1741,1940-06-07,O+ -Peter Mack,Male,1742,1949-09-24,AB+ -Max Montgomery,Male,1743,1954-08-28,AB- -Sara Johnson,Female,1744,1974-10-28,B+ -Jonathan Rowland,Male,1745,1963-09-21,O- -Valerie Riley,Male,1746,1980-06-03,O+ -Sonya Cisneros,Male,1747,1953-02-05,A- -Jeanne Price,Male,1748,1965-07-20,A+ -Jake Matthews,Female,1749,1930-09-29,O+ -Tammy Dillon,Male,1750,1984-06-21,AB- -Joseph Shelton,Female,1751,1979-09-16,AB+ -Tony Chen,Male,1752,2000-09-28,O- -Willie Short,Male,1753,1959-01-25,A+ -Kathryn Mcpherson PhD,Male,1754,1941-12-10,O- -Raymond Wilson,Female,1755,1949-05-10,A+ -George Stewart,Male,1756,1977-05-18,B+ -Robert Jarvis,Female,1757,1997-04-13,A- -Mr. Brian Chavez,Female,1758,1939-05-24,O- -Parker Delacruz,Male,1759,1987-01-01,AB+ -Andrea King,Female,1760,1964-09-15,A- -Kevin Miller,Male,1761,1959-08-13,A- -Shannon Carlson,Female,1762,1985-02-25,B+ -Veronica Bailey,Female,1763,1935-08-13,A+ -Kelly Hernandez,Male,1764,1962-01-05,B- -Gabriel Henderson,Female,1765,1933-03-11,O- -Joshua Fitzgerald,Female,1766,1998-04-25,O- -Brian Cox,Female,1767,1935-07-27,O+ -Thomas White,Female,1768,1992-07-25,A+ -Crystal Garrison,Male,1769,1930-05-26,AB- -Robert Reed,Female,1770,1969-01-25,B- -Reginald Marshall,Male,1771,1986-11-15,AB+ -Michael Wright,Male,1772,1951-06-12,O+ -Darrell Hall,Male,1773,1998-06-20,B+ -Christopher Robinson,Male,1774,1999-03-20,B- -Joe Mitchell,Female,1775,1997-03-27,A+ -Thomas Berry,Female,1776,1969-02-11,B- -Crystal Wright,Male,1777,1937-03-17,B+ -Evan Bradford,Female,1778,1942-04-22,A- -Greg Rogers,Female,1779,1971-06-27,O- -Oscar Thornton,Female,1780,1996-11-30,A- -Ashley Rodriguez MD,Male,1781,1995-06-04,O- -Larry Mitchell,Female,1782,1955-01-25,O+ -John Hudson,Male,1783,1958-07-19,B+ -James Williamson,Female,1784,1958-01-07,A+ -Matthew Williams,Female,1785,1935-01-03,A+ -Courtney Lane,Male,1786,1963-07-27,B- -Shaun Tran,Male,1787,1954-12-31,O+ -Jonathan Hernandez,Male,1788,1943-02-27,A+ -Jennifer Bowman,Female,1789,1932-03-17,AB- -Cheryl Sanchez,Female,1790,2001-04-17,AB- -Aaron Burnett,Female,1791,1995-05-10,A- -Kevin Rodriguez,Male,1792,1952-06-16,O- -Ian Green,Male,1793,1935-02-12,B- -Dustin Harper,Male,1794,1969-11-13,AB+ -Brian Mitchell MD,Female,1795,1972-06-21,B+ -Rebecca Olson,Male,1796,1996-06-05,O- -Leah Kemp,Male,1797,1970-10-17,O+ -Jessica Hayes,Female,1798,1990-06-09,A+ -Cindy Perkins,Female,1799,1996-04-15,O- -Christopher Rodriguez,Male,1800,1974-05-30,AB+ -Sarah Roberts,Male,1801,1973-08-17,AB+ -Derek Hughes,Male,1802,1944-11-12,AB- -Richard Mcconnell,Female,1803,1954-11-07,O+ -Andrew Morgan,Male,1804,1939-10-05,O- -Robin Long,Female,1805,1933-10-21,B- -Michael Richmond,Female,1806,1961-09-28,O- -Gary Martin,Male,1807,1949-12-01,AB- -Tiffany Dunn,Female,1808,1977-02-11,A- -Jeffrey Nelson,Male,1809,1981-01-22,AB+ -Larry Herrera,Male,1810,1977-06-03,O+ -Chad Mcknight,Male,1811,1959-06-03,O+ -Olivia Becker,Male,1812,1992-05-21,B- -Nancy Johnson,Male,1813,1968-11-16,O+ -Tony Jones,Female,1814,1985-05-21,AB- -Tiffany Collins,Male,1815,1973-06-20,AB- -Cody Mcclain,Female,1816,1979-10-11,AB- -Brad Dennis,Female,1817,1952-07-29,O+ -Richard Robinson,Female,1818,1949-10-02,O+ -Sara Robertson,Female,1819,1931-12-28,AB- -Jeffrey Hawkins,Male,1820,1982-05-08,O+ -Andres Keller,Male,1821,1967-11-15,B+ -Brandy Bridges,Female,1822,1961-02-09,O+ -Robin Foster,Female,1823,1980-02-05,B+ -Mckenzie Moore,Female,1824,2001-08-28,AB+ -Mr. David Mcconnell DDS,Male,1825,1957-09-02,O- -Timothy Arroyo,Male,1826,1950-12-19,A+ -Stanley Crane,Female,1827,1981-08-11,B+ -Cameron Bailey,Female,1828,1999-08-12,B+ -Richard Cole,Female,1829,1994-11-17,O+ -Deanna Stewart,Female,1830,1969-11-03,A+ -Lindsey Kelly DDS,Male,1831,1997-04-17,A- -Leslie Bennett,Male,1832,1951-08-25,A+ -Chloe Wolf,Female,1833,1988-03-17,AB+ -Brenda Mckenzie,Male,1834,1949-12-14,B+ -Charles Frost,Female,1835,1932-06-11,O+ -Edward Walker,Male,1836,1957-12-27,AB- -Breanna Thompson,Female,1837,1942-10-20,A+ -Jack Neal,Male,1838,1935-04-18,O+ -Amanda Kirby,Female,1839,1978-08-21,B- -Thomas Jacobs,Female,1840,1962-07-05,A- -Garrett Gomez,Female,1841,1978-05-23,AB- -Susan Rodriguez,Male,1842,1979-05-08,B- -Brian Crawford,Male,1843,1966-04-01,B- -Adrian Mooney,Male,1844,1995-05-14,A+ -Casey Holmes,Female,1846,1959-10-10,B- -Katrina Ashley,Male,1847,1999-12-28,AB+ -Amanda Edwards,Female,1848,1978-03-12,AB+ -James Lynn,Female,1849,1943-09-26,A+ -Mary Chambers,Male,1850,1993-09-12,O+ -Jeremy Merritt,Female,1851,2000-12-30,O- -Seth West,Male,1852,1967-09-18,O+ -Carlos Thomas,Female,1853,1956-09-13,O+ -Robin Barber,Female,1854,2001-03-03,O+ -Mathew Edwards,Female,1855,1977-06-21,O+ -Daniel Glover,Male,1856,1972-09-02,AB- -Debbie Becker,Female,1857,1999-12-24,O- -Juan Coleman,Female,1858,1949-12-18,AB- -Elizabeth Wright,Female,1859,1932-09-01,B- -Peggy Moody,Male,1860,1941-04-26,A- -Walter Hull,Male,1861,1970-02-23,O+ -Sherri Mckinney,Male,1862,1989-07-24,A- -Bradley Mack,Female,1863,1940-11-16,AB+ -Robert Kennedy,Female,1864,1944-07-01,A+ -Charles Henson,Male,1865,1968-02-04,A+ -Dawn Campbell,Female,1866,1954-12-06,AB- -Kelli Hartman,Male,1867,1952-07-12,AB- -Richard Sanchez,Male,1868,1957-02-11,AB+ -Curtis Fitzgerald,Female,1869,1938-04-09,O+ -James Taylor,Male,1870,1954-08-10,A- -Anthony Garcia,Male,1871,1985-11-28,B+ -Kenneth Hardy,Male,1872,1988-09-25,A- -Anita Warren,Female,1873,1965-04-07,O- -Cassandra King,Female,1874,1944-04-30,B- -Nina Lewis,Male,1875,1956-01-21,A+ -Taylor Ellison,Male,1876,1969-11-11,B- -Aaron Robinson,Male,1877,1975-09-23,O- -Annette Marshall,Female,1878,1936-07-24,AB- -Christopher Greer,Female,1879,1980-10-11,A- -Jeremy Jensen,Female,1880,1982-05-17,A+ -Clinton Gutierrez DDS,Male,1881,1934-05-11,B- -Karen Harvey,Male,1882,1960-12-12,B+ -Elizabeth Wood,Male,1883,1946-12-06,AB- -Jacqueline Oneill,Male,1884,1985-08-14,O- -Paula Gonzalez,Female,1885,2002-10-02,B+ -Carrie Hart,Female,1886,1933-08-05,B- -Anne Dougherty,Male,1887,2000-10-21,B+ -Ryan Baker,Male,1888,1986-08-30,A- -Joshua White,Male,1889,1950-01-10,O+ -Edward Hudson,Male,1890,1981-05-20,B+ -Douglas Howard,Male,1891,1983-09-23,AB- -Nathan Miranda MD,Female,1892,1935-11-10,O- -Jennifer Simmons MD,Male,1893,1970-03-20,B- -John Singh,Male,1894,1979-07-11,A- -Donald Olsen,Female,1895,1948-12-16,O+ -Lisa Caldwell,Female,1896,1930-12-29,O+ -Karina Hudson,Male,1897,1981-12-27,O- -Tiffany Cobb,Female,1898,2001-12-26,AB+ -Juan Miranda,Male,1899,1966-11-29,A- -Thomas Roberts,Male,1900,1986-08-05,A- -Stephanie Smith,Female,1901,1940-03-27,A+ -Charles Ramos,Male,1902,1936-10-05,O- -Elizabeth Jensen,Female,1903,1987-12-27,O+ -Craig Romero,Female,1904,1991-09-12,O+ -Jonathan Smith,Female,1905,1974-02-05,B+ -Chloe Jimenez,Female,1906,1976-05-19,O- -Kevin Lewis,Female,1907,1954-09-09,AB+ -Julie Mcbride,Female,1908,1937-09-09,A+ -Bradley Nelson,Female,1909,1974-10-27,B- -Stephanie Pratt,Male,1910,1988-12-16,O- -Matthew Robinson,Female,1911,1970-09-18,A+ -Michael Massey,Female,1912,1964-10-22,A- -Melissa Parker,Female,1913,1950-09-14,A+ -Erin Collins,Male,1914,1937-06-12,B+ -Rachel Bray,Female,1915,1992-09-02,AB- -Olivia Caldwell,Male,1916,1962-01-13,O+ -Lisa Irwin,Female,1917,1940-03-30,B+ -Jeremy Dixon,Male,1918,1956-09-27,B- -Chad Scott,Female,1920,1940-12-12,O- -Robert Green,Female,1921,1981-06-09,B+ -Trevor Rivera,Male,1922,1974-01-07,O+ -Brandon Webb,Male,1923,1998-11-24,AB- -Jorge Parsons,Female,1924,2002-10-18,B+ -Courtney Reed,Male,1925,2001-07-10,AB- -Alexandra Tucker,Female,1926,1930-10-22,B+ -Anthony Edwards,Male,1927,1957-11-12,O+ -Laura Preston,Male,1928,1989-06-27,AB+ -Robert Jones,Female,1929,1957-01-21,A+ -Felicia Patterson MD,Female,1930,1933-02-10,O- -Mark White,Male,1931,1935-08-27,O- -Nicholas Stokes,Male,1932,1949-03-11,O- -Brett Sexton,Female,1933,1965-07-23,O+ -Carrie Davis,Female,1934,1942-06-10,A- -Thomas Hill,Female,1935,1932-10-04,AB+ -Gregg Solis,Male,1936,1944-11-28,B- -James Rodriguez,Female,1937,1959-04-25,AB- -Taylor Munoz,Female,1938,1970-05-20,O+ -Mrs. Zoe Bartlett,Male,1939,1962-01-31,A- -Scott Alexander,Female,1940,1989-07-06,B- -Kevin Phillips,Female,1941,1955-11-05,AB- -Joseph Park,Male,1942,1966-05-13,AB- -Katherine Mcgee,Female,1943,1933-12-06,AB+ -Tristan Castillo,Female,1944,1931-07-26,A+ -Judith Sexton,Female,1945,1936-07-10,O- -Julia Williams,Male,1946,2000-09-11,B+ -Jaime Hodge,Female,1947,2002-12-29,B- -Christopher Frederick,Female,1948,1943-12-03,O+ -Barbara May,Male,1949,1975-08-14,B- -Kelly Stevens,Male,1950,1966-12-25,A+ -Andrew Smith,Female,1951,1949-04-30,O- -Janice Hancock,Male,1952,1980-01-10,B- -Kevin Pace,Female,1953,1964-12-19,A+ -Tammy Liu,Female,1954,1978-04-28,O+ -Jeremy Lowe,Male,1955,1950-07-06,AB+ -Robert Duncan,Male,1956,1969-10-10,A- -Victoria Barker,Male,1957,1977-09-15,AB- -Molly Foster,Male,1958,1970-09-07,O+ -James Thompson,Male,1959,1999-10-19,O- -Craig Jensen,Male,1960,1952-02-08,AB- -Jesus Myers,Male,1961,1954-11-08,A- -Scott Mills,Male,1962,1982-05-24,O+ -Catherine Hawkins,Female,1963,1997-05-06,B+ -Emily Johnston,Male,1964,1987-05-15,O+ -Tamara Macdonald,Male,1965,1961-03-02,O+ -Whitney Obrien,Female,1966,1974-11-04,B+ -Carrie Johnson,Male,1967,1992-04-02,O+ -Ryan Hull,Female,1968,1936-06-11,AB- -Jacob Gallagher,Male,1969,1995-03-22,O- -Bryan Nguyen,Male,1970,1943-02-21,A- -Janice Benton,Female,1971,1976-09-26,A+ -Kathy Ross,Male,1972,1998-01-24,B- -Kelsey Lawson DVM,Male,1973,1988-01-12,B+ -Kevin Cox,Male,1974,1962-09-09,AB+ -Diane Cummings,Female,1975,1999-05-17,B+ -Michael Mitchell,Female,1976,1989-06-30,A- -Jeffrey Smith MD,Male,1977,1988-08-31,B- -Derek Estrada,Male,1978,1936-08-25,B- -Felicia Ramirez,Female,1979,1988-11-22,AB+ -William Gutierrez,Male,1980,1997-05-13,A- -Terri Harmon,Female,1981,1999-10-08,AB- -Jeffrey King MD,Male,1982,1960-12-05,O- -Dawn Ortiz,Female,1983,1951-05-24,AB+ -Leroy Wright,Male,1984,1969-06-19,O- -Jamie King,Male,1985,1962-04-24,AB- -Chelsea Smith,Male,1986,1962-02-27,B- -Krista Terry,Female,1987,2001-04-07,O- -Jessica Hayes,Male,1988,1965-08-30,AB- -Paul Serrano,Male,1989,1939-03-11,AB- -Dr. Charles Burton MD,Female,1990,1998-09-12,A+ -Heather Bryan,Male,1991,1969-02-13,AB+ -Andrew Perez,Male,1992,1994-10-02,A+ -James Thomas,Female,1993,1947-11-28,B+ -Lori Hayden,Male,1994,1974-12-18,B- -Paul Hunter,Female,1995,1939-02-25,AB+ -John Walker,Female,1996,1954-11-09,B- -Sean Gardner,Female,1997,1937-10-15,A+ -Barbara Martinez,Female,1998,1958-06-19,A- -Cheryl Rodriguez,Male,1999,1977-11-12,AB- -Julie Nguyen,Male,2000,1994-02-05,B- -Katherine Medina,Male,2001,1979-11-07,AB+ -Todd Henry,Female,2002,1968-04-29,B+ -Beverly Lopez,Male,2003,1966-04-23,AB+ -April Austin,Male,2004,1983-07-01,B- -Amanda Rollins,Male,2005,1938-06-21,AB+ -John Richardson,Male,2006,1962-02-04,B+ -Seth Morris,Male,2007,1990-05-08,AB- -Devin Martin,Male,2008,1985-03-15,A- -Gerald Hernandez,Male,2009,1982-10-15,AB- -Gwendolyn Wolfe,Male,2010,1961-11-19,AB+ -Jonathan Santos,Female,2011,1971-04-19,B+ -Roger Shaffer,Female,2012,1932-09-15,B+ -Denise Thompson,Male,2013,1986-02-16,B- -Pamela Valencia,Female,2014,1947-08-26,A+ -Ryan Oliver,Male,2015,1974-09-22,AB+ -Margaret Allen,Male,2016,1986-04-20,AB+ -John Alvarado,Female,2017,1974-03-04,AB+ -Eric Burns,Male,2018,1934-08-10,AB+ -Christina Ward,Female,2019,1945-05-28,B- -Kevin Fletcher,Female,2020,1950-04-30,A+ -Joshua Crawford,Male,2021,1965-03-15,A+ -Spencer Lloyd,Female,2022,1963-04-13,O- -Tammy Diaz,Female,2023,1977-05-31,AB+ -Stephen Anderson,Female,2024,1984-09-16,AB+ -Gary Long,Female,2025,1961-04-13,O- -Stacey Martin,Female,2026,1935-06-04,A+ -Kimberly Lee,Male,2027,1972-07-01,B+ -Emily Jones,Female,2028,2002-05-14,B+ -Casey Brewer,Male,2029,1983-03-24,O+ -Deborah Arias,Female,2031,1954-08-07,AB- -Alec Wallace,Male,2032,1977-01-09,O+ -Alex Sanchez,Female,2033,1973-06-27,A+ -Eric Johnson DVM,Female,2034,2002-03-29,A- -Travis Foster,Male,2035,1944-10-04,AB+ -Melissa Singh,Male,2036,1993-01-09,O+ -Donna Flores,Male,2037,1981-01-12,B- -Frank Stephens,Female,2038,1984-09-28,B+ -Joseph Spence,Male,2039,1934-05-27,B- -Marcus Powell,Female,2040,1989-01-14,O- -Gary Ayers,Female,2041,1947-12-31,A+ -Theresa Santiago,Male,2042,1977-07-21,A+ -Erin Jackson,Male,2043,1945-10-25,O+ -Michael Mason,Female,2044,1940-01-25,AB+ -Austin Ross,Male,2045,1939-04-04,A+ -Sandra Scott,Female,2046,1953-11-07,O+ -Mr. Alex Wilson,Male,2047,1954-01-17,O+ -Patrick Higgins,Male,2048,1977-09-25,AB- -Brittney Wells,Male,2049,1968-04-28,AB- -Jennifer Singleton,Male,2050,1984-10-21,A+ -Amy Gardner,Male,2051,1947-05-14,O+ -Andrew Edwards,Male,2052,1977-06-26,O- -Samantha Boone,Male,2053,1946-08-04,O- -Nancy Campos,Male,2054,1954-04-29,AB- -Morgan Daniels,Male,2055,1945-06-26,A+ -Angel Hogan,Female,2056,1963-02-08,B+ -Bethany Smith,Female,2057,1987-02-08,AB+ -Angela Clay,Female,2058,1982-12-04,A- -Nicole Meyer,Female,2059,1971-10-04,B+ -James Ramos,Female,2060,1996-01-04,O- -Paul Ramos,Female,2061,1931-06-11,O- -Jodi Smith,Female,2062,1938-10-30,B+ -Alexander Watts,Male,2063,1971-04-05,AB- -Lisa Olson,Male,2064,1961-08-02,AB- -Amy Thompson,Male,2065,1967-02-03,A+ -Robert Adkins,Male,2066,1979-12-29,AB- -Ronald Barrett,Female,2067,1934-10-30,B- -Michael Hendrix,Male,2068,1953-11-08,A- -Caleb Moss,Female,2069,1945-11-15,B+ -Danny Ray,Female,2070,1955-03-19,B+ -Robert Bright,Male,2071,1994-04-18,O+ -Andrea Vasquez,Male,2072,1943-12-28,O- -Brenda Stewart,Male,2073,1993-01-18,B+ -Janet White,Male,2074,1975-03-06,B- -Destiny Morgan,Female,2075,1936-08-30,B+ -Julie Hall,Female,2076,1989-10-25,AB+ -Thomas Waters,Male,2077,1976-06-15,B- -Crystal Coleman,Male,2078,1998-05-14,A+ -Victoria Snyder,Male,2079,1985-03-25,AB+ -Joseph Hill,Female,2080,1941-05-30,AB+ -William Brown,Male,2081,1998-01-13,B+ -Christie Galvan,Female,2082,2002-10-19,AB- -Chad Anthony,Male,2083,1978-08-30,B+ -Jessica Adams,Male,2084,1952-11-18,B- -William Thompson,Female,2085,2001-07-30,A+ -Kelly Bishop,Male,2086,1946-11-07,O- -Julie Delgado,Female,2087,1989-09-12,A- -Barry Mayo,Male,2088,1954-06-04,AB- -Johnny Richardson,Female,2089,1980-06-14,B- -Michael Allen,Male,2090,1986-05-08,O- -Amy Mueller,Male,2091,1984-06-06,B- -Amanda Bailey,Male,2092,1976-12-27,AB- -Joseph Avila,Male,2093,1930-08-02,O- -Karen Brooks,Female,2094,1940-04-20,AB- -Mary Dodson DDS,Female,2096,1966-09-08,B- -Kathy Clark,Male,2097,1956-09-29,AB+ -Beverly Robinson,Male,2098,1959-02-18,A- -Jessica Rodriguez,Female,2099,1948-06-06,O+ -Donald Thompson,Male,2100,1983-05-24,A- -Maurice Taylor,Female,2101,1945-11-09,AB+ -Dana Kelly DDS,Male,2102,1973-04-27,AB- -Wendy Mendoza,Female,2103,1954-01-18,A- -Justin Harris,Female,2104,1967-04-18,AB- -Heather Rodriguez,Female,2105,1973-11-10,AB- -Lisa Fernandez,Female,2106,1937-06-13,O- -James Ferrell,Male,2107,1954-05-20,A+ -Tracy Malone,Male,2108,1954-12-28,AB- -Adam Callahan,Male,2109,1991-06-01,A- -Tracey Soto,Female,2110,1996-11-06,A- -Michelle Wilson,Female,2111,1974-11-11,A- -Susan Holmes,Female,2112,1947-06-09,AB+ -Nancy Mitchell,Male,2113,1968-06-26,O+ -Heather Smith,Male,2114,1963-07-03,AB- -Linda Johnson,Female,2115,1980-03-12,B+ -Timothy Lucas,Male,2116,1993-04-16,AB- -Jon Garcia,Female,2117,1969-07-26,AB- -Jack Campbell,Female,2118,1996-04-21,B+ -Beverly Adkins,Male,2119,1977-05-15,O- -Timothy Goodman,Male,2120,1983-07-20,AB- -Jacqueline Stone,Male,2121,1958-07-26,AB+ -Jill Green,Male,2122,1972-07-04,B- -Arthur Harris,Female,2123,1994-01-23,A+ -John Adams,Female,2124,1930-03-31,A- -Danielle Leon,Male,2125,1979-07-16,AB- -Benjamin Howard,Female,2126,1958-05-15,O- -Tasha Dunn,Female,2127,1974-10-26,AB+ -Bridget Marquez,Female,2128,1938-04-30,AB- -Shelly Brandt,Male,2129,1930-04-16,B+ -Anthony Winters,Female,2130,1954-11-09,O- -Jennifer Caldwell,Male,2131,1998-06-16,B- -Alexandra Tran,Female,2132,1980-01-18,O+ -Mary Hunt,Female,2133,1946-09-04,AB- -Erica Dalton,Female,2134,1998-02-25,AB+ -Keith Graham,Female,2135,1946-08-27,O- -Claudia Zimmerman,Male,2136,1976-08-05,B+ -Jessica Patterson,Female,2137,1935-04-10,O- -Lori Robinson,Female,2138,1980-06-27,AB- -Madeline Scott,Female,2139,1948-12-09,O- -Austin Peterson,Male,2141,1983-06-20,O+ -Dawn Nielsen,Male,2142,2001-03-24,O- -Deborah Wood,Female,2143,1931-07-07,A- -Jacob Harris,Female,2144,1999-03-31,A+ -Janet Kerr,Female,2145,1989-08-06,A- -Austin Thompson,Female,2146,1940-09-16,A+ -Brandi Robinson,Female,2147,2001-12-23,O- -Melissa Norris,Male,2148,1939-04-13,B+ -Pamela Ayala,Female,2149,2000-04-26,B+ -Matthew Stokes,Female,2150,1967-04-26,AB- -Kevin Munoz,Female,2151,1997-12-21,B+ -Sara Daniels,Female,2152,1936-08-27,A+ -Christina Carlson,Male,2153,2002-11-29,AB+ -Jennifer Flowers,Female,2154,1931-04-04,A+ -Derek Craig,Male,2155,1966-09-04,A- -Alexis King,Female,2156,1930-07-27,O- -Jennifer Cook,Male,2157,1932-06-18,AB- -Lisa Lopez,Male,2158,1961-11-27,B- -Thomas Weber,Male,2159,1974-12-01,AB- -Caleb Norman,Female,2160,1953-07-20,AB- -Felicia Jimenez,Male,2161,1932-06-13,AB- -Corey Lee,Female,2162,1931-05-30,AB+ -Erin Mitchell,Male,2163,1994-10-30,O+ -Michael Beck,Female,2164,1988-04-14,A- -Keith Lynch,Female,2165,1996-05-25,O- -David Moore,Female,2166,1941-04-02,O+ -Robert Neal,Male,2167,1966-04-20,B- -Jamie Powell,Male,2168,1971-12-05,O+ -Holly Smith,Male,2169,1972-01-10,O- -Robert Wilson,Male,2170,1949-08-28,A- -Jennifer Matthews,Male,2171,1958-04-10,A- -Kenneth Wilson,Female,2172,1962-04-10,O- -Victoria Bruce,Male,2173,1934-04-10,B- -Jose Taylor,Male,2174,1967-04-09,O- -Jeffrey Mcdonald,Female,2175,1978-04-29,B- -Amber Jackson,Male,2176,1984-10-26,B- -Amy Brock,Female,2177,1999-05-04,O- -Kevin Greer,Female,2178,1984-03-29,A+ -Jamie Munoz,Female,2179,1943-02-02,A- -Richard Brown,Female,2180,1980-02-19,B- -Misty Palmer,Male,2181,1962-07-26,O- -Carlos Torres,Male,2182,1936-06-14,B+ -James Larson,Female,2183,1943-02-12,A+ -Robert Smith,Male,2184,1975-09-12,A- -Thomas Erickson,Male,2185,1996-09-14,B- -Mrs. Amanda Cardenas,Female,2186,1984-11-22,A- -Amanda Hubbard,Male,2187,1957-11-16,A+ -Catherine Moreno,Female,2188,1949-04-28,A- -Alexis Adkins,Male,2189,1974-01-12,AB+ -Sherry Mendez,Male,2190,1931-10-24,AB- -Patricia Christian,Male,2191,1942-09-19,AB+ -Sheila Miller,Female,2192,1973-01-06,A+ -Calvin Odonnell,Male,2193,1998-02-20,B- -Bill Lindsey,Male,2194,1937-12-30,O- -Justin Jackson,Female,2195,2000-04-01,O+ -Daniel Conway,Male,2196,1973-10-24,O- -Michael Barnes,Female,2197,1968-05-26,A- -Brandon Swanson,Female,2198,1954-06-30,O+ -Zachary Hall,Male,2199,1964-11-10,O+ -Jasmine Sanchez,Female,2200,1947-01-28,A- -Spencer Martin,Male,2201,1974-08-27,A- -Teresa Ingram,Female,2202,1991-07-02,B- -Adam Cole,Female,2203,1967-01-05,A+ -Kristen Roberts,Male,2204,1930-12-19,B+ -April James,Female,2205,1999-10-04,O- -Thomas Torres MD,Female,2206,1949-03-07,A+ -Brian Mills,Male,2207,1968-06-06,AB+ -Daniel Campos,Male,2208,1975-04-17,B- -Tanya Jackson,Female,2209,2002-09-13,B- -Benjamin Smith,Male,2210,1932-08-14,B+ -Andre James,Female,2211,1935-09-03,AB+ -Dr. Jessica Edwards,Female,2212,1953-07-14,O- -Ronald Sanchez,Female,2213,1971-06-15,AB- -Rebecca Hebert,Female,2214,1965-01-20,AB+ -Michael Anderson,Female,2215,2001-01-31,O- -David Middleton,Male,2216,1939-06-16,O+ -Lori Davis,Male,2217,1948-04-11,A- -Adam Johnson,Male,2218,1932-08-13,B- -Patrick Mcclure,Female,2219,1947-03-28,O- -Kaitlyn Kelly,Male,2220,1973-08-04,A+ -Robin Hamilton,Male,2221,1979-07-19,B+ -Susan Riddle,Male,2222,1971-11-04,A- -Jennifer Jones,Female,2223,1942-11-17,A+ -Christopher Smith,Female,2224,1947-12-21,A- -Vickie Thomas,Male,2225,2000-10-09,B- -Timothy Herring,Female,2226,1990-04-11,AB+ -Christina Phillips,Female,2227,1962-11-12,AB- -Martin Gilbert,Female,2228,1959-08-14,AB+ -Brian Wolf,Female,2229,2001-03-26,O- -Donald Gray,Male,2230,1960-08-02,B+ -Michael Shepherd,Male,2231,2002-03-17,AB+ -Manuel Gray,Male,2232,1964-06-13,B- -James Kelly,Female,2233,1963-05-29,B+ -Jessica Salinas,Female,2234,1978-09-04,O- -Helen Smith,Female,2235,1964-02-25,O+ -Michael Haas,Female,2236,1955-11-27,AB+ -Greg Holden,Male,2237,1987-10-25,AB+ -Angela Gomez,Female,2238,1985-01-10,AB- -Shane Griffin,Male,2239,1972-09-13,O- -Elizabeth Green DDS,Female,2240,1931-06-14,A+ -Brandy Clark,Female,2241,1982-12-16,AB+ -Kimberly Ford,Female,2242,1996-07-01,B- -Deborah Adams,Female,2243,1984-09-09,AB+ -Crystal Mckee,Female,2244,1993-09-26,AB- -Douglas Johnson,Male,2245,1964-12-13,O+ -Carolyn Simpson,Male,2246,1968-02-01,AB- -Emily Mccall,Male,2247,1961-08-27,AB+ -Lauren Benson,Female,2248,1955-01-01,B+ -Timothy Hill,Female,2249,1931-06-10,A+ -William Lawson,Female,2250,1992-08-04,A- -Erica Dougherty,Female,2251,1974-11-11,AB+ -Matthew Flores,Male,2252,1931-01-10,O- -Catherine Stevens,Female,2253,1963-05-25,AB+ -Destiny Bennett,Male,2254,1942-09-23,A+ -Janet Johnson,Male,2255,1936-06-23,O- -Cindy Dixon,Male,2256,1979-01-13,B- -Joshua Mclaughlin,Female,2257,1934-07-05,B+ -Christopher Nguyen,Male,2258,1930-01-14,O- -Elizabeth Wilson,Female,2259,1942-08-05,AB- -Ashley Mays,Male,2260,1936-03-28,O+ -Sarah Jackson,Male,2261,1969-02-21,AB- -Pamela Smith,Male,2262,1938-08-22,A- -Lydia Collins PhD,Male,2263,1952-10-13,O- -Cassandra Burgess,Male,2264,1940-06-11,B- -Lauren Lawrence,Female,2265,1965-12-08,AB+ -Richard Higgins,Male,2266,1938-10-22,B+ -Regina Chang,Male,2267,2002-11-15,O- -Sarah Fisher,Male,2268,1997-05-12,AB- -Martin Merritt,Female,2269,1935-10-15,O- -Emily Benson,Female,2270,2000-09-18,O- -Christina Green,Female,2271,1986-10-14,O- -Rachel Holden,Male,2272,1958-01-12,B- -Lauren Grant,Female,2273,1967-09-04,B+ -Susan Hurley,Male,2274,1990-01-13,A+ -Emily Rose,Male,2275,1987-05-01,A+ -David Butler,Female,2276,1964-06-19,O- -Lauren Beasley,Male,2277,1994-03-12,B- -Kathleen Knight,Male,2278,1939-03-29,B- -Susan Zuniga,Female,2279,1947-08-10,A- -Alexander Wood,Female,2280,1984-05-07,O- -Joseph Long,Male,2281,1983-04-18,AB- -Shannon Mcdonald,Female,2283,1962-10-10,AB- -Travis Bauer,Female,2284,1931-09-22,O+ -Sandy Nelson,Male,2285,1975-08-06,B+ -Amy Adams,Male,2286,1959-08-28,O- -Marie Green,Male,2287,2002-09-29,O+ -Danielle Santiago,Female,2288,1945-09-03,AB- -Juan Miller,Female,2289,1991-01-02,AB- -Laura Mills,Male,2290,1960-05-06,O- -Juan Peterson,Male,2291,1966-01-01,O+ -Crystal Burnett,Female,2292,1984-04-03,O+ -Donna Ortiz,Female,2293,1955-12-08,O- -Michael Spears,Male,2294,1947-03-09,B+ -Aaron White PhD,Male,2295,1972-10-22,A- -James Bush,Female,2296,1946-02-21,O+ -Colleen Mcdonald,Female,2297,1968-04-25,A- -Danielle Fowler,Female,2298,1994-05-04,AB+ -Kelli Parker,Male,2299,1993-01-30,B+ -Harry Pennington MD,Male,2300,1958-11-22,AB- -Jermaine Reyes,Male,2301,1976-06-07,A+ -Mr. Jacob Norton,Male,2302,1994-02-07,B+ -Malik Serrano,Female,2303,1946-09-13,A- -Patrick Madden,Female,2304,1956-01-04,A- -Leslie Allen,Female,2305,1983-08-07,A- -Kevin Benson,Female,2306,1938-09-14,B- -Jennifer Hinton PhD,Male,2307,1991-06-06,B+ -Angelica Barnes,Female,2308,1982-05-06,O+ -Bryce Kennedy,Female,2309,1946-09-30,O+ -Krista Grant,Female,2310,1972-08-11,B- -Joshua Ferguson,Male,2311,1939-10-09,O+ -Donna Kim,Male,2312,1956-12-17,B- -Connor Mathews,Male,2313,2001-08-11,A- -Jared Duncan,Male,2314,1968-09-13,O- -Jake Jensen,Female,2315,1980-11-21,B+ -Yesenia Yang,Female,2316,1978-08-31,AB+ -Kyle Melendez,Male,2317,1934-10-09,A- -Jamie Boyd,Female,2318,1980-02-17,AB+ -Robin Dillon,Male,2319,1931-09-12,AB- -Jennifer Kim,Female,2320,1978-05-07,A- -Patrick Cooper,Female,2321,1977-06-23,A+ -Derek Compton,Male,2322,1935-04-24,O+ -Shane George,Male,2323,1985-09-06,A+ -Elizabeth Brooks,Male,2324,1973-10-23,O- -Amy Allen,Female,2325,1932-08-26,AB+ -Jason Browning,Female,2327,1970-08-25,B+ -Jessica Schultz,Male,2328,2000-11-21,A- -Shannon Harris,Male,2329,2000-02-22,B+ -Lucas Potter,Male,2330,1930-10-09,O- -Jesse Marquez,Female,2331,1972-01-21,O- -Jessica Nelson,Male,2332,1947-02-23,O+ -Malik Murphy,Male,2333,1932-11-24,O- -Frances Bell,Male,2334,1986-08-12,A- -Travis Oneal,Female,2335,1959-05-13,A- -Michael Williamson,Female,2336,1944-03-06,B+ -Nicholas Greene,Male,2337,1949-02-10,B+ -Rebecca Brock,Female,2338,1955-03-11,AB+ -Jamie Schneider,Male,2339,1933-05-14,A- -Katherine Lam,Male,2340,2000-02-14,A+ -Andrew Vega,Female,2341,1987-05-31,AB+ -Heidi Gonzalez,Female,2342,1953-03-08,O+ -Daniel Harris,Female,2343,1982-05-12,AB+ -John Liu,Female,2344,1936-04-08,B- -Brianna Rose,Male,2345,1933-05-24,B+ -Melissa Valdez,Female,2346,1944-09-14,A+ -Kayla Benson,Female,2347,1974-04-10,B+ -Chad Howell,Female,2348,1930-05-06,B- -Miranda Harris,Female,2349,1964-03-27,B- -Jeff Thompson,Female,2350,1995-04-27,AB- -Caitlin Mann,Female,2351,2000-08-05,A- -Jesse Stephens,Male,2352,1972-02-28,O+ -Dennis Fitzgerald,Male,2353,1989-06-26,O- -Courtney Washington,Female,2354,1994-12-26,B- -Jill Griffin,Female,2355,1948-03-05,AB+ -Rachel Gill,Female,2356,1947-12-28,O- -Todd Arellano,Male,2357,1938-11-24,AB+ -Kenneth White,Female,2358,1954-12-11,B+ -Robert Whitaker,Male,2359,1950-10-18,AB+ -Justin Willis,Female,2360,1967-04-02,O- -Dawn Russell,Male,2361,1963-03-04,O- -Charlene Green,Male,2362,1947-03-27,A- -Mary Bell,Female,2363,1992-09-23,AB+ -Judy Sanders,Female,2364,1945-10-06,O+ -Andre Bernard,Male,2365,1964-06-26,A- -Kathleen Butler,Male,2366,1935-05-24,A+ -Luke Oliver,Male,2367,1960-01-29,AB- -Tara Rodriguez,Male,2368,1977-04-19,A+ -Kelly Fields,Male,2369,1942-03-29,O+ -Hannah Clark,Female,2370,1994-07-03,A- -Timothy Thompson,Male,2371,1957-12-30,AB- -Kelsey Simpson,Female,2372,1956-03-01,A- -Jody Singleton,Female,2373,1997-08-21,O- -Shawn Munoz,Male,2374,1955-03-17,AB- -Heidi Mendoza,Male,2375,1957-05-10,B+ -Priscilla Tate,Male,2376,1993-07-05,AB+ -Richard Acosta,Male,2377,1950-08-03,A+ -Brandon Sherman,Female,2378,1967-06-05,AB- -Robin Saunders,Female,2379,1942-08-18,AB+ -Chad Garcia,Female,2380,2001-06-11,A- -Michael Carter,Male,2381,1963-11-17,O+ -Susan Williams,Female,2382,1978-02-20,AB- -Nicole Sellers,Female,2383,1972-07-31,AB+ -Joshua Berry,Female,2384,1970-02-06,A- -Sylvia Mann,Female,2385,1944-05-05,A- -James Mendez,Male,2386,1972-08-25,A- -Terri Hernandez,Male,2387,1991-07-13,O+ -Travis Dixon,Male,2388,1991-12-28,O- -Philip Gallagher,Female,2389,1972-06-13,O+ -Katherine Martinez,Female,2390,1995-12-15,O+ -Ariel Miller,Male,2391,1940-03-08,B+ -Gerald Thomas,Female,2392,1930-10-30,A+ -Terry Wright,Female,2393,1963-04-02,A- -Kimberly Salazar,Female,2394,1977-07-23,AB+ -Melissa Sexton,Female,2395,1957-07-13,AB- -Mr. Matthew Myers,Male,2396,1942-02-27,A+ -James Martin,Male,2397,1988-04-19,A- -Kelly Alvarez,Male,2398,1938-05-31,B- -Samuel Vazquez,Male,2399,1967-03-26,O+ -Derek Brown,Male,2400,1969-02-12,B- -Andrea Jones MD,Male,2401,1968-03-27,A- -Bethany Griffin,Male,2402,1983-05-31,A+ -Christine Rogers,Female,2403,1956-01-24,AB+ -Russell Fisher,Female,2404,1966-08-20,A+ -James Foster,Male,2405,1962-06-27,B+ -Omar Smith,Male,2406,1952-03-31,AB+ -Adam Callahan,Female,2407,1939-01-05,AB+ -Ryan Lee,Male,2408,1941-01-16,A- -Alicia Martin,Male,2409,1943-12-24,O- -Erin Carroll,Female,2410,1976-10-13,A- -Nicole Newton,Female,2411,1952-04-08,O+ -Andre Le,Female,2412,1976-06-06,A+ -Kerry Clark,Male,2413,1945-08-14,AB+ -Regina Dorsey,Female,2414,1951-06-28,A- -Justin Oliver,Female,2415,1989-02-12,A- -Jason Mccall,Female,2416,1965-07-11,A+ -James Patton,Female,2417,1948-12-16,A+ -Lisa Washington,Female,2418,1985-05-04,B+ -Brianna Clark,Female,2419,1983-09-14,AB+ -Rebecca Newman,Male,2420,1931-05-04,AB- -Jennifer Davidson,Male,2421,1949-06-24,B+ -Megan Miller,Male,2422,2000-12-22,B- -Antonio Clark,Male,2423,1973-02-04,O+ -Abigail Young,Male,2424,1938-09-09,O+ -Tyler Fernandez,Male,2425,1934-07-26,AB- -Douglas Navarro,Female,2426,2001-10-08,O- -Lee Ward,Female,2427,1941-04-07,B+ -Michael Fuller DDS,Female,2428,1939-09-24,AB- -Bailey Flores,Female,2429,1951-04-02,O- -Jennifer Carrillo,Male,2430,1932-09-27,O- -Kenneth Fitzgerald,Female,2431,1972-10-25,AB- -Susan Ward,Female,2432,1999-08-13,O+ -Danielle Barker,Female,2433,1978-08-29,B- -Christopher Carson,Male,2434,1944-12-03,O+ -Joel Scott MD,Female,2435,1940-03-01,A- -Patty Barnett,Male,2436,1933-09-29,O+ -Carla Grimes,Male,2437,1952-06-03,O+ -Carla Mcdonald,Male,2438,1954-09-05,B+ -Michael Wallace,Female,2439,1976-02-07,AB- -Courtney Fields,Male,2440,2001-09-25,AB- -Nicole Mcdonald,Female,2441,1982-06-13,A- -Patrick Lyons,Male,2442,1940-03-15,A- -Kylie Harris,Female,2443,1994-08-29,B+ -Derrick Lynch,Female,2444,1943-02-28,AB- -Jeffery Levine,Female,2445,1935-12-31,O+ -Kristen Freeman,Female,2446,1954-12-09,B- -Cory Sanchez,Male,2447,1963-05-06,O- -Michelle Colon,Female,2448,1937-11-15,A+ -Anthony Macdonald,Male,2449,1945-04-24,O- -Michael Kelly,Female,2450,1978-10-20,A- -Candice Marshall,Female,2451,1964-06-23,A- -Pamela Brooks,Female,2452,1954-06-11,O- -Tammy Cantu,Male,2453,1991-06-13,A+ -Thomas Cherry,Male,2454,1969-07-12,O+ -Joseph Bryant,Male,2455,1961-07-27,B- -Marissa Webb,Male,2456,1949-03-12,B- -Robert Maynard,Female,2457,1960-09-07,O- -Brittney Holmes MD,Male,2458,1994-05-06,A+ -Kristen Moore,Female,2459,1999-12-02,B+ -Julie Perry,Male,2460,1938-03-09,A- -Mark Hall,Female,2461,1962-12-19,AB+ -Angela Gray,Female,2462,1955-03-29,O+ -Nicole Jordan,Female,2463,1991-11-29,B+ -Angela Fernandez,Female,2464,1947-09-20,O- -Brittney Reed,Female,2465,1937-11-03,B- -Christopher Taylor,Male,2466,1959-04-12,A- -Anthony Dorsey,Female,2467,2002-08-14,B+ -Dominique Arias,Female,2468,1933-03-23,B+ -Eric Gallagher,Female,2469,1943-01-13,AB- -Felicia Lewis,Female,2470,1930-01-12,AB- -Mark Griffin,Female,2471,1989-03-28,A+ -Lynn Smith,Female,2472,1974-10-10,A+ -Destiny Diaz,Female,2473,1986-11-26,O- -Frank Coleman,Male,2474,1961-08-22,B+ -Reginald Mcpherson,Female,2475,1961-08-29,AB+ -Andrew Flores,Male,2476,1968-06-21,B- -Matthew Watkins,Female,2477,1960-03-06,O- -Steve Campbell,Female,2478,1952-07-18,AB+ -Karen Bishop,Male,2479,1999-11-14,A- -Penny Parker,Female,2480,1989-10-07,A+ -Megan Morrison,Male,2481,1974-04-13,AB- -Dr. Matthew Lindsey,Female,2482,1966-01-30,O+ -Lauren Young,Male,2483,1947-12-28,B+ -Janice Figueroa,Male,2484,2000-01-14,A- -Dana Graves,Male,2485,1997-05-05,AB- -Joshua Mckay,Female,2486,1931-02-11,B- -Susan Coleman,Female,2487,1955-03-17,B- -Jeremy Randall,Female,2488,1942-02-18,AB- -Brian Boyd,Male,2489,2002-04-27,A- -Joyce Johnson,Female,2490,1989-03-19,AB- -Tammy West,Female,2491,1947-11-30,AB+ -Sheryl Wright,Female,2492,1993-11-06,O- -Patrick Roberts,Female,2493,1954-05-21,A+ -Tanya Zimmerman,Male,2494,1941-05-09,AB+ -Brittany Matthews,Male,2495,1962-12-25,O+ -Nina Washington,Male,2496,1964-07-12,AB- -Kristen Gonzales,Female,2497,1965-10-20,O+ -Felicia Benjamin,Male,2498,1975-03-30,O+ -Douglas Miller,Male,2499,1943-05-15,AB+ -Elizabeth Salinas DVM,Male,2500,1968-08-22,A+ -Joshua Davis,Male,2501,1967-05-12,A- -Emma Townsend,Female,2502,1946-06-18,B- -Sara Barton,Male,2503,1977-06-30,O- -Lisa Jones,Male,2504,1949-07-31,B+ -Dana Johnson,Female,2505,1998-04-22,B- -Kevin Bryan,Male,2506,1939-11-20,A+ -Sarah Mason,Male,2507,1957-01-23,B+ -Laura Garcia,Female,2508,1948-11-16,B- -Miss Denise Webster DVM,Male,2509,1966-11-15,AB- -Laurie Craig,Male,2510,1994-11-16,AB- -Cynthia West,Male,2511,1975-02-23,AB+ -Natasha Phelps,Female,2512,1990-01-09,O+ -Ronald Wright,Female,2513,1957-01-12,B+ -Kathleen Richard,Male,2514,1963-08-25,A+ -Jamie Newton,Male,2515,1963-06-05,A+ -William Murphy,Female,2516,1959-08-25,B- -Miguel Lewis,Male,2517,1993-06-10,AB+ -Adam Hall,Female,2518,1935-11-08,B- -William Arellano,Female,2519,1987-01-11,B- -Andrea Gould,Male,2520,1984-07-10,A+ -Suzanne Delgado,Female,2521,1933-07-10,B- -Lisa Lucas,Female,2522,1973-01-05,O+ -Angela Riley,Male,2523,1961-02-18,B- -Lisa Baker,Male,2524,1973-08-28,B+ -Justin Davidson,Female,2525,1949-04-23,O+ -Mary Wilson,Female,2526,1940-01-03,A+ -Luke Vargas,Male,2527,1994-04-21,AB+ -Amanda Taylor,Male,2528,1981-04-26,AB- -Allison Rodriguez,Male,2529,1972-09-17,B+ -Nicole Choi,Female,2530,1997-01-18,O+ -Elizabeth Patrick,Male,2531,1953-08-24,AB+ -Phyllis Waters,Male,2532,1947-08-21,AB+ -Brandon Bell,Male,2533,1988-09-04,O+ -William Sherman,Female,2534,1997-05-20,A+ -Sarah Roth,Male,2535,1989-02-07,O- -Taylor Smith,Male,2536,1956-06-20,AB+ -Adriana Ochoa,Male,2537,1963-04-07,AB+ -Marisa Gray,Male,2539,1934-12-04,A+ -Andrea Poole,Male,2540,2002-05-04,A+ -Colin Lyons,Male,2541,1956-04-14,B- -Gary Brooks,Female,2542,1989-05-06,A+ -John Cooper,Female,2543,1945-01-17,AB+ -Heather Farmer,Female,2544,1957-02-08,O+ -Barbara Brown,Female,2545,1967-06-09,O- -Christopher Ortiz Jr.,Female,2546,1960-06-22,A- -Robert Jackson,Female,2547,1992-01-24,B- -Troy Morgan,Male,2548,1971-09-05,A- -Gary Bennett,Male,2549,1994-10-21,O+ -Kimberly Lee,Female,2550,1933-07-24,O- -Michael Rodriguez,Female,2551,1993-08-31,O- -Diane Williams,Male,2552,1955-11-01,O- -Kelli Salinas,Male,2553,1983-05-04,AB- -Evelyn Hines,Male,2554,1942-08-22,O+ -Judy Lucas,Female,2555,1974-11-19,B+ -Nancy Collins,Female,2556,1959-01-26,B- -Anthony Dawson,Male,2557,1945-10-01,B- -Kimberly Bryant,Male,2558,1956-12-22,O- -Michael Mueller,Male,2559,1947-03-28,O+ -Tammy Stephens,Male,2560,1988-01-16,AB- -Christopher Collins,Male,2561,1977-10-17,O- -Monique Foster,Male,2562,1938-10-31,A+ -Jennifer Everett,Female,2563,1933-08-09,B+ -Jessica Carter,Female,2564,1990-06-18,A- -Hannah Myers,Female,2565,1963-10-12,B- -Courtney Turner,Female,2566,1948-08-21,A- -Sophia Jones,Female,2567,1993-02-17,AB+ -John Stone,Female,2568,1940-02-01,O- -Leah Richardson,Male,2569,1949-10-15,A+ -Jennifer Cooper,Female,2570,1938-12-18,B- -Mr. Jeffrey Ellis,Male,2571,1994-01-09,A- -Noah Gillespie,Female,2572,1930-05-26,B+ -Michael Gregory,Male,2573,1943-09-20,AB- -Robert Riggs,Male,2574,1973-11-26,O+ -Edwin Harris,Male,2575,1938-04-29,B- -Jennifer Johnson,Male,2576,1956-06-07,B+ -Catherine Foster,Female,2577,2001-08-16,A- -Michelle Wiley,Male,2578,1976-03-06,O+ -Victoria Cobb,Male,2579,1983-07-25,A- -Rebecca Diaz,Male,2580,1978-04-12,O+ -Theresa Lambert,Female,2581,1976-08-01,AB- -Jake Martin,Male,2582,1971-01-22,AB- -James Perez,Female,2583,1974-09-23,O- -Edward Mcpherson,Female,2584,1954-03-29,O- -Sally Williams,Male,2585,1962-01-08,B- -Nathan Bailey DDS,Female,2586,1937-10-23,AB- -Rhonda Hernandez,Female,2587,1973-11-05,A+ -Joseph Pratt,Male,2588,1932-09-14,A- -Michelle Smith,Male,2589,1950-11-14,A- -Jade Sanchez,Male,2590,1994-12-02,A- -Kristin Newman,Male,2591,2001-07-09,B- -James Buck,Female,2592,1999-01-24,A- -Ryan Jacobs,Male,2593,1955-01-30,AB+ -Kyle Wolf,Female,2594,1977-11-14,O+ -Lisa Moore,Male,2595,1948-03-19,A- -Cynthia Howell,Female,2596,1998-06-29,B+ -Laura Lawson,Female,2597,1950-04-27,O+ -Jared Williams,Male,2598,1988-08-04,O- -Elizabeth Evans,Female,2599,1932-02-09,A- -Andrew Jarvis,Male,2601,1978-07-15,B+ -Vicki Jacobs,Female,2602,1968-08-23,A+ -Jacqueline Stevens,Female,2604,1941-12-07,B+ -Andrea Wood,Male,2605,2001-08-09,AB- -Megan Stephens,Female,2606,1993-06-03,AB- -Trevor Hurley,Male,2607,1992-12-07,O- -Brian Schwartz,Male,2608,1961-08-09,AB+ -Douglas Smith,Male,2609,1981-04-16,B- -Meredith Hall,Female,2610,1945-08-09,B- -Ryan Howard,Female,2611,1978-04-04,A+ -Susan Carrillo,Female,2612,1933-01-30,O- -Steven Jimenez,Male,2613,1959-07-21,O- -Miranda Frey,Female,2614,2000-07-18,AB+ -Jessica Walter,Male,2615,1948-07-09,A- -Toni Turner,Female,2616,1988-10-28,B- -Lauren Hines,Female,2617,1963-09-28,A- -Margaret Hayes,Male,2618,1965-09-05,O- -Miss Lisa Lopez,Female,2619,1968-06-22,A- -Mary Adams,Male,2620,1964-08-10,AB- -Pamela Santiago,Male,2621,1951-06-23,A+ -Margaret Jones MD,Male,2622,1968-11-27,B- -Mary Case,Male,2623,1975-01-21,AB+ -Ashley Howard,Female,2624,1989-11-03,A+ -William Norton,Female,2625,1957-09-02,O+ -John Parks,Male,2626,1944-03-17,AB- -Dawn Bradley,Female,2627,1936-10-08,AB+ -Mary Floyd,Male,2628,1976-10-17,B+ -Justin Robertson,Male,2629,1979-10-19,A+ -Leah Perez,Female,2630,1948-05-10,O- -Alan King,Male,2631,1940-03-02,O+ -Carla Cooper,Male,2632,1943-10-31,AB+ -Sarah Gibbs,Female,2633,1959-06-14,O- -Jonathan Stevens,Female,2635,1936-10-11,AB- -Carol Rodriguez,Male,2636,1939-11-20,B+ -Eric Mendez,Female,2637,1941-08-26,O+ -Sarah Price,Female,2638,1969-08-28,B- -Dylan Brown,Female,2639,1995-02-10,B+ -Vanessa Mcdowell,Male,2640,1934-10-02,O- -Andrew Wood,Female,2641,2001-08-17,A+ -Mary Rojas,Female,2642,1952-08-11,A- -Martha Ford,Male,2643,1951-11-06,AB+ -Ian Lewis,Female,2644,1936-08-25,O+ -Mark Wright,Female,2645,1963-10-20,O- -Melissa Lozano,Male,2646,1950-05-02,B- -Travis Kelly DVM,Male,2647,1953-05-13,A- -Jacob Hudson,Female,2648,1944-05-16,AB+ -Michael Hopkins,Female,2649,1989-05-06,AB+ -Angela Jordan,Female,2650,1982-07-28,O- -Hannah Walker,Female,2651,2000-08-29,B- -Brenda Reyes,Female,2652,1985-06-19,AB- -Stephen Lopez,Female,2653,1956-07-09,A- -Christina Mcconnell,Male,2654,1968-08-18,AB- -Bryan Smith,Female,2655,1986-05-22,O+ -Michael Hunt,Female,2656,1931-10-24,O- -Jeffrey Jones,Male,2657,1963-01-23,A- -Kevin Smith,Male,2658,1970-06-28,O+ -Rachel Evans,Female,2659,1957-07-18,B+ -Justin Swanson,Male,2660,1973-05-11,AB- -Tracy Gentry,Male,2661,1958-10-27,B+ -Daniel Miller,Female,2662,1939-03-29,B+ -Katie Perez,Female,2663,2000-01-26,A- -Meghan Lee,Male,2664,1930-07-27,AB+ -Charles Holt,Male,2665,1937-04-19,O+ -Richard Walker,Female,2666,1981-09-07,B+ -Jennifer Carroll,Male,2667,1993-07-06,B- -Lance Haynes,Male,2668,1931-09-25,A+ -Brandi Jones,Female,2669,1938-06-11,AB- -Brandi Henson,Female,2670,1967-07-17,AB- -Kelly Howell,Male,2671,1957-09-19,B- -Ian Jackson,Male,2672,1985-01-15,A- -Rachel May,Male,2673,1949-07-03,A- -Tina Combs,Male,2674,1959-06-12,A- -Michael Powell,Male,2675,1934-08-07,O+ -Matthew Hall,Male,2676,1973-07-15,O- -Edward Smith,Male,2677,1930-08-25,B+ -Lori Hill,Male,2678,1950-05-22,AB+ -Elizabeth Robinson,Male,2679,1942-03-02,A+ -Mary Scott,Female,2680,1993-05-24,O- -Paul Salazar,Female,2681,1972-05-03,O- -Phillip Rivera,Female,2682,2001-07-03,B- -Sabrina Williams,Female,2683,1991-07-23,O+ -Todd Phillips,Female,2684,1953-06-04,AB- -Jennifer Graham,Female,2685,1981-05-05,AB- -Sergio Wilson,Male,2686,1975-08-22,B- -Michelle Webb,Male,2687,1930-05-29,O+ -Rachel Mcmillan,Male,2688,1966-09-04,B- -Corey Mcguire,Female,2689,1985-11-29,AB- -Tracy Sanford,Male,2690,1992-10-15,O- -Timothy Rose,Male,2691,1994-05-10,AB+ -James Delacruz,Female,2692,2002-02-14,B+ -Steven Petersen,Male,2693,1943-05-28,A- -Laura Valdez,Male,2694,1989-04-25,O+ -Kimberly Boone,Female,2695,1977-08-18,B+ -Robin Bishop,Female,2696,1960-03-07,A+ -Haley Baker,Female,2697,1959-04-18,A+ -Antonio Mitchell,Male,2698,1956-08-07,O- -Elizabeth Mercado,Female,2699,1982-06-26,B- -Troy Parker,Female,2700,1985-01-21,B- -Nancy Smith DDS,Male,2701,1974-04-03,AB- -Taylor Moore,Male,2702,1987-05-22,O- -Robert Webb,Male,2703,1945-10-31,AB- -James Moses,Male,2704,1991-12-28,AB- -David Estes,Male,2705,2001-09-02,A+ -Glenn Weber,Male,2706,1981-06-14,AB- -Julie Velasquez,Male,2707,1975-10-16,B+ -Andrew Smith,Male,2708,1937-09-18,A- -Angela Carey,Female,2709,1971-05-02,AB- -Kristi King DVM,Male,2710,1981-09-10,A+ -Isabella Rose,Female,2711,1991-03-08,A- -Deborah Goodman,Male,2712,1944-07-05,B- -Thomas Decker,Female,2713,1957-02-25,O+ -Nicole Garcia,Male,2714,1995-08-06,AB+ -Travis Hamilton,Male,2715,1979-06-26,AB- -Austin Benjamin,Female,2716,1938-12-12,B+ -Cory Heath,Female,2717,1942-01-24,A- -Javier Gray,Male,2718,1998-01-01,O+ -Andrea Neal,Male,2719,1978-10-22,A+ -Stacy Farmer,Male,2720,1998-05-25,O+ -Tracy Davidson,Female,2721,1958-06-05,AB+ -Jenny Harris,Male,2722,1942-02-24,B+ -Patricia Brown,Male,2723,1944-11-18,O+ -Brandon Delgado,Male,2724,1997-12-14,B+ -Ashley Solis,Male,2725,1941-03-31,A- -Rebecca Anderson,Male,2726,1931-07-15,O+ -Dr. Stacy Gibson PhD,Male,2727,1963-10-04,B+ -William Austin,Male,2728,1998-11-29,O+ -Damon Brady,Male,2729,1990-01-18,O+ -Bethany Hicks,Female,2730,1935-01-01,O- -Daniel Obrien,Female,2731,1961-04-09,AB- -Angela Stephens,Male,2732,1963-08-01,A+ -Martha Singleton,Female,2733,1950-11-21,AB+ -Nancy Garcia,Female,2734,1952-10-17,A+ -Carly Johnson,Male,2735,1983-06-14,O- -Shannon Wood,Male,2736,1951-01-24,O- -Zachary Luna,Female,2737,1952-08-17,A- -Richard Fields,Female,2738,1964-09-25,O- -Katherine Smith,Female,2739,1967-07-22,AB- -Cole George,Female,2740,1996-04-30,O- -Nancy Velasquez,Male,2741,1948-05-27,O+ -Dana Moody,Female,2742,1994-01-11,A+ -Melinda Curtis,Female,2743,1986-06-05,B- -Tabitha Jenkins,Male,2744,1983-01-05,AB+ -Jacqueline Mejia,Male,2745,1950-03-10,O- -Susan Dunlap,Female,2746,1946-03-05,A+ -Lisa Beck,Female,2747,1991-07-21,A- -Billy Ross,Female,2748,1974-02-26,O- -Belinda Combs,Female,2749,1945-06-27,AB- -Connor Chen,Female,2750,2002-09-21,O- -Bradley Fisher,Male,2751,1954-08-07,O- -Sara Berry,Female,2752,1986-07-09,B+ -Lisa Thompson,Female,2753,1952-09-08,B+ -David Myers,Male,2754,1946-02-27,O- -Mary Daniels,Male,2755,2000-05-22,A- -Kimberly Matthews,Female,2756,1943-06-19,B+ -Robert Navarro,Female,2757,1953-01-29,O- -Danielle Schultz,Female,2758,1970-04-17,AB+ -Kevin Harris,Female,2760,1973-03-31,A+ -Steven Moody,Female,2761,1960-06-30,B+ -Robert Dillon,Male,2762,1936-12-05,B+ -Rhonda Sherman,Female,2763,1980-03-23,AB- -Cynthia Wagner,Female,2764,1994-02-23,O- -Tammy Marshall,Male,2765,1977-09-23,O- -Benjamin Anderson,Male,2766,1945-10-21,O- -Colleen Boyd,Male,2767,1972-05-16,O- -Stephanie Sellers,Female,2768,1981-10-13,B+ -Frank Conner,Male,2769,1973-02-15,O+ -Vanessa Little,Female,2770,1938-02-12,O+ -Daniel Rice,Male,2771,1949-07-17,B- -Jordan Smith,Male,2772,1977-06-30,O- -Maria Mccarthy,Female,2773,1976-04-29,B- -Edwin Bailey,Female,2774,1968-01-13,AB+ -Michael Miranda,Male,2775,1950-02-05,B- -Danielle Smith,Female,2776,1994-07-07,A+ -Lori Brown,Female,2777,1951-10-25,O+ -Ashley Clark,Female,2778,1963-12-29,O+ -Kenneth Little,Female,2779,1962-07-03,O- -Barbara Ibarra,Female,2780,1962-08-17,B+ -Rebecca Collins,Male,2781,1953-11-30,O- -Tammy King,Female,2782,1932-04-25,AB+ -Brian Acosta,Female,2783,1990-09-04,AB- -Alexandra Davidson,Female,2784,1983-03-04,AB+ -Robert Williams,Female,2785,1991-02-21,A+ -Nathan Cain,Female,2786,1936-10-30,O- -Brittany Snyder,Female,2787,1964-09-16,O- -Alyssa Levine,Male,2788,1982-04-21,AB+ -Zachary Turner,Female,2789,1980-01-07,AB+ -Robert Ali,Female,2790,1963-10-05,AB+ -Dana Zavala DDS,Male,2791,1986-10-07,O+ -Jeremiah Lawrence,Female,2792,1944-03-07,B- -Veronica Morris,Male,2793,1948-02-06,B- -Luis Aguilar,Male,2794,1947-08-10,O- -Kimberly Obrien,Male,2795,1949-08-03,O+ -Tamara Gomez,Female,2796,1967-11-11,AB+ -Jessica Martinez,Female,2797,1957-10-11,O- -Lisa Ferguson,Female,2798,1947-10-07,O+ -Elizabeth Bryant,Female,2799,1987-10-30,A+ -Todd Hernandez,Female,2800,1992-09-21,AB- -Eric Owens,Male,2801,1940-07-17,O+ -Jeffrey Downs,Female,2802,1976-09-29,A- -Frank Bird,Male,2803,1967-02-20,O- -Sheri Gray,Female,2804,2002-08-17,B+ -Jennifer Gilmore,Male,2805,1989-01-10,B- -Daniel Wilkins,Female,2806,1998-07-15,A- -Jennifer Jackson,Female,2807,1943-11-27,AB+ -Thomas Kelly,Male,2808,1963-04-26,AB- -Jason Ortiz,Male,2809,1944-12-01,B+ -Amy Taylor DDS,Female,2810,1978-02-01,A+ -Paula Anderson,Female,2811,1954-11-05,B+ -Andrea Taylor,Male,2812,1947-07-17,AB- -Caleb Flores,Female,2813,1998-05-19,B+ -Richard Kelly,Female,2815,1993-10-08,AB- -Eric Williams,Female,2817,1954-02-04,O+ -Shannon Martinez,Female,2818,1968-07-23,O- -Sandra Jones,Male,2819,1934-06-27,B+ -Mrs. Tracie Solis,Female,2821,1990-05-21,B+ -Ashley Elliott,Female,2822,1993-10-29,O- -Stephen Preston,Female,2823,1958-04-24,AB- -Jodi Pope,Female,2824,1933-10-14,AB+ -Carlos Bush,Female,2825,1933-11-04,O- -Anita Oconnor,Male,2826,1954-09-03,AB- -Tammy Elliott,Female,2827,1939-01-06,O- -Beverly Hansen,Female,2828,1954-09-03,AB+ -Nancy Harper,Female,2829,1931-02-24,A+ -John Hayes,Male,2830,1963-12-25,A- -Nicole Miller,Male,2831,1942-05-15,AB- -Lindsay Dominguez,Female,2832,1983-11-25,B- -Loretta Long,Male,2833,1996-05-15,B- -Charles Fields,Female,2834,1972-03-23,AB- -Kelly Hill,Male,2835,1956-07-23,O+ -Amy James,Male,2836,1996-05-28,A+ -Kenneth Brown,Female,2837,1945-08-03,O+ -Samantha Murphy,Male,2838,1932-02-07,A- -Kelli Harris,Male,2839,1980-06-15,B- -Alexander Howard PhD,Male,2840,1970-07-28,AB+ -Angela Mcgee,Female,2841,1934-03-30,AB- -Megan Gallegos,Female,2842,1957-04-05,A- -Brent Rodriguez,Male,2843,1946-10-24,B+ -Diana Sanchez,Male,2844,1959-09-03,B+ -Lawrence Collins,Female,2845,1940-03-05,O- -Jay Smith,Female,2846,1942-04-09,B- -Emily Bright,Female,2847,1996-06-25,A+ -Luke Baker DDS,Male,2848,1947-12-06,B- -Jerry Ochoa,Male,2849,1981-02-19,A+ -Lisa Raymond,Female,2850,1943-03-31,A+ -Angela Smith,Male,2851,1951-03-30,AB- -Dana Rhodes,Male,2852,1959-11-05,A+ -Jeremy Jones DDS,Male,2853,1993-06-16,O+ -John Lewis,Male,2854,1995-10-09,B+ -John Smith,Female,2855,1951-11-20,A- -Elizabeth Reilly,Male,2856,1991-04-22,AB+ -Lisa Mann,Female,2857,1945-03-05,B- -Sylvia Grimes,Male,2858,1999-10-02,AB+ -Elizabeth Martin,Female,2859,1992-04-05,A- -Brian Rodriguez,Female,2860,2002-10-15,O- -Richard Hammond,Male,2861,1997-12-12,A- -Michael Thomas,Female,2862,1970-08-07,B- -Rebecca Sexton,Female,2863,1995-01-24,B+ -Danielle Shannon,Female,2864,1973-12-13,AB+ -Jon Schultz,Male,2865,1936-07-13,AB+ -Lauren Morales,Female,2866,1969-03-05,AB- -Randall Baker,Female,2867,1986-07-18,AB- -Gerald Rodriguez,Female,2868,1931-11-03,A- -Laurie Lamb,Female,2869,1930-06-13,A- -Amanda Williams,Female,2870,1953-09-13,O- -Jeffery Johnson,Female,2871,1960-10-04,A+ -Daniel Decker,Male,2872,1987-06-07,B- -Molly Mitchell,Female,2873,1943-02-17,AB- -Robert Conley,Male,2874,1959-02-12,B- -Megan Rogers,Male,2875,1943-02-20,O- -Adam Cooper,Female,2876,1991-05-21,AB- -Crystal Lang,Female,2877,1981-04-22,AB- -Charles Fowler,Male,2878,1990-12-23,A+ -Jonathan Lynch,Female,2879,1996-08-27,B- -Jessica Sanchez,Male,2880,1959-06-07,B+ -Valerie Simpson,Female,2881,1945-12-15,B- -Ricky Mccarthy,Female,2883,1998-10-12,B- -Greg Kane,Female,2884,1942-12-03,A+ -Linda Curtis,Female,2885,1931-08-17,AB- -Jay Walker,Male,2886,1988-02-09,O- -Timothy Gillespie,Female,2887,1950-03-31,B- -Danielle Williams,Male,2888,1968-06-26,AB+ -Dalton Brooks,Female,2889,2001-04-13,B+ -Barbara Sanders,Male,2890,1984-06-03,B+ -Wayne Wallace,Female,2891,1991-09-26,A+ -Matthew Ramirez Jr.,Female,2892,1959-02-14,O+ -Victoria Moore,Female,2893,1982-03-05,O- -Jessica Archer,Female,2894,1986-05-11,AB+ -Benjamin Martin,Female,2895,1930-01-17,B- -Jennifer Obrien,Female,2896,1938-09-27,O+ -Thomas Griffith,Male,2897,1931-01-28,O- -Kathleen Roman,Female,2898,1998-06-13,A+ -Christina Carlson,Female,2899,1947-03-05,O+ -Leah Scott,Female,2900,1976-06-03,AB- -Nicole Edwards,Female,2901,1939-12-11,A- -Jennifer Thompson,Female,2902,1946-11-25,O+ -Kristie Hall,Male,2903,1955-07-01,A- -Louis Coleman,Female,2904,1994-07-05,B+ -Sharon Baker,Female,2905,1997-12-12,AB+ -Cassidy Cooper,Male,2906,1985-07-12,O- -Shawn Cline,Male,2907,1997-02-05,AB+ -Laura Mckinney,Female,2908,1981-02-05,AB+ -Javier Sanford,Female,2909,1999-06-12,B- -Daniel Stevens,Male,2910,1995-04-05,A+ -Ryan Smith,Female,2911,1954-05-21,O+ -Kimberly Allen,Male,2912,1976-12-24,O- -Richard Porter,Female,2913,1993-08-31,B+ -Brian Rodgers,Male,2914,1981-01-04,AB- -Julia Powell,Male,2915,1994-04-07,A+ -Yolanda Ramirez,Female,2916,1975-01-27,A+ -Diane Williams,Female,2917,1952-02-15,O- -Bryan Wilkinson,Male,2918,1949-06-09,A+ -Adam Thompson,Female,2919,1985-08-10,B- -Todd Murphy,Male,2920,1999-08-18,A+ -Thomas Perez DDS,Male,2921,1994-12-15,B+ -Jessica Chavez,Female,2922,1970-11-03,B+ -Angela Howard,Female,2923,1949-05-24,B- -Emily Harris,Male,2924,1991-12-01,O+ -Brian Jenkins,Male,2925,1955-04-03,O+ -Michael Daniels,Male,2926,1943-07-12,AB+ -David Payne,Female,2927,1983-10-25,B+ -Brandon Fitzpatrick,Male,2928,1939-06-19,B- -Mr. Richard Johnson,Male,2929,1951-04-29,AB- -Ashley Miller,Male,2930,1998-05-27,O+ -Denise Williams,Female,2931,1995-10-21,A+ -Douglas Hill,Male,2932,1937-06-04,O- -Patricia Chan,Male,2933,1960-11-19,O- -Scott Morrison,Male,2934,1979-06-05,A- -Maria Clark,Male,2935,1975-04-06,B+ -Jerome May,Female,2936,1992-06-08,B- -Richard Stone,Female,2937,1963-02-06,AB- -Patrick Wall,Female,2938,1957-10-08,AB+ -Dr. Terry Austin DDS,Male,2939,1975-11-10,A+ -Maria Smith,Female,2940,1972-09-04,B- -Nicole Rush,Female,2941,1957-01-05,A- -David Page,Female,2942,1942-05-29,O- -Matthew Nelson,Female,2943,1964-09-25,B- -Joshua Braun,Female,2944,1944-08-05,A+ -Michelle Hess,Female,2945,1945-02-01,AB- -Michael Drake,Female,2946,1998-10-29,B+ -Michele Mann,Male,2947,1954-07-18,AB- -Christina Moore,Male,2948,1947-10-12,O+ -Nicolas Shah,Male,2949,2002-11-12,A+ -Lori Garcia,Female,2950,1959-06-17,A- -David Zhang,Male,2951,1944-11-22,O+ -Brett Key,Male,2953,1969-08-17,O+ -Ashlee Larson,Female,2954,1956-09-26,O+ -James Carlson Jr.,Female,2956,1966-05-11,B- -Alejandro Perkins,Male,2957,1947-10-30,A- -Sherry Copeland,Female,2958,1961-06-10,O- -Robert Maldonado,Female,2959,1995-05-28,AB- -Miss Maria Bates DDS,Female,2960,1978-04-09,B+ -Marvin Underwood Jr.,Male,2961,1985-05-15,B- -Mary Ware,Male,2962,1998-04-09,O- -Seth Johnson,Male,2963,1936-07-04,AB- -Jessica Murray,Male,2964,1983-02-05,B+ -Kimberly Patel,Female,2965,1999-12-03,A- -Ricardo Roth,Male,2966,1962-05-17,B+ -John Valentine,Female,2967,1979-11-11,A- -Angel Grant,Female,2968,1949-02-09,A+ -Andrew Watson,Male,2969,2001-09-14,B+ -William Murray,Male,2970,1956-12-02,AB- -David Marquez,Female,2971,1964-03-27,AB- -Melanie Hendrix,Male,2972,1998-04-27,A- -Jordan Thomas,Male,2973,1986-08-04,AB- -Gregory Baker,Male,2974,1948-12-02,AB+ -Amy Soto,Male,2975,1998-04-19,A+ -Kevin Bryant,Male,2976,1968-07-29,B- -Sheila Martinez,Male,2977,1936-01-06,B+ -Mary Anderson,Female,2978,1985-02-12,B- -Jason Rivera,Female,2979,1999-01-26,O- -Stephanie Rodriguez,Male,2980,1946-05-15,B- -Sydney Moore,Female,2981,1990-03-18,O+ -Alexa Phelps,Male,2982,1976-12-18,AB- -Edwin Valenzuela,Male,2983,1932-02-20,B- -Victoria Mills,Male,2984,1957-02-16,O- -Carol Martin,Male,2985,1947-04-05,O- -Justin Gallagher,Female,2986,1970-03-18,O+ -Terri Lewis,Male,2988,1940-11-27,O- -Seth Woods,Female,2989,1956-01-08,A- -Jamie Coleman,Female,2990,1998-09-19,AB+ -Deborah Benson,Female,2991,1976-04-14,A- -Michael Martin,Male,2992,1965-10-14,AB- -Christopher Meyer,Male,2993,1999-11-06,AB- -Mathew Martin,Male,2994,1995-08-01,AB- -Maurice Garcia,Male,2995,1963-06-29,A+ -Stephen Ward,Male,2996,1990-09-11,B- -Brandy Walters,Male,2997,1942-07-20,AB+ -Lynn Dixon,Male,2998,1946-04-13,B- -Sherry Aguirre,Male,2999,1988-05-21,AB+ -Victor Fox,Female,3000,1992-01-07,B- -Mr. Randy Pierce,Male,3001,1974-11-03,O+ -Lori Robertson,Male,3002,1949-07-08,B+ -Brittany Reed,Female,3003,1962-07-21,A- -Travis Miller,Female,3004,1963-08-11,O- -Joshua Jackson,Female,3005,1936-09-27,O- -Nicholas Garrett,Male,3006,1969-02-16,A- -Bridget Velazquez,Male,3007,1968-06-06,O+ -Holly Pierce,Female,3008,1961-04-23,AB+ -Linda Robinson,Male,3009,1931-11-17,A- -Jennifer Houston,Female,3010,1980-10-09,A+ -Kelly Johnson,Female,3013,1994-02-09,AB+ -Toni Jackson,Female,3014,1963-07-25,O- -Seth Smith,Male,3015,2001-07-30,A+ -Michael Murray DDS,Female,3016,1989-06-25,B- -Alexander Woods,Male,3017,1973-10-12,A+ -Jeremy Hubbard,Female,3018,1974-12-18,AB+ -Pamela Ayers,Female,3019,1959-05-25,O+ -Caitlin Diaz,Female,3020,1943-05-08,B- -Paula Dean,Female,3021,1978-04-19,AB+ -Lori Parrish,Female,3022,1960-08-13,B- -Martin Jordan,Female,3023,1995-12-07,A+ -Brandy Brown,Female,3024,1936-01-06,O- -Jorge Wells,Female,3025,1949-08-14,AB+ -Mario Smith,Male,3026,1973-10-19,B+ -Zachary Marshall,Female,3027,1968-12-02,O+ -Todd Harris,Male,3028,1930-10-29,B+ -Michelle Nichols,Male,3029,1995-06-20,B+ -Sharon Jones,Male,3030,1992-04-30,A- -Cynthia Valencia,Female,3031,1976-08-17,A+ -John Davis,Male,3033,1969-11-23,AB+ -Mia Travis,Male,3034,1957-03-31,O+ -Mrs. Kimberly Hogan DDS,Male,3035,1998-12-03,AB+ -Rachel Schroeder,Male,3036,1999-02-05,A+ -Jackie Fuller,Male,3037,1986-09-18,AB+ -Mr. John Mcpherson,Male,3038,2001-01-12,B- -Tina Ibarra,Female,3039,1959-07-01,A+ -Caitlin Bartlett,Male,3040,1994-01-12,AB+ -Brandon Hudson,Female,3041,1974-03-11,A- -Keith Smith,Female,3042,1984-07-17,O- -Maureen Osborne,Male,3043,1965-10-01,AB+ -Jennifer Roberts,Male,3044,1964-03-23,B- -Wendy Sanchez,Male,3045,1987-05-04,O+ -Christopher Carpenter,Male,3046,1992-11-14,A- -Maria Anderson,Male,3047,1998-01-22,O+ -Isabella Fisher,Male,3048,1973-08-04,B+ -Andrea Lloyd,Female,3049,1962-07-02,A- -Crystal Ramos,Male,3050,2001-05-10,O+ -Nicole Mcfarland,Male,3051,1941-03-06,O- -Crystal Coleman,Female,3052,1967-07-24,B- -Susan Tate,Male,3053,1986-04-24,B+ -Mary Harper,Male,3054,1998-07-19,A+ -Heather Richmond,Male,3055,1958-10-18,O+ -Tamara Suarez,Male,3056,1940-04-12,A- -Edward Johnson,Female,3057,1934-09-21,B- -Jacqueline Cooper,Male,3058,1933-10-08,AB+ -Ms. Debra Ramirez,Male,3059,1953-11-02,O- -Tracey Moon,Female,3060,1954-05-09,B- -John Stark,Female,3061,1979-05-21,B- -Richard Erickson,Female,3062,1980-07-07,A+ -William Vance,Male,3063,1974-12-02,B- -William Butler,Male,3064,1981-08-05,A+ -Paul Spencer,Male,3065,1946-03-24,O- -Thomas Cabrera,Female,3066,1947-02-12,O- -Tyler Koch,Male,3067,1956-01-01,AB+ -John Manning,Male,3068,1994-10-31,A+ -Elizabeth Coleman,Male,3069,1939-01-14,A+ -Gloria Larson,Male,3070,1992-01-19,O+ -David Curry,Male,3071,1953-06-02,O+ -Shelby Gardner,Female,3072,1994-12-28,AB+ -Jessica Molina,Male,3073,1940-03-16,O- -Jeffrey Rodgers,Male,3074,1992-01-12,AB- -Rachel Gutierrez,Male,3075,1991-04-10,O+ -Kimberly Martin,Female,3076,2000-10-20,B- -Anthony Flores,Female,3077,1976-04-07,O- -Andrew Nunez,Female,3078,1976-02-01,AB- -Jessica Hubbard,Female,3079,1946-06-25,B+ -Sean Miller,Female,3080,1972-05-03,B- -Sarah Mcintosh,Male,3081,1989-06-27,A- -Jacqueline Meza,Male,3082,1957-07-05,A+ -Brandy Wilkins,Male,3083,1996-11-07,O- -Luke Lee,Female,3085,1962-03-08,A- -Bryan Newton,Female,3086,1936-11-25,AB+ -Michael Simmons,Female,3088,1938-06-09,A+ -Kaitlin Miller,Female,3089,1933-11-29,A+ -Dawn Mullins,Female,3090,1940-11-11,B- -Matthew Davidson,Female,3091,1947-08-25,A- -Christine Rocha,Male,3092,1969-11-18,A+ -Robert Clark,Female,3093,1968-06-12,O+ -Matthew Jones,Female,3094,1999-10-24,O- -Michele Moore,Male,3095,1961-01-07,O+ -Scott Day,Male,3096,1935-11-30,B- -Cody Thomas,Female,3097,1944-01-20,AB- -Cody Green DDS,Female,3098,1981-10-31,B+ -Kristen Smith,Male,3099,1983-01-06,B- -Timothy Perez,Male,3100,1970-11-20,O- -Carl Mccann,Female,3101,1958-09-04,A+ -Scott Cruz,Female,3102,1982-02-10,A- -Amanda Harrell,Male,3103,1998-02-22,A- -Jeffrey Wilkerson,Female,3104,1959-08-02,AB+ -Edward Vargas,Male,3105,1938-06-11,B- -Mr. Hayden Rubio,Male,3106,1977-09-12,O- -Jessica Estes DVM,Male,3107,1968-03-06,AB+ -Jenny Welch,Male,3108,1984-05-30,A+ -Lisa Lester,Female,3109,1950-10-27,AB- -Brandon Curtis,Female,3110,1995-07-07,B- -Dr. Robert Sherman MD,Female,3111,1972-02-09,AB- -Stephanie Bradshaw,Female,3112,1982-01-26,O- -Tracey Carroll,Male,3113,1940-11-27,AB- -Mr. Samuel Elliott,Male,3114,1934-11-14,AB- -Christopher Jones,Female,3115,1996-06-29,O- -Joshua Barrera,Male,3116,1943-12-29,O- -Mark Simpson,Male,3117,1989-01-24,B- -Lucas Buchanan,Male,3118,1963-02-04,AB- -Brianna Christensen,Female,3119,1995-01-22,AB+ -Julie Spencer DDS,Male,3120,1977-12-08,B+ -Nicole Hernandez,Male,3121,1976-10-07,O- -Rachel Myers,Male,3122,1935-12-20,A+ -Michael Barnett,Male,3123,1956-04-10,AB- -Margaret Dean,Female,3124,1944-05-18,O- -Samantha Knight,Female,3125,1955-04-15,AB+ -Sara Ford,Female,3126,1980-02-21,A- -Donna Davis,Male,3127,1970-09-19,B- -Nicole Shea,Male,3128,1932-10-10,AB- -Gary Robinson,Female,3129,1975-06-24,A- -Gina Davidson,Female,3130,1994-11-26,O- -Travis Clark,Female,3131,1935-01-03,O- -Julia Gonzalez,Female,3132,1951-08-28,A+ -Cassandra Short,Female,3133,1945-04-20,A+ -Troy Walker,Male,3134,1965-11-22,AB- -Sally Franklin,Male,3135,1935-07-17,A- -Jennifer Yu,Male,3136,1988-06-15,B+ -Samantha Bailey,Male,3137,1969-10-20,A- -Belinda Sanchez,Female,3138,2002-12-30,O- -Margaret Anderson,Female,3139,1946-02-17,B+ -Savannah Phillips,Female,3140,1932-12-16,AB- -Ashley Tran,Male,3141,1943-10-16,O- -Haley Cummings,Female,3142,1972-02-09,A+ -Jennifer Martinez DDS,Male,3143,1959-08-19,AB+ -Julia Johnson,Male,3144,1937-01-07,O+ -Linda Bean,Female,3145,1939-01-06,B+ -Jeffrey Bradford,Male,3146,1939-10-27,O+ -Ashley Novak,Female,3147,1974-01-17,O- -Lauren Myers,Female,3148,1974-01-30,A- -Jack Benton,Female,3149,1986-12-28,A+ -Gary Smith,Female,3150,1993-08-03,B- -Derrick Gonzalez,Male,3151,1948-03-10,B- -Erika Whitehead,Male,3152,1940-11-03,O+ -Jackson Williams,Female,3153,1960-02-18,AB+ -Michelle Powers,Female,3154,1959-07-03,O+ -Bailey Rich,Male,3155,1930-06-11,O- -Anthony Freeman,Female,3156,1973-11-20,AB+ -Joseph Collins,Male,3157,1976-06-25,B- -Lee Murray,Male,3158,1968-12-13,A- -Kimberly Romero,Female,3159,1960-07-16,A+ -Zachary Mccormick,Male,3160,1963-01-28,B+ -Thomas Peck,Female,3161,1939-04-14,A+ -Joseph Foster,Male,3162,1946-06-03,O- -Karen Jenkins,Female,3163,1992-04-03,O+ -Alexandria Nelson,Male,3164,1964-10-02,O- -Patrick Haley,Male,3165,1976-09-03,B+ -Mark Burke,Male,3166,1955-07-13,A+ -Bradley Day,Male,3167,1931-06-26,B+ -Melissa Clayton,Female,3168,1989-09-25,B- -Erika Phelps,Female,3169,1943-12-12,A+ -Samantha Sanchez,Male,3170,1966-10-07,AB+ -Eric Dixon,Male,3171,1960-07-28,A- -Isabel Lawson,Male,3172,1977-03-26,B+ -Stephen Jones,Female,3173,1973-12-24,A- -Taylor Young,Male,3174,1958-02-01,AB- -Karl Mason,Female,3175,1998-06-20,A+ -Jasmine Wilkerson,Female,3176,1973-12-05,A+ -Todd Rangel,Female,3177,1944-12-22,A- -Dr. Richard Thompson,Female,3179,1947-02-17,AB- -Robert Lopez,Male,3180,2000-08-03,AB+ -Holly Sanford,Male,3181,1959-05-09,O+ -Deborah Douglas,Male,3182,1933-03-15,B+ -Kellie Mcdonald,Male,3183,1932-04-10,B+ -Karen Faulkner,Male,3184,1934-07-10,A+ -Anne Mcdaniel,Male,3185,1977-12-20,A- -William Hansen,Female,3186,1982-07-21,O- -Johnny Harrison,Male,3187,1998-08-03,A+ -Elizabeth Anderson,Male,3188,1956-01-23,O- -Amanda Lee,Male,3189,1966-04-20,AB+ -Timothy Williamson,Female,3190,1974-04-24,A+ -Julie Hobbs,Male,3191,1932-10-16,B+ -Tracey Ford,Male,3192,1989-03-13,A- -Pamela Howard,Female,3193,1957-06-16,AB+ -Shawn Guerrero,Male,3194,1964-01-31,AB+ -James Dominguez,Male,3195,1964-03-08,O+ -Michelle Ray,Female,3196,1933-07-07,A+ -Sandra Smith,Female,3197,1976-08-30,O- -Joseph Weaver,Female,3198,1980-05-12,O- -Miss Danielle Boyd DVM,Male,3199,1998-05-18,A+ -Melissa Malone,Female,3200,1934-09-30,AB- -Tara Wong,Female,3201,1980-09-04,O+ -Amy Molina,Male,3202,1980-10-20,O+ -Brian Cooper,Male,3203,1997-06-28,O+ -Larry Armstrong,Female,3204,1974-06-09,O- -Ashley Marquez,Male,3205,1969-08-16,AB+ -William Mathews,Male,3206,1965-04-16,A- -Kristine Miller,Female,3207,1939-07-04,AB- -Laura Walker,Male,3208,1954-09-20,B+ -Tonya Wilkinson,Male,3209,1990-04-04,O+ -Andrew Webb,Female,3210,1998-08-27,O- -Kathleen Lee,Female,3211,1952-10-21,O- -Brooke Cox,Female,3212,1935-09-29,B+ -Joshua Davis,Female,3213,1968-07-22,AB+ -Amanda Cox,Male,3214,1988-09-25,B+ -Alan Fields,Male,3215,1968-02-21,A+ -Angela Baker,Male,3216,1957-08-04,A+ -Ruth Galloway,Male,3217,1947-07-08,A- -Regina Stevens,Female,3218,1937-07-20,B+ -Jessica Carrillo,Male,3219,1985-08-04,A- -Christine Hahn,Female,3220,1997-04-09,O+ -Laura Moss,Female,3221,1980-01-23,A- -Arthur Hicks,Female,3222,1982-01-02,O+ -Amanda Harris,Male,3223,1993-10-01,AB- -Jim Spencer,Male,3224,1978-10-29,A- -Dawn Johnson,Male,3225,1998-10-13,AB+ -Amber Stout,Female,3226,1943-09-27,O+ -Kayla Pineda,Female,3227,1974-10-27,AB+ -Christine Thornton,Male,3228,1951-11-26,O- -Darin Manning,Female,3229,1991-06-06,O+ -Mary Thomas,Male,3230,1957-11-30,O- -Kelsey Williamson,Male,3231,1935-09-28,B- -Nicole Wells,Female,3232,1972-04-03,AB+ -Stephanie Kim,Male,3233,1999-03-19,B- -Sandra Maynard,Female,3234,1992-05-23,O+ -Jason Davis,Female,3235,1959-01-04,O- -Heather Nguyen,Male,3236,1973-08-24,O+ -Kimberly King,Male,3237,2001-09-26,B- -Christine Jordan,Female,3238,1983-12-24,B+ -Phillip Jones,Male,3239,1971-04-14,B+ -Jacob Smith,Male,3240,1995-04-16,O+ -Kayla Lambert,Female,3241,1943-12-24,AB- -Debra Hunter,Male,3242,1983-01-05,A+ -Jason Perry,Female,3243,1937-10-10,B- -Duane Hayes,Female,3244,1939-04-08,O+ -Emily Swanson,Male,3245,1959-09-17,O- -David Rodriguez,Male,3246,1957-07-11,O+ -Allison Gallegos,Female,3247,1966-12-11,B+ -James Perez,Male,3248,1976-09-25,O- -Richard Mack,Female,3249,1968-09-17,A+ -Heather Middleton,Male,3250,1950-08-15,O+ -Jason Robinson,Female,3251,1941-09-23,A- -Heather Strong,Female,3252,1951-03-08,B+ -Ashley Bradley,Male,3253,1951-02-10,A- -Erika Johnson,Male,3254,1934-06-08,A+ -Austin Davies,Female,3255,1968-04-06,B- -Roy Beck,Female,3256,1965-02-21,O- -Jennifer Lawrence,Female,3257,1993-08-30,A- -Mariah Smith,Male,3258,1971-10-14,AB- -Jonathan Vargas,Female,3259,1933-12-02,B- -Michael Stephens,Male,3260,1954-10-29,O- -Amanda Bryan,Male,3261,1942-11-27,B+ -Steve Lindsey,Male,3262,1956-03-02,B+ -Shannon Long,Male,3263,1955-11-01,B+ -Gina Johnston MD,Male,3264,1943-09-08,A+ -April Wilkerson,Male,3265,1930-06-12,A- -Jason Miller,Male,3266,1935-05-29,B+ -Cody Ibarra,Female,3267,1983-11-14,AB+ -Rebekah Martin,Female,3268,1953-03-02,B+ -Leslie Williams,Female,3269,1976-08-02,O+ -Amanda Reynolds,Female,3270,1977-05-03,A+ -Annette Joseph,Male,3271,1935-07-08,O- -Benjamin Harrison,Male,3272,1956-12-03,O- -David Carter,Male,3273,1951-08-15,O- -Stephen Browning,Female,3274,1930-07-24,O- -Antonio Drake,Female,3275,1976-06-13,O+ -Thomas Clark,Male,3276,1990-05-25,B- -Cathy Terrell,Male,3277,1954-09-24,AB- -Jason Simmons,Male,3278,1944-08-22,AB+ -Michael Harper,Male,3279,2001-12-29,O+ -Zachary Hicks,Male,3280,1937-03-28,O- -Nicholas Brown,Female,3281,1951-12-14,O+ -Tommy Barry,Male,3282,1981-02-23,A+ -Dr. Sonia Martinez,Male,3283,1977-04-02,AB- -Matthew Davis,Male,3284,1945-03-23,O- -Kevin Daniel,Female,3285,1973-07-06,AB+ -Katherine Harper,Male,3286,1969-10-14,O- -Tony Mckinney,Female,3287,1976-09-29,AB- -Tyler Jackson,Female,3288,1940-12-14,AB+ -Rhonda Baxter,Male,3289,2001-03-07,AB- -Michael Solis,Male,3290,1969-02-14,AB+ -Patrick Schultz,Female,3291,1976-09-11,B- -Kimberly Russell,Female,3292,1951-09-15,A- -Elizabeth Fernandez,Female,3293,1972-08-10,B- -Erin Jackson,Female,3294,1933-03-17,O+ -Stacy Douglas,Male,3295,1990-03-02,O+ -Zachary Merritt,Female,3296,1962-08-19,B+ -Christopher Gentry,Male,3297,1955-01-05,AB+ -Jordan Howe,Male,3298,1947-05-14,B+ -William Simmons,Female,3299,1978-10-29,B+ -Terry Jones,Female,3300,1962-08-30,O- -Kaitlyn Holmes,Female,3301,1936-12-14,A- -Rickey Payne,Female,3302,1940-11-03,A+ -Douglas White,Female,3303,1966-02-04,A+ -Angela Bowers,Male,3304,1992-01-25,O- -Grant Munoz,Female,3305,1944-11-15,O- -Lucas Miller,Male,3306,1986-07-10,B- -Jacob Miller,Female,3307,1981-04-28,A+ -Casey Navarro,Male,3308,1991-09-26,AB+ -Joshua King,Male,3309,1984-11-27,AB- -Jesse Gay,Female,3310,1934-10-20,B+ -Pamela Nguyen,Male,3311,1997-01-13,O+ -Susan Horne,Female,3312,1980-03-01,B+ -Matthew Pennington,Female,3313,1998-04-20,B+ -Katie Shannon,Male,3314,1991-03-22,AB- -Matthew Campbell,Female,3316,1957-09-19,B- -Henry Benson,Male,3317,1974-11-02,A+ -Jennifer Ellis,Male,3318,1948-01-15,B+ -Ryan Salazar,Female,3319,1998-06-13,A- -Timothy Green,Female,3320,1947-04-06,O- -Sharon Cain,Male,3321,1950-02-10,A- -Brianna Garcia MD,Male,3322,1996-06-02,A- -Aaron Frank,Female,3323,1999-09-26,A+ -Craig Davidson,Female,3324,1993-01-07,AB+ -Angela Ortiz,Female,3325,1972-01-13,B- -Jason Mendez,Female,3326,1931-08-21,B+ -Ronald Smith,Male,3327,1983-03-30,B+ -Carly Henderson,Male,3328,1936-05-25,B+ -Shawn Watson,Female,3329,1957-01-18,O- -Jason Rodriguez,Male,3330,1931-07-27,AB- -Emily Phillips,Male,3331,1950-08-05,AB+ -Kim Franklin,Male,3332,1946-11-24,AB- -Jordan Munoz,Male,3333,1994-04-16,O+ -Jose Hawkins,Female,3334,1980-07-31,B- -Dr. Donald Ferguson,Male,3335,1968-04-23,AB+ -Joel Kelly,Male,3336,1992-11-01,AB+ -Mark Reid,Male,3337,1962-06-23,B+ -Charles Harris,Male,3338,1964-02-16,AB- -Cole Woodward,Male,3339,1987-07-09,O- -Bradley Leonard,Male,3340,1934-06-22,O+ -Cheryl Burke,Male,3341,1979-01-05,B+ -Jamie Castro,Male,3342,1964-03-08,B+ -Mr. Jared Bell,Female,3343,1959-09-15,B+ -Randall Callahan,Male,3344,1939-12-28,AB- -Catherine Potter,Female,3345,1971-07-22,AB+ -Brian Torres,Female,3346,1965-12-23,B- -Brett Jordan,Female,3347,1979-01-25,AB+ -Samantha Munoz,Female,3348,1969-04-23,A+ -Karen Newman,Male,3349,1966-08-08,B- -Jason Eaton,Female,3350,1938-08-04,B+ -Lisa Miller,Female,3351,1993-12-25,B- -Patricia Clark,Female,3352,1930-04-08,AB+ -Jeremy Gutierrez,Male,3353,1961-03-26,O- -Ross Lee,Female,3354,1964-10-31,B+ -Elizabeth Figueroa,Male,3355,1965-05-21,B- -Robert Phillips,Female,3356,1940-04-08,A+ -Todd Rodgers,Male,3357,1953-05-15,AB- -Jessica Miller,Female,3358,1997-03-28,O- -Robert Long,Female,3359,1997-01-16,O- -Jennifer Fischer,Female,3360,1989-09-05,O- -Crystal Simpson,Male,3361,1942-10-11,B- -Scott Burch,Male,3362,1973-10-31,O- -Daniel Collins,Female,3363,1976-07-12,AB+ -John Huffman,Female,3364,1934-09-24,O- -Raven Lucas,Male,3365,1935-01-29,A+ -Melissa Perkins DVM,Female,3366,1959-07-28,B+ -Anthony Jones,Male,3368,1943-11-04,B+ -Stephanie Knox,Female,3369,1958-02-14,O+ -Sharon Rose,Male,3370,1981-03-22,A+ -Wayne Tran,Male,3371,1965-02-05,B- -Cheryl Frazier,Female,3372,1955-08-27,O- -Heather Taylor,Male,3373,1955-06-02,O- -Michael Burton,Female,3374,1966-01-23,AB+ -Alexis Bailey,Female,3375,1945-10-23,AB- -Victoria Lawrence,Male,3376,1947-11-07,O- -James Villanueva,Female,3377,1960-01-27,A- -Brittany Randall,Female,3378,1979-08-25,A+ -Timothy Hill,Male,3379,1970-11-26,B- -Pamela Rice,Male,3380,1932-02-21,B+ -Rachel Alvarez,Male,3381,1974-07-31,O+ -Daniel Moore,Female,3382,1995-07-11,O- -John Brown,Male,3383,1948-09-06,O+ -Emily Young,Female,3384,1980-08-15,O- -Donald Ramsey,Female,3385,1985-06-12,B- -John Harper,Female,3386,1949-09-11,AB- -Jacqueline Harvey,Female,3387,1988-06-25,A+ -Michael King,Male,3388,1935-10-15,B+ -Richard Mason,Female,3389,1974-07-29,B- -Christian Robertson,Male,3390,1990-12-15,O+ -Mr. William Bentley Jr.,Male,3391,1967-02-21,O- -Susan Watkins,Male,3392,1985-09-23,O+ -Carol Allen,Female,3393,1957-11-18,A+ -Ann Morgan,Male,3394,2000-03-17,A- -Aaron Patel,Female,3395,1994-09-30,B+ -Elizabeth Johnson,Female,3396,1979-03-06,B- -James Kerr,Female,3397,1955-03-14,O+ -Jennifer Stewart,Male,3398,1981-01-31,O+ -Roger Curry,Female,3399,1988-03-10,A+ -Jennifer Sutton,Male,3400,1973-03-31,A- -Alex Patel,Female,3401,2002-04-03,O- -Derek Sims,Female,3402,1993-04-28,A- -Lisa Davis,Male,3403,1981-07-02,O+ -Javier Green,Male,3404,1966-12-07,A+ -Derek Elliott,Female,3405,1945-03-09,O- -Joyce Ramirez,Female,3406,1948-10-05,A- -Tara Morris,Male,3407,1936-12-26,B+ -Joseph Woods,Female,3408,1947-07-22,A- -David Taylor,Male,3409,1974-11-17,B+ -Pamela Garcia,Male,3410,1996-12-31,A- -Dawn Hawkins,Male,3411,1981-11-08,AB- -Cory Williams,Female,3412,1931-04-21,O- -Stacy Moody,Female,3413,1989-09-08,A- -Gabriel Rodriguez,Male,3414,1958-06-26,AB- -Danny Scott,Female,3415,1998-08-12,B- -Kenneth Garcia,Male,3416,1949-10-27,A+ -Diane Martinez,Male,3417,1948-05-16,A- -Kathryn Mitchell,Female,3418,1988-07-19,B+ -Rebekah Thomas,Male,3419,1987-08-08,O- -Marissa French,Male,3420,1952-02-13,B+ -Nicole Bradley,Female,3421,1991-06-17,AB- -Jo Reyes,Male,3422,1936-04-04,AB- -Thomas Gonzales,Male,3423,1944-04-20,B- -George Day,Female,3424,1967-01-08,B+ -Victoria Fleming,Female,3426,1970-10-07,AB+ -Felicia Casey MD,Male,3427,1949-02-01,A+ -Julian Savage,Female,3428,1984-07-05,B+ -Scott Barr,Male,3429,1961-07-28,AB+ -Lisa Wong,Female,3430,1970-04-22,O- -Melissa Weaver,Female,3431,1982-08-02,A+ -Carlos Floyd,Male,3432,1943-07-15,B+ -Vanessa Morgan,Male,3433,1947-11-18,B- -Russell Elliott,Female,3434,1960-06-08,O- -Terry Gonzalez,Male,3435,1930-09-16,A+ -Richard Kline,Female,3436,1930-10-10,B+ -Julia Stuart,Female,3437,1968-02-28,B+ -Amanda Garza,Male,3438,1935-03-14,A+ -Patrick Rodriguez,Female,3439,1941-04-28,AB+ -Marc Ellis,Male,3440,1948-02-25,O- -Diane Knight,Male,3441,1960-07-30,B- -Alison Kennedy,Female,3442,1983-08-15,B- -Jacqueline Cisneros,Female,3443,1988-11-06,O- -Heather Garcia,Male,3444,1994-06-25,O- -Evan Graham,Male,3445,1931-09-05,AB- -Tiffany Hines,Female,3446,1968-11-20,O+ -Miranda White,Female,3447,1976-09-27,B+ -Thomas Klein,Male,3448,1984-12-17,AB+ -Lisa Owens,Female,3449,1998-12-18,O- -Dana Hall,Male,3450,1936-04-26,O- -Amanda Levy,Male,3451,1949-07-13,O+ -Heather Lewis,Female,3452,1960-09-05,O+ -Harold Molina,Female,3453,1992-09-05,A+ -Diamond Andrews,Male,3454,2002-03-01,A- -Scott Hunt,Female,3455,1946-03-04,B- -Ricardo Reyes,Male,3456,1937-02-04,AB+ -Debra Hamilton,Male,3457,1971-06-24,A+ -Catherine Cohen,Male,3458,1963-04-08,O- -Daniel Jennings,Male,3459,1949-09-01,B+ -Oscar Allen,Male,3460,1989-03-24,O+ -Ronald Estes,Female,3461,1998-11-10,AB- -Carol Steele,Female,3462,1957-08-29,B- -Wesley Rogers,Male,3463,1988-11-04,A+ -Mrs. Donna Bishop,Male,3464,1984-09-22,AB- -Curtis Tran,Male,3465,1976-09-09,B- -Charles Winters,Female,3466,1986-10-22,A- -Willie Brewer,Male,3467,1994-12-04,A- -Laura Rodriguez,Female,3468,1933-07-07,AB- -Kaitlin Khan,Female,3469,1932-07-12,O+ -Morgan Flores,Female,3470,1933-01-30,A+ -David Johnson,Male,3471,1934-03-10,A+ -Brian Lee,Male,3472,2001-08-26,A- -Jessica Haynes,Male,3473,1953-02-07,B- -Sandra Leonard,Female,3474,1985-01-07,AB- -Vincent Mason,Female,3475,1974-03-25,O+ -Joshua Banks,Female,3476,1951-12-01,O- -Jessica Wolf,Male,3477,1956-09-13,A+ -Joseph Thompson,Male,3478,1992-01-14,B+ -Laurie Gonzalez,Female,3479,1959-01-01,O- -Janice Mccall,Male,3480,1940-07-31,O+ -Betty Sandoval,Female,3481,2002-08-06,A- -Michael Booth,Female,3482,1996-04-21,B+ -Eric Rojas,Female,3483,1993-06-11,A+ -David Oconnell,Female,3484,1930-08-15,A+ -Kristy Palmer,Male,3485,1971-03-03,AB- -Katie Hernandez,Female,3486,1962-02-21,B+ -Kevin Contreras,Male,3487,1975-08-01,O- -Amanda Daniels,Female,3488,1956-04-01,A- -Gerald Johnson,Female,3489,1962-03-03,AB- -Travis Golden,Male,3491,1931-10-08,AB+ -Scott Williams,Female,3492,1974-08-17,O- -Steven Owen DDS,Male,3493,1995-07-07,O- -Margaret Steele,Male,3494,1990-02-08,AB+ -Albert Gordon,Female,3495,1983-01-17,O+ -Dylan Parks,Female,3496,1967-06-11,B+ -Craig Howard,Male,3497,2002-06-27,B+ -Paul Jones,Female,3498,1981-09-18,O+ -Brenda Norton,Female,3499,1960-01-08,A+ -Paul Thompson,Male,3500,1974-01-17,B- -Theresa Douglas,Female,3501,1967-01-24,AB- -Paige Hunt,Male,3502,1966-05-01,B- -David Garcia MD,Female,3503,1955-08-04,A+ -John Gonzalez,Male,3504,1931-08-11,B+ -Patricia Hill,Female,3505,1964-12-11,B- -Randy Mitchell,Male,3506,2002-04-10,O- -Hunter Munoz,Female,3507,1955-02-16,O- -Linda Turner,Female,3508,1941-03-03,AB+ -Brianna Flores,Female,3510,1939-03-03,AB+ -Faith Miranda,Male,3511,1992-02-08,A+ -Kayla Snyder,Male,3512,1985-05-07,A+ -Heidi Brown,Female,3513,2000-09-07,A- -Jose Mullen,Male,3514,1997-10-21,A+ -Benjamin Gomez,Male,3515,1999-12-21,O- -Helen Meyer,Male,3516,2001-12-08,B- -Rachel Mcguire DDS,Male,3517,1979-07-22,AB- -Nancy Oconnor,Female,3518,1959-07-13,A- -Jessica Christensen,Male,3519,1963-10-03,A- -Mario Stone,Female,3520,1947-08-30,B+ -Lucas Hernandez,Female,3521,1966-03-23,A- -Mary Smith,Female,3522,1944-11-16,A+ -Brian Alvarado,Female,3523,1933-01-03,A+ -Kathy Harvey,Female,3524,1949-06-06,O- -Shannon Hunter,Male,3525,1981-03-24,AB- -Richard Jones,Female,3526,1961-04-27,O- -Christina Mills,Female,3527,1954-11-18,AB- -Gary Lee,Female,3528,1973-11-12,O- -Jay Yates,Male,3529,1947-07-27,B- -Andres Adams,Male,3530,1949-02-10,B+ -Lori Lee,Female,3531,1993-05-17,A+ -Alexandra Davis,Male,3532,1979-06-11,O+ -William Doyle,Male,3533,1960-05-24,O+ -Casey Foster,Male,3534,1951-10-08,B+ -Kevin Martinez,Female,3535,1954-12-23,A+ -Lisa Castro,Female,3536,1964-06-07,A- -Matthew Spencer,Female,3537,1999-04-08,A+ -Derek Brown,Female,3538,1991-06-03,A+ -Adam Taylor,Male,3539,1932-12-25,B+ -Jacqueline Wilson,Female,3540,1942-07-15,A+ -Alexis Ortega,Male,3541,1954-12-28,A- -Kristin Hill DVM,Female,3542,1958-09-18,AB- -Ashley Wallace,Male,3543,1930-06-05,B+ -Daniel Wilson,Male,3544,2000-03-20,B- -Ronald Bell,Female,3545,1935-05-13,O+ -Beth Frazier,Female,3546,1959-04-12,B+ -Lynn Sawyer,Female,3547,1947-05-16,AB+ -Adriana Murphy,Male,3548,1945-10-28,O+ -Christine Waller,Male,3549,1991-09-06,O+ -Debra Stokes,Female,3550,1988-09-20,A- -Jason Ruiz,Female,3551,1940-06-27,O- -Patrick Swanson,Female,3552,1954-10-08,A+ -Monica Harris,Female,3553,1999-01-14,A+ -Kim Bowen,Male,3554,1956-10-25,A+ -Paul Beck,Male,3555,1993-02-02,O- -Rebecca Allen,Female,3556,1931-03-18,A- -Robert Walsh,Male,3557,1991-05-25,B+ -Vincent Arroyo,Male,3558,1991-01-30,B- -Jesse Davis,Female,3559,1969-08-22,B- -Jacob Murphy,Male,3560,1995-01-02,A- -Pamela Martinez,Female,3561,1942-09-03,AB+ -Kelly Floyd,Male,3562,1947-06-11,B- -Ricky Marsh,Female,3563,1956-02-02,A- -James Pearson,Female,3564,1977-06-15,B+ -Richard Garrett,Female,3565,1961-08-31,B- -Melanie Best,Male,3566,1952-05-24,A+ -Carol Villanueva,Male,3567,1973-11-04,AB- -Lisa Morrow,Female,3568,1991-08-08,A- -Amber Atkinson,Male,3569,1976-02-12,O+ -Alexandra Bailey,Male,3570,1995-07-31,B- -Derek Lopez,Male,3571,1987-07-31,B- -Heather Carey,Male,3572,1931-01-28,O- -Jose Wilson,Male,3573,1963-03-19,AB+ -Jay Stephenson,Female,3574,1979-10-02,AB- -John Williams,Male,3575,1995-01-18,B+ -Colleen Johnson,Male,3576,1958-08-11,O- -Marc Nguyen,Male,3577,1977-12-22,A+ -Joseph Coleman,Male,3578,1987-11-03,O+ -Joanna Taylor,Male,3579,1950-04-24,AB+ -Cheryl Jones,Female,3580,1992-04-11,O- -Elizabeth Jones,Female,3582,1936-09-20,A- -Jordan Rose,Male,3583,2001-04-20,B- -Brian Mosley,Male,3584,1984-12-01,B- -Robert Black,Male,3585,1978-08-18,AB+ -Danielle Rodriguez,Male,3586,1971-09-06,B- -Jenna Jacobson,Female,3587,1948-05-07,A- -Scott Tyler,Male,3588,1937-02-10,O- -Shannon Warren,Female,3589,1930-05-22,O- -Rebecca Torres,Female,3590,1937-04-13,B- -James Harris,Female,3591,1987-06-11,B- -Sara Roberts,Male,3592,1954-09-23,A+ -Stephen Dalton,Male,3593,1971-03-04,O+ -Elizabeth Rivera,Male,3594,1968-04-01,B+ -Lindsay Higgins,Female,3595,1945-07-02,AB+ -Patrick Pennington,Female,3596,1946-10-26,O- -Adam Vega,Male,3597,1963-02-26,AB+ -Peter Hardy,Male,3598,1990-04-06,A+ -Emily Parker,Male,3599,1954-01-22,O- -April Johnson,Female,3600,1957-08-23,A+ -Daniel Good,Female,3601,1953-03-13,A+ -Jason Porter,Female,3602,1976-01-07,AB- -Stephanie Hensley,Female,3604,1994-01-08,B- -Austin Lucas,Male,3605,1941-08-20,A- -Kelli Martinez,Female,3606,1970-12-06,AB- -Melissa Jefferson,Female,3607,1934-10-17,B+ -Alicia Brown,Female,3608,1987-11-19,AB+ -Darryl Carter,Male,3609,1980-03-30,A- -John White,Male,3610,1941-03-12,AB+ -Lee Cuevas,Female,3611,1986-04-19,B- -Brandy Martin,Female,3612,1996-03-08,A- -Casey Evans,Male,3613,1971-11-04,AB- -Cynthia Brown,Male,3614,1982-12-04,AB+ -Mr. Charles Myers DVM,Female,3615,1956-05-25,AB- -Rhonda Martinez,Male,3616,1989-08-17,B- -James Lopez,Female,3617,1996-06-07,A- -Amber Cunningham,Female,3618,1943-11-24,A- -Tonya Perkins,Female,3619,1958-07-05,O- -Carolyn Moran,Female,3620,1972-12-12,A+ -Caroline Gordon,Male,3621,1949-10-18,A+ -Jeffrey Carr,Male,3622,1972-04-02,AB- -Nicholas Young,Female,3623,1960-02-15,A- -Elizabeth Mckee,Male,3624,1968-03-09,AB+ -James Bennett,Female,3625,1967-06-22,AB- -Clinton Martin,Male,3627,1979-01-19,AB- -Gregory Simpson,Male,3628,1965-10-18,O+ -Jeanette Hines,Male,3629,1983-01-17,B+ -Brian Richardson,Female,3630,1994-06-13,A- -Teresa Kennedy,Male,3631,1942-04-21,A+ -Mark Mitchell,Male,3632,2000-06-01,A- -Kimberly Franco,Male,3633,1977-05-31,B- -Charles Johnson,Male,3634,1933-12-31,AB- -Ronald Ashley,Female,3635,1968-09-18,O+ -Jessica Ross,Male,3636,1982-04-25,O+ -Tyler Black,Male,3637,1959-04-23,A+ -Lisa Ryan,Male,3638,1975-08-22,A+ -Melanie Alvarado,Male,3639,1975-08-01,A+ -Manuel Reid,Male,3640,1948-08-30,B- -Diane Holmes,Female,3641,1961-11-13,O+ -Dennis Bullock,Male,3642,1969-06-29,AB+ -Laura White,Male,3643,1968-03-27,B- -Catherine Roth,Female,3644,1979-09-07,O- -Stephen Ramos,Female,3645,1960-10-10,B+ -Joseph Hendricks,Female,3646,1930-02-10,B+ -Jessica Neal,Male,3647,1945-12-15,AB- -Jason Underwood,Male,3648,1952-08-12,B+ -Jason Buchanan,Female,3649,1977-07-24,A+ -Lisa Jarvis,Female,3650,1970-08-28,O+ -Michelle Lewis,Male,3651,1974-06-11,B+ -Nathan Martinez,Female,3652,1951-05-15,AB- -Dorothy Abbott,Male,3653,1996-03-08,B+ -Whitney Nelson,Male,3654,1990-07-06,A- -Maurice Watson,Female,3655,1983-08-13,B- -Meredith Koch,Female,3656,1944-09-18,O- -Jacob Moore,Male,3657,1987-12-22,A- -Jennifer Hanson,Male,3658,1994-07-11,B- -Eric Cobb,Male,3659,1936-11-29,B- -Roy Dickerson,Male,3660,1955-05-27,AB+ -Elizabeth Smith,Female,3661,1981-08-24,B+ -Adam Bryant,Male,3662,1957-01-24,AB- -Matthew Reynolds,Male,3663,1988-12-20,AB+ -Kathryn Knight,Male,3664,1932-02-18,B- -Mrs. Kimberly Gray,Female,3665,2001-08-17,B+ -Elizabeth Mata,Female,3666,1934-02-01,O- -Gregory Singleton,Male,3667,1976-08-31,O+ -Caleb Brock,Female,3668,1978-07-20,O+ -Bradley Peterson,Female,3669,1967-04-12,B+ -Elizabeth Pope,Female,3670,2000-11-04,A- -James Hernandez,Male,3671,1963-03-21,AB- -Kyle Berry,Male,3672,1957-11-13,A+ -Lindsay Sullivan MD,Male,3673,1951-07-01,A+ -Keith Reyes,Male,3674,1974-08-06,O+ -Jennifer Turner,Female,3675,1949-08-05,B- -Andrew Johnson,Female,3676,1935-08-07,B- -Brian Martinez,Female,3677,1950-03-05,AB+ -Darren Roberts,Female,3678,1984-06-26,B+ -David Murphy,Male,3679,1967-05-02,AB- -Terry Elliott,Female,3680,2000-03-08,B+ -Jennifer Martinez,Male,3681,1955-02-07,B+ -Diana Jones,Male,3682,1987-05-23,AB+ -Jesus Miller,Female,3683,1976-11-06,A+ -Teresa Todd,Male,3684,1961-01-06,B+ -Jonathan Fitzpatrick,Male,3685,1966-06-20,O+ -Damon Kelley,Female,3687,1995-04-22,A- -Frederick Flynn,Female,3688,1930-12-09,B+ -Christopher Watson,Male,3689,1933-12-18,B- -Robert Phelps,Male,3690,1948-01-08,B+ -Amanda Williams,Male,3691,1962-06-13,O+ -Juan Patton,Female,3692,1947-04-19,O- -Daniel Moreno,Male,3693,1976-04-19,O+ -Joy Sheppard,Female,3694,1957-08-15,O- -Regina Bates,Female,3695,1965-06-12,AB+ -Diane Bennett,Male,3696,2002-12-18,AB+ -Andrew Rivera,Male,3697,1993-05-02,A+ -Rodney Vazquez,Male,3698,1975-12-20,O+ -Robert Harrington,Male,3699,1969-11-19,O+ -Dr. Derrick Robinson,Female,3700,1970-09-16,O- -Kathleen Ramsey,Male,3701,1996-09-21,AB+ -James Cook,Male,3702,1956-09-26,O- -Edwin Roberson,Female,3703,1985-02-05,AB+ -Mary Green,Male,3704,1964-02-18,O- -Julie Anderson,Female,3706,1979-11-30,AB+ -Larry Mitchell Jr.,Female,3707,1978-11-27,O- -Erica Brown,Female,3708,1958-12-27,A- -Shane Daniel,Male,3709,1932-02-11,AB+ -Chad Chen,Male,3710,1989-12-26,AB- -Eduardo Alexander,Male,3711,1974-08-18,O- -Melanie Richardson,Male,3712,1954-01-05,O+ -Christy Phillips,Male,3713,1960-05-16,A+ -Lisa Wilson,Female,3714,1967-10-17,AB- -Charles Fernandez,Female,3715,1930-07-13,AB- -Christina Villanueva,Female,3716,1935-07-01,O- -Joseph Castillo,Male,3717,1978-02-07,A+ -Philip Ward,Male,3718,1981-05-31,O+ -Jillian Davis,Male,3719,1960-08-21,AB- -Caleb Hughes,Female,3720,1957-05-03,O+ -Caleb Green,Female,3721,1955-06-21,AB+ -Cheryl Ramirez,Female,3722,1985-10-28,B+ -Victoria Thomas,Female,3723,1950-05-05,A- -Patricia Silva,Female,3724,1936-03-11,B+ -Jennifer Hernandez,Male,3725,1985-02-01,B+ -Michael Carter,Female,3726,2002-08-03,A+ -Jennifer Rodriguez,Male,3727,1948-05-22,A- -Mr. Tyler Parks MD,Female,3728,1988-03-16,B- -Crystal Johnson,Male,3729,1954-06-05,AB+ -Angela Pennington,Male,3730,1941-12-27,A+ -Amber Ruiz,Female,3731,1951-05-26,O- -Terry Tapia,Female,3732,1967-09-22,A- -Dana Baldwin,Female,3733,1984-04-22,O- -Aaron Davis,Female,3734,1995-09-17,O+ -Michelle Freeman,Female,3736,1964-11-06,B+ -Courtney Jones,Male,3737,1958-04-16,AB- -Jennifer Best,Female,3738,1956-12-06,A- -Steven Bates,Female,3739,1937-09-01,B- -Makayla Frey MD,Female,3740,1952-10-25,O- -Holly Stuart,Female,3741,1944-10-24,A+ -Stacey Trevino,Female,3742,1978-11-04,A- -Danielle Duke,Male,3743,1993-09-23,A- -Darren Obrien,Female,3744,1945-11-26,AB- -Omar Merritt,Male,3745,1948-08-10,AB- -Amber Gonzales,Female,3746,1987-12-28,A+ -Kaitlyn Bailey,Male,3747,1988-10-20,AB- -Angela Browning,Female,3748,1958-03-03,O- -Samantha Martinez,Female,3749,1978-06-27,A+ -Vincent Curtis,Male,3750,1988-06-25,B+ -Raymond Perry,Female,3751,2000-08-10,A+ -Jeffrey Williams,Female,3752,1978-01-12,O+ -Tina Alexander,Male,3754,1942-09-25,B- -Robert Allen,Male,3755,1943-08-28,A- -Mark Walker,Female,3756,1971-08-14,O+ -Christopher Chavez,Male,3757,1942-11-11,B- -Jeffrey Bell,Female,3758,1975-10-16,A+ -Michael Moore,Male,3759,1940-06-25,A- -Andrew Daniel,Female,3760,1980-03-31,AB- -Kara Chapman,Male,3761,1976-10-13,B- -David Skinner,Male,3762,1964-07-06,A+ -Karen Wade,Male,3763,1945-01-04,A+ -Robin Rice,Female,3764,1992-04-25,O+ -Mary Murray,Male,3765,1979-10-15,O+ -Robert Knight,Male,3766,1944-12-16,AB- -Sarah Burton,Male,3767,1967-12-13,B+ -Amber Matthews,Female,3768,1943-06-14,AB+ -Dawn Davis,Male,3769,1942-09-23,O- -Donald Campbell,Female,3770,1932-05-05,AB+ -Claudia Sanders,Female,3771,2002-04-01,AB+ -Amy Alvarez,Female,3772,1937-11-06,A- -Thomas Jacobs,Male,3773,1962-05-27,B+ -Tom Gallagher,Male,3774,1974-08-12,A- -Amber Olson,Female,3775,1975-05-11,AB- -Diamond Garcia,Female,3776,1938-07-10,A- -Mrs. Kelly Berry DVM,Female,3777,1990-05-20,B- -Kenneth Harrison,Female,3778,1942-04-20,AB- -Emily Spence,Male,3779,1990-10-20,AB- -Louis Martinez,Female,3780,1971-05-20,A+ -William Snyder,Male,3781,1934-02-26,A+ -Rachel Thomas,Male,3783,1973-11-09,A+ -John Mullins,Female,3784,1988-07-21,O- -Kevin Mack,Male,3785,1978-07-28,B- -Michael Shaw,Female,3786,1984-10-17,B- -Terry Turner,Male,3787,1984-10-16,A+ -Tyler Rivera,Female,3788,1961-04-19,AB+ -Susan Salinas,Male,3789,1952-06-24,O- -Amy Knight,Female,3790,1961-09-30,AB+ -Jimmy Wilson,Female,3791,1965-03-29,O+ -Meagan Johnson,Female,3792,1964-11-21,B- -Richard Thomas,Female,3793,1991-08-25,B- -John Wood,Male,3794,1955-07-13,AB+ -Christopher Reese,Male,3795,1961-07-28,O- -Nicole Johnson,Female,3796,1948-01-15,B- -William Rowe,Female,3797,1939-01-25,AB+ -Shane King,Male,3798,1991-06-02,AB- -Dr. Susan Wagner,Male,3799,1991-12-17,AB- -Mark Avila,Female,3800,1932-09-14,A- -Steven Coleman,Female,3801,1939-02-04,O- -Charles Novak,Female,3802,1973-04-17,AB+ -Nicole Roberts,Female,3803,1942-08-21,A- -Deanna Rodriguez,Male,3804,1972-06-21,AB- -Shelley Jennings,Female,3805,1965-12-29,O- -Melinda Nelson,Male,3806,1997-10-05,B+ -Claire Drake,Female,3807,1967-05-21,A- -Stacey Sanchez,Male,3808,1985-02-06,B+ -Robert Mccormick,Male,3809,1938-05-11,A+ -Rebecca Baxter,Female,3810,1992-11-09,O- -Jerry Collins,Female,3811,1931-12-28,O+ -Anthony Page,Female,3812,1940-04-18,A+ -Harold Dixon,Male,3813,1990-10-03,A- -Teresa Moyer,Female,3814,1935-02-19,AB+ -Larry Contreras,Male,3815,1994-01-02,A+ -Kevin Stephens,Female,3816,1968-03-31,A+ -Andrew Quinn,Female,3818,1941-01-16,A- -Scott Hicks,Male,3819,1944-11-26,AB+ -Meagan Franklin,Female,3820,1977-07-26,AB+ -Jon Garza,Male,3821,1940-04-02,AB- -Jill Duarte,Female,3822,1998-06-08,O+ -Dylan Simmons,Female,3823,1976-06-25,AB+ -Sarah Martin,Male,3824,1934-11-10,B- -Kenneth Allen,Male,3825,1959-03-01,B- -Angelica Bennett,Male,3826,1932-07-24,O+ -Margaret Rios,Male,3827,1966-09-04,O- -Mrs. Stephanie Mcbride,Male,3828,1940-06-05,A- -Michael Bean,Male,3829,1975-10-07,O- -Eric Randall,Female,3830,1961-11-15,B- -Patricia Bailey,Male,3831,1996-07-19,AB+ -Tiffany Bishop,Female,3832,1982-04-04,O+ -Michelle Zimmerman,Male,3833,1969-05-12,O- -Matthew Holmes,Female,3834,1946-02-15,O- -Todd James,Male,3835,1943-11-03,B+ -Lisa Ward,Female,3836,1940-08-04,A- -Michael Ross,Male,3837,1986-05-11,A+ -Matthew White,Female,3838,1975-05-30,B- -Darryl Martin,Female,3839,1981-09-11,AB+ -Malik Sullivan,Female,3840,1935-01-17,O+ -Shannon Horton,Female,3841,1957-07-16,O- -Matthew Carter,Female,3842,2002-10-02,A- -Sarah Serrano,Male,3843,1954-12-02,A+ -David Lara,Female,3844,1964-03-20,B- -Tammy Fowler,Female,3845,1942-10-03,B- -Charles Johnson,Female,3846,1961-02-28,A- -Emily Ponce,Female,3847,1950-08-28,B+ -Erin Garcia,Female,3848,1951-02-18,O+ -Adam Allen,Female,3849,1967-12-04,O- -Diane Soto,Female,3850,1976-12-19,O+ -Todd Strong,Female,3851,1983-07-01,A- -Matthew Thompson,Female,3852,1962-03-31,A- -Sandra Robinson,Male,3853,1934-06-17,O+ -Scott Jones,Male,3854,1931-01-22,AB- -Frank Olson,Female,3855,1946-07-07,A+ -Jessica Fox,Female,3856,1947-08-19,B- -Jose Henderson,Male,3857,1992-05-20,AB- -Laura Taylor,Female,3858,1966-09-01,AB+ -Jamie Clark,Female,3859,1985-10-31,B- -Julie Patterson,Male,3860,1981-08-11,B- -Allison Frederick,Male,3861,1936-04-01,A+ -Jill Rosario,Female,3862,1935-01-31,AB+ -Jennifer Robles,Female,3863,1972-11-26,O- -Rebekah Cherry,Male,3864,1996-09-15,AB+ -George Houston,Female,3865,1935-06-22,O- -Danielle Anthony,Male,3867,1944-12-29,B+ -Wesley Johnson,Female,3868,1955-10-25,B+ -Patricia Harris,Female,3869,1942-10-14,AB+ -Erica Walker,Male,3870,1963-10-11,O+ -Angel Dennis,Female,3871,1955-07-31,A- -Wanda Gilbert,Female,3872,1986-09-06,AB+ -Mrs. Karen Garza,Female,3873,1949-05-05,AB- -Austin Harrison,Female,3874,1950-05-22,AB- -Emily Maddox,Male,3875,1978-10-11,A+ -Sara Pineda,Male,3876,1945-05-26,A- -Mariah Weaver,Female,3877,1950-06-06,A- -Brian Tate,Male,3878,1934-12-25,O- -Juan Diaz,Female,3879,1958-10-17,B- -Shelby Snyder,Male,3880,1967-08-24,A+ -Edward Jones,Male,3881,1977-12-14,AB- -Paul Graham,Male,3882,1992-10-29,AB- -Cheryl Smith,Female,3883,1937-04-12,B+ -Pamela Lewis,Female,3884,1939-08-02,O- -Megan Davis,Male,3885,1998-04-24,AB- -Mary Owens,Female,3886,1935-10-22,AB- -Whitney Stewart,Male,3887,1941-01-03,O- -Howard Hayes,Male,3888,1957-12-18,AB- -Mr. James Coleman DDS,Female,3889,1938-12-04,B- -Vincent Middleton,Female,3890,1957-08-08,O+ -Heather Stein,Male,3891,1934-12-29,A+ -Jacob Morrison,Female,3892,1978-11-23,B- -Joanna Schmidt,Female,3893,1980-12-30,B- -Jessica Herrera,Female,3894,1966-11-15,O+ -Gary Rivera,Female,3895,1983-09-27,B+ -Phillip Knight,Female,3896,1949-02-20,A- -Alison Jones,Female,3897,1988-12-26,A+ -Kyle Smith,Female,3898,1938-08-01,B+ -Jo Ramirez,Male,3899,1980-07-11,B+ -David Mckenzie,Male,3900,1975-11-04,B- -Mr. Bobby Johnson,Male,3901,1972-04-04,AB- -Elizabeth Ramirez,Male,3902,1971-02-02,B+ -Kelly Shaw,Male,3903,1958-01-07,O+ -Elizabeth Baldwin,Male,3905,1974-11-04,A- -Robert Morales,Male,3906,1933-02-15,A+ -Vanessa Rice,Male,3907,1979-05-03,AB+ -Patrick Joseph,Female,3908,1985-10-23,O- -Jaime Maxwell,Male,3909,1957-10-01,AB- -Angelica Cook,Male,3910,1965-07-02,O+ -Tara Schroeder,Female,3911,1939-03-16,O- -Richard Morrow,Male,3912,1992-11-18,A- -Dr. Melissa Johnson MD,Female,3913,1951-06-15,A- -Daniel Riggs,Female,3914,1960-08-03,AB+ -Nicole Lee,Female,3915,1974-11-16,B+ -Jennifer Bowen,Male,3916,1938-12-12,B- -Christopher Wallace,Male,3917,1947-12-22,B- -Pamela Morales,Female,3918,2001-08-23,A+ -Stephanie Powers,Male,3919,1988-05-08,O+ -Cynthia Welch,Female,3920,1981-12-29,O+ -Kayla Barnes,Female,3921,1961-03-30,B+ -Stephanie Allen,Female,3922,1946-03-04,A- -Steven Lopez,Female,3923,1973-11-19,A+ -Jason Mcguire,Female,3924,1983-10-27,B+ -Steven Jackson,Male,3925,1950-11-03,O- -Briana Mendoza,Female,3926,1977-05-11,B- -Anna Green,Male,3927,1935-07-05,B- -Drew Jones,Male,3928,1978-10-22,A- -Scott Underwood,Female,3929,1990-01-16,O+ -Diane Allen,Female,3930,1960-10-16,A- -Tammy Wright,Male,3931,1967-10-04,B+ -Patrick Booker,Female,3932,1962-02-20,O+ -Richard Carter,Female,3933,1970-05-01,A+ -Jo Lindsey,Female,3934,1960-06-12,B+ -Anthony Perry,Male,3935,1979-11-13,AB+ -Donald Martinez,Male,3936,1954-01-02,O- -Michael Meza,Male,3937,1992-07-26,AB- -Carlos Morgan,Male,3938,1967-07-09,AB+ -Wyatt Edwards,Female,3939,1932-07-18,B+ -Shane Conway,Male,3940,1962-09-21,AB+ -Jose Wheeler,Female,3941,1984-12-26,O+ -Jason Bailey,Female,3942,2001-04-17,O+ -Sarah Johnson,Female,3943,1973-05-20,O+ -Pamela Chavez,Male,3944,1977-09-29,AB+ -Thomas Wilson,Male,3945,1973-02-11,A- -David Wells,Male,3946,1945-09-23,O- -Ronald Campbell,Male,3947,1980-01-23,A- -Rebecca Galloway,Male,3948,1956-06-02,O+ -John Wilson,Male,3949,1949-02-10,B+ -John Jordan,Female,3950,1949-05-10,B+ -Linda Perry,Male,3951,1956-04-05,B- -Kristi Long,Female,3952,1984-03-17,A- -Robert Hayes,Male,3953,1931-03-19,O- -Timothy Baker,Female,3954,1991-11-19,B+ -Nancy Wilson,Male,3955,1942-09-27,B- -Bonnie Cobb,Male,3956,1996-08-05,O- -Mikayla Hood,Female,3957,1996-04-21,O+ -Brian Rice,Female,3958,1955-08-28,A- -Steven Perez,Female,3959,1950-10-20,AB- -Molly Watts,Female,3960,1969-03-22,A+ -Katherine Garcia,Male,3961,1942-03-17,O+ -Sandy Miller,Female,3962,1948-01-18,B+ -Robin Salas,Female,3963,1974-10-03,AB+ -Sandra Sanchez,Female,3964,2000-09-23,AB- -Matthew Lynn,Female,3965,1962-05-19,AB+ -Dominique Wade,Male,3966,2002-04-30,O- -Sergio Colon,Male,3967,1981-03-07,AB+ -Alan Taylor,Male,3968,1968-09-16,AB- -Charles Alvarez,Male,3969,1992-01-08,AB- -Debbie Warren,Female,3970,1977-05-08,O+ -Raymond Reyes,Female,3971,1986-09-28,B- -Nicole Alvarez,Male,3972,1985-11-01,O+ -Grace Chavez,Male,3973,1993-01-02,O- -Kendra Hodges,Female,3974,1935-12-10,B+ -Kelly Harris,Male,3975,1980-10-21,AB+ -Karen Walker,Male,3976,1990-05-18,B- -Terri Gentry,Male,3977,1947-04-15,A- -Shawn Nichols,Male,3978,1952-10-07,A+ -Brittney White,Female,3979,1952-01-02,AB- -Charles Myers,Male,3980,1993-06-12,B- -Sarah Hendricks,Male,3981,1932-02-25,B+ -Caleb Fisher,Male,3982,1946-10-23,A- -Doris Bray,Female,3983,1947-05-16,B- -Jamie Martin,Female,3984,1981-06-22,O+ -Cathy Chavez,Female,3985,1999-06-20,A- -Kyle Jacobson MD,Female,3986,1986-03-26,A+ -Marcus Gray,Male,3987,1970-12-30,B+ -Crystal Henderson,Female,3988,1945-05-21,AB- -Samantha Diaz,Female,3989,1935-04-21,B+ -Katherine Harmon,Male,3990,1940-06-04,O- -Jennifer Burton,Female,3991,1949-07-31,O- -Charles Rodgers,Male,3992,1955-12-29,B- -Willie Jimenez,Female,3993,1963-10-30,A- -Michael Morales,Female,3994,1938-11-11,B- -Robert Sandoval,Female,3995,1973-05-23,AB+ -Amanda Smith,Female,3996,1936-06-10,A+ -Robert Cruz,Male,3997,1935-04-17,AB- -Cassandra Myers,Female,3998,1959-11-18,B- -Ronald Brown,Male,3999,1953-06-05,AB+ -Sandra Morris,Male,4000,1988-04-26,A- -Cheryl Freeman,Female,4001,1945-01-20,A+ -Jason Howard,Male,4002,1958-12-22,AB- -Ms. Megan Hale,Male,4003,1977-06-13,O- -Carrie Zimmerman,Female,4004,1967-12-18,AB+ -Mia Davis,Male,4005,1956-03-14,A- -Monica Garcia,Female,4006,1978-10-19,A+ -Lawrence Chavez,Female,4007,1996-01-09,AB+ -Jackie Fields,Male,4008,1943-04-20,B- -Brendan Grimes,Female,4009,1930-12-07,O+ -Michael Myers,Female,4010,1960-08-12,O- -Travis Saunders,Female,4012,1975-11-27,B- -Ann Weeks,Male,4013,2001-07-19,B- -Joshua Sanders,Female,4014,1953-04-01,A- -Rachel Tate,Female,4015,1930-05-19,A- -Debra Stanley,Male,4016,1930-12-25,A+ -Maria Cisneros,Female,4017,1988-05-11,A- -David Burgess,Male,4018,1956-08-06,AB+ -Gloria Anderson,Female,4019,1984-04-27,O- -Renee Ramsey,Female,4020,1934-06-16,B- -Larry Gibson,Female,4021,2000-11-08,A+ -Michael Padilla,Female,4022,1973-10-18,B+ -Dr. Joseph Roberts,Male,4023,1992-12-31,B+ -Daniel Tucker,Female,4024,1943-09-14,O- -Benjamin Rivera,Male,4025,2000-05-23,A- -Sarah Olson,Female,4026,1966-05-15,A- -Victoria Moran,Male,4027,1948-03-19,AB+ -Anthony Singh,Male,4028,1992-06-04,A- -Joshua Rivera,Female,4029,1983-07-16,B+ -Heather Stevens,Male,4030,1985-05-11,B- -Wayne Gutierrez,Male,4031,1996-10-22,B+ -Martha Thomas,Male,4032,1935-11-22,AB- -Larry Mccoy,Female,4033,1955-10-26,B- -David Donovan,Male,4034,1968-07-12,B- -Mitchell Keller,Female,4035,1962-08-28,A- -Shelby Gallagher,Female,4036,1948-11-27,O- -Stephen Weeks,Female,4037,1982-08-14,A- -Megan Thompson,Female,4038,1964-02-04,O- -Theresa Bailey,Female,4039,2000-01-08,O- -Jessica Lopez,Female,4040,1974-05-22,B+ -Ryan Mathews,Male,4041,1981-11-20,O- -Ronald Lindsey,Female,4042,1933-07-31,A+ -Justin Kemp,Male,4043,1970-08-31,O+ -Brooke Brown,Male,4044,1999-01-31,A- -Ethan Farley,Male,4045,1937-04-14,A+ -Jimmy Johnson,Female,4046,1958-06-26,B- -Melissa Brown,Male,4047,2002-07-07,A+ -Terry Flores,Male,4048,1985-01-26,AB+ -Robin Mayer,Male,4049,1958-01-12,AB- -Lori Jones,Male,4050,1946-12-30,O- -Paula Weaver,Female,4051,1983-07-08,A- -Taylor Blanchard,Male,4052,1933-02-14,AB+ -Joseph Ramirez,Female,4053,1998-01-06,A- -Tyler King,Female,4054,2002-05-04,B+ -Jessica Burns,Female,4055,1934-09-05,AB- -Travis Wood,Male,4056,1939-12-10,AB+ -David Miller,Female,4057,1983-08-26,A- -Jennifer Garcia,Male,4058,1958-09-16,B- -Christopher George,Male,4059,1962-11-30,O- -Lauren Savage,Male,4060,1992-10-04,AB+ -Paige Hansen,Female,4061,2001-06-03,B- -Melissa Smith,Male,4062,1976-02-28,O- -David Logan,Male,4063,1951-01-15,O+ -Nicholas Stewart,Female,4064,1999-12-17,B- -Kristi Stephens,Female,4065,1933-04-22,A+ -Susan Brooks,Male,4066,1966-07-02,A- -Terri Reed,Female,4067,1935-05-15,B+ -Linda Walker,Female,4068,1931-07-12,O- -Gail Jones,Female,4069,1973-06-27,AB+ -Alyssa Leonard,Male,4070,1968-01-15,AB- -Ronald Bishop,Female,4071,1932-06-01,AB+ -Dana Turner,Male,4072,1943-01-14,A+ -Ms. Gina Ross,Male,4073,1946-01-24,A- -Dana Horton,Female,4074,1993-12-03,A+ -Nicole Carroll,Female,4075,1965-03-27,AB+ -Leslie Chapman,Male,4076,1949-08-15,B+ -Lisa Curry,Female,4077,1965-07-18,A- -Paige Diaz,Male,4078,1951-09-17,AB- -Jeremy Carroll,Female,4079,1944-08-22,O- -Kathryn Flynn,Male,4080,1949-11-26,A- -Nicole Griffin,Female,4081,2001-09-11,B- -Norma Adams,Male,4082,1997-02-07,A- -Lisa Perez,Female,4083,1967-01-14,A+ -Edwin Jordan,Female,4084,1936-09-20,A+ -Jared Robinson,Female,4085,1987-03-01,A+ -Gregory Atkins,Female,4086,1980-03-09,AB- -Joseph Tucker,Female,4087,1965-07-27,A- -Kim Mckee,Male,4088,1937-09-09,B+ -Daniel Burns,Female,4089,1948-03-09,B+ -Laura Barrett,Male,4091,1940-06-22,A- -Amanda Stevenson,Female,4092,1939-09-07,B+ -Brett Rogers,Female,4093,1991-06-22,O+ -Tiffany Mccormick,Female,4094,1971-12-01,AB- -Jennifer Sanchez,Male,4095,1940-05-30,O- -James Johnson,Male,4096,1987-09-22,O- -Andrew Tucker,Female,4097,1980-04-02,O- -Danielle Morales,Male,4098,1990-10-03,O- -Danielle Hansen MD,Female,4100,1946-10-26,O- -Wendy Hill,Male,4101,1982-07-30,B+ -Whitney Curry,Female,4103,1954-11-25,AB+ -David Reeves,Female,4104,1930-12-31,A+ -Kurt Perkins,Female,4105,1986-07-08,AB- -David Morris,Male,4106,1983-05-26,AB+ -Ellen Mccoy,Male,4107,1972-12-14,AB- -Leah Kelley,Male,4108,1935-02-07,O+ -Tammy Brown,Male,4109,1975-03-05,A- -Kenneth Frederick III,Female,4111,1949-05-25,B- -Kim Gay,Female,4112,1951-12-13,A+ -Ryan Russell,Female,4113,1936-07-12,O+ -Kristi Cox,Male,4114,1971-04-08,AB+ -Carlos Ruiz,Male,4115,1940-10-10,B- -John Strickland,Male,4116,1965-12-10,A- -Kayla Young,Female,4117,1969-08-26,O+ -Monica Horne,Female,4118,1951-03-14,A- -Chad Stone,Female,4119,1974-04-05,A- -Isaiah Adams,Male,4120,1989-10-04,B+ -Daniel Weiss,Male,4121,1936-10-26,AB- -Chris Cook,Male,4122,1993-12-20,B- -Travis Thompson,Male,4123,1966-06-25,AB- -Linda Nixon,Male,4124,1999-11-13,A- -Tiffany Adams,Male,4125,1995-11-01,B+ -Paul Rogers,Male,4126,1979-07-31,O+ -David Boyer,Female,4127,1997-04-05,A- -Kenneth Mason,Female,4128,1982-06-08,AB+ -Jeffrey Johnson,Male,4129,1933-02-11,A- -Tim Green,Female,4130,1986-02-17,AB- -Scott Hodge,Male,4131,1939-05-14,B- -Taylor Mayo,Female,4132,1946-01-02,O+ -David Martinez,Male,4133,1987-12-10,AB- -Angie Murphy,Female,4134,1940-09-11,A- -Tiffany Payne,Female,4135,1984-10-25,AB+ -Charles Hurst,Male,4136,1982-12-11,A+ -Brenda Lara,Male,4137,1991-02-03,B+ -Randall Torres,Female,4138,1963-12-27,AB+ -Candice Gallegos,Female,4139,1930-10-04,A- -Rebecca Brown,Female,4140,1980-05-01,AB+ -Tammie Christian,Male,4141,1978-03-21,B+ -Amanda Christensen,Female,4142,1947-05-09,A+ -John Long,Male,4143,1962-09-14,AB+ -Renee Young,Female,4144,1985-01-31,A+ -Douglas Faulkner,Female,4145,1973-07-20,A- -Anthony Gonzales,Female,4146,1976-10-05,A+ -Valerie Gardner,Female,4147,2000-11-14,AB- -Cassandra Castillo,Female,4148,1986-03-24,AB- -William Wood,Female,4149,1996-06-28,A+ -Patrick Quinn,Male,4150,1995-04-24,O+ -James Thomas,Male,4151,1963-09-11,B- -Elizabeth Burns,Male,4152,1995-06-30,O+ -Cody Rush,Male,4153,1958-10-04,A+ -Victoria Kim,Female,4154,1982-08-21,B- -Jacob Walton,Male,4155,1941-07-10,AB- -Bruce Hudson,Male,4156,1961-09-25,B- -Kyle Freeman,Female,4157,1998-10-08,A+ -Mia Williams,Male,4158,1959-10-22,AB- -Brittany Lucero,Male,4159,1965-03-24,B- -David Roberson,Male,4160,1932-12-24,B- -Jamie Joyce,Male,4161,1939-03-18,O+ -Kenneth Garcia,Female,4162,1930-01-25,B- -Anthony Kelly,Female,4163,1956-09-25,A- -Margaret Massey,Female,4164,1991-09-06,A+ -Benjamin Taylor,Female,4165,1990-05-18,O- -Elaine Palmer,Female,4166,1986-06-16,O- -Adriana Griffin,Female,4167,1957-04-08,O- -Cynthia Mclean,Male,4168,1965-06-01,A+ -Wyatt Jones,Male,4169,1952-02-03,O- -Steven Gray,Female,4170,1980-12-23,O+ -Tyler Howard,Male,4171,1949-12-22,A+ -Sarah Gates,Female,4172,1952-12-23,A- -Dr. Janet Ramos,Female,4173,1961-03-09,AB- -Lisa Bush,Male,4174,1953-02-17,A- -Courtney Moore,Male,4175,1985-02-12,A+ -Christopher Hudson,Female,4176,1958-07-26,A+ -Michelle Johnson,Male,4177,1971-03-05,B- -Scott Long,Male,4178,1983-07-21,B- -Beverly Monroe,Female,4179,1961-07-25,B- -Virginia Hunter,Female,4180,1988-04-07,B+ -Frank Lindsey,Male,4181,1988-08-25,B+ -Valerie Willis,Female,4182,1973-02-07,AB+ -Amber Powell,Male,4183,1995-03-12,B+ -Chloe Clark,Male,4184,1953-07-24,O+ -Hannah Scott,Female,4185,1935-07-08,A+ -William Garcia,Male,4186,1933-10-13,A- -Clayton Scott,Male,4187,1933-01-03,A+ -Cole Johnson,Female,4188,1984-03-28,B- -Haley Andrade,Female,4189,1984-11-12,A+ -Tammy Mckinney,Female,4191,1996-08-04,AB- -Megan King,Male,4192,1954-12-02,B+ -Mark Martinez,Male,4193,1930-07-07,A+ -Adam Jones,Female,4194,1962-09-18,A- -Jessica Kaufman,Male,4195,1957-12-12,O- -Sharon Rivers,Male,4196,1989-09-01,AB- -Eric Long,Female,4197,1935-09-24,AB- -Nichole Alvarez,Male,4198,1980-09-09,A+ -Christian Mckenzie,Female,4199,1944-05-09,AB+ -Roger Scott,Female,4200,1953-05-29,B- -James Dunn,Female,4201,1990-04-27,O+ -Alexander Perkins,Female,4202,1944-03-13,O+ -Jessica Gomez,Female,4203,1971-10-24,O- -Albert Salas,Male,4204,1945-10-25,O+ -Anita Cook,Male,4205,1964-02-01,O+ -Mrs. Michelle Berry,Male,4206,1996-07-10,B- -Larry Welch,Male,4207,1995-07-10,B+ -Curtis Shaw,Male,4208,1951-06-03,B- -Eugene Romero,Male,4209,1973-01-12,AB+ -Arthur Stephenson,Female,4210,1950-02-20,A- -Ashley Donovan,Female,4211,1947-09-14,O- -Samantha Mccoy,Female,4212,1964-11-15,O+ -Tracy Hill,Female,4213,1978-12-16,AB+ -Angela Cole,Female,4214,1966-06-25,O- -Crystal Rose,Male,4215,1958-05-04,AB- -Christopher Clark DDS,Male,4216,1936-12-30,O+ -Anna Reyes,Female,4217,1989-09-01,O+ -Norman Golden,Female,4219,1938-01-30,B- -Troy Rhodes,Female,4220,1978-04-01,A+ -Stephanie Rivera,Male,4221,1999-12-14,O- -Tara Allison,Male,4222,1942-12-11,O+ -Brittney Thomas,Male,4223,1985-09-18,B+ -Richard Hanson,Male,4224,1945-07-27,O- -Jillian Smith,Female,4225,2000-02-29,A- -Morgan Johnson,Male,4226,1940-02-19,B+ -Fred Sullivan,Male,4227,1937-08-12,AB+ -Nathaniel Parker,Male,4228,1995-02-11,B+ -Monica Obrien,Male,4229,1979-03-17,AB+ -Cassandra Warner,Male,4230,1936-06-26,A+ -Rachel Sanchez,Male,4231,1972-09-09,O+ -Mason Phelps,Female,4232,1990-09-16,B+ -Rachael Henderson,Female,4233,1931-03-13,A- -Matthew Miller,Female,4234,1937-09-29,B- -Tamara Miller,Male,4236,1934-04-06,O+ -Darren Barnes,Female,4237,1995-08-02,O- -Bryan Mayer,Male,4238,1966-08-04,AB- -Yolanda Smith,Female,4239,1995-05-04,AB+ -Jessica Greene,Female,4241,2000-11-09,O- -Desiree Giles,Male,4242,1971-03-28,A+ -Carlos Gonzales,Female,4243,1958-12-16,AB+ -Mary Torres,Male,4244,1975-05-11,B- -Jessica Moore,Male,4245,1949-09-08,AB+ -Dr. Kenneth Ford,Male,4246,1993-03-02,AB- -Elizabeth Ayers,Male,4247,1945-03-28,B+ -Jennifer Carter,Female,4248,1994-09-07,A- -Timothy Holland,Male,4249,1972-01-30,B+ -Richard Wells,Male,4250,1995-10-22,O+ -Jessica Lynch,Male,4251,1990-02-14,AB- -Robert Stewart,Male,4252,1934-05-09,A- -Cynthia York,Male,4253,2001-08-19,AB- -Rachael Green,Female,4254,1999-02-03,O+ -Steven Smith,Male,4255,1930-06-09,AB+ -Joseph Duran,Male,4256,1963-04-03,A+ -Lisa Thomas,Female,4257,1972-02-03,O+ -Paul Dudley,Male,4258,1947-12-13,O+ -Andrea Willis,Female,4259,1974-06-16,A- -Jaclyn Jones,Female,4260,1955-03-14,B- -Sara Ward,Female,4261,1952-07-28,B+ -Deanna Marsh,Male,4262,1970-05-14,AB+ -Annette Jones,Male,4263,1966-07-04,O+ -Jeffrey Davis,Female,4265,1966-07-12,A+ -Todd Saunders,Female,4266,1993-08-08,O- -Raymond Boyer,Female,4267,1981-03-05,AB+ -Logan Castillo,Male,4268,1933-05-13,B- -Shawna White,Female,4269,1994-08-23,AB- -Angelica Allen,Male,4270,1945-04-22,O+ -David Williams,Female,4271,1993-10-20,A+ -Tracy Lopez,Female,4272,1945-04-17,AB+ -Thomas Munoz,Male,4273,1955-04-07,A+ -Jennifer Zuniga,Female,4274,1946-07-22,A+ -Sherri Scott,Female,4275,1963-07-04,B+ -Cody Bates,Male,4276,1972-11-05,A- -Randy Stewart,Female,4277,1943-07-17,AB- -Ann Joseph,Female,4278,1951-09-15,B- -Elizabeth Webb,Female,4279,1964-08-11,B+ -Erika Miller,Female,4280,1973-10-20,AB+ -Carlos Esparza,Female,4281,1966-08-26,O+ -Jill Cummings,Male,4282,1949-03-18,B- -Michael Rodriguez,Male,4283,1968-05-28,O+ -Vanessa Mcmillan,Female,4284,1973-08-03,O- -Janet Macias,Male,4285,1996-02-06,A+ -Andrew Brown,Male,4286,1967-08-27,O- -Leslie Ross,Female,4287,1988-10-13,A- -Kristen Hobbs,Male,4289,2000-09-30,A+ -Ronald Riddle,Female,4290,1994-06-19,AB- -Russell Bell,Male,4291,1980-01-07,B- -Joseph King,Female,4292,1979-10-24,O+ -Gabriel Wallace,Female,4293,1938-09-03,B+ -Jeffrey Carrillo,Male,4294,1962-10-29,A- -Julie Dunlap,Female,4295,1992-04-01,AB- -Joshua Myers,Female,4296,1999-07-11,O+ -Dr. Michael Smith PhD,Female,4297,1968-07-27,B- -Christopher Alvarado,Male,4298,1991-06-10,AB+ -Brian Fox,Male,4299,1936-09-03,A- -Charles Butler,Female,4300,1992-07-26,O- -Steven Osborne,Male,4301,1971-10-28,O- -Kelly Baker,Female,4302,1999-09-20,B+ -Randy Buchanan,Female,4303,1991-02-25,O+ -Anne Hernandez,Female,4304,1944-06-12,O+ -Daniel Carter,Male,4305,1954-04-04,O+ -Valerie Williams,Male,4306,1951-05-29,A- -Jonathan Austin,Female,4307,1942-12-12,B- -Andrew Mills,Male,4308,1982-01-16,AB+ -Luis Fisher,Female,4309,1945-09-17,O- -Debra Smith,Female,4310,1986-06-12,AB- -Brendan Stanley,Female,4311,1945-11-11,A+ -John Byrd,Male,4312,1942-05-21,A- -Darin Mosley,Female,4313,1945-04-03,A- -Scott Oconnor,Female,4314,1974-05-19,B- -Angela Williams,Female,4315,1971-09-29,O- -John Hoffman,Male,4316,1999-07-12,B+ -James Green,Female,4317,1958-06-03,AB+ -Shelby Brown,Female,4318,2000-04-25,B- -Robert Cook,Female,4319,1936-02-03,AB- -John Brandt,Female,4320,1952-12-20,O- -Michael Mueller,Female,4321,1973-08-10,B- -Tina Lee,Male,4322,1991-07-15,O- -Monica Jackson,Male,4323,1961-12-28,O- -Danny Allison,Male,4324,1959-02-18,B+ -Daniel Wilson,Female,4325,1953-09-19,A- -Linda Allen,Female,4326,1947-06-02,AB+ -Rebecca Gomez,Male,4327,1935-05-03,A- -Misty Meyers,Male,4328,1963-02-08,A+ -Olivia Green,Male,4329,2002-10-16,AB+ -Amber Sharp,Male,4330,1962-11-01,O- -Michael Ellis,Male,4331,1994-04-13,B- -Katherine Bailey,Female,4332,1947-04-20,AB- -Monique Yang,Male,4333,1985-04-02,B+ -Thomas Alexander,Female,4334,1963-05-08,AB+ -Jocelyn King,Male,4335,1930-08-23,A+ -Nancy Perez,Male,4336,1972-02-02,O- -Richard Baxter,Male,4337,1999-10-30,AB- -Renee Collins,Male,4338,1984-09-25,AB+ -Dana Davis,Female,4339,1996-11-17,A- -Bradley Cohen,Male,4340,1931-06-07,A- -Steve Melendez,Female,4341,1991-01-09,AB+ -Alexander Sellers,Female,4342,1964-10-27,AB+ -Marilyn Owens,Male,4343,1988-03-29,AB+ -Eric Mason,Male,4344,1956-11-21,AB- -Jessica Werner,Female,4345,1945-12-20,A- -Lisa Diaz,Female,4346,1965-02-06,B- -Drew Tyler,Female,4347,1974-05-21,A+ -Michael Wong,Male,4348,1949-07-02,A+ -Sara Hill,Male,4349,1945-12-30,B+ -Megan Hernandez,Female,4350,1933-08-09,O- -William Cox,Male,4351,1966-02-21,O+ -Mary Bauer,Female,4352,1977-12-08,B- -Wendy Davis,Male,4353,1990-04-01,A- -Lauren Johnson,Male,4354,1989-09-15,O- -Laura Williams,Female,4355,1971-08-20,B+ -Dr. Ronald Gutierrez,Male,4356,1981-12-10,O- -Cindy Romero,Female,4357,2000-02-02,AB+ -William Maynard,Female,4358,1990-05-22,O+ -Carrie Bautista,Female,4359,1933-10-10,A- -Crystal Marshall,Male,4360,1984-02-05,O+ -Karen Chavez,Female,4361,1934-02-28,B- -Isabel Vang,Female,4362,1990-09-04,O+ -Bonnie Page,Female,4363,1951-09-23,O- -Carolyn Smith,Male,4364,1946-09-07,O+ -Alexis Wilson,Male,4365,1997-11-27,O+ -Timothy Higgins,Female,4366,1944-08-30,A+ -Michelle Carney,Female,4367,1988-06-17,A- -Christian Owen,Male,4368,1954-11-14,A- -Stephen Richardson,Female,4369,1945-04-06,O- -Yolanda Rogers,Female,4370,1986-01-03,AB- -Charles Ray,Female,4371,1966-06-25,O+ -Beverly Bryant,Male,4372,1936-03-07,O+ -Julie Fisher,Male,4373,1998-05-16,AB+ -Sydney Mills,Female,4374,1966-09-20,A- -Jasmine Palmer,Female,4375,2002-12-23,O+ -Yesenia Walker,Female,4376,1971-09-16,A- -Ryan Kirby,Male,4377,1973-07-01,O+ -Cheryl Martinez,Female,4378,1986-12-21,A+ -Jorge Sweeney,Female,4379,1983-09-21,O- -Eric Lopez,Male,4380,1985-07-08,A- -Darlene Santiago,Female,4381,1935-06-29,B- -Danielle Wallace,Male,4382,1980-05-18,O- -Mark Johnson,Male,4383,1959-09-26,AB+ -Adrian Lopez,Male,4384,1957-07-28,O- -Kimberly Bowen,Male,4385,1955-09-15,O+ -Lisa Lewis,Male,4386,1979-09-17,AB+ -Caleb Mccarty,Male,4387,1997-09-23,O- -Christopher Lee,Female,4388,1985-09-29,B+ -Samuel Rodriguez,Female,4389,1979-08-27,AB+ -Richard Schwartz,Female,4390,1999-05-30,B+ -Kimberly Brown,Female,4391,1995-03-15,B- -Russell Hawkins,Female,4392,1969-12-31,O- -Christopher Cantu,Female,4393,1994-06-28,A- -Andrew Mclaughlin,Male,4394,1992-07-27,A- -George Steele,Female,4395,1974-10-20,AB- -Megan Woods,Male,4396,1999-11-10,O+ -Mark Solomon,Male,4397,1983-09-04,B+ -John Lawrence,Male,4398,1976-05-02,AB+ -Chad Meyer,Female,4399,1970-08-02,AB- -Chris Velez,Female,4401,1978-11-10,AB- -Tonya Sanchez,Female,4402,1989-01-19,A+ -James Small,Female,4403,1953-05-27,B+ -Nicole Pineda,Female,4404,1961-07-12,AB+ -Sheila Mullins,Female,4405,1930-08-23,AB- -Monica Smith,Male,4406,1969-11-14,A+ -David Arias,Female,4407,1979-02-05,AB- -Carmen Horne,Female,4408,1950-06-25,O+ -Emily Moore,Female,4409,1941-07-15,B- -Seth Cochran,Female,4410,1958-03-08,B+ -Andrew Yu,Male,4411,1934-08-01,A+ -Michael Wells,Female,4412,1993-03-23,B- -Grace Franco,Female,4413,1996-09-17,AB+ -Katherine Alexander,Male,4414,1935-10-02,O+ -Monica Romero,Male,4415,1962-06-11,A+ -April Bridges,Male,4416,1985-02-13,AB+ -Angela Solomon,Female,4417,1983-07-19,AB- -Michele Campbell,Female,4418,1979-10-30,A- -Wendy Perez,Male,4419,1940-07-08,O- -Lauren Donaldson,Male,4420,1957-12-02,AB+ -Cynthia Reid,Female,4421,1951-12-13,B- -Michael Campbell,Female,4422,1949-03-13,O+ -Aaron Wilson,Male,4423,1942-04-21,O+ -Jaime Morgan MD,Male,4424,1976-09-14,AB+ -Leslie Obrien,Female,4425,1997-01-01,AB- -Allen Jackson,Male,4426,1953-06-27,O- -Brandon Payne,Female,4427,1935-11-29,B+ -Kimberly Briggs,Female,4429,1982-02-22,B- -Lawrence Dixon,Female,4430,1935-08-27,AB+ -Jon Steele,Female,4431,1938-11-28,AB+ -Stephen Jackson,Male,4432,1988-06-28,A- -Ashley Smith,Female,4433,1995-12-13,O+ -Adrian Werner,Male,4434,1965-02-14,B- -Jessica Clark,Female,4435,1999-04-24,O- -Margaret Perez,Female,4436,1933-11-02,O+ -Corey Martin,Male,4437,1983-10-13,AB+ -Patrick Poole,Male,4438,1971-08-07,O+ -Brittany Allen,Male,4439,1963-02-13,O+ -Anna Glass,Male,4440,1985-08-07,A+ -Michelle Christian,Female,4441,1941-07-16,O+ -Brent Robinson,Male,4442,1983-09-11,AB- -Brandy West,Female,4443,1960-03-07,O+ -John Clark,Male,4444,1962-09-20,B+ -Stacey Ramirez,Male,4445,1959-04-23,AB- -Stephanie Lyons,Female,4447,1958-04-27,B- -Kristy Benton,Female,4448,1962-06-29,O+ -Shawn Sexton,Female,4449,1937-07-08,O- -James Robbins,Male,4450,1991-07-15,AB- -Virginia Brown,Male,4451,1940-08-02,AB- -Tammy Martinez,Male,4452,1962-09-26,AB+ -Kara Gilbert,Male,4453,1945-12-06,B- -Troy Pineda,Male,4454,1980-12-10,O+ -Kyle Harrison,Male,4455,1974-01-23,A- -Lauren Savage,Female,4456,1982-07-03,O- -Jonathan Bryant,Male,4457,2001-12-07,AB+ -Tabitha Jackson,Male,4458,1972-06-02,B- -Natalie Bradley,Female,4459,1985-12-25,B+ -Christine Wood,Female,4460,1979-01-12,AB- -William Grant,Male,4461,1952-07-08,O- -Brandi Blake,Female,4462,1991-10-30,B+ -Eric Anderson,Female,4463,1941-01-08,O+ -Ian Norton,Male,4464,1981-11-19,A- -Mary Schmidt,Female,4465,1982-07-14,A+ -David Pratt,Male,4466,1985-01-05,A+ -Gary Gonzalez,Female,4467,1946-11-08,B- -Nathaniel Meyer,Male,4468,1967-11-22,A- -Tiffany Griffin,Male,4469,1931-12-21,O- -Jason Robinson,Male,4470,1970-10-08,AB+ -Stephen Alvarez,Female,4471,1992-09-12,O- -Christina Olson,Male,4472,1987-05-25,A- -Mary Ruiz,Female,4473,1977-07-09,B+ -Mr. Gregory Perez,Male,4474,1985-01-14,AB- -Eric Vincent,Female,4475,1995-02-08,A+ -Heather Rose,Female,4476,1986-11-29,B- -Terrence Reid,Male,4477,1987-04-28,O+ -Laura Monroe,Female,4478,1980-11-25,O- -Gary Rodgers,Female,4479,1942-02-13,A+ -Vanessa Jones,Female,4480,1993-10-20,AB+ -Jessica Brown,Female,4481,1964-04-04,B- -Breanna Gordon,Female,4482,1971-03-31,O+ -Roy Barton Jr.,Male,4483,1967-09-11,O- -Alexander Stein,Male,4484,1960-12-17,AB+ -Nicholas Wade,Male,4485,1961-06-04,O+ -Joshua Duncan,Female,4486,1999-01-18,AB- -Bryan Coffey,Female,4487,1965-04-30,A+ -Joshua Harper,Female,4488,1997-10-26,AB- -Lucas Carroll,Female,4489,1953-10-07,A+ -Charles Jones,Female,4490,1936-01-14,AB+ -Nathaniel Martin,Male,4491,1989-06-29,B+ -Kathleen Webb,Male,4492,1983-10-30,AB- -Robert Rodriguez,Female,4493,1933-01-07,A+ -Nancy Wolfe,Male,4495,1944-05-10,B- -Elizabeth Huff,Female,4496,1948-02-10,AB+ -Lisa Chavez,Female,4497,1974-08-17,A+ -Russell Thompson,Male,4498,2000-09-07,O- -Karina Russell,Male,4499,1953-11-03,A+ -William Howell,Female,4500,1968-02-04,AB- -Emily Cole,Female,4501,1989-02-27,B- -Dr. Scott Armstrong,Male,4502,1998-05-12,O+ -Felicia Jacobs,Male,4503,1931-09-23,B+ -Sarah Chapman,Male,4504,1962-08-09,O+ -Christine Watson,Male,4505,2002-05-06,A+ -Jonathan Ward,Male,4506,1959-09-13,O+ -Kevin Hunt,Female,4507,1955-02-10,A+ -Steven Brock,Male,4508,1964-10-30,B- -Kelly Carter,Female,4509,1993-02-26,O+ -Michael Fernandez Jr.,Male,4510,1975-08-14,AB- -Stephanie Dixon,Male,4511,1975-06-30,AB- -Stacy Berry,Male,4512,1956-09-05,O- -Carolyn Watson,Female,4514,1945-07-31,A+ -Linda Phillips,Male,4515,1966-09-10,O+ -Sarah Collins,Female,4516,1950-12-21,AB- -James Maldonado,Female,4517,1959-01-10,A- -William Hall,Male,4518,1962-01-17,B- -Terry Booth,Female,4519,1930-01-26,B+ -Lisa Hurley,Male,4520,1972-02-14,B- -Donna Evans,Male,4521,1967-07-11,A- -Lindsay Evans,Male,4522,1995-04-22,A- -Jessica Alvarez,Male,4523,1992-05-29,O- -Chris Fox,Male,4524,1953-09-09,B- -Kristin Evans,Female,4525,1985-03-01,B- -Joseph Anderson,Male,4526,1992-12-04,O+ -Claudia Miles,Female,4527,1966-08-19,A+ -Nathan Patterson DDS,Male,4528,1988-10-29,AB+ -Jesse Young,Female,4529,1949-03-08,B+ -Dr. Jeffrey Leon,Female,4530,1984-05-24,B- -Brandon Roberts,Female,4531,1980-04-26,B+ -Erica Wood,Male,4532,1953-10-09,B+ -Makayla Reynolds,Female,4533,1932-12-08,B+ -Andrea Chavez,Male,4535,1993-03-22,B- -Angela Houston,Female,4536,1930-08-04,AB+ -Laura Sanchez,Male,4537,1995-09-06,B- -Laura Washington,Female,4538,1957-02-23,O+ -Jeremy Davenport,Male,4539,1956-10-15,O+ -Timothy Flores,Male,4540,1981-12-29,AB+ -Mary Tran,Female,4541,1997-09-20,AB- -Lisa Dillon,Female,4542,1970-08-03,B- -Ashley Smith,Male,4543,1987-12-13,AB- -Ricky Burns,Female,4544,1939-01-27,B+ -Betty Velazquez,Male,4545,1960-03-17,B- -Robin Patterson,Female,4546,1957-04-17,A+ -Stacey Rios MD,Female,4547,1974-06-20,B- -Steven Rush,Male,4548,2002-11-27,O+ -Heidi Martinez,Male,4549,1996-02-11,O- -Kevin Meza,Female,4550,1946-04-06,A- -James Hammond,Male,4551,1970-03-28,O- -Christopher Herring,Female,4552,1970-07-04,O- -Johnny Martinez,Female,4553,1936-04-14,O- -Lisa Jones,Female,4554,1990-06-04,A- -Amanda Lamb,Male,4555,1934-08-24,AB- -Andrea Bass,Female,4556,1960-08-16,A- -Kim Hart,Male,4557,1980-03-09,AB- -Phillip Cook,Female,4558,1962-11-10,A- -Justin Maxwell,Female,4559,1969-04-16,A- -James Rios,Female,4560,1982-06-24,B- -Ann Griffin,Male,4561,1939-12-24,AB- -Aaron Gonzales,Female,4562,1989-03-17,B- -Bobby Hurst,Female,4563,1947-07-31,A+ -Victoria Mccormick,Female,4564,1995-07-20,B- -Kevin Cain,Female,4565,1962-05-30,O- -Alexander Navarro,Female,4566,1982-02-06,AB+ -Jeremy Johnson,Female,4567,1992-11-24,AB+ -Casey Oliver,Male,4568,1947-05-25,O+ -Brandon Rodriguez,Male,4569,1958-11-11,O+ -Shelly Martinez,Male,4570,1935-04-17,B+ -Melinda Osborne,Female,4571,1961-06-13,B- -Robert Grimes,Male,4572,1934-10-24,A- -Stephanie Lee,Male,4573,1943-12-04,A- -Suzanne Hoffman,Male,4574,1945-06-08,AB+ -Cynthia Welch,Male,4575,1933-01-21,O- -Briana Miller,Male,4576,1959-06-17,AB- -Randy Warren,Female,4577,1962-01-04,O- -Mary Wilson,Male,4578,1931-05-08,B+ -Ms. Raven Smith,Male,4579,1954-02-15,O- -Robert Wood,Male,4580,1996-06-15,B- -Robert Davis,Male,4581,1947-09-23,B- -Jennifer Greene,Male,4582,1969-05-21,A+ -Paul Dean,Female,4583,1956-08-30,B+ -Charles Anderson,Female,4584,1988-06-07,O- -Kenneth Rios,Female,4585,1968-04-10,A- -Dr. Erica Williams,Male,4586,1962-03-09,A- -Kimberly Sanchez,Female,4587,1956-10-28,B+ -Mrs. Melissa Griffin,Female,4588,1969-12-29,O- -Tammy Perkins,Male,4589,1965-03-25,B- -Joseph Matthews,Female,4590,2002-06-18,B- -Mallory Rodgers,Female,4591,2000-10-11,A+ -Anthony Coleman,Male,4592,1982-05-15,A+ -David Smith,Male,4593,1951-07-16,O+ -Amanda Richard,Male,4594,1972-04-19,B+ -Jonathan Barber,Female,4595,1959-04-04,AB+ -Sherry Davis,Male,4596,1994-06-18,O- -Tammy Stone,Female,4597,1944-12-04,B+ -Dr. Matthew Evans,Female,4598,1989-04-03,A- -Tiffany Olson,Male,4599,1953-05-28,O- -Mr. Ryan Bradley,Female,4600,1949-09-04,A+ -Kevin Rowland,Male,4601,1946-09-16,A+ -Sandra Sloan,Female,4602,1999-09-01,O+ -Michael Sanders,Male,4603,1999-09-17,AB+ -Robert Coleman,Male,4604,2002-10-07,O+ -Caitlin Park,Female,4605,2000-10-19,A- -Nicholas Morales,Female,4606,1931-09-12,AB+ -Timothy Moore,Female,4607,1932-06-01,AB- -Krista Johnson,Male,4608,1999-06-20,O- -Lauren Mcdaniel,Male,4609,1939-12-22,O+ -Brandon Anderson,Male,4610,1933-07-20,A+ -Kim Hughes,Female,4611,1968-08-31,O+ -Alexander Davis,Male,4612,1997-12-15,AB- -Roy Jacobs,Female,4613,1937-12-05,O+ -Stephen Davis,Female,4614,1992-11-28,O- -Jennifer Floyd,Female,4615,1977-05-27,AB- -Sarah Castaneda,Male,4616,1944-09-10,B+ -Todd Wilkinson,Female,4617,1953-11-07,B+ -Matthew Bass,Male,4618,1983-08-27,B+ -Patricia Rodriguez MD,Female,4621,1981-06-15,A+ -Anna Wilkerson,Male,4622,1952-06-13,A+ -Jeffery Mora,Male,4623,1959-05-06,B+ -Wendy Bryant,Female,4624,1939-05-17,B+ -Pamela Cain,Female,4625,1957-12-16,B+ -Devin Mcneil,Female,4626,1964-12-30,B- -Diane Herrera,Male,4627,1993-12-16,B+ -Nathan Medina,Male,4628,1995-08-26,AB- -Mary Norman,Female,4629,1988-12-24,B- -Terri Duke,Female,4630,1964-02-26,B- -Rebecca Miller,Female,4631,1940-01-16,O- -Barry Hernandez,Female,4632,1991-03-19,O+ -Kelly Jones,Female,4633,1991-12-07,A+ -Carmen Welch,Female,4634,1952-08-30,A+ -Michelle Rodriguez,Female,4635,1964-01-07,O+ -Raymond Williams,Female,4636,1981-08-13,A+ -Sean Reyes,Female,4637,1991-11-18,O+ -Cory Peterson,Female,4638,1984-10-07,AB- -Jessica Davis,Female,4639,1979-05-04,O- -Mark Barnes,Male,4640,1952-04-30,B+ -Jason Moore,Male,4643,1939-10-24,O- -Bradley Wilson,Female,4644,1972-06-24,A- -Betty Burke,Female,4645,1940-12-23,O- -Gina Morris,Female,4646,1983-12-19,O+ -Jason Benton,Female,4647,1958-07-03,A- -Sierra Conley,Female,4648,1997-03-02,O+ -Kimberly Cruz,Female,4649,1980-12-05,B+ -David Wall,Male,4650,1943-08-08,AB+ -Lisa Smith,Female,4651,1981-05-06,A- -Lisa Clark,Male,4652,1984-10-26,B+ -Laurie Mosley,Male,4653,1959-04-14,B+ -Antonio Davidson,Male,4654,1955-01-05,A+ -Marcus Charles,Male,4655,1945-09-01,A+ -Patricia Carlson,Male,4656,1972-06-23,AB+ -Blake Bell,Female,4657,1960-06-20,AB+ -Elizabeth Spencer,Female,4658,1942-03-03,O- -Denise Moore,Male,4659,1950-11-10,B+ -Douglas Powell,Male,4660,1985-08-31,AB+ -Julian Fernandez,Female,4661,1979-06-13,O+ -Mario Mills,Male,4662,1933-04-11,B+ -Benjamin Velasquez,Female,4663,1963-09-02,B- -Lori Mendez,Female,4664,1937-08-19,O+ -Don Parker,Female,4665,1995-03-17,A- -Samuel Simpson,Female,4666,2001-04-15,AB+ -Patricia Baker,Female,4667,1951-09-15,A+ -Christian Cook,Female,4668,1983-12-11,O+ -Joshua Campbell,Male,4669,1999-02-10,A+ -Justin Carroll,Female,4670,1993-03-04,O+ -Jesse Gallegos,Male,4671,1935-12-17,A+ -Andrew Thompson,Male,4672,1985-02-08,AB- -Kevin Sweeney,Male,4673,1954-01-27,O+ -Charles Sawyer,Female,4674,1986-12-19,A- -Katelyn Davila,Male,4675,1985-04-30,A+ -Erica Fox,Female,4676,1955-02-10,B- -Richard Wood,Male,4677,1936-09-17,A- -Amanda Allen,Male,4678,1931-09-21,O- -Casey Stevens,Female,4679,1956-11-21,O+ -John Hubbard,Female,4680,1951-04-19,B- -Michele Olson,Female,4681,1940-02-14,O- -Mike Goodman,Male,4682,1984-12-01,O+ -Nancy Morgan,Male,4683,1985-08-13,B- -Christopher Campbell,Female,4684,1982-06-06,B- -Alyssa Taylor,Male,4685,1986-10-27,A- -Kim Martinez,Male,4686,1965-07-08,AB- -Diane Larson,Female,4687,1952-09-29,B- -Denise Anderson,Male,4688,1943-07-28,AB- -Luke Kelley,Male,4689,1957-11-30,AB+ -Parker Conrad,Male,4690,1976-10-02,A- -Wendy Hendrix,Female,4691,1983-07-08,B+ -Debbie Moore,Male,4692,1933-01-10,A+ -Angel Smith,Male,4693,1983-02-04,A- -Gerald Garcia,Male,4694,1980-10-10,O- -Abigail Horn,Male,4695,1972-03-18,A+ -Jason Wright,Male,4696,1997-09-15,A+ -Wesley Campbell,Male,4697,1968-11-05,B+ -Jose Ochoa,Male,4698,1984-12-26,AB- -Michael Castillo Jr.,Male,4699,1964-07-03,B+ -Michele Perez,Female,4700,1985-03-23,B+ -Robin Rodriguez,Male,4701,1955-05-06,A+ -Caleb Coleman,Male,4702,1986-05-11,B- -Carla Flowers,Female,4703,1968-11-29,AB- -Joe Daniels,Male,4704,1935-03-29,A+ -Kristin Nolan,Female,4705,2000-08-13,AB- -Megan Thomas,Female,4706,1989-12-21,AB+ -Kathryn Owens,Female,4707,1959-01-02,AB- -David Fletcher,Male,4708,1934-11-08,O+ -Theresa Jones,Female,4709,2002-08-27,B- -Danielle Massey,Male,4710,1982-06-21,O- -Kimberly Lopez,Female,4711,1965-08-01,O+ -Nathan Rodriguez,Female,4712,1995-03-08,O+ -Paul Berry,Female,4713,1937-11-11,B+ -Jerome Evans,Female,4714,1966-03-27,B+ -Kristin Mccann,Male,4715,1976-08-31,O+ -Amy Hickman,Female,4716,1991-12-13,A+ -Thomas Hickman,Male,4717,1958-10-22,AB- -Wendy Harmon,Female,4718,1959-02-20,AB- -Deanna Clark,Male,4719,1933-02-06,A- -Kaylee Hill,Female,4720,1931-12-01,A+ -Patrick Smith,Male,4721,1969-10-17,B- -Melissa Roth,Male,4722,1995-04-24,A+ -Cheryl Lynch,Female,4723,1958-01-04,A+ -Brendan Garrett,Female,4724,1947-03-30,A+ -Jason Lewis,Female,4725,1965-02-25,B- -Chase Johnson,Female,4726,1951-05-23,A- -Heidi Avila,Female,4727,1942-06-24,B- -Tricia Wells,Female,4728,1935-12-20,AB+ -Angel Martin,Male,4729,1960-03-14,A- -Tiffany Hudson,Male,4730,1954-10-27,AB+ -Jeremiah Lawson,Female,4732,1952-08-28,AB+ -Calvin Santos,Female,4733,1978-10-02,AB+ -Janet Hunt,Male,4734,1971-04-25,AB- -Lauren Henry,Female,4735,1938-09-16,O+ -Rebecca Delgado,Female,4736,1986-09-04,O+ -Debra Wright,Male,4737,1948-05-02,AB+ -Erin Bond,Male,4738,1956-03-28,AB+ -Sylvia Bradley,Male,4739,1976-07-16,O- -John Jackson,Male,4740,1967-12-22,B+ -Amber Taylor,Female,4741,1962-03-11,O+ -Melissa Pitts,Male,4742,1987-05-16,B+ -Tyler Little,Male,4743,1975-08-07,B+ -Julie Robles,Female,4744,1963-07-25,O- -Abigail Grant,Female,4745,1936-10-04,B+ -John Norris,Female,4746,1968-11-25,A- -Tracy Bradley,Female,4747,1971-03-09,O- -Jeremy Floyd III,Female,4748,2001-02-03,B+ -Matthew Roberts,Male,4749,1972-10-26,B+ -Paul Williams,Male,4750,1961-08-12,A+ -Steven Hickman,Female,4751,1963-10-02,B+ -John Sexton,Male,4752,1969-01-26,AB- -Diane Mccarthy,Female,4753,1972-07-02,A- -Justin Galloway,Female,4754,1969-02-25,B- -Karen Smith,Male,4755,1984-09-25,O+ -Rebecca Gilbert,Male,4756,1959-07-03,AB+ -Vanessa Thompson DDS,Female,4757,1963-08-01,B+ -Amanda Wilson,Female,4758,1983-04-12,A- -Brittany Vega,Female,4759,1975-08-26,AB+ -Terry Richardson,Female,4760,1997-02-02,B- -Joshua Mcbride,Female,4761,1948-02-10,A- -Michael Small,Female,4762,1938-11-27,O+ -Brian Bates,Male,4763,1950-04-21,A- -Calvin Wilson,Female,4764,1993-05-25,AB+ -Joshua Alexander,Female,4765,1975-08-15,AB+ -Carlos Lopez,Female,4766,1960-06-08,A+ -Anthony Decker,Male,4767,1976-06-12,B+ -Michael Becker,Male,4768,1943-07-30,O- -Heather Moreno,Male,4769,1997-12-24,A- -Stephanie Cooley,Male,4771,1941-09-16,AB+ -Andrea Dawson,Male,4772,1996-10-02,AB- -Theresa Anderson,Male,4773,1943-01-29,O+ -Zachary Williams,Female,4774,1977-02-11,AB- -Michael Arellano,Female,4775,1940-06-29,B- -Kelsey Jensen,Female,4776,1999-03-15,A- -Kimberly Davis,Male,4777,1970-10-19,A+ -Linda Rodriguez,Female,4778,1944-11-28,O+ -Steve Martin,Female,4779,1933-10-12,A+ -Lee Hall,Female,4780,1957-01-04,O- -Karen Mann,Female,4781,1992-09-30,AB+ -Brian Figueroa,Female,4782,1968-02-17,B+ -Pamela Chavez,Female,4783,1983-07-02,O+ -Brian Alvarez,Male,4784,1961-09-15,B- -Ronald James,Female,4785,1986-08-26,B+ -Olivia Walsh,Male,4786,1945-06-05,A- -Kelly Colon,Female,4787,1998-05-03,O- -Jimmy Nicholson,Female,4788,1945-11-28,O- -Katherine Arnold,Male,4789,1998-03-22,A+ -Francis Brown,Male,4790,1991-02-08,O- -Richard Garcia,Male,4791,1957-11-14,O+ -John Silva,Female,4792,1963-07-18,A+ -Peter Bennett,Female,4793,1965-12-14,B+ -Christopher Fernandez,Male,4794,1983-05-16,O- -Ana Hale,Male,4795,1986-01-13,A- -Jamie Obrien,Male,4796,1964-10-16,B+ -Brandon Mann,Female,4797,1983-09-24,B- -Laurie Martin,Female,4798,2002-09-24,A- -Jordan Gordon,Male,4799,1991-05-13,AB- -Jamie Martin,Male,4800,1979-12-03,O+ -Benjamin Johnson,Female,4801,1998-02-14,B- -Nicole Young,Male,4803,1937-07-12,B- -Hannah Cruz,Female,4804,1966-01-08,A+ -Daniel Morris,Male,4805,1993-02-23,AB+ -Susan Carlson,Male,4806,2000-05-24,A+ -Kevin Allison,Female,4807,1975-06-03,O+ -Michael Pacheco,Male,4808,1994-12-27,O+ -Joseph Rivera,Male,4809,1987-06-06,A+ -Nicholas Henderson,Female,4810,1939-06-13,AB+ -Christina Blankenship,Male,4811,1949-10-02,A- -Scott Wong,Male,4812,1985-04-17,A+ -Courtney Harris,Male,4813,1962-05-07,O+ -Lindsey Jacobs,Male,4814,1944-01-29,AB+ -Anthony Hale,Male,4815,1998-02-18,O+ -Jason Dixon,Male,4816,1937-06-01,AB+ -Noah Evans,Female,4817,1980-04-23,AB+ -Shannon Vazquez,Male,4818,1971-04-24,B+ -James Cummings,Female,4819,1998-01-11,A+ -Robin Harper,Male,4820,1962-05-27,A+ -Kimberly Watkins,Female,4821,1963-08-14,A+ -Brian Cabrera,Male,4822,1957-06-02,AB+ -Billy Johnson,Female,4824,1938-12-18,AB+ -Michael Castro,Male,4825,1969-05-03,O+ -Amanda Thompson,Female,4826,1942-06-05,B- -Kirk Jones,Female,4827,1964-05-03,A+ -Susan Li,Female,4828,1953-11-08,B+ -Jennifer Spencer,Male,4829,1955-02-07,AB- -Carlos Graham,Female,4830,1985-01-18,O+ -Heather Allen,Male,4831,1939-09-22,O+ -Kelly Hebert,Male,4832,1963-09-02,O- -Kevin Farmer,Male,4833,1960-01-09,A+ -Cynthia Farley,Female,4834,1937-10-03,A- -Thomas Arnold,Female,4835,1990-05-29,O+ -Mike Duarte,Female,4836,1992-11-14,O- -Justin Brady,Female,4837,1966-10-01,AB- -Robert Burton,Male,4838,1930-06-02,B+ -Kenneth Cunningham,Male,4839,1990-08-12,AB- -Jonathon Perez,Female,4840,1960-07-18,A- -Julie Wolfe,Male,4841,1960-05-31,A+ -Andrew Mcdonald,Male,4842,1937-09-01,AB+ -Latoya Carpenter DDS,Male,4843,1944-07-16,O- -Ronald Singleton MD,Female,4844,1957-03-24,AB+ -Gregory Adams,Male,4845,1937-02-23,AB- -Mr. Tyler Baxter,Female,4846,1963-01-15,AB- -Thomas Evans,Female,4847,1933-01-09,B- -Mrs. Lydia Jones,Female,4848,1959-05-17,B- -Mr. Terry Jackson,Male,4849,1995-01-05,B+ -Kathleen Whitaker,Male,4850,1986-05-10,A- -Stephen Chavez,Male,4851,1985-05-30,B- -Brian Roach,Male,4852,1949-11-20,B- -Andrea Davis,Female,4853,1935-03-30,A- -Roger Leonard,Female,4854,1995-01-09,O+ -Lindsay Oneill,Female,4855,1983-04-09,B- -Kimberly Morales,Female,4856,2000-01-16,O+ -Justin Jones,Female,4857,1931-02-11,O+ -Donald Sparks,Female,4858,1967-06-25,A+ -Jason Smith,Male,4859,1930-06-16,O+ -James Robinson,Male,4860,1931-05-24,O+ -Dennis Todd,Female,4861,1979-05-29,B- -Shannon Brooks,Female,4862,1940-01-13,O+ -Alexandra Wilson,Female,4863,1984-05-30,AB+ -Brandi Brown,Male,4864,1965-09-24,A- -Robin Lee,Male,4865,1931-11-12,B- -Tonya Smith,Female,4866,1981-10-08,A- -Laura Warner,Female,4867,1980-08-30,O- -Candice Brown,Female,4868,1989-04-05,B- -Nicole Porter,Male,4869,1941-12-06,O+ -Jesus Nelson,Male,4870,1933-09-25,AB+ -Natalie Thomas,Female,4871,1956-01-28,A- -Caroline Moody,Female,4872,1936-04-11,B- -David Cunningham,Male,4873,1934-03-19,AB+ -Brittney Boone,Female,4874,1939-05-02,A- -Jason Hernandez,Female,4876,1996-01-21,O- -Jennifer Bishop,Male,4877,1953-12-18,AB- -Courtney Parker,Male,4878,2000-04-18,B+ -Robert Taylor,Female,4879,1980-01-26,B+ -Jeremiah Ewing,Female,4880,1930-06-24,O- -Ryan Decker,Male,4881,1936-02-09,AB- -Aaron Calderon,Female,4882,1941-09-27,A+ -Jacob Morris,Female,4883,1986-04-01,AB- -Katie Moody,Female,4884,1963-03-01,A+ -Oscar Lane,Female,4885,1949-06-16,B- -Dr. Vanessa Barnes,Male,4886,1956-07-12,A+ -Zachary Aguirre,Female,4887,1962-12-25,B+ -Mrs. Charlene Young,Female,4888,1983-07-17,B+ -Wesley Vincent,Male,4889,1979-02-24,AB+ -Michelle Branch,Male,4890,1933-02-25,A+ -Crystal Williams,Male,4891,1950-11-11,AB+ -Erica Roberts,Female,4892,1946-07-09,B+ -Thomas Oliver,Male,4893,1953-06-09,A- -Scott Thompson,Male,4894,1943-07-18,A- -Edward Jackson,Female,4895,1997-05-27,AB- -Benjamin Duncan,Female,4896,1935-03-23,AB- -Adrian Sandoval,Female,4897,1939-07-23,AB- -Megan Hayes,Male,4898,1981-10-19,A+ -Morgan Wallace,Male,4899,1941-06-05,AB- -Timothy Chandler,Male,4900,1960-04-18,A+ -Anthony Hanna,Male,4901,2002-04-13,A+ -Henry Hays,Male,4902,1978-05-26,O+ -Stephen Malone,Female,4903,1943-01-22,O+ -Jose Santiago,Male,4904,1943-02-18,A+ -Michele Mendoza,Male,4906,1965-09-20,A- -Courtney Martin,Male,4907,1968-11-28,AB+ -Lori Woodard,Male,4908,1993-09-02,B+ -Jason Fox,Male,4909,1982-12-30,B+ -Julia Jackson,Male,4910,1985-08-06,B- -Sarah Lopez,Female,4911,1943-09-07,O- -Janice Ibarra,Female,4912,1994-02-10,O+ -James Huff,Male,4913,1977-07-29,A+ -David Bailey,Male,4914,1952-03-18,O- -Julie Compton,Female,4915,1944-06-23,O+ -Miss Cynthia Massey,Male,4916,1958-12-18,B- -Robert Franklin,Male,4917,1980-12-28,B+ -Evan Jimenez,Male,4918,1978-11-25,AB+ -Michael Wilson,Female,4919,1947-08-06,A+ -Gregory Carpenter,Female,4920,1961-10-04,B- -Danielle Johnson,Female,4921,1931-01-25,B+ -Hannah Solomon,Female,4922,1932-09-26,A- -Valerie Williams,Female,4923,1965-01-29,O+ -Justin Bennett,Male,4924,1972-09-16,A+ -Anna Martin,Male,4925,1935-01-30,O- -Gary Cook,Female,4926,1952-03-31,A- -Kenneth Rivers,Female,4927,1967-10-08,B+ -Amy Nichols,Male,4928,1999-02-02,A- -Sandra Johnson,Male,4929,1937-07-26,AB- -Austin Oneal,Female,4930,1984-11-20,AB+ -Elizabeth Mcintyre,Male,4931,1943-08-27,B+ -Justin Bean,Male,4932,1934-01-21,A- -Michael Chavez,Female,4933,1994-09-22,O+ -Mitchell Ruiz,Male,4934,1940-03-20,AB+ -Amanda Peterson,Female,4935,1994-09-28,A+ -Bonnie Brooks,Male,4937,1976-02-04,AB- -Andrew Miller,Female,4938,2001-06-30,B+ -Anna Rubio,Female,4939,1983-04-30,B- -Nicole Daugherty,Female,4940,1977-04-10,AB+ -Desiree Williams,Female,4941,1986-12-05,O- -Dustin Davis,Male,4942,1985-12-30,O+ -Tracy Smith,Female,4943,1959-06-16,B+ -Michelle Hawkins,Female,4944,1983-10-31,O- -Joseph Daniels,Male,4945,1974-08-29,AB+ -Rodney Zimmerman,Male,4946,1953-06-15,B+ -Amanda Chase,Male,4947,1962-07-21,AB- -Joy Jones,Female,4948,1996-08-17,B- -Elizabeth Ponce,Female,4949,1960-10-24,B- -Todd Peck,Male,4950,1987-09-13,O- -Caitlyn Fisher,Male,4951,1961-04-30,A+ -Kevin Watson,Female,4952,1967-01-08,A+ -Shawn Brooks,Female,4953,1987-06-10,AB- -Joel Moore,Female,4954,1942-06-26,B- -Kathryn West,Male,4955,1974-05-09,O- -Nathan Holloway,Female,4956,1949-12-18,O- -Autumn Cardenas,Male,4957,1952-05-05,B+ -Lisa Long,Female,4958,1930-04-23,B+ -Joseph Mendoza,Female,4959,1988-11-27,O- -Jennifer Moran,Male,4960,1983-08-12,B+ -Richard Johnson,Male,4961,1973-08-07,AB+ -Edgar Compton,Female,4962,2002-07-22,B+ -Paul Parker,Female,4963,1975-03-29,AB- -Kevin King MD,Female,4964,1933-11-25,A+ -Justin Davis,Female,4965,1982-12-07,A+ -Deborah Salazar,Female,4966,1983-07-14,AB+ -Mrs. Tricia Porter,Male,4967,1998-09-13,O+ -Ronald Deleon,Male,4968,1959-08-05,AB+ -Chase Cooke,Male,4969,1946-07-19,AB- -Larry Barnes,Male,4970,1949-02-19,O- -Derrick Hoffman,Male,4971,1994-09-02,AB+ -Anthony Burton,Female,4972,1947-02-22,O- -Tammy Lopez,Male,4973,1932-06-06,AB- -James Garner,Female,4974,1983-05-11,A- -Jeremy Johnson,Male,4975,1974-12-29,AB- -Alexandria Lewis,Female,4976,1985-09-04,B- -Regina Vargas,Female,4977,1984-08-09,O- -Brian Black,Female,4978,1974-11-28,A+ -Sarah Medina MD,Female,4979,1988-01-22,AB+ -Nathaniel Fuller,Male,4980,1992-03-20,A- -Nicole Morris,Female,4982,1996-12-02,AB- -Keith Lindsey,Female,4983,2001-04-27,O- -Willie White,Male,4984,1963-07-20,A- -Randy Anthony,Female,4985,1981-12-29,O+ -Louis Evans,Male,4986,1951-06-26,B- -Rachel Smith,Female,4987,1998-07-10,O+ -Justin Peterson,Male,4988,1947-08-12,AB- -Timothy Leon,Female,4989,1966-10-31,O+ -Joseph Adams,Male,4990,1966-09-04,O+ -Cory Clark,Male,4991,1940-04-23,B- -Emily Campbell,Male,4992,1981-07-14,B- -Tara Murray,Male,4994,1973-09-02,B+ -Angela Cervantes,Female,4995,1964-03-25,B- -Rodney Harris,Female,4996,1956-09-02,A- -Ruth Mason,Female,4997,1992-04-07,B+ -Leonard Oneill,Male,4998,1997-08-20,B- -Jennifer White,Female,4999,1946-04-08,O+ -Donna Miller,Female,5000,1995-10-15,A+ -John Shaffer,Female,5001,1943-04-18,A+ -Joshua Kelly,Male,5002,1992-10-13,B+ -Garrett Sullivan,Male,5003,1994-07-24,B- -Anita Hill,Male,5004,1991-01-16,A- -Melissa Spencer,Female,5005,1992-08-08,AB+ -Shelby Moore,Female,5006,1971-07-11,O- -Sandra Fernandez,Female,5007,1982-06-02,AB- -Mary White,Female,5008,1987-01-22,A- -Jessica Marquez,Male,5009,2001-02-28,AB+ -Aaron Hicks,Female,5010,1992-04-10,AB- -Nancy Kim,Female,5011,1990-06-12,AB+ -Makayla Brady,Female,5012,1945-11-06,AB+ -Ashley Robinson,Male,5013,1930-07-21,B+ -Tiffany Wang,Female,5014,1991-09-22,A+ -Adam Richmond,Female,5016,1958-12-01,O- -Jennifer Williams,Female,5017,1976-04-10,AB+ -Samantha Morgan,Female,5018,1951-03-09,B- -Stephanie Murphy,Female,5019,2000-12-16,AB- -Tony Obrien,Female,5020,1935-06-12,A- -Pamela Miller,Female,5021,1972-04-11,A+ -John Fry,Male,5022,1962-02-19,AB- -Dustin Owens,Male,5023,1969-01-12,B+ -Erika Walker,Female,5024,1985-04-08,B- -Stacey Cohen,Male,5025,1990-10-05,B- -Jamie Novak,Female,5026,1949-08-11,AB+ -John Reynolds,Male,5028,1965-10-09,B- -Crystal Hatfield,Female,5029,1991-12-12,O- -Andrew Garrett,Male,5030,1968-08-23,B+ -Diamond Wright,Female,5031,1952-12-30,B- -Allison Davidson,Female,5032,1945-06-04,AB+ -Andrea Macdonald,Male,5033,1945-10-04,AB- -Henry Kim,Female,5034,1959-08-22,B+ -Jennifer Spencer,Female,5036,1992-02-18,B- -Shirley Allen,Female,5037,1941-04-10,A+ -Kathryn Rodriguez,Male,5038,1997-09-15,B+ -Monica Perez,Female,5039,1934-02-27,B+ -Benjamin Duran,Female,5040,1991-09-25,A- -Mark Farmer,Female,5041,1974-10-03,A+ -Cameron Martin,Male,5042,1937-02-13,A+ -Zachary Ortega,Male,5043,1966-03-30,AB- -Tiffany Richmond,Female,5044,1980-11-13,O+ -Karen James,Male,5045,1939-09-25,A- -Shannon Valentine,Male,5046,1974-05-03,A+ -Deborah May,Male,5047,1982-08-29,A+ -Robert Anderson,Female,5048,1971-10-06,O+ -Sean Ramirez,Female,5049,1974-05-04,AB- -Denise Fischer,Female,5050,1934-10-09,A- -Christopher Williams,Female,5051,1933-07-30,A+ -Matthew Perry,Male,5052,1940-07-16,AB+ -Jason Johnson,Female,5053,1963-11-04,AB- -Yolanda Ross,Female,5054,1964-12-16,A- -Mary Walters,Female,5055,1995-06-12,A+ -Craig Moore,Male,5056,1965-09-06,A+ -Daniel Norman,Male,5057,1941-06-27,O+ -Mark Carlson,Male,5058,1989-01-13,A- -Henry Skinner,Female,5059,1981-11-08,AB+ -Michael Torres,Male,5060,1981-03-03,AB- -James Wallace,Male,5061,1950-11-11,B- -Mary Holmes,Female,5062,1955-05-30,O- -Elizabeth Mccoy,Male,5063,1937-03-27,AB+ -Bradley Humphrey,Male,5064,1955-08-27,B- -Christopher Day,Male,5065,1969-02-21,AB+ -Daniel Patrick,Female,5066,1992-05-28,A- -Gordon Thompson,Female,5067,1972-04-08,B- -Alicia Brewer,Female,5068,1972-11-30,A- -Ebony White,Female,5069,1943-01-10,B- -Peter Bishop,Female,5070,1938-03-14,AB+ -Lisa Stewart,Male,5071,1998-10-26,O+ -Danielle Flores,Male,5072,1971-09-09,AB+ -Dr. Harold Fischer,Female,5073,1933-06-25,A- -Nicole Shelton,Female,5074,1934-12-19,AB+ -Katrina Schultz,Female,5075,1998-12-15,B+ -Kimberly Hill,Female,5076,1981-08-06,B+ -Andrea Morgan,Male,5077,1986-02-20,B- -Sheri Dixon,Female,5078,1991-08-17,B+ -Lisa White,Female,5079,1953-03-16,O- -Sara Moody,Male,5080,1942-01-14,B- -Alyssa Mcdonald,Female,5081,1955-06-02,B+ -Zachary Norton,Male,5082,1966-06-19,A+ -Douglas Yates,Male,5083,1977-02-03,AB+ -Don Davis,Male,5084,1994-11-09,AB- -Colleen Mitchell,Female,5085,1994-12-06,AB+ -Tamara Doyle,Female,5086,1930-03-24,B+ -Matthew Frost,Male,5087,1935-04-05,O+ -Penny Hebert,Female,5088,1951-05-28,A- -Kevin Lopez,Male,5089,1961-12-27,AB- -Jordan Finley,Male,5090,1961-01-14,B- -Eugene Bates MD,Male,5091,1972-09-13,O+ -Thomas Barnes,Female,5092,1935-09-25,AB+ -Sarah Brown,Male,5093,1965-05-02,B+ -Sarah Benjamin,Male,5094,1994-03-21,B- -Michelle Anthony,Male,5095,1996-09-02,B- -Alexandria Gonzalez,Female,5096,1952-11-28,A+ -Christopher Gonzalez,Female,5097,1944-06-21,A+ -Julie Davis,Male,5098,1959-11-01,B+ -Sandra Carter,Male,5099,1943-07-09,B+ -Kirk Berry III,Female,5100,1975-11-14,O- -Desiree Oconnor,Female,5101,1979-11-02,A+ -Daniel Flores,Male,5102,1980-08-11,A- -David Schultz,Female,5103,1965-07-13,AB- -Bruce Torres,Male,5104,1984-05-31,B- -Jennifer Willis,Male,5105,1979-09-24,A+ -Jeffrey Murphy,Male,5106,1951-01-05,B+ -Kevin Vazquez,Male,5107,1978-08-05,O- -Andrea Lambert,Female,5108,1994-10-30,B+ -Jose Flores,Male,5109,1940-01-25,B+ -Nicholas Wright,Female,5110,1936-08-23,B+ -Alan Velasquez,Female,5111,1997-06-26,AB+ -Diane Clark,Female,5112,1997-01-02,AB- -Nathan Sanders Jr.,Male,5113,1938-02-10,A+ -John Hill,Male,5114,1932-05-09,B- -Christina Simmons,Female,5115,1962-12-27,AB+ -Sarah Calhoun,Female,5116,1941-05-01,B+ -Mason Washington,Female,5117,1936-08-21,A- -David Gonzalez,Male,5118,2000-03-14,B- -Chad Riley,Female,5119,1958-07-02,AB+ -Jenny Vazquez,Female,5120,1940-12-31,A- -Darren Anderson,Male,5121,1958-08-13,A- -Melissa Taylor,Female,5122,1958-02-21,AB- -Dr. Christopher Rogers,Female,5123,1998-04-18,B- -Lynn Koch,Female,5124,1960-02-09,A+ -Lauren Garner,Female,5125,1997-09-12,A+ -Michael Munoz,Male,5126,1933-02-08,O- -Susan Cochran,Male,5127,1989-01-01,AB+ -Kelly Barnes,Male,5128,1944-01-07,O- -Joseph Brooks,Female,5129,1945-08-04,O+ -Monique Rodriguez,Female,5130,1991-08-29,A+ -Brian Watkins,Male,5132,1989-11-16,AB+ -Justin Caldwell,Female,5134,1941-05-27,AB- -Shannon Osborne,Male,5135,1981-04-13,O- -Rebecca Eaton,Female,5136,1943-10-19,AB- -Anne Coleman,Female,5137,1988-04-07,AB- -Samantha Wilson,Female,5138,1970-01-22,B+ -Austin Hull,Female,5139,1958-08-04,B+ -Paula Clark,Male,5140,1952-08-05,AB- -Laura Walton,Female,5141,1988-08-29,O- -Brianna Hardy,Female,5142,1985-07-16,B+ -Jacob Pierce,Female,5143,1978-07-09,O+ -Tyler Benjamin,Female,5144,1978-02-06,A- -Kent Carrillo,Female,5145,1986-12-23,A- -Brandon Obrien,Male,5146,1934-04-01,B+ -Lindsey Burgess,Male,5147,1964-07-26,O- -Steven Jenkins,Male,5148,1934-06-18,A- -Rebecca Davis,Female,5149,2000-12-02,B- -Courtney Hansen,Male,5150,1979-01-14,A- -Juan Flynn,Male,5151,2001-11-13,A+ -Jeremy White,Female,5153,1933-09-23,O- -Darin Rhodes,Female,5154,2001-08-05,B+ -Shawna Young,Female,5155,1941-12-19,B+ -Jon Thomas,Female,5156,1944-06-19,A- -Sean Brown,Male,5157,1950-11-02,O- -Christopher Scott,Male,5158,1958-11-28,O+ -Michael Ashley,Male,5160,1970-11-11,B- -Joseph Brown,Female,5161,1970-08-18,B+ -Connie Alvarez,Female,5162,1962-09-19,O- -Rachel Stewart DDS,Female,5163,1959-02-04,B+ -Alexis Miller,Female,5164,1935-06-17,B+ -Rachel Davis,Male,5165,1932-05-19,A+ -Natasha Goodwin,Female,5166,1932-10-11,A- -Nancy Johnson,Female,5167,1957-08-30,A+ -Holly May,Female,5168,1976-07-04,A- -Adam Mueller,Male,5170,1962-11-22,B+ -Mrs. Kristin Trujillo,Female,5171,1931-11-22,O- -Lisa Graves,Male,5172,1998-08-21,AB- -Alice Roth,Female,5173,1976-03-13,A- -Logan Adams,Male,5174,1993-08-26,AB- -Jessica Michael,Male,5175,1994-09-06,B- -Robert Hunter,Male,5176,1959-06-06,A+ -Angela Wheeler,Male,5177,1996-03-05,AB- -Ryan Jackson,Female,5178,1951-12-21,A+ -Jessica Schultz,Female,5179,1975-08-31,A- -Cindy Robinson,Male,5181,1945-01-10,A- -Kendra Walker,Female,5182,1985-11-19,B- -Eugene Fisher DDS,Female,5183,1960-03-19,A- -Michael Harding,Male,5184,1982-10-31,B+ -Lauren Davis,Female,5185,2001-12-27,B- -Robert Cowan,Female,5186,1987-11-06,AB- -Zachary Pearson,Male,5187,1979-12-27,A- -Jamie Smith,Female,5188,1965-03-13,O- -Michelle Charles,Female,5189,1983-10-12,AB+ -Cheryl Mason,Male,5190,1937-09-18,O+ -Angie Peterson,Female,5191,1998-07-03,B+ -Stacey Wright,Female,5192,1984-10-29,AB+ -John Johnson,Male,5193,1942-03-17,AB+ -Patricia Sullivan,Male,5195,1944-07-13,A+ -Debra Figueroa,Female,5196,1954-06-17,B+ -Benjamin Adams,Male,5197,1980-06-12,B+ -Tammy Gomez,Female,5198,1976-09-19,B- -Daniel Brown,Female,5199,1959-03-09,A+ -Margaret Chung,Female,5200,1945-09-17,AB- -Carolyn Stanley,Female,5201,1945-07-09,O+ -Aaron Hamilton,Male,5202,2001-01-02,AB- -Melissa Thomas,Male,5203,1969-07-02,O- -Christine Edwards,Male,5204,1951-01-28,O+ -Gina Gonzales,Female,5205,1996-11-07,A+ -Sandra Ingram,Male,5206,1975-01-11,A- -Christopher Davis,Male,5207,1951-06-09,A- -Mr. Chad Gray PhD,Male,5208,1959-06-09,A+ -Mathew Reilly,Female,5209,1966-10-29,AB- -Victoria Castillo,Male,5210,1950-02-17,A+ -Raymond Morton,Female,5211,1967-01-03,A+ -Amy Barnes,Female,5212,1993-10-16,AB+ -Tiffany Stewart,Male,5213,1952-10-18,O- -Joseph Schneider,Male,5214,1939-12-24,B+ -Lorraine Key,Male,5215,1988-06-19,A- -Jody Taylor,Male,5217,1951-11-30,AB+ -Sierra Johnson,Female,5218,1938-12-23,A+ -Lindsay Johnson,Female,5219,1949-12-23,B- -Edward Ramirez,Male,5220,1999-07-16,AB+ -Elizabeth Jones,Male,5221,1938-06-02,A+ -Christine Jones,Female,5223,1966-04-23,A- -Nicholas Jacobs,Male,5224,1960-08-04,B+ -Daniel Goodwin,Male,5225,1952-10-04,A+ -Shane Holland,Male,5226,1995-07-15,O- -Pamela Jones,Male,5227,1934-06-26,AB- -Todd Oneill,Female,5228,1967-05-19,O+ -Kevin Browning,Female,5229,1943-12-22,AB+ -James Friedman,Male,5230,1999-10-26,AB+ -Courtney Holmes,Female,5231,1976-08-15,AB+ -Christopher Day,Female,5232,1935-07-26,A+ -Cory Carter,Female,5233,1937-07-24,B+ -Elizabeth Hernandez,Female,5234,1971-08-09,O- -Sean Clarke,Female,5235,1980-07-09,B+ -Jennifer Meza,Male,5236,1975-07-09,A+ -Stacy Martin,Female,5237,1937-04-22,A+ -James Nelson,Male,5238,1970-01-29,AB- -Daniel Rodriguez,Male,5239,1973-09-06,B- -Jennifer Brown,Female,5240,1977-01-20,O- -Jordan Bass,Female,5241,1988-09-16,AB+ -Patrick Simpson,Female,5242,1963-10-31,O+ -Glenda Miles,Male,5243,1930-07-15,AB+ -Ronald Mcguire,Female,5244,1935-12-28,B+ -Charlene James,Female,5245,1962-01-20,A+ -Kathleen Chambers,Male,5246,1936-05-19,O- -Charles Davis,Male,5248,1988-02-11,A- -Bryan Beasley,Female,5249,1939-11-16,O- -Ryan Espinoza,Male,5250,1998-01-16,O- -Francis Fitzpatrick,Male,5251,1930-03-02,B- -William Deleon,Male,5252,2002-07-11,AB+ -Tina Ramsey,Male,5253,1969-05-23,B- -Matthew Livingston,Male,5254,1940-10-02,A- -Jeanne Perez,Female,5255,1947-03-29,A- -Alexander Henderson,Female,5256,1967-04-19,AB- -Monica Lang,Male,5257,1968-09-03,B+ -Christopher Contreras,Male,5258,1937-02-04,O+ -Nicole Anderson,Female,5259,1998-11-02,AB- -James Lane,Female,5260,1963-03-16,A+ -Robert Bates,Male,5261,1973-02-12,B- -Cynthia Smith,Male,5262,2001-08-03,B- -Robyn Griffith,Male,5263,1946-10-05,AB- -Stephen Hernandez,Male,5264,1933-04-15,A+ -Hannah Moore,Male,5265,1973-01-16,O- -Stacy Stewart,Male,5267,1982-09-03,A+ -Brooke Robinson,Male,5268,1960-05-10,AB+ -Jeffery Scott,Male,5269,1994-02-02,AB- -Jonathon Brown,Male,5270,2000-09-02,B+ -Rhonda Ball,Female,5271,1949-02-02,A+ -Charles Mitchell,Female,5272,1930-05-17,O- -Charles Watts,Female,5273,1977-09-04,A+ -Derek Woodard,Female,5274,1972-01-07,B- -Sean Harris,Male,5275,1981-12-17,O+ -Kelly Carr DVM,Male,5276,1994-08-03,B- -Diane Reese,Male,5277,1931-10-24,B+ -Jacob Buckley,Female,5278,1936-10-08,A- -Stephanie Blake,Male,5279,1930-03-28,O+ -James Avery,Male,5280,1959-04-23,A- -Ashley Ortiz,Female,5281,1947-01-11,A+ -Monica Gonzalez,Female,5282,1997-02-25,AB+ -Kimberly Livingston,Female,5283,1974-09-09,B+ -Benjamin Finley,Male,5285,1970-05-20,A+ -Maria Rodriguez,Male,5286,1949-01-29,O- -Nicole Hull,Female,5287,1982-06-14,A+ -Sarah Morgan,Male,5288,1967-03-24,O+ -Kimberly Adams,Male,5289,1934-08-28,B- -Andrew Lopez,Male,5290,1937-05-24,AB+ -Steven Snyder,Female,5291,1993-07-08,A- -Christine Trevino,Male,5293,1962-05-14,A+ -Erica Pruitt,Female,5294,1979-05-15,A+ -John Pitts,Male,5295,1991-05-23,B- -Marcus Russell,Female,5296,1988-12-30,AB+ -Rachel Carter,Female,5297,1945-02-11,AB- -Rachel Gray,Female,5298,1961-07-07,A- -Javier Fox,Male,5299,1940-02-05,A+ -Douglas Lyons,Female,5300,1976-06-28,A+ -Holly Clark,Male,5301,1987-04-21,AB- -Jonathan Keller DVM,Male,5302,1998-08-12,A- -Jessica Moore,Female,5303,1954-03-13,O+ -Mrs. Gabrielle Willis,Male,5304,1970-12-12,O+ -Michele Scott,Female,5305,1960-11-20,B+ -Morgan Christensen,Male,5306,1968-02-08,B+ -Christopher Zamora,Male,5307,1943-01-10,O- -Savannah Terry,Female,5308,1965-09-19,B- -Diana Thornton,Male,5310,1986-11-11,AB+ -Jody Hernandez,Male,5311,1954-05-27,A+ -Paul Golden,Male,5312,1942-12-17,A- -Sarah Anderson,Male,5313,1949-05-22,A+ -Kenneth Lowery,Male,5314,1953-10-17,B+ -Shelly Zavala,Female,5316,1994-05-06,O- -Vincent Young,Male,5317,1987-10-22,A- -Ashley Santiago,Female,5318,1934-08-01,A- -Connie Taylor,Male,5319,1969-03-15,A+ -Mr. Jared Barry,Male,5320,1997-08-07,B- -Melanie Walker,Female,5321,1960-08-02,O- -Miranda Cohen,Female,5322,2002-01-15,B- -Raymond Cruz,Male,5323,1967-02-01,O- -Kathleen Graham,Male,5324,1962-04-26,A+ -Joshua Simpson,Male,5325,1994-07-06,O- -Mariah Dalton,Male,5326,1936-04-13,O+ -Nicole Santiago,Male,5327,1939-12-10,A- -Erik Wilson,Male,5328,1971-04-29,AB+ -Kathryn Castillo,Male,5329,1975-04-05,A+ -Gerald Knox,Male,5330,1969-07-28,AB- -Angel Armstrong,Male,5331,1963-05-02,AB+ -Katherine Freeman,Female,5332,1939-06-16,A+ -Cathy Rhodes,Female,5333,1942-05-05,AB+ -Samuel Gilbert,Male,5334,1990-09-10,O+ -Lori Kim,Female,5335,1996-01-30,AB+ -Michael Nielsen,Female,5336,1959-01-11,O- -Robert Henderson,Female,5337,1945-05-30,B+ -Mark Ruiz,Male,5338,1952-10-20,AB+ -Kimberly Nichols,Male,5339,1972-07-13,A+ -Matthew Cruz,Male,5340,1984-01-22,AB- -Victoria Johnson,Male,5341,1983-02-01,AB- -Courtney Suarez,Female,5342,1939-09-23,B+ -Ashley Thompson,Female,5343,1974-11-28,B- -Jasmine Smith,Female,5344,1936-02-21,B+ -Joanne Smith,Female,5345,1970-02-25,A- -Ashley Barron,Female,5346,1992-02-27,AB+ -Deborah Robinson,Male,5347,1943-12-16,AB- -Lee Smith,Male,5348,1953-08-28,B+ -William Smith,Female,5349,1935-05-03,AB+ -Denise Lee,Male,5350,1999-11-16,A- -Nathaniel Durham,Female,5351,1945-05-20,AB- -Ronald Lee,Male,5352,1941-08-07,A- -Tanya Robinson,Male,5353,1993-10-02,AB+ -Brandon Miller,Male,5354,1935-04-05,A+ -Janice Savage,Male,5355,1960-07-31,AB+ -Christina Robbins,Male,5356,1941-06-20,B+ -Sarah Moore,Male,5357,1963-06-04,A- -Samuel Christensen,Female,5358,1930-08-27,A+ -Thomas Moran,Male,5359,1930-07-24,A+ -David Gonzales,Female,5360,1959-07-27,B- -Catherine George,Male,5361,1945-03-15,AB- -Amanda Aguilar,Female,5362,1943-06-29,O- -Tracy Hale,Male,5363,1960-07-26,A+ -Bradley Ryan,Male,5364,1942-01-08,A- -Richard Lee,Female,5365,1982-03-20,AB- -Jesus Griffin,Female,5366,1988-05-31,O+ -Mr. Victor Austin,Male,5367,1972-10-28,AB+ -Charles Hampton MD,Male,5368,1946-11-13,B+ -Nicholas Hayden,Female,5369,1989-08-11,A- -Michelle Reilly,Male,5370,2000-12-23,O+ -Diane Wallace,Male,5371,1973-04-15,A- -Bonnie Young,Female,5372,1944-01-14,AB+ -Linda Lawrence,Female,5373,1932-03-27,B- -Michele Jones,Female,5374,1966-09-23,A- -Donna Lewis,Female,5375,1999-07-14,A+ -Jeffrey Garcia,Female,5376,1930-07-12,O- -Shannon Smith,Male,5377,1979-09-21,A+ -George Townsend,Male,5378,1939-12-25,AB+ -Lori Atkinson,Male,5379,1965-02-02,A- -Lindsey Johnson,Male,5380,1947-04-16,O- -Erik Curtis,Male,5381,1997-12-21,A+ -Daniel Castillo,Female,5382,1979-10-03,O- -Kelly Collins,Female,5383,1950-03-11,B+ -Melissa Pacheco,Female,5384,1940-02-18,AB+ -Mckenzie Roberson,Male,5385,1959-03-05,B- -Maria Schmitt,Male,5386,1971-06-04,B- -Andrew Cantrell,Male,5387,1955-08-17,A- -Heather Watkins,Male,5388,1940-08-29,A+ -Kimberly Bond,Female,5389,1948-08-25,O+ -Lisa Alvarado,Male,5390,1955-06-07,AB+ -Dennis King,Male,5391,1982-03-12,A+ -Shawn Mcintyre,Female,5392,2002-05-06,A+ -Christopher Campbell,Male,5394,1985-07-19,B- -Cynthia Clark,Male,5395,1994-09-26,A- -Joseph Williams,Female,5396,1931-05-20,O- -Caleb Chandler,Male,5397,1956-11-13,AB+ -Michael Sanchez,Female,5398,1970-03-03,B+ -Mr. Andrew Dunn,Female,5399,1959-05-27,O- -Vincent Willis,Male,5400,2001-01-31,AB- -Miguel Miranda,Female,5401,1960-08-17,AB- -Deanna Deleon,Female,5402,1948-07-18,AB+ -Tina Lin,Female,5403,1940-06-13,A- -Shannon Lloyd,Female,5404,1931-12-19,O+ -Andrea Fernandez,Male,5405,1961-12-20,AB- -Miranda Armstrong,Male,5406,1942-02-21,B- -William Robbins,Male,5407,1976-08-29,O+ -Danielle Lee,Female,5408,1943-11-06,A+ -Nicholas Scott,Male,5409,1985-10-31,AB- -Kayla Hughes,Female,5410,1943-09-04,B- -Mackenzie Reed,Male,5411,1941-08-05,A+ -Daniel Howard,Male,5412,1940-04-22,O+ -Justin Suarez,Female,5413,1960-08-12,AB+ -Elizabeth Taylor,Female,5415,1942-09-12,A+ -Joseph Price,Female,5416,1935-10-06,O- -Mark Rhodes,Male,5417,1955-11-13,AB+ -Mark Sanders,Female,5418,1993-06-24,AB+ -Julie Allen,Male,5419,1959-03-24,O+ -Jackson Ward,Male,5420,1998-05-03,O+ -Dawn Barry,Male,5421,1981-12-30,B- -Nicole Santos,Male,5422,1952-12-16,B- -Kenneth Gonzalez,Male,5423,1962-11-08,O- -Robert Figueroa,Male,5424,1940-03-08,AB+ -Mark White,Female,5425,1937-01-25,B+ -Dakota Norton,Male,5426,1981-11-18,A- -Erin Mclean,Male,5427,1937-07-26,O- -Samantha Phillips,Male,5428,1992-03-08,O- -Eric Whitaker,Female,5429,1946-05-28,A- -Traci Henderson,Female,5430,1958-11-01,A- -John Larson,Male,5431,1984-03-08,A- -Jill Davis,Male,5432,1999-04-16,O+ -John Kirk,Female,5433,1960-04-17,O- -Steven Cohen,Female,5434,1960-12-21,O- -Elizabeth Macdonald,Male,5435,1943-02-02,A+ -Michaela Smith,Female,5436,1941-06-09,A- -Sally Thomas,Female,5437,1971-07-14,A- -Cynthia Thomas,Female,5438,1947-09-25,B- -Richard Eaton,Female,5439,1981-12-27,B- -Joseph Rodriguez,Male,5440,1997-04-04,AB+ -Kristin Jones,Female,5441,1936-07-10,B- -Steven Ortiz,Male,5442,1976-04-24,AB- -Matthew Strong,Male,5443,1991-07-03,AB+ -Jennifer Hughes,Male,5444,1964-03-31,B+ -Shawn Mcintosh,Female,5446,1931-09-27,A- -Kimberly Oconnell,Male,5447,2002-02-17,A+ -Rebecca Keller,Female,5448,1962-11-05,B- -Christina Nelson,Male,5449,1968-10-10,A+ -Craig Klein,Female,5450,1974-11-12,B- -Ryan Gibson,Male,5451,1968-05-06,B- -Peter Jones,Female,5452,1952-12-28,A+ -Richard Johnson DDS,Male,5453,1991-02-25,O- -Christopher Calderon,Male,5454,1963-10-02,O- -Tanner Davis,Female,5455,1969-05-30,O- -Tracy Coleman,Male,5456,1990-04-06,AB- -Julie Gould,Female,5457,1996-01-18,O- -Alexis Rice,Male,5458,1991-04-18,B- -Victoria Jackson,Female,5459,1937-11-30,A- -Maria James,Female,5460,1959-09-24,O+ -Parker Carson,Male,5461,1991-12-10,A+ -Christopher Adkins,Male,5462,1951-12-23,A- -Randy Herrera,Male,5463,1939-01-20,O+ -Mrs. Jill Jones,Male,5464,1932-06-16,A- -Robert Mcguire,Male,5465,1955-05-27,AB- -Michelle Hill,Male,5466,1955-12-07,O+ -Daniel Hammond,Female,5467,1970-10-14,B+ -Danielle Rice,Female,5468,1971-09-23,AB+ -Kristine Wilson,Female,5469,1970-03-15,O- -Amber Thomas,Male,5470,1931-11-02,B+ -Justin Thomas,Male,5472,1994-10-27,AB- -Dr. Caitlyn Miller,Female,5473,1978-12-24,A- -Leslie Oconnor,Female,5474,1992-07-18,B- -Miranda Martin,Male,5475,1962-03-21,O- -Thomas Smith,Male,5476,1965-08-11,B+ -Patricia Robinson,Female,5477,1989-01-02,O- -Lindsey Yang,Female,5478,1973-03-04,O+ -Timothy Martinez,Female,5479,2002-08-22,AB+ -Kevin Howard,Male,5480,1989-03-31,O- -Stephen Campbell,Female,5481,1975-07-17,A- -Melinda Howard,Male,5482,1992-07-15,A- -George Robinson,Female,5483,1935-03-08,A+ -Joseph Bennett,Male,5484,1939-06-02,A+ -Richard Weaver,Female,5485,2002-05-12,O- -Cheryl Peterson,Female,5486,1937-10-25,O+ -Michelle Krause,Female,5487,2001-05-27,O+ -Kimberly Perry,Female,5488,1961-09-12,B- -Daniel Baldwin,Female,5489,1962-03-17,AB- -Edward Bryan,Female,5490,1985-03-29,AB- -Thomas Allen,Male,5491,1961-10-23,B+ -Ryan Chen,Male,5492,1989-06-14,AB- -Robert Chandler,Female,5493,1996-05-29,AB+ -Nathan Meyers,Female,5494,1952-07-19,O+ -Courtney Osborne,Female,5495,1984-09-30,B- -David Mcdonald,Male,5496,1937-03-03,A+ -Thomas Hall,Female,5497,1987-09-01,A- -Rebecca Rose,Male,5498,1938-08-30,AB- -Tiffany Jones,Female,5499,2000-10-24,A+ -Jeffrey Oliver,Male,5500,1938-01-21,A+ -Carla Ortiz,Female,5501,1997-11-20,O- -Crystal Cox,Female,5502,1935-04-10,AB+ -Spencer Morgan,Male,5503,1938-02-20,B- -Mary Campbell,Male,5504,1962-01-18,AB+ -Kristine Thomas,Female,5505,1959-02-18,O- -Paul Harris,Female,5506,1960-01-10,B- -Lindsey Clements,Male,5507,1977-07-27,B- -Heather Burnett,Male,5508,1960-06-30,O+ -Cynthia Wright,Female,5509,1979-10-27,AB+ -Jodi Torres,Female,5510,1973-08-18,AB+ -Scott Singh,Male,5511,1965-12-28,O+ -Sara Craig,Male,5512,1999-06-27,B+ -Brandi Johnson,Female,5513,1931-05-05,A+ -Austin Castillo,Female,5514,1962-03-02,O- -Mark Sexton,Female,5515,1990-12-12,AB+ -Jackie Ryan,Male,5516,2001-05-17,O+ -Omar Fry,Female,5517,1984-11-02,A- -Jennifer Davidson,Female,5518,1994-03-31,B+ -Maurice Davis,Male,5520,1982-10-10,B- -Carol Tate,Female,5521,2001-12-15,AB- -Taylor Walton MD,Female,5522,1939-08-18,A- -Anthony Wilson,Female,5523,1984-01-02,O+ -Tracy Buchanan,Female,5524,1947-07-21,AB- -Karen Ortega,Female,5525,1930-02-23,A+ -Christopher Mason,Male,5526,1981-11-28,O- -Douglas Rogers,Female,5527,1976-07-17,AB- -Heather Weeks,Male,5528,1946-04-11,B+ -Madison Myers,Male,5529,1950-04-10,A+ -Thomas Diaz,Female,5530,1932-08-12,AB- -Matthew Kline,Male,5531,1959-02-03,B- -Deanna Patterson,Male,5532,1934-06-18,B- -Laura Cruz,Female,5533,1960-01-17,B+ -Victoria Arroyo,Female,5534,1948-10-12,B- -Zachary Fletcher,Female,5535,1954-03-17,B- -Amy Valdez,Female,5536,1958-11-09,O+ -Jaclyn Shepherd,Female,5537,1964-09-21,B- -Andrea Walker,Male,5538,1938-12-23,A- -Kimberly Rodriguez,Male,5539,1989-10-17,B- -Karen Turner,Female,5540,1985-04-07,A- -William Benitez,Female,5541,1981-11-14,O+ -Laura Gonzalez,Female,5542,1947-11-27,B- -Brian Meza,Female,5543,1975-11-15,B+ -Eric Mercado,Female,5544,1932-05-07,A+ -Christopher Ellis,Male,5546,1943-05-19,B+ -Amanda Sanchez,Female,5547,1965-06-11,A+ -Jessica Anderson,Female,5548,1950-06-30,AB+ -Allen Gibson,Male,5549,1967-06-16,A+ -Angela Bryant,Female,5550,1975-11-28,O- -Robin Miller,Female,5551,1969-06-02,O- -Destiny Evans,Female,5552,1959-06-02,O- -Daniel Taylor,Male,5554,1941-11-13,O+ -Tina Tucker,Female,5555,1986-08-09,B+ -Pamela Gomez,Female,5556,1982-04-27,A+ -Robert Cabrera,Female,5557,1963-06-23,B+ -Samuel Knight,Female,5558,1991-11-05,A- -Natalie Love,Female,5559,1966-10-19,O- -Jodi Foster,Male,5560,1971-02-15,AB+ -Amy Coleman,Male,5561,1991-08-04,O+ -Emily Glenn,Female,5562,1941-08-22,AB+ -Brittany Jacobs,Female,5564,1963-05-08,A+ -John Miller,Male,5565,1974-03-11,B- -Cameron Sellers,Female,5567,1932-07-11,AB+ -Ashley Palmer,Male,5568,1982-11-03,B- -Regina Castillo,Female,5569,1951-10-15,O+ -Kenneth Fletcher,Male,5570,1983-03-14,AB+ -Bonnie Jones,Male,5571,1973-04-01,AB+ -Theresa Sloan,Female,5572,1999-12-15,AB- -Nathaniel Thomas,Male,5573,1933-05-15,O+ -Kelly Erickson,Male,5574,1959-02-05,O+ -Jessica Lyons,Male,5575,1995-10-18,O- -Adrienne Stanley,Male,5576,1957-05-25,A+ -Joe Norton DVM,Female,5577,1943-07-05,AB+ -Dave Bass,Male,5578,1969-02-20,B+ -Ian Martin,Male,5579,2001-01-07,AB+ -Luis Ellis,Male,5580,1974-11-03,A- -Kyle Dunlap,Female,5581,1985-08-24,O+ -Richard Manning,Male,5582,1992-08-10,B+ -Madison Franklin,Male,5583,1930-07-23,O+ -Randy Trevino,Female,5584,1975-04-19,A+ -Crystal Smith,Female,5585,1973-07-13,O+ -Dylan Cooper,Female,5586,1999-05-23,B- -Amanda Walker,Female,5587,1940-04-06,B- -Dr. Richard Mitchell MD,Male,5588,1948-05-24,AB- -Abigail Smith,Female,5590,1981-12-04,B- -Sara Johnson,Male,5591,1932-12-29,B- -David Padilla,Male,5592,1971-09-11,A+ -Kiara Miller,Female,5593,1987-03-07,AB+ -Justin Lee,Male,5594,1998-12-13,B- -Laura Hughes,Female,5595,1973-11-25,B+ -Chelsey Hamilton,Female,5596,1945-08-20,AB- -David Olson,Female,5597,1956-08-24,O+ -Daniel Wong,Female,5598,1982-09-24,B- -Christine Young,Male,5599,1938-09-27,AB- -Keith Olson,Male,5600,1979-11-21,A+ -Jillian Riggs,Female,5601,1931-11-21,A- -Beth Perry,Female,5602,1985-02-24,A- -Rachel Thomas,Female,5603,1935-10-05,A- -Audrey Hall,Female,5604,1931-01-01,O+ -Robert Decker,Female,5605,1968-05-11,AB- -Erica Barrett,Male,5606,1962-03-21,B- -Katie Santos,Male,5607,1974-02-02,AB+ -Tiffany Hodges,Female,5608,1997-01-05,O+ -Bonnie Robinson,Female,5609,1964-11-20,O+ -Ashley Mitchell,Female,5610,1963-12-05,A- -Mr. Eric Simpson MD,Female,5611,1941-06-04,AB+ -Mary Clark,Female,5612,1991-05-18,A- -Johnathan Smith,Male,5613,1972-10-10,O+ -Lori Holland,Female,5614,1936-07-06,B- -Charles Smith DDS,Female,5615,1978-02-27,A- -Hailey Scott,Male,5616,1988-07-07,A- -Michael Duncan,Male,5617,1962-12-10,B+ -Tammy Howard,Male,5618,1945-07-10,A- -Kevin Ford,Male,5619,1937-06-28,O+ -Chad Davis,Male,5620,1957-01-06,B- -Teresa Richardson,Male,5621,1953-03-31,AB+ -Angela Obrien,Female,5622,1932-08-14,O- -Melissa Montoya,Female,5623,1955-06-25,AB+ -Allison Howard,Female,5624,1948-02-19,B- -David Dunn,Male,5625,1970-10-26,A+ -Sandra Roman,Female,5626,1978-11-23,A- -Kevin Matthews,Female,5627,1942-03-19,AB+ -Dean Gomez,Male,5628,1994-01-11,A+ -Carla Marshall,Female,5629,1968-04-17,A+ -John Wright,Female,5630,1964-08-08,B- -Amy Casey,Male,5632,1992-05-15,B- -Charles Lawson,Male,5633,1982-08-08,B+ -Robert Lucas,Male,5634,1937-10-21,A- -Sonya Foster,Male,5635,1966-05-31,O- -Danny Duncan,Male,5636,1959-04-17,AB- -Jennifer Hebert,Male,5637,1982-12-22,O+ -Henry Wagner,Female,5638,1942-07-31,AB+ -Theresa Schmidt,Female,5639,1999-11-20,B- -Gene Anderson,Male,5640,1969-02-07,AB+ -Lauren Miller,Male,5641,1974-08-03,AB- -Cheryl Richards,Male,5642,1969-03-31,AB- -Jeremy Barrett,Female,5643,1948-03-11,A- -Marcus Love,Male,5644,1937-10-21,A+ -Whitney Reese,Male,5645,1970-11-20,A- -Susan Rodriguez,Female,5646,1930-06-15,O+ -Erin Scott,Male,5647,1959-04-20,O- -Joseph Weiss,Female,5648,1932-07-08,AB+ -Kevin Maynard,Male,5649,1952-09-27,O+ -Eric Wade,Female,5650,1984-06-14,B+ -Kimberly Brown,Male,5651,1977-07-28,O- -Michael Perez,Male,5652,1973-01-10,AB+ -Sarah Pennington,Female,5653,1991-06-01,O+ -Debbie Hernandez,Male,5654,1940-07-06,B- -Clayton Tyler,Female,5655,1978-04-21,AB+ -Deborah Jordan,Male,5656,1995-09-10,O+ -Yolanda Smith,Male,5657,1961-10-23,AB- -Michael Cook,Male,5659,1998-09-11,O- -Christy Bradshaw,Male,5660,1967-01-06,O+ -Madeline Warner,Male,5661,1988-01-05,B- -Amanda Johnson,Male,5662,1959-07-04,A- -Daniel Johnson,Female,5663,1930-03-09,AB+ -Andrew Chang,Female,5664,1956-10-19,B+ -Billy Bowman,Female,5665,1945-07-01,AB+ -Jeremiah Martinez,Female,5667,1942-04-06,AB+ -Michael Johnson,Female,5668,1952-06-24,B- -Stephanie Wilson DVM,Male,5669,1959-11-27,O- -Courtney Wallace,Female,5670,1939-08-23,AB+ -Wanda Jackson,Female,5671,1931-07-27,O- -Stephanie Nguyen,Male,5672,1949-05-23,O+ -Jeremy Martin,Female,5673,1996-04-20,AB- -Paul Thomas,Male,5674,1944-10-09,B+ -Debra Lee,Female,5675,1972-03-08,AB- -Katherine Scott,Female,5676,1981-01-15,O- -Nathaniel Macdonald,Female,5677,1960-05-17,O- -Megan Guerrero,Male,5678,1991-05-24,AB- -Allison Bowman,Female,5679,1931-10-13,AB+ -Alexis Johnson,Female,5680,1945-09-20,A+ -Jonathan Harrell,Male,5681,1966-05-13,A+ -Michael Maddox,Male,5682,1948-09-21,B- -James Jones,Male,5683,1981-12-10,B+ -Kendra Mcdonald,Male,5684,1996-06-03,A- -Paula Garrett,Female,5685,1938-12-07,AB- -Maria Lambert,Female,5686,1978-07-10,AB- -Ryan Dodson,Female,5687,1943-09-06,B- -Megan Drake,Female,5688,1962-05-19,B+ -Joshua Moore,Male,5689,1990-09-07,A+ -Jennifer Ryan,Male,5690,1937-09-28,O+ -Kathleen Shaw,Female,5691,1968-11-28,AB+ -Matthew Kim,Female,5692,1944-04-29,AB+ -Stacey Ferguson,Female,5693,1936-01-27,O+ -Melanie Lopez,Female,5694,1984-07-19,O+ -Kyle Villanueva,Female,5695,1996-05-03,B+ -Allen Lynch,Female,5696,1968-12-19,A+ -Rachel Myers,Female,5697,2000-02-16,B- -Jerome Carr,Female,5698,1968-05-27,O+ -Briana Lang,Female,5699,1986-11-10,B- -Timothy Avila,Male,5700,1982-12-19,B+ -Jacob Vaughn,Male,5701,1983-09-10,A- -Charles Wilson,Female,5702,1967-12-31,O- -Brianna Mercado,Male,5703,1948-09-20,AB+ -Daniel Palmer,Female,5704,1949-04-02,A+ -George Monroe,Female,5705,1970-07-16,AB+ -Erika Fischer,Male,5706,2000-04-17,A+ -Lori Schneider,Male,5707,1999-11-10,B+ -Robert Shelton,Female,5708,1940-03-05,O- -Larry Dennis,Male,5709,1939-05-08,AB+ -Kristina Spencer,Female,5710,1978-10-28,O- -Justin Rice,Male,5711,1931-07-25,B+ -Casey Griffin,Male,5712,1982-10-23,A+ -Aaron Owen,Female,5714,1966-05-20,O+ -Richard Bailey,Male,5715,1981-09-19,A- -Katie Johnson DVM,Female,5716,1932-07-06,AB+ -Jason Mcdowell,Male,5717,1957-07-24,O- -Valerie Wright,Female,5718,1949-02-12,AB- -Anthony Lewis,Female,5719,1995-03-12,AB+ -Kiara Martinez,Female,5720,1947-05-08,AB+ -Richard King,Male,5721,1979-06-15,AB+ -Mason Hunter,Female,5723,1976-07-17,B- -Craig White,Male,5724,1957-03-21,O- -Allison Woods,Female,5725,1994-04-05,O- -Sharon Mathews,Female,5726,1963-11-24,AB+ -Henry Davis,Female,5727,1987-11-11,B+ -Christine Martinez,Female,5728,1984-06-15,B+ -Hector Barajas,Female,5729,1961-12-11,O+ -Lawrence King,Female,5730,1942-05-27,AB+ -Scott Smith,Male,5731,1977-12-19,B- -Theresa Welch,Female,5732,1963-05-20,A+ -Todd Cross,Female,5733,1953-06-15,B- -Steven Wood,Male,5734,1949-10-14,B+ -Kathy Hunt,Female,5735,1944-02-19,O+ -Kathy Phillips,Female,5736,1975-06-04,B+ -Evelyn Stone,Female,5737,1988-03-16,B+ -David Jennings,Male,5738,1933-08-12,B+ -Brian Allen,Female,5739,1933-02-15,AB+ -Gregory Lynch,Male,5740,1942-09-02,B+ -Nancy Lopez,Male,5741,1995-02-02,O- -Krystal Nguyen DDS,Male,5742,1969-09-14,A- -Kaitlyn Bender,Male,5743,1937-05-14,AB- -Robert Frederick,Male,5744,1950-01-19,AB+ -Timothy Robinson,Male,5745,1938-11-30,O+ -Lauren Webster,Male,5746,1997-07-13,O- -Monica Hunter,Female,5747,1944-04-10,B- -Jeffrey Greer,Male,5748,1941-04-01,B+ -Samantha Wagner,Female,5749,1983-02-16,A+ -William Nunez,Male,5750,1979-12-11,A+ -Michael Burgess,Male,5751,1999-06-28,A- -Glenn Sanchez,Male,5752,1999-11-15,AB+ -Ronald Edwards,Female,5753,1982-06-30,B- -Ashley Gill,Female,5754,1985-06-20,A- -Curtis Osborne,Female,5755,1995-09-06,AB- -Cindy Mccullough,Male,5756,1956-11-02,AB- -Shawn Byrd,Female,5757,1997-02-17,A- -Lindsey Hanson,Female,5758,1991-06-09,O+ -Katie Hunter,Female,5759,1985-06-27,A+ -John Norman,Female,5760,1961-04-01,B- -Jessica Owen,Female,5761,1971-01-21,AB+ -Jerry Swanson,Male,5762,1994-07-03,B+ -Mary Ramirez,Female,5763,1964-06-14,O- -Stacy Hernandez,Female,5764,1994-05-18,AB+ -Kelly Bell,Female,5765,1943-10-01,AB+ -Virginia Barnett,Male,5766,1987-10-28,B- -Angela Brown,Male,5767,1981-05-24,A+ -John Ford,Female,5768,1948-01-09,B- -Debra Jones,Female,5769,1966-11-03,O- -Miranda Lopez,Male,5770,1999-11-12,A- -Sabrina Martinez,Female,5772,1965-11-30,B- -Christine Melton,Male,5773,1990-12-02,O+ -Jon Robinson,Female,5774,1981-11-19,AB+ -Cassandra Chan,Male,5775,1977-07-12,A+ -Grace Moses,Male,5776,1994-08-09,B+ -Wanda Morrison,Male,5777,1999-11-25,AB- -Tiffany Davis,Male,5778,1933-06-16,O- -Timothy Alexander,Female,5779,1988-09-04,AB- -Mark Williams,Female,5780,1999-11-14,AB+ -Melissa Jackson,Male,5781,1950-03-19,B- -Alison Stewart,Female,5782,1991-12-02,AB- -Danielle Wallace,Female,5783,1939-02-10,O+ -Stacey Decker,Female,5784,1990-04-10,B- -Gregory Murray,Male,5785,1981-01-16,AB+ -Joshua Browning,Male,5786,1957-06-08,AB- -Tamara Hart,Female,5787,1978-04-20,B+ -Elizabeth Peters,Male,5788,1976-02-17,A- -Jeff Marks,Female,5789,1968-07-02,O- -Mariah Stewart,Male,5790,1983-11-17,AB- -Rhonda Martin,Male,5791,1948-07-19,B+ -Michael Bradley,Male,5792,1971-07-05,A- -Cathy Guzman,Male,5793,1995-03-16,A- -Clifford Avila,Male,5794,1933-05-15,AB- -Karen Cooper,Female,5795,1954-11-07,A+ -Holly Johnson,Male,5796,1940-06-02,AB- -Kimberly Clark,Male,5797,1992-06-07,AB+ -Jason Brennan,Male,5798,1970-04-16,A- -Terri Gilbert,Male,5799,1945-09-29,O- -Margaret Jones,Female,5800,1972-10-14,AB+ -Mr. John Pierce,Male,5801,1966-03-25,O+ -William Gaines,Male,5802,1985-06-01,B- -Shannon Le,Male,5803,1938-08-02,AB- -Tyler Bean,Male,5804,1949-01-14,A+ -Allison Robbins,Female,5805,1999-10-26,O- -Marco Maddox,Male,5806,1991-05-19,A+ -William Bowers,Male,5807,1987-06-04,A+ -Darlene Jones,Female,5808,1934-03-27,A+ -Alexandria Sparks,Male,5809,1972-04-27,AB- -Ryan Gomez,Male,5810,1991-06-19,O- -Sara Clark,Male,5811,1977-11-08,O- -Jesse Hudson,Male,5812,1936-08-08,A- -Robert King,Male,5813,1982-01-09,A+ -Lauren Phillips,Female,5814,1968-08-22,A- -Christy Gregory,Female,5815,1999-05-17,A- -Richard Jones,Male,5816,1941-05-08,B- -Kyle Williams,Female,5817,1937-08-07,AB- -Robert Bell,Female,5818,1966-02-14,AB- -Andrew Wilson,Male,5819,1965-03-09,AB+ -Gregory Hill,Male,5820,1965-10-14,B+ -Joseph Hunt,Male,5821,1993-01-02,A- -Nicholas Moore,Male,5822,1983-07-01,AB- -David Mendoza,Male,5823,1940-11-14,A+ -Melissa Russell,Female,5824,1996-09-07,B+ -Suzanne Phillips,Male,5825,2002-11-15,O+ -Cindy Johnson,Female,5826,1968-08-28,A+ -Elizabeth Scott,Female,5827,1998-11-19,O- -Betty Pierce,Male,5828,1989-09-07,AB- -Austin Davenport,Female,5829,1941-11-10,B+ -Tiffany Scott,Male,5830,1958-03-10,AB- -David Vazquez,Male,5831,1935-04-27,AB+ -Kyle Adams,Male,5832,1991-05-11,A- -Daniel Henderson,Male,5833,1997-08-02,O+ -Jennifer Dunn MD,Male,5835,1975-05-20,AB- -Kathryn Smith,Female,5836,1999-10-05,AB+ -Sarah Long,Female,5837,1966-09-13,AB+ -Jessica Thomas,Male,5838,1932-05-11,O+ -Lisa Myers,Male,5839,1993-03-26,A+ -Dennis Walter,Female,5840,1955-05-25,A+ -Adriana Reynolds,Male,5842,1976-08-20,A+ -Heather Lester,Male,5844,1941-04-27,B- -Allison Kelly,Female,5845,1962-04-26,A- -Stephanie Cox,Female,5846,1972-03-09,B+ -Angela Williams,Male,5847,1995-08-19,A- -Kelly Hicks,Female,5849,1999-01-11,A+ -Sierra Bowers,Male,5850,1977-09-11,O+ -Steven Brown,Male,5851,1974-10-08,B- -Pamela Shelton,Male,5852,1941-04-24,A- -Benjamin Martinez,Female,5853,1980-09-27,A+ -Isaac Thomas,Female,5854,1963-01-05,B- -Ellen Thomas,Female,5855,1961-01-27,B+ -John Avery,Female,5856,1961-06-13,O+ -Patrick Shields,Male,5857,1944-12-10,A+ -James Warner,Female,5858,1946-08-24,B+ -Dorothy Wright,Female,5859,1964-02-05,O- -Jennifer Daugherty,Female,5860,1981-07-06,B+ -Krista Sellers,Male,5861,1980-01-02,AB- -Michael Robbins,Male,5862,1963-04-16,O+ -Haley Bright,Male,5863,1973-01-30,B+ -Amanda West,Male,5865,1973-05-05,B+ -Nancy Nixon,Female,5866,1971-05-31,AB+ -Jeremiah Leblanc,Male,5867,1962-08-06,AB+ -Susan Jackson,Male,5868,1995-07-05,B+ -David White,Female,5869,1963-09-03,B+ -James Paul,Female,5870,1935-07-05,O+ -Andrew Brooks,Female,5871,1939-03-28,AB+ -Stephen Clark,Female,5872,1958-04-19,A- -Frederick Sherman,Female,5873,1995-01-01,O+ -Tiffany Gomez,Male,5874,1959-04-11,O- -Rebecca Buchanan,Female,5875,1969-10-10,O+ -Carlos Moore,Male,5876,1964-12-21,A+ -Jonathan Gonzalez,Female,5877,1933-07-13,A+ -Melanie Smith,Male,5878,1933-12-18,B- -Cindy Smith,Male,5879,1983-08-14,AB+ -Maria Duncan,Female,5880,1992-04-30,B+ -Tina Allison,Female,5881,2002-08-10,AB- -Sara Bradley,Male,5882,1995-06-15,AB+ -Michael Stevens,Female,5884,1991-06-13,A- -Darren Ramos,Male,5885,1983-07-29,O+ -Autumn Medina DDS,Female,5886,1968-09-17,AB- -William Davis,Female,5887,1967-09-01,AB- -Brianna Moore,Female,5888,1944-12-15,B+ -Mr. Gary Miller,Female,5889,1983-08-31,B+ -Sabrina Hall,Female,5890,1983-06-12,AB+ -Wendy Spears,Female,5891,1983-12-11,AB- -Matthew Lopez,Female,5892,1982-06-23,AB- -Lori Mcclain,Female,5893,1999-12-31,A+ -Albert Holder,Female,5894,1950-12-19,O- -Troy Sanchez,Male,5895,1943-06-22,B+ -Ellen Ward,Female,5896,1958-04-29,O+ -Jodi Griffin,Male,5897,1992-03-04,AB+ -Jade Turner,Female,5898,1992-03-07,B+ -Candice Rodriguez,Female,5899,1953-01-17,A+ -Patricia Bright,Male,5900,1976-12-25,A- -Helen Ward,Female,5901,1944-04-05,B+ -Joann Hendrix,Female,5902,1931-11-19,A- -Gary Grant,Female,5903,1976-04-22,B- -Tyrone Roach,Female,5904,1988-09-24,AB- -Emily Solis,Male,5905,1966-03-16,AB- -Sarah Garcia,Female,5906,1952-02-15,AB+ -Matthew Webster,Female,5907,1989-12-19,O- -Brittany Glover,Male,5908,1980-10-02,O- -Michael Young,Male,5909,1955-12-22,AB+ -Raven Dunlap,Female,5910,1946-09-08,AB+ -Pedro Stevens,Female,5912,1993-12-14,A+ -Thomas Marquez,Male,5913,2001-06-19,A- -Jason Owens,Female,5914,1987-12-06,AB+ -Austin Myers,Male,5915,1951-01-23,A- -Alexandra Cross,Female,5916,1960-05-11,B+ -Juan Randolph,Female,5917,1938-07-01,B+ -Lori Mathis,Female,5918,1936-09-06,B- -Scott Brewer,Female,5919,1986-03-07,A- -Dr. Barbara Foster,Male,5920,1949-07-04,A+ -Rachel Gibbs,Male,5921,1989-02-05,B+ -Scott Bates,Male,5922,1977-03-03,AB- -Michael Fischer,Female,5923,1968-06-01,AB- -Megan Kline,Female,5924,1969-10-19,B+ -Anna Pace,Male,5925,1931-03-23,B+ -Jonathan Sanford,Female,5926,1940-09-20,B+ -Kelly Moore,Male,5927,1973-03-23,A- -Nicole Brewer,Female,5928,1983-05-16,AB- -Selena Cooper,Female,5929,1978-03-28,AB- -Calvin Simmons,Female,5930,1948-01-14,O+ -Benjamin King,Male,5931,1930-08-15,B+ -Eric Nelson,Male,5932,1986-03-15,B- -Charles Hernandez,Female,5933,1994-07-13,B+ -Kathryn Davies,Female,5934,1960-07-13,A+ -Mark Bryant,Female,5935,1945-03-21,A+ -Samantha Baker MD,Male,5936,2002-04-19,AB- -Barbara Duran,Male,5937,1962-10-11,B+ -Christopher Shaffer,Male,5938,1930-07-06,O- -Caitlin Miller,Male,5939,1970-03-12,A+ -Daniel Pitts,Female,5940,1969-11-11,B+ -Veronica Price,Male,5941,1960-04-22,B- -Jordan Price,Male,5942,1936-12-10,AB+ -Nicholas Nash,Female,5943,1935-04-17,B+ -Darren Shea,Female,5944,1999-08-11,B- -Ryan Sanchez,Female,5945,1935-07-26,AB- -Madison Li,Female,5946,1933-06-06,AB- -Ruth Jarvis,Female,5947,1945-01-31,O+ -Kristen Branch,Male,5948,1943-11-23,A- -Heather Huffman,Female,5949,1968-01-22,A+ -Kara Beck,Male,5950,1969-10-06,A- -Darren Parker,Female,5951,1935-02-25,B+ -Christopher Taylor,Female,5952,1930-09-27,A- -Megan Short,Male,5953,1934-06-19,A+ -Joseph Martin PhD,Male,5954,1986-12-02,A+ -Steven Sutton,Male,5955,1991-09-01,B+ -Samantha Kim,Female,5956,1979-03-03,AB- -Ariel Estrada,Female,5957,1966-08-23,A+ -Nina Rich,Male,5958,1974-03-23,O- -Erica Parker,Female,5959,1960-05-07,O- -Melissa Jackson,Female,5960,1934-08-23,AB+ -John Reed,Female,5961,1983-10-12,A+ -Devin Mcbride,Male,5962,1970-07-31,O+ -Mary Long,Male,5963,1938-12-07,AB+ -Heather Schneider,Female,5964,1933-12-16,AB- -Brooke Smith,Female,5965,1992-01-03,A+ -Nicole Briggs,Female,5966,1997-11-20,O- -Debra Vazquez,Female,5968,1975-01-01,O+ -Ryan Powers DDS,Male,5969,1957-03-29,B+ -Emily Petty,Female,5970,1990-02-09,AB+ -Laurie Washington,Female,5971,1995-08-11,O+ -Alexandra Larson,Male,5972,1979-06-03,A+ -Henry Morris,Male,5974,1948-11-23,B- -Linda Neal,Male,5975,1982-06-26,O+ -Monica Lester,Male,5976,1931-12-21,O+ -Mrs. Erin Lee,Male,5977,1953-07-16,AB- -Kevin Bell,Male,5978,1948-10-08,O- -Jeremy Fernandez,Male,5979,1981-02-20,B+ -Shane Drake,Female,5980,1952-08-16,A+ -Eric Pierce,Male,5981,1969-10-03,O+ -Cynthia Jackson,Female,5982,2002-11-28,A+ -Cynthia Bright,Male,5983,2000-08-26,O- -Mr. Joshua Owen,Female,5984,2001-07-30,AB- -Brenda Johnson,Female,5985,1962-07-06,A+ -Cassandra Ryan,Female,5986,1987-02-17,A- -Edward Rodriguez,Female,5987,1968-07-19,O- -Kimberly Hardy,Male,5988,1976-10-08,O- -Melissa Collins,Female,5989,1949-10-31,B+ -Daniel Diaz,Male,5990,1954-09-10,AB+ -Amanda Hall,Male,5991,1991-01-23,AB- -Gabriel Turner,Female,5992,1975-10-24,AB- -Joshua Pennington,Male,5993,1989-07-28,B+ -Nathan Jackson,Female,5994,1963-02-17,A- -Daniel Berger,Male,5995,1996-05-27,A+ -Michael Fields,Female,5996,1975-09-13,B- -Rachel Dillon,Male,5997,1984-03-18,A- -Paige Thompson,Female,5998,1943-03-14,AB+ -Kimberly Singh,Female,5999,1960-02-14,AB- -Logan Gonzalez,Female,6000,1968-01-29,O- -Frank Fuentes,Male,6001,1984-08-07,AB- -Jonathan Taylor,Female,6002,1987-02-13,A- -Kimberly Phillips,Female,6003,1961-12-13,B- -Donna Singleton,Female,6005,1992-09-27,O+ -Christina Burns,Male,6006,1987-07-05,O+ -Tammy Mcmahon,Female,6007,1973-07-30,B+ -Edward Reed,Female,6008,1959-10-14,AB- -Michael Sims,Male,6009,1938-03-05,AB- -Rebecca Weeks,Male,6010,1952-03-18,AB+ -Kevin Roy,Male,6011,1953-03-08,AB- -Nicole Benton,Male,6012,1981-10-31,B- -Stephanie Lynch,Male,6013,1930-12-03,AB- -Kristin Blake,Male,6014,1957-10-31,A+ -Matthew Nguyen,Male,6015,1983-01-06,A- -Margaret Brown,Male,6016,1964-12-16,B+ -Teresa Friedman DVM,Female,6017,1940-11-12,B- -Hailey Johnson,Female,6018,1932-06-29,AB+ -Alex Maynard,Female,6019,1980-04-28,A+ -Hannah Fields,Female,6021,1972-10-19,A+ -Erica Stephens,Male,6022,1974-07-28,A- -John Weber,Female,6023,1938-07-27,O+ -Jessica Rogers,Female,6024,1944-11-30,B- -Dr. Jose Bartlett,Male,6025,1946-10-13,A- -Cindy Savage,Male,6026,1946-01-07,A+ -Michael Williamson,Male,6027,1986-05-15,AB+ -Nancy Ellis,Male,6028,1950-05-22,A- -Ariana Silva,Male,6029,1962-09-19,O+ -Diana Diaz,Male,6030,1953-04-29,A+ -Parker Compton,Female,6031,2002-03-19,A- -Glenda Hernandez,Male,6032,1930-11-11,B- -Elizabeth Wong,Male,6033,1962-02-19,O+ -Cesar Williams,Male,6034,1933-02-08,B- -Michelle Hernandez,Male,6035,1959-12-13,B- -Christopher Alexander,Female,6036,1988-03-17,B- -Jesse Brown,Female,6037,1997-01-15,A- -Patricia Martin,Male,6038,1972-09-05,O+ -Robert Payne,Male,6039,2001-06-13,A- -Kristen Aguirre,Female,6040,1952-11-08,A- -Sarah Reed,Male,6041,1945-04-24,A- -Jared Townsend,Female,6042,1979-07-31,A+ -Molly Keith,Female,6043,1984-01-05,AB- -Kaitlin Armstrong DDS,Male,6044,1977-04-14,O- -Brandon Hanson,Female,6045,1960-02-10,A+ -Kenneth Davis,Male,6046,1931-12-23,O+ -Philip Brown,Male,6047,1995-11-18,O- -Jacob Clark,Female,6048,1954-12-05,O- -Evan Mckinney,Female,6049,1984-01-19,O- -Brandon Lee,Male,6050,1932-05-20,AB- -Valerie Riley,Female,6051,1948-06-26,A- -Eric Duncan,Male,6052,1976-03-21,B+ -Kathleen Johnson DDS,Female,6054,1934-10-23,AB+ -Timothy Reynolds,Female,6055,1933-01-22,O+ -Amy Moore MD,Female,6056,1961-10-06,B+ -Jessica Perez,Male,6057,1937-09-29,AB- -Javier Johnson,Female,6058,1971-01-22,AB- -Nicole Mccoy,Female,6059,1979-05-15,AB+ -Leslie Jennings,Female,6060,1967-12-31,O- -Nicholas Kemp,Female,6061,1949-02-22,A- -Laurie White,Female,6062,1967-09-22,AB+ -Lisa Diaz,Male,6063,1948-07-16,B+ -Briana Johnson,Male,6064,1975-04-01,B+ -Charles Singh,Female,6066,1982-06-02,AB+ -Randy Rodriguez,Female,6067,1939-05-29,AB- -Brent Young,Male,6068,1948-02-18,O+ -Steve Moody,Male,6069,1965-03-10,B- -Linda Barker,Male,6070,1970-07-16,A- -Hayley Perry,Female,6071,1959-02-01,B+ -Michael Lindsey,Male,6072,1994-03-19,B+ -Jonathan Miranda,Male,6073,1987-03-19,AB+ -Terry Cooper,Female,6074,1935-01-23,A- -Suzanne Smith,Male,6075,1937-05-20,AB+ -Nicholas Vasquez,Male,6076,1934-09-14,O- -Michelle Coleman,Female,6077,1983-04-09,A- -Michele Burns,Female,6078,1955-05-09,O- -Brendan Bailey,Female,6079,1937-08-18,B+ -Reginald Rodriguez,Female,6080,1968-10-02,AB- -Robert Rose,Male,6081,1966-09-18,O- -Melanie George,Male,6082,1940-05-19,A- -Margaret Winters,Male,6083,2000-10-24,A+ -Gregory Williams,Female,6084,1940-08-07,A- -Bruce Boyle,Male,6085,1934-12-12,AB+ -Jonathan Mitchell,Male,6086,1978-12-23,O- -John Reynolds,Female,6087,1983-12-01,O+ -Joshua Lawrence DDS,Female,6088,1994-05-06,A+ -Ricky Parker,Female,6089,1966-06-05,AB- -Danny Matthews,Female,6090,1988-09-05,B- -Amber Day,Female,6091,1997-06-25,AB+ -Stephanie Murray,Male,6092,1979-06-27,AB+ -Leslie Reyes,Male,6094,1972-07-28,O+ -Deborah Castro,Female,6095,2000-12-19,B- -Stephanie Villegas,Female,6096,1939-01-17,B+ -Katie Green,Male,6097,1983-05-20,B- -Raymond Hudson,Female,6098,1973-12-22,AB- -Ashley Vaughn,Female,6099,1999-09-14,AB- -Megan Jones,Female,6100,1996-05-08,A+ -Robyn Anthony,Female,6101,1971-08-12,B+ -Eric Tapia,Female,6102,1992-06-04,AB+ -Joseph Ayala,Female,6103,1978-12-23,O- -Taylor Lopez,Female,6104,1959-03-05,AB- -Richard Burke,Female,6105,1954-06-08,O+ -Linda Chung,Male,6106,1957-03-20,O+ -Dana Wiggins,Male,6107,1940-09-29,O+ -Brian Wallace,Male,6109,1998-06-12,A- -Jennifer Flores,Male,6110,1956-10-14,B+ -Dylan Alvarez,Male,6111,1942-04-13,B+ -Wesley Brown,Male,6113,1964-07-30,AB- -Cody Vaughn,Male,6114,1966-03-26,AB- -Whitney Grant,Female,6115,1965-04-28,O+ -Michelle Wade,Female,6116,1997-01-13,B+ -Thomas Porter,Female,6117,1998-08-20,B+ -Heather Norris,Female,6119,1930-07-11,AB- -Melissa Davis,Female,6120,1998-08-26,A- -Bryan Dougherty,Female,6121,1943-06-19,O- -Cameron Willis,Male,6122,1945-12-19,O- -Anthony Mcmillan,Female,6123,2000-09-22,A+ -Kim Adams,Female,6124,1957-10-26,B+ -Jasmine Howard,Male,6125,1986-09-10,AB+ -Jessica Villarreal,Male,6126,1967-06-18,O- -Desiree Brooks,Female,6127,1994-01-08,A+ -Michelle Thompson,Male,6128,1999-07-10,B- -Holly Fletcher,Male,6129,1994-10-18,AB+ -Jacqueline Jackson,Male,6130,2001-04-27,B+ -Holly Sandoval,Male,6131,2000-04-05,O- -Danielle Shaw,Female,6132,1963-12-05,A- -Theresa Anderson,Female,6133,1935-02-18,B- -Michael Yu PhD,Female,6134,1954-10-24,A+ -Christopher Washington,Female,6135,1943-01-16,O- -Emily Reeves,Male,6136,1958-01-08,B+ -Scott Brown,Female,6137,1998-01-12,O- -Carol Campos,Male,6138,1955-04-01,AB- -Michelle Cole,Female,6139,1961-03-29,B- -Ryan Jenkins,Male,6140,1969-10-02,O- -Matthew Smith,Male,6141,1932-11-17,O+ -Micheal Allen,Female,6142,1963-06-22,A- -Theresa Lee,Male,6143,1956-09-26,AB- -Stefanie Vance,Male,6144,1961-03-01,AB- -Devin Lara,Female,6145,1964-06-11,O- -Diane Reid,Female,6146,1995-07-01,A- -Katherine Webster,Male,6147,1995-02-24,AB- -Emily Terry,Male,6148,1962-10-29,AB+ -Courtney Wilson,Male,6149,1992-02-29,B- -Jamie Murphy,Female,6150,1962-09-09,AB+ -Jose Powell,Female,6151,1980-08-15,A+ -Zoe Henderson,Female,6152,1930-11-04,AB+ -Jamie Jennings,Female,6153,1996-01-16,A- -Gary Casey,Female,6154,1939-03-14,O+ -Jessica Orozco,Male,6155,1938-09-12,AB- -Heather Hernandez,Female,6156,1933-06-05,A- -Brian Duncan,Male,6157,1944-09-10,AB- -Charles Poole,Female,6158,1979-01-05,B+ -Phyllis Arellano,Male,6159,1947-01-18,O+ -Sarah Wang,Female,6160,1989-05-20,AB- -Briana Bray,Male,6162,2001-01-22,AB+ -Kimberly Tanner,Female,6163,1990-12-05,B+ -Terri Solomon,Female,6164,1996-11-13,B+ -Christina Duffy,Male,6165,1969-03-27,A+ -Susan Griffin,Male,6166,1943-05-24,B+ -Jennifer Grant,Male,6167,1943-09-02,B+ -Stacy Villa,Male,6168,1935-05-16,O- -Jessica Sullivan,Male,6169,1964-03-20,O+ -Lindsey Wagner,Male,6170,1982-09-12,AB+ -Brittney Brady,Female,6171,1959-09-14,A- -Kristine Vega,Male,6172,1992-12-08,AB+ -Russell Chase,Female,6173,1966-04-17,AB+ -Daisy Warner,Female,6174,1942-07-04,O- -Elizabeth Reed,Male,6175,1974-01-09,B- -Randy Steele,Female,6176,1947-11-01,AB- -Vanessa Dixon,Male,6177,1971-09-18,AB- -Brian Guerrero,Female,6178,1985-10-28,A- -Matthew Gutierrez,Male,6179,1962-03-09,B+ -Jessica Adams,Female,6180,1999-10-24,A+ -Philip Wright,Female,6181,1960-07-13,A- -Shelley Fleming,Female,6182,1975-05-12,B- -Haley Hancock,Male,6183,1996-02-03,AB- -Shane Joseph III,Female,6184,1939-03-13,A+ -Jessica Brown,Male,6185,1992-12-20,A- -Gregory Duncan,Male,6186,1956-04-04,A+ -Melissa Kirby,Male,6187,1993-06-20,AB+ -Earl Lee,Female,6188,1960-02-01,O+ -Terri Guzman,Female,6189,1998-10-03,AB+ -Jose Contreras,Male,6190,1951-01-09,O- -Aaron Vargas,Female,6191,1945-08-08,B+ -Robert Deleon,Female,6192,1933-06-27,AB- -James Vazquez,Male,6193,1993-01-27,A+ -Dr. Brittany Hill,Male,6194,1960-10-11,A- -Debra King,Male,6195,1977-11-10,B+ -Raymond Hays,Female,6196,1956-01-02,O+ -Makayla Mcguire,Female,6197,1954-12-08,A- -Lindsay Williamson,Female,6198,1960-11-12,AB- -Mary Cole,Female,6199,1951-11-29,A+ -Marcus Sanders,Female,6200,1941-08-18,A+ -Sherry Walters,Female,6201,1955-03-31,AB+ -Susan Raymond,Male,6202,1989-05-29,O+ -Brenda Miller,Male,6203,2002-09-13,O+ -Jennifer Orozco,Male,6205,1984-01-16,AB- -Brenda Perry,Female,6206,1959-04-22,A+ -Joel Robertson,Female,6207,1972-05-12,B+ -Joshua Howard,Female,6208,1975-08-07,O+ -Kelsey Ward,Male,6209,1978-02-08,O+ -Thomas Carlson,Female,6210,1963-12-06,A- -David Dennis,Male,6211,1962-09-26,AB- -Ian Wilson,Male,6212,1972-10-28,AB+ -Marvin Watson,Male,6213,1968-04-29,A- -Thomas Phillips,Female,6214,1947-04-07,A- -John Stark,Male,6215,1981-06-04,B- -Gabrielle Mcclain,Male,6216,1964-10-30,O- -Charles Baldwin,Female,6217,1949-02-25,B- -April Harrison,Male,6218,1964-01-10,O+ -Dr. Christopher Williams,Male,6219,1967-09-26,A+ -Richard Williams,Female,6220,1994-11-04,O- -Adam Boyd,Female,6221,1986-04-23,O- -Rebecca Bright,Male,6222,2001-12-21,A+ -Paul Golden,Female,6223,1936-02-09,O- -John Garcia,Male,6224,1947-10-30,A+ -Andrew Torres,Male,6225,1975-03-18,O- -Dorothy Delgado,Female,6226,1955-11-27,A- -Aaron Coleman,Male,6227,1984-11-29,B+ -Kathryn Glenn,Male,6228,2001-09-02,AB- -Brian Brock,Female,6230,1943-01-18,AB- -Todd Guerrero,Female,6231,1985-09-23,B- -Christopher Nguyen MD,Male,6232,1995-07-08,A- -Crystal Koch,Male,6233,1966-05-04,O- -Timothy Brown,Female,6234,1945-03-15,AB+ -Julie Cooper,Female,6235,1931-09-20,A+ -Lacey Graham,Male,6236,1962-10-29,A- -Julie Trujillo,Male,6237,1967-09-24,O- -Ann Johnson,Male,6238,1948-01-16,AB- -James Stuart,Female,6239,1935-08-07,AB- -Joanne Townsend,Male,6240,1966-01-23,A+ -Dustin Nelson,Female,6241,1981-04-08,AB+ -Michael Johnson,Male,6242,1946-02-10,O- -Jessica Berg,Female,6243,1952-05-30,O- -Phyllis Bell,Male,6244,1930-09-07,AB+ -David Atkinson,Male,6245,1982-11-13,AB+ -Ashley Jones PhD,Male,6246,1988-08-31,AB+ -David Pittman,Male,6247,1977-07-11,AB- -Kristen Turner,Male,6248,2000-11-30,A+ -Heather Ferguson,Female,6249,1994-07-20,A- -Mrs. Ashley Cook,Female,6250,1955-02-14,B+ -Maurice Lyons,Male,6251,1999-09-20,AB+ -William Martin,Male,6252,1974-07-09,A+ -Douglas Bradley,Female,6253,1937-04-26,B- -Marie Bowen,Male,6254,1949-12-06,O- -Heidi Anderson,Female,6255,1995-06-24,O- -Anna Schultz,Male,6256,2000-12-01,B+ -Daniel Jones,Female,6257,1953-09-19,B+ -Monica Davis,Female,6258,1935-06-11,O+ -Tiffany Vaughan,Male,6259,1975-02-08,B- -Mary Lee,Male,6260,1998-09-26,A- -Natasha Miller,Female,6261,1965-06-14,B+ -Frederick Rodriguez,Female,6262,1985-12-21,AB+ -Tammy Maldonado,Female,6263,1965-08-31,AB+ -Cheryl Sweeney,Male,6264,1937-08-05,A- -Nicholas Morrison,Male,6265,1966-01-11,AB- -Michelle Parks,Male,6266,1957-01-17,B- -Tammy Benson DVM,Female,6267,1997-10-23,AB+ -Katherine Curry,Male,6268,1957-11-13,B+ -Joan White,Female,6269,1995-02-22,O+ -Wendy Taylor,Male,6270,1958-05-31,A+ -John Black,Male,6271,1987-01-06,O- -William Miller,Female,6272,1950-02-12,B- -Laura Sanchez,Female,6273,1932-10-05,O- -James Powell,Female,6274,1940-05-11,A+ -William Gould,Male,6275,1993-01-20,B- -Lisa Tran,Male,6276,1941-10-08,B+ -Jonathan Garcia,Female,6277,1942-10-13,A+ -Mark Mclean,Female,6278,1986-08-06,AB+ -Angel Ross,Male,6279,1935-08-15,A- -Amy Harris,Female,6280,1991-04-24,AB+ -Jennifer Horn,Female,6281,1934-09-13,B+ -Brian Martin,Female,6282,1930-11-07,A- -Lauren Ortiz,Male,6283,1969-05-27,AB+ -Connor Brown,Female,6284,1987-04-14,A+ -Charles Patel,Female,6285,1933-06-14,A+ -Gregory Salazar,Female,6286,1966-01-09,A+ -Joshua Callahan,Male,6287,1985-08-16,O- -Megan Bailey,Male,6288,1961-05-18,B+ -Megan Allison,Male,6289,1976-06-16,A+ -Margaret Bauer,Female,6290,1995-09-17,AB+ -James Daniel,Male,6291,1998-04-09,O+ -Janet Johnson,Female,6292,1968-05-12,B+ -Elizabeth Kane,Male,6293,1937-11-06,A+ -Scott Bartlett DVM,Female,6294,1969-05-01,O+ -Erica Cortez,Male,6295,1946-02-24,A- -Barbara Love,Female,6296,1980-05-13,AB+ -Stephen Cook,Male,6297,1947-02-12,A+ -Wayne Simmons,Female,6298,1943-07-11,O- -Edward White,Male,6299,1940-12-20,O- -Erica Beasley DVM,Male,6300,1934-06-14,A- -Linda Young,Female,6301,1959-12-31,O+ -Heather Myers,Male,6302,1977-04-18,AB- -Lisa Lopez,Female,6304,1946-08-23,O- -Traci Carpenter,Female,6305,1994-02-14,B+ -Mary Williamson,Male,6306,1954-06-07,O- -Alvin Robbins,Female,6307,1940-11-05,O- -Tyler Hoover,Male,6308,1981-09-18,AB+ -Brandi Moody,Male,6309,1954-02-10,O- -Karen Bryant DDS,Female,6310,1985-04-12,B- -Ashley Weeks,Female,6311,1991-07-24,A+ -Michael Martinez,Female,6312,1979-07-26,A- -Jacqueline Hanson,Female,6313,1967-02-14,O- -Lucas Hernandez,Male,6314,1948-04-22,AB- -Antonio Gonzales,Female,6315,1934-05-07,B+ -Bryan Johnson,Female,6316,1994-01-09,AB- -Beth Palmer,Male,6317,1956-11-03,O- -Mikayla Baker,Female,6318,1977-04-24,O- -Joseph Flores,Male,6319,1990-01-28,B- -Rhonda King,Female,6320,1998-01-17,O- -Donald Harris,Female,6321,1987-08-01,O- -Mr. Kenneth Long,Male,6322,2001-10-07,A+ -Denise Tanner,Male,6323,1958-05-04,AB- -Sharon Richardson,Male,6324,1981-07-08,B- -Melissa Bruce,Female,6325,1985-07-19,AB- -Jesse Hicks,Female,6326,1961-05-12,B- -Barbara Potter,Female,6327,1973-05-24,AB- -Ana Powell,Female,6328,1948-09-20,O- -Kevin Dean,Female,6329,1933-12-20,AB- -Courtney Morgan,Female,6330,1987-03-07,AB- -Hunter Miller,Female,6331,1944-12-07,B- -Matthew Bryant,Female,6332,1955-10-21,A- -Joseph Hughes,Male,6333,1941-04-10,O+ -Kristin Harrington,Female,6334,1954-04-14,B- -Pamela Cunningham,Female,6335,1959-09-16,B- -Margaret Moore,Female,6336,1980-05-30,B- -Andrew Bailey,Male,6337,1969-04-09,AB+ -Ray Patterson,Female,6338,1948-09-28,A- -Jimmy Moreno,Male,6339,1985-02-23,AB+ -Mr. Gary Lynn,Male,6340,1991-01-09,AB+ -Zachary Yates,Male,6341,1942-08-30,B- -Jillian Gregory,Male,6342,2002-11-12,O+ -Kevin Chang,Male,6343,1954-03-24,B- -Patrick Payne,Male,6344,1975-04-24,O- -Mary Arellano,Male,6345,1965-12-19,O+ -Thomas Ortiz,Male,6346,1987-06-06,AB+ -Taylor Dyer,Female,6347,1931-08-13,B+ -Ashley Brock MD,Male,6348,1987-03-31,AB- -Jose Lewis,Female,6349,1982-08-01,AB- -Carmen Harris,Male,6350,1947-10-28,A- -Antonio Evans,Female,6351,1951-01-24,B+ -Gwendolyn Gordon,Female,6352,1955-11-20,A+ -Scott Howard,Female,6353,1975-01-20,A- -Mark Hall,Male,6354,1962-01-21,O+ -Yolanda Rodriguez,Female,6355,1965-06-08,AB+ -Thomas Wood,Male,6356,1984-08-29,O+ -Angela Luna,Female,6357,1996-08-28,O+ -John Haynes,Male,6358,1975-08-05,AB- -David Graham,Male,6359,1957-04-17,B- -Christopher Brown,Male,6360,1936-09-28,O- -Cynthia Hernandez,Female,6361,1955-11-26,A+ -Elizabeth Larson,Male,6362,1932-10-12,AB+ -Julia Hill,Female,6363,1955-05-25,O+ -Anthony Shah,Female,6364,1966-05-01,A+ -Bonnie Randall,Male,6365,1996-09-19,O+ -Dr. Lisa Leblanc,Male,6366,1931-02-11,B+ -Anita Davis,Female,6367,1950-03-21,AB- -Lisa Stein,Female,6368,1991-06-03,O- -Shawn Gould,Female,6369,1991-10-01,AB- -Carol Warner,Male,6371,1996-09-17,A+ -Jonathan Hatfield,Male,6372,1960-11-07,AB+ -Teresa Mendoza,Female,6373,1977-07-22,O+ -Jeffrey Brown,Female,6374,1962-04-18,O- -Matthew Cox,Female,6375,1942-04-13,B+ -Alexander Logan,Male,6376,1954-05-16,AB- -Heather Chapman,Female,6377,1937-03-03,B+ -Karen Taylor,Female,6378,1992-01-29,A+ -Joseph Mathews,Female,6379,1956-04-17,AB- -Michael Garza,Male,6380,1948-12-20,O+ -Gregory Mahoney,Male,6381,1944-09-12,O+ -Kari Morris,Female,6382,1942-08-27,B+ -Jessica Mays,Female,6383,2001-05-09,AB+ -Cameron Holt,Male,6384,1970-04-20,O- -Angela Evans,Male,6385,1960-06-18,B- -Jamie Frederick,Male,6386,1950-09-19,AB- -John Meyers,Female,6387,1963-09-11,O+ -Melissa Clark,Female,6388,1987-08-24,A+ -Alex Vargas,Female,6389,1995-10-29,AB- -Daniel Cole,Male,6390,1971-04-22,AB+ -Albert Cohen,Female,6391,1977-08-09,AB+ -Scott Graham,Female,6392,1995-05-28,O+ -Roy Carter,Male,6393,1981-08-11,O+ -Jay Doyle,Male,6394,2002-08-05,B+ -Veronica Bishop,Male,6395,1980-03-02,O+ -Vanessa Foster,Female,6396,1979-05-03,B+ -Maria Carter,Female,6397,1957-01-29,A- -Dalton Craig,Male,6398,1952-03-01,B- -Diane Paul,Female,6399,1992-01-05,O+ -John Bartlett,Female,6400,1964-10-28,AB- -Sharon Fry,Female,6401,1958-02-26,AB- -Katelyn Wilson,Male,6402,1980-01-18,B+ -Brandon Farmer,Female,6403,1968-12-18,A- -Daniel Scott,Female,6404,1992-09-20,A- -Penny Garcia,Female,6405,1970-03-30,O- -Richard Solomon,Female,6406,1977-10-18,A+ -Stephanie Price,Male,6408,1944-03-12,O+ -Andrea Cunningham,Male,6409,1936-07-30,B+ -Joshua Bailey,Female,6411,1943-05-28,AB- -Michael Adams,Male,6412,1994-12-06,A- -Carrie Hoover,Male,6413,1961-03-23,AB- -Matthew Houston,Female,6414,1971-07-06,AB- -Raymond Walker,Female,6415,1955-08-01,A- -Shane Palmer,Male,6416,1959-02-15,B- -Catherine Harris,Female,6417,1935-05-11,A- -Matthew Little,Female,6418,1949-03-25,A- -Brendan Shaffer,Male,6419,1968-07-02,A+ -Jesse Ayala,Male,6420,1969-03-30,B+ -Michael Thornton,Male,6421,1940-09-12,B+ -Miranda Smith,Female,6422,1932-03-18,A- -Phyllis Kim,Female,6423,1997-10-18,AB+ -Samantha Young,Male,6424,1968-06-01,B+ -Gregory Taylor,Female,6425,1943-03-21,B+ -Laura Jones,Male,6426,1967-07-05,B+ -Claire Cooper,Female,6427,1942-05-22,A- -Jeffery Johnson,Male,6428,1971-08-07,AB- -Ashley Obrien,Male,6429,2000-11-12,O+ -Steven Miller,Male,6430,1974-06-02,AB- -Donald Church,Female,6431,1981-02-10,A+ -Travis Rodriguez,Female,6432,1944-07-19,AB+ -Jacqueline Smith,Male,6433,1967-03-26,A- -Darryl Garrett,Female,6434,1965-10-02,B- -Alicia Howard,Female,6435,1976-12-06,O- -Heather Harris,Male,6437,1943-05-20,A- -Anthony Cole,Female,6438,1940-07-21,O+ -Barbara Patel,Male,6439,1964-02-10,O- -William Hall,Female,6440,1969-10-19,B- -Felicia Nichols,Female,6441,1939-09-29,A+ -Robert Cameron,Male,6442,1956-10-03,A+ -Jesse Cochran,Female,6443,1977-06-28,B- -Carol Yates,Male,6444,1985-05-23,AB- -Jim Green,Female,6445,1993-04-10,B- -Jonathan Alexander,Male,6446,1939-10-16,B+ -Alyssa Olsen,Male,6447,1999-09-07,B+ -Tammy Flores,Female,6448,1936-08-15,A- -Ronald Rodriguez,Male,6449,1941-06-30,O+ -Ashley Vincent,Male,6450,1932-09-28,B+ -Lauren Morris,Male,6451,1989-03-20,AB+ -Rachel Smith,Male,6452,1949-06-29,A- -Jennifer Lucas,Female,6453,1985-12-28,A- -Debra Harmon,Female,6454,1982-08-25,A- -Megan Perez MD,Female,6455,1956-06-26,O- -Anthony Williams,Female,6457,1999-02-01,O- -Mark Shah,Male,6458,1944-07-22,A+ -Megan Mcdonald,Male,6459,1974-06-23,A- -Julia Estrada,Male,6460,1976-01-06,AB- -Christina Ellis,Male,6461,1993-03-30,B+ -Matthew Walsh,Male,6462,1962-07-05,A+ -Frank Brewer,Female,6463,1941-09-06,O+ -Roger Lopez,Male,6464,1950-09-02,B- -Jason Smith,Female,6465,1992-02-25,O- -Cameron Johnson,Female,6466,1982-04-12,A- -Jim Rodriguez,Male,6467,1998-07-11,O+ -Jason Williams,Male,6468,1958-12-29,A+ -Colton Williams DDS,Female,6469,1996-12-13,A+ -Patrick Stevens,Female,6470,2002-09-11,O- -Monique Harris,Female,6472,1934-07-16,A+ -Melissa Benton,Male,6473,1981-10-25,AB- -David Woods,Female,6474,1948-07-08,A+ -Molly Wong,Male,6475,1983-04-12,AB+ -Carrie Simmons,Male,6476,1938-08-31,B+ -James Nguyen,Male,6477,1980-06-24,B- -Kristina Fuentes,Male,6478,1953-03-20,A+ -Peter Allen,Female,6479,1945-09-16,B+ -Erin Martinez,Female,6480,1983-09-01,B+ -Ronnie Padilla,Male,6481,1978-10-27,AB+ -Joseph Fisher,Male,6482,1946-06-15,O+ -Dawn Wilson,Male,6483,1976-07-09,A+ -Steven Shaw,Male,6484,1942-06-19,AB- -Mr. Craig Richards,Male,6485,1979-09-09,O+ -Darrell Rice,Female,6486,1955-10-14,B+ -Rebecca Gilbert,Female,6487,2000-09-01,B+ -Joshua Watkins,Female,6488,1955-04-01,A- -Courtney Stokes,Male,6489,1937-04-25,A+ -Ashley Glover,Female,6490,1947-11-07,O- -Mark Morgan,Female,6491,1940-11-06,AB+ -Matthew Cannon,Male,6492,1964-11-12,AB+ -Albert Riley,Male,6493,1965-12-05,O- -Robert Torres,Female,6494,1983-07-23,B- -Teresa Martin,Female,6496,1940-03-11,B+ -Theresa Woods,Male,6497,1943-06-08,A- -Jacqueline Kennedy,Male,6498,1949-11-20,AB- -Kevin Steele,Female,6499,1967-07-05,AB+ -Douglas Hanson,Male,6500,1988-09-11,O+ -Jason Hampton,Female,6501,2001-04-29,B+ -Tracy Webb,Female,6502,1960-05-11,AB- -Xavier Dawson,Female,6503,1932-03-19,AB+ -Courtney Warner,Female,6504,1955-02-09,A- -Sandra Cline,Female,6505,1974-07-09,B- -Larry Jensen,Female,6506,1976-11-04,A- -Nicholas Fields,Female,6507,1959-04-12,O+ -Linda White,Female,6508,1951-02-01,A- -Anthony Steele,Male,6509,1978-03-10,AB- -Paul Carter,Female,6510,1985-12-13,B+ -Miss Melissa Ward,Male,6511,1980-11-15,O+ -Adam Haynes,Male,6512,1968-11-08,B+ -Angela Rodriguez,Female,6513,1982-07-17,O- -Michelle Herrera,Male,6514,1999-06-02,A+ -Kathy Freeman,Male,6515,1977-07-09,O- -Daniel Klein,Male,6516,1990-04-14,AB- -Reginald Kelley,Male,6517,1967-07-10,A+ -Michael Miles,Male,6518,1995-05-07,O- -Vicki Wilson,Male,6519,1935-10-25,A+ -Theresa Taylor,Male,6520,1998-12-04,AB+ -Kathryn Avery,Male,6521,1961-07-30,A- -Matthew Green,Female,6522,1975-06-22,O+ -John Martinez,Male,6523,1969-07-23,A+ -Stephanie Lopez,Male,6524,1969-12-08,AB+ -Olivia Mccarthy,Female,6525,1999-08-03,A- -Dr. Sherry Taylor,Female,6526,1934-12-20,A- -Amanda English,Female,6527,1965-08-06,B- -Heather Vasquez,Male,6528,1977-11-20,B+ -Jessica Roberts,Female,6529,1975-03-14,O- -Lisa Ramos,Female,6530,1983-09-30,B- -Jessica Campos,Male,6531,1966-08-20,B+ -Charles King,Male,6532,1972-03-07,B+ -Lindsay Garner,Male,6533,1938-01-10,AB- -Eric Lewis,Female,6534,1967-02-23,AB+ -Tamara Smith,Male,6535,1968-06-08,B- -Joseph Stevens,Female,6536,1963-09-22,B- -Melissa Anderson,Male,6538,1938-02-19,B+ -Albert Perkins,Male,6539,1935-07-11,A- -Cynthia Butler,Female,6540,1995-02-28,AB+ -Helen Mclaughlin,Male,6541,1936-08-12,A- -Becky Kelley,Male,6542,1983-05-03,O+ -Sherry Sanchez,Male,6543,1934-05-29,A+ -Jennifer Peterson,Female,6544,1931-12-19,AB- -Randy Smith,Female,6545,1984-08-10,AB- -Derek Sanchez,Male,6546,2000-01-26,O- -Steven Gray,Male,6547,1964-09-01,A- -Jasmine Hardy,Male,6548,1948-07-27,A+ -Gail Moore PhD,Female,6549,2002-08-27,B+ -Jeremy Adkins,Male,6550,1932-11-14,O- -John Jensen,Male,6551,2001-01-01,AB- -Joseph Simpson,Female,6552,1961-10-23,A+ -Dr. Kenneth Kirby,Female,6553,1952-09-29,B- -Megan Whitehead,Female,6554,1951-08-24,O+ -Derek Austin,Male,6555,1957-05-12,B+ -Amanda Pitts,Male,6556,1958-04-22,B- -Cody Bell,Female,6557,1945-04-10,O+ -Carla Young,Female,6558,1967-11-17,B+ -Steve Hansen,Female,6559,1979-04-18,A- -Kim Porter,Female,6560,1947-12-06,AB+ -Ernest Ellis,Male,6561,1950-03-18,O- -Dana Cooper,Female,6562,1987-12-12,O- -Bruce Hernandez,Female,6563,1985-03-29,AB+ -Robin Fisher,Female,6564,1938-01-20,A+ -Michael Maldonado,Male,6565,1945-08-05,AB+ -Scott Foster,Male,6566,1947-07-12,A- -Amanda Boyd,Female,6567,1971-07-24,AB- -Brandon Larson,Female,6568,1969-07-31,AB+ -Wayne Alexander,Female,6569,1965-11-10,O+ -Angela Parker,Female,6570,1999-12-18,AB- -Amanda Fowler,Female,6571,1946-12-20,AB+ -Ryan Ward,Female,6572,1944-12-03,O- -Derek Lloyd,Female,6573,1999-06-07,B- -Lauren Good,Male,6574,1997-12-11,O+ -Kathy Chapman,Male,6575,1990-12-10,A- -Steven Morales,Male,6576,1979-02-10,O+ -Brandon Kirk,Female,6577,1977-08-18,B+ -Joshua Bruce,Female,6578,1952-12-09,A+ -Angela Warren,Female,6579,1935-02-25,B- -Sherry Bauer,Male,6580,1948-08-13,O+ -Brian Chen,Female,6581,1969-12-19,B+ -Christopher Newman,Male,6582,1967-06-11,AB+ -Scott Wilson,Female,6583,1942-07-23,O+ -Ronald Potter,Female,6585,1998-06-19,O+ -Jenny Douglas,Male,6586,1953-01-30,O+ -Sabrina Gonzales,Female,6587,1992-07-05,A+ -Ann Fisher,Female,6588,1936-06-03,O+ -Blake Moyer,Male,6589,1975-01-24,O+ -Jacob Atkins,Male,6590,1956-02-22,A+ -David Simpson,Female,6591,1946-02-03,B+ -Kyle Russell,Female,6592,1948-07-30,AB- -Debra Hill,Female,6593,1973-05-08,B- -Charles Lewis,Female,6594,1943-06-24,B+ -Amanda Kelley,Male,6595,1997-01-03,A- -Teresa Brown,Female,6596,1981-03-28,AB- -Tammy Cruz,Female,6597,1942-10-31,O- -Allison Elliott,Male,6598,1969-06-12,A+ -Mike Garcia,Male,6599,1980-01-25,A+ -Monica Collins,Male,6600,1963-06-02,O+ -Lauren Castaneda,Male,6601,1987-08-24,O+ -Ronald Richardson,Male,6602,1994-06-01,A- -Mary Sanders,Male,6603,1966-01-31,O- -Dana Nguyen,Female,6604,1980-06-30,O+ -Trevor Mckenzie,Female,6606,1975-03-30,AB+ -Andrea Lutz,Male,6607,1979-10-04,O+ -Jordan Berg,Female,6608,1930-01-17,O+ -Manuel Moore,Female,6610,1966-08-14,AB+ -Brian Montgomery,Male,6611,1976-02-17,O- -Adam Espinoza,Male,6612,1987-02-06,AB+ -Rachel Taylor DDS,Male,6613,1979-11-11,A+ -Brandon Hart,Female,6614,1998-09-16,AB+ -Justin Thornton,Female,6615,1946-04-23,B- -John Walker,Male,6616,1975-02-07,A+ -William Barber,Female,6617,1943-03-09,O+ -Angela Knox MD,Male,6618,1982-08-31,A- -Caleb Stevens,Female,6619,1937-10-14,A+ -Kimberly Hunt,Male,6620,2002-06-12,O- -Devin Cantu,Male,6621,1973-09-24,O- -Katie Hill,Female,6622,1999-10-27,AB+ -William Hicks,Female,6623,1992-10-09,A+ -Emily Harrington,Female,6624,1991-01-06,O+ -Jerry Clarke,Female,6625,1977-07-06,O- -Kelsey Wagner,Male,6626,1932-12-30,AB- -James Woodard,Male,6627,1946-10-08,O+ -Marie West,Male,6628,1994-12-22,AB- -Kathy Campbell,Female,6629,1983-08-10,B- -Joshua James,Female,6630,1933-11-05,AB- -Molly Davis,Female,6631,1993-11-10,B+ -Vanessa Green,Male,6632,1986-08-09,O- -Penny House,Male,6633,1940-11-26,AB+ -Brian Goodman,Female,6634,1964-04-07,B- -Eric Hernandez,Male,6635,1973-03-26,A+ -George Bauer,Female,6637,1963-06-02,O+ -Drew Rivera,Female,6638,1990-01-25,O- -Tammy Henry,Male,6639,1996-08-20,B- -Tyler Crane,Male,6641,1964-11-26,B- -Mary Marquez MD,Female,6642,1987-10-06,B+ -Latasha Briggs,Female,6643,1938-06-20,O- -Kristin Valencia,Female,6644,1986-03-31,A+ -Jesse Anderson,Male,6645,1992-02-17,A+ -Gary Cole,Male,6646,2002-12-19,AB+ -Jamie Wade,Female,6647,1995-05-02,A- -Lisa Keller,Male,6648,1998-01-24,AB- -Troy Rodgers,Female,6649,1968-04-02,A+ -Jacob Snow,Male,6650,1970-01-07,B+ -Nicholas Edwards,Male,6651,1943-07-05,AB+ -Kelly Perry,Male,6652,1943-06-28,AB- -Troy Gomez,Male,6653,2000-07-15,B- -Mr. Kenneth Reynolds,Male,6654,1940-11-13,O- -Debra Reed,Male,6655,1938-02-13,A+ -Patrick Brock,Female,6656,1941-10-29,AB+ -Deborah Watson,Female,6657,1954-07-29,B- -Emily Hodges,Male,6658,1949-06-18,A+ -Anthony Wood,Female,6659,1955-01-11,O+ -Scott Keith,Female,6660,1985-08-23,A- -Robert Blackwell,Male,6661,1974-12-24,B- -Marissa Miller,Male,6662,1934-12-16,B+ -Erika Smith,Male,6664,1987-05-12,B+ -Todd Taylor,Male,6665,1958-02-16,A+ -Amanda Cook,Female,6666,1954-09-13,B+ -Christina Matthews,Female,6667,1980-02-01,B- -Kristen Webb,Female,6668,1947-06-05,O- -Ashley Johnson,Female,6669,1937-01-25,O- -Jeffrey Williams,Male,6670,1931-11-23,A- -Tamara Perez,Male,6671,1932-07-20,O- -Erika Cruz,Male,6672,1965-12-11,AB- -Kendra Wallace,Male,6673,1996-07-07,O+ -Tammy Fox,Female,6674,1968-12-13,O- -Jeremy Richard,Male,6675,1967-12-14,B+ -Anna Arnold,Female,6676,1972-05-15,O+ -Pamela Long,Male,6677,1992-05-01,O- -Douglas Cook,Male,6678,1939-04-30,AB- -Rodney Giles,Female,6679,1952-10-31,B+ -Austin Travis,Female,6680,1977-09-07,B- -Timothy West,Male,6681,1978-06-13,A+ -Emily Bishop,Female,6682,1953-06-28,A+ -Zachary Brown,Male,6683,1938-07-19,O- -Bryan Haynes,Female,6684,1979-12-27,A+ -Henry Fleming,Female,6685,1999-10-17,O- -Heather Palmer,Female,6686,2002-06-06,O- -Jonathan Brady,Male,6687,1993-06-04,B+ -Thomas Sellers,Male,6688,1973-08-29,A- -Don Evans,Male,6689,1940-04-06,AB+ -Dan Nash,Male,6690,1930-10-05,AB+ -Christina Barajas,Female,6691,2002-09-13,A- -Sierra Patton,Female,6692,1979-12-13,AB+ -Sandra Cunningham,Female,6693,1961-08-29,O+ -Sabrina Fox,Male,6694,1991-02-03,AB+ -Barbara Robertson,Male,6695,1948-08-06,O- -Jeanette Johnson,Male,6696,1987-10-06,AB- -Renee Neal,Female,6697,1968-02-09,AB- -Daniel Young,Male,6698,1958-05-28,B- -Steven Yoder,Female,6699,1942-10-20,B+ -Timothy Miller,Male,6701,1933-03-16,AB+ -Holly Carter,Female,6702,1953-10-08,AB- -Thomas Higgins,Male,6703,1959-05-06,AB+ -Pamela Harrington,Female,6704,2000-07-10,B+ -Sean Curtis,Male,6705,1964-02-02,B- -Casey Chan,Male,6706,1959-03-30,AB- -Audrey Howard,Female,6707,1957-07-26,O- -Dominique Jackson,Male,6708,1989-05-23,O+ -John May,Male,6709,1936-09-28,A- -Ashley Edwards,Female,6710,1967-05-17,A- -Krystal Miller,Male,6711,2001-10-01,A- -Joshua Li,Female,6712,1930-10-15,AB+ -Jackson Mitchell,Female,6713,1991-02-27,AB- -Kyle Madden,Female,6714,1986-08-01,B+ -Brian Johnson,Male,6715,1980-01-30,B+ -Melissa Pena,Female,6716,1933-03-07,AB- -Kristin Bishop,Male,6717,1975-03-19,B- -Cindy Davis,Male,6718,1992-03-17,O- -Dr. Aaron Todd,Female,6719,1936-06-21,A+ -Kayla Gardner,Female,6720,1997-03-05,AB- -Lori Holder,Male,6721,1946-05-20,O+ -Lori Brown,Male,6722,1975-04-02,B- -Chad Pruitt,Female,6723,1952-06-21,AB- -David Adams,Male,6724,1995-04-23,AB- -Karen Green,Female,6725,1970-05-29,B- -Antonio Webb,Female,6726,1930-09-02,B- -Samantha Myers,Male,6727,1977-05-24,AB+ -Melissa Jimenez,Female,6728,1938-09-14,AB- -James Peterson,Female,6729,1935-12-17,A+ -Jennifer Lee,Male,6730,1943-09-12,O+ -Douglas Hopkins,Female,6731,1932-06-05,O- -Joanne Miller,Male,6732,1998-03-21,O- -Kimberly Rosario,Male,6733,2002-11-26,A+ -Michael Cervantes,Female,6734,1984-02-29,B+ -Nicholas Graves,Female,6735,1967-07-27,B- -Katherine Roach,Male,6736,1963-03-31,B- -James Stewart,Male,6738,1998-02-14,B+ -Lisa Lawson,Female,6739,1999-10-09,B- -Holly Oliver,Male,6740,1937-04-08,B+ -Catherine Thompson,Female,6741,1962-10-24,AB- -Zachary Hicks,Female,6742,1995-02-05,B+ -Mark Maxwell,Male,6743,1978-08-12,B- -Patrick Santana,Female,6744,1949-07-15,B- -Rachel Cox,Female,6745,1930-11-17,AB- -Scott Murillo,Male,6746,1942-09-29,B+ -Robert Turner,Male,6747,1989-05-15,AB- -Michele Wheeler,Female,6748,1993-05-15,A+ -Justin Carr,Male,6749,1993-08-16,AB+ -Brandi Hall,Female,6750,1989-12-06,AB- -Christina Thompson,Female,6752,1974-03-02,O+ -Gregory Banks,Female,6753,2000-05-20,B- -Patricia Thomas,Male,6754,1959-06-28,AB+ -Alejandro Black,Female,6755,1947-12-11,O- -Derek Edwards,Female,6756,1985-12-04,A+ -Kristy Lara,Male,6758,1961-08-25,B+ -Robert Richardson,Male,6759,1954-09-01,AB+ -Donald Terry,Female,6760,1966-11-30,AB- -Brandon Dalton,Male,6761,1950-07-13,B- -Danielle Simon,Female,6762,1948-03-03,B- -Andrew Morris,Male,6763,1950-02-27,B- -Michael Bennett,Male,6764,1974-11-21,AB+ -Sara Miller,Female,6765,1975-05-23,B- -David Townsend,Female,6766,1936-12-12,AB- -Cynthia Maynard,Female,6767,1982-08-22,B+ -Margaret Brady,Male,6768,1971-08-30,AB+ -Denise Garcia,Male,6769,1980-12-17,B- -Joanne Wilcox,Female,6770,1938-03-29,O- -Adam Lynch,Female,6771,1996-09-19,O- -Laura Cervantes,Female,6772,1968-11-26,O+ -Christina Hernandez,Male,6773,1972-12-01,B- -Jonathan Small,Female,6774,1971-02-24,B- -Michael Morgan,Female,6775,1935-09-09,AB+ -James Gross,Female,6776,1968-01-29,AB+ -Adrienne Jackson DVM,Female,6777,1996-05-03,A- -Amanda Bray,Female,6778,1940-08-03,B+ -Stephanie Day,Male,6779,1974-03-23,B- -Whitney Anderson,Female,6780,1943-05-06,O+ -Ashley Roberts,Male,6781,1953-08-23,B+ -James Bell,Male,6782,1930-10-25,B- -Thomas Nelson,Female,6784,1965-11-08,B+ -Samantha Griffin,Female,6785,1990-11-22,AB- -Michael Saunders,Female,6786,1954-09-28,AB+ -Scott Hess,Female,6787,1932-10-12,B- -Erika Kidd,Male,6788,1933-10-16,B+ -Julie Morales,Male,6789,2001-02-10,AB+ -Lauren Bates,Female,6790,1953-12-11,B- -Corey Rose,Female,6792,1981-04-17,A+ -Eileen Price,Female,6793,1978-05-02,AB+ -Rebecca Clark,Female,6794,1933-06-14,B+ -Curtis Smith,Female,6795,1951-02-01,O+ -Alex Nguyen,Male,6796,1997-10-16,A+ -Amanda Gomez,Female,6797,1987-05-09,AB- -Joshua Kelley,Female,6798,1993-09-28,B- -Ashley Chen,Male,6799,1990-05-22,A- -Kyle Powell,Male,6800,1958-06-24,AB- -Kyle Arnold,Female,6801,1972-06-28,AB+ -Matthew Browning,Female,6802,1990-03-04,A+ -Patrick Murphy,Male,6803,1962-06-26,AB- -Brandon Thomas,Female,6804,1972-12-07,O+ -Julia Carroll,Male,6805,1991-09-17,A- -Sheri Dominguez,Female,6806,1945-03-06,AB+ -Jeffrey Rivera,Female,6807,1994-09-06,A+ -Craig Bryant,Female,6808,1987-09-06,AB- -Thomas Durham,Male,6809,1980-01-04,A+ -Benjamin Brooks,Female,6810,1964-03-11,A+ -Sara Cox,Female,6811,1998-09-18,AB- -Amanda Fuentes,Female,6812,1957-08-06,O- -Cameron Smith,Female,6813,1959-06-02,B- -Mckenzie Santiago,Female,6814,1940-06-06,B+ -Miguel Robinson,Female,6815,1990-10-04,AB+ -Charlotte Torres,Female,6817,1988-03-24,AB+ -Rachel Tran,Female,6818,1949-09-24,A- -Elizabeth Kennedy,Male,6819,1986-03-27,A- -Paul Gilbert,Male,6820,1987-08-27,A- -Charles Vaughn,Female,6821,1967-08-21,AB+ -Nicole Lane,Male,6822,1973-10-17,A+ -Philip Anderson,Male,6823,1973-11-26,A- -John Obrien,Female,6824,1961-12-15,AB- -Douglas Hickman,Male,6825,1966-03-03,B- -Richard Payne,Female,6826,1978-09-19,O+ -Angel Duke,Male,6827,2001-12-04,AB+ -Nicholas Luna,Female,6828,1944-03-25,AB- -Jonathan Small,Male,6829,1972-08-01,B- -Pamela Calderon,Male,6830,1950-05-28,B- -Tabitha Gray,Female,6831,1953-11-14,O- -Christopher Greene,Male,6832,1970-09-07,B+ -Barbara Alexander,Male,6833,1935-12-13,AB- -John Meza,Female,6834,1966-01-10,AB+ -Christina Jordan,Female,6835,1975-08-16,A- -Megan Phillips,Male,6836,1985-09-30,A+ -James Fox,Male,6837,1982-03-02,A- -Thomas Bell,Male,6838,1960-05-08,B- -Michelle Garcia,Female,6839,1996-04-13,B- -Justin Hernandez,Female,6840,2002-01-30,O+ -Kendra Barnett,Male,6841,1940-11-25,A- -Stephanie Anderson,Male,6842,1987-12-01,B+ -Patrick Bryant PhD,Female,6843,1944-05-14,B+ -Sue Allen,Male,6844,1958-11-23,O- -Michael Mccormick,Male,6845,1986-12-24,B+ -Kenneth Castro,Female,6846,1946-10-19,B- -Evelyn Bowman,Female,6847,1945-04-05,B- -Jason Sanchez,Male,6848,1986-03-03,B+ -Matthew Downs,Female,6849,2001-12-18,A+ -Shawn Woods,Female,6850,1967-08-06,A+ -Christopher Harmon,Male,6851,1949-09-07,B+ -Tiffany Hancock,Female,6852,1969-10-24,O+ -Kevin Sutton,Female,6853,1959-10-14,AB- -James Lindsey,Male,6854,1960-05-10,O+ -Christopher Mora,Male,6855,1967-06-03,O+ -Michelle Hunter,Male,6856,1987-04-11,B+ -Sandra Jacobs,Female,6857,1937-08-08,A+ -Joshua Andrade,Female,6858,1955-06-30,A- -Kimberly Stephens,Female,6859,1951-01-28,A- -Carla Griffin,Male,6860,1970-01-20,B+ -Gloria Mendoza,Male,6861,1952-12-17,A- -Jason Kelley,Male,6862,1976-09-02,AB- -Gregory Bentley,Female,6863,1998-08-07,A+ -Miguel Taylor,Male,6864,1952-01-10,B+ -Shawna Barnes,Female,6865,1986-05-29,O- -Lisa Ross,Female,6866,1956-04-29,AB+ -Stephen Gonzales,Female,6867,1971-03-01,AB+ -Rachel Church,Male,6868,1943-11-09,B+ -Jessica Marsh,Female,6869,1959-11-05,B+ -Erica Mcneil,Male,6870,1990-12-10,O- -Michael White,Female,6871,1945-04-13,A- -Deborah Ford,Female,6872,1935-07-08,AB+ -Melissa Bryan,Female,6873,1985-03-26,AB- -Ryan Perez,Male,6874,1965-08-02,B+ -Rebecca King,Female,6875,1959-02-13,A+ -John Baker,Male,6876,1999-10-13,AB+ -Lori Sloan,Female,6877,1967-05-15,AB- -Stephanie Weaver,Male,6878,1949-07-28,A+ -James Shields,Male,6879,1996-02-14,B+ -Jenny Cook,Female,6880,1981-05-01,AB- -Michael Caldwell,Male,6881,1968-05-23,O- -Micheal King,Female,6882,1984-10-17,B+ -Rachel Li,Male,6883,1946-03-17,O+ -Richard Grant,Male,6884,1973-06-30,O- -Andrew Adams,Female,6885,1990-05-25,AB+ -Steven Torres,Male,6886,1999-02-24,A+ -Jeremy Willis,Female,6887,1948-03-05,AB- -Troy Smith,Male,6888,1942-09-26,AB+ -Dale Henderson,Male,6889,1931-09-02,AB+ -Steven Benson,Male,6890,1951-09-28,B+ -Elaine Glenn,Male,6891,1958-05-02,O+ -Lawrence Meadows,Female,6892,1940-08-02,A- -Tammy Dunlap,Female,6893,1975-11-16,AB+ -Melissa Mcknight,Female,6894,1994-01-07,O+ -Pamela West,Male,6896,1976-07-17,A+ -Eric Stark,Female,6897,1993-10-12,A+ -Vanessa Cook,Female,6898,1991-04-25,AB- -Teresa Jones,Male,6899,1936-03-03,A- -Shannon Olson,Female,6900,1943-07-14,O+ -Ashley Barnes,Male,6901,1963-10-05,O- -Tanya Porter,Female,6902,1932-05-14,A+ -Robert Dickerson,Female,6903,1933-06-22,B+ -Jennifer Mack,Female,6904,1950-05-30,A- -Morgan Ballard,Female,6905,1967-06-02,AB- -Heather Maxwell,Male,6906,1999-06-08,O- -Kelli Jensen,Female,6907,1987-05-17,A+ -Jamie Graham,Male,6908,1963-11-14,A+ -Gary Blankenship,Female,6909,1944-04-26,AB- -Andrea Byrd,Female,6910,1974-08-27,AB- -Kevin Powell,Female,6911,1980-12-25,B- -Ricky Nelson,Female,6912,1941-02-06,B+ -Joanne Hall,Female,6914,1932-07-24,AB+ -Chloe Scott,Female,6915,1963-04-30,AB+ -Scott Sherman,Male,6916,1992-05-13,O- -Lauren Dominguez,Male,6917,1996-06-18,AB+ -Karen Kelly,Male,6918,1958-10-31,O- -Sandra Wallace,Male,6919,1972-08-08,A- -Christopher Walker,Male,6920,1974-03-27,A+ -Justin Garcia,Male,6921,1975-10-01,B- -Megan Wagner,Female,6922,1956-08-18,B- -Brittany Pena,Male,6923,1951-04-15,B+ -Jeffrey Bonilla,Female,6924,1985-06-06,B+ -Collin Miller,Male,6925,1935-06-09,A+ -Steven Watts,Male,6926,1969-01-08,AB- -Caleb Pitts,Female,6927,1988-05-12,B+ -Tony Carter,Male,6928,1942-08-09,B+ -Erin Brooks,Female,6930,1982-06-19,O+ -James Richard,Male,6931,1973-09-12,O+ -James Choi,Female,6932,1955-11-28,AB+ -Dennis Gray,Female,6933,1999-01-15,AB- -Angela Weber,Male,6934,1968-10-14,O- -Kimberly Prince,Female,6935,1951-03-26,A- -Rachel Rodriguez,Female,6936,1969-01-02,B- -William Price,Male,6937,1941-03-02,AB+ -Steve Glenn,Male,6938,1965-03-11,B+ -Molly Oliver,Male,6939,1978-08-08,A+ -Catherine Anderson,Female,6940,1941-01-25,AB- -Janet Nelson,Male,6941,1974-08-02,B+ -John Powell,Male,6942,1969-05-25,B- -Kaitlyn Juarez,Male,6943,1937-01-19,O- -Kelli Cowan,Male,6944,1948-06-29,O- -Laurie Moses,Female,6945,1979-03-10,O+ -Kimberly Valdez,Male,6946,1935-06-10,AB+ -Stacy Lewis,Female,6947,1980-12-28,B+ -Dalton Dunn,Female,6948,1985-09-19,A+ -Terry Brown,Male,6949,1995-09-05,B- -Charles Cook,Female,6950,1972-05-10,B+ -Francis Aguirre,Female,6951,1997-08-21,A- -Leslie Garcia,Female,6952,1946-05-05,O- -Brent Brown,Female,6953,1999-08-14,B+ -Shannon Miller,Male,6954,1950-07-08,B- -Mary Davis,Female,6955,1941-03-27,A+ -Rachel Hunt,Male,6956,1935-09-08,B- -Amy Robinson,Female,6957,1989-03-07,AB+ -David Fitzgerald,Male,6958,1938-03-14,O+ -Brandon Hayes,Female,6959,1940-04-02,B- -Theresa Robertson,Female,6960,1969-08-10,AB- -Paul Horne,Female,6961,1969-10-06,B+ -Angela Meadows,Male,6962,1945-04-26,O+ -Antonio Mendoza,Female,6963,1950-08-15,A+ -Gloria Taylor,Female,6964,1950-03-08,O+ -Ashley Nelson,Female,6965,1969-10-30,B- -Shane Franklin,Female,6966,1979-05-12,B- -Melissa Schultz,Male,6967,1938-08-11,AB- -Sue Peters,Female,6968,1968-04-21,O- -Candace Thomas,Female,6969,1968-07-23,B+ -Amy Dunlap,Female,6970,1975-07-10,AB- -Michael Hicks,Female,6971,1986-01-16,B- -Allison Berry,Male,6972,1951-10-12,A- -Melissa Thompson,Male,6973,1949-11-26,O+ -Noah Murphy,Female,6974,1949-07-10,AB- -John Brooks,Male,6975,1948-09-11,AB- -Michaela Hoffman,Female,6976,1997-10-02,B+ -Victoria Jones,Female,6977,1954-03-20,A- -Paige Young,Female,6978,1968-12-07,A- -Donald Mack,Female,6979,1947-05-03,A- -Scott Oneill,Male,6980,1984-06-22,B+ -Edward King,Male,6982,1966-09-06,O- -Paula Scott,Male,6983,1978-12-18,B- -James Preston,Male,6984,1958-03-06,B- -Charles Powers,Female,6985,1980-10-07,A+ -Pamela Cervantes,Male,6986,1957-10-30,B+ -Manuel Castillo,Male,6987,1988-12-28,O- -Alison Palmer,Female,6988,1958-08-12,A+ -Jessica Thompson,Male,6989,1985-12-01,A+ -Nicole Evans,Female,6990,1935-07-29,A+ -Lauren Bowers,Male,6991,1961-05-21,B+ -Philip Reeves,Male,6992,1951-11-04,AB+ -Lisa Lowery,Male,6993,1977-03-16,A+ -Tamara Bautista,Male,6994,1985-04-29,AB- -Joshua Thomas,Female,6995,1993-05-24,O+ -Jose Woodward,Female,6996,2000-02-28,AB- -Christy Johnson,Male,6997,1963-05-10,AB- -Jeffrey Powell,Male,6998,1930-10-26,B- -Terry Noble,Male,6999,1994-09-10,AB+ -William Ray,Male,7000,1932-07-12,B+ -Tyler Valenzuela,Male,7001,1986-06-12,A+ -Debra Mitchell,Female,7002,1966-07-02,B- -Lee Rodriguez,Male,7003,1986-08-25,O- -Allen Crawford,Female,7004,1982-07-10,O- -Kevin Bishop,Male,7005,1948-01-05,B+ -Fred Simon,Female,7006,1943-05-08,B- -Stacy Jennings,Female,7007,1989-06-10,O+ -Jennifer Potts,Male,7008,1963-07-21,B+ -Jonathan Graves,Male,7010,1992-11-17,B- -Willie Hendricks,Male,7011,1979-10-17,B- -Whitney Brown,Male,7012,1959-11-10,AB+ -Christopher Chapman,Female,7013,1966-07-24,B+ -Cassandra Rogers,Female,7014,1973-06-26,O- -Sandra Bell,Male,7015,1982-02-18,O- -Angela Griffith MD,Male,7016,1984-01-08,A+ -Sandra Myers,Female,7017,1956-06-16,AB- -Michael Castillo,Female,7018,1982-12-07,B+ -Dennis Ruiz,Male,7019,1932-07-30,B- -Patricia Herrera,Male,7020,1935-03-23,B+ -Joan Miller,Female,7021,1943-03-31,B- -Cynthia Mason,Female,7022,1967-06-16,O+ -Thomas Hill,Male,7023,1997-01-18,B+ -Caleb Peterson,Female,7024,1978-04-06,A- -Amanda Richard,Female,7025,1945-08-06,A- -William Clark,Male,7026,1974-06-05,O- -Robert Garcia,Female,7027,1967-01-30,O+ -Donald Osborne,Male,7029,1964-07-16,AB+ -Carla Johnson,Male,7030,1934-01-06,A+ -Paul Walsh,Female,7031,1985-09-10,O+ -Austin Fleming,Male,7032,1980-03-29,O- -Suzanne George,Female,7033,1931-01-11,AB+ -Mary Castaneda,Male,7034,1930-09-20,B- -Beverly Kim,Female,7035,1986-10-20,AB+ -Melissa Moon,Male,7037,1992-08-29,AB- -Ryan Riley,Male,7039,1961-09-15,B+ -Cynthia Scott,Female,7040,1957-10-02,O+ -Kathryn Brooks,Female,7041,1951-06-13,O- -Sharon Reed,Female,7042,1935-03-09,O+ -Mrs. Emily Lambert MD,Female,7043,1952-03-12,B- -Katie Boyd,Female,7044,1962-05-19,A- -April Martinez,Female,7045,1934-07-11,B- -Katelyn Ryan,Male,7046,1990-01-10,O- -Aimee Bartlett,Male,7047,1985-07-07,AB- -Jacqueline Johnson,Female,7048,1931-08-23,A+ -Marcus Rodriguez,Female,7049,1988-01-16,B+ -Ricardo Harrington,Male,7050,1980-02-04,B+ -Troy Travis,Female,7051,2000-10-28,AB+ -Brittany Henry DDS,Female,7052,1954-01-27,AB+ -Rebecca Boone,Female,7053,1998-04-30,B- -Jonathan Washington,Male,7054,1986-05-24,O+ -Daniel Freeman,Male,7055,1939-12-17,A- -Cassandra Wu,Female,7056,1958-05-09,O+ -Christina Cortez,Male,7057,1973-10-11,AB- -Louis Haney,Female,7058,1955-06-09,A+ -Dennis Pineda,Male,7059,1945-05-01,B+ -Michael Gray,Female,7060,1992-07-06,O+ -John Middleton,Female,7061,1969-04-08,B+ -Justin Boyd,Male,7062,1998-04-15,AB+ -Willie Collins,Female,7063,1968-03-07,B+ -Teresa Hernandez,Female,7064,1959-06-20,A- -Yolanda Richards,Female,7065,1969-03-09,B+ -Seth Pratt,Female,7066,1950-03-19,O+ -Kyle Pena,Male,7067,1954-08-05,A- -Chelsea Ramos,Female,7068,1984-08-18,B+ -Nicole Cunningham,Female,7069,1951-02-07,A+ -Christina Riley,Female,7070,1976-11-25,AB+ -Bethany Dyer,Female,7071,1998-02-21,B+ -Bradley Alvarez,Male,7072,1942-09-08,A- -Manuel Black,Male,7073,1977-05-18,O+ -Susan Brown,Female,7074,1955-05-19,AB+ -Thomas Hernandez,Female,7075,1967-09-22,B- -Jeffrey Pacheco,Male,7076,1949-03-10,B- -Jonathan Brown,Male,7077,1972-07-02,AB- -Mr. Gregory Pitts,Female,7078,1981-05-18,B- -Eric Wells,Male,7080,1939-11-28,O+ -John Davila,Female,7081,1999-06-21,A+ -Alexis Villegas,Female,7082,1987-01-09,AB+ -Jennifer Gonzalez,Female,7083,1930-09-30,A- -Teresa Riggs,Female,7084,1965-08-12,O- -Jeremy Rodriguez,Female,7085,1979-09-18,B- -Kevin Cruz,Male,7086,1936-12-22,B- -Timothy West,Female,7087,1938-08-31,O- -Madison Mata,Female,7088,1987-12-12,A- -Abigail Watson,Male,7089,1969-06-19,A- -Daniel Chapman,Male,7090,1969-03-24,O- -David Mathews,Female,7091,1972-08-24,A- -Robert Herman,Female,7092,1932-08-04,O+ -Kristin Garcia,Male,7094,1970-03-25,A- -Thomas Anderson,Male,7096,1976-03-30,AB+ -Kyle Ho,Male,7097,1972-07-19,A- -Thomas Moore,Female,7098,1948-05-25,B+ -Jay Collins,Male,7099,1953-02-04,B+ -Andrea Parsons,Female,7100,1998-09-02,B- -Donald Alvarez,Female,7101,1961-01-28,A+ -Kristie Hardin,Male,7102,1992-04-09,O+ -Cameron Wheeler II,Female,7103,1995-10-28,O+ -Tina Campbell,Female,7104,1939-10-31,A- -Stephen Wade,Male,7105,1957-07-22,A+ -Adam Patel,Male,7107,1978-02-14,A+ -Brianna Durham,Male,7108,1978-11-13,AB- -Alexis Bryant,Female,7109,1931-01-26,A+ -Amy Richardson,Male,7110,1990-03-26,A- -Robert Sherman,Female,7111,1964-09-07,A- -William Wilcox,Female,7112,1961-09-04,O- -Mary Ellis,Male,7113,1965-09-03,B- -John Hernandez,Female,7114,1991-07-30,B+ -Dana Robinson,Male,7115,1965-11-20,AB- -Christopher Ayers,Female,7116,1999-02-16,A- -Karen Stephenson,Female,7117,1937-01-04,O- -John Reid,Female,7118,1946-01-24,AB- -Joyce Scott,Male,7119,1971-11-06,B- -Doris Perez,Female,7121,1933-04-26,AB- -Angel Cameron,Female,7122,1954-12-22,O- -Regina Terry,Male,7123,1934-03-20,AB+ -Joshua Moore,Female,7125,1999-10-14,B+ -Samuel Arellano,Female,7126,1976-08-14,A- -Reginald Miller,Male,7127,1953-10-20,B+ -David Wood,Female,7128,1954-06-05,B- -Holly Robinson,Female,7129,1978-05-16,O+ -Brittany Rodriguez,Female,7130,1995-11-20,B- -Regina Waters,Male,7131,1958-03-25,B- -Anthony Duncan,Male,7132,1994-12-20,B- -Natalie Sanders,Female,7133,1964-11-22,AB+ -Steven Bruce,Male,7134,1942-01-04,A- -Joshua Franco,Male,7135,1977-05-17,O- -Jason Kaiser,Male,7136,1963-07-09,A- -James Oliver,Male,7137,1981-04-06,O+ -Stephen Henson,Male,7138,1969-01-13,O- -Amy Ryan,Male,7139,1954-07-01,AB- -Andrew Zimmerman,Female,7140,1968-03-08,AB- -Alyssa Delgado,Male,7141,1946-03-28,AB- -Mary Walker,Male,7142,1944-10-16,O- -Rachael Hutchinson,Male,7143,1990-05-13,A+ -Charles Villa,Male,7144,2002-05-28,AB+ -Charles Chase,Male,7145,1973-11-08,A+ -Sabrina Holland,Male,7146,1989-04-20,A- -Thomas Cabrera,Male,7147,1931-05-23,AB- -Ann Simmons,Male,7148,1933-12-07,AB+ -Ashley Hester,Female,7149,1961-10-23,O- -Rodney Clark,Female,7150,1953-12-16,AB- -Richard Parker,Male,7151,1974-02-21,O- -Tyler Walters,Female,7152,1950-02-19,AB+ -Susan Cooper,Female,7153,1960-12-03,O- -Lisa Cunningham,Female,7154,1987-03-23,O- -Victoria Rodriguez,Male,7155,1967-11-23,O+ -Michael Valentine,Male,7156,1984-10-10,A- -Jamie Gonzales,Female,7158,1942-01-17,A+ -Kristopher Freeman,Female,7159,1943-10-17,B+ -Colton Peterson,Female,7160,1997-01-24,A+ -Christopher Oconnell,Male,7161,1973-05-23,A+ -Kelsey Mills,Female,7162,1940-03-04,B- -Karen Adams,Female,7163,1970-09-25,O+ -Tracy Oliver,Female,7164,1951-06-17,B+ -Hannah Sanders,Female,7165,1933-07-25,AB- -Margaret Caldwell,Female,7166,1950-03-07,AB- -Donald Arnold,Female,7167,1989-01-20,AB- -Michael Jacobs,Male,7168,1980-10-04,A+ -Kari Garcia,Male,7169,1947-07-22,A- -Kimberly Gonzalez,Male,7170,1947-06-06,A+ -Cameron Baxter,Female,7171,1972-04-19,B+ -Robert James,Male,7174,1931-11-24,A- -Tracy Sexton,Female,7175,1934-01-18,O+ -Thomas Arnold,Male,7176,1947-07-07,A- -Bryan Harper,Male,7177,1953-02-17,B+ -Dr. Jenna Chase,Female,7178,1959-01-31,O- -Beth Long,Female,7179,1976-01-25,A+ -Debra Lee,Male,7180,1957-07-31,AB- -Madison Lozano,Male,7181,1937-03-31,O- -Phillip Trevino,Female,7182,1944-04-06,A+ -Ryan Howard,Male,7183,1947-11-21,AB+ -Amanda Jackson,Female,7184,1987-08-31,B- -Steven Rocha,Female,7185,1949-09-29,A+ -Julia Young,Female,7186,1957-03-07,AB+ -Richard Thomas,Male,7187,1962-08-28,B+ -Roy Nelson,Male,7188,1982-02-06,O+ -Carrie Merritt,Male,7189,1997-05-03,AB+ -Stephen Collins,Male,7190,1955-07-05,O+ -Cynthia Cameron,Female,7191,1963-05-05,A+ -Jeffrey Vazquez,Female,7192,1959-09-12,O+ -Brian Austin,Male,7193,1951-09-21,AB+ -John Johnston,Female,7194,1944-12-29,A- -Ashley Fuller,Male,7195,1967-12-06,B- -Brian Ryan,Male,7196,1951-09-16,O- -Gina Chavez,Female,7197,1935-09-12,O- -Edward Sheppard,Female,7198,1946-09-03,B- -Sharon Barton,Female,7199,1995-02-09,AB- -Kenneth Hayes,Male,7200,2001-07-10,O- -Miss Sara Shaw,Female,7201,1951-05-08,B+ -Megan Ayala,Female,7202,1977-03-20,A+ -Wanda Mcdonald,Female,7203,1952-11-07,AB- -Mark Fisher,Female,7204,1984-06-04,A+ -Renee Taylor,Male,7205,1932-06-23,AB+ -Laura Kennedy,Male,7206,1978-05-02,B+ -Melanie Roman,Female,7207,1975-12-19,AB+ -Penny Pitts,Female,7208,1999-08-06,AB- -Jason Jones,Female,7209,1957-04-23,AB- -Colton Nelson,Female,7210,2001-07-27,B+ -Joshua Hayes,Female,7211,1933-03-30,B+ -James Trevino,Female,7212,1999-05-01,AB- -David Calderon,Female,7213,1934-09-22,AB- -Nancy David,Female,7214,1961-02-27,O+ -Kenneth Perry,Female,7215,1998-01-10,A- -Jason Carter,Male,7216,1965-10-01,AB- -Christina Sutton,Female,7217,1990-10-08,B+ -Dana Costa,Male,7218,1945-05-08,A- -Mark Edwards,Female,7219,1940-10-31,AB- -Kayla Lee,Male,7220,1975-04-30,AB+ -Bradley Goodman,Male,7221,1998-01-13,A+ -Rebecca Simmons,Male,7222,1981-03-04,A- -Craig Stevens,Female,7223,2000-06-16,AB+ -Martin Smith,Female,7225,2001-12-16,O- -Kevin Garner,Female,7226,1974-01-11,B+ -Paul Terry,Female,7227,2002-02-19,O+ -James Williams,Female,7228,1931-02-26,O+ -Jordan Pittman,Female,7229,1945-03-03,A+ -William Perry,Male,7230,2000-08-06,AB- -Lisa Ramirez,Male,7231,1974-08-06,AB+ -Kenneth Guerra,Female,7232,1973-09-18,O- -Stephanie Garcia,Male,7233,1973-06-26,AB+ -Todd Nguyen,Male,7234,1942-10-20,B+ -Patricia Nguyen,Male,7235,1954-11-13,B+ -Kenneth Anderson,Male,7236,1965-08-14,AB- -Tony Woods,Male,7237,1948-06-23,AB- -Bryan Rhodes,Male,7238,1946-09-17,B+ -Cassandra Bradford,Female,7239,1978-11-22,B- -Alyssa Pierce,Male,7240,1983-09-27,B+ -Bryan Bradley,Female,7241,1980-10-30,AB+ -Julie Patel,Female,7243,2001-04-03,A+ -Brian Williams,Female,7244,1983-05-03,AB+ -Nicole Cowan,Male,7245,1993-01-20,O+ -Beth Simmons,Male,7246,1961-01-26,O- -Michael Moody,Male,7247,1956-10-13,A- -Jacob Bush,Female,7248,1946-02-08,A+ -Kimberly Lara,Male,7249,1991-03-28,B- -Larry Phillips,Male,7250,1945-11-16,O- -Kathryn Le,Male,7251,1956-05-11,O- -Adam Collins,Female,7252,1953-01-15,A- -Stephen Ramirez,Male,7253,1997-11-20,O+ -Michael Blankenship,Male,7254,1964-02-18,O+ -Melissa Powell,Male,7255,1956-12-16,O+ -Melanie Berger,Female,7256,1964-10-29,A+ -Benjamin Henderson,Male,7257,1998-01-04,AB+ -Robert Harrell DDS,Male,7258,1955-01-15,O- -Nicholas Cook,Male,7259,1942-05-22,AB+ -Erika Brown,Female,7260,1947-12-17,AB+ -Joshua Lee,Female,7261,1950-11-12,O+ -Richard Cooper,Male,7262,1982-06-15,AB+ -Anthony Thomas,Male,7264,1990-05-23,O- -Susan Nichols,Female,7265,1938-07-22,O- -Allison Wilkins,Female,7266,1953-09-28,AB- -Ariana Garcia DDS,Female,7267,1962-01-19,B- -Ruben West,Male,7268,1978-07-25,A+ -Kimberly Davenport,Male,7269,1963-01-18,AB+ -Kathleen Evans,Male,7270,1999-09-21,A+ -Julie Johnson,Male,7271,1985-05-30,A+ -Teresa Nelson MD,Male,7272,1952-04-09,A+ -Thomas Nichols,Male,7273,1932-07-13,A- -Dylan Smith,Female,7274,1980-10-19,B+ -Samantha Francis,Female,7275,2002-06-30,AB- -Donna Gray,Female,7276,1945-01-28,A+ -Dawn Davidson,Female,7277,1967-05-17,B+ -John Dougherty,Female,7278,1936-07-23,B+ -Alyssa Webster,Female,7279,1997-05-13,AB- -Dr. Chris Smith,Female,7280,1971-12-02,O- -Angela Meyers,Female,7282,1952-07-10,A- -Jacqueline Graves,Male,7283,1962-04-04,AB+ -Heather Jenkins,Male,7284,1945-02-06,AB- -Darren Andrews,Female,7285,1982-03-03,B- -Deborah Hester,Male,7286,1939-03-20,B+ -Frank Sutton,Female,7287,1976-06-20,A+ -Stephen Johnson,Female,7288,1961-03-29,B+ -Robert Potts,Female,7289,1983-06-14,A- -Anne Meyers,Female,7290,1954-11-26,B- -Christine Ware,Female,7291,1993-02-06,O- -Eric Schwartz,Male,7292,1986-01-17,O- -Isabella Collier,Male,7293,1958-05-15,O+ -Sarah Salazar,Male,7295,1953-05-11,A+ -Austin Webb,Female,7296,1941-09-10,O+ -Shannon Harris,Female,7297,1991-05-04,A- -Amy James,Female,7298,1957-02-14,B- -Edwin Vega,Female,7299,1976-05-19,B+ -Kent Mcgrath,Female,7300,1996-10-27,AB+ -Karen Stone,Female,7301,1960-11-18,O+ -Tyler Hernandez,Male,7302,1944-12-05,O- -Christian Trevino,Female,7303,1984-08-16,A+ -Kristina Payne,Female,7304,2002-12-01,B+ -Brandi Montgomery,Male,7306,1985-07-14,B- -Tabitha Sloan,Female,7307,1947-09-26,AB- -Brianna Johnson,Female,7308,1995-05-24,A- -Alyssa Davis,Male,7309,1977-08-22,A- -Jonathan Thomas,Male,7310,1947-09-19,O- -Ms. Ashley Kennedy DVM,Male,7311,1935-08-25,AB- -Jennifer Cochran,Female,7312,1954-09-22,A- -James Nunez,Male,7313,2001-10-08,AB+ -Casey Sparks,Female,7314,1986-09-09,B+ -Jeffrey Diaz,Female,7315,1984-06-06,A+ -Gabriela Atkins,Female,7316,1934-12-19,B+ -Shane Durham,Female,7317,1961-12-15,AB+ -Rachel Dickerson,Male,7319,1991-12-27,A- -John Hicks,Male,7320,1969-03-05,AB+ -Joan Santos,Female,7321,2001-04-05,B+ -Todd Miller,Female,7322,1936-05-02,A- -Dalton Oconnell,Male,7323,1956-07-29,A+ -William Burns,Male,7325,1978-03-25,A+ -Kelly Porter,Female,7326,1956-12-07,AB- -Audrey Edwards,Female,7327,1945-12-19,AB+ -Jon Williamson,Male,7328,1983-01-26,B- -Eric Moore,Male,7329,1984-04-11,AB- -Angela Osborn,Female,7330,1941-02-08,A+ -Dominique Howard,Male,7331,1930-11-02,O- -Ernest Freeman,Male,7332,1969-04-13,A- -Amy Gay,Female,7333,2002-01-02,AB- -Lisa Tucker,Female,7334,1934-08-17,O+ -Martin Espinoza,Male,7335,2001-06-10,B- -Stephen Jensen,Male,7336,1940-09-22,A- -Patricia Rodriguez,Female,7337,1994-03-30,AB- -Adam Bush,Male,7338,1998-06-08,A+ -Scott Hawkins,Male,7339,1938-01-15,B+ -Alexander Gallegos,Female,7340,1940-07-29,A+ -Jill Knight,Female,7341,1969-09-19,B- -Bill Buchanan,Female,7342,1969-03-15,O+ -Cheyenne Miller,Female,7343,1971-11-22,AB- -Joseph Turner,Female,7344,2001-04-04,B+ -Joshua Bender,Male,7345,1945-06-20,AB- -Derrick Jacobs,Male,7346,1983-10-15,AB+ -Allison Krueger,Male,7347,2000-06-22,O- -Diane Cruz,Male,7348,2002-05-28,A+ -Rebecca Boyd,Female,7349,1979-11-03,AB- -Cory Barnes,Male,7350,1972-11-30,AB- -Randall Holmes,Female,7351,1978-07-14,A- -Amanda Reed,Male,7352,1945-03-23,A- -Vicki Mcclain,Female,7353,1972-04-21,AB- -Daisy Brown,Female,7354,1980-12-14,O+ -Scott Harvey MD,Female,7356,1932-12-15,O- -Michael Stevens,Male,7357,1968-04-14,AB- -Suzanne Gonzales,Female,7358,1986-05-17,B- -Jennifer Lewis,Female,7359,1992-01-20,A+ -Michelle Jones,Female,7360,1971-12-19,AB+ -Brenda Coleman,Male,7361,1964-12-03,A- -Jake Meyers,Male,7362,1949-10-23,B- -Brittany Gibson,Female,7363,1977-01-31,A+ -Meghan Horne DVM,Male,7364,1988-10-16,B+ -Tyrone Harris,Female,7366,1935-07-25,A- -Tristan Torres,Female,7367,1953-04-24,O+ -Malik Simmons,Male,7368,1954-11-26,A- -Michael Weiss,Female,7369,2001-07-04,O- -Jorge Meyers,Male,7370,1969-02-12,O- -Veronica Griffith,Male,7372,1946-03-09,A+ -Christopher Matthews,Female,7373,1962-01-08,B- -Donald Calderon,Female,7374,1982-02-14,AB+ -Ronald Greene,Female,7375,1939-02-23,O+ -Joan Lawson,Female,7376,1951-07-26,A+ -Paula Mullins,Male,7377,1973-07-10,B+ -Tiffany Anderson,Female,7378,1964-01-18,O+ -Thomas Bishop,Female,7379,1933-02-15,O- -Katrina Leonard,Male,7380,1999-08-12,AB- -Marcus Guerrero,Female,7381,1998-04-16,AB- -John Cruz,Female,7383,1982-10-16,AB+ -Larry Thompson,Male,7384,1955-05-31,O+ -Jonathan Mills,Male,7385,1985-12-03,A+ -Colleen Harris,Male,7386,1935-08-01,AB+ -Elizabeth Clark,Male,7387,1941-09-10,A- -Tonya Clark,Female,7388,1957-07-04,A- -Christopher Page,Female,7389,1942-10-28,B+ -Scott Wright,Female,7390,1976-03-18,B- -Carol Barry,Female,7391,1949-06-26,AB- -Mary Powers,Male,7392,1934-11-20,A+ -Dustin Franco,Male,7393,1984-06-20,O+ -Michael Mcneil,Male,7394,1940-05-14,AB+ -Carlos Evans,Male,7395,1989-04-11,A+ -Raymond Jackson,Female,7396,1955-03-01,AB+ -Catherine Yang,Female,7397,1944-11-11,AB+ -Daniel Jones,Male,7398,1948-04-17,AB+ -Jamie Ford,Male,7399,1948-11-15,O+ -Douglas Booth,Male,7400,1964-08-31,A+ -Benjamin Bright,Male,7401,1970-10-10,O- -Patricia Duran,Female,7402,1956-05-27,O- -Samantha Brown,Female,7403,1957-03-23,O+ -Hannah Rogers,Female,7404,1958-09-03,A- -John Wiggins,Male,7405,1965-07-28,O+ -Benjamin Bean,Male,7406,1987-08-12,AB- -Heather Austin,Male,7407,1994-04-01,AB+ -Stanley Jenkins MD,Male,7408,1960-06-18,A+ -Lori Benjamin,Male,7409,1948-10-22,A+ -Jose Reeves,Female,7410,1995-09-08,B- -Tyler Frost,Female,7411,1950-12-31,B- -Douglas Berry,Female,7412,1961-08-04,B+ -Michael Logan,Female,7413,1957-07-23,O- -Justin Mcbride,Female,7414,1991-11-20,B- -Heather Cruz,Male,7415,1987-04-10,B- -Sheila Woodard,Male,7416,1991-03-25,O- -Stacy Perkins,Female,7417,1957-11-06,AB- -Diane Hall,Female,7418,1999-03-14,A- -Michael Key,Female,7419,1978-06-14,O- -Cheryl Middleton,Female,7420,1938-02-10,A- -John Harvey,Male,7421,1967-12-04,B+ -Mr. John Padilla III,Male,7422,1982-11-26,B- -Justin Smith,Male,7423,1965-07-15,A+ -Anthony Miller,Male,7424,1983-08-12,B- -Brian Cunningham,Female,7425,1944-07-02,AB+ -James Alexander,Male,7426,1994-08-01,B+ -Rebecca Miller,Male,7427,1970-05-16,A- -Mary Miller,Male,7428,1945-09-09,A- -Alexis Simpson,Male,7431,1968-02-12,AB+ -Beth Williams,Male,7433,1930-05-07,AB+ -James Chang,Female,7434,1945-05-04,AB- -Mr. Matthew Rivas IV,Female,7435,1978-02-13,O+ -Francisco Daniels,Female,7436,1982-01-31,AB+ -Tammy Martin,Female,7437,1964-06-12,A- -Kimberly Brewer,Female,7438,1973-10-19,A+ -Amanda Weeks,Female,7439,1978-08-07,A- -Barbara Woodward,Male,7440,1955-03-22,A- -Sheryl Sanchez,Female,7441,1992-07-11,AB- -Erin Patel,Male,7442,1971-01-23,O+ -Timothy Rodriguez,Female,7443,1948-04-07,O+ -Nancy Frost,Male,7444,1993-02-26,AB+ -James Owens,Female,7445,1963-08-07,B+ -Krista Atkinson,Female,7446,1987-04-15,B- -John Oneill,Male,7447,1954-04-21,A- -Gregory King,Male,7448,1937-11-27,O- -Mike Turner,Male,7449,1956-06-07,B- -Jesse Edwards,Male,7450,1941-03-10,B- -Thomas Cruz,Female,7453,1981-01-18,O+ -Julia Coleman,Female,7454,1941-06-12,O+ -Jonathan Cunningham,Male,7457,1937-10-12,AB- -Latasha Wright,Female,7458,2002-02-15,AB- -Lacey Miller,Male,7459,1946-07-16,O+ -Dakota Browning,Male,7460,1984-08-09,A+ -Beth Elliott,Male,7461,1958-03-19,A+ -Andrea Miller,Male,7462,1943-01-11,O- -Timothy Hernandez,Male,7463,1976-07-28,O+ -Chelsey Howard,Male,7464,1974-06-13,AB+ -Jorge Schultz,Male,7465,1943-09-24,AB- -Philip Thomas,Female,7466,1933-10-07,O+ -Joseph Cunningham,Male,7467,1933-03-27,A+ -William Yates,Female,7468,1990-06-27,O+ -Linda Rowe,Female,7469,1931-05-06,A+ -Aaron Patel,Male,7470,1940-03-18,O+ -Catherine White,Female,7471,1946-05-11,A- -Wesley Lewis,Female,7472,1984-07-14,AB+ -Michael Andrews,Female,7473,1983-11-19,B+ -Jeffrey Mcdonald,Male,7474,1980-03-03,O- -Derrick Robertson,Male,7475,1988-08-02,A- -Cindy Robinson,Female,7476,1935-02-26,AB+ -Stephanie Huang,Female,7477,1988-04-18,A+ -Bradley Macias II,Female,7478,1938-03-07,AB- -Vicki Carter,Male,7479,1945-04-17,AB- -Andrea Murray,Male,7480,1938-08-26,B- -Jennifer Ayers,Male,7481,1942-05-28,AB+ -Dr. Ryan Lee,Male,7482,1976-09-21,O+ -Emily Grant,Male,7484,1989-03-30,O- -Aimee Farmer,Male,7485,1932-12-09,O+ -April Harris,Male,7486,1967-08-18,O+ -Craig Galloway,Female,7487,1981-05-24,AB+ -Jeremy Garcia,Female,7489,1937-05-17,B+ -Mr. Dustin Thomas,Female,7490,1956-03-07,O- -Tiffany Smith,Female,7491,1941-11-19,B- -Kyle Rivera,Male,7492,1935-11-27,A- -Luke Kelly,Female,7493,1974-04-24,O+ -Victor Douglas,Female,7494,1951-10-24,O- -Jane Anderson,Female,7495,1937-01-24,B- -Timothy Sharp,Female,7496,1949-11-14,A- -Laura Newman,Male,7497,1935-11-30,O+ -Lori Ponce,Male,7498,1974-04-12,O- -Timothy Taylor,Female,7499,1968-01-22,A- -Cody Collier,Male,7500,1961-04-28,AB+ -Aaron Lee DVM,Female,7501,1970-03-10,B+ -Cheryl White,Male,7502,1969-07-11,AB- -Stacy Lindsey,Female,7503,1962-11-30,AB- -Joseph Mullins,Female,7504,1948-07-17,O+ -Michael Woods,Male,7505,1934-06-16,O+ -Jon Hammond MD,Female,7506,1961-12-08,A- -Sharon Myers,Male,7507,1952-07-03,O- -Kenneth Rose,Male,7508,1994-03-30,AB- -Rebecca Wallace,Male,7509,1980-04-17,O+ -Monica Hodge,Male,7510,1956-08-05,B- -Julie Martin,Male,7511,1953-03-29,O+ -Angela Black,Male,7513,1935-12-22,AB- -Karen Watson,Male,7514,1961-09-29,A+ -Michael Casey,Male,7515,1981-02-22,B+ -Charles Hendrix,Female,7516,1949-08-13,AB- -Alexander Harris,Male,7517,1981-12-20,B- -April Forbes,Male,7518,1932-06-20,O- -Judith Gardner,Female,7519,1991-06-14,B- -Angela Todd,Male,7520,1955-06-09,A+ -Robert Reed,Male,7521,1979-06-14,A+ -Heather Hicks,Male,7522,1937-11-21,O+ -Curtis Gilbert,Female,7523,1965-10-02,O+ -Nicole Barnes,Female,7524,1945-05-24,AB- -Jennifer Goodwin,Female,7525,1996-11-26,AB+ -Jack Williams,Female,7526,1933-10-10,B+ -Darren Vega,Male,7527,1978-04-11,B- -Ryan Hughes,Female,7528,1945-06-21,AB- -Tamara Hatfield,Male,7529,1964-01-16,AB+ -Timothy Rivera,Male,7530,1991-07-03,AB- -John Gilbert,Male,7531,1955-11-22,B+ -Kathleen Walker,Female,7532,2002-07-05,B+ -Rebecca Costa,Female,7533,1949-04-07,A+ -Sheri Edwards,Female,7534,1947-10-06,O+ -Lisa Burke,Male,7535,1977-10-03,O+ -Darius Lindsey,Male,7536,1980-06-19,B+ -Joseph Johnson,Male,7537,1991-08-08,AB- -Brandi Rose,Female,7539,1941-08-19,B+ -Theresa Jennings,Female,7540,1981-08-21,O+ -Patricia Morris,Female,7541,1942-08-09,O- -Anthony Martin,Male,7542,1984-08-02,AB- -Dr. Hannah Cox,Female,7543,1964-08-02,A+ -Kayla White,Male,7545,2002-02-09,A- -Katelyn Miller,Male,7547,1930-08-09,AB- -Amy Coffey,Female,7548,1968-12-13,AB- -Alexander Sanford,Female,7549,1943-03-12,O+ -Christopher Kelly,Female,7550,1994-07-20,A+ -Shelly Smith,Male,7551,1987-07-08,AB- -James Phillips,Male,7552,1950-02-14,O+ -Steven Stone,Male,7553,1945-05-20,B+ -Mark Vasquez,Male,7554,1956-12-26,B- -Daniel Robertson,Male,7555,1994-08-06,A+ -Sara House,Female,7556,1942-07-13,AB+ -Willie Montes,Male,7557,1979-12-25,O- -Robert Perkins,Male,7558,1996-07-12,AB+ -Stephanie Moreno,Male,7559,1971-08-21,A- -Jerome Fry,Male,7560,1934-01-02,B+ -Carol Alvarado,Male,7561,1989-12-22,A+ -Jamie Moreno,Male,7562,1973-07-19,AB- -Elizabeth Reynolds,Male,7563,1998-03-25,O+ -Marcus Rhodes,Female,7565,1974-07-01,A- -Nicole Bell,Male,7566,1952-07-20,A+ -Vickie Murphy,Male,7567,1951-05-24,O- -Eric Miles,Female,7568,1935-08-31,A+ -Brandon Miller,Female,7569,1945-10-02,A- -Brittany Palmer,Female,7571,1949-10-25,O+ -Carla Smith,Male,7572,1968-10-23,AB+ -Mark Thomas,Female,7573,1994-01-25,B- -Maria Black,Female,7574,1946-12-14,AB+ -Gina Briggs,Male,7575,1979-01-02,O+ -Jeffery Evans,Female,7577,1981-12-21,A- -Timothy Murray,Male,7578,1970-01-13,O+ -Randall Becker,Male,7579,1932-09-28,B+ -Jasmine Lopez,Male,7580,1977-09-08,O- -Amanda Gonzales,Male,7581,1970-09-25,A+ -Sarah Love,Female,7582,1958-01-06,B+ -Lorraine Scott,Female,7583,1993-09-30,A+ -James Shaw,Male,7584,1998-01-13,AB+ -Steven Tucker,Male,7585,1988-09-08,A- -Connie Benitez,Female,7586,2002-02-27,B- -Christopher French,Female,7587,1942-04-04,B- -Brian Gray,Male,7588,1976-03-02,O- -Sierra Torres,Female,7589,1931-05-31,O+ -Paige Davis,Male,7590,1964-03-01,O- -Frank Lester,Male,7591,1933-04-06,A+ -Lisa Price,Female,7592,1959-09-26,AB- -Ms. Leah Lane DDS,Female,7593,1966-10-27,AB- -David Austin,Male,7594,1947-03-30,AB- -Anne Perry,Male,7595,2001-02-24,O+ -Robert Ellis,Female,7596,1975-08-08,O- -Michael Walker,Male,7597,1952-10-26,B+ -Stephen Jackson,Female,7598,1996-02-26,A- -Michael Vazquez,Male,7599,1946-06-14,AB+ -Richard Wilson,Male,7600,1951-11-14,A+ -Trevor Compton,Male,7601,1939-02-15,AB- -Sierra Jenkins,Male,7602,1932-02-27,A- -Tanya Dudley,Male,7603,1947-01-14,B- -Adam James,Male,7604,1957-01-12,B+ -David Jones,Male,7605,1976-07-24,O- -Robin King,Male,7606,1985-05-17,A+ -Isabel Hughes,Male,7607,1940-01-25,A+ -Terri Jefferson,Female,7608,1937-01-16,B- -Brittany Haynes,Female,7610,1948-12-07,B+ -Shane Parker,Female,7611,1943-10-13,B- -Tyler Campbell,Female,7612,1951-04-29,B- -Lance Gonzalez,Female,7614,1972-12-15,AB- -Eugene Peterson,Male,7615,1961-05-10,B+ -Christina Webb,Female,7616,1989-02-18,AB- -Carlos Lin,Male,7617,1942-11-26,O- -Shirley Jones,Male,7618,1930-03-08,B- -Jennifer Richards,Female,7619,1973-05-30,AB+ -Cody Dalton,Female,7620,1964-03-01,A+ -Edward Stewart,Male,7621,1950-08-17,B+ -Michelle Collins,Female,7622,1971-05-09,B- -Chelsea Ellis,Male,7623,1942-08-22,B+ -Francis Winters,Male,7624,1966-05-09,A+ -Daniel Haynes,Female,7626,1977-12-24,O+ -Stacy Williams,Female,7627,1945-09-09,A- -James Lynch,Male,7628,1959-05-13,O+ -Steven Elliott,Female,7629,1962-03-26,B- -Jessica Villegas,Female,7630,1995-04-19,A+ -Jeffrey Long,Male,7631,1974-07-17,A- -Elizabeth Whitehead,Female,7632,2000-07-15,O+ -Peter Baker,Male,7633,1987-02-06,B- -Angela Hunt,Female,7634,1965-06-06,A+ -Mary Hernandez,Male,7635,1984-01-01,B- -Courtney Lee,Male,7636,1976-05-11,AB- -Alexandria Jones,Male,7637,1995-11-15,A+ -Jorge Parker,Female,7639,1997-06-26,O+ -Samantha Murray,Female,7640,1970-02-03,B- -Rachel Robinson,Male,7641,1930-07-18,B+ -Scott Campos,Male,7643,2002-03-01,O+ -Kevin Ferguson,Male,7644,1976-06-03,B- -Misty Kelly,Male,7645,1977-01-08,B+ -Richard Gallagher,Female,7646,1956-11-30,B+ -William Esparza,Female,7647,2002-04-20,O- -Jason Carr,Male,7648,2002-05-14,B+ -Michele Riddle,Male,7649,1967-10-12,O+ -Sheila Gonzales,Female,7650,1978-01-27,O+ -Michaela Wright,Male,7651,1961-05-27,AB+ -Michael Atkinson,Female,7652,1930-06-28,A- -Kristen Ortega,Male,7653,1981-01-01,AB- -Mary West,Male,7654,1986-01-17,O+ -Christopher Liu,Female,7655,1976-11-13,A+ -Megan May,Female,7656,1991-12-03,A- -Tyler Baker,Female,7657,1932-03-09,B+ -Elizabeth Wilson,Male,7658,1950-10-24,B- -Ana Riley,Male,7659,1999-06-11,O- -Michael Hernandez,Male,7660,1937-08-27,A+ -Sean Edwards,Male,7661,1964-03-19,A- -Nicholas Estes,Female,7662,1942-07-25,A+ -Jacob Lindsey,Male,7663,1949-12-24,A+ -April Lee,Male,7664,1938-06-12,A+ -Melvin Arnold,Female,7665,1960-06-02,A- -Julie Miller,Female,7666,1932-01-02,O- -Ryan Larson,Male,7667,1933-02-03,B+ -Elizabeth Crosby,Male,7668,1934-05-25,AB+ -Billy Jackson PhD,Female,7669,1962-10-10,AB- -Julie Anderson,Male,7670,1959-12-12,B+ -Kevin Patton,Female,7671,1961-02-09,O+ -Sarah Williams,Female,7672,1938-01-12,A- -Melanie Martinez,Male,7673,1971-08-01,A+ -Catherine Walsh,Female,7674,2000-08-12,B+ -Jacob Gibson,Male,7675,1998-03-05,O+ -Adrian Lee,Male,7676,1943-11-23,A- -Sheila Wilson,Male,7677,1968-06-07,O+ -Ashley Atkins,Female,7678,2002-05-09,A+ -Brianna Hill,Male,7679,1949-06-09,AB+ -Amanda Holloway,Male,7680,1978-12-09,A- -Marie Huang,Male,7681,1932-06-12,O+ -Keith Wilson,Female,7682,1933-10-22,B- -Sarah Jenkins,Male,7683,1984-02-20,O+ -Jasmine Patel DDS,Male,7684,1941-08-10,AB- -Michael Hamilton,Female,7685,1987-02-14,A+ -Kathleen Brown,Male,7686,1981-01-20,O- -Karen Coleman DDS,Male,7687,1939-05-26,O+ -Debra Miller,Male,7688,1936-06-29,AB+ -Amy Brown,Male,7689,1986-08-31,B- -Mr. Jordan Miller,Female,7690,1934-02-24,B- -Shaun Hawkins,Male,7691,1973-07-20,O- -Alexis Schultz,Male,7692,1947-04-28,B+ -Thomas Jones,Male,7693,1969-12-27,AB- -Scott Hart,Male,7694,1994-04-07,O- -Allen Lowe,Female,7695,1945-04-18,AB- -Terri Smith,Female,7696,1937-12-27,O+ -Elizabeth Hudson,Male,7697,1990-07-20,A+ -Michael Flores Jr.,Female,7698,1995-11-26,AB+ -Michael Ramos,Female,7699,1973-07-15,B- -Joseph Lee,Female,7700,1978-01-20,O- -Chris Robertson,Male,7701,1997-08-03,AB+ -Mary Mcintyre,Female,7702,1988-11-05,AB- -Jennifer Arroyo DDS,Female,7703,1986-09-15,A+ -James Parker,Female,7704,1990-10-07,B- -Ashley Peterson,Male,7705,1984-11-12,B- -Brian Keith,Female,7706,1940-05-21,AB- -Patricia Roberts,Male,7707,1957-03-27,A+ -Faith Allen,Male,7708,1973-06-03,B- -Melanie Robinson,Female,7709,1993-04-22,A+ -Latoya Phelps,Male,7710,1934-04-27,B- -Tracy Mays,Female,7711,1955-12-24,O+ -Nicole Harrison,Male,7712,1980-12-08,AB- -Timothy Frazier,Female,7713,1955-02-03,A+ -James Wiggins,Male,7714,1932-10-27,AB+ -Jason Luna,Male,7716,1973-06-25,B+ -Sheila Edwards,Male,7717,1959-07-13,O+ -Sherry Morris,Male,7718,1948-04-27,A- -Kerry Pittman,Male,7719,1985-10-15,AB+ -Brandon Esparza,Female,7720,1977-05-11,AB- -Kim Powers,Female,7721,1947-05-30,B- -Deborah Taylor,Male,7722,1980-10-30,A- -Kimberly Cohen,Female,7723,1983-08-12,AB+ -Jonathan Cervantes,Male,7724,1991-05-25,O+ -Jasmine Sandoval,Male,7725,1934-01-02,A- -Carlos Hernandez,Female,7726,1972-06-20,A- -Jacqueline Morgan,Male,7727,1958-12-10,A+ -Nathan Campbell,Male,7728,1973-07-11,O- -Sonya Williams,Female,7729,1961-11-20,AB+ -Lisa Powell,Male,7730,1972-05-14,O- -Chad Martinez,Female,7731,1949-04-08,AB- -Christina Jackson,Male,7732,1956-01-04,AB+ -Cassidy Harrison,Female,7733,1988-07-13,AB+ -Katherine Spencer,Female,7734,1966-08-26,A+ -Joshua Cook,Female,7735,2000-07-17,B- -Richard Norton,Female,7736,1989-05-23,O+ -Madison Wilson,Male,7737,1947-01-13,O+ -Hannah Bennett,Male,7738,1994-04-09,O+ -Kevin Neal,Male,7739,1951-04-10,B+ -Thomas Parsons,Male,7741,1976-09-27,AB- -Larry Robinson,Female,7742,1969-04-22,A- -Elizabeth Owens,Female,7743,1987-08-15,B- -Michele Anderson,Male,7744,2000-08-04,O- -Marcus Harris,Female,7746,1980-01-17,O+ -Dana Mcgee,Male,7748,1950-03-26,B+ -Tracy Reynolds,Female,7749,1943-06-24,O- -Adam Soto,Female,7750,1967-05-06,B- -Alexis Holt,Female,7751,1992-03-02,AB- -Anthony Parker,Male,7752,1957-05-22,B- -Michelle Jones,Male,7753,1983-07-29,A+ -Pamela Gonzalez,Male,7754,1985-04-03,A- -Alice Juarez,Female,7755,1944-03-06,O+ -Stephanie Ware,Male,7756,1971-09-23,AB- -Susan Taylor,Female,7758,2001-10-15,A+ -Philip Thompson,Female,7759,1940-11-12,O+ -Bridget Williams,Female,7760,1937-06-09,B- -Michael Gregory,Female,7761,1975-05-19,B- -Jimmy Sanchez,Male,7762,1966-12-29,B+ -Patrick Wallace,Male,7763,1978-07-07,AB+ -Joanne Ortiz,Female,7764,1952-05-26,AB+ -Sandra Perez,Male,7765,1965-07-31,B- -Misty Sanders,Female,7766,1960-12-07,B- -Chelsea Greene,Male,7767,1975-11-23,O- -Lisa Williams,Male,7768,1985-05-05,B+ -Sherry Ho,Female,7769,1947-06-21,A- -Maria Spencer,Female,7771,1931-09-08,O- -Daniel Braun,Female,7772,1981-03-28,A- -Joshua Edwards,Female,7773,1979-08-30,A+ -Sarah Thomas,Female,7774,1931-04-09,AB+ -Tracie Oconnell,Male,7775,1955-01-28,AB+ -Patrick Hartman,Male,7776,1986-07-17,B+ -Karen Ross,Female,7778,1938-08-25,B- -Patricia Roberts,Female,7780,1984-10-12,B- -James Elliott,Male,7781,1966-10-13,A+ -Dr. Christian Lee,Male,7782,1943-07-10,AB- -Amy Gonzalez,Female,7783,1944-10-31,AB- -Michael Gutierrez,Male,7784,1991-04-19,B+ -Katherine Garcia,Female,7785,1954-04-26,AB- -Isaiah Parker,Female,7786,1945-05-05,AB+ -Margaret Gordon,Female,7787,1936-01-22,O- -Tricia Perez,Male,7789,1991-08-13,AB- -Daniel Powell,Male,7790,1990-10-15,O+ -Tracy Hunt,Female,7791,1975-11-27,B+ -John Silva,Male,7792,1981-01-13,A+ -Michelle Walls,Male,7793,1962-01-08,AB- -Joanna Carpenter,Male,7794,1978-09-22,O+ -Abigail Nixon,Female,7795,1956-10-06,AB- -Heather Robinson,Male,7796,1969-11-11,O- -Ariana Hansen,Female,7797,1946-10-30,O- -Brooke Alvarez,Male,7798,1931-01-07,AB- -Brandon Carey,Male,7799,1990-10-03,B+ -Nathan Williams,Female,7800,1945-03-28,B+ -Teresa Zimmerman,Female,7801,1954-02-06,O+ -Kelly Moore,Female,7802,1952-09-29,A+ -Joseph Baker,Female,7803,1950-05-13,O+ -William Owens,Male,7804,1931-03-23,A+ -Thomas Morris,Female,7805,1933-10-23,AB- -Joel Rodriguez,Female,7806,1961-07-13,A+ -Trevor Schneider,Male,7807,1978-07-12,B- -Cindy Stephenson,Female,7808,1972-04-24,AB+ -Beverly Johnson,Female,7809,1982-11-27,A- -Stephen Mccoy,Female,7810,1962-07-23,AB+ -Keith Guerra,Male,7811,1971-01-24,O- -Jacob Wells,Female,7812,1946-05-06,B- -Heidi Yang,Male,7813,1955-05-15,AB+ -Jody Garcia,Male,7814,1973-06-05,AB- -Matthew May,Female,7815,1988-01-14,A+ -Donna Alvarado,Female,7816,1984-08-18,A+ -Lindsay French,Female,7817,1944-12-07,O+ -Jay Williams,Male,7818,1938-08-17,O+ -Samantha Ruiz,Male,7819,2001-09-06,B+ -Kenneth Phillips,Male,7820,1972-02-16,A+ -Mrs. Catherine Yates MD,Female,7821,1947-07-25,B+ -Andres Bennett,Female,7822,1942-10-02,AB- -Gary Clarke,Female,7823,1993-11-17,A+ -Katherine Mullins,Male,7824,1958-09-17,O+ -James Sloan,Female,7825,1996-08-09,AB+ -Barbara Adams,Female,7826,1984-11-19,B+ -Stephanie Williamson,Female,7828,1987-02-17,B+ -Zachary Mccann,Male,7829,1987-12-29,O- -Sara Davis,Male,7830,1970-10-12,O+ -Hailey Ali,Male,7831,1988-09-25,AB- -Richard Romero,Female,7832,1945-01-02,B+ -Kristen Singleton,Male,7833,1951-12-30,AB+ -Debra Carter,Male,7834,1932-09-10,AB+ -Robert Colon,Female,7835,1990-03-18,AB+ -Sandra Hernandez,Male,7837,1953-05-23,B- -Erin Mathews,Female,7838,1957-02-24,B- -Ronald Le,Female,7839,1957-10-09,A- -Gary Wall,Male,7840,2000-10-15,AB+ -Bonnie Wood,Male,7841,1972-08-29,B+ -Gary Gray,Female,7843,1935-03-23,AB- -Bridget King,Male,7844,1993-10-25,A+ -Ryan Farmer,Female,7845,1955-03-27,AB- -Aaron Daugherty,Male,7846,1953-12-03,B- -Cheryl Moss,Male,7847,1967-09-01,O+ -Dr. Lawrence Bowen,Male,7848,1941-06-06,B+ -Jessica Mora,Male,7849,1999-09-20,A- -Erica Padilla,Male,7850,1973-01-03,B- -Diamond Campbell,Male,7851,1994-10-01,A+ -Patricia Simmons,Male,7852,1955-06-16,O- -Raymond Butler,Female,7853,1935-06-14,A- -Brenda Hughes,Male,7854,1945-04-28,B- -Annette Rosales,Male,7855,1974-10-31,AB- -Emily Miranda,Male,7856,1985-10-21,A- -Jordan Garcia,Female,7857,1940-05-03,B+ -Carl Burns,Male,7858,1999-10-22,AB- -Samantha Costa,Female,7859,1987-07-30,AB+ -Travis Williams,Female,7860,1980-07-02,AB+ -Jay Salazar,Male,7861,1987-02-22,AB+ -Sarah Murphy,Female,7862,1973-01-01,A- -Gregory Martinez,Female,7863,1970-02-05,O- -Matthew Miller,Male,7864,1967-06-04,A+ -Angela Stewart,Female,7865,1973-09-12,B+ -Krystal Hamilton,Male,7866,1961-02-04,A- -Dorothy Chase,Female,7867,1942-02-22,O+ -Dalton English,Female,7868,1982-02-05,B+ -Gary Henderson,Female,7869,1973-04-09,AB- -Dr. Cassandra Austin,Female,7870,1977-09-20,AB- -Lindsay Sutton,Female,7871,1970-01-17,A- -Amy Giles,Male,7872,1951-10-09,A- -Danielle Lloyd,Male,7873,1947-08-29,A+ -James Jimenez,Male,7874,1982-03-14,O- -Tiffany Horton,Female,7875,1938-10-05,A- -Daniel Peters,Male,7876,1948-07-13,AB+ -Collin Mcdonald,Male,7877,1954-12-31,A+ -Linda Jones,Male,7878,1995-03-25,O+ -Paul Black,Female,7879,1953-08-21,AB+ -Andrew Silva,Male,7880,1981-11-03,O+ -April Clements,Male,7881,1941-07-27,B- -Roger Jordan,Male,7882,1976-06-28,O+ -Joel Roman,Male,7883,1946-07-30,AB+ -Carrie Hancock,Female,7884,1934-02-14,B- -Stacy Carter,Female,7885,1954-10-15,AB+ -Jamie Evans,Female,7886,1973-02-13,AB- -Stephanie Parsons,Female,7887,1959-08-29,AB+ -Sarah Farmer,Male,7888,1974-10-01,B- -Chad Clark,Female,7889,1992-07-26,O+ -Claire Glass,Male,7890,1994-09-02,AB- -Jordan Pope,Male,7891,1970-06-23,O- -Kenneth Martin,Female,7892,1934-04-01,O- -Dana Mathews,Female,7893,1971-06-29,B+ -Hannah Shelton,Male,7894,1967-10-13,O- -Monique Baker,Male,7895,2002-01-15,O- -Christopher Johnson,Male,7896,1948-10-05,A+ -Sandra Gardner,Male,7897,1933-12-20,O- -Stephen Ingram,Female,7898,1991-02-27,B- -Derek Mitchell,Male,7899,1998-01-04,A- -Frederick Kaufman,Female,7900,1996-11-16,O- -Zoe Adkins DVM,Female,7901,1937-04-13,AB+ -Shawn Hancock DVM,Male,7902,1950-07-24,A- -Tammy Collier,Female,7903,1996-06-20,O- -Katherine Powell,Female,7904,1995-03-30,A- -Sarah Estes,Female,7905,1937-06-14,O+ -John Richmond MD,Male,7906,2001-04-16,B- -Robert Nichols,Female,7907,1964-01-27,B- -Kevin Hill,Male,7908,1956-05-21,B+ -Amber Wong,Female,7909,1958-09-21,A- -Eric Norman,Male,7910,1938-01-04,B+ -Crystal Gardner,Male,7911,1956-11-24,AB- -Calvin Wright,Female,7912,1994-04-23,A+ -Maria Chavez,Male,7914,1947-02-01,AB+ -Terry Archer,Female,7915,1976-04-05,A- -Bradley Carr,Female,7916,1930-08-04,B- -Tonya Gentry,Female,7917,1949-12-26,B+ -Lori Jimenez,Female,7918,1961-07-20,O+ -Kelly Burgess,Female,7919,1958-05-18,O- -Jessica Moyer,Male,7920,1938-08-20,B- -Joseph Rogers,Female,7921,1995-04-04,O+ -Blake Barnett,Female,7922,1934-09-03,O- -Wendy Davis,Female,7923,1958-03-13,A+ -Garrett Mccann,Male,7924,1934-04-17,B- -Douglas Holland,Female,7925,1958-06-23,B+ -Elizabeth Robertson,Male,7926,1958-04-29,B- -Rachel Jackson,Female,7927,1933-02-02,A- -Rebecca Ortega,Female,7928,1984-06-20,A- -Joshua Blackburn,Female,7929,1951-07-17,O+ -Stephen Miller,Male,7930,1981-05-02,B+ -Bethany Farrell,Female,7931,1945-04-15,AB- -Jeremy Perez,Female,7932,1943-05-30,A- -Jacob Fields,Female,7933,1990-07-07,AB+ -Latasha Stokes,Male,7934,1946-06-07,A+ -Jill Thompson,Female,7936,1960-06-05,AB+ -Shawn Avila,Male,7937,1942-07-04,B- -Mercedes Mitchell,Male,7938,1955-05-21,AB+ -Daniel Kim,Female,7939,1969-04-14,O- -Wendy Harper,Female,7940,1962-01-16,A+ -Alexandra Lara,Female,7941,1966-06-30,AB+ -Steven Ferguson,Male,7942,1937-07-04,O- -Linda Jackson,Male,7943,1983-02-16,O+ -Donald Olson,Female,7944,1947-02-17,AB+ -Patricia Oliver,Female,7945,1930-08-17,A+ -Lindsay Sosa,Female,7946,1997-10-02,O- -Ashley Beck,Male,7947,1975-08-31,AB+ -Melissa Barnes,Female,7948,1941-09-24,O+ -Stephanie Smith,Male,7949,1998-06-14,AB+ -Jennifer Johnson,Female,7951,1966-04-26,O- -Mr. Jeff Jenkins,Female,7952,1966-08-30,AB+ -Jose Johnson,Male,7953,1993-06-24,A+ -Rebecca Wilkerson,Male,7954,1932-07-07,B- -Jose Peterson,Male,7955,1961-05-03,B+ -Seth Marshall,Female,7957,1931-05-14,B+ -John Jenkins,Female,7958,1937-09-10,O- -Ricky Rollins,Male,7959,1943-08-02,O- -Erik Liu,Male,7960,1954-09-09,O- -Amanda Hale,Female,7961,1940-05-07,O- -Chelsea Mitchell,Male,7962,1957-07-08,AB+ -John Lopez,Female,7963,1935-10-20,A+ -Scott Hall,Male,7964,1947-07-02,B+ -Amy Rivera,Female,7966,1930-05-26,O+ -David Morse,Male,7967,1968-02-20,B+ -Darryl Gill,Female,7968,1996-08-08,A+ -Eric Finley,Male,7969,1970-11-04,O- -Haley Schmidt,Female,7970,1942-07-02,AB- -Mark Oconnor,Female,7971,1975-05-21,AB+ -Jeff Sparks,Female,7972,1989-01-22,AB- -Barbara Schwartz,Male,7973,1948-03-04,AB+ -Mitchell Hampton,Male,7974,1952-07-27,O- -Jeremy Dunn,Female,7975,1936-08-07,AB+ -Patrick Nelson,Male,7976,1934-12-26,O- -Deanna Yu,Male,7977,1982-12-22,A+ -Lisa Winters,Female,7978,1936-11-26,A- -Aaron Williamson Jr.,Female,7979,2002-05-28,B- -Guy Nichols,Female,7981,1981-11-21,AB+ -Denise Norman,Female,7982,1946-02-08,O- -Sarah Cherry,Female,7983,1935-02-11,AB- -Brandon Garcia,Male,7984,1950-06-10,O- -Emma Chen,Male,7985,1995-09-03,AB- -Victor Young,Female,7986,1961-05-19,B+ -Tracy Brown,Male,7988,1983-08-14,AB+ -Madeline Robles,Male,7989,1946-09-17,O+ -Brian Smith,Female,7990,1963-05-25,AB- -Scott Anderson,Male,7991,1972-03-25,O- -Whitney Caldwell,Female,7993,1973-12-14,AB+ -Maria Thomas,Male,7994,1930-08-29,O- -Heather Burgess,Male,7995,1984-04-11,O+ -Misty Robbins MD,Male,7996,1942-09-06,B- -Steven Sanchez,Female,7997,1956-04-13,A- -Rachel Olsen,Male,7998,1962-01-07,A- -Amy Townsend,Male,7999,1997-07-06,O+ -Lorraine Zuniga,Female,8000,1943-11-26,A+ -Vanessa Ford,Male,8001,1940-04-26,AB+ -Micheal Young,Male,8002,1955-01-12,O+ -Rebecca Chavez,Male,8003,1951-11-22,B- -Misty Murray,Male,8004,1998-12-16,O- -Emma Farmer,Male,8005,1992-06-17,AB+ -Ashley Cox,Female,8006,1966-05-08,B+ -Caroline Sanders,Male,8007,1984-09-23,AB- -Amber Pruitt,Male,8008,1964-11-24,O+ -Sarah Gutierrez,Male,8009,1961-06-02,B+ -Ashlee Black,Female,8010,1980-10-22,B+ -Michael Williams,Male,8011,2001-06-15,B- -Michael Lewis,Female,8012,1947-12-26,B+ -Sheryl Hudson,Female,8013,1937-02-14,O+ -Rebecca Ryan,Female,8014,1982-02-18,A+ -Keith Carroll,Male,8016,1946-08-25,A- -Robert Morris,Female,8017,1967-12-07,A- -Diana Valenzuela,Male,8018,1994-11-30,AB+ -Christopher Potter,Female,8019,1935-11-30,O- -Denise Jimenez,Female,8020,1985-05-06,B- -Derek Nichols,Female,8022,1952-10-05,O+ -Jason French,Female,8023,1941-12-17,AB+ -Joseph Lopez,Female,8024,1933-08-10,O+ -Sherry Dennis,Female,8025,1987-02-28,AB+ -David Dunlap,Male,8026,1966-05-04,A- -Nicole Carter,Female,8027,1933-05-15,B+ -Andrea Smith,Female,8028,1977-12-17,A+ -Emily Moon,Female,8029,1995-09-08,O+ -Victoria Mendoza,Male,8030,1933-07-25,A+ -David Sawyer,Female,8031,1973-08-10,AB- -Jackson Johnson,Female,8032,1935-03-26,AB- -Derek Coleman,Male,8033,1996-12-26,B+ -Anna Wallace,Male,8034,1970-10-22,A- -Tammy Cox,Female,8035,1952-03-13,B- -Jason Cooper,Male,8036,2001-05-29,A+ -Joel Brown,Female,8037,1996-09-05,AB+ -Leslie Harvey,Male,8038,1980-02-08,B- -Sue Gray,Female,8039,1994-01-05,O+ -Ethan Cooper,Female,8040,1937-07-20,O+ -Carla Chavez,Female,8041,2002-08-23,AB+ -Thomas Colon,Male,8042,1947-09-13,O- -Ellen Clark,Male,8043,1975-05-07,B+ -Jessica Weaver,Male,8044,1954-11-19,O- -Eric Jones,Female,8045,1992-04-11,B+ -Ashley Davis,Male,8046,1971-05-30,O+ -Dr. James Williams,Female,8047,1969-01-16,B+ -Kara Sweeney,Female,8048,1956-09-04,A- -Jeffrey Lowe,Female,8049,1953-10-10,A- -Karen Wolfe,Female,8050,1930-03-02,AB+ -Julie James,Female,8051,1955-05-19,O- -Dr. Jillian Graves,Female,8052,1993-02-24,A+ -Steven Byrd,Female,8053,1937-12-05,O+ -Kenneth Vaughn,Male,8054,1971-12-15,AB- -Amanda Miller,Female,8055,1963-10-27,A+ -Bradley Ruiz,Female,8056,1962-07-07,AB+ -Manuel Jones,Male,8057,1976-06-17,AB- -Robert Williams,Male,8058,1945-12-11,A+ -Debra Anderson,Female,8059,1962-10-02,O- -Sheri Jones,Female,8060,1931-06-19,B+ -Brooke Wilson,Female,8061,1984-05-03,A- -Isaiah Rodriguez,Male,8062,1940-12-25,O- -Lisa White,Male,8063,1984-02-29,AB- -Stephanie Hensley,Male,8064,1935-11-26,B+ -Katherine Brooks,Female,8065,1991-03-12,B+ -Christine Hurley,Female,8066,1994-12-04,B+ -Vickie Flynn,Male,8067,1949-01-18,B- -Erik Smith,Male,8068,1955-03-07,A- -Gregory Webb,Male,8070,1959-04-10,O+ -Kayla Hill,Male,8071,1989-06-09,AB- -David Mack,Female,8072,1966-06-28,AB+ -Christopher Robertson,Female,8073,1998-03-07,O+ -Kimberly Cruz,Male,8074,1987-09-26,A+ -Joseph Shaffer,Female,8075,1937-05-30,A- -John Marshall,Male,8076,1930-01-02,AB+ -Nicole Harris,Male,8077,1955-04-05,AB+ -Natasha Meyer,Male,8078,1997-08-17,O- -David Kelly,Male,8079,1977-11-18,A+ -Shannon Riley,Female,8080,1970-07-30,O- -Eric Hall,Female,8081,1959-10-27,O- -Debra Henson,Female,8082,1935-02-05,B+ -Rachel Matthews,Female,8083,1944-06-05,A- -Richard Gould,Female,8084,1993-11-13,B- -Gilbert Gordon,Female,8085,1960-06-04,O- -Christopher Robinson,Female,8086,1972-12-25,O+ -Melanie Murphy,Female,8087,1952-10-12,AB+ -Adrian Curry,Male,8088,1976-01-21,A- -Robert Hensley,Female,8089,1988-02-16,O- -Eric Houston,Male,8090,1959-05-29,AB- -Jeremy Stein,Male,8091,1938-07-27,O+ -Erik Macias,Male,8092,2000-08-18,A+ -Jason Kent,Female,8093,1996-12-25,AB+ -Kimberly Powell,Male,8094,1977-04-29,A- -Alison Nguyen,Male,8095,1969-05-16,AB- -Brooke Sutton,Female,8096,1961-02-07,A- -Matthew Salas,Male,8097,1944-10-12,A- -Barbara Sanford,Male,8098,1993-02-21,AB- -Jeremiah Young,Female,8099,1945-02-20,A+ -Patrick Russo,Male,8100,1992-12-09,AB- -Donald Watkins,Male,8101,1940-09-23,O+ -Wesley Jackson,Male,8102,1977-10-12,B+ -Laura Burton,Male,8103,1974-12-06,A- -Richard Flores,Male,8104,1948-12-29,A+ -Deanna Jones,Male,8105,1994-09-30,A- -Laurie Bates,Female,8106,1949-06-28,AB- -Maria Salas MD,Female,8108,1976-05-10,A+ -Daniel Ramos,Male,8109,1959-09-26,A+ -Bryan Martin,Female,8110,1998-11-02,O- -Richard Kelly,Male,8111,1999-03-19,O- -Anne Case,Male,8112,1944-08-13,B+ -Carolyn Allen,Male,8113,1964-02-24,O- -Shawn Zuniga,Female,8114,1938-08-07,AB- -Johnny Gillespie,Female,8115,1951-11-23,AB+ -Robert Wright,Female,8117,1972-05-29,O+ -James Kelly III,Female,8118,1979-03-19,AB- -Christine Taylor,Male,8119,1968-11-18,A- -Christina Andrews,Male,8120,1951-04-17,O- -Jason Barr,Female,8121,1943-07-15,A+ -Jenna Rodriguez,Female,8122,1965-04-13,AB- -Andrew Taylor,Female,8123,1954-08-20,A+ -Kelsey Bass,Female,8124,1951-05-09,B+ -Erik Robinson,Female,8125,1985-03-28,A- -Matthew Grant,Male,8126,1978-07-29,A+ -Lisa Harper,Female,8127,1952-02-27,A+ -Steve Johnson,Male,8128,1938-10-31,B+ -Larry Riddle,Male,8129,1962-05-03,B- -Brett Walker,Female,8130,1970-11-01,AB+ -Alfred Wang,Female,8131,1936-09-26,O+ -Jeremy Solis,Male,8132,1953-12-03,O+ -Mr. Matthew Murray,Male,8133,1968-02-11,O- -Danny Schultz,Female,8135,1982-04-30,B- -Kathy Moses,Male,8137,1993-04-10,AB- -Anna Frazier,Male,8138,1959-06-12,B+ -Stephanie Nelson,Male,8139,1995-05-05,AB- -Daniel Ellis,Male,8140,2002-12-24,O+ -Frank Johnson,Male,8142,1992-06-18,AB+ -Alexander Guzman,Female,8143,1959-08-30,A+ -Cassandra Mclaughlin,Female,8144,1938-07-12,A- -Peggy Brooks,Male,8145,2002-07-24,O- -Hannah Garcia,Male,8146,1976-07-18,AB+ -Mitchell Miller,Male,8147,1972-01-21,O+ -David Baird,Male,8148,1984-11-01,B- -Debbie Mclean,Male,8149,1992-06-01,O- -Whitney Bullock,Female,8150,1978-02-25,B+ -James Stephens,Female,8151,1957-03-31,O+ -Tracy Murray,Female,8152,1937-01-09,AB- -Brian Garrison,Male,8153,1938-09-10,O- -Bradley Burton,Female,8154,1983-04-18,B+ -Austin Burke,Male,8155,1937-03-15,O+ -Gregg Fowler,Female,8156,1938-08-28,AB- -Ariel Fletcher,Female,8157,1941-10-31,A- -Wayne Watson,Female,8158,1999-02-13,AB- -Amanda Andrews,Male,8159,1966-02-25,A+ -Christian Kim,Male,8160,1992-01-09,B+ -Aaron Edwards,Female,8161,1949-06-09,B+ -Roberto Roberts,Male,8162,1995-01-20,B- -Sarah James,Male,8164,1961-02-07,B+ -Elizabeth Singh,Female,8165,1958-03-28,A+ -Lori Hansen,Male,8166,1966-12-20,O+ -Matthew Smith,Female,8167,1986-01-09,A- -Matthew Henry,Male,8168,1945-11-19,AB+ -Megan Gentry,Male,8169,1968-09-08,A- -Anthony Nguyen,Male,8170,1969-01-27,A- -Alfred Hernandez,Male,8171,1974-01-05,B+ -David Lang,Male,8173,1941-05-14,A- -Jordan Lee,Male,8174,1954-05-26,B+ -Curtis Wilson,Male,8175,1981-12-23,A+ -Brianna Griffith,Female,8176,1991-10-07,AB+ -Sue Perez,Female,8177,1965-03-19,AB- -Emma Watson,Male,8179,1931-10-29,B+ -Kyle Lutz,Male,8180,1975-08-20,O+ -Elizabeth Martinez,Male,8181,1945-12-28,B- -Lisa Houston,Male,8182,1939-10-06,AB+ -Jamie Fernandez,Male,8183,1958-07-19,O+ -Christopher West,Female,8184,1987-06-08,B+ -Mrs. Virginia Marshall MD,Female,8185,1978-11-14,AB+ -Matthew Barrett,Female,8186,1997-08-22,B+ -Samuel Rose,Female,8187,1987-10-27,A+ -Adam Lee,Female,8188,1991-12-28,O+ -Thomas Williams,Female,8189,1950-03-03,A+ -Rodney Wright,Female,8190,2002-12-05,O- -Tiffany Mahoney DVM,Male,8191,1972-10-17,O+ -Pamela Johnson,Female,8192,1984-11-29,AB+ -Ashley Sanchez,Female,8193,1950-03-19,O- -Shawn Carrillo,Female,8194,1992-11-22,A+ -Ebony Fleming,Female,8195,1974-03-20,A+ -Donna Davis,Female,8196,1973-06-15,AB+ -Rebecca Hernandez,Male,8197,1966-05-05,O- -Crystal Ward,Female,8199,1932-09-19,A- -Cindy Kim,Female,8200,1948-10-11,AB- -Michael Dominguez,Male,8201,1935-10-23,B- -Jesse Morales,Male,8202,1963-12-02,AB+ -Robert Dominguez,Male,8203,1980-12-11,A+ -William Welch,Female,8204,1987-03-29,O+ -Kelly Watson,Female,8205,1983-08-03,O- -Richard Woodard,Female,8206,1983-09-21,B+ -Todd Washington,Female,8207,1941-04-29,AB- -Kim Mills,Male,8209,1975-10-19,B- -Chelsea Williams,Female,8210,1964-08-23,O+ -Danielle Griffin,Female,8211,1972-05-19,O- -Heidi Douglas,Male,8213,1987-09-27,AB- -Edward Williams DDS,Female,8214,1943-03-17,AB+ -Eddie Barber,Male,8215,1943-06-22,B+ -Matthew Wyatt,Female,8216,1983-08-16,AB- -Candice Cunningham,Female,8217,1944-12-24,AB+ -Allison Wilson,Male,8219,1977-04-16,B+ -Aaron Yang,Female,8220,2002-11-18,B+ -Melissa Johnson,Female,8221,1956-02-07,A- -Holly Silva,Male,8222,1949-07-07,O- -Javier Guzman,Female,8223,1940-03-09,B+ -Jacob Sanders,Female,8224,1982-10-02,AB- -Lauren Williams,Female,8225,1972-12-22,B+ -Ruben Cisneros,Female,8226,1986-05-23,B- -Christopher Miller,Female,8227,1993-12-01,AB- -Alejandra Nunez,Male,8228,1981-06-21,O- -Ronald Bauer,Male,8229,2000-05-06,O+ -Elizabeth Nunez,Female,8230,1983-01-28,O+ -Emily Mendez,Female,8231,1979-08-14,AB- -Jonathan Thomas,Female,8233,1933-09-26,AB- -Miguel White DVM,Female,8234,1937-06-01,AB+ -Garrett Gutierrez,Female,8236,1965-07-18,O- -Autumn Mcdowell,Male,8238,1977-05-22,AB+ -Tina Evans,Female,8239,1930-06-01,B- -Tyler Gamble,Male,8240,1998-11-21,A- -Ian Porter,Male,8241,1996-11-18,O+ -Gabriel Phillips,Female,8242,1977-05-10,B+ -Julia Combs,Male,8243,1936-05-10,B+ -Anthony Vega,Male,8244,1967-12-18,A+ -Blake Cannon,Female,8245,1931-05-11,A+ -Connor Pierce,Male,8246,1962-10-27,O- -James Porter,Male,8247,1935-11-19,B+ -Ashley Greer,Female,8248,1931-07-11,O- -Mark Vargas,Female,8249,1966-09-02,A+ -Michael Holmes,Male,8250,1934-04-02,O- -Derek Morris,Female,8251,1980-08-30,O+ -Katherine Greer,Male,8252,1938-06-13,B- -Jessica Sanders,Male,8253,1984-06-14,B- -Daniel Barrett,Female,8255,1930-06-06,B+ -Jane Perez,Male,8256,1954-06-10,AB+ -Mr. James Thomas,Male,8258,1995-05-29,O+ -Calvin White,Female,8260,1949-08-11,A- -Kyle Morris,Female,8261,1989-12-24,O- -Tyler Freeman,Male,8262,1995-07-06,O- -Dustin Myers,Male,8264,1952-01-21,B+ -Jennifer Hale,Female,8265,1942-09-29,A- -Jennifer Estrada,Female,8266,1991-12-21,AB+ -Carrie Rice,Female,8267,1961-05-26,AB+ -Mark Peterson,Male,8268,1994-09-12,O- -Brandon Kim,Female,8269,1930-06-04,O- -David Zavala,Female,8270,1951-10-08,A- -Anthony Norris,Female,8271,1971-12-15,B+ -Alexandra Richardson,Female,8272,1977-08-02,O+ -Daniel Gregory,Male,8273,1942-09-01,A- -Amanda Gardner,Male,8274,1982-10-24,AB+ -Joann Johnson,Female,8275,1969-01-15,A- -Breanna Nielsen,Male,8276,1970-09-21,A- -Alexander Turner,Male,8277,1965-08-21,A- -Sierra Hansen,Male,8278,1955-08-27,O+ -Timothy Le,Female,8279,1930-06-03,AB- -Lauren Pena,Female,8280,1951-07-03,O- -Brett Rush,Male,8281,1963-11-23,A+ -Katherine Ward,Female,8282,1973-03-28,B+ -Jackie Owens,Male,8283,1992-08-08,A- -Kevin Barrett,Male,8284,1945-05-01,B+ -Kyle Francis,Female,8285,1979-07-23,A+ -Donald Mcclain,Male,8286,1970-06-25,AB- -Bradley Swanson,Female,8287,1960-04-02,O- -Alejandro Gray,Male,8288,1932-02-26,AB+ -Allison Rodgers,Female,8289,1941-12-17,A+ -William Robinson,Female,8290,1997-01-09,B+ -Jason Little,Male,8291,1970-11-10,B+ -Jason Phillips,Female,8292,1941-09-12,B+ -Christopher Hernandez DDS,Female,8293,1985-03-04,AB+ -Curtis Gonzalez,Male,8294,1999-01-17,A+ -Gregory Wilson,Male,8295,1946-05-31,B+ -Philip Cline DVM,Male,8296,1994-08-13,AB+ -Lori Scott,Female,8297,1999-02-09,A- -Tonya Blair,Male,8298,1984-03-28,B+ -Kendra Cox,Female,8299,1985-03-20,A+ -Rachel Diaz,Female,8300,1989-09-19,AB+ -Gabriel Flores,Female,8301,1949-03-13,AB- -David Miles,Female,8302,1996-11-26,O+ -Lauren Gomez,Female,8303,1984-12-28,AB+ -Matthew Gregory DDS,Female,8304,1968-07-26,O+ -Karen Walker,Female,8305,1955-05-11,O+ -James Murray,Male,8307,1981-04-16,O- -Harry Moon,Male,8308,1949-03-13,A- -Julie Schmidt,Male,8309,1994-03-05,AB- -Amy Salazar,Male,8310,1933-04-27,O+ -Gabriel Sanders,Female,8311,1993-12-05,B- -Rebecca Shaw,Female,8313,1968-09-19,A- -Susan Wilkerson,Male,8314,1955-08-02,O+ -Zachary Allen,Female,8316,1948-05-10,AB+ -Lawrence Watkins,Male,8317,1973-07-10,O+ -Rhonda Colon,Male,8318,1995-03-18,AB+ -Austin Rogers,Male,8319,1981-09-25,B+ -Travis Gomez,Female,8320,1930-05-24,AB+ -Evan Pittman,Female,8321,1959-03-31,B- -Christine King,Female,8322,1950-03-04,O+ -Ryan Nichols,Female,8323,1938-11-03,O+ -Todd Glass,Male,8324,1942-07-19,A+ -Thomas Lowery,Female,8325,1965-12-30,A- -Rachel Jones,Female,8326,1961-03-16,A+ -Sandra Rice,Female,8327,1946-07-07,O- -Mike Palmer DVM,Male,8328,1941-08-14,AB+ -Eric Quinn,Male,8330,1967-05-14,B- -Christian Bender,Female,8331,1961-06-23,A+ -Felicia Boyd,Male,8332,1956-02-23,O+ -Joshua Holmes,Female,8333,1971-06-21,O- -Michelle Kelly,Male,8334,1982-04-15,B- -Jennifer Stevens,Female,8335,1941-06-17,AB- -Jade Waters,Male,8336,2001-01-01,O+ -Jordan Rogers,Female,8337,1964-03-09,O+ -Barry Bryant,Male,8338,1950-01-24,B+ -John Green,Female,8339,1987-07-18,AB- -Robert Rodriguez,Male,8340,1983-08-07,AB+ -Catherine Osborne,Male,8341,1975-09-06,AB+ -Joyce Austin,Female,8342,1976-11-02,A+ -Charles Simpson,Male,8343,1990-06-13,A+ -Dr. Kimberly Khan,Female,8344,1938-03-30,O+ -David Shah,Male,8345,1945-03-18,A- -Dorothy Ingram,Male,8346,1930-03-09,O+ -Ricardo Wilkins,Female,8347,1963-05-13,A+ -Kayla Hayden,Male,8348,1981-09-20,AB- -Colton Jones,Male,8349,1934-03-18,A+ -Melissa Snyder,Male,8350,1975-12-12,O+ -Thomas Garcia,Male,8351,1961-08-15,B- -Chelsey Shepherd,Male,8352,1945-07-21,O+ -Jamie Ward,Male,8353,2000-06-21,B- -John Cook,Female,8354,1988-01-26,B- -Paul Roberts,Male,8355,1953-12-13,O+ -Nancy Davila,Male,8356,1991-06-02,A- -Alexis Shaw,Male,8357,1971-05-22,A- -Noah Nelson,Male,8358,1984-11-18,O- -Barbara Ross,Female,8359,2002-01-30,A+ -Stephanie Byrd,Male,8360,1938-01-20,A- -Jay Ray,Female,8361,1959-09-15,AB+ -Ricky Matthews,Female,8362,1949-05-08,O+ -Shannon English,Male,8363,1988-10-18,B- -Anthony Stein,Female,8364,1957-10-17,O+ -Kevin Tate,Male,8365,1979-03-30,A+ -David Rice,Male,8366,1978-11-29,AB- -Tracy Dalton,Male,8367,1991-12-01,A- -Shawn Nguyen,Female,8368,2000-04-21,A- -Danny Wright,Female,8369,1983-10-30,A- -Ricky Daniels,Male,8370,1971-06-01,B- -Joseph Whitney,Female,8371,1972-09-30,AB+ -Traci Henry,Female,8372,1947-08-27,B+ -Margaret Mayo,Male,8373,1945-01-21,AB+ -Samantha Hicks,Male,8374,1947-03-06,A- -Mackenzie Ross,Male,8375,1933-07-23,AB+ -Dakota Howard,Male,8376,1990-10-15,AB- -Jason Mcdonald,Male,8377,1948-05-07,A- -Kelly Peterson,Female,8378,1943-09-04,O- -Angel Sweeney,Female,8379,1972-10-14,B- -Erin Terry,Male,8380,1950-07-04,AB- -Lisa Kelly,Female,8381,2001-06-28,B+ -Terry Irwin,Female,8382,1952-08-22,B- -Barry Williams,Female,8383,1937-10-02,B+ -Caitlin Carter,Male,8384,1961-10-07,A- -Thomas Kelly,Female,8385,1982-04-23,AB- -Karen Moore,Male,8386,1962-05-12,A- -Carrie Nguyen,Female,8387,1979-01-20,B+ -Angela Cohen,Female,8388,1997-12-08,B+ -Mary Love,Female,8389,1989-03-29,AB- -Isaac Hernandez,Female,8390,1935-06-20,A- -James Browning,Male,8391,1989-05-26,O- -Lauren Maddox,Female,8392,1961-10-24,B- -John Barrett,Female,8393,1975-08-14,AB- -Michael Gordon,Male,8394,1938-06-17,O- -Mr. Ryan Smith,Female,8395,1931-06-08,O+ -Patrick Robinson,Female,8396,1986-07-25,A- -Kevin Alvarez,Female,8397,1963-12-24,A+ -Isabel Wilson,Female,8398,1989-07-19,AB- -Jorge Day,Female,8400,1973-01-27,AB+ -Pamela Sawyer,Male,8401,1983-05-29,O- -Hannah Navarro,Male,8402,1952-05-12,O- -Crystal Avila,Female,8403,1944-03-18,AB- -Kelsey Hansen,Female,8404,1942-07-12,B+ -Dominique Morales,Male,8405,1951-02-27,O- -Erik Fletcher,Male,8406,1972-02-08,O+ -Melinda Hill,Male,8407,1934-12-03,O- -Jose Mora,Female,8408,1935-11-02,A+ -Tyler Nelson,Female,8409,1994-11-27,A+ -Tanya Rodgers,Male,8410,1970-10-18,B+ -Amy Wilson,Female,8411,1992-08-27,A- -Tonya Simpson,Female,8412,1977-02-02,A- -Joseph Rodriguez,Female,8413,1998-07-01,B+ -Crystal Cooper,Female,8415,1961-01-10,AB+ -Sheila Deleon,Female,8416,1948-04-02,O+ -Sheryl Crawford,Male,8417,1975-04-01,A+ -Luke Johnson,Male,8418,1964-03-02,B+ -Mary Powers,Female,8419,1933-11-11,AB- -Mathew Bennett,Female,8420,1964-09-04,B- -Deborah Leonard,Female,8421,1931-06-19,B- -Tammy Powell,Female,8422,2001-12-26,B- -Melanie Gonzalez,Male,8423,1939-03-19,A- -Scott Hines,Female,8424,1977-09-07,AB- -Angela Martinez,Female,8425,1939-02-25,O- -Thomas Brewer,Male,8426,2001-02-23,AB- -Donna Campbell,Female,8427,1991-07-09,O- -David Warren,Female,8428,1966-11-13,B- -Alyssa Richmond,Female,8429,1942-04-28,AB+ -Mark Tran,Female,8430,1933-03-18,AB+ -David Chan,Female,8431,1999-09-20,B+ -Mr. Glenn Hampton,Female,8432,1987-03-24,O- -Robert Waters,Male,8433,1951-12-04,B- -Steven Evans,Female,8434,1934-06-30,AB- -John Franco,Male,8435,1976-02-24,AB+ -Tammie Hansen,Female,8436,1982-11-28,O- -Aaron Oliver,Male,8437,1953-12-04,B+ -Matthew Burke,Female,8438,1942-12-10,AB- -Laura Smith,Female,8439,1962-04-12,B- -Matthew Stephenson,Male,8440,1995-11-10,O+ -Donald Decker,Male,8441,1960-03-01,B- -Anna Davenport,Female,8442,1985-01-19,A- -Christopher Williamson,Male,8443,1930-12-30,B- -Nathan Hodge,Female,8444,1958-05-12,B+ -Paul Williams,Female,8446,1939-01-23,AB- -Beth Jensen,Male,8447,1976-05-08,B+ -Angel Gill,Male,8448,1938-11-15,AB- -Brittany Rice,Male,8449,1948-04-01,A+ -Timothy Smith,Male,8450,1965-05-18,A+ -Michelle Mata,Male,8451,1935-04-21,AB- -William Peters,Male,8452,1968-03-30,AB- -Diana Maynard,Female,8453,1999-12-03,O+ -Melissa Willis,Male,8454,1960-08-28,O+ -Christy Steele,Female,8455,1962-11-07,B- -Thomas Camacho,Female,8456,1932-06-01,B+ -Laura Roberts,Female,8458,1985-05-16,A- -Rose Gonzalez,Female,8459,1948-12-15,B+ -Lisa Smith,Male,8460,1999-09-02,AB+ -Andre Clay,Male,8461,1987-06-26,B+ -Carlos Cooper,Female,8462,1967-07-14,A- -Mallory Carter,Female,8463,1999-08-28,O+ -Gail Garza,Female,8464,1944-04-01,B- -Jack Ware,Male,8465,1949-12-15,A- -Erin Williams,Female,8466,1938-10-09,B+ -Kimberly Tanner,Male,8467,1936-02-23,O- -Brandon Walker,Male,8468,1930-01-19,A+ -Ms. Emily Baxter,Female,8469,1976-08-12,A- -Sarah Davis,Male,8470,1938-06-11,AB+ -Mark Warren,Male,8471,1989-02-04,B- -James Watson,Female,8472,1953-05-01,A- -Mariah Rodriguez,Female,8473,1977-03-24,AB- -Eduardo Rasmussen,Female,8474,1932-02-13,B+ -Garrett Wagner,Female,8476,1942-12-16,O- -Michael Price,Female,8477,1984-06-28,A+ -Sara Mann,Female,8478,1948-08-09,O- -Luis Sullivan,Male,8479,1949-02-14,B- -Jesse Huber MD,Female,8480,1937-01-11,B+ -Shelby Sutton,Female,8481,1974-02-20,O+ -Amanda Brown,Female,8482,1934-08-02,A+ -George Bradley,Female,8483,1959-10-11,B+ -Shawn Fuller,Female,8484,1961-09-07,O- -Bianca Moore,Female,8485,1932-01-10,O+ -Karen Zuniga,Female,8486,1934-03-26,AB+ -Elizabeth Hebert,Male,8487,1955-07-16,B- -Gary Brown,Female,8488,1944-01-15,B- -Carol Davis,Male,8489,1993-11-17,A+ -Ryan Delgado,Male,8490,1992-12-25,O- -Eric Schroeder,Male,8491,1954-10-27,AB+ -Beverly Johnson,Male,8492,1987-05-01,AB- -Tyler Ellison,Male,8493,1958-09-23,A+ -Christina Willis,Female,8494,1990-04-25,B+ -Alicia Delacruz,Male,8495,1999-05-06,AB- -Jennifer Campbell,Female,8496,1967-08-24,A+ -Richard Lee,Male,8497,1994-05-13,O- -Miss Brianna Peterson,Female,8498,1954-10-07,AB+ -Megan Miles,Female,8499,1985-01-28,O- -Kristen Cook,Female,8500,1981-02-09,B- -Sarah Malone,Female,8501,1956-01-26,AB- -Amy Burton,Female,8502,1953-09-26,O+ -Joseph Gonzales,Female,8503,1960-11-22,A- -George Bryant,Male,8504,1949-02-28,B+ -Troy Gilmore,Male,8505,1966-10-19,B- -Larry Hernandez,Male,8506,1964-10-06,B- -Rebecca Harris,Male,8507,1967-08-08,AB- -Savannah Reed,Male,8508,1989-09-05,B+ -Jennifer Chapman,Female,8509,1933-06-23,A+ -Destiny Watson,Female,8510,1951-07-18,B- -Mary Crawford,Male,8511,1963-11-17,A- -Julie Becker,Female,8512,1981-12-26,AB+ -Courtney Clark,Female,8513,1946-04-28,B- -John May,Female,8514,1973-01-29,AB+ -Thomas Gonzalez,Female,8515,1956-06-14,O- -Bobby Odom,Male,8516,1953-06-18,B+ -Melinda Dunn,Male,8517,1950-09-10,A+ -Jessica Mckenzie,Female,8518,1979-06-17,AB+ -Philip Martin,Male,8519,1953-02-02,B- -Zachary Thompson,Female,8520,1972-11-09,A+ -Daniel Kennedy,Female,8521,1954-12-12,A- -Margaret Russell,Male,8522,1945-07-23,A+ -Melissa Mendoza,Female,8523,1972-05-19,AB+ -Kaitlyn Werner,Male,8524,1971-03-14,B+ -Ellen Sanchez,Female,8525,1952-02-19,AB+ -Robert Hardy,Female,8526,1989-07-21,O+ -Steven Willis,Female,8527,1975-01-18,O+ -Charles Mitchell,Male,8528,1985-08-08,A+ -Brian Huynh,Male,8529,1946-12-23,AB- -Cathy Lee,Male,8530,1958-02-21,B+ -Russell Mata,Male,8531,1935-07-01,AB- -Lisa Burch,Male,8532,1999-06-24,O+ -Ryan Stewart,Female,8533,1973-04-07,B- -Jessica Boyle,Male,8534,1966-06-30,O- -Angela Zhang,Female,8535,1997-02-01,A+ -Jenna Jensen,Female,8536,1937-08-11,O- -Amanda Lane,Male,8537,1988-04-30,O+ -Kyle Lynch Jr.,Male,8539,1932-01-26,AB+ -Dana Barrett,Female,8540,1947-10-14,A- -Nicole Adkins,Male,8541,1957-11-22,A+ -Jason Clay,Female,8542,1991-02-09,O+ -Victor Davidson,Female,8543,1956-01-18,B+ -Paul Blair,Male,8544,1981-03-28,B- -Mark Hanson,Female,8545,1990-06-24,A- -Linda Robertson,Male,8546,1997-08-02,A+ -Carolyn Martin,Male,8547,1977-08-22,A+ -Nicole Oconnor,Female,8548,1950-02-12,B+ -Andrew Ponce,Female,8549,1969-01-05,AB- -Felicia Hamilton,Female,8550,1970-09-27,AB+ -Todd Warren,Female,8551,1968-06-27,A+ -Justin Hancock,Male,8552,1963-01-05,AB+ -Catherine Eaton,Female,8554,1997-05-09,O+ -Roger Fuller,Male,8556,1943-07-10,B- -Cody Watts,Female,8557,1982-08-18,A- -Stephanie Jackson,Female,8558,1932-01-08,A- -Regina Robinson,Female,8559,1946-12-23,B- -Kenneth Morgan,Male,8560,1952-12-02,A+ -Felicia Webb,Male,8561,1975-06-29,A+ -Tara Holmes,Male,8562,1980-02-09,O+ -Jonathan Gibson,Male,8563,1953-05-14,AB- -Andrew Miller,Male,8564,1991-01-23,AB- -Todd Collier,Female,8565,1937-03-08,AB- -April Villegas,Male,8566,1953-09-03,AB+ -Whitney Cochran,Male,8567,1967-01-30,AB- -Rebecca Edwards,Male,8568,1992-05-20,B- -Brenda Shepard,Male,8569,1965-02-03,A- -Tami Gonzales,Female,8570,1994-03-22,A- -Jessica Noble,Female,8571,1981-02-02,AB+ -David Kelley,Female,8572,1995-02-06,O+ -Gary Lopez,Male,8573,1998-12-01,B- -Steven Jones,Male,8574,1985-06-19,A- -Drew Jarvis,Male,8575,1987-04-06,B- -Christopher Villanueva,Female,8576,1994-06-22,A- -Crystal Barnes,Male,8577,1942-04-25,O- -Herbert Collier,Female,8578,1951-09-21,O+ -Jason Melendez,Male,8579,1980-09-14,O+ -Zachary Gallagher,Male,8580,1948-06-02,B+ -Carolyn Fisher,Male,8581,1963-04-14,O- -Angela Harvey,Male,8582,1979-02-22,AB+ -Christine Richmond,Female,8583,1975-09-14,A- -Brenda Bowman,Female,8584,1998-03-23,B+ -David Walker,Male,8585,1953-08-15,A- -Richard Harris,Male,8586,1952-11-29,A- -Wendy Rojas,Female,8587,1975-03-28,AB- -Vanessa Johnson,Male,8588,1975-05-22,AB- -Jamie Martin DVM,Male,8589,1983-10-11,AB- -Michelle Martinez,Male,8590,1972-08-25,AB- -Jacob Warner,Male,8591,1983-09-19,AB- -Tony Young,Female,8592,1966-11-20,O- -Kenneth Gutierrez,Male,8593,1932-07-31,O+ -Corey Garrison,Male,8594,1942-08-26,AB+ -Tracy Love,Female,8595,1990-07-09,B- -Jenna Pierce,Female,8596,1974-05-05,AB- -Joseph Jones Jr.,Male,8597,1960-07-16,O- -Kevin Haley,Male,8598,1947-05-25,B+ -Louis Knight,Female,8599,1988-06-06,B+ -Michael Vega,Male,8600,1955-01-15,A- -Tracey Bell,Female,8601,1955-12-30,AB+ -Michael Chambers,Female,8602,1967-02-18,B+ -Jonathan Franklin,Female,8603,1984-02-12,AB+ -Robert Howell,Female,8604,1990-11-05,AB+ -Lance Blankenship,Female,8605,1937-11-20,O- -Preston Long,Male,8606,1988-03-28,B- -Stephanie Robbins,Male,8607,1931-06-30,AB- -Gregory Oliver,Male,8608,1968-09-10,AB+ -Garrett Acosta,Male,8609,1966-06-05,O- -Phillip Alvarez,Female,8610,1935-04-12,A- -Aaron Miller,Male,8611,1986-03-24,O+ -Daniel Williamson,Male,8612,1974-11-14,A- -Allison Mora,Female,8613,1961-12-17,O- -Tammy Osborne,Male,8614,1990-01-03,O- -Daniel Reyes,Female,8615,1972-02-02,O- -Andrew Lutz,Female,8616,2001-01-06,AB+ -Julie Chang,Male,8617,2002-04-09,O- -William Thomas,Male,8618,1989-08-01,O+ -Zachary Garrett,Female,8619,1991-12-04,AB+ -Jessica Russell,Female,8620,1937-04-17,A- -Caitlin Copeland,Female,8622,1971-02-28,O+ -Zachary Smith,Female,8623,1955-12-01,B+ -Michael Joseph,Male,8624,1939-02-09,A+ -Allison Brown,Male,8625,1940-01-08,A- -Michael Jackson,Male,8626,1977-12-15,O- -Miguel Anderson,Male,8628,1943-01-16,AB- -Michael Silva,Female,8629,1993-04-21,AB- -Kevin Mills,Male,8630,1959-08-25,AB+ -Matthew Dickson,Male,8631,1970-07-30,AB- -Michelle Cunningham,Male,8632,1960-09-21,A- -Joseph Harris,Male,8633,1960-09-11,AB+ -William Patel,Female,8634,1967-02-25,A- -Rebekah Simmons,Female,8636,1943-12-11,O- -Jennifer Reid,Male,8637,1946-06-28,B- -Barbara Jones,Female,8638,1964-05-31,B- -Michael Martinez,Male,8640,1983-07-05,O+ -Dylan Allen,Male,8641,1967-01-02,O- -Vanessa Jones DDS,Male,8642,1946-11-12,AB- -Edward Cooper,Female,8644,1994-11-23,O- -Stephen Mitchell,Male,8645,1966-03-16,A+ -Richard Moore,Female,8646,1953-02-14,B- -Justin Estrada,Male,8647,1989-05-22,AB- -Kendra Carroll,Male,8648,1998-03-09,A- -George Taylor,Female,8649,1960-03-06,A- -Ashley Rosario,Female,8650,1938-05-03,B- -Scott Woods,Male,8651,1956-04-26,O- -Jennifer Harris,Male,8652,1945-06-07,AB- -Richard Williams,Male,8653,1961-09-28,O+ -Robert Wong,Female,8654,1974-04-19,A- -Alejandra Hall,Female,8655,1937-12-02,O- -Kelly Fowler,Male,8656,1989-05-03,O+ -Evelyn Phillips,Female,8657,1945-11-30,B+ -Toni Lopez,Female,8658,1931-10-17,AB- -Kevin Carter,Male,8659,1989-11-12,B- -Christopher Mcclure,Male,8660,1976-12-08,B+ -James Robertson,Female,8661,1993-06-05,A+ -Joseph Smith,Female,8662,1934-12-04,B+ -Sharon Brown,Female,8663,1944-02-16,AB+ -Emily Johnson,Male,8664,1961-10-23,B- -Leslie Morris,Male,8665,1953-02-15,O+ -Thomas Webb,Female,8666,1989-04-07,O- -Emily Ramsey,Female,8667,1940-06-20,B+ -Jennifer Reed,Male,8668,1974-01-29,A- -Dawn Lane,Male,8669,1979-12-30,AB- -Kathryn Walters,Female,8670,1991-09-16,B+ -Karen Pruitt,Male,8671,1951-04-28,B- -Melissa Moore,Female,8672,1960-08-27,A- -Eric Jenkins,Male,8673,1987-03-23,A- -Carol Johns,Male,8674,1985-01-30,A+ -John Holland,Male,8675,2000-09-10,AB- -John Mcguire,Male,8676,1991-03-18,B+ -Jennifer Fry,Male,8677,1993-01-13,O+ -Frank Rogers,Female,8678,1989-07-10,AB- -Amanda Young,Female,8679,1947-06-21,B+ -Oscar Wright,Male,8680,1977-08-14,AB- -Robert Lindsey,Female,8681,1986-09-02,O- -Brenda Khan,Female,8682,1956-07-25,AB+ -David Blanchard,Female,8683,2002-08-26,B+ -Amy Anderson,Female,8684,1981-09-22,A- -Nichole Munoz,Male,8685,1987-11-20,O+ -Darius Hodge,Male,8686,1937-05-06,B+ -Nathan Patel,Male,8687,1994-11-16,B+ -Karen Torres,Male,8688,1932-09-16,O- -Amanda Henry,Female,8689,1964-02-28,A- -Debra Sanchez,Male,8690,1953-02-15,AB+ -Garrett Patterson,Female,8691,1942-11-25,O- -Arthur Davis,Female,8692,1947-09-28,AB+ -Mason Hill,Female,8693,1993-12-04,AB+ -Barbara Mora,Male,8694,1966-01-13,AB+ -Michael Brown,Female,8695,1970-01-26,O- -Hannah Alexander,Male,8696,1952-02-10,AB- -Billy Obrien,Male,8697,1987-01-18,B+ -Richard Chang,Female,8698,1997-12-26,AB+ -Sydney Lopez,Male,8699,1932-10-04,AB- -Terrance Ramirez,Male,8700,1992-08-23,B+ -Adam Lyons,Female,8701,2002-02-03,A- -Sean Davis,Male,8702,1951-01-19,B+ -Carly Morgan,Male,8703,1959-06-21,A- -Alexander White,Female,8704,1940-09-13,O+ -Chad Walters,Female,8705,1982-07-14,A+ -Kara Calderon,Female,8706,1962-09-27,AB- -Kevin Howell,Female,8707,1941-12-28,B+ -Gregory Garner,Male,8708,1975-02-16,A- -Joan Kennedy,Female,8709,1997-10-28,A+ -Courtney Martinez,Male,8710,1932-05-27,AB+ -Jo Gillespie,Male,8711,1972-09-02,A+ -Nathan Gentry,Female,8712,1979-12-22,A+ -Alex Hester,Female,8713,1982-02-26,AB+ -Jason Sanders,Male,8714,1978-08-29,AB- -Ann Fisher,Male,8715,1981-06-21,B+ -Abigail Mack,Male,8716,1998-11-05,AB+ -David Clark,Male,8717,1937-03-22,O+ -Christian Mccoy,Female,8718,1949-10-30,B- -Jamie Lowe,Female,8719,1955-05-07,B+ -Jerry Cox,Male,8720,1953-08-01,O- -Joseph Wood,Male,8721,1937-11-23,AB+ -Jessica Holland,Female,8722,1933-04-19,AB+ -Jennifer Miller,Female,8723,1976-05-07,A+ -Shawn Norris,Female,8724,1962-05-24,O+ -Mark Miller,Female,8725,1972-05-04,A- -Melinda Reyes,Female,8726,1978-03-17,A- -Jeffrey Holmes,Female,8727,1983-07-18,A+ -Charles Martinez,Female,8728,1999-05-22,AB- -Jordan Austin,Male,8729,1992-07-08,B+ -Jeffrey Koch,Female,8730,1968-04-25,AB+ -Christopher Quinn,Male,8732,1947-11-08,B+ -Gregory Shaw,Female,8733,1931-10-17,B+ -Mason Terry,Male,8734,1993-07-14,AB+ -Lisa Wood,Female,8735,1981-07-22,A+ -Savannah Johnson,Female,8736,1990-12-28,B+ -Marvin Hays,Male,8737,1953-01-12,AB+ -Casey Day,Male,8738,1940-01-15,AB- -Gary Tapia,Male,8739,1941-09-17,B+ -Cody Pollard,Male,8740,1986-11-29,B- -Samuel Herman,Female,8741,1981-11-22,O- -Michelle Thomas,Female,8742,1945-02-06,O- -Douglas Hernandez,Male,8743,1955-03-16,O- -John Lee,Male,8744,2002-11-26,B- -Robert Lawrence,Male,8745,1971-08-12,AB+ -Brianna Parker,Male,8746,1940-11-29,A+ -Andrea Gonzales,Male,8747,1965-12-18,A- -Breanna Poole,Male,8748,1952-05-12,O+ -Jeffrey Ortiz,Male,8749,1950-05-24,AB+ -Shannon Kaufman,Female,8750,1986-08-29,B- -Bradley Cisneros,Female,8751,1983-02-15,B+ -Brent Taylor,Male,8752,1940-01-30,AB- -Nicole Barker,Female,8753,2001-03-28,B- -Steven Morgan,Female,8754,1986-05-07,B+ -Laura Cohen,Male,8755,1976-06-04,A- -Robert Solomon,Female,8756,1956-01-29,O- -Jason White,Female,8757,1943-01-06,AB+ -Dale Frederick,Female,8758,1949-05-23,A- -Jennifer Marshall,Female,8759,1940-12-16,O- -Stephen Sanchez,Female,8760,1945-05-31,O+ -Ana Stein,Female,8761,1963-08-14,B+ -Isaac Parker,Female,8762,1953-01-17,B+ -Stephanie Gibbs,Male,8763,1986-05-11,AB- -Kent Graves,Male,8764,1935-06-21,O- -Michelle Holmes,Female,8765,1954-07-17,O+ -Destiny Mora,Female,8766,1973-03-20,B+ -Tammy Hernandez,Male,8767,1995-03-07,B- -Sarah Lynch,Female,8768,1942-05-22,O- -Samuel Crosby,Female,8769,1998-06-22,O- -Brian Lopez,Male,8770,1939-05-01,A+ -Christopher Yates,Male,8771,1948-06-06,AB- -Catherine Sanders,Male,8773,1951-05-06,AB- -Linda Baldwin,Female,8774,1961-01-10,A- -Ms. Melissa Bowman,Male,8775,1999-08-28,B- -Summer Nicholson,Male,8776,1982-07-04,A+ -Tammy Hall,Male,8777,1994-12-09,A- -Wesley Green,Female,8778,1937-12-21,O+ -Regina Sharp,Male,8779,1996-08-18,A- -John Henderson,Female,8780,1981-06-21,O+ -Amanda Gray,Male,8781,1975-07-18,B- -Daniel Ross,Male,8782,1971-08-08,B+ -Carolyn Nixon,Female,8783,1943-07-23,AB- -Michelle Martinez,Female,8784,1952-03-04,B+ -Latasha Cross,Female,8785,1989-05-04,O+ -Stephanie Lee,Female,8786,1974-02-16,B- -Joseph Bass,Male,8787,1952-03-08,B+ -Jason Howell,Male,8788,1994-09-23,A- -Daniel Hall,Male,8789,1945-03-28,O+ -Donald Jones,Female,8790,1992-06-25,AB+ -Mr. Christopher Diaz,Male,8791,1999-10-20,O- -Nicole George,Male,8792,1933-03-19,A- -James Garcia,Female,8794,1953-08-12,AB- -Wendy Smith,Female,8795,1969-05-30,B+ -Brandi Bennett,Male,8796,1966-04-18,A- -William Reeves,Female,8797,1932-04-15,AB+ -Christian Alvarado,Female,8798,1981-01-19,B- -Mrs. Carolyn Barnes MD,Female,8799,1999-09-29,B- -William Foster,Female,8800,1962-05-17,A- -Stacy Howard,Female,8801,1942-07-04,AB+ -Rhonda Bryant,Male,8802,1940-06-12,B+ -Natasha Williams,Female,8803,1975-07-14,A- -Nicholas Cunningham,Male,8804,1936-08-26,O- -Joshua Hall,Female,8805,1955-02-21,O- -Bianca Duffy,Female,8806,1954-12-19,A+ -Erin Meadows,Male,8807,1961-11-04,O+ -Keith Sullivan,Male,8808,1989-05-02,A+ -Brian Bridges,Male,8809,1937-02-20,B+ -Jonathan Hall,Male,8810,2000-03-24,O- -Kevin Abbott,Male,8811,1946-03-28,AB+ -Willie Baker,Female,8813,1941-01-05,O+ -Rebecca Young,Female,8814,1962-10-31,B+ -Christina Williams,Male,8815,1987-12-16,AB+ -Janice Vega,Female,8816,1948-02-13,B+ -Robert Eaton,Female,8817,1938-08-18,A+ -Katrina Reynolds,Female,8818,1945-04-12,B- -Lucas Lamb,Female,8819,1949-04-25,AB+ -Eric Johnson,Female,8821,1995-12-16,A+ -Katrina Sanders,Female,8822,1950-11-11,A+ -Ryan Carr,Female,8823,1973-04-28,A+ -Brittany Morales,Male,8824,1966-04-09,B- -Justin Vega,Male,8825,1942-07-10,B- -Jill Mason,Female,8826,1971-12-31,A- -Frederick Williams,Male,8827,1939-07-24,B- -Robert Gonzalez,Female,8828,1931-12-08,O+ -Paul Mendez,Male,8830,1973-01-23,B- -Whitney Williams,Female,8831,1949-02-27,B- -Tanya Navarro PhD,Male,8832,1944-04-30,B- -Daniel Crosby,Female,8833,1999-05-08,B+ -Johnny Combs,Male,8834,1945-10-04,AB+ -Cynthia Patton,Male,8835,1993-11-30,B- -Brenda Jackson,Male,8836,1998-11-23,O+ -Brent Preston,Female,8838,1978-07-06,B+ -Robert Ramirez,Male,8839,1990-02-27,A+ -Jordan Reyes,Female,8840,1979-12-01,AB+ -Joshua Hutchinson,Female,8842,1948-10-04,O- -Shannon Sanchez,Female,8843,1963-03-15,B+ -Juan Pope,Female,8844,1994-08-08,B- -Keith Lopez,Male,8845,1951-07-15,B+ -Kevin Alvarez,Male,8846,1963-03-07,A- -Jacob Carter,Female,8847,1939-01-31,A- -James Moore,Female,8848,1963-06-09,B+ -Tyrone Adkins,Female,8849,1961-01-25,A+ -Patrick Jackson,Female,8850,1958-06-13,A+ -Heather Wiggins,Female,8851,1993-07-04,AB+ -Andrea Macias MD,Male,8852,1970-09-11,A- -Bonnie Bowman,Female,8853,1975-04-23,O- -Tanya Flores,Male,8854,1949-05-01,AB- -Larry Cox,Female,8855,2002-10-04,A- -Stephanie Alvarez,Female,8856,1972-06-13,B+ -Tiffany Johnson,Female,8857,1938-05-16,A- -Dr. Ryan Meyer,Male,8858,2002-12-29,O+ -Charles Baker,Male,8859,1942-02-15,AB- -Charles Hayes,Male,8860,1931-02-07,A+ -Travis Evans,Male,8861,1953-07-24,AB- -Kerry Singleton,Female,8862,1997-05-29,A- -Joshua Lopez,Male,8863,1973-02-25,A+ -Michelle Brown,Female,8864,1992-03-29,AB- -Theresa Perkins,Female,8865,1986-03-29,A+ -Ryan Blair,Male,8866,1932-05-17,A+ -Kristina Taylor,Female,8867,1967-09-23,AB+ -Brandon Williamson,Male,8868,1971-06-30,O- -Valerie Charles,Male,8869,1952-06-24,A+ -Jonathan Hansen,Female,8870,1930-12-31,O+ -Aaron Franklin,Male,8871,1995-04-21,A- -James Martinez,Male,8872,1972-01-27,A- -James Marshall,Female,8873,1947-12-29,O+ -Suzanne Contreras,Male,8874,1976-06-11,B- -Steve Rodriguez,Female,8875,1995-11-14,A+ -Sharon Gordon,Female,8876,1998-10-12,B+ -Miss Bonnie Davis,Female,8877,1968-05-18,A+ -Matthew Marks,Female,8878,1947-09-17,A+ -Ethan Allen,Male,8879,1941-05-13,B+ -Bradley Hansen,Female,8880,1965-10-09,AB- -Anita Donaldson,Male,8881,1983-03-07,A+ -Tiffany Long,Male,8882,1941-04-30,A+ -Bonnie Anderson,Female,8883,1963-07-03,O+ -Kyle Roth,Male,8884,1976-02-05,O- -Theresa Navarro,Female,8885,1963-04-11,O- -Christopher Patrick,Female,8886,1992-10-03,B- -Reginald Watts,Female,8887,1967-11-16,O+ -Madison Smith,Male,8888,1933-10-13,A+ -Logan Davis,Female,8889,1952-04-29,O- -Erin Gomez,Male,8890,1934-01-07,AB+ -Jon Barnett,Female,8891,1966-10-18,AB+ -Lisa Perkins,Male,8892,1982-05-10,AB+ -Destiny Stephens,Female,8893,1995-08-04,A+ -David Williams,Male,8894,2000-08-13,A+ -Herbert Day,Male,8895,1993-05-01,B+ -Christina Young,Male,8896,1977-04-08,B- -Alison Love,Male,8897,1962-11-15,A- -Jon Rhodes,Female,8898,1938-08-16,B- -Jennifer Hall,Male,8899,1997-07-08,B- -Calvin Spence,Female,8900,1951-08-11,AB- -William Buchanan,Male,8901,1986-03-16,AB+ -Daniel Graham,Female,8902,1974-03-07,A+ -Michael Ortega,Female,8903,1933-03-14,AB+ -Steven Gutierrez,Male,8904,1963-10-31,B- -Cindy Perez,Male,8905,1938-07-27,A+ -Michelle Kemp,Female,8906,1971-02-27,O+ -Lindsey Hill,Male,8907,1984-11-02,B+ -Mary Lowery,Male,8908,1936-12-01,O- -Sherri Larson,Male,8909,1960-04-12,O- -Michael Joyce,Female,8910,1939-08-18,B- -Bridget Rodriguez,Female,8911,1984-01-29,A- -Tyler Oneal,Female,8913,1994-12-13,AB+ -Andrew Mcgrath,Male,8914,1958-06-09,O+ -Brandon Quinn,Female,8915,1939-09-26,A+ -Michael Ray,Female,8916,1973-11-03,A- -Robert Porter,Female,8917,1968-10-05,AB+ -Dillon Hunter,Male,8918,1943-12-30,B- -Carrie Hood,Female,8919,1948-06-27,AB+ -Jennifer Adams,Male,8920,1976-01-29,B- -Brenda Pena,Male,8921,1947-06-05,AB- -Paige Davis,Female,8922,1939-12-06,O- -Robin Tucker,Female,8923,1985-11-08,A- -Robert Forbes,Female,8924,1940-08-11,O- -Rebecca Summers,Female,8925,1945-01-19,AB+ -Matthew Vincent,Female,8926,1973-10-01,O+ -Jeremy Smith,Female,8927,1961-07-26,A+ -Scott Robertson,Female,8928,1991-12-09,B- -Amanda Thompson,Male,8929,1975-07-29,A+ -Michelle Torres,Female,8930,2002-05-07,O- -Mark Cummings,Male,8931,1988-07-11,B+ -Jessica Gregory,Male,8932,1966-08-22,O+ -Marissa Alvarez,Female,8933,1941-01-08,O+ -Shawn Ward,Male,8934,1958-08-20,A+ -Robert Palmer,Female,8935,1967-11-27,O- -Christy Cummings,Male,8936,1997-07-15,B+ -Oscar Mason,Male,8937,1986-06-02,A+ -Kimberly Hampton,Female,8938,1941-06-07,AB+ -Allison Jones,Male,8939,1955-02-13,O+ -Debra Mejia,Male,8940,1939-06-06,O+ -John Arnold,Female,8941,1988-07-30,AB+ -Erin Garcia,Male,8942,1959-05-14,O- -Angela Roberts,Female,8943,1931-11-25,O+ -Natalie Rojas,Male,8944,1952-11-08,A- -Scott Reed DDS,Male,8945,1962-04-03,B+ -Neil Martinez,Male,8946,1979-10-27,AB- -Jason Riley,Female,8947,1967-11-24,AB- -Amy Santana,Female,8948,1969-01-10,AB- -Thomas Mckenzie,Male,8949,1968-05-22,B- -Russell Peters,Male,8950,1966-08-08,A- -Robert Freeman,Female,8951,1945-09-03,B- -Sarah Johnson,Male,8952,1933-11-08,O- -John Fleming,Male,8953,1951-12-29,AB+ -Ashley Rojas,Female,8954,2000-08-13,A+ -Blake Davis,Female,8956,1969-11-24,A- -Andrew Duran,Female,8957,1978-09-20,B+ -Catherine Cabrera,Male,8958,1984-06-07,O- -Trevor Brown,Female,8959,1986-10-30,A+ -Lisa Burns,Male,8960,1950-03-31,O- -Michael Dickerson,Female,8961,1976-05-14,B- -Walter Ramirez,Female,8962,1961-09-21,AB- -Rachel Rodriguez MD,Female,8963,2000-07-04,AB+ -Brandon Mcknight,Male,8965,1965-05-23,B- -Stephanie Simpson,Female,8966,1986-09-20,AB+ -Tamara Chandler,Male,8967,1932-09-24,A- -Michelle Webb,Female,8969,1986-01-07,A+ -Briana Byrd,Female,8970,1969-05-26,O- -Dylan Maynard,Female,8971,1946-09-13,O+ -Sharon Lewis,Female,8972,1990-01-25,O+ -Joseph Jacobs,Male,8973,1985-12-14,AB+ -Joyce Williams,Female,8974,1989-05-18,AB- -Ethan Howard,Female,8975,1997-01-31,AB- -Timothy Trevino,Female,8976,1991-07-26,AB+ -Anne Lowe,Female,8977,1966-12-27,B- -Miss Holly Freeman,Male,8978,1945-01-12,O+ -Jonathan Wagner,Male,8979,1998-04-22,B- -Kathleen Johnson,Male,8980,1945-05-18,A+ -Christine Smith,Male,8981,1973-09-10,O+ -Anita Moore,Male,8983,1936-02-27,A+ -Mrs. Kimberly Walker,Female,8984,1977-03-07,O- -Justin Moore,Female,8985,1959-06-06,B- -Richard Abbott,Female,8986,1958-10-15,AB+ -Stephanie Dillon MD,Female,8987,1992-04-03,O+ -Christina Lynch,Female,8989,1953-10-22,B- -Wanda Patterson,Male,8990,1952-02-05,AB+ -Ryan Hobbs,Female,8991,1954-05-09,O- -Kevin Jones,Female,8992,1984-10-13,O+ -Edward Vasquez,Male,8993,1975-09-20,A+ -Benjamin Parrish,Female,8994,1971-05-29,O- -John Young,Female,8995,1936-07-04,AB- -Robert Lopez,Female,8996,2000-02-19,AB+ -Stephanie Chung,Female,8997,1941-12-27,B+ -Nicole Richards,Male,8998,1960-08-13,O+ -Dr. Jacob Hart,Male,8999,1997-12-28,O+ -Alexander Steele,Male,9001,1931-07-29,A- -Andre White,Female,9002,1966-07-01,A- -Patrick Vargas,Male,9003,2001-07-15,O- -John Cole,Male,9004,1990-02-24,O+ -Brandi Young,Male,9005,1989-11-23,AB+ -Justin Stanley,Male,9006,1954-07-03,O- -Kristin Braun,Female,9007,1982-07-21,A+ -Jeffery Kelley,Male,9008,1997-02-16,O- -Tamara Grant,Female,9010,2000-04-23,O- -Sheila Perez,Female,9011,1945-07-11,B+ -Sarah Dorsey,Male,9012,1995-12-25,A+ -Johnny Hodges,Female,9013,1947-12-25,AB- -Hannah Foley,Female,9014,1964-10-25,A- -Lisa Richardson,Male,9015,1984-04-30,AB+ -Megan Diaz,Male,9016,1946-10-01,AB- -Monica Brooks,Female,9017,1985-10-15,AB- -Tonya Pineda,Female,9018,1951-06-17,AB- -Tyler Black,Female,9019,1975-06-01,A- -Angel Davis,Male,9020,1969-10-14,B- -Scott Smith,Female,9021,1982-06-16,A- -Bobby Keller,Male,9022,1980-04-24,AB- -Jesse Weaver,Female,9023,1980-12-31,B- -Elizabeth Allen,Female,9024,1953-04-08,A+ -Melanie Taylor,Female,9025,1979-06-24,A- -Julie Hartman,Male,9027,1941-04-02,AB+ -Chelsea Sanchez,Male,9028,1979-12-14,AB- -Ann Davis,Male,9029,2002-08-28,O+ -Amy Day,Female,9031,1989-01-11,A+ -Annette Chapman,Male,9032,1976-11-01,B- -Amber Myers,Male,9033,1999-06-03,A- -Christina Hayes,Male,9034,1967-01-08,AB+ -Gregory Acosta,Female,9035,1953-11-16,O- -Sydney Hernandez,Male,9036,1943-05-26,AB+ -Aaron Hayes,Male,9037,1975-10-19,AB+ -Michael Kelly,Male,9038,1989-08-21,AB- -Dr. Jordan Gutierrez II,Male,9039,1952-12-31,AB- -Nathaniel Crawford,Male,9040,1987-10-29,A- -Bryan Willis,Male,9041,1984-03-08,A- -Mr. David Gibbs Jr.,Female,9042,2000-11-16,B+ -Kelli Good,Female,9043,1969-12-28,B- -Danielle Cantrell,Female,9044,1957-10-05,B+ -Daniel Rose,Female,9045,1977-05-17,A- -Sally Hudson,Female,9046,1990-10-16,B- -Cathy Long,Female,9047,1935-08-07,AB- -Martha Galvan,Male,9048,1976-01-02,AB- -Derek Martin,Male,9049,1979-08-25,O+ -Miss Morgan Collier PhD,Male,9050,1995-01-22,O+ -Mrs. Michelle Hill,Male,9051,1977-11-13,A+ -Tina Hess,Male,9052,1939-04-16,AB- -Anthony Beasley,Female,9053,1982-06-13,O- -Timothy Sullivan,Female,9054,1959-03-22,O+ -Keith Michael,Female,9055,1969-07-19,B- -Paula Wright,Male,9056,1948-07-29,AB+ -Dr. Kimberly Jones,Male,9057,1979-02-02,A- -Dylan Hart,Female,9058,1932-12-06,A- -Tammy Sanchez,Female,9059,1992-09-18,A+ -David Cobb,Male,9060,1935-01-25,O+ -Stephanie Watson,Female,9061,1988-09-10,AB+ -Chelsea Miller,Female,9062,1963-12-04,AB+ -Michael Sullivan,Male,9063,1938-01-18,O+ -Justin Quinn,Male,9064,1957-08-22,O- -William Diaz,Female,9065,1974-08-19,O- -Daniel Lee,Male,9066,1949-09-12,A+ -Ronald Johnson,Female,9067,1946-01-08,B+ -James Garza,Female,9069,1993-02-16,O- -Shawna Dunn,Male,9070,1974-11-04,A+ -Sarah Fitzpatrick,Female,9071,1931-11-10,B+ -James Perkins,Male,9072,1932-09-15,B+ -Linda Fox,Male,9073,2001-09-08,B- -Loretta Day,Male,9074,1934-02-11,B+ -Calvin Martin,Male,9075,1979-10-04,O+ -Angel Mitchell,Female,9076,1989-04-26,B+ -Timothy Torres,Male,9077,1974-05-08,AB+ -Ryan Mata,Female,9078,1988-08-15,A+ -Amanda Vincent,Female,9079,1978-10-05,A- -Brandon Norman,Female,9080,1973-06-11,O- -Blake Martin,Male,9081,1969-01-22,A- -Miss Amanda Walker,Female,9082,1948-03-21,A+ -Justin Ramirez,Male,9083,1936-09-06,AB- -Devin Vazquez,Female,9084,1958-01-08,A+ -Peter Matthews,Male,9085,1993-08-18,O- -Lori White,Male,9086,1950-03-04,AB- -Samantha Bishop DVM,Male,9087,2000-10-14,AB- -Thomas Martinez,Female,9088,1966-12-08,B+ -Joshua Harris,Female,9090,1937-02-07,O- -Denise White,Male,9091,1987-09-12,AB- -Chloe Wilson,Female,9092,1981-07-12,O+ -Rachael Williams,Female,9093,1945-02-08,AB+ -Daniel Knox,Female,9094,1955-03-30,A- -Angela Paul,Female,9095,1947-04-12,O+ -Jordan Mclaughlin,Female,9096,1939-09-10,O+ -Nicole Sandoval,Female,9097,1970-05-15,O- -Laura Lewis,Male,9098,1984-05-24,B+ -Jordan Porter,Male,9099,1995-01-15,O- -Susan Clarke,Female,9100,1980-12-29,A- -Meredith Simpson,Male,9101,1947-06-19,AB+ -Kenneth Long,Male,9102,1982-06-06,A+ -Tony Ramos,Female,9103,1955-08-23,O+ -Renee Moore,Male,9104,1961-04-10,AB- -Michael Conway,Male,9105,1943-06-13,AB+ -Scott Terry,Female,9106,1931-02-08,O+ -Phyllis Barker,Male,9107,1966-02-01,A+ -Dr. Kelly Krueger DVM,Male,9108,1984-02-13,B+ -Thomas Robinson,Female,9109,1941-05-26,AB- -Edwin Harris,Female,9110,1995-10-01,O+ -Amy Foster,Female,9111,1975-02-05,B- -Joshua Petersen,Male,9113,1969-04-02,A- -Nancy Lozano,Male,9114,2000-06-16,AB+ -Beth Fields,Male,9115,1990-10-13,A- -Mr. Christopher Hill MD,Male,9116,1944-12-23,O- -Heather Patterson,Male,9117,1970-12-10,O+ -Melissa Johnson,Male,9118,1947-03-09,AB- -Samantha Bell,Female,9119,1945-09-18,AB- -Elizabeth Peterson,Male,9120,1986-07-23,AB+ -Alexis Wheeler,Female,9121,2001-01-25,AB+ -Meghan Robinson,Male,9122,1947-11-11,A- -Lori Williams,Female,9123,1988-07-22,AB- -Mary Howard,Female,9124,1996-11-12,AB- -Sierra Williams,Female,9125,1971-01-19,AB- -Travis Carter,Female,9126,1965-03-31,O+ -Brandon Smith,Female,9127,1992-12-11,AB- -Thomas Mccarthy,Female,9128,1966-09-28,O- -Andrew Williams,Female,9129,1969-08-01,AB- -Chad Ruiz,Male,9130,1935-08-27,O- -Brenda Dyer,Female,9131,1944-07-21,O+ -Kristen Miranda,Male,9132,1958-12-06,AB+ -Kelly Madden,Female,9133,1930-11-14,B+ -Carlos Potts,Female,9134,1978-12-21,O- -Sydney Williams,Female,9135,1946-10-14,O+ -Amber Willis,Female,9136,1950-04-25,B+ -Derek Arnold,Male,9137,1935-08-05,B+ -Wesley Parker,Female,9138,1942-08-04,AB- -Carmen Atkins MD,Female,9139,1957-12-19,O+ -Mark Alvarez,Male,9140,1930-04-29,B+ -Sierra Rosario,Male,9141,1931-12-11,AB- -Richard Martin,Male,9142,1973-06-01,A- -Maria Hale,Male,9143,1984-08-06,O+ -Sara Hall,Male,9144,1964-07-02,B+ -Natasha Brown,Male,9145,1938-11-25,AB+ -Charles Scott,Male,9146,1952-01-27,O- -Trevor Blankenship,Male,9147,1953-07-28,A- -Veronica Solis,Male,9148,1937-02-16,AB+ -Thomas Pope,Male,9149,1962-12-25,B- -Felicia Reynolds,Male,9150,1977-11-15,AB- -Rebecca Adams,Female,9151,1986-12-18,B+ -Ronald Moss,Female,9152,1951-07-07,O- -Danielle Barnes,Female,9153,1961-10-25,AB+ -Michaela Jimenez,Male,9154,1952-05-22,O- -Jill Brandt,Male,9155,1991-07-06,B- -Brandon Wheeler,Male,9156,1993-02-01,A+ -David Cruz,Male,9157,1981-01-18,AB- -Tammy Yoder,Male,9158,1996-10-26,AB- -Luke Young,Male,9159,1962-05-19,O+ -William Harris,Male,9160,1968-01-12,B+ -Brooke Anderson,Male,9161,1976-04-01,AB- -Karen Hansen,Male,9162,1981-05-16,AB- -Dean Wilkins,Male,9164,1999-03-03,AB+ -Michelle Estrada DDS,Male,9165,1987-11-14,A- -Kevin Meyers,Male,9166,1967-11-13,AB- -Richard May,Female,9167,1955-12-20,AB- -Stacy Thomas,Male,9168,1945-01-17,B+ -Michael Roberts,Female,9169,1960-11-06,B- -Julie Jackson,Female,9170,1983-08-24,A- -Anna Graves,Female,9171,1950-04-04,B- -James Allen,Male,9172,1948-06-18,B+ -Kiara Roberts,Female,9173,1990-04-28,O- -James Johnson,Female,9174,1944-02-28,O- -Joseph Price,Male,9175,1973-10-27,AB- -Laurie Young,Male,9176,1996-06-17,AB- -Bruce Macias,Female,9177,1975-09-30,O+ -Shane Sanchez,Female,9178,2002-09-29,O- -Derek Taylor,Female,9179,1965-08-09,AB+ -Melanie Buckley,Male,9180,1960-01-06,AB- -Holly Haynes,Male,9181,1959-07-03,AB+ -Ronald Hernandez,Male,9182,1939-09-28,AB- -John Mcclure,Female,9183,1939-10-28,B+ -Theresa Pope,Male,9184,1975-04-10,AB+ -Darrell Burgess,Female,9185,1932-08-12,A+ -Gina Peters,Female,9186,1967-10-08,AB+ -Gregory Ray,Female,9187,1986-10-12,A- -Jose Harrison,Female,9188,1994-06-18,O- -Mark Miller,Male,9189,2000-07-19,AB- -Susan Morris,Male,9190,1931-11-19,O- -Nathan Mitchell,Female,9191,1953-04-11,A- -Dr. Gerald Summers,Female,9192,1971-06-13,A- -Mariah Cameron,Female,9194,1956-07-17,AB+ -Jason Franklin,Male,9195,1938-07-25,B- -Karen Richardson,Female,9196,1993-05-17,B- -Rebekah Kennedy,Male,9197,1964-12-08,A- -Allen Young,Female,9198,1961-08-25,B- -Ashley Kline,Male,9199,1970-07-06,AB- -Meagan Mitchell,Male,9200,1939-04-19,O+ -Nancy Jones,Male,9201,1999-07-07,A+ -Richard Escobar DDS,Female,9203,1932-04-25,AB+ -Samantha Hampton,Male,9204,1933-03-10,O+ -Candice Taylor,Male,9205,1965-06-20,B- -Russell Taylor,Male,9206,1946-03-02,AB+ -Rodney Barnes,Male,9207,1967-08-06,O+ -Amanda Grant,Male,9208,2002-02-15,O- -Sarah Hayes,Female,9209,1989-07-14,B- -Elijah Evans,Male,9210,1930-12-21,B+ -Heather Roberts,Female,9211,1979-12-26,O+ -Kathryn Brown,Female,9213,1980-05-26,B+ -Jordan Long,Male,9215,1937-09-18,AB- -Manuel Ford,Female,9216,1940-06-29,O- -Gregory Villanueva,Male,9217,1964-02-19,B- -Jesse Adams,Female,9218,1952-08-10,A+ -Barbara Woods,Female,9219,1965-11-20,A- -Heather Powers,Male,9220,1964-02-10,B- -Kimberly Reed,Male,9221,1959-05-02,B+ -Andrew Hernandez,Male,9222,1937-01-25,AB- -Anthony Fernandez,Male,9223,1956-03-27,A+ -Cameron Gonzalez,Female,9224,2000-05-19,A+ -Bradley Stewart,Female,9225,1981-08-31,A+ -John James,Male,9226,1999-07-28,AB+ -Justin Johnson,Female,9227,1953-01-18,AB+ -Paige Jackson,Male,9228,1981-07-19,B+ -Shelby Kim,Female,9229,1999-04-12,A- -Arthur Ross,Female,9230,1969-06-24,A+ -Angelica Dudley,Female,9232,1962-05-07,A- -Nathan Lee,Male,9233,1932-11-02,O- -Margaret Lara,Male,9234,1957-06-12,A+ -Carlos Phillips,Male,9235,1959-12-07,O+ -Brian Moore,Female,9236,1998-08-20,A+ -Justin Alexander,Male,9237,1950-05-11,B+ -Tracy Walton,Female,9238,1934-03-29,AB+ -Courtney Morris,Female,9239,2000-06-01,AB+ -Marcus Smith,Male,9240,1943-11-14,O+ -Beth Fuentes,Female,9241,1992-08-23,O+ -Tim Chandler,Male,9242,1991-10-15,B- -Zachary Cantrell,Male,9243,1985-09-10,O- -David Elliott,Female,9244,1939-05-01,O- -Dr. John Fischer,Female,9245,1931-10-02,B+ -Melissa Atkins,Female,9246,1930-06-22,B+ -Sandra Compton,Male,9247,1945-07-07,B+ -Justin Kemp,Female,9248,1941-12-03,B+ -Cesar Obrien,Female,9249,1985-09-12,B+ -Sarah Hernandez MD,Male,9250,1998-09-13,B+ -Christina Miller,Female,9251,1998-09-19,O- -Daniel Kennedy,Male,9252,1957-09-05,AB- -Tara Knight,Male,9253,1937-11-26,AB+ -William Park,Male,9254,1935-12-05,O- -Jonathan Rich,Female,9256,2002-07-27,B+ -Brian Hernandez,Female,9257,1940-10-20,B- -Brandi Goodman,Female,9258,1989-03-11,B- -Mr. Michael Hernandez,Female,9259,1958-06-24,O- -Kevin Hall,Female,9260,1951-03-18,O+ -Ryan Wright,Female,9261,1962-10-15,B- -Joshua Villa,Male,9262,1981-12-13,A- -David Carlson,Female,9263,1951-03-26,O+ -Danny Parrish,Female,9264,1972-09-13,A- -Jeanne Davis,Female,9266,1988-05-14,AB+ -John Potter,Male,9267,1986-01-07,AB- -Nicole Smith,Male,9268,1944-03-13,B- -Carl Stone,Male,9269,1932-12-29,O+ -Ashley Moore,Female,9270,1940-08-16,B+ -Troy Alexander,Female,9271,1959-04-05,A- -Michael Ruiz,Female,9272,1992-10-25,O- -Jacqueline Cook,Female,9273,1959-06-29,A- -James Williams,Male,9274,1959-03-30,A- -Steven Wilson,Male,9275,1937-08-17,AB+ -Ian Brooks,Male,9276,1991-06-19,A+ -Christopher Wade,Male,9277,1970-07-09,A+ -Mrs. Sandra Wood,Male,9278,1974-07-29,O- -Justin Mitchell,Female,9279,1947-11-27,AB+ -Kathryn Hughes,Female,9280,1979-03-03,AB+ -April Smith,Male,9281,1973-11-07,B+ -Ashley Huff,Female,9282,1990-05-26,AB+ -John Mcconnell,Male,9283,1970-05-01,AB+ -Christian Adams,Male,9284,1958-12-05,A+ -James Huffman,Male,9285,1952-01-26,O+ -Daniel Johnson,Male,9286,1940-12-04,AB+ -Crystal Moody,Male,9287,1989-02-14,O+ -William Moore,Male,9288,1988-02-15,A- -Kim Lewis,Male,9289,2000-04-12,A- -Kelly Sanchez,Female,9290,1978-02-11,AB+ -Robert Acosta,Male,9291,1982-03-22,B- -Tabitha Sanders,Female,9292,1941-03-19,AB- -Timothy Garcia,Male,9293,1969-11-01,B- -Jason Bailey,Male,9294,1979-12-29,A- -Edward Forbes,Female,9295,1996-02-16,AB- -Keith Nguyen,Male,9296,1984-03-08,B- -Samantha Gonzalez,Female,9297,1957-04-28,AB+ -Jesus Davis,Male,9298,1985-08-16,O+ -Steven Wolfe,Female,9299,2001-09-08,AB- -William Fry,Female,9300,1997-06-02,A+ -Eric Watson,Male,9301,1944-10-22,O- -Jeffery Williams,Male,9302,1985-06-06,AB- -Ashley Adams,Female,9303,1968-02-28,AB- -Sarah Weeks,Female,9305,1995-02-19,A+ -Terry Keller,Female,9306,1937-10-04,AB+ -Todd Ross,Male,9307,1944-06-21,B- -Kristy Valencia,Female,9308,1956-04-03,B- -Albert Marquez,Male,9309,1970-04-09,A- -Lindsay Robertson,Female,9310,1968-08-25,O+ -Laura Le,Male,9311,1950-12-07,AB+ -Caroline Lopez,Female,9312,1962-11-27,A+ -Deborah Casey,Male,9313,1999-07-25,AB+ -Scott Graves,Female,9314,1959-10-25,AB+ -Cory Benson,Female,9315,1943-01-30,B- -David Hart,Male,9316,1973-10-16,A+ -Tammy Arias,Female,9317,1937-06-28,B+ -Madison Aguilar,Female,9318,1967-04-08,O- -Jacqueline Gonzalez,Female,9320,1997-07-05,AB- -Brandon Moore,Male,9321,1997-07-10,B- -Jeffrey Hodges,Male,9323,1947-06-09,A+ -Thomas Jensen,Male,9324,2002-12-08,O+ -Julie Lee,Female,9325,1977-02-08,AB- -Charles Lewis,Male,9326,1995-06-18,AB- -Erin Mcgee,Female,9327,1930-06-12,B+ -Scott James,Female,9329,1951-04-18,B+ -Alejandro Pratt,Female,9330,1970-08-28,B- -Emily Jacobson,Male,9331,1980-02-24,A- -Katie Saunders,Female,9332,1939-09-06,O+ -Tyler Aguilar,Female,9333,1991-03-02,B- -Cynthia Warren,Male,9334,1984-04-17,AB+ -Gloria Kelly,Female,9335,1966-09-12,A- -Matthew Guzman,Female,9336,1969-09-29,A+ -Edward Miller,Female,9337,1982-07-01,B+ -Jose Finley,Female,9338,1982-04-09,O+ -William Vincent,Male,9339,1951-10-17,AB- -Larry Hall,Male,9340,1940-10-08,B- -Cynthia Bradley,Male,9341,1939-04-09,B+ -Mr. Aaron Boone,Male,9342,1993-01-10,AB- -Clayton Garcia,Female,9343,1932-07-11,O+ -Francisco Stephens,Male,9344,1997-01-02,B+ -Juan Hill,Female,9345,1958-05-21,B+ -James Barrett,Female,9346,1967-08-12,AB- -Michael Sparks,Female,9347,2001-08-14,B- -Anthony Mack,Female,9348,1931-07-19,A- -Destiny Cook,Male,9349,1983-10-12,B- -Russell Anthony,Male,9350,1959-07-17,O- -Kara Hatfield,Female,9351,1936-11-05,B+ -Juan Murphy,Male,9352,1987-05-12,AB- -Elizabeth Mercer,Male,9353,1999-12-28,O- -Sherry Nguyen,Female,9354,1948-11-03,A- -Phillip Smith,Female,9355,1939-12-16,O- -Kristina Brown,Female,9356,1991-05-15,AB- -Derek Munoz,Female,9357,1930-08-12,O+ -Jane Wilson,Female,9358,1947-03-30,AB+ -Diana Evans,Female,9359,1970-10-13,A- -Anthony Thompson,Female,9360,1930-12-17,B- -Lisa Williams,Female,9361,1994-11-19,A+ -Leslie Washington,Female,9362,1980-02-20,A- -Jamie Jones,Female,9363,1996-01-22,O- -Mary Bailey,Male,9364,1998-03-29,O+ -Jared Santos,Female,9365,1942-12-16,AB- -Matthew Reid,Female,9366,1932-10-14,O+ -Ronald Mills,Female,9367,1980-12-14,O+ -Colton Leblanc DDS,Male,9369,1994-08-03,AB- -Charles Stout,Male,9371,1971-09-12,A+ -Matthew Hansen,Female,9372,1949-08-19,AB- -Chad Baker,Male,9373,1966-06-04,A+ -Daniel Williams,Male,9374,1946-12-30,AB- -Hannah Sawyer,Female,9375,1963-09-21,O- -Brian Pollard,Female,9376,1936-08-16,A+ -Megan Davis,Female,9377,1947-02-01,O- -Dawn Harrison,Female,9378,1935-03-09,A- -Joshua Ramos,Male,9380,1967-08-28,A+ -Susan Martinez,Male,9381,1944-07-28,A+ -Abigail Wilson,Male,9382,1960-10-02,AB- -Brian Thomas,Male,9383,2002-12-13,A+ -Teresa Buchanan,Male,9384,1995-12-28,O- -Jason Davidson,Female,9385,1993-09-09,B+ -Natalie Davis,Female,9386,1977-12-09,A- -Erik Taylor,Female,9387,1938-07-15,B+ -Janice Torres MD,Male,9388,1941-05-24,AB- -Shane Singleton,Male,9389,1972-07-02,B- -Laura West,Female,9390,1941-01-25,A- -Sabrina Berry,Female,9391,1942-02-20,B+ -Kaitlyn Jimenez,Female,9392,1968-05-17,A- -Alan Warren,Male,9393,1998-07-05,B+ -Robert Faulkner,Female,9394,1937-04-12,O- -Bruce Perez,Female,9395,1959-11-15,B+ -Robert Edwards,Male,9396,1984-05-24,A- -Amber Adams,Female,9397,1938-01-23,B- -Sean Cobb,Male,9398,1949-09-28,O+ -Jesse Huerta,Male,9399,1995-10-24,AB- -Janice Blair,Female,9400,1954-01-22,O+ -Theresa Gross,Male,9401,1935-06-10,AB- -Frank Dickson,Female,9402,1959-12-17,A- -Dustin Mullins,Female,9403,1977-10-19,AB- -Victor Paul,Male,9404,1963-04-19,B+ -Danny Nichols,Male,9405,1986-08-24,O- -Anna Golden,Male,9406,1938-03-27,B- -Deanna Gonzales,Male,9407,1932-08-27,AB- -Steven Ward,Female,9408,1954-01-07,B- -Austin Johnson,Male,9409,1937-09-25,AB- -Jennifer Gibson,Male,9411,1933-04-26,B- -Nicholas Miller,Male,9412,1930-08-18,O+ -Joseph Morales,Female,9414,1986-08-03,O- -Erin Norris,Male,9415,1973-03-10,AB- -Jared Mitchell,Female,9416,1969-04-11,AB+ -James Jones,Female,9417,1938-09-21,B- -Jacob Welch,Female,9418,1971-02-06,B- -Elizabeth Morgan,Female,9419,1976-03-25,B+ -Carrie Lowe,Male,9420,1930-02-18,AB+ -Mary Stuart,Male,9422,1984-08-15,O- -Christopher Ho,Female,9423,1971-07-18,B- -Matthew Jacobs,Female,9424,1983-03-23,O- -Jose Alvarez,Male,9425,1999-03-04,B- -Melinda Miller,Male,9426,1975-12-01,A- -Steven Hebert,Male,9427,1932-08-27,A+ -Samantha Woodard,Female,9429,2000-01-15,A- -Anna Nelson,Male,9430,1969-11-05,B- -Heidi White,Female,9431,1945-12-08,A+ -Charles Fleming,Male,9432,1969-02-17,AB- -Margaret Potter,Male,9433,1938-05-11,O- -Mason Collins,Female,9435,1961-10-14,B- -Kristine Crane,Male,9436,1995-02-10,B+ -Ryan Salazar,Male,9437,1936-04-21,O+ -Mrs. Ashley Pearson DDS,Female,9438,1936-04-02,B+ -Noah Jordan,Male,9439,1972-02-15,O+ -Mark Gardner,Male,9440,1956-10-30,AB+ -Amanda Daniels,Male,9441,1972-10-07,O+ -David Lewis,Male,9442,1986-10-24,A+ -Andrea Hardin,Male,9443,1930-05-03,O+ -Tammy Ware,Female,9444,1993-06-22,O+ -Jose Mendoza,Male,9445,1955-12-08,O+ -Douglas Moore,Male,9446,1940-03-16,B- -Cody Chang,Female,9447,1967-08-07,AB+ -Richard Soto,Female,9448,1997-12-29,O- -Sean Clayton,Female,9449,1999-11-18,AB+ -Mark Robinson,Male,9450,1943-07-30,B+ -Joanne Alvarez,Male,9451,1931-06-09,A+ -Robert Mack,Male,9452,1954-11-10,B- -Don Zamora,Male,9453,1952-12-30,AB- -Robert Bean,Female,9454,1975-04-07,B- -Mr. Jeremy Clark,Male,9455,1996-10-06,A- -Jennifer Gomez,Female,9456,1976-01-21,O+ -Sean Ross,Female,9457,1958-06-17,B+ -Andrew Fisher,Female,9458,1940-04-07,O+ -Samuel Higgins,Female,9459,1961-01-31,A+ -Gina Clark,Male,9460,1968-05-10,AB- -Kelly Burch,Female,9461,1997-04-09,B+ -Tina Townsend,Female,9462,1987-01-19,A- -Brenda Miller,Female,9463,1961-04-25,B- -Jason Jackson,Female,9464,1944-08-11,AB- -Wendy Turner,Male,9465,1942-06-18,O- -Bryan Randolph,Female,9466,1937-09-24,AB+ -Stephanie Golden,Female,9467,1990-07-17,B- -Kathryn Lin,Female,9468,1965-05-13,AB- -David Green,Male,9469,1971-07-12,O- -Cynthia Carr,Female,9470,1953-10-04,O- -Melody Cook,Male,9471,1970-09-16,A- -George Tate,Female,9472,1952-12-22,A- -Catherine Fowler,Male,9473,1964-08-28,AB+ -Larry Massey,Female,9474,1980-04-14,O- -Jamie Rodriguez,Male,9475,1994-01-05,B+ -Kayla Moore,Male,9476,1956-06-16,A+ -Mrs. Sophia Wilson,Male,9477,1936-04-30,O- -Dr. Robert Rogers,Male,9479,1949-10-13,AB- -Diane Richardson,Male,9481,1961-08-31,A- -Melissa Day,Male,9483,1958-02-13,A+ -Eric Hill,Male,9484,2001-06-14,B+ -Amanda Mendoza,Male,9485,1967-02-16,A- -Richard Simpson,Male,9486,1976-07-06,B+ -Jason Perkins,Female,9487,1997-03-29,A- -Scott Romero,Male,9488,1973-09-17,A- -Ryan Mckay,Male,9489,1945-11-03,O- -Dennis Horton,Female,9490,2001-03-02,O+ -Tara Miller,Female,9491,1987-06-12,O- -Dr. Diane Barron,Male,9492,1996-02-07,A- -Linda Cabrera,Female,9493,1963-01-15,A+ -Alicia Rios,Male,9494,1995-06-25,O- -Jared Green,Male,9495,1953-12-06,A- -Amy Hall,Male,9496,1967-05-20,A- -Glen Rowe,Male,9497,1977-02-25,O- -Joseph Hernandez,Male,9498,1940-06-12,O- -Tammy Adams,Female,9499,1977-03-06,A+ -Sandra Chavez,Male,9500,1942-11-23,B+ -John Jones,Female,9501,1942-05-05,O- -Mr. Matthew Moore,Female,9502,1948-01-02,AB+ -Charles Bowen,Male,9503,1943-01-26,AB- -Jorge Hale,Male,9504,1964-01-29,AB+ -Amy Pierce,Male,9505,1987-02-03,A+ -Corey Reyes,Male,9506,1958-08-26,O+ -Steven Walters,Male,9508,1973-06-08,AB+ -Matthew Williamson,Male,9509,1989-01-27,B+ -Justin Allen,Female,9510,1939-02-03,A- -Darrell Johnson,Male,9511,1959-06-08,AB- -Alexandra Jones,Male,9512,1942-11-12,B- -Brandon Gaines,Female,9513,1986-08-30,AB- -Rhonda Allen,Female,9514,2002-10-02,AB+ -Janice Wilson,Male,9515,1984-11-30,B- -Thomas Holmes,Male,9516,1979-02-21,A+ -Lauren Wilson,Female,9517,1979-11-24,B+ -Heather Glenn,Male,9518,1946-08-03,AB- -Brian Hughes,Male,9519,1994-05-20,O+ -Kara Mcbride,Male,9520,1931-12-28,B- -Zoe Moore,Male,9521,2000-09-10,B- -Emily Fields,Female,9522,1948-05-03,AB- -Steven Castillo,Female,9523,1962-08-11,AB+ -Andrew Bradford,Male,9524,1955-05-07,B- -Charles Smith,Male,9525,1965-06-29,A+ -Tyler Ramirez,Female,9526,1975-08-19,AB- -Eric Mills,Female,9527,1932-12-17,A+ -Jennifer Diaz,Female,9528,1985-06-30,AB- -Jennifer Merritt,Female,9529,1982-09-30,A+ -Ashley Reyes,Female,9530,1959-07-04,AB+ -Bradley Johnson,Female,9531,1968-11-13,AB- -Kenneth Guerrero,Female,9532,1982-12-28,B+ -Cheryl Watts,Male,9533,1955-08-02,A- -Paul Tapia,Male,9534,1973-09-10,O+ -Justin Wells,Female,9535,1993-12-25,AB+ -Charles Hernandez,Male,9536,1962-01-02,A+ -Mr. Thomas Sanchez,Female,9537,1977-06-14,B+ -Jeffrey Cox,Male,9538,1943-01-13,AB- -Dr. Victoria Brown,Male,9540,2001-12-27,AB+ -Brandon Thompson,Female,9542,1966-10-15,A+ -Joshua Pratt,Female,9543,1930-03-08,O- -William Everett,Male,9544,1999-01-11,O- -Ashley Nichols,Male,9545,1998-02-22,B- -Robert King,Female,9546,1931-07-19,O+ -Shawn Mitchell,Female,9547,2001-09-02,O- -Matthew Brooks,Male,9548,1999-07-19,A- -Emily Mullins,Male,9549,1966-09-02,A+ -Mitchell Hooper,Male,9550,1940-01-19,AB+ -David Terry,Male,9551,2000-02-04,AB- -Allison Stanley,Female,9552,1936-03-01,AB+ -Justin Price,Female,9553,1965-06-15,B- -Candace Ward,Female,9554,1932-03-15,B+ -Chelsea Gray,Female,9555,1987-07-16,AB+ -Taylor Schmitt,Male,9556,1956-03-28,O- -Bobby Powers,Male,9557,1978-03-29,AB+ -Cynthia Johnson,Female,9558,1993-04-04,O- -Peter Reed,Female,9559,1963-06-21,O- -Carol Howard MD,Male,9560,1993-10-07,O+ -Katherine Cherry,Male,9561,1946-06-22,B- -Amanda Leon,Male,9562,1965-09-10,A- -Richard Green,Female,9564,1984-07-29,A- -Michael Peters,Male,9565,1963-12-06,A+ -Louis Ross,Male,9566,1951-09-26,A- -Kyle Brown,Male,9568,1941-05-04,O- -Nicholas Hoffman,Male,9569,1993-12-06,AB- -Debra Turner,Male,9570,1956-02-20,B- -Micheal Newman,Female,9573,1944-08-10,A+ -Amy Quinn,Female,9574,1943-11-26,A- -Kristy Clark,Female,9575,1966-04-09,A- -Robin Roth,Female,9576,1945-05-13,AB- -Daniel Hartman,Female,9577,2002-04-25,AB+ -David Andrews DVM,Male,9578,1952-02-24,B- -Alexandra Lopez,Female,9579,1937-12-02,AB- -Jesse Guerrero,Female,9580,1945-04-09,A- -Tiffany Murray,Male,9581,1984-10-06,B- -Justin Phillips,Female,9582,1979-02-16,B- -John Zimmerman,Male,9583,1948-04-19,A- -Tanner Johnson,Male,9584,1934-02-16,AB+ -Mark Nolan,Female,9585,1974-09-22,AB+ -Marie Wilson,Female,9586,1935-08-26,A- -Dawn Benson,Female,9587,1984-10-30,B- -Michael Watkins,Female,9588,1935-06-24,AB- -Heidi Hawkins,Female,9589,1972-08-14,O+ -Matthew Pacheco,Female,9591,1933-07-18,O- -Tiffany Hernandez,Male,9592,1971-05-02,AB+ -Denise Clark,Female,9593,1941-02-17,A- -Daniel Mason,Female,9595,1968-07-30,B+ -James Richard,Female,9596,1996-10-19,O+ -Chelsea Huff,Male,9597,2002-02-01,AB+ -Jeffery Norman,Male,9598,1979-04-01,B+ -Nicholas Bowman,Female,9599,1978-06-24,B- -Joshua Horton,Female,9600,1991-03-02,A- -Madison Gentry,Female,9601,1981-07-17,O+ -Joel Lawson,Female,9602,1977-11-12,A- -Gabriel Pierce MD,Female,9603,1988-09-30,AB- -Nancy Scott,Male,9604,2001-05-29,AB- -Arthur Lara,Male,9605,1955-07-07,A+ -Carol Duncan,Male,9608,1953-03-29,O- -Charles Harvey,Male,9609,1960-10-11,O- -Gabriella Ware,Female,9610,1958-07-10,AB+ -Patrick Camacho,Male,9612,1972-08-22,O- -Allen Nelson,Female,9613,1971-11-24,A- -Russell Davis,Female,9614,1970-02-10,A- -Jack Hancock,Female,9615,1966-07-21,A+ -Hunter Sandoval,Male,9616,1985-03-24,B+ -Larry Luna,Male,9617,1935-09-28,AB- -Bruce Morales,Male,9618,1962-04-24,B+ -Mark Clark,Female,9619,1980-11-26,B+ -Joseph Garner,Male,9620,1991-04-03,O+ -Mary Pacheco,Female,9621,1975-05-04,O+ -Douglas Perez,Male,9622,1949-08-18,AB- -Dennis Brown,Female,9624,1966-05-20,B- -Rodney Perez,Female,9625,1991-04-29,AB- -Eric Robertson Jr.,Female,9626,1959-04-13,O+ -Jennifer James,Male,9627,1963-05-19,B+ -Erik Lucas,Female,9628,1979-06-04,AB+ -Benjamin Miller,Male,9629,1959-05-26,A+ -Patrick Cook,Male,9630,1999-02-19,B+ -Jill Eaton,Male,9633,1979-11-07,AB- -Erik Miranda,Male,9634,1944-02-04,B- -Michelle Erickson,Male,9635,1978-07-28,B+ -Amy May,Male,9636,1983-04-09,AB+ -Jennifer Delacruz,Male,9637,1983-10-13,AB- -Edgar Mitchell,Female,9638,1946-12-22,AB+ -Cody Moran,Female,9639,1931-07-01,B+ -Amy Weaver,Female,9641,1944-04-28,AB- -Amanda Pratt,Male,9642,1951-10-23,AB+ -Ms. Jessica Carney PhD,Female,9643,1980-07-24,A- -Jasmine Forbes,Female,9644,1935-08-03,O- -Anthony Ward,Female,9645,1987-04-10,AB+ -David Moore,Male,9647,1934-10-19,A- -James Irwin,Female,9648,2001-09-16,B+ -Catherine Kline,Female,9649,1935-01-24,O- -Michael Knight,Female,9650,1937-03-27,O+ -Jeffrey Maxwell,Male,9651,1934-05-20,O- -Martin Miller,Female,9652,1968-03-13,AB+ -Nathan Gray,Female,9653,1986-11-29,A+ -Jennifer Morales,Male,9654,1962-04-20,A+ -Mark Patterson,Male,9655,1985-04-05,O+ -Maria Johnson,Male,9656,1976-07-20,AB+ -Shane Colon,Female,9657,1933-02-06,O- -Patricia Murray,Male,9658,1945-01-13,A+ -Alison Cline,Female,9659,1945-11-13,AB- -Vickie Rubio,Female,9660,1958-11-01,B- -George Smith,Female,9661,1959-12-06,AB+ -Lisa Henderson,Female,9662,1950-11-25,A- -Denise Zavala,Female,9663,1978-12-06,A- -Joshua Moran,Female,9664,1996-05-06,AB- -Jack Anderson,Female,9665,1943-09-19,AB- -Michael Shelton,Male,9666,2001-07-20,AB+ -Yesenia Marks,Female,9667,1935-10-15,B- -Deborah Valentine,Male,9668,1932-11-10,A+ -Jennifer Hartman,Female,9669,1968-02-14,B- -Lisa Frey,Male,9670,1936-08-28,O+ -Carl Torres,Male,9671,1996-09-14,O- -Michelle Zuniga,Female,9672,1968-02-17,O- -Brandon Lopez,Female,9673,1934-05-02,AB- -Andrew Turner,Female,9674,1969-05-10,A+ -Erika Kidd,Female,9675,1933-08-01,B- -Emily Owens,Male,9676,1988-04-27,AB- -Melinda Martinez,Male,9677,1954-01-28,AB+ -Tammy Walker,Female,9678,1934-06-09,AB- -Belinda Stevens,Female,9679,1995-05-27,AB+ -Cheryl Simpson,Male,9680,1943-01-19,AB+ -Tina Haynes,Female,9681,1989-07-16,O+ -Kendra Romero,Male,9682,1944-03-20,O+ -Kaitlyn Griffin,Male,9683,1948-02-18,AB+ -Teresa Davis,Female,9684,1946-09-07,B+ -Karen Henry,Female,9685,1993-03-19,A+ -Traci Melendez,Male,9686,1975-02-18,O+ -Dan Potter,Male,9687,1993-01-31,O+ -Christopher Church,Male,9688,1990-12-11,O- -Megan Phillips,Female,9689,1986-07-21,AB- -Dawn Hernandez,Female,9690,1930-08-26,O- -Miguel Weaver,Male,9691,1994-08-23,A+ -Robert Newton,Male,9692,1996-11-06,O+ -Matthew Dougherty,Female,9693,1989-02-22,A- -Wanda Rivera,Male,9694,1985-11-17,B+ -Lindsey Cross,Female,9695,1960-06-02,O+ -Michelle Peterson,Male,9696,1946-08-18,B- -Jessica Ibarra,Male,9697,1936-12-17,A+ -Lindsey James,Male,9698,1971-11-04,A- -Eric Taylor,Female,9700,1957-11-30,AB- -Hannah Marshall,Male,9701,1934-03-18,AB- -Lauren Delacruz,Male,9703,1976-12-03,A- -Erin Sullivan,Male,9704,1961-08-26,AB- -Kristina Lane,Female,9705,1966-10-13,B+ -Mrs. Christina Hodges MD,Female,9706,1950-04-02,A- -Jillian Price,Female,9707,1996-04-11,A+ -Jessica Gentry,Male,9708,1989-12-08,A- -Lindsay Lin,Female,9709,1986-06-15,A- -Alyssa Hernandez,Male,9710,1976-05-03,B- -Michael Davis,Male,9711,1989-12-11,B- -Rhonda Adams,Female,9712,1998-01-09,O- -Linda Monroe,Female,9713,1996-07-23,A+ -Amanda Stewart,Female,9714,1944-01-19,A+ -Eric Garrison,Female,9715,1953-10-24,B- -Scott Randall,Female,9716,1977-12-13,AB+ -Matthew Hart,Female,9717,1958-02-14,AB+ -Charles Hall,Female,9718,1938-08-12,O- -Sylvia Hill,Male,9719,1965-11-13,B+ -Kristi Jones,Male,9720,1998-04-11,AB+ -Angela Thomas,Male,9721,1985-01-16,AB+ -Brandy Maynard,Male,9722,2001-04-10,AB+ -Erica Rhodes,Female,9723,1941-02-19,B+ -Justin Martinez,Female,9724,1941-06-27,O+ -Jeffrey Scott,Male,9725,2001-11-21,O- -Katherine Jimenez,Male,9726,1955-04-24,B- -Jesse Gonzalez,Male,9727,1949-12-08,AB+ -Jonathan Moore,Male,9728,1936-11-14,AB- -Stephanie Hart,Female,9729,1988-08-04,A- -Stephanie Wallace,Female,9730,1972-06-11,O+ -Daniel Travis,Female,9731,1947-11-21,B+ -Michelle James,Male,9732,1987-10-20,B+ -Roberto Archer,Female,9733,1976-09-21,B+ -Michael Lara,Male,9734,1970-03-02,AB+ -Stephanie Garza MD,Male,9736,1940-10-07,A- -Jenny Watson,Male,9737,1969-12-17,A- -Kirk Martin,Male,9738,1965-09-15,O+ -Veronica Taylor,Male,9739,1945-03-23,O- -Laura Stokes,Female,9740,1940-12-30,B+ -Anthony Johnson,Female,9741,1994-12-14,AB- -Debra Hall,Male,9742,1931-12-21,AB- -Julie Williams,Female,9743,1930-03-16,AB- -Catherine Garrett,Male,9744,2000-10-29,B+ -Priscilla Farrell,Male,9745,2002-07-20,AB+ -Jerry Gibson,Female,9746,1986-03-29,O+ -William Smith DVM,Male,9747,1966-01-13,B+ -Charles Davidson,Female,9749,1998-02-28,AB- -Stephanie Landry,Male,9750,1935-11-20,A- -Jerry Reyes,Male,9751,2001-04-06,B+ -Megan Alexander,Male,9752,1968-06-03,A- -Jamie Dyer,Male,9753,2001-07-18,A+ -Jeffrey Gregory,Female,9754,1993-03-28,B+ -Kaylee Macdonald,Male,9755,1941-07-09,A+ -Ashley Rivera,Female,9756,1994-05-30,O+ -Regina Rios,Female,9757,1998-07-19,B+ -Audrey Park,Female,9758,1971-03-10,AB+ -Dalton Cooley,Female,9759,1954-11-09,AB+ -William Franco,Female,9760,1962-02-07,O- -Stacey Perez,Male,9761,1940-10-11,O- -William Valencia,Male,9762,1955-06-26,AB- -Jasmine Brooks,Male,9763,1977-10-20,B- -Mark Shaw,Female,9765,1985-06-21,A- -Dylan Hawkins,Female,9766,1942-08-21,O- -Tasha Valentine,Female,9767,1949-11-22,AB+ -Steven Ramirez,Female,9768,1992-04-28,A- -James Gutierrez,Male,9769,1957-09-12,B- -Jay Whitehead,Male,9770,1973-01-28,O- -Crystal Maxwell,Male,9771,1968-01-14,O+ -Anna Mccarthy,Female,9772,1999-10-28,A+ -Shawn Rodriguez,Male,9773,1942-09-27,O- -Susan Adams,Female,9774,1993-06-15,B+ -John Hall,Female,9775,1958-09-04,O- -Alexa Jensen,Male,9776,1955-04-27,B+ -Hayden Lopez,Female,9777,1995-04-10,O+ -David Hurley,Male,9778,1987-08-28,AB+ -Sara Burns,Female,9779,1976-05-04,AB- -Samantha Mcguire,Female,9780,1935-12-02,O+ -James Cole,Female,9781,1981-01-08,AB- -Jorge Chavez,Male,9782,2000-03-02,O- -Danielle Steele,Male,9783,1987-05-15,AB+ -Jerry Williams,Male,9784,1982-05-16,B- -Collin Ballard,Female,9785,1969-12-10,O- -Tracy Garza,Male,9786,1963-01-09,O+ -Theresa Fletcher,Female,9787,1946-07-17,B- -Nicole Foster,Male,9788,1964-09-12,A+ -Lorraine Scott,Male,9789,1987-08-29,B- -Ian Miranda,Male,9790,1934-04-10,O+ -Lauren Beard,Female,9792,1962-09-24,A- -Brett Stark,Male,9793,1978-01-17,B- -Jessica Warner MD,Male,9794,1971-04-14,O+ -Jeremy Nelson,Female,9796,1944-11-02,A- -Laura Perez,Female,9797,1937-06-15,O- -Mrs. Kimberly Weber,Female,9798,1958-11-20,A- -Eric Parks,Female,9799,1976-02-23,AB+ -Jonathan Anderson,Male,9800,2001-03-01,A+ -Stephanie Thompson,Male,9801,1934-01-08,A- -Stacey Hernandez,Female,9802,1996-07-22,AB+ -Lisa Wagner,Male,9803,1932-03-19,AB+ -George Barnes,Male,9805,1997-10-03,AB+ -Natalie Strong,Female,9807,1948-05-25,A- -Angel Scott,Male,9808,1974-10-20,O+ -David Cole,Female,9809,1958-12-31,B+ -Thomas Underwood,Female,9810,1943-11-22,O+ -Justin Williams,Female,9811,1951-12-09,A+ -Brian Daniel,Female,9812,1979-05-13,O+ -Janet Daniel,Male,9813,1968-01-14,AB- -Darrell Valenzuela,Female,9814,1952-08-02,O+ -Daniel Lewis,Male,9815,1977-12-13,O+ -Chelsea Moore,Male,9816,1971-06-22,O+ -Samantha Stephens,Male,9817,1978-07-25,O- -Jerry Brown,Male,9818,1932-02-07,A+ -Ronald Miller,Female,9819,1940-08-31,AB- -Lori Finley,Male,9820,1999-02-26,O+ -Nina Delacruz,Male,9821,1984-04-25,B+ -Bethany Murphy,Female,9822,1957-12-05,A+ -Micheal Gardner,Female,9823,1950-01-25,B- -Carrie Brown,Female,9825,1971-12-24,O- -Dillon Barton,Male,9826,1970-01-12,A- -Nancy Walker,Male,9827,1961-01-12,B+ -Robert Olsen,Female,9828,1979-10-05,O+ -Adam Miller,Male,9829,2001-05-01,B+ -John Chen,Female,9830,1932-06-04,AB- -Benjamin Garcia,Male,9831,1951-03-06,O- -Paul Morgan,Male,9832,1940-09-11,AB- -Antonio Smith,Male,9833,1942-04-20,A- -Marc White,Female,9834,1956-08-22,A- -Amber Irwin,Female,9835,1935-09-05,B+ -Kayla Hickman,Female,9836,1975-09-18,O- -Tammy Rodriguez,Female,9837,1947-03-02,B- -Pamela Mcclure,Female,9838,1989-06-01,B+ -Christine Atkinson,Female,9839,1977-01-28,A+ -Jason Shepard,Male,9840,1948-09-24,O- -Randy Terrell,Female,9841,1959-12-30,AB+ -Stephanie Summers,Female,9842,1935-07-26,A- -Tracy Harrison,Male,9843,1956-07-22,B- -Cynthia Moore,Male,9845,1964-11-15,B+ -Kimberly Rivas,Female,9846,1959-06-20,A- -Kayla Nelson,Male,9847,2002-06-22,AB+ -Christine Raymond,Female,9848,1949-07-09,B- -Jennifer Davis,Female,9849,1982-04-07,A- -Nathaniel Pearson,Male,9850,1954-01-23,AB+ -Jason Allen,Female,9851,1935-11-18,AB+ -Edwin Moore,Male,9852,1931-09-08,A- -James Vang,Female,9854,1932-08-05,B+ -Kimberly Ross,Male,9856,1945-07-18,A- -Shelly Evans,Female,9857,1987-08-05,AB- -Ashley Gray,Female,9858,1951-07-16,O- -Tammy Franco,Male,9859,1935-07-07,O- -Edward Lopez,Female,9860,1984-12-24,B- -Sydney Olson,Male,9861,1976-03-14,A+ -Christopher Tucker,Male,9862,1986-10-08,A- -Laura Nunez,Female,9863,1981-07-04,B+ -Melissa Rojas,Female,9864,1943-08-28,AB- -Casey Shaw,Male,9865,1953-11-29,O- -James Fowler,Female,9866,1955-12-15,O- -Dr. Michael Mann,Female,9867,1956-11-25,B+ -Christy Moran,Female,9868,1988-04-30,AB- -Brandon Lee,Female,9869,1938-01-05,O+ -Raymond Roth,Male,9870,2000-12-27,AB- -Olivia Wright,Female,9872,1949-12-09,B+ -Chad Nguyen,Male,9873,1972-10-22,O- -Anthony Crawford,Male,9874,1973-05-22,A+ -Mr. Terry Herrera,Male,9875,1986-11-03,O+ -Teresa Kaiser,Female,9876,1955-12-26,B+ -Audrey Horne,Male,9879,1988-03-09,B+ -Brenda Maynard,Male,9880,1949-02-16,AB+ -Ethan Craig,Female,9881,1948-10-15,AB- -Jamie Williams,Female,9882,1963-04-17,AB+ -Jamie Daniel,Male,9883,1942-02-10,O+ -Matthew Norris,Female,9884,1958-08-12,O+ -James Ochoa,Female,9886,1993-09-01,O+ -Mark Reeves,Male,9887,1952-05-04,B- -Samantha James,Male,9888,1935-09-05,AB- -Jeremy Rodriguez,Male,9890,1991-10-02,B+ -Kevin Carpenter,Male,9892,1976-10-11,A- -Tyler Williams,Female,9893,1957-09-07,A+ -James Schmidt,Female,9894,1997-01-26,A+ -Joseph Hall,Female,9896,1948-09-08,B+ -Jonathan Collins,Male,9897,1959-03-02,AB+ -Albert Galvan,Male,9898,1964-02-06,B+ -Samuel Garza,Female,9899,1996-05-25,AB+ -Melissa Greer,Female,9901,1986-07-14,A- -Tina Wiley,Female,9902,1951-10-26,AB+ -Arthur Murphy,Male,9903,1997-02-28,AB- -Anthony Warner,Female,9904,1964-04-08,O- -Paul Henry,Female,9905,1969-02-15,AB+ -Jane Rich,Female,9906,1951-04-17,O+ -Douglas Acosta,Female,9907,1953-06-07,AB+ -Michelle Young,Male,9908,1953-11-15,O+ -Jonathan Perry,Male,9909,1943-05-19,B- -Heather Stewart,Female,9910,1985-08-19,O- -Laura Mullen,Female,9912,1942-08-25,O- -Paula Chang,Male,9913,1989-01-26,A- -Jeffrey Soto,Male,9914,1968-03-18,AB- -Samuel Lawson,Male,9915,1958-04-29,B+ -Erin Davis,Male,9916,1948-10-28,AB- -Justin Morales,Male,9917,1957-08-27,A+ -Jenna Harrison,Male,9918,1951-07-06,B- -Jamie Brown,Female,9919,1944-10-15,A- -Benjamin Stone,Male,9920,1938-04-11,AB- -John Randolph,Male,9921,1961-12-19,O+ -John Ramirez,Male,9922,1959-11-17,B- -Todd Evans,Female,9923,1945-09-17,O- -Eric Allen,Male,9925,1971-06-01,B+ -Matthew Willis,Male,9926,1991-03-30,B+ -Megan Walker,Male,9927,1934-11-06,O+ -Amy Tyler,Male,9928,1963-09-10,A- -Mariah Cox,Male,9929,1957-04-18,A- -Earl Christensen,Female,9930,1963-12-18,B- -Jessica Johnson,Male,9931,1954-08-12,O- -Logan Espinoza,Female,9932,1938-10-21,AB- -Angela Wade,Male,9933,1962-10-20,O+ -Cynthia Pena,Female,9934,1948-04-30,O+ -Karen Rodriguez,Male,9935,1983-01-03,O- -Alicia Love MD,Female,9936,1985-02-02,O+ -Yvonne Lopez,Female,9937,2001-12-21,B+ -Christine Murphy,Female,9938,1976-12-01,AB- -Becky Roberts,Female,9939,1959-03-11,AB- -Matthew Jackson,Male,9940,1933-10-24,AB- -Amanda Hall,Female,9941,1948-08-03,O- -Marisa Jennings,Male,9942,1969-05-21,AB+ -Jacqueline Peterson,Male,9943,1976-09-17,AB+ -Victoria Lee,Male,9944,1930-04-16,A- -Benjamin Mcintyre,Female,9945,1961-06-06,A- -Jennifer Russell,Female,9946,1987-11-15,B+ -Jamie Thompson,Male,9947,1935-05-01,O+ -Alec Olson,Female,9948,1945-03-07,AB- -Dustin Garcia,Male,9949,1977-11-09,O+ -Patricia Foley,Male,9950,1966-05-07,O- -Katrina Beck,Male,9951,1949-02-15,O+ -Omar Bailey,Female,9952,1934-11-18,A+ -Thomas Lloyd,Male,9953,1987-04-17,AB+ -David Woods,Male,9954,1983-10-11,O+ -Lindsay Gill,Male,9955,1947-01-05,O+ -Anthony Mathews,Female,9956,2002-10-03,B- -Alicia Peters,Female,9957,1969-08-29,B+ -Samuel Wilkins,Female,9958,1972-09-22,O+ -Oscar Burton,Female,9959,1943-05-02,A+ -Leslie Wood,Female,9960,1979-02-18,AB+ -Joseph Wilson,Female,9961,1985-10-29,B- -Jenny Ho,Male,9962,1957-01-06,B+ -Adrienne Goodman,Male,9963,2000-05-11,O- -Darren Jones,Female,9964,1940-11-25,A- -Dawn Shah MD,Male,9965,1955-12-29,O- -Jane Cole,Male,9966,1945-07-23,AB+ -Alejandro Smith,Male,9967,1945-10-31,A- -Emma Mccann,Female,9968,1977-06-10,O- -Darius Smith,Female,9969,1987-04-26,B+ -Steven Day,Female,9970,1955-01-07,A+ -Gregory Torres,Female,9971,1976-07-02,O+ -Sharon Sanchez,Male,9972,1965-08-17,AB+ -Thomas Weaver,Female,9973,1992-04-25,A- -Nathaniel Hudson,Female,9974,2001-03-02,B- -Brett Frazier,Female,9975,1934-03-05,O+ -Colton Weaver,Female,9976,1985-03-03,O- -James Calhoun,Male,9977,1975-07-18,O- -Melissa Campbell,Female,9978,2001-07-07,B- -Jacob Wade,Female,9979,1930-03-20,A+ -Danielle Salinas,Female,9980,1938-07-21,B+ -Catherine Carrillo,Male,9981,1999-09-29,B+ -Danielle White,Female,9982,1949-05-05,B- -Mark Gross,Male,9983,1965-10-12,AB+ -Erica Crawford,Male,9984,1953-01-17,B- -Amanda Baker,Male,9985,1966-08-02,O- -Richard Mack,Male,9986,1933-04-24,A+ -Bobby Pierce,Female,9987,1944-02-10,A+ -Julie Johnson,Female,9988,1943-05-31,AB- -Amy Lucas,Female,9989,1980-10-27,B- -Tracy Johnson,Male,9990,1959-10-07,AB+ -John Holder,Female,9991,1950-11-02,O- -Jorge Obrien,Male,9994,1960-04-30,O+ -James Hood,Male,9995,1973-03-27,B+ -Stephanie Evans,Female,9996,1999-03-19,B+ -Christopher Martinez,Male,9997,1936-12-19,B+ -Amanda Duke,Male,9998,1945-02-13,A+ -Eric King,Male,9999,1936-06-28,B+ diff --git a/langchain-rag-app/source_code_step_4/data/payers.csv b/langchain-rag-app/source_code_step_4/data/payers.csv deleted file mode 100644 index 104cc0ac0b..0000000000 --- a/langchain-rag-app/source_code_step_4/data/payers.csv +++ /dev/null @@ -1,6 +0,0 @@ -payer_name,payer_id -Medicaid,0 -UnitedHealthcare,1 -Aetna,2 -Cigna,3 -Blue Cross,4 diff --git a/langchain-rag-app/source_code_step_4/data/physicians.csv b/langchain-rag-app/source_code_step_4/data/physicians.csv deleted file mode 100644 index 511760ceb7..0000000000 --- a/langchain-rag-app/source_code_step_4/data/physicians.csv +++ /dev/null @@ -1,501 +0,0 @@ -physician_name,physician_id,physician_dob,physician_grad_year,medical_school,salary -Joseph Johnson,0,1970-02-22,2000-02-22,Johns Hopkins University School of Medicine,309534.15507605654 -Jason Williams,1,1982-12-22,2012-12-22,Mayo Clinic Alix School of Medicine,281114.5035585275 -Jesse Gordon,2,1959-06-03,1989-06-03,David Geffen School of Medicine at UCLA,305845.5846360554 -Heather Smith,3,1965-06-15,1995-06-15,NYU Grossman Medical School,295239.7666886809 -Kayla Hunter DDS,4,1978-10-19,2008-10-19,David Geffen School of Medicine at UCLA,298751.35520122456 -Christopher Jordan,5,1989-11-04,2019-11-04,NYU Grossman Medical School,316681.6994348657 -Elaine Medina,6,1957-12-24,1987-12-24,Baylor College of Medicine,283743.02626834356 -Donna Mcintyre,7,1987-03-12,2017-03-12,Perelman School of Medicine (University of Pennsylvania),319166.7313781032 -Richard Tucker,8,1983-04-02,2013-04-02,Perelman School of Medicine (University of Pennsylvania),347019.2359991686 -Kimberly Oliver,9,1989-06-02,2019-06-02,Stanford University School of Medicine,310293.2724885527 -Christopher Williamson,10,1974-01-22,2004-01-22,"University of California, San Francisco School of Medicine",276537.12944182596 -Cory Campbell,11,1988-11-08,2018-11-08,Stanford University School of Medicine,281549.4596598061 -Cathy Church,12,1951-12-30,1981-12-30,NYU Grossman Medical School,292552.1129764465 -Kristopher Wiley Jr.,13,1951-11-30,1981-11-30,Yale School of Medicine,282153.29108791304 -Denise Chavez,14,1969-09-04,1999-09-04,Columbia University Vagelos College of Physicians and Surgeons,270264.5907116985 -Jason Merritt,15,1989-09-25,2019-09-25,Johns Hopkins University School of Medicine,304632.2183088508 -Jacqueline Mcneil DVM,16,1988-02-14,2018-02-14,Columbia University Vagelos College of Physicians and Surgeons,293364.08004822605 -Veronica Moore,17,1970-04-06,2000-04-06,University of Chicago Pritzker School of Medicine,305691.62650674174 -Steven Watson,18,1961-06-03,1991-06-03,Columbia University Vagelos College of Physicians and Surgeons,335591.62236645864 -Ryan Brown,19,1961-12-09,1991-12-09,Harvard Medical School,292909.4149822692 -Ashley Pena,20,1956-11-07,1986-11-07,Columbia University Vagelos College of Physicians and Surgeons,264437.3998595907 -Erin Grimes,21,1965-01-08,1995-01-08,Stanford University School of Medicine,288033.2252323935 -Kimberly Johnson,22,1972-10-27,2002-10-27,Mayo Clinic Alix School of Medicine,323112.75651349925 -Tyler Lopez,23,1962-04-19,1992-04-19,University of Texas Southwestern Medical School,320303.1081215087 -Karen Clark,24,1980-06-22,2010-06-22,Mayo Clinic Alix School of Medicine,315559.189428407 -Abigail Fuller,25,1970-12-13,2000-12-13,Perelman School of Medicine (University of Pennsylvania),281258.7983051369 -Ryan Vasquez,26,1953-03-13,1983-03-13,University of Texas Southwestern Medical School,322557.07854098093 -Lisa Wilkinson,27,1952-11-28,1982-11-28,University of Michigan Medical School,329306.972341112 -Jason Little,28,1980-08-05,2010-08-05,Johns Hopkins University School of Medicine,279137.3511033007 -Heather Smith,29,1962-12-13,1992-12-13,Johns Hopkins University School of Medicine,298752.89707372425 -Denise Perez,30,1975-08-06,2005-08-06,Harvard Medical School,360612.05891046335 -Joseph Roman,31,1964-08-09,1994-08-09,Yale School of Medicine,277803.7717060984 -Elizabeth Beck,32,1974-06-08,2004-06-08,Stanford University School of Medicine,248847.39992268826 -Deborah Wright,33,1961-11-09,1991-11-09,Perelman School of Medicine (University of Pennsylvania),341487.13303394394 -Renee Hicks,34,1968-08-15,1998-08-15,Baylor College of Medicine,334098.1431511368 -Keith Reed,35,1963-04-09,1993-04-09,University of Chicago Pritzker School of Medicine,286290.98029267724 -Beverly Jordan,36,1968-06-06,1998-06-06,Yale School of Medicine,296610.2465439574 -Ronald Hernandez Jr.,37,1992-01-29,2022-01-29,Johns Hopkins University School of Medicine,263251.94849433145 -Colleen Ward,38,1956-12-14,1986-12-14,Mayo Clinic Alix School of Medicine,302668.5681782911 -Lauren Rojas,39,1969-04-27,1999-04-27,Columbia University Vagelos College of Physicians and Surgeons,334977.411461142 -Logan Diaz,40,1981-07-13,2011-07-13,Columbia University Vagelos College of Physicians and Surgeons,283721.85474725167 -Joshua Jenkins,41,1981-06-20,2011-06-20,University of Michigan Medical School,326313.0593635888 -Joyce Brown,42,1954-03-23,1984-03-23,Perelman School of Medicine (University of Pennsylvania),313911.715721713 -Christina Richards,43,1988-03-26,2018-03-26,Stanford University School of Medicine,317334.50672643416 -Ryan Curry,44,1967-04-15,1997-04-15,Stanford University School of Medicine,285470.72458240896 -Lauren Williams,45,1987-10-21,2017-10-21,"University of California, San Francisco School of Medicine",289361.27451199514 -Nathan Fischer,46,1976-03-25,2006-03-25,NYU Grossman Medical School,244596.82696585794 -Tanya Sharp,47,1973-10-18,2003-10-18,Washington University in St. Louis School of Medicine,282999.91762469686 -Amber Thomas,48,1970-07-09,2000-07-09,Johns Hopkins University School of Medicine,334904.5637409378 -Alan Watkins,49,1961-10-22,1991-10-22,Stanford University School of Medicine,272120.0341769318 -Derek Phillips,50,1953-08-17,1983-08-17,University of Michigan Medical School,276590.95038429287 -Patricia Quinn,51,1958-08-08,1988-08-08,Mayo Clinic Alix School of Medicine,319205.6947112137 -Brian Rivera,52,1954-12-16,1984-12-16,Perelman School of Medicine (University of Pennsylvania),312083.0487597928 -Raymond Berry,53,1968-01-15,1998-01-15,University of Chicago Pritzker School of Medicine,320695.89749388903 -Sabrina Rodriguez,54,1964-07-07,1994-07-07,"University of California, San Francisco School of Medicine",265103.3837972879 -Tonya Warner,55,1992-05-25,2022-05-25,University of Michigan Medical School,376921.7384790104 -Lori Burns,56,1982-01-27,2012-01-27,David Geffen School of Medicine at UCLA,263527.3987749825 -Michael Olson,57,1963-01-01,1993-01-01,Harvard Medical School,304627.41941202205 -Jesse Hall,58,1975-11-01,2005-11-01,University of Chicago Pritzker School of Medicine,295240.3351239424 -Jonathan Lucas,59,1960-02-27,1990-02-27,NYU Grossman Medical School,264400.7544790486 -Jenna Taylor,60,1985-11-29,2015-11-29,David Geffen School of Medicine at UCLA,288893.7173156025 -Denise Murray,61,1976-03-21,2006-03-21,Baylor College of Medicine,300699.2280265761 -Stephanie Vargas,62,1977-10-16,2007-10-16,NYU Grossman Medical School,280500.8036440959 -Gabrielle Pitts,63,1967-11-18,1997-11-18,Columbia University Vagelos College of Physicians and Surgeons,328116.7086460455 -Breanna Cruz,64,1977-11-23,2007-11-23,Harvard Medical School,295151.22763612587 -Dean Hart,65,1990-03-15,2020-03-15,Johns Hopkins University School of Medicine,259761.7598694514 -Kim Gray,66,1951-05-20,1981-05-20,Mayo Clinic Alix School of Medicine,257216.2340199211 -Jonathan Decker,67,1953-04-29,1983-04-29,Harvard Medical School,318184.9527183437 -Scott Barton,68,1954-03-12,1984-03-12,NYU Grossman Medical School,255396.8765189899 -Terry Leon,69,1952-04-03,1982-04-03,Washington University in St. Louis School of Medicine,309492.78219147254 -Gerald Smith,70,1963-10-09,1993-10-09,David Geffen School of Medicine at UCLA,313339.6555700088 -Jennifer Baldwin MD,71,1986-10-07,2016-10-07,Johns Hopkins University School of Medicine,270139.3390822795 -Amy Smith,72,1955-10-07,1985-10-07,University of Texas Southwestern Medical School,326722.14251324674 -Carmen Larsen,73,1959-12-07,1989-12-07,Washington University in St. Louis School of Medicine,248466.19128715104 -Robert Pratt,74,1985-07-08,2015-07-08,Columbia University Vagelos College of Physicians and Surgeons,308893.76801995677 -David Lopez,75,1955-01-27,1985-01-27,Washington University in St. Louis School of Medicine,298774.2619921197 -Miguel Davidson,76,1963-06-12,1993-06-12,"University of California, San Francisco School of Medicine",296430.0607280732 -Zachary Campbell,77,1980-02-16,2010-02-16,"University of California, San Francisco School of Medicine",264663.1007105828 -Dr. Parker Joseph,78,1987-11-26,2017-11-26,Baylor College of Medicine,271889.3398680022 -Catherine Haynes,79,1982-01-17,2012-01-17,NYU Grossman Medical School,348564.06075061794 -John Johnson,80,1993-02-25,2023-02-25,Perelman School of Medicine (University of Pennsylvania),336454.65026615263 -Casey Reyes,81,1966-12-13,1996-12-13,University of Chicago Pritzker School of Medicine,322262.53765571397 -Rebecca Wallace,82,1965-06-16,1995-06-16,University of Chicago Pritzker School of Medicine,328195.44310589065 -Kayla Lawson,83,1976-04-02,2006-04-02,University of Texas Southwestern Medical School,325380.40634013806 -Zachary Turner,84,1982-05-22,2012-05-22,University of Texas Southwestern Medical School,290299.31363141374 -Jesus Snyder,85,1972-01-19,2002-01-19,Johns Hopkins University School of Medicine,301428.10655443056 -Kyle Nichols,86,1959-02-13,1989-02-13,Columbia University Vagelos College of Physicians and Surgeons,255824.74865876973 -Nancy Nichols,87,1973-09-19,2003-09-19,Stanford University School of Medicine,297309.13119577424 -Andrew King,88,1969-06-24,1999-06-24,Baylor College of Medicine,335502.4274861756 -Bryan Jones,89,1986-06-24,2016-06-24,"University of California, San Francisco School of Medicine",280178.78255228593 -Jordan Sparks,90,1953-09-15,1983-09-15,Johns Hopkins University School of Medicine,330694.2361406168 -Madison Hardin,91,1980-01-19,2010-01-19,Stanford University School of Medicine,302747.5721608129 -Doris Rodriguez,92,1980-03-07,2010-03-07,University of Chicago Pritzker School of Medicine,258438.84402990804 -Jose Carroll,93,1951-10-30,1981-10-30,Perelman School of Medicine (University of Pennsylvania),266780.41459961067 -Johnny White MD,94,1975-07-26,2005-07-26,Washington University in St. Louis School of Medicine,327579.08609123266 -Karen Collier,95,1987-05-26,2017-05-26,"University of California, San Francisco School of Medicine",316575.7225577516 -Julie Zimmerman,96,1960-03-08,1990-03-08,Johns Hopkins University School of Medicine,303052.92218962876 -Timothy Martinez,97,1970-06-28,2000-06-28,Harvard Medical School,291779.0455725616 -Jennifer Walker,98,1951-06-24,1981-06-24,Stanford University School of Medicine,306317.03932885756 -Joel Copeland,99,1963-08-05,1993-08-05,Washington University in St. Louis School of Medicine,326408.88747759745 -Lisa Brewer,100,1963-03-29,1993-03-29,"University of California, San Francisco School of Medicine",344275.5984146185 -Edward Miller,101,1966-07-18,1996-07-18,University of Chicago Pritzker School of Medicine,345710.52598321816 -Leslie Williams,102,1990-08-16,2020-08-16,University of Michigan Medical School,311158.79702275497 -Miss Maria King,103,1970-01-08,2000-01-08,Columbia University Vagelos College of Physicians and Surgeons,294842.04928906437 -Kristin Phillips,104,1964-07-26,1994-07-26,Stanford University School of Medicine,304387.44023456564 -Maria Thompson,105,1986-03-09,2016-03-09,University of Chicago Pritzker School of Medicine,315663.61071765237 -Mark Vang,106,1957-08-11,1987-08-11,"University of California, San Francisco School of Medicine",315542.0083153527 -Elizabeth Henderson,107,1954-05-01,1984-05-01,Stanford University School of Medicine,339239.5991142031 -Troy Wilson,108,1984-09-16,2014-09-16,Baylor College of Medicine,363472.6716574996 -Candice Manning,109,1965-08-23,1995-08-23,Washington University in St. Louis School of Medicine,293842.3611115774 -Deborah Sampson,110,1963-02-26,1993-02-26,Yale School of Medicine,364676.5472647339 -Joshua Martinez,111,1977-10-02,2007-10-02,"University of California, San Francisco School of Medicine",335167.1774027518 -Ronald Taylor,112,1950-01-10,1980-01-10,Baylor College of Medicine,296975.31029444374 -Rebecca Mckinney,113,1964-01-12,1994-01-12,David Geffen School of Medicine at UCLA,344956.9451659524 -Crystal Wallace,114,1952-10-12,1982-10-12,Johns Hopkins University School of Medicine,350569.44904257497 -Katrina Torres,115,1956-01-03,1986-01-03,University of Michigan Medical School,286191.1366741846 -Michael Watson,116,1973-01-15,2003-01-15,University of Texas Southwestern Medical School,351966.45757456945 -Natalie Browning,117,1987-02-06,2017-02-06,Washington University in St. Louis School of Medicine,332252.4846310789 -Todd Mccormick,118,1989-09-25,2019-09-25,Stanford University School of Medicine,371056.77383937576 -Christopher Zhang,119,1961-05-21,1991-05-21,Columbia University Vagelos College of Physicians and Surgeons,287278.84254001506 -Maurice Lane,120,1969-01-31,1999-01-31,University of Chicago Pritzker School of Medicine,289397.1976879201 -Emily Lucas,121,1968-12-30,1998-12-30,University of Texas Southwestern Medical School,239200.1361076998 -Matthew Marks,122,1987-09-16,2017-09-16,Harvard Medical School,317135.81761703885 -Linda Morris,123,1978-04-28,2008-04-28,University of Chicago Pritzker School of Medicine,311257.53766856156 -Christy Huff,124,1969-11-23,1999-11-23,Stanford University School of Medicine,283110.18985393 -Anthony Lynch,125,1973-10-29,2003-10-29,University of Michigan Medical School,297544.4780553583 -Jessica Rodriguez,126,1951-01-20,1981-01-20,NYU Grossman Medical School,260663.36969474654 -Rick Herrera,127,1951-02-09,1981-02-09,University of Chicago Pritzker School of Medicine,335953.34858495055 -Kathleen Evans,128,1972-05-20,2002-05-20,NYU Grossman Medical School,285309.0157641507 -Dustin Perez,129,1991-07-03,2021-07-03,Johns Hopkins University School of Medicine,392821.47046862857 -Charles Kim,130,1984-12-11,2014-12-11,University of Michigan Medical School,294731.960978669 -Justin Anderson,131,1976-12-30,2006-12-30,"University of California, San Francisco School of Medicine",277211.4347685507 -Louis Sullivan,132,1966-05-26,1996-05-26,Baylor College of Medicine,287630.6064379541 -Samuel Hill,133,1991-05-12,2021-05-12,Harvard Medical School,257641.17070367245 -Rhonda Diaz,134,1959-12-16,1989-12-16,Mayo Clinic Alix School of Medicine,314468.1567210883 -Melissa Garrett,135,1979-11-21,2009-11-21,Stanford University School of Medicine,287403.0090066263 -Alexis Hutchinson,136,1963-03-03,1993-03-03,Perelman School of Medicine (University of Pennsylvania),333937.5837119321 -Samantha Barrett,137,1986-11-04,2016-11-04,Mayo Clinic Alix School of Medicine,291757.57514476747 -Melissa Paul,138,1992-04-14,2022-04-14,University of Chicago Pritzker School of Medicine,341533.2633505694 -Angelica Houston,139,1966-06-03,1996-06-03,University of Texas Southwestern Medical School,322723.67247951124 -Joseph Jones,140,1955-08-11,1985-08-11,Stanford University School of Medicine,300857.9033015503 -Miguel Stout,141,1983-10-13,2013-10-13,Baylor College of Medicine,347406.97762052465 -Andrew James,142,1962-06-11,1992-06-11,David Geffen School of Medicine at UCLA,328568.8038311163 -Russell Morris,143,1963-08-17,1993-08-17,Baylor College of Medicine,388386.38479989674 -David Hicks,144,1984-12-23,2014-12-23,Perelman School of Medicine (University of Pennsylvania),287716.34265065385 -Michael Miranda,145,1977-06-03,2007-06-03,Harvard Medical School,302298.4831637538 -Shawn Ellis,146,1959-05-13,1989-05-13,Baylor College of Medicine,347061.2703303279 -Lauren Williams,147,1989-07-05,2019-07-05,Columbia University Vagelos College of Physicians and Surgeons,253693.86564494664 -Jennifer Mccall,148,1969-10-27,1999-10-27,David Geffen School of Medicine at UCLA,339508.3068969769 -Erik Guerrero,149,1989-09-02,2019-09-02,Mayo Clinic Alix School of Medicine,313179.08273044415 -Kerry Hart,150,1978-05-11,2008-05-11,"University of California, San Francisco School of Medicine",273353.67733658256 -Kyle Campbell,151,1961-12-12,1991-12-12,Johns Hopkins University School of Medicine,259108.81024346635 -Tamara Potter,152,1977-11-11,2007-11-11,Columbia University Vagelos College of Physicians and Surgeons,279825.3158060915 -Tracy Garza,153,1973-01-27,2003-01-27,Yale School of Medicine,231455.41283023285 -Mr. Justin Bryant,154,1973-06-29,2003-06-29,David Geffen School of Medicine at UCLA,285313.8166892549 -Richard Miller,155,1963-04-21,1993-04-21,"University of California, San Francisco School of Medicine",318676.6900002775 -Melissa Conway,156,1977-06-28,2007-06-28,"University of California, San Francisco School of Medicine",285710.9807709352 -Jessica Cain,157,1991-10-07,2021-10-07,Stanford University School of Medicine,341649.38104301423 -Christopher Stanley,158,1981-05-28,2011-05-28,David Geffen School of Medicine at UCLA,349798.4280817586 -Roger Craig,159,1953-06-06,1983-06-06,Harvard Medical School,338269.33447877323 -Yvonne Jacobs,160,1969-02-26,1999-02-26,University of Chicago Pritzker School of Medicine,306919.22730793094 -Teresa Frost,161,1983-05-01,2013-05-01,Perelman School of Medicine (University of Pennsylvania),230259.62182540592 -Andrew Bates,162,1962-10-18,1992-10-18,Yale School of Medicine,278889.0752390218 -Eric Marquez,163,1993-03-17,2023-03-17,Perelman School of Medicine (University of Pennsylvania),295738.8441967684 -Michael Bates,164,1985-09-25,2015-09-25,Mayo Clinic Alix School of Medicine,273183.9705148557 -Jessica Anderson,165,1968-11-03,1998-11-03,Mayo Clinic Alix School of Medicine,295814.8357354029 -William Bailey,166,1969-01-10,1999-01-10,Perelman School of Medicine (University of Pennsylvania),348302.02406080137 -Johnny Morgan,167,1976-01-26,2006-01-26,Baylor College of Medicine,250626.70411454045 -Rachel Oneill,168,1971-12-14,2001-12-14,Harvard Medical School,354350.7616835708 -Crystal Cruz,169,1969-01-02,1999-01-02,NYU Grossman Medical School,326541.79265262414 -Tiffany Hodges,170,1977-12-14,2007-12-14,Baylor College of Medicine,308046.5042483309 -Sarah Gardner,171,1976-02-24,2006-02-24,University of Texas Southwestern Medical School,278591.5033277771 -Benjamin Stevens,172,1962-09-12,1992-09-12,Baylor College of Medicine,273781.4896352572 -Tony Mason,173,1963-04-17,1993-04-17,Johns Hopkins University School of Medicine,251213.4685623378 -Courtney Walton,174,1978-04-04,2008-04-04,Washington University in St. Louis School of Medicine,351502.9644094316 -Catherine Howard,175,1963-05-25,1993-05-25,University of Chicago Pritzker School of Medicine,346128.34680222126 -Scott Scott,176,1969-04-14,1999-04-14,Johns Hopkins University School of Medicine,257811.46114250153 -April Shea,177,1961-05-27,1991-05-27,Stanford University School of Medicine,283421.16015281394 -Derrick Krause,178,1971-09-29,2001-09-29,Washington University in St. Louis School of Medicine,312994.3430769573 -Elizabeth White,179,1989-05-24,2019-05-24,Washington University in St. Louis School of Medicine,291014.7258548338 -Patrick Williams,180,1965-04-01,1995-04-01,David Geffen School of Medicine at UCLA,242439.75728904546 -Kelsey Dillon,181,1961-10-10,1991-10-10,Harvard Medical School,280266.8171833294 -Jamie Fisher,182,1967-03-02,1997-03-02,Harvard Medical School,358531.0289406006 -Tamara Potter,183,1960-06-15,1990-06-15,Washington University in St. Louis School of Medicine,282300.6422875667 -Beth Hall,184,1982-11-24,2012-11-24,University of Texas Southwestern Medical School,295095.9798989338 -Derek Edwards,185,1983-07-01,2013-07-01,Baylor College of Medicine,265644.6772789386 -Tara Payne,186,1967-02-15,1997-02-15,David Geffen School of Medicine at UCLA,317632.8895585124 -Carla Miller,187,1970-02-15,2000-02-15,University of Chicago Pritzker School of Medicine,303454.5539707375 -Angela Vance,188,1991-07-28,2021-07-28,Washington University in St. Louis School of Medicine,277739.40775329067 -Jon Prince,189,1967-01-30,1997-01-30,Columbia University Vagelos College of Physicians and Surgeons,260860.33812577726 -Sally Jones,190,1966-09-04,1996-09-04,Mayo Clinic Alix School of Medicine,342136.3012203263 -Sean Best,191,1981-11-11,2011-11-11,Mayo Clinic Alix School of Medicine,251833.6978007676 -Lisa Esparza,192,1984-08-17,2014-08-17,Johns Hopkins University School of Medicine,315114.4708676867 -Kelly Scott MD,193,1977-02-19,2007-02-19,Stanford University School of Medicine,235383.6226586528 -Steven Rivera,194,1973-03-13,2003-03-13,University of Michigan Medical School,321216.35049037146 -John Novak,195,1958-12-11,1988-12-11,University of Michigan Medical School,329108.9666178018 -Connie Tucker,196,1951-10-29,1981-10-29,Mayo Clinic Alix School of Medicine,332843.5113491974 -Barbara Warner,197,1961-06-20,1991-06-20,NYU Grossman Medical School,295163.745942904 -Laura Garrett,198,1977-10-27,2007-10-27,"University of California, San Francisco School of Medicine",347520.1081669109 -Sarah Brewer,199,1980-12-23,2010-12-23,Johns Hopkins University School of Medicine,369233.750849882 -Kevin Warner,200,1985-04-18,2015-04-18,University of Michigan Medical School,290351.3059186211 -Heather Anderson,201,1963-01-30,1993-01-30,Mayo Clinic Alix School of Medicine,286469.8490961022 -Kyle Vasquez,202,1960-09-05,1990-09-05,Stanford University School of Medicine,304475.31781034806 -Robert Chen,203,1987-07-22,2017-07-22,University of Michigan Medical School,285669.5956231738 -Karen Klein,204,1969-02-11,1999-02-11,Baylor College of Medicine,281283.8941196964 -James Mckinney,205,1967-06-17,1997-06-17,Baylor College of Medicine,283897.8437927547 -Joe Mendoza,206,1977-10-26,2007-10-26,Harvard Medical School,351472.6802401873 -Sarah Lane,207,1988-09-02,2018-09-02,University of Texas Southwestern Medical School,323156.459851063 -Erica George,208,1994-07-31,2024-07-31,Harvard Medical School,285571.61618225725 -Katie Huber,209,1978-09-19,2008-09-19,University of Chicago Pritzker School of Medicine,226346.24922833144 -Steven Smith,210,1964-05-07,1994-05-07,Washington University in St. Louis School of Medicine,253666.06519180597 -Allison Steele,211,1978-08-15,2008-08-15,Columbia University Vagelos College of Physicians and Surgeons,315102.87247805635 -Erika Ingram,212,1978-09-09,2008-09-09,Harvard Medical School,236353.32175833549 -Ann Joseph,213,1983-12-08,2013-12-08,Yale School of Medicine,308789.80582355865 -Amy Daniels,214,1962-02-19,1992-02-19,University of Michigan Medical School,268033.08825404925 -Meagan Herrera,215,1987-02-24,2017-02-24,NYU Grossman Medical School,302754.1732374202 -David Lopez,216,1988-10-26,2018-10-26,David Geffen School of Medicine at UCLA,301915.6890400243 -Terry Short,217,1950-10-30,1980-10-30,Mayo Clinic Alix School of Medicine,303617.6980167213 -Patricia Stewart,218,1950-02-25,1980-02-25,David Geffen School of Medicine at UCLA,288167.3445876444 -Robert Davis,219,1985-08-18,2015-08-18,Yale School of Medicine,287181.43123176805 -Joy Yoder,220,1973-11-13,2003-11-13,Stanford University School of Medicine,278376.28743190685 -Julie Walker,221,1972-04-25,2002-04-25,Harvard Medical School,314516.7695172567 -Destiny Lloyd,222,1955-10-27,1985-10-27,Columbia University Vagelos College of Physicians and Surgeons,324155.7802434284 -Karen Smith,223,1981-06-06,2011-06-06,Stanford University School of Medicine,263430.8243239162 -Mary Mahoney,224,1993-02-09,2023-02-09,"University of California, San Francisco School of Medicine",298451.1458312319 -Kathy Smith,225,1968-08-23,1998-08-23,"University of California, San Francisco School of Medicine",305897.4622046321 -Kathryn Johnson,226,1962-08-27,1992-08-27,David Geffen School of Medicine at UCLA,305513.13403869123 -Chad Peterson,227,1991-03-01,2021-03-01,Washington University in St. Louis School of Medicine,305003.08858789556 -April Bailey,228,1987-04-20,2017-04-20,Johns Hopkins University School of Medicine,287938.9556896433 -Alisha Figueroa,229,1964-01-14,1994-01-14,Washington University in St. Louis School of Medicine,308370.9127638762 -Julia Hoffman,230,1964-01-10,1994-01-10,University of Michigan Medical School,318540.8613295086 -Virginia Robinson,231,1966-01-27,1996-01-27,Yale School of Medicine,304231.09967467695 -Dennis Edwards,232,1954-03-12,1984-03-12,Baylor College of Medicine,315178.19509601174 -William Hart,233,1972-05-17,2002-05-17,University of Chicago Pritzker School of Medicine,329710.60233112524 -Karen Klein,234,1971-01-04,2001-01-04,Washington University in St. Louis School of Medicine,244471.78926314195 -Ashley Jackson,235,1968-11-04,1998-11-04,University of Texas Southwestern Medical School,328303.915255961 -Danielle Herring,236,1955-03-22,1985-03-22,University of Chicago Pritzker School of Medicine,310272.83295663825 -Frederick Ellis,237,1958-06-14,1988-06-14,Yale School of Medicine,266651.2401678382 -Thomas Middleton,238,1986-12-21,2016-12-21,University of Chicago Pritzker School of Medicine,324074.12646959064 -Michael Robinson,239,1972-04-27,2002-04-27,Columbia University Vagelos College of Physicians and Surgeons,288050.3728192811 -David Foster,240,1965-09-29,1995-09-29,Harvard Medical School,292141.0069104434 -Samantha Mendez,241,1984-12-20,2014-12-20,Columbia University Vagelos College of Physicians and Surgeons,284769.6065260301 -Isabel Mason,242,1978-02-10,2008-02-10,University of Chicago Pritzker School of Medicine,309071.96532714675 -Leah Meadows,243,1952-11-28,1982-11-28,Stanford University School of Medicine,276439.40572463843 -Rebecca Hernandez,244,1967-01-21,1997-01-21,"University of California, San Francisco School of Medicine",327044.23889843357 -Victor Dean,245,1991-06-22,2021-06-22,University of Chicago Pritzker School of Medicine,295834.1223841598 -Miranda Meza,246,1962-09-07,1992-09-07,Columbia University Vagelos College of Physicians and Surgeons,289073.92549536185 -Toni Caldwell,247,1967-03-21,1997-03-21,NYU Grossman Medical School,322586.2703284191 -Joseph Gonzales,248,1959-11-06,1989-11-06,Yale School of Medicine,290413.29713042756 -Tammy Hart,249,1981-06-02,2011-06-02,Stanford University School of Medicine,328445.304760869 -Vicki Thornton,250,1966-11-21,1996-11-21,Columbia University Vagelos College of Physicians and Surgeons,329387.78852522594 -William Soto,251,1976-10-26,2006-10-26,Washington University in St. Louis School of Medicine,259955.88485343067 -Michael Bennett,252,1970-09-14,2000-09-14,Mayo Clinic Alix School of Medicine,333277.8060666877 -Joshua Brewer,253,1972-08-11,2002-08-11,David Geffen School of Medicine at UCLA,256138.92085494343 -Debra Crawford,254,1967-06-12,1997-06-12,Johns Hopkins University School of Medicine,335147.4158064753 -Natalie Mitchell,255,1989-05-05,2019-05-05,Baylor College of Medicine,360850.71576690715 -Timothy Riley,256,1985-05-07,2015-05-07,Columbia University Vagelos College of Physicians and Surgeons,326245.03314807394 -Kyle Campbell,257,1971-10-01,2001-10-01,University of Texas Southwestern Medical School,235290.5806590098 -Joseph Santiago,258,1983-05-27,2013-05-27,Johns Hopkins University School of Medicine,331906.9715815806 -Christine Perkins,259,1993-01-23,2023-01-23,Yale School of Medicine,367383.86897808034 -Kristine Watson,260,1968-06-13,1998-06-13,NYU Grossman Medical School,290909.0507700591 -Isaac Walker,261,1993-07-27,2023-07-27,Perelman School of Medicine (University of Pennsylvania),298958.9003991033 -Sean Williams,262,1956-10-08,1986-10-08,Columbia University Vagelos College of Physicians and Surgeons,264345.398342207 -Elizabeth Meyer,263,1992-12-05,2022-12-05,Mayo Clinic Alix School of Medicine,309362.3825645901 -John Henderson,264,1954-10-28,1984-10-28,Johns Hopkins University School of Medicine,338075.31547629385 -Tara Harris,265,1977-11-02,2007-11-02,Baylor College of Medicine,320932.1138444836 -Michael Delgado,266,1978-11-24,2008-11-24,University of Chicago Pritzker School of Medicine,394259.00931863394 -Michael Watson,267,1989-02-02,2019-02-02,Columbia University Vagelos College of Physicians and Surgeons,300990.8112889739 -Michael Gibbs,268,1960-06-09,1990-06-09,Harvard Medical School,251079.7989775421 -Angela Stein,269,1954-05-25,1984-05-25,NYU Grossman Medical School,305129.1291470466 -James Cooper,270,1965-05-24,1995-05-24,Yale School of Medicine,227506.4470436253 -Jennifer Quinn,271,1968-07-12,1998-07-12,David Geffen School of Medicine at UCLA,284006.8822540646 -Lance Gonzalez,272,1981-10-18,2011-10-18,Mayo Clinic Alix School of Medicine,348731.46175800636 -Jamie Wiley,273,1978-12-29,2008-12-29,University of Michigan Medical School,309754.00945895317 -Jeremy Arnold,274,1988-02-09,2018-02-09,University of Michigan Medical School,305382.50438493805 -Valerie Smith,275,1985-09-20,2015-09-20,University of Texas Southwestern Medical School,354623.4113014607 -Katherine Jones,276,1957-02-03,1987-02-03,Johns Hopkins University School of Medicine,291882.0032500989 -Steven Watson,277,1961-11-03,1991-11-03,Mayo Clinic Alix School of Medicine,337854.6123880233 -Daniel Martinez,278,1979-07-15,2009-07-15,Stanford University School of Medicine,303879.2092549902 -Julia Lam,279,1974-12-12,2004-12-12,Baylor College of Medicine,311401.4239037708 -Willie Gutierrez,280,1964-08-17,1994-08-17,David Geffen School of Medicine at UCLA,263480.8543241096 -Stephen Johnson,281,1994-11-15,2024-11-15,University of Chicago Pritzker School of Medicine,285538.5961551535 -Timothy Gibson,282,1973-09-16,2003-09-16,Columbia University Vagelos College of Physicians and Surgeons,258074.4530146838 -Edgar Harris,283,1988-06-13,2018-06-13,Columbia University Vagelos College of Physicians and Surgeons,297142.64765323966 -Erin Ramirez,284,1974-03-13,2004-03-13,University of Michigan Medical School,311712.070317488 -Robert Haynes,285,1950-04-28,1980-04-28,Columbia University Vagelos College of Physicians and Surgeons,266698.8568472564 -Anthony Miller,286,1988-02-08,2018-02-08,Yale School of Medicine,361475.3676805447 -Ryan Craig,287,1989-03-06,2019-03-06,David Geffen School of Medicine at UCLA,308343.18057275884 -Austin Alvarado,288,1986-03-27,2016-03-27,Harvard Medical School,301733.86756755656 -Sheri Howard,289,1965-03-23,1995-03-23,Perelman School of Medicine (University of Pennsylvania),323089.73254036874 -Ashley Le,290,1952-04-26,1982-04-26,University of Texas Southwestern Medical School,275132.15757402236 -Antonio Stark,291,1979-12-29,2009-12-29,"University of California, San Francisco School of Medicine",304904.3243750236 -Brandy Anderson,292,1987-07-09,2017-07-09,Washington University in St. Louis School of Medicine,278494.01338927227 -Jonathan Obrien DDS,293,1992-02-15,2022-02-15,University of Texas Southwestern Medical School,346760.3973026695 -Adrienne Johnson,294,1987-08-21,2017-08-21,Johns Hopkins University School of Medicine,268240.81951808755 -David Carter,295,1967-09-18,1997-09-18,Harvard Medical School,301894.96377921524 -Amber Parker MD,296,1975-07-22,2005-07-22,University of Texas Southwestern Medical School,309879.4735545533 -Amanda Rogers,297,1985-02-05,2015-02-05,University of Chicago Pritzker School of Medicine,311844.77233223105 -John Williams,298,1961-07-10,1991-07-10,University of Michigan Medical School,282562.944807515 -Anthony Lowery,299,1967-03-16,1997-03-16,NYU Grossman Medical School,273134.71793564706 -Vicki Foster,300,1955-08-11,1985-08-11,Johns Hopkins University School of Medicine,282996.144808617 -Mr. Adrian Pittman II,301,1967-01-25,1997-01-25,Columbia University Vagelos College of Physicians and Surgeons,315849.76302630844 -Mark Martin,302,1985-06-07,2015-06-07,Mayo Clinic Alix School of Medicine,295684.6268726411 -Matthew Ward,303,1984-07-08,2014-07-08,University of Chicago Pritzker School of Medicine,323886.26425357565 -James Jackson,304,1976-09-26,2006-09-26,Johns Hopkins University School of Medicine,314310.1115818522 -Barbara Warner,305,1955-01-03,1985-01-03,NYU Grossman Medical School,231692.61905701176 -Lacey Gomez,306,1955-04-02,1985-04-02,Baylor College of Medicine,307424.93390511634 -Jamie Marks,307,1969-02-18,1999-02-18,Columbia University Vagelos College of Physicians and Surgeons,367513.6430344881 -Melissa Brown,308,1989-12-16,2019-12-16,University of Texas Southwestern Medical School,339758.0715311499 -Leah Meadows,309,1985-07-13,2015-07-13,University of Texas Southwestern Medical School,312660.3948212091 -Ryan Kirk,310,1950-01-10,1980-01-10,Johns Hopkins University School of Medicine,268218.2360859017 -Paula Hall,311,1977-01-04,2007-01-04,Mayo Clinic Alix School of Medicine,314326.6114837694 -Krystal Webb,312,1956-01-29,1986-01-29,Baylor College of Medicine,322192.4981963478 -Mark Nichols,313,1969-04-12,1999-04-12,Columbia University Vagelos College of Physicians and Surgeons,292387.59957517247 -Michael Hodges,314,1964-06-23,1994-06-23,NYU Grossman Medical School,309502.2617641331 -Michelle Williams,315,1954-06-08,1984-06-08,Perelman School of Medicine (University of Pennsylvania),345289.8737518812 -Cody Olson,316,1973-04-22,2003-04-22,University of Texas Southwestern Medical School,274281.7674077482 -Veronica Moore,317,1953-09-04,1983-09-04,NYU Grossman Medical School,268251.0118512262 -Ryan Thomas,318,1978-12-08,2008-12-08,Harvard Medical School,320780.97977982636 -Daniel Morgan II,319,1988-12-18,2018-12-18,University of Texas Southwestern Medical School,313726.2790859424 -Carol Sanchez,320,1959-07-23,1989-07-23,NYU Grossman Medical School,330865.1488623844 -Carolyn Clark,321,1975-06-29,2005-06-29,Stanford University School of Medicine,317093.8143571131 -Cheryl Smith,322,1971-11-11,2001-11-11,University of Michigan Medical School,282967.3481047742 -Teresa Brown,323,1983-06-16,2013-06-16,Washington University in St. Louis School of Medicine,312965.77954396216 -Matthew Wyatt,324,1950-08-24,1980-08-24,David Geffen School of Medicine at UCLA,265736.2037011148 -William Mclaughlin,325,1977-10-27,2007-10-27,University of Michigan Medical School,292490.4386480102 -Mary Owens,326,1955-03-24,1985-03-24,Yale School of Medicine,315083.97692899214 -Christine Rogers,327,1973-06-16,2003-06-16,Washington University in St. Louis School of Medicine,289184.5734982833 -Greg Clark,328,1959-09-01,1989-09-01,University of Chicago Pritzker School of Medicine,374041.5654668948 -Dorothy Palmer,329,1964-05-23,1994-05-23,NYU Grossman Medical School,243234.47253529 -Luis Powell MD,330,1972-05-07,2002-05-07,Washington University in St. Louis School of Medicine,283575.28929003567 -Teresa Scott,331,1964-10-29,1994-10-29,Yale School of Medicine,271866.6049839027 -Erin Oliver,332,1959-04-15,1989-04-15,Columbia University Vagelos College of Physicians and Surgeons,278989.5357762614 -Mark Woods,333,1980-07-19,2010-07-19,Perelman School of Medicine (University of Pennsylvania),280710.0532955736 -Nicole Holland,334,1966-04-18,1996-04-18,Stanford University School of Medicine,260207.3793942302 -Wesley Davidson,335,1971-12-04,2001-12-04,Harvard Medical School,322581.0644571788 -Tanya Mccarty,336,1974-10-26,2004-10-26,NYU Grossman Medical School,283587.141078387 -Gary Swanson,337,1992-07-03,2022-07-03,Harvard Medical School,304907.20006765967 -Brittany Harris,338,1950-03-19,1980-03-19,Mayo Clinic Alix School of Medicine,286955.22714269266 -Kenneth Glass,339,1970-09-30,2000-09-30,University of Texas Southwestern Medical School,279273.5876314137 -Jacqueline Johnson,340,1988-06-30,2018-06-30,NYU Grossman Medical School,350168.3770826055 -Jason Martinez,341,1978-11-05,2008-11-05,David Geffen School of Medicine at UCLA,327687.9654662822 -Anthony Phillips,342,1976-01-15,2006-01-15,NYU Grossman Medical School,243953.98800134566 -Abigail Cummings,343,1969-01-04,1999-01-04,Johns Hopkins University School of Medicine,240775.87654992339 -Christina Miller,344,1982-09-24,2012-09-24,Perelman School of Medicine (University of Pennsylvania),331278.2650690946 -Lisa Anderson,345,1971-05-15,2001-05-15,Johns Hopkins University School of Medicine,284404.39825353737 -Jessica Wallace,346,1967-12-23,1997-12-23,NYU Grossman Medical School,250527.52998197332 -Kathy Watkins,347,1966-05-21,1996-05-21,Stanford University School of Medicine,331372.05397621024 -Jeffrey Williams,348,1962-10-15,1992-10-15,Washington University in St. Louis School of Medicine,305073.7215029727 -Lindsay Martinez,349,1975-02-23,2005-02-23,Harvard Medical School,307547.1325449696 -Kevin Hodges,350,1956-01-02,1986-01-02,Stanford University School of Medicine,324286.1781601772 -Robert Clements,351,1953-06-02,1983-06-02,NYU Grossman Medical School,260700.6852515282 -Samuel Martinez,352,1980-10-16,2010-10-16,Yale School of Medicine,251054.97535847506 -Amy Rios,353,1985-01-07,2015-01-07,Washington University in St. Louis School of Medicine,347428.62884709606 -Joanne Hernandez,354,1960-02-05,1990-02-05,Yale School of Medicine,256884.99717773122 -Nathan Parker,355,1961-01-01,1991-01-01,Harvard Medical School,263332.86608773307 -James Sparks,356,1980-12-11,2010-12-11,Washington University in St. Louis School of Medicine,269326.938613627 -Jennifer Johnson,357,1955-05-25,1985-05-25,David Geffen School of Medicine at UCLA,362398.37771071563 -Ashley Goodwin,358,1972-12-20,2002-12-20,Perelman School of Medicine (University of Pennsylvania),314801.4990123457 -Shannon Lam,359,1992-02-04,2022-02-04,University of Michigan Medical School,328962.2392330614 -Chase Mcpherson Jr.,360,1965-11-06,1995-11-06,Baylor College of Medicine,305885.02636736183 -Matthew Nelson,361,1964-10-22,1994-10-22,University of Chicago Pritzker School of Medicine,281943.383663963 -Dawn Haley,362,1975-11-12,2005-11-12,Stanford University School of Medicine,318938.738497805 -Karl Bruce,363,1952-07-11,1982-07-11,University of Texas Southwestern Medical School,253301.5208760959 -Molly Dean,364,1951-02-24,1981-02-24,Stanford University School of Medicine,267141.4964371052 -Michael Harris,365,1979-07-17,2009-07-17,Baylor College of Medicine,321989.25537784444 -Miss Valerie George,366,1953-01-25,1983-01-25,University of Michigan Medical School,259282.3430751966 -Chelsey Davis,367,1980-10-30,2010-10-30,"University of California, San Francisco School of Medicine",294327.5559251438 -Scott Rivera,368,1956-05-25,1986-05-25,Columbia University Vagelos College of Physicians and Surgeons,295694.62966933765 -Andrew Miller,369,1964-09-17,1994-09-17,David Geffen School of Medicine at UCLA,284140.13989988517 -David Perez,370,1956-02-22,1986-02-22,Yale School of Medicine,241466.44575453427 -Louis Chambers,371,1962-08-18,1992-08-18,NYU Grossman Medical School,281132.13326433924 -Richard Richmond,372,1988-03-08,2018-03-08,David Geffen School of Medicine at UCLA,275250.94869202544 -Elaine Page DVM,373,1980-05-27,2010-05-27,Baylor College of Medicine,304843.19589863095 -Laura Brown,374,1986-10-08,2016-10-08,NYU Grossman Medical School,303314.71616098407 -Michael Berger,375,1967-06-12,1997-06-12,University of Texas Southwestern Medical School,311338.84379810625 -Gabriela Garcia,376,1967-05-31,1997-05-31,Johns Hopkins University School of Medicine,279720.41181076807 -Dustin Griffin,377,1971-07-13,2001-07-13,Washington University in St. Louis School of Medicine,315683.3385139768 -Jo Beard,378,1958-11-03,1988-11-03,Columbia University Vagelos College of Physicians and Surgeons,253319.79801678951 -Jennifer Murray,379,1989-05-18,2019-05-18,Perelman School of Medicine (University of Pennsylvania),245342.85802042938 -Christopher Murphy,380,1957-12-01,1987-12-01,Perelman School of Medicine (University of Pennsylvania),229932.81827500116 -Nicole King,381,1960-04-14,1990-04-14,Baylor College of Medicine,285021.08281284006 -Alex Anderson,382,1993-03-06,2023-03-06,David Geffen School of Medicine at UCLA,277401.0532698433 -Robert Thomas,383,1957-04-28,1987-04-28,Perelman School of Medicine (University of Pennsylvania),323679.468355638 -Antonio Campbell,384,1968-11-20,1998-11-20,University of Texas Southwestern Medical School,280540.1223885339 -Jennifer Evans,385,1977-10-13,2007-10-13,Yale School of Medicine,308201.290438328 -Emily Anderson DDS,386,1952-03-04,1982-03-04,"University of California, San Francisco School of Medicine",324398.8972974923 -Jessica Matthews,387,1955-10-18,1985-10-18,Stanford University School of Medicine,279410.42773052654 -Steven Henry,388,1965-10-28,1995-10-28,Mayo Clinic Alix School of Medicine,308941.5663032153 -Jonathan Baker,389,1983-09-03,2013-09-03,University of Texas Southwestern Medical School,330057.82646865584 -Alyssa Watts,390,1988-10-01,2018-10-01,NYU Grossman Medical School,262855.116755833 -Edgar Harris,391,1980-06-03,2010-06-03,University of Chicago Pritzker School of Medicine,300745.5701473393 -Rebecca Hernandez,392,1979-07-17,2009-07-17,Baylor College of Medicine,279538.9685040206 -Nicole Keith,393,1981-03-16,2011-03-16,Johns Hopkins University School of Medicine,264765.3035252058 -Brent Brewer,394,1985-08-04,2015-08-04,Washington University in St. Louis School of Medicine,253906.44778529313 -Aaron Johnson,395,1952-03-25,1982-03-25,University of Chicago Pritzker School of Medicine,264280.54283463897 -Linda Johnson,396,1978-11-11,2008-11-11,Washington University in St. Louis School of Medicine,301800.8701725604 -Amy Daniels,397,1956-09-09,1986-09-09,Harvard Medical School,251674.66633314762 -Shaun Little,398,1978-08-19,2008-08-19,University of Chicago Pritzker School of Medicine,283478.1892773409 -Richard Garcia,399,1978-06-03,2008-06-03,Mayo Clinic Alix School of Medicine,324395.83220558695 -Michael Morales,400,1971-04-24,2001-04-24,David Geffen School of Medicine at UCLA,313470.3289025681 -Amanda James,401,1981-05-31,2011-05-31,"University of California, San Francisco School of Medicine",284084.7713118553 -Robin Rose,402,1991-12-20,2021-12-20,Stanford University School of Medicine,350690.7124007617 -Brittany Harris,403,1952-04-07,1982-04-07,Stanford University School of Medicine,356791.0924173498 -Monique Hall,404,1969-07-27,1999-07-27,"University of California, San Francisco School of Medicine",300783.6729461918 -Christopher Webster,405,1962-03-10,1992-03-10,Yale School of Medicine,225943.71252347075 -Logan Hansen,406,1992-01-04,2022-01-04,Columbia University Vagelos College of Physicians and Surgeons,326593.4459104878 -Donna Williams,407,1987-05-02,2017-05-02,Harvard Medical School,231180.70979899244 -Mr. Andrew Keller,408,1966-04-26,1996-04-26,Washington University in St. Louis School of Medicine,344284.383321602 -Lori Jackson,409,1950-05-07,1980-05-07,Mayo Clinic Alix School of Medicine,332507.547022269 -Richard Aguilar,410,1974-01-30,2004-01-30,Perelman School of Medicine (University of Pennsylvania),353226.37512414064 -Mario Kelly II,411,1981-11-15,2011-11-15,University of Chicago Pritzker School of Medicine,307807.9667510318 -Christina Anderson,412,1969-09-14,1999-09-14,Harvard Medical School,289158.42698454484 -Tina Wall,413,1981-08-25,2011-08-25,University of Texas Southwestern Medical School,286496.9659892933 -James Allen,414,1959-03-23,1989-03-23,Baylor College of Medicine,283612.1948690731 -Heidi Melton,415,1960-05-25,1990-05-25,University of Chicago Pritzker School of Medicine,329432.0596102411 -Andre Johnson,416,1991-05-20,2021-05-20,Mayo Clinic Alix School of Medicine,321368.1446851763 -Gary Baldwin,417,1987-07-24,2017-07-24,Johns Hopkins University School of Medicine,303606.76900302636 -Matthew Perez,418,1954-11-28,1984-11-28,Johns Hopkins University School of Medicine,278334.56076219084 -Jasmine Perkins,419,1980-04-06,2010-04-06,NYU Grossman Medical School,378876.37893900817 -Laura Hamilton,420,1959-07-09,1989-07-09,Harvard Medical School,327371.2384188861 -Kathleen Mitchell,421,1959-05-11,1989-05-11,David Geffen School of Medicine at UCLA,252068.64240679774 -Sandra Porter,422,1954-07-04,1984-07-04,Mayo Clinic Alix School of Medicine,284512.3195218862 -Cristina Ortega,423,1990-05-26,2020-05-26,Mayo Clinic Alix School of Medicine,327953.28292226116 -Kelly Massey,424,1958-05-31,1988-05-31,"University of California, San Francisco School of Medicine",276013.83236301946 -Renee Young,425,1955-01-29,1985-01-29,University of Texas Southwestern Medical School,310546.4387647767 -Vicki Foster,426,1962-10-07,1992-10-07,David Geffen School of Medicine at UCLA,328523.88901008444 -Jason Johnston,427,1967-11-02,1997-11-02,University of Texas Southwestern Medical School,198347.15752030822 -Alexis Nolan,428,1957-06-01,1987-06-01,Yale School of Medicine,296758.86900632246 -Brittany Mullen,429,1982-01-07,2012-01-07,Washington University in St. Louis School of Medicine,297936.27460695367 -Megan Guzman,430,1976-01-29,2006-01-29,Washington University in St. Louis School of Medicine,287637.8263294863 -Aaron Graves,431,1967-09-05,1997-09-05,Perelman School of Medicine (University of Pennsylvania),309050.8540483812 -Robert Schmidt,432,1961-07-14,1991-07-14,NYU Grossman Medical School,319725.58822487626 -Stephanie Ward,433,1986-03-17,2016-03-17,Stanford University School of Medicine,304261.5283297383 -Sara Lopez,434,1971-10-28,2001-10-28,Johns Hopkins University School of Medicine,288785.17817851703 -Miranda Hunt,435,1954-06-14,1984-06-14,Baylor College of Medicine,318978.6389935281 -Pamela Hendrix,436,1978-03-29,2008-03-29,Washington University in St. Louis School of Medicine,301471.6022782307 -Nathan Davis,437,1971-10-31,2001-10-31,David Geffen School of Medicine at UCLA,293078.98760413565 -Rhonda Wall,438,1973-06-26,2003-06-26,Mayo Clinic Alix School of Medicine,260631.6184398324 -Amy Payne,439,1972-02-05,2002-02-05,Baylor College of Medicine,253120.35644201766 -Jared Diaz,440,1973-09-23,2003-09-23,University of Michigan Medical School,260063.1062185779 -Ashley Torres,441,1959-11-10,1989-11-10,University of Texas Southwestern Medical School,308349.8718366065 -Joseph Jackson,442,1968-07-28,1998-07-28,Washington University in St. Louis School of Medicine,297627.63757180946 -Julie Long,443,1986-03-19,2016-03-19,Mayo Clinic Alix School of Medicine,255591.4770537761 -Ryan Gutierrez,444,1975-01-16,2005-01-16,Washington University in St. Louis School of Medicine,319377.5347738143 -Nathan Smith,445,1963-08-12,1993-08-12,Johns Hopkins University School of Medicine,341229.28539537283 -Amy Bryant,446,1986-12-08,2016-12-08,University of Michigan Medical School,282045.1914985099 -Joshua Guerrero,447,1985-06-17,2015-06-17,University of Chicago Pritzker School of Medicine,247770.54427894877 -Geoffrey Jacobson,448,1983-09-17,2013-09-17,Washington University in St. Louis School of Medicine,278726.2084529426 -Alyssa Thomas,449,1955-06-14,1985-06-14,Yale School of Medicine,325633.81880384084 -Lisa Wallace,450,1964-07-05,1994-07-05,David Geffen School of Medicine at UCLA,316455.8957560432 -Gerald Green,451,1985-08-02,2015-08-02,Washington University in St. Louis School of Medicine,272327.0194196556 -Christopher Esparza,452,1986-11-20,2016-11-20,Stanford University School of Medicine,345635.1641329423 -Rhonda Wolf,453,1961-12-29,1991-12-29,Baylor College of Medicine,340448.401977792 -Hannah Roberts,454,1963-01-10,1993-01-10,Baylor College of Medicine,278009.81810170074 -Ashley Young,455,1978-06-18,2008-06-18,Johns Hopkins University School of Medicine,277701.299911051 -Tasha Griffin,456,1994-06-20,2024-06-20,David Geffen School of Medicine at UCLA,282215.1618786153 -Mary Medina,457,1965-04-20,1995-04-20,University of Michigan Medical School,284780.01673834363 -Taylor Williams PhD,458,1963-07-16,1993-07-16,Yale School of Medicine,328516.14023785334 -Trevor Cook,459,1986-09-04,2016-09-04,"University of California, San Francisco School of Medicine",312759.8718142978 -Marissa Shepherd,460,1961-08-14,1991-08-14,David Geffen School of Medicine at UCLA,326312.3630805176 -Thomas Harrell,461,1977-02-24,2007-02-24,Baylor College of Medicine,320206.954295601 -Marc Romero,462,1977-05-03,2007-05-03,Stanford University School of Medicine,351435.81204581197 -David Fisher,463,1954-10-26,1984-10-26,University of Chicago Pritzker School of Medicine,268218.4336857258 -Ronald Chen,464,1975-02-20,2005-02-20,Johns Hopkins University School of Medicine,311410.7559115175 -Christie Kelly,465,1956-10-18,1986-10-18,"University of California, San Francisco School of Medicine",234785.36231295907 -Paige Morris,466,1952-08-09,1982-08-09,Stanford University School of Medicine,260491.33277709424 -Timothy Wilson,467,1955-09-11,1985-09-11,University of Michigan Medical School,297754.3984219546 -Bryan Smith,468,1957-06-10,1987-06-10,University of Texas Southwestern Medical School,312546.19838263607 -James Brown,469,1976-07-15,2006-07-15,University of Michigan Medical School,296945.5277391129 -Alexander Jimenez,470,1970-01-07,2000-01-07,Stanford University School of Medicine,282984.2274356196 -Vickie Collins,471,1952-02-08,1982-02-08,University of Texas Southwestern Medical School,288317.46367520886 -Ryan Jarvis,472,1965-01-12,1995-01-12,Harvard Medical School,341083.2292927231 -Alexander Rodriguez,473,1992-07-13,2022-07-13,Johns Hopkins University School of Medicine,288479.0346635958 -George Lee,474,1968-03-12,1998-03-12,David Geffen School of Medicine at UCLA,352477.2486613058 -Renee Brown,475,1964-04-29,1994-04-29,University of Texas Southwestern Medical School,323820.512206234 -Terry Chan,476,1981-06-12,2011-06-12,NYU Grossman Medical School,313726.1203844469 -Ivan Doyle,477,1965-11-15,1995-11-15,University of Texas Southwestern Medical School,264192.09269037016 -Drew Sanchez,478,1983-10-17,2013-10-17,Mayo Clinic Alix School of Medicine,328057.1448419888 -Richard Carter,479,1972-01-04,2002-01-04,University of Chicago Pritzker School of Medicine,285186.882667545 -Daniel Mack,480,1993-10-24,2023-10-24,Mayo Clinic Alix School of Medicine,264166.807259829 -Larry Campbell,481,1985-10-31,2015-10-31,David Geffen School of Medicine at UCLA,315385.3083923813 -Jennifer Roberts,482,1963-05-06,1993-05-06,David Geffen School of Medicine at UCLA,258361.6181830038 -Alan Johnson,483,1954-01-21,1984-01-21,Johns Hopkins University School of Medicine,277132.75613611256 -Victoria Chavez,484,1977-08-20,2007-08-20,David Geffen School of Medicine at UCLA,299696.52265593264 -Kevin Walls,485,1989-06-27,2019-06-27,Baylor College of Medicine,366552.6427234418 -Janet Williams,486,1970-12-05,2000-12-05,University of Texas Southwestern Medical School,279392.52732622536 -Carla Dougherty,487,1993-01-03,2023-01-03,University of Texas Southwestern Medical School,286253.50442098273 -Sara Newman,488,1980-11-10,2010-11-10,Harvard Medical School,321970.35163264937 -Shelby Mathews,489,1984-07-01,2014-07-01,"University of California, San Francisco School of Medicine",262851.1293487186 -Shawn Bryant,490,1980-02-11,2010-02-11,David Geffen School of Medicine at UCLA,313284.1914306275 -Heather Fisher,491,1989-02-20,2019-02-20,Mayo Clinic Alix School of Medicine,336177.80422849767 -Shelley Cobb,492,1979-04-01,2009-04-01,David Geffen School of Medicine at UCLA,290787.153458667 -Amy Watson,493,1994-11-06,2024-11-06,University of Michigan Medical School,330784.62844190595 -Eric Patton,494,1973-04-29,2003-04-29,Harvard Medical School,308743.49769635417 -James Johnson,495,1959-01-14,1989-01-14,Baylor College of Medicine,278079.5410858866 -Andrew Wallace,496,1968-05-28,1998-05-28,Baylor College of Medicine,294065.8594231048 -Phillip Weaver,497,1969-10-06,1999-10-06,Washington University in St. Louis School of Medicine,288607.27980059275 -Craig Brooks,498,1958-05-13,1988-05-13,University of Texas Southwestern Medical School,297370.8522655057 -Bernard Miller,499,1987-03-03,2017-03-03,Baylor College of Medicine,304581.5369765948 diff --git a/langchain-rag-app/source_code_step_4/data/reviews.csv b/langchain-rag-app/source_code_step_4/data/reviews.csv deleted file mode 100644 index fd685fc27f..0000000000 --- a/langchain-rag-app/source_code_step_4/data/reviews.csv +++ /dev/null @@ -1,1006 +0,0 @@ -review_id,visit_id,review,physician_name,hospital_name,patient_name -0,6997,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Laura Brown,Wallace-Hamilton,Christy Johnson -9,8138,"The hospital's commitment to patient education impressed me. The medical team took the time to explain my diagnosis and treatment options, empowering me to make informed decisions about my health.",Steven Watson,Wallace-Hamilton,Anna Frazier -11,680,The hospital's commitment to patient safety was evident throughout my stay. The stringent hygiene protocols and vigilant staff instilled confidence in the quality of care provided.,Chase Mcpherson Jr.,Wallace-Hamilton,Abigail Mitchell -892,9846,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Jason Martinez,Wallace-Hamilton,Kimberly Rivas -822,7397,"The medical team at the hospital was exceptional, and the facilities were state-of-the-art. The only downside was the noise level in the shared rooms, affecting my rest.",Chelsey Davis,Wallace-Hamilton,Catherine Yang -434,9946,"While the medical care was excellent, the wait times for tests and results were quite frustrating. Improvement in this area would greatly enhance the overall experience.",Ashley Le,Wallace-Hamilton,Jennifer Russell -169,4902,"The medical team was attentive, and the facilities were clean. Unfortunately, the noise levels in the hallway were disruptive, affecting the overall peacefulness of the environment.",Tanya Mccarty,Wallace-Hamilton,Henry Hays -93,5297,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Amy Watson,Wallace-Hamilton,Rachel Carter -97,3267,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Jennifer Mccall,Wallace-Hamilton,Cody Ibarra -146,3332,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -604,3332,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -597,2955,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Terry Short,Wallace-Hamilton,Michael Smith -807,2955,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Terry Short,Wallace-Hamilton,Michael Smith -913,7962,"While the hospital had state-of-the-art equipment, the staff's lack of coordination resulted in delays and confusion regarding my treatment.",Robert Chen,Wallace-Hamilton,Chelsea Mitchell -136,1496,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Sara Lopez,Wallace-Hamilton,Carol Byrd -922,9374,"I was pleased with the level of care I received at the hospital. The only downside was the confusing layout, making it easy to get lost in the corridors.",Troy Wilson,Wallace-Hamilton,Daniel Williams -744,7721,"The nursing staff was caring, and the hospital had a calming ambiance. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Jennifer Evans,Wallace-Hamilton,Kim Powers -205,8663,"I appreciate the hospital's commitment to patient safety, and the cleanliness standards were commendable. However, the lack of entertainment options for patients during recovery was a downside.",Christopher Murphy,Wallace-Hamilton,Sharon Brown -224,6400,"I had a mixed experience at the hospital. The medical team was attentive, but the lack of communication about the potential risks of a procedure was concerning. The facilities, however, were modern and clean.",Tanya Sharp,Wallace-Hamilton,John Bartlett -228,7954,"I had a positive experience with the hospital's medical team, who provided excellent care. Nevertheless, the administrative processes, especially the check-in and discharge, could be more streamlined.",Yvonne Jacobs,Wallace-Hamilton,Rebecca Wilkerson -236,9106,"My stay at the hospital was great. The nurses were friendly and efficient, and the doctors were knowledgeable and thorough in their examinations.",John Henderson,Wallace-Hamilton,Scott Terry -266,5374,"The hospital's facilities were modern and well-maintained. However, the lack of communication about changes in my treatment plan created unnecessary stress.",James Johnson,Wallace-Hamilton,Michele Jones -294,8882,"The hospital staff was caring and attentive. However, the lack of communication between different departments led to some confusion about my treatment plan.",Mr. Andrew Keller,Wallace-Hamilton,Tiffany Long -873,6168,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Mr. Andrew Keller,Wallace-Hamilton,Stacy Villa -301,1974,"The hospital staff was efficient, and the facilities were clean. However, the lack of personalized attention and communication left me feeling a bit neglected.",Christopher Esparza,Wallace-Hamilton,Kevin Cox -390,8306,"The hospital staff was accommodating to my needs, but the noise levels in the hallway were disruptive and affected my ability to rest.",Victoria Chavez,Wallace-Hamilton,David Kim -799,4305,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Mark Vang,Wallace-Hamilton,Daniel Carter -867,99,"I had a mixed experience at the hospital. The medical attention was top-notch, but the wait times for tests were frustratingly long. The cafeteria food was surprisingly tasty, though.",Brian Rivera,Wallace-Hamilton,Christopher Juarez -633,2477,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Wallace-Hamilton,Matthew Watkins -767,7323,"The hospital facilities were outdated, and the lack of modern equipment was noticeable. However, the medical staff was dedicated and provided good care.",Karl Bruce,Wallace-Hamilton,Dalton Oconnell -525,8152,"Unfortunately, my hospital experience was subpar. The nursing staff seemed overwhelmed, and the facilities were outdated. Communication regarding my treatment plan was lacking, leaving me feeling uneasy.",George Lee,Wallace-Hamilton,Tracy Murray -933,952,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Raymond Berry,Wallace-Hamilton,William Garza -931,4575,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jennifer Roberts,Wallace-Hamilton,Cynthia Welch -733,1950,"The doctors were knowledgeable and took the time to answer my questions. The outdated medical equipment, however, was a concern.",Crystal Cruz,Wallace-Hamilton,Kelly Stevens -840,2472,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Miss Valerie George,Wallace-Hamilton,Lynn Smith -751,672,"The doctors were skilled, and the hospital had a clean environment. The constant interruptions during the night, however, affected my ability to rest.",Karen Smith,Wallace-Hamilton,Jesse Tucker -756,5717,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Heidi Melton,Wallace-Hamilton,Jason Mcdowell -856,2331,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Steven Smith,Wallace-Hamilton,Jesse Marquez -1001,3240,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Ronald Hernandez Jr.,Wallace-Hamilton,Jacob Smith -1,761,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Vicki Foster,"Bell, Mcknight and Willis",Loretta Schmitt -658,7151,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Robert Davis,"Bell, Mcknight and Willis",Richard Parker -585,4525,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Robert Pratt,"Bell, Mcknight and Willis",Kristin Evans -821,5920,"I am grateful for the care I received from the hospital staff. They were attentive and explained everything thoroughly. However, the billing process was confusing.",Erika Ingram,"Bell, Mcknight and Willis",Dr. Barbara Foster -954,1077,"Unfortunately, my experience at the hospital was less than satisfactory. The communication among the staff was poor, and it led to confusion about my treatment plan.",Mark Martin,"Bell, Mcknight and Willis",Daniel Harris -76,9171,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Logan Hansen,"Bell, Mcknight and Willis",Anna Graves -693,5246,"My overall experience was positive, thanks to the skilled medical team and their prompt response to my needs. The only downside was the limited parking space, causing inconvenience for visitors.",Tara Harris,"Bell, Mcknight and Willis",Kathleen Chambers -463,3607,The hospital's commitment to patient satisfaction was evident. They actively sought feedback and made adjustments to improve the overall experience.,Terry Leon,"Bell, Mcknight and Willis",Melissa Jefferson -132,1564,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Antonio Campbell,"Bell, Mcknight and Willis",John Atkinson -439,7131,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,"Bell, Mcknight and Willis",Regina Waters -686,6970,"The hospital's commitment to patient education was commendable. The medical staff took the time to explain my condition and treatment plan thoroughly, empowering me to actively participate in my recovery.",Tamara Potter,"Bell, Mcknight and Willis",Amy Dunlap -974,5714,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Danielle Herring,"Bell, Mcknight and Willis",Aaron Owen -700,8728,I was disappointed with the lack of privacy in the shared hospital rooms. The constant noise and lack of personal space made it challenging to rest and recover peacefully.,Troy Wilson,"Bell, Mcknight and Willis",Charles Martinez -380,4544,"I had a mixed experience. The medical care was excellent, but the noise levels in the ward were disruptive, making it challenging to rest.",Courtney Walton,"Bell, Mcknight and Willis",Ricky Burns -218,3173,"The hospital's facilities were modern and well-equipped, creating a comfortable environment. However, the lack of communication about potential side effects of medications was a concern during my stay.",Michael Bates,"Bell, Mcknight and Willis",Stephen Jones -847,1544,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Bernard Miller,Cunningham and Sons,Stephen Jones -223,5436,"The hospital's medical team was knowledgeable and caring, ensuring a smooth recovery process. However, the limited options for vegetarian meals in the cafeteria were disappointing.",William Bailey,"Bell, Mcknight and Willis",Michaela Smith -551,849,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Bryan Jones,"Bell, Mcknight and Willis",Linda Collins -249,6791,"The hospital facilities were top-notch, and the medical team was highly skilled. Unfortunately, the cafeteria food left much to be desired in terms of taste and variety.",John Novak,"Bell, Mcknight and Willis",William Davis -335,1263,"The hospital's facilities were top-notch, and the rooms were comfortable. However, the bureaucratic red tape made simple tasks, like scheduling appointments, unnecessarily complicated.",Michelle Williams,"Bell, Mcknight and Willis",John York -353,2124,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Thomas Harrell,"Bell, Mcknight and Willis",John Adams -393,4431,"The medical team was compassionate, and the hospital provided a comfortable environment. Unfortunately, the TV in my room was malfunctioning.",James Jackson,"Bell, Mcknight and Willis",Jon Steele -962,9376,The hospital staff went above and beyond to accommodate my needs. I appreciate their dedication to patient care.,Sean Best,"Bell, Mcknight and Willis",Brian Pollard -341,5275,"The hospital staff was attentive and caring, ensuring my comfort during the stay. Yet, the billing process was confusing, and I received multiple invoices with different amounts.",Tracy Garza,"Bell, Mcknight and Willis",Sean Harris -753,7086,"The medical care was outstanding, and the hospital had a welcoming atmosphere. Unfortunately, the cafeteria food was subpar and lacked variety.",Karl Bruce,"Bell, Mcknight and Willis",Kevin Cruz -988,700,"The hospital's commitment to providing affordable healthcare services to all was evident. However, the long wait times in the emergency room were a drawback.",Robert Thomas,"Bell, Mcknight and Willis",Cindy Lowe -568,8556,"My experience at the hospital was overall positive. The staff was attentive, and the modern facilities contributed to a comfortable stay.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -673,8556,"The hospital staff went above and beyond to make me feel comfortable during my stay. The modern facilities and state-of-the-art equipment were reassuring, and I felt well taken care of.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -623,6837,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Phillip Weaver,"Bell, Mcknight and Willis",James Fox -666,3619,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Ashley Pena,"Bell, Mcknight and Willis",Tonya Perkins -999,9810,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Dorothy Palmer,"Bell, Mcknight and Willis",Thomas Underwood -844,3514,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Vicki Foster,Burch-White,Jose Mullen -156,9406,"The medical team demonstrated expertise and empathy. Despite the high-quality care, the outdated decor and uncomfortable beds made the stay less pleasant than it could have been.",Jesse Gordon,Burch-White,Anna Golden -321,1618,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Robert Pratt,Burch-White,Christine Chavez -556,1068,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Jenna Taylor,Burch-White,Danielle Andrews -51,8031,The hospital's commitment to patient safety was evident in their strict adherence to infection control measures. I felt reassured knowing that my well-being was a top priority for the medical team.,Scott Rivera,Burch-White,David Sawyer -55,7308,The hospital's billing process was confusing and left me with unexpected expenses. Transparent and clear billing practices are essential to avoid financial stress for patients already dealing with health issues.,Kelly Scott MD,Burch-White,Brianna Johnson -571,1186,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",Kelly Scott MD,Burch-White,Nancy Lee -107,7953,"The hospital provided top-notch medical care, and the facilities were modern and clean. The entire staff, from doctors to janitors, contributed to a positive and comfortable environment.",Sara Lopez,Burch-White,Jose Johnson -402,1029,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Mr. Justin Bryant,Burch-White,Rachel Vaughan -620,2441,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Kimberly Oliver,Burch-White,Nicole Mcdonald -211,5247,"The hospital provided comprehensive care, and the nursing staff was exceptional. Yet, the delayed response to calls for assistance was a minor inconvenience during my stay.",Courtney Walton,Burch-White,Taylor Smith -610,9372,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Marc Romero,Burch-White,Matthew Hansen -225,2142,"The hospital provided excellent care, and the nursing staff was compassionate. On the downside, the lack of coordination between shifts resulted in some confusion about my treatment plan.",Kayla Lawson,Burch-White,Dawn Nielsen -870,3976,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Kayla Lawson,Burch-White,Karen Walker -768,9212,"The hospital staff was caring and understanding, which made my stay more bearable. The facilities, though, could use some improvement.",Erin Oliver,Burch-White,Joshua Cook -478,3666,"I am grateful for the incredible care I received at the hospital. The medical team was skilled, and the cleanliness of the facilities exceeded my expectations.",Alex Anderson,Burch-White,Elizabeth Mata -272,9685,"I appreciate the hospital's commitment to cleanliness and hygiene. However, the lack of communication about changes in my treatment plan created unnecessary stress.",Joshua Brewer,Burch-White,Karen Henry -884,3927,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Kevin Warner,Burch-White,Anna Green -282,6611,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",Jasmine Perkins,Burch-White,Brian Montgomery -310,616,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Vicki Foster,Burch-White,George Allison -322,5533,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Rebecca Mckinney,Burch-White,Laura Cruz -339,7078,"The hospital's cleanliness standards were exceptional, and the nursing staff provided excellent care. However, the parking situation was inconvenient, and finding a spot was always a hassle.",Gabriela Garcia,Burch-White,Mr. Gregory Pitts -713,9853,"I had a mixed experience. While the doctors were competent, the waiting times were quite long. The facility was clean and organized.",Molly Dean,Burch-White,Brian Johnson -373,2240,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were clean and comfortable.",Lauren Williams,Burch-White,Elizabeth Green DDS -656,2586,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Steven Watson,Burch-White,Nathan Bailey DDS -619,3042,"The nursing staff was top-notch, and the cleanliness of the hospital was impressive. On the downside, the Wi-Fi was unreliable and frustrating.",Jonathan Lucas,Burch-White,Keith Smith -572,9262,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Amy Daniels,Burch-White,Joshua Villa -705,8421,"The medical staff's expertise and dedication to patient care were evident throughout my stay. However, the outdated hospital equipment raised concerns about the institution's commitment to staying current with medical advancements.",Kelly Massey,Burch-White,Deborah Leonard -584,4426,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Jonathan Decker,Burch-White,Allen Jackson -663,8243,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Kyle Campbell,Burch-White,Julia Combs -876,197,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Robert Haynes,Burch-White,Heidi Parker -787,3350,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alan Watkins,Burch-White,Jason Eaton -945,1961,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Ronald Hernandez Jr.,Burch-White,Jesus Myers -964,371,"The hospital had a warm and welcoming environment. The support from the nursing staff was exceptional, making my stay more pleasant.",Rick Herrera,Burch-White,Jordan Nelson -2,5067,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Kathy Smith,Mcneil-Ali,Gordon Thompson -124,1331,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Matthew Marks,Mcneil-Ali,Anthony Butler -983,3460,"The hospital's dedication to community outreach and health education was impressive. However, the outdated magazines in the waiting area could use an upgrade.",Joy Yoder,Mcneil-Ali,Oscar Allen -82,6933,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Ashley Goodwin,Mcneil-Ali,Dennis Gray -299,7073,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Mr. Adrian Pittman II,Mcneil-Ali,Manuel Black -481,7424,"The hospital staff was courteous, and the rooms were clean and comfortable. Unfortunately, the noise level at night was quite disruptive, affecting my sleep.",Amy Daniels,Mcneil-Ali,Anthony Miller -682,6863,"I appreciated the hospital's efforts to create a patient-friendly atmosphere. The recreational activities and support groups provided a sense of community, making the hospital feel less clinical and more comforting.",Tina Wall,Mcneil-Ali,Gregory Bentley -494,1004,"I had a positive experience at the hospital. The staff was friendly, and the medical care was top-notch. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Isaac Walker,Mcneil-Ali,Paul Davidson -774,6702,"The hospital had a welcoming environment, and the staff was accommodating. The medical care was satisfactory, but the facilities could use some modernization.",Mary Owens,Mcneil-Ali,Holly Carter -163,583,"The hospital staff was responsive and caring. Yet, the outdated magazines in the waiting area and the lack of entertainment options made the long waits more tedious.",Kimberly Oliver,Mcneil-Ali,Amber Carter -816,5427,"My stay at the hospital was excellent. The medical team was compassionate, and the facility was clean and well-maintained.",James Cooper,Mcneil-Ali,Erin Mclean -973,1663,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Perez,Mcneil-Ali,Joseph Frazier -523,4622,"I encountered both positives and negatives during my hospital stay. The medical care was satisfactory, but the administrative processes were confusing and led to unnecessary stress.",Kevin Warner,Mcneil-Ali,Anna Wilkerson -291,9046,"The hospital staff was professional, and the facilities were well-maintained. Unfortunately, the billing process was confusing, and it took a long time to sort out the financial aspects of my stay.",James Allen,Mcneil-Ali,Sally Hudson -827,5858,The hospital facilities were modern and well-equipped. The only drawback was the lack of communication regarding the daily schedule and procedures.,Kathleen Evans,Mcneil-Ali,James Warner -660,9563,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",David Lopez,Mcneil-Ali,John Silva -769,9563,"I had a positive experience overall. The medical team was knowledgeable, and the facilities were well-maintained. However, the food options were limited and not very appetizing.",David Lopez,Mcneil-Ali,John Silva -801,4792,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michelle Williams,Brown-Golden,John Silva -596,1088,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Tracy Garza,Mcneil-Ali,Brandon Thornton -612,1123,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Michael Miranda,Mcneil-Ali,Brian Charles -532,3341,"I appreciated the efforts of the hospital staff in ensuring my well-being. The medical care was satisfactory, but the facilities could use some updating for a more modern and comfortable experience.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -683,3341,"The hospital's dedication to innovation was evident in the advanced technology used for diagnostics. My treatment felt personalized, and I left with confidence in the medical team's expertise.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -886,1809,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Jason Merritt,Mcneil-Ali,Jeffrey Nelson -407,968,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Dean Hart,Mcneil-Ali,Jonathan Herring -416,9621,"The hospital had a comfortable environment, and the medical team was thorough in their examinations. Unfortunately, the Wi-Fi was slow and unreliable.",Sarah Brewer,Mcneil-Ali,Mary Pacheco -428,1915,"My stay at the hospital was fantastic. The medical team was compassionate, and the room had a beautiful view. I couldn't have asked for better care.",Jennifer Walker,Mcneil-Ali,Rachel Bray -462,5215,"I had a positive experience at the hospital overall. The medical team was attentive, and the support staff made every effort to ensure my comfort.",Brittany Harris,Mcneil-Ali,Lorraine Key -719,5931,"The medical care was excellent, and the amenities were good. Unfortunately, the lack of communication between departments caused some issues with my treatment plan.",Renee Young,Mcneil-Ali,Benjamin King -605,6008,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Steven Rivera,Mcneil-Ali,Edward Reed -872,6008,"The medical team was attentive and answered all my questions. However, the lack of personalized attention from the support staff left me feeling overlooked during my stay.",Steven Rivera,Mcneil-Ali,Edward Reed -812,6599,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Candice Manning,Mcneil-Ali,Mike Garcia -587,3413,"The hospital staff was responsive and caring. However, the lack of privacy in the shared rooms was a drawback.",Raymond Berry,Mcneil-Ali,Stacy Moody -621,8512,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Lisa Esparza,Mcneil-Ali,Julie Becker -649,3036,"I had a generally positive experience at the hospital. The medical care was excellent, but the noise from other patients was disruptive.",Jonathan Baker,Mcneil-Ali,Rachel Schroeder -960,5083,"The administrative staff at the hospital were efficient, and the check-in process was smooth. However, the billing department made errors that took weeks to rectify.",Destiny Lloyd,Mcneil-Ali,Douglas Yates -858,4010,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Pamela Hendrix,Mcneil-Ali,Michael Myers -887,3448,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Heather Anderson,Mcneil-Ali,Thomas Klein -940,4812,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Willie Gutierrez,Mcneil-Ali,Scott Wong -235,8678,"The hospital provided exceptional care, and the nursing staff was compassionate. However, the lack of communication about potential side effects of medications was a concern during my stay.",Kathy Smith,"Malone, Thompson and Mejia",Frank Rogers -7,4107,"The nurses were exceptional in providing personalized care. Unfortunately, the outdated facilities were a drawback, and the hospital could benefit from modernizing its infrastructure.",Heather Fisher,"Malone, Thompson and Mejia",Ellen Mccoy -788,4114,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Chase Mcpherson Jr.,"Malone, Thompson and Mejia",Kristi Cox -14,4985,"The hospital's staff demonstrated professionalism and empathy, making my stay more bearable. The cafeteria, though, lacked variety in food options, affecting the overall patient experience.",Christina Anderson,"Malone, Thompson and Mejia",Randy Anthony -728,4785,"The medical staff was professional and caring. The lack of privacy in the shared rooms, however, made the stay less comfortable.",Laura Hamilton,"Malone, Thompson and Mejia",Ronald James -40,8654,"The hospital's technology and equipment were state-of-the-art, contributing to an accurate diagnosis and effective treatment. The investment in modern medical technology positively impacted my recovery.",Joanne Hernandez,"Malone, Thompson and Mejia",Robert Wong -98,5875,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Kathy Watkins,"Malone, Thompson and Mejia",Rebecca Buchanan -734,4975,"The nursing staff was attentive and caring. The lack of a comfortable waiting area for family members, though, was disappointing.",Cathy Church,"Malone, Thompson and Mejia",Jeremy Johnson -289,5266,"The hospital provided excellent care, and the communication between the medical team and me was clear. However, the food options were limited and not very appetizing.",Megan Guzman,Vaughn PLC,Jeremy Johnson -154,6491,"The level of care I received from the nurses exceeded my expectations. However, the billing process afterward was confusing, and it took multiple calls to resolve the issues.",Tamara Potter,"Malone, Thompson and Mejia",Mark Morgan -594,6232,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Julie Walker,"Malone, Thompson and Mejia",Christopher Nguyen MD -784,6194,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",John Henderson,"Malone, Thompson and Mejia",Dr. Brittany Hill -598,7330,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",David Fisher,"Malone, Thompson and Mejia",Angela Osborn -292,5279,"The hospital staff went above and beyond to make me comfortable. The facilities were modern and clean, and the medical care exceeded my expectations.",Thomas Harrell,"Malone, Thompson and Mejia",Stephanie Blake -916,5090,"The hospital's emergency services were prompt and efficient. However, the follow-up care was not as thorough as I expected, leaving me with unanswered questions.",Jason Johnston,"Malone, Thompson and Mejia",Jordan Finley -328,3561,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Sean Best,"Malone, Thompson and Mejia",Pamela Martinez -675,359,"Kudos to the efficient and friendly nursing staff who made my recovery journey much smoother. The hospital's commitment to patient care is evident, and I left feeling grateful for the positive experience.",Ryan Gutierrez,"Malone, Thompson and Mejia",Mrs. Kristine Hall MD -641,7046,"The hospital staff was compassionate and caring, but the lack of clear signage made it challenging to navigate the large facility.",Catherine Howard,"Malone, Thompson and Mejia",Katelyn Ryan -896,4957,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Jason Merritt,"Malone, Thompson and Mejia",Autumn Cardenas -902,1782,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Amanda James,"Malone, Thompson and Mejia",Larry Mitchell -715,4213,"The hospital had a welcoming atmosphere, and the rooms were comfortable. However, the billing process was confusing and frustrating.",Tammy Hart,"Malone, Thompson and Mejia",Tracy Hill -564,9525,"The medical team was efficient and professional. However, the billing process was confusing and took a long time to resolve.",Jamie Wiley,"Malone, Thompson and Mejia",Charles Smith -625,4736,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Toni Caldwell,"Malone, Thompson and Mejia",Rebecca Delgado -1004,3573,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Krystal Webb,"Malone, Thompson and Mejia",Jose Wilson -828,9769,"The medical staff was efficient, and the hospital rooms were clean and comfortable. On the downside, the cafeteria food was bland, and the menu was repetitive.",Kristopher Wiley Jr.,"Malone, Thompson and Mejia",James Gutierrez -845,9444,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Crystal Cruz,"Malone, Thompson and Mejia",Tammy Ware -797,323,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Angelica Houston,"Malone, Thompson and Mejia",Jacqueline Sanchez -949,3392,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Matthew Nelson,"Malone, Thompson and Mejia",Susan Watkins -269,9429,"The hospital provided excellent medical care, and the nursing staff was attentive and supportive. However, the lack of communication about the expected recovery timeline was a drawback.",Kathy Smith,"Jones, Brown and Murray",Samantha Woodard -15,4723,"I had an excellent experience with the dedicated nursing staff. Unfortunately, the outdated entertainment options for patients made the recovery period more tedious than necessary.",Christine Perkins,"Jones, Brown and Murray",Cheryl Lynch -17,1061,"The hospital's commitment to community outreach and education impressed me. However, the lack of adequate parking facilities added unnecessary stress to my visits.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -317,1061,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -477,8671,"The hospital staff was outstanding. They were empathetic, caring, and made me feel at ease. However, the wait times were a bit too long, causing some frustration.",Alexis Nolan,"Jones, Brown and Murray",Karen Pruitt -41,8264,I was disappointed by the lack of follow-up care after my discharge. It left me feeling unsupported in my recovery journey. Comprehensive post-discharge care is vital for patients' overall well-being.,Sandra Porter,"Jones, Brown and Murray",Dustin Myers -644,7674,"The hospital provided exceptional care, but the billing process was confusing and frustrating. Clearer communication about costs would have been appreciated.",Sandra Porter,"Jones, Brown and Murray",Catherine Walsh -50,8664,"The hospital's facilities were outdated and in need of renovation. The environment did not feel conducive to healing, and modernization is essential to provide a comfortable and welcoming space for patients.",Chelsey Davis,"Jones, Brown and Murray",Emily Johnson -252,5219,"The nursing staff was exceptional, providing both medical expertise and emotional support. Unfortunately, the hospital's Wi-Fi connectivity was unreliable and frustrating.",Andrew Bates,"Jones, Brown and Murray",Lindsay Johnson -77,4563,"The hospital staff were accommodating and supportive, making my stay as comfortable as possible. The attention to detail and personalized care contributed to a positive experience.",Stephanie Vargas,"Jones, Brown and Murray",Bobby Hurst -642,4994,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of amenities for families made it difficult for my loved ones.",Alexander Jimenez,"Jones, Brown and Murray",Tara Murray -152,7133,"I encountered a mix of experiences during my stay. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays and disorganization.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -183,7133,"The hospital provided quality care, and the staff was accommodating. On the downside, the limited visitation hours made it challenging for family members to spend time with me.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -563,5223,"The hospital had a warm and welcoming atmosphere. The only downside was the noise, which made it difficult to rest at times.",Ronald Taylor,"Jones, Brown and Murray",Christine Jones -158,8765,"The facilities were clean, and the nurses were attentive to my needs. Unfortunately, the Wi-Fi was unreliable, making it challenging to stay connected with loved ones during my stay.",Michael Delgado,"Jones, Brown and Murray",Michelle Holmes -232,3758,"The hospital's medical team was attentive and thorough, ensuring a successful recovery. However, the limited availability of certain medical specialists was a drawback to an otherwise positive experience.",Ashley Young,"Jones, Brown and Murray",Jeffrey Bell -239,4232,I was disappointed with the lack of communication from the medical team. It felt like I was constantly in the dark about my treatment plan and prognosis.,Ivan Doyle,"Jones, Brown and Murray",Mason Phelps -549,6443,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Katherine Jones,"Jones, Brown and Murray",Jesse Cochran -298,8013,"I am grateful for the compassionate care I received during my hospital stay. The medical team was knowledgeable, and the facilities were comfortable.",Joe Mendoza,"Jones, Brown and Murray",Sheryl Hudson -312,9243,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Allison Steele,"Jones, Brown and Murray",Zachary Cantrell -857,950,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Michael Watson,"Jones, Brown and Murray",Christopher Barron -761,1683,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Austin Alvarado,"Jones, Brown and Murray",Richard Gonzalez -396,4845,"I had a satisfactory experience. The medical care was good, but the parking situation at the hospital was inconvenient for both patients and visitors.",Jason Merritt,"Jones, Brown and Murray",Gregory Adams -452,1506,"The hospital's commitment to a holistic approach to healing was evident. They offered complementary therapies like art and music, contributing positively to my recovery.",Ryan Craig,"Jones, Brown and Murray",Lauren Williamson -466,4064,"The hospital had a friendly and supportive nursing staff. On the downside, the lack of clear communication about post-discharge care instructions was a bit concerning.",Andre Johnson,"Jones, Brown and Murray",Nicholas Stewart -474,9793,"The hospital provided excellent care, and the nursing staff was compassionate. However, the limited visiting hours made it difficult for my family to offer consistent support.",Renee Young,"Jones, Brown and Murray",Brett Stark -714,6816,"The nurses were amazing, providing excellent care. Unfortunately, the food options were limited and not very appetizing.",Matthew Perez,"Jones, Brown and Murray",Lauren Johnson -678,9840,"The hospital's commitment to patient safety was evident in their strict adherence to hygiene protocols. I felt secure throughout my stay, and the staff's dedication to cleanliness did not go unnoticed.",Kristopher Wiley Jr.,"Jones, Brown and Murray",Jason Shepard -971,2384,I appreciated the hospital's emphasis on patient education. The doctors took the time to explain my condition and treatment options in a way that was easy to understand.,Derek Edwards,"Jones, Brown and Murray",Joshua Berry -848,1427,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Gary Baldwin,"Jones, Brown and Murray",Virginia Morgan -984,3919,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Gary Baldwin,"Jones, Brown and Murray",Stephanie Powers -868,2294,"The hospital had state-of-the-art equipment, and the medical staff was highly professional. However, the lack of parking space and confusing signage made navigating the facility a challenge.",Sarah Lane,"Jones, Brown and Murray",Michael Spears -975,7060,"The hospital's dedication to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Katrina Torres,"Jones, Brown and Murray",Michael Gray -379,4988,"The cleanliness of the hospital impressed me, and the medical staff took the time to explain procedures thoroughly.",Kathy Smith,"Burke, Griffin and Cooper",Justin Peterson -227,1604,"The hospital's facilities were clean and well-maintained, creating a comfortable environment for recovery. However, the limited options for dietary restrictions made it challenging to find suitable meals.",Ashley Goodwin,"Burke, Griffin and Cooper",Victor Thomas -12,9911,"I encountered a few hiccups in the billing process, which caused unnecessary stress during an already challenging time. Improved transparency and communication regarding financial matters are essential.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -717,9911,"The hospital environment was calming, and the support staff was helpful. On the downside, the Wi-Fi connection was unreliable.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -811,9911,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -1000,730,"The hospital's dedication to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Thomas Middleton,"Burke, Griffin and Cooper",Erik Wood -25,1827,"The hospital's commitment to diversity and inclusion was evident in their culturally sensitive approach to patient care. However, the administrative delays in processing paperwork created unnecessary stress during my admission.",Mr. Adrian Pittman II,"Burke, Griffin and Cooper",Stanley Crane -34,1134,"The medical team at the hospital demonstrated exceptional professionalism. They took the time to explain my treatment plan thoroughly, and I felt confident in their expertise. A commendable level of care.",Rebecca Wallace,"Burke, Griffin and Cooper",Luke Lowery -39,5070,"I had a mixed experience at the hospital. While some nurses were exceptional, others seemed disinterested in providing quality care. Consistency in the level of care is crucial for patient satisfaction.",Jenna Taylor,"Burke, Griffin and Cooper",Peter Bishop -186,4840,"The hospital staff was friendly and professional, providing excellent medical care. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",April Bailey,"Burke, Griffin and Cooper",Jonathon Perez -56,8058,I was disappointed with the lack of coordination among the different departments at the hospital. It resulted in unnecessary delays in my treatment and a less-than-optimal overall experience.,Renee Brown,"Burke, Griffin and Cooper",Robert Williams -593,2785,"The hospital's medical team was efficient and professional. However, the lack of communication about my treatment plan was frustrating.",Matthew Perez,Shea LLC,Robert Williams -631,6535,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Amy Daniels,"Burke, Griffin and Cooper",Tamara Smith -329,7204,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Tanya Mccarty,"Burke, Griffin and Cooper",Mark Fisher -103,6940,"The hospital staff was incredibly supportive during my stay. They made sure I felt comfortable and well-cared for, which made a significant difference in my recovery.",Lisa Wilkinson,"Burke, Griffin and Cooper",Catherine Anderson -541,9263,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Alexander Jimenez,"Burke, Griffin and Cooper",David Carlson -143,5602,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Ryan Thomas,"Burke, Griffin and Cooper",Beth Perry -202,6847,"I was impressed by the hospital's state-of-the-art equipment and technology. However, the lack of communication about the treatment plan was a bit frustrating at times.",Sabrina Rodriguez,"Burke, Griffin and Cooper",Evelyn Bowman -177,3401,"The hospital staff was professional and caring, providing excellent medical care. However, the cafeteria food was subpar, and the options were limited.",Patricia Stewart,"Burke, Griffin and Cooper",Alex Patel -346,3431,"The medical team was thorough and efficient in their care. However, the lack of available amenities for families made it challenging for my loved ones during the extended hospital stay.",Patricia Stewart,"Burke, Griffin and Cooper",Melissa Weaver -421,3942,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Burke, Griffin and Cooper",Jason Bailey -829,7313,"I had a mixed experience at the hospital. The doctors were skilled, but the administrative processes were confusing, leading to frustration and delays.",James Cooper,"Burke, Griffin and Cooper",James Nunez -201,174,"The hospital's medical team was outstanding, providing thorough explanations and personalized care. On the downside, the cafeteria food left much to be desired in terms of taste and variety.",Julie Walker,"Burke, Griffin and Cooper",Michael Morgan -881,9736,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Joseph Jackson,"Burke, Griffin and Cooper",Stephanie Garza MD -371,4453,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -771,4453,"I was disappointed with the cleanliness of the hospital. The staff was friendly, but the lack of hygiene was a concern for me.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -251,1467,"The hospital's cleanliness and hygiene standards were impressive. However, the communication between different departments could be more streamlined for better coordination.",Joseph Jones,"Burke, Griffin and Cooper",Sarah Sanders -261,8074,"The hospital's medical team was skilled, and the facilities were modern. However, the administrative processes were confusing, leading to delays in my treatment.",Sheri Howard,"Burke, Griffin and Cooper",Kimberly Cruz -323,6418,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Michael Watson,"Burke, Griffin and Cooper",Matthew Little -331,1505,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable, and the support staff was friendly. The food, however, left much to be desired.",Charles Kim,"Burke, Griffin and Cooper",Brandy Cross -342,5479,"The hospital's infrastructure was modern and well-maintained. However, the lack of coordination between different departments led to delays in my treatment.",Zachary Campbell,"Burke, Griffin and Cooper",Timothy Martinez -465,7492,"The hospital staff was accommodating, and the facilities were well-maintained. Unfortunately, the limited TV channels in the patient rooms made leisure time less enjoyable.",Karl Bruce,"Burke, Griffin and Cooper",Kyle Rivera -486,7341,"The hospital staff was compassionate, and the doctors were thorough in their examinations. On the downside, the waiting area was crowded, making it uncomfortable for patients and their families.",Jonathan Lucas,"Burke, Griffin and Cooper",Jill Knight -498,4774,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were slow and disorganized, leading to some frustration.",Gary Swanson,"Burke, Griffin and Cooper",Zachary Williams -950,3712,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jonathan Obrien DDS,"Burke, Griffin and Cooper",Melanie Richardson -688,5683,The hospital's state-of-the-art equipment and modern facilities were reassuring. The medical team's expertise and dedication to patient care made my stay as comfortable as possible.,Ryan Jarvis,"Burke, Griffin and Cooper",James Jones -655,9,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -889,9,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -731,2881,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Richard Garcia,"Burke, Griffin and Cooper",Valerie Simpson -958,5418,"I had a mixed experience at the hospital. While the medical care was top-notch, the waiting times were frustratingly long.",Derek Phillips,"Burke, Griffin and Cooper",Mark Sanders -383,6747,"The hospital had a friendly and supportive environment. Unfortunately, the discharge process was slow and took longer than expected.",Kathy Smith,"Wheeler, Bryant and Johns",Robert Turner -786,3839,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Teresa Frost,"Wheeler, Bryant and Johns",Darryl Martin -13,2185,"The hospital's state-of-the-art technology greatly contributed to the accuracy of my diagnosis. However, the lack of emotional support from the medical team made the overall experience less comforting.",Lauren Williams,"Wheeler, Bryant and Johns",Thomas Erickson -790,5488,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Christina Anderson,"Wheeler, Bryant and Johns",Kimberly Perry -735,6764,"The hospital had a clean and organized environment. The constant beeping of machines in the ward, however, was disruptive to my rest.",Natalie Mitchell,"Wheeler, Bryant and Johns",Michael Bennett -737,6019,"The hospital had a welcoming atmosphere, and the medical staff was efficient. The limited menu options in the cafeteria, however, were a downside.",Victor Dean,"Wheeler, Bryant and Johns",Alex Maynard -616,3288,"The hospital staff was compassionate and understanding. However, the food options were limited and not very appetizing.",Tasha Griffin,"Wheeler, Bryant and Johns",Tyler Jackson -170,1652,"The nursing staff was caring, making my hospital stay more bearable. However, the outdated TV in the room and limited channel options made leisure time less enjoyable.",Renee Brown,"Wheeler, Bryant and Johns",Christina George -148,5124,"The nursing staff was compassionate and attentive. However, the lack of communication between shifts caused some confusion about my treatment plan.",Elaine Page DVM,"Wheeler, Bryant and Johns",Lynn Koch -471,1860,"The hospital's commitment to patient safety was evident. However, the lack of clear signage made it challenging to find specific departments within the facility.",Aaron Graves,"Wheeler, Bryant and Johns",Peggy Moody -120,4804,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Lisa Brewer,"Wheeler, Bryant and Johns",Hannah Cruz -91,9652,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Michael Bennett,"Wheeler, Bryant and Johns",Martin Miller -112,918,"My hospital stay was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Kimberly Johnson,"Wheeler, Bryant and Johns",Marissa Dixon -122,7490,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Isaac Walker,"Wheeler, Bryant and Johns",Mr. Dustin Thomas -241,6881,"I appreciate the hospital's efforts in ensuring a safe and clean environment. The hygiene protocols were strictly followed, which gave me peace of mind.",Danielle Herring,"Wheeler, Bryant and Johns",Michael Caldwell -368,6157,"The nursing staff was compassionate and attentive, ensuring my needs were met. Unfortunately, the administrative processes were a bit convoluted, causing confusion and delays in my treatment.",Jennifer Evans,"Wheeler, Bryant and Johns",Brian Duncan -214,9505,"The medical team at the hospital was efficient and caring, ensuring a smooth recovery process. However, the lack of privacy in shared patient rooms was a drawback to an otherwise positive stay.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -397,9505,"The hospital had a welcoming atmosphere, and the medical team was thorough in their examinations. However, the wait times for appointments were long.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -533,1043,"The hospital staff was accommodating and understanding of my needs. However, the cleanliness of the facilities was questionable, and that detracted from an otherwise positive experience.",Joseph Johnson,"Wheeler, Bryant and Johns",David Wilson -268,4175,"The hospital's medical team was dedicated and caring, providing personalized attention. However, the administrative delays in processing paperwork were frustrating.",Logan Diaz,"Wheeler, Bryant and Johns",Courtney Moore -418,6723,"The cleanliness and hygiene standards at the hospital were commendable. However, the lack of variety in the hospital menu made meals repetitive.",Lisa Anderson,"Wheeler, Bryant and Johns",Chad Pruitt -779,9942,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Andre Johnson,"Wheeler, Bryant and Johns",Marisa Jennings -503,3150,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of clear communication about the treatment plan was a bit frustrating.",William Soto,"Wheeler, Bryant and Johns",Gary Smith -566,8543,"The hospital provided excellent care, but the lack of communication between the departments led to some misunderstandings.",Johnny Morgan,"Wheeler, Bryant and Johns",Victor Davidson -934,1910,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Raymond Berry,"Wheeler, Bryant and Johns",Stephanie Pratt -738,3181,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Edgar Harris,"Wheeler, Bryant and Johns",Holly Sanford -854,9269,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Amy Payne,"Wheeler, Bryant and Johns",Carl Stone -915,2303,"The hospital had a comforting ambiance, and the nursing staff was exceptional. Unfortunately, the outdated entertainment options made the stay a bit dull.",Amber Parker MD,"Wheeler, Bryant and Johns",Malik Serrano -3,4858,"Unfortunately, my stay was marred by a lack of cleanliness in the facilities. It's essential for the hospital to maintain a hygienic environment to prevent infections and ensure patient well-being.",Teresa Frost,Vaughn PLC,Donald Sparks -16,6120,"The hospital's commitment to holistic care was evident in the inclusion of alternative therapies. However, the limited availability of these services hindered my access to complementary treatments.",Robert Davis,Vaughn PLC,Melissa Davis -759,9905,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Robert Davis,Vaughn PLC,Paul Henry -506,2629,"I had a mixed experience at the hospital. The medical care was exceptional, but the noise level in the ward was higher than expected, affecting my rest.",Jesse Gordon,Vaughn PLC,Justin Robertson -762,2974,"My stay at the hospital was excellent. The medical team was professional, and the facilities were clean and comfortable.",Monique Hall,Vaughn PLC,Gregory Baker -324,508,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Elizabeth Henderson,Vaughn PLC,Monica Hampton -71,7675,"The hospital staff were professional and caring. They took the time to explain my treatment plan and address any concerns I had, making me feel confident in the care I was receiving.",Rebecca Hernandez,Vaughn PLC,Jacob Gibson -355,7974,"The hospital's medical team was thorough in their examinations and treatments. However, the lack of a proper explanation of the billing process left me feeling confused and frustrated.",Benjamin Stevens,Vaughn PLC,Mitchell Hampton -78,4535,"My stay at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Craig Brooks,Vaughn PLC,Andrea Chavez -113,7127,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Connie Tucker,Vaughn PLC,Reginald Miller -128,7150,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Nathan Davis,Vaughn PLC,Rodney Clark -233,232,"I appreciate the hospital's dedication to patient well-being, and the facilities were modern and well-equipped. However, the administrative processes, particularly the billing, were confusing and time-consuming.",Ronald Taylor,Vaughn PLC,Matthew Russell -664,7198,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Lance Gonzalez,Vaughn PLC,Edward Sheppard -835,9650,"I had a positive experience with the medical team. The hospital rooms were comfortable, but the cafeteria food options were limited, and the quality was mediocre.",Miranda Hunt,Vaughn PLC,Michael Knight -406,1481,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Cristina Ortega,Vaughn PLC,Matthew Barton -810,7433,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Danielle Herring,Vaughn PLC,Beth Williams -775,6072,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of personal attention from the staff was disappointing.",Amy Smith,Vaughn PLC,Michael Lindsey -180,755,"The medical team was knowledgeable, and the facilities were clean. However, the lack of privacy curtains in the shared rooms affected my sense of personal space.",Carol Sanchez,Vaughn PLC,Karen Butler -187,9428,"The nursing staff was attentive and caring, making my hospital stay more comfortable. However, the lack of a bedside table made it challenging to keep personal items organized.",Vickie Collins,Vaughn PLC,Heather Smith -624,1210,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Erin Oliver,Vaughn PLC,Brendan Cross -823,107,"The hospital staff was friendly and professional. The cleanliness and hygiene standards were impressive. However, the discharge process felt rushed and disorganized.",Logan Diaz,Vaughn PLC,Allison White -441,2238,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. However, the administrative staff seemed overwhelmed, leading to delays in paperwork.",Jesus Snyder,Vaughn PLC,Angela Gomez -495,3777,"The hospital staff was caring and attentive. The facilities were clean, and the medical care was excellent. However, the noise level in the ward was higher than expected, affecting my rest.",Michael Watson,Vaughn PLC,Mrs. Kelly Berry DVM -333,7583,"I appreciate the hospital's effort to maintain a clean environment. The janitorial staff did an excellent job. On the downside, the waiting times for tests were longer than expected.",Christopher Webster,Vaughn PLC,Lorraine Scott -608,3870,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Gabriela Garcia,Vaughn PLC,Erica Walker -360,9276,"I appreciate the hospital's commitment to patient well-being. However, the lack of a designated quiet area for relaxation and meditation made it difficult to find moments of peace during my stay.",Lori Burns,Vaughn PLC,Ian Brooks -865,5659,"The hospital staff was friendly and efficient. The cleanliness and hygiene were impressive. Unfortunately, the Wi-Fi was unreliable, making it difficult to stay connected with loved ones.",Lauren Williams,Vaughn PLC,Michael Cook -377,4,I am grateful for the attentive care I received during my stay. The hospital environment was calm and conducive to healing.,Mark Vang,Vaughn PLC,Mrs. Brandy Flowers -424,6978,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",Amy Bryant,Vaughn PLC,Paige Young -484,364,"The hospital staff was friendly and attentive. The facilities were clean, and the medical care was top-notch. However, the cafeteria food was subpar, and more diverse options would be appreciated.",Matthew Ward,Vaughn PLC,Douglas Myers -639,5729,"The hospital provided great care, but the lack of communication between different departments led to some confusion about my treatment plan.",Matthew Perez,Vaughn PLC,Hector Barajas -711,3086,"My stay at the hospital was outstanding. The medical team was skilled, and the facilities were top-notch. I felt well taken care of.",Jamie Marks,Vaughn PLC,Bryan Newton -258,81,"I had a mixed experience at the hospital. The medical care was adequate, but the lack of privacy in the shared rooms made it challenging to rest and recover.",Teresa Frost,Rose Inc,Douglas Crawford -130,4786,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Michael Morales,Rose Inc,Olivia Walsh -599,726,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Joy Yoder,Rose Inc,Thomas Rodriguez -27,9062,"The hospital's commitment to patient privacy and confidentiality was reassuring. However, the lack of communication about the potential side effects of prescribed medications left me feeling uninformed about my treatment plan.",Doris Rodriguez,Rose Inc,Chelsea Miller -651,6746,"The hospital staff was compassionate and understanding, but the lack of clear communication about my treatment plan was frustrating.",Victor Dean,Rose Inc,Scott Murillo -697,6964,The hospital's commitment to community outreach and health education was admirable. It reflected a genuine desire to improve the overall well-being of the community beyond just treating illnesses.,Rebecca Wallace,Rose Inc,Gloria Taylor -712,1120,"The hospital staff was friendly and compassionate. However, the noise level in the ward made it challenging to rest properly.",Nicole Keith,Rose Inc,Anthony Steele -990,5456,"The hospital's commitment to continuous improvement was evident in the ongoing renovations. However, the construction noise during my stay was bothersome.",Chelsey Davis,Rose Inc,Tracy Coleman -681,6915,"The medical team was fantastic, providing top-notch care. However, the lack of communication between shifts led to misunderstandings about my treatment plan. Coordination needs improvement.",Shelley Cobb,Rose Inc,Chloe Scott -64,3983,"I had a mixed experience at the hospital. While the medical care was satisfactory, the administrative process was confusing, and it took a long time to get answers to my questions.",Amy Daniels,Rose Inc,Doris Bray -420,6895,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Amy Daniels,Rose Inc,John Lewis -65,886,"The hospital staff were friendly and empathetic. They made me feel heard and supported, which greatly contributed to my overall positive experience during a challenging time.",Elaine Page DVM,Rose Inc,Robert Trevino -479,2975,"The hospital atmosphere was welcoming, and the nurses were always available to address my concerns. However, the billing process was confusing, and it took a while to sort out.",Andrew Bates,Rose Inc,Amy Soto -115,6629,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alexander Jimenez,Rose Inc,Kathy Campbell -141,9908,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Robert Clements,Rose Inc,Michelle Young -164,5152,"The medical team was knowledgeable, and the facilities were clean. Unfortunately, the loud announcements over the intercom were disruptive and made it challenging to rest.",Lance Gonzalez,Rose Inc,Matthew Williams -948,1785,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Leslie Williams,Castaneda-Hardy,Matthew Williams -179,4416,"I appreciate the dedication of the hospital staff in ensuring my well-being. Nonetheless, the lack of variety in the hospital menu made the dining experience monotonous.",Erin Ramirez,Rose Inc,April Bridges -736,118,"The medical team was thorough, and the facilities were modern. Unfortunately, the lack of communication about my treatment plan was frustrating.",Vickie Collins,Rose Inc,Martha Franklin -555,4964,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Rhonda Diaz,Rose Inc,Kevin King MD -220,8531,"I appreciate the hospital's commitment to patient well-being, and the medical staff was attentive. However, the administrative processes, especially the discharge paperwork, were time-consuming and confusing.",Jo Beard,Rose Inc,Russell Mata -559,2421,"My stay at the hospital was excellent. The medical team was responsive, and the facilities were clean and comfortable.",Kayla Lawson,Rose Inc,Jennifer Davidson -755,5775,"The doctors were knowledgeable, and the hospital had a clean environment. The lack of privacy in the shared rooms, however, was a drawback.",Yvonne Jacobs,Rose Inc,Cassandra Chan -250,9873,"I felt like a priority at the hospital, thanks to the attentive medical staff. However, the lack of communication about the potential side effects of my medication was concerning.",Dustin Griffin,Rose Inc,Chad Nguyen -255,8276,"The hospital's medical team was knowledgeable and efficient, but the lack of clear communication about my treatment plan left me feeling anxious and uncertain.",Kyle Campbell,Rose Inc,Breanna Nielsen -414,3056,"The nursing staff at the hospital was compassionate and supportive. However, the billing process was confusing and took a while to resolve.",April Shea,Rose Inc,Tamara Suarez -279,7844,"I had a positive experience overall at the hospital. The nursing staff was caring and attentive, and the facilities were modern and well-equipped.",Tara Payne,Rose Inc,Bridget King -306,3129,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",Victoria Chavez,Rose Inc,Gary Robinson -903,3200,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jason Johnston,Rose Inc,Melissa Malone -577,6289,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Edgar Harris,Rose Inc,Megan Allison -457,4724,"The hospital's commitment to cleanliness was evident. However, the lack of greenery and natural light in the patient rooms made the environment feel a bit sterile.",Karen Klein,Rose Inc,Brendan Garrett -838,6450,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of coordination between departments led to delays in my treatment.",Sara Newman,Rose Inc,Ashley Vincent -825,5980,"The hospital provided excellent care, and the doctors were thorough in their examinations. However, the parking situation was inconvenient, and the fees added up quickly.",Eric Patton,Rose Inc,Shane Drake -704,8255,I appreciated the hospital's emphasis on preventive care and wellness. The educational materials provided valuable insights into maintaining a healthy lifestyle beyond just treating illnesses.,Mary Medina,Rose Inc,Daniel Barrett -745,5250,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Kristin Phillips,Rose Inc,Ryan Espinoza -891,5725,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Andrew Miller,Rose Inc,Allison Woods -925,9446,"The hospital's facilities were impressive, and the medical staff was professional. However, the lack of communication about my discharge plan caused some anxiety.",Joshua Guerrero,Rose Inc,Douglas Moore -364,6471,"The nursing staff provided excellent care, and the medical facilities were modern and well-equipped. However, the lack of coordination between different departments led to delays in my treatment plan.",Teresa Frost,Taylor and Sons,David Johnson -470,8814,"The hospital staff was compassionate, and the facilities were modern. However, the lack of Wi-Fi in the patient rooms made it challenging to stay connected with loved ones.",Robert Davis,Taylor and Sons,Rebecca Young -32,1695,"I cannot thank the hospital staff enough for their kindness and dedication. The doctors were knowledgeable, and the nurses made sure I felt supported every step of the way. A truly positive experience.",Shawn Bryant,Taylor and Sons,Cameron Ross -38,8701,The hospital staff displayed genuine empathy and compassion. It made a significant difference in my overall experience. I felt like more than just a patient; I felt cared for as an individual.,Ryan Curry,Taylor and Sons,Adam Lyons -45,9499,My experience at the hospital was overshadowed by the unavailability of essential medications. This oversight significantly impacted my recovery and raised concerns about the hospital's pharmacy management.,Dustin Perez,Taylor and Sons,Tammy Adams -147,9499,"My stay at the hospital was a breeze. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout.",Dustin Perez,Taylor and Sons,Tammy Adams -60,9657,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Elizabeth Henderson,Taylor and Sons,Shane Colon -62,5353,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Mark Martin,Taylor and Sons,Tanya Robinson -536,7640,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Maria Thompson,Taylor and Sons,Samantha Murray -560,9335,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the waiting times were a bit frustrating.",Shawn Ellis,Taylor and Sons,Gloria Kelly -951,1760,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Logan Hansen,Taylor and Sons,Andrea King -109,4728,"The hospital staff was attentive and compassionate, making my stay more bearable. However, the long wait times for certain procedures were a significant drawback to my overall experience.",Christie Kelly,Taylor and Sons,Tricia Wells -172,1157,"The hospital staff was friendly and caring, creating a positive atmosphere. However, the lack of proper signage made it challenging to navigate the large hospital building.",Lindsay Martinez,Taylor and Sons,Chelsea Henderson -131,5704,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Elaine Medina,Taylor and Sons,Daniel Palmer -138,4318,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Lisa Wallace,Taylor and Sons,Shelby Brown -188,5469,"I received quality care from the medical team, and the facilities were clean. However, the lack of a designated relaxation space for patients was a missed opportunity.",Robert Clements,Taylor and Sons,Kristine Wilson -589,6323,"The hospital provided top-notch medical care, and the facilities were modern and comfortable. However, the parking situation was inconvenient.",Elizabeth Meyer,Taylor and Sons,Denise Tanner -161,7224,"The hospital staff was friendly and accommodating, but the lack of transparency in billing was frustrating. Clearer communication about costs would have improved the overall experience.",Melissa Conway,Taylor and Sons,James Johnson -165,7782,"The nursing staff was fantastic, providing emotional support during a challenging time. However, the lack of aftercare information and resources was a downside.",Linda Morris,Taylor and Sons,Dr. Christian Lee -888,8978,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Courtney Walton,Taylor and Sons,Miss Holly Freeman -288,198,"I had a positive experience overall. The medical staff was competent, and the facilities were clean. The only downside was the noisy environment, which made it challenging to rest.",Nathan Smith,Taylor and Sons,Lori Anderson -561,4619,"The hospital staff was compassionate, but the outdated facilities made the overall experience less pleasant.",Michelle Williams,Taylor and Sons,Thomas Long -607,4584,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Katherine Jones,Taylor and Sons,Charles Anderson -320,8133,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",David Lopez,Taylor and Sons,Mr. Matthew Murray -325,5116,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Melissa Paul,Taylor and Sons,Sarah Calhoun -352,4457,"The hospital's medical team was dedicated to providing quality care. Unfortunately, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Madison Hardin,Taylor and Sons,Jonathan Bryant -690,4457,"The hospital's focus on holistic care, including mental health support, was a pleasant surprise. The counseling services provided added a valuable dimension to my recovery journey.",Madison Hardin,Taylor and Sons,Jonathan Bryant -427,4855,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Anthony Phillips,Taylor and Sons,Lindsay Oneill -963,821,My hospital experience was marred by the unavailability of essential medications. This created unnecessary stress during my recovery.,Jared Diaz,Taylor and Sons,Laura Schmidt -443,9105,"I appreciated the personalized care I received from the hospital staff. They took the time to explain procedures and answer my questions, making me feel well-informed.",Carolyn Clark,Taylor and Sons,Michael Conway -454,2181,"The hospital staff was friendly and attentive, creating a positive atmosphere. However, the lack of clear signage made it challenging to navigate the hospital's expansive layout.",Patrick Williams,Taylor and Sons,Misty Palmer -665,3853,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Taylor and Sons,Sandra Robinson -475,369,"My stay at the hospital was fantastic. The doctors were knowledgeable, and the nurses were very kind and supportive. The facilities were top-notch, making my recovery comfortable.",Steven Rivera,Taylor and Sons,Eric Price -550,6966,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",William Soto,Taylor and Sons,Shane Franklin -535,1930,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Kathryn Johnson,Taylor and Sons,Felicia Patterson MD -548,4522,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Tammy Hart,Taylor and Sons,Lindsay Evans -569,7243,"I had a challenging experience at the hospital. The medical care was satisfactory, but the administrative process was a nightmare.",Jessica Matthews,Taylor and Sons,Julie Patel -699,219,The hospital's commitment to sustainability and eco-friendly practices was evident. It was refreshing to see an institution in the healthcare sector taking steps to reduce its environmental impact.,Mary Mahoney,Taylor and Sons,Thomas Lopez -864,7999,"I can't express my gratitude enough for the excellent care I received. The medical team was exceptional, but the noise from the construction outside my room was unbearable.",Abigail Fuller,Taylor and Sons,Amy Townsend -653,6185,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Donna Mcintyre,Taylor and Sons,Jessica Brown -882,1628,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Tamara Potter,Taylor and Sons,Christopher Bray -574,7162,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Teresa Frost,Walton LLC,Kelsey Mills -469,3085,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were confusing, leading to delays in my treatment.",Joy Yoder,Walton LLC,Luke Lee -546,7801,"The hospital staff was understanding and accommodating, contributing to a positive experience during my stay. However, the outdated facilities could use some improvement for a more modern and comfortable environment.",Ashley Goodwin,Walton LLC,Teresa Zimmerman -36,3263,"I was pleasantly surprised by the quality of food provided at the hospital. It exceeded my expectations, and the dietary staff accommodated my special requests. A positive aspect of my stay.",Todd Mccormick,Walton LLC,Shannon Long -46,5926,"The hospital's physical therapy team was outstanding. They tailored my exercises to my needs, monitored my progress closely, and played a crucial role in expediting my recovery. Highly commendable.",Renee Hicks,Walton LLC,Jonathan Sanford -49,9630,"I experienced a delay in receiving test results, causing anxiety during an already stressful time. Timely communication of results is crucial for patients' peace of mind and overall well-being.",Gerald Smith,Walton LLC,Patrick Cook -89,1810,"The hospital staff were friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable and efficient, contributing to a smooth recovery.",Shelley Cobb,Walton LLC,Larry Herrera -215,1774,"I had a satisfactory experience at the hospital, with the medical team addressing my concerns promptly. Yet, the limited options for dietary restrictions made it challenging to find suitable meals.",Amy Daniels,Walton LLC,Christopher Robinson -70,6140,"My experience at the hospital was a rollercoaster. The medical care was excellent, but the lack of coordination among different departments led to confusion and delays in my treatment.",Kelsey Dillon,Walton LLC,Ryan Jenkins -83,4946,"The hospital staff were accommodating, and the medical team provided excellent care. However, there were issues with the billing process that added unnecessary stress to my overall experience.",Richard Carter,Walton LLC,Rodney Zimmerman -450,5994,"The hospital had a comforting environment, and the medical team was proactive in addressing my concerns. However, the limited visiting hours were a drawback for family support.",Natalie Browning,Walton LLC,Nathan Jackson -400,5638,"The hospital staff was kind and attentive. However, the outdated hospital gowns made me feel uncomfortable during my stay.",Linda Morris,Walton LLC,Henry Wagner -173,3285,"The medical team was attentive, and the facilities were clean. Unfortunately, the lack of natural light in the rooms made the environment feel a bit dreary.",Cristina Ortega,Walton LLC,Kevin Daniel -741,3284,"The nursing staff was compassionate, and the hospital had a modern feel. The slow response time for requests, though, was a drawback.",James Cooper,Walton LLC,Matthew Davis -676,7976,"The hospital's atmosphere was warm and welcoming, but the outdated infrastructure was a letdown. The facility could benefit from some renovations to match the quality of care provided.",Joseph Jones,Walton LLC,Patrick Nelson -685,3873,"My stay was overshadowed by the lack of transparency in billing. Unexpected charges left me frustrated, and the financial aspect of the hospital's services needs to be more straightforward.",Megan Guzman,Walton LLC,Mrs. Karen Garza -425,2476,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Ryan Gutierrez,Walton LLC,Andrew Flores -348,6691,"The hospital's commitment to patient comfort was commendable, with spacious rooms and modern amenities. Nevertheless, the cafeteria hours were limited, and late-night snacks were hard to come by.",Casey Reyes,Walton LLC,Christina Barajas -362,5169,"The medical team at the hospital was professional and thorough in their care. Unfortunately, the lack of parking spaces for visitors made it inconvenient for my family during their visits.",Molly Dean,Walton LLC,Elizabeth Johnson -451,754,I was impressed by the hospital's commitment to patient education. The doctors took the time to explain my condition and treatment options in detail.,Melissa Garrett,Boyd PLC,Elizabeth Johnson -423,3215,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Louis Sullivan,Walton LLC,Alan Fields -614,5326,"My stay at the hospital was fantastic. The nurses were kind and attentive, and the facilities were clean and comfortable.",Patrick Williams,Walton LLC,Mariah Dalton -456,3693,I had a challenging experience at the hospital due to a mix-up in scheduling appointments. This caused delays in my treatment and added unnecessary stress to my recovery.,Kayla Hunter DDS,Walton LLC,Daniel Moreno -670,3693,"Unfortunately, my experience was marred by a lack of communication among the medical staff. It seemed like they were not on the same page, leading to some confusion about my treatment plan.",Kayla Hunter DDS,Walton LLC,Daniel Moreno -531,7407,"My hospital stay was comfortable, thanks to the attentive nursing staff and clean facilities. However, the lack of coordination between different departments created some communication gaps in my treatment.",Kyle Nichols,Walton LLC,Heather Austin -853,3439,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Kathryn Johnson,Walton LLC,Patrick Rodriguez -539,6244,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Aaron Johnson,Walton LLC,Phyllis Bell -966,1003,The hospital had a well-organized system in place for patient care. The medical team collaborated efficiently to provide comprehensive treatment.,Scott Barton,Walton LLC,Jonathan Moore -820,1162,"The hospital environment was welcoming, and the rooms were comfortable. Unfortunately, the food options were limited, and the quality was subpar.",Johnny White MD,Walton LLC,Kimberly Taylor -941,4353,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Julie Long,Walton LLC,Wendy Davis -4,5410,The hospital staff went above and beyond to make me feel comfortable and informed about my treatment. The positive attitude of the medical team greatly contributed to my overall well-being.,Matthew Marks,Little-Spencer,Kayla Hughes -725,3950,"The medical care was excellent, and the cleanliness was impressive. However, the receptionist at the front desk was unhelpful and unfriendly.",Michael Morales,Little-Spencer,John Jordan -326,1690,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Shawn Bryant,Little-Spencer,Greg Webster -247,4182,"I had a mixed experience. The medical care was satisfactory, but the administrative delays in processing paperwork added unnecessary stress to my stay.",Sandra Porter,Little-Spencer,Valerie Willis -48,6822,"The hospital's support staff, including janitorial and administrative personnel, were friendly and helpful. Their positive attitude contributed to a more pleasant overall experience during my stay.",April Bailey,Little-Spencer,Nicole Lane -73,7696,"I had a frustrating experience at the hospital. The communication between the medical staff and me was unclear, leading to misunderstandings about my treatment plan. Improvement is needed in this area.",Maria Thompson,Little-Spencer,Terri Smith -74,8367,"The hospital provided exceptional care, and the nursing staff was attentive and kind. The well-organized approach to my treatment contributed to a positive overall experience.",Shawn Ellis,Little-Spencer,Tracy Dalton -372,3552,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Craig Brooks,Little-Spencer,Patrick Swanson -534,949,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Barbara Warner,Little-Spencer,Daniel Branch -818,949,"The hospital provided top-notch medical care. The nurses were friendly and efficient, making my recovery process smoother.",Barbara Warner,Little-Spencer,Daniel Branch -554,1374,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Trevor Cook,Little-Spencer,Justin Lewis -222,1749,"My overall experience at the hospital was positive, thanks to the dedicated medical team. Nevertheless, the outdated decor in the patient rooms could use a refresh for a more pleasant atmosphere.",Jesse Hall,Little-Spencer,Jake Matthews -106,2466,"My stay at the hospital was challenging. The medical care was adequate, but the lack of attention from the nursing staff left me feeling a bit neglected and frustrated.",Robert Chen,Little-Spencer,Christopher Taylor -327,7382,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Jackson,"Jones, Taylor and Garcia",Christopher Taylor -108,9732,"I had a mix of positive and negative experiences at the hospital. While the medical care was good, the administrative processes were confusing, leading to unnecessary stress.",James Sparks,Little-Spencer,Michelle James -914,9732,"The hospital's medical team was outstanding, but the billing process was a nightmare. It took multiple calls to resolve an overcharge issue on my bill.",James Sparks,Little-Spencer,Michelle James -540,4408,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",James Sparks,Little-Spencer,Carmen Horne -126,764,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Terry Leon,Little-Spencer,Brenda James -732,7499,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Carla Miller,Little-Spencer,Timothy Taylor -203,1724,"The hospital staff was efficient and courteous, making my stay comfortable. Yet, the noise levels in the patient rooms were high, impacting the overall experience.",Joseph Jackson,Little-Spencer,Jaime Santiago -316,5787,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Joseph Jackson,Little-Spencer,Tamara Hart -219,1642,"The medical team at the hospital was knowledgeable and thorough, ensuring a successful recovery. On the other hand, the limited recreational activities for patients made the stay less enjoyable.",Timothy Martinez,Little-Spencer,Jennifer Mejia -286,5578,"I am grateful for the excellent care I received during my stay. The doctors were knowledgeable, and the nurses were kind and attentive.",William Bailey,Little-Spencer,Dave Bass -229,7917,"The nursing staff at the hospital was exceptional, providing personalized care. However, the lack of communication about the post-discharge care plan was a point of concern for me.",Miranda Meza,Little-Spencer,Tonya Gentry -622,7917,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Miranda Meza,Little-Spencer,Tonya Gentry -259,1969,"The hospital's medical staff was exceptional, providing personalized care. However, the lack of communication about the potential side effects of my medication was concerning.",Beverly Jordan,Little-Spencer,Jacob Gallagher -643,5815,"The hospital staff was attentive, and the cleanliness was commendable. Unfortunately, the cafeteria food left much to be desired.",Tara Payne,Little-Spencer,Christy Gregory -997,876,"The hospital's commitment to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Mr. Andrew Keller,Little-Spencer,Daniel Murray -859,8999,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",James Mckinney,Little-Spencer,Dr. Jacob Hart -793,7173,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Charles Kim,Little-Spencer,Kyle Byrd -877,3901,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jared Diaz,Little-Spencer,Mr. Bobby Johnson -464,953,"The medical team at the hospital was exceptional. However, the lack of accessible charging outlets in the patient rooms made it difficult to keep electronic devices charged.",Ashley Jackson,Little-Spencer,Bernard Gibbs -978,7644,"The hospital's commitment to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Jonathan Decker,Little-Spencer,Kevin Ferguson -654,1638,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Krystal Webb,Little-Spencer,Arthur James -637,4511,"The hospital's medical team was top-notch, but the outdated entertainment options in the rooms could use an upgrade.",Jacqueline Mcneil DVM,Little-Spencer,Stephanie Dixon -781,6658,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Destiny Lloyd,Little-Spencer,Emily Hodges -862,7237,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",Barbara Warner,Little-Spencer,Tony Woods -985,78,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Sally Jones,Little-Spencer,David Sanchez -307,268,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Matthew Marks,Brown-Golden,Ashley Armstrong -338,7312,"I was impressed with the professionalism of the medical staff. The only downside was the lack of variety in the hospital menu, which made dining options monotonous.",Julia Lam,Brown-Golden,Jennifer Cochran -403,7312,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Julia Lam,Brown-Golden,Jennifer Cochran -10,1504,"My overall experience was positive, thanks to the attentive nursing staff. However, the noisy environment in the shared rooms affected my ability to rest and recover peacefully.",Ashley Goodwin,Brown-Golden,Anna Morrison -160,5209,"The hospital environment was calming, and the medical team was thorough in their assessments. On the downside, the cafeteria food left much to be desired, with limited healthy options.",Andrew King,Brown-Golden,Mathew Reilly -502,8912,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Renee Brown,Brown-Golden,Kristin Garcia -671,1454,"The nursing team was exceptional, providing compassionate care throughout my stay. The hospital's environment was comforting, and the amenities offered helped make my recovery more bearable.",Tanya Mccarty,Brown-Golden,Allison Hill -129,8609,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Rebecca Hernandez,Brown-Golden,Garrett Acosta -72,6581,"My hospital stay was a positive one. The medical team was efficient, and the facilities were clean and well-maintained. The overall atmosphere contributed to a smooth and comfortable recovery.",Jennifer Johnson,Brown-Golden,Brian Chen -86,7797,"The hospital provided exceptional care, and the medical team was thorough in their approach. The facilities were modern and clean, contributing to a positive overall experience.",Lisa Brewer,Brown-Golden,Ariana Hansen -104,2206,"My experience at the hospital was a bit of a letdown. The facilities were outdated, and the communication between the medical staff and me was not as clear as I would have liked.",Brent Brewer,Brown-Golden,Thomas Torres MD -231,5213,"My stay at the hospital was marked by the efficient and caring nature of the nursing staff. However, the lack of communication about the potential side effects of medications was concerning.",Cheryl Smith,Brown-Golden,Tiffany Stewart -453,6551,"The medical team at the hospital was skilled and efficient. Unfortunately, the outdated entertainment options in the patient rooms made the recovery period less enjoyable.",Elizabeth Meyer,Brown-Golden,John Jensen -334,134,"The nursing staff was exceptional, providing personalized care. However, the lack of communication between departments led to some confusion regarding my treatment plan.",Christine Rogers,Brown-Golden,John Edwards -162,3452,"I received prompt and effective medical care during my stay. However, the constant beeping of machines in the ward was bothersome and made it difficult to get quality rest.",Carla Miller,Brown-Golden,Heather Lewis -706,7684,The hospital's dedication to patient comfort was evident in the well-designed private rooms and comfortable furnishings. It made my recovery more bearable and contributed to an overall positive experience.,Mary Owens,Brown-Golden,Jasmine Patel DDS -530,5268,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Stephen Johnson,Brown-Golden,Brooke Robinson -199,2647,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Marc Romero,Brown-Golden,Travis Kelly DVM -207,3969,"My stay at the hospital was marked by the caring nature of the nursing staff. On the flip side, the limited visiting hours made it challenging for my family to spend time with me.",Joel Copeland,Brown-Golden,Charles Alvarez -901,2551,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Melissa Garrett,Brown-Golden,Michael Rodriguez -953,5441,"My stay at the hospital was excellent. The doctors were knowledgeable, and the nurses were compassionate. I felt well taken care of.",Rachel Oneill,Brown-Golden,Kristin Jones -278,9041,"The hospital's medical team was efficient and knowledgeable, providing excellent care. However, the lack of communication about the potential side effects of my medication was concerning.",Jeffrey Williams,Brown-Golden,Bryan Willis -927,2614,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",James Jackson,Brown-Golden,Miranda Frey -332,2725,"The medical team was outstanding - compassionate, understanding, and highly skilled. Unfortunately, the noise level in the shared rooms made it difficult to get a good night's sleep.",Sean Williams,Brown-Golden,Ashley Solis -419,8315,"I appreciate the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Abigail Cummings,Brown-Golden,Elizabeth Robertson -365,513,"The hospital's facilities were clean and modern, creating a comfortable environment. On the downside, the lack of Wi-Fi in the rooms made it challenging to stay connected and entertained.",Molly Dean,Brown-Golden,Jeremy Whitney -363,3842,"The hospital's commitment to patient care was evident, with a responsive medical team. However, the lack of variety in the cafeteria menu made dining options repetitive and uninspiring.",Edward Miller,Brown-Golden,Matthew Carter -576,1612,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Ashley Torres,Brown-Golden,Nathaniel Nichols -500,9862,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only downside was the limited entertainment options in the patient rooms.",Jonathan Obrien DDS,Brown-Golden,Christopher Tucker -583,3957,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Katie Huber,Brown-Golden,Mikayla Hood -707,4533,"I encountered some issues with the nursing staff's communication. It seemed like there was a lack of coordination, leading to confusion about my medication schedule and treatment plan.",Joseph Gonzales,Brown-Golden,Makayla Reynolds -937,7581,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Eric Marquez,Brown-Golden,Amanda Gonzales -885,6709,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Adrienne Johnson,Brown-Golden,John May -5,5953,"I had a mixed experience during my stay. While the medical care was satisfactory, the administrative process felt disorganized and resulted in unnecessary delays in my treatment.",Michael Morales,Castaneda-Hardy,Megan Short -28,166,"The hospital's dedication to staff training and development was evident in the professionalism of the medical team. Still, the limited availability of support services for mental health was a notable gap in their holistic approach.",Derrick Krause,Castaneda-Hardy,David Casey -37,3585,"The hospital's administrative processes need improvement. I faced challenges with billing and paperwork, causing unnecessary stress during an already difficult time. Streamlining these processes is essential.",Keith Reed,Castaneda-Hardy,Robert Black -153,8988,"The hospital facilities were state-of-the-art, and the medical team was efficient. Unfortunately, the noise levels in the ward were disruptive, affecting my ability to rest.",Keith Reed,Castaneda-Hardy,Anthony Young -609,5025,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Nicole Keith,Castaneda-Hardy,Stacey Cohen -59,7774,"The hospital's nursing staff were a mixed bag. While some were compassionate and attentive, others seemed disinterested and inattentive. Consistent training and expectations are necessary for quality patient care.",Colleen Ward,Castaneda-Hardy,Sarah Thomas -196,4073,"I am grateful for the excellent care I received during my stay. The nursing staff was attentive, and the hospital's commitment to patient well-being was evident in every aspect of their service.",Richard Carter,Castaneda-Hardy,Ms. Gina Ross -437,6371,"The hospital had state-of-the-art equipment, and the medical team was highly skilled. Unfortunately, the billing process was confusing, and I received multiple incorrect invoices.",Richard Carter,Castaneda-Hardy,Carol Warner -92,4928,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Jennifer Quinn,Castaneda-Hardy,Amy Nichols -182,5534,"I received excellent medical care during my stay, and the nursing staff was attentive. Unfortunately, the lack of clear communication about the discharge process caused some anxiety.",Jennifer Quinn,Castaneda-Hardy,Victoria Arroyo -116,8941,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Miss Maria King,Castaneda-Hardy,John Arnold -119,5771,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Cathy Church,Castaneda-Hardy,Jacob Rodriguez -149,1480,"I appreciate the efforts of the hospital staff in providing quality care. The cleanliness and hygiene standards were commendable, contributing to a comfortable environment.",Russell Morris,Castaneda-Hardy,Spencer Good -159,5256,"I am grateful for the dedicated nurses who provided exceptional care. However, the administrative processes were bureaucratic, causing unnecessary delays in scheduling tests.",Amy Rios,Castaneda-Hardy,Alexander Henderson -168,3467,"The hospital provided excellent care, and the staff was compassionate. However, the lack of greenery or outdoor spaces for patients to relax was a downside.",Sabrina Rodriguez,Castaneda-Hardy,Willie Brewer -409,7582,"I appreciate the excellent medical care I received. Still, the noise levels in the hallway outside my room were disruptive and affected my rest.",Jennifer Evans,Castaneda-Hardy,Sarah Love -194,3912,"I had a mixed experience at the hospital. While the doctors were knowledgeable and caring, the wait times were quite long, and the administrative staff seemed disorganized.",James Cooper,Castaneda-Hardy,Richard Morrow -206,9253,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Denise Perez,Castaneda-Hardy,Tara Knight -440,6624,The hospital's commitment to patient well-being was evident. The support groups and counseling services offered were beneficial during my recovery.,Jessica Anderson,Castaneda-Hardy,Emily Harrington -237,1829,"I had a frustrating experience at the hospital. The waiting times were ridiculously long, and the staff seemed overwhelmed and disorganized.",Jason Little,Castaneda-Hardy,Richard Cole -260,2676,"I appreciate the hospital's efforts in maintaining a clean and safe environment. However, the lengthy wait times for routine tests were frustrating and inconvenient.",James Brown,Castaneda-Hardy,Matthew Hall -262,4115,"The hospital provided excellent medical care, and the nursing staff was attentive. Unfortunately, the cafeteria food options were limited and not very appetizing.",Timothy Riley,Castaneda-Hardy,Carlos Ruiz -270,4585,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uncertain.",David Fisher,Castaneda-Hardy,Kenneth Rios -274,1092,"I had a positive experience overall at the hospital. The medical staff was compassionate, and the facilities were clean and well-maintained.",David Perez,Castaneda-Hardy,Autumn Proctor -357,9058,"The nursing staff provided excellent care and support during my stay. However, the outdated TV sets in the rooms and limited channel selection left much to be desired in terms of entertainment.",Thomas Harrell,Castaneda-Hardy,Dylan Hart -929,63,"The hospital provided excellent care, but the billing department's lack of transparency was frustrating and led to unexpected financial stress.",Jason Johnston,Castaneda-Hardy,Amanda Stein DVM -319,3107,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Jesus Snyder,Castaneda-Hardy,Jessica Estes DVM -347,8571,"The hospital's medical staff provided excellent care, and the facilities were clean and well-maintained. Unfortunately, the lack of a proper bedside manner from one of the doctors was disappointing.",Breanna Cruz,Castaneda-Hardy,Jessica Noble -804,2524,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",William Hart,Castaneda-Hardy,Lisa Baker -537,4830,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",Michael Miranda,Castaneda-Hardy,Carlos Graham -667,6690,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Bryan Smith,Castaneda-Hardy,Dan Nash -657,8864,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Virginia Robinson,Castaneda-Hardy,Michelle Brown -851,6707,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the lack of coordination between departments led to delays in my treatment.",Richard Garcia,Castaneda-Hardy,Audrey Howard -806,5549,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Timothy Gibson,Castaneda-Hardy,Allen Gibson -791,269,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michael Morales,Pugh-Rogers,Jacob Meyers -369,7259,"The hospital's commitment to cleanliness and hygiene was commendable, with well-maintained facilities. On the downside, the lack of vegetarian options in the cafeteria limited my meal choices.",Heather Fisher,Pugh-Rogers,Nicholas Cook -8,5259,"I appreciate the dedication of the hospital staff, but the lack of coordination among different departments led to confusion about my treatment plan. Streamlining communication is crucial for patient satisfaction.",Joy Yoder,Pugh-Rogers,Nicole Anderson -21,8517,"I appreciate the hospital's commitment to continuous improvement, as seen in their responsive feedback system. However, the lack of emotional support during my recovery was a notable gap in the overall care.",Ann Joseph,Pugh-Rogers,Melinda Dunn -632,3421,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Robert Pratt,Pugh-Rogers,Nicole Bradley -980,3421,"The hospital's commitment to diversity and inclusion was evident in its staff. However, the lack of translation services for non-English speakers created challenges for some patients.",Robert Pratt,Pugh-Rogers,Nicole Bradley -35,1367,I had a difficult time at the hospital due to the noise level in the shared rooms. It impacted my ability to rest and recover. Consideration for patients' need for rest is crucial in a hospital setting.,Mr. Adrian Pittman II,Pugh-Rogers,Tyler Sanders DVM -760,8307,"The nursing staff was caring, and the hospital had a modern feel. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Doris Rodriguez,Pugh-Rogers,James Murray -431,6184,"The facilities were clean, and the medical team was efficient. However, the constant beeping of machines in the ward was quite annoying and made it difficult to rest.",Joanne Hernandez,Pugh-Rogers,Shane Joseph III -826,3302,"The nursing staff was exceptional, providing personalized care. Unfortunately, the outdated entertainment options in the rooms left much to be desired.",Erika Ingram,Pugh-Rogers,Rickey Payne -47,7429,I encountered some issues with the scheduling of tests and procedures at the hospital. The lack of coordination resulted in unnecessary delays and added stress to an already challenging situation.,Jason Martinez,Pugh-Rogers,Joseph Brown -524,7429,"The hospital staff was exceptional in providing care and support. The facility was clean, and the medical team ensured I understood my treatment plan thoroughly. Overall, a positive experience.",Jason Martinez,Pugh-Rogers,Joseph Brown -832,9279,"The hospital staff was caring and attentive, making me feel well-supported during my stay. Unfortunately, the waiting times for tests were longer than expected.",Ashley Le,Pugh-Rogers,Justin Mitchell -570,3998,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Stephanie Vargas,Pugh-Rogers,Cassandra Myers -944,2450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Lindsay Martinez,Pugh-Rogers,Michael Kelly -505,5325,"The hospital staff was friendly and made my stay comfortable. The medical care was excellent, but the administrative processes were a bit confusing, leading to some frustration.",Alexander Jimenez,Pugh-Rogers,Joshua Simpson -386,6801,"The hospital was clean, and the staff was friendly. However, the waiting times for test results were longer than I anticipated.",Antonio Campbell,Pugh-Rogers,Kyle Arnold -157,7274,"The hospital staff went above and beyond to make me feel comfortable. Nevertheless, the lack of privacy in the shared rooms was a drawback, hindering my recovery.",Mary Owens,Pugh-Rogers,Dylan Smith -468,5402,"The hospital had a comprehensive approach to mental health, offering counseling services. However, the limited outdoor spaces for patients to relax were a missed opportunity.",Kimberly Oliver,Pugh-Rogers,Deanna Deleon -253,9591,"The hospital had a warm and welcoming atmosphere, but the billing process was confusing and took an excessive amount of time to resolve.",Sabrina Rodriguez,Pugh-Rogers,Matthew Pacheco -411,1441,"The medical team at the hospital was knowledgeable and caring. Unfortunately, the cafeteria food did not meet my dietary preferences.",James Cooper,Pugh-Rogers,Maria Williams -628,5159,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",Sheri Howard,Pugh-Rogers,Robert Cooper -763,586,"I was impressed with the level of care I received. The doctors took the time to explain everything thoroughly, and the nurses were compassionate.",Joel Copeland,"Smith, Edwards and Obrien",Robert Cooper -687,6305,"I had a positive experience overall. The medical staff was attentive, and the cleanliness of the facility was impressive. However, the cafeteria food left much to be desired, impacting the overall satisfaction of my stay.",Michelle Williams,Pugh-Rogers,Traci Carpenter -287,3066,"The hospital environment was sterile and cold. The medical care was satisfactory, but the lack of a warm and welcoming atmosphere made the experience less pleasant.",Greg Clark,Pugh-Rogers,Thomas Cabrera -300,9363,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -426,9363,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -586,9363,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -408,459,"The hospital had a clean and well-maintained environment. However, the lack of family-friendly spaces in the waiting area was a downside.",Catherine Howard,Pugh-Rogers,Richard Johnson -458,2471,"The medical team at the hospital was compassionate and attentive. The only downside was the limited options in the hospital cafeteria, making it difficult to find healthy choices.",Richard Miller,Pugh-Rogers,Mark Griffin -472,8840,"I had a positive experience at the hospital. The medical team was thorough, and the support staff went out of their way to make my stay as comfortable as possible.",Robert Thomas,Pugh-Rogers,Jordan Reyes -482,5421,"I had a mixed experience. The medical care was excellent, but the communication between the staff and patients could be improved. Clearer instructions would have been helpful.",Sara Newman,Pugh-Rogers,Dawn Barry -709,4397,"My experience was soured by the lack of parking availability. The inconvenience of finding parking spaces, especially during peak hours, added unnecessary stress to my hospital visit.",Shaun Little,Pugh-Rogers,Mark Solomon -724,1193,"The hospital had a warm and inviting ambiance. Unfortunately, the lack of coordination between departments led to confusion about my treatment plan.",Anthony Lowery,Pugh-Rogers,Jacqueline Adams -898,8351,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Hannah Roberts,Pugh-Rogers,Thomas Garcia -6,416,"The hospital's emergency response team was quick and efficient when I was admitted. However, the follow-up care left much to be desired, with long waits for routine check-ups and consultations.",Julia Lam,Lewis-Nelson,Heather Turner -99,8385,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Julia Lam,Lewis-Nelson,Thomas Kelly -24,7628,"The cleanliness and hygiene standards at the hospital were exceptional, contributing to a sense of safety. However, the lack of family-friendly accommodations limited the support system available during my stay.",Robert Pratt,Lewis-Nelson,James Lynch -31,4342,"My experience at the hospital was less than satisfactory. The wait times were unbearable, and the lack of communication from the staff was frustrating. Improvement is definitely needed in their efficiency.",Laura Hamilton,Lewis-Nelson,Alexander Sellers -461,7793,"The hospital had a warm and inviting atmosphere. The only drawback was the noise levels in the shared rooms, making it challenging to rest and recover.",Kelly Scott MD,Lewis-Nelson,Michelle Walls -575,3197,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -615,3197,"I had a mixed experience at the hospital. While the medical care was excellent, the waiting times were frustratingly long.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -296,4326,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Stephanie Vargas,Lewis-Nelson,Linda Allen -144,9762,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Christine Rogers,Lewis-Nelson,William Valencia -635,482,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Amy Rios,Lewis-Nelson,Micheal Duran -996,7556,I encountered some issues with the billing department at the hospital. It took multiple calls to resolve the errors in my invoice.,Erin Ramirez,Lewis-Nelson,Sara House -190,5214,"I appreciate the excellent care I received from the medical team. Unfortunately, the outdated entertainment options in the room made the recovery period less enjoyable.",Timothy Wilson,Lewis-Nelson,Joseph Schneider -344,5414,"The hospital's commitment to patient well-being was evident, with a responsive medical team. On the downside, the TV channels in the rooms were limited, and the entertainment options were lacking.",Andrew James,Lewis-Nelson,Ashley Greene -204,5979,"The hospital's medical team was knowledgeable and attentive, but the billing process was confusing and required multiple follow-ups to resolve discrepancies.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -234,5979,"The medical team at the hospital was knowledgeable and caring, making my stay comfortable. On the other hand, the lack of coordination between departments led to some delays in my treatment plan.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -285,8608,"The hospital staff was friendly and compassionate. However, the wait times were quite long, and it was frustrating to spend so much time waiting for tests and consultations.",Alexis Hutchinson,Lewis-Nelson,Gregory Oliver -796,9193,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Mark Vang,Lewis-Nelson,Thomas Roberts -723,6720,The doctors were attentive and explained things clearly. The noise from other patients made it difficult to get a good night's sleep.,Miguel Davidson,Lewis-Nelson,Kayla Gardner -455,9730,"The hospital's commitment to patient privacy was commendable. The staff ensured confidentiality, creating a safe space for open communication about health concerns.",Brian Rivera,Lewis-Nelson,Stephanie Wallace -878,5975,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Renee Young,Lewis-Nelson,Linda Neal -485,7292,"I had a positive experience overall. The medical team was efficient, and the facilities were well-maintained. The only downside was the lack of information provided about the treatment plan.",David Carter,Lewis-Nelson,Eric Schwartz -669,4461,My stay at the hospital was remarkable. The doctors were not only knowledgeable but also took the time to explain everything in detail. The cleanliness and organization of the facility were impressive.,Jennifer Roberts,Lewis-Nelson,William Grant -684,4486,"The staff's empathy and kindness were a silver lining during a challenging time. Despite the hospital's aging infrastructure, the genuine care provided by the nurses and doctors made the overall experience positive.",Eric Marquez,Lewis-Nelson,Joshua Duncan -819,1766,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays in paperwork.",Angela Stein,Lewis-Nelson,Joshua Fitzgerald -861,5,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Jennifer Baldwin MD,Lewis-Nelson,Patrick Parker -860,5018,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Heather Fisher,Boyd PLC,Samantha Morgan -178,615,"The nursing staff was empathetic and supportive throughout my stay. Unfortunately, the lack of communication about changes to my treatment plan was a source of frustration.",Derrick Krause,Boyd PLC,Luis Cooper -513,615,"I had a mixed experience at the hospital. The medical care was exceptional, but the communication between different departments was lacking, leading to some confusion.",Derrick Krause,Boyd PLC,Luis Cooper -42,7264,"The hospital's environment was welcoming, and the volunteers went out of their way to make patients feel comfortable. A friendly and supportive atmosphere that contributed positively to my overall experience.",Robin Rose,Boyd PLC,Anthony Thomas -54,3636,"I had a positive experience with the hospital's rehabilitation services. The therapists were knowledgeable, and the rehabilitation plan was tailored to my specific needs. A crucial aspect of my recovery.",Monique Hall,Boyd PLC,Jessica Ross -381,776,"The hospital staff was accommodating and made sure I felt comfortable. However, the billing process was confusing and took a while to resolve.",Anthony Lynch,Boyd PLC,Annette Mitchell -843,776,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Anthony Lynch,Boyd PLC,Annette Mitchell -378,4892,"The hospital had state-of-the-art equipment, but the lack of communication between the medical team and patients was frustrating.",Mark Martin,Boyd PLC,Erica Roberts -176,1456,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Scott Scott,Boyd PLC,Victoria Mathews -90,2434,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Trevor Cook,Boyd PLC,Christopher Carson -117,6659,"My stay at the hospital was a mix of highs and lows. The medical care was competent, but the lack of communication about changes in my treatment plan left me feeling uneasy.",Drew Sanchez,Boyd PLC,Anthony Wood -558,6659,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",Drew Sanchez,Boyd PLC,Anthony Wood -668,6659,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Drew Sanchez,Boyd PLC,Anthony Wood -125,7637,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amanda Rogers,Boyd PLC,Alexandria Jones -133,7328,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Christy Huff,Boyd PLC,Jon Williamson -422,1498,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Ryan Thomas,Boyd PLC,Michael Delgado -167,3015,"I appreciated the personalized care from the doctors, but the constant changing of nurses during shifts led to inconsistent communication about my treatment plan.",Larry Campbell,Boyd PLC,Seth Smith -490,5675,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Joseph Jackson,Boyd PLC,Debra Lee -679,7180,"I encountered some issues with the administrative staff, who seemed disorganized and overwhelmed. This affected the overall efficiency of the hospital, and improvements in this area are essential.",Joel Copeland,Pearson LLC,Debra Lee -545,4017,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",John Henderson,Boyd PLC,Maria Cisneros -238,9507,"The hospital staff went above and beyond to make me feel comfortable during my stay. The facilities were clean, and the food was surprisingly good.",Erin Oliver,Boyd PLC,Christopher Gonzalez -557,6005,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Nathan Smith,Boyd PLC,Donna Singleton -528,4173,"The hospital staff was friendly and caring, making my stay pleasant. However, the administrative processes were slow and disorganized, causing unnecessary delays and frustration.",Beverly Jordan,Boyd PLC,Dr. Janet Ramos -293,7784,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative staff was unhelpful and seemed disinterested in addressing my concerns.",Donna Williams,Boyd PLC,Michael Gutierrez -932,532,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Michael Watson,Boyd PLC,Heather Walters -783,4911,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Edward Miller,Boyd PLC,Sarah Lopez -909,8406,"The nursing staff was incredibly compassionate and attentive, but the administrative staff seemed overwhelmed and disorganized.",Sarah Brewer,Boyd PLC,Erik Fletcher -627,7329,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Krystal Webb,Boyd PLC,Eric Moore -634,7231,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Abigail Fuller,Boyd PLC,Lisa Ramirez -680,1310,"The hospital's serene environment and friendly staff positively impacted my recovery. The bright and airy rooms, coupled with the caring nurses, made my stay as pleasant as it could be under the circumstances.",Bernard Miller,Boyd PLC,Donna Weaver -846,1310,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",Bernard Miller,Boyd PLC,Donna Weaver -578,2639,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Joy Yoder,Garcia Ltd,Dylan Brown -508,5605,"My overall experience was positive. The hospital staff was friendly, and the medical care was exceptional. The only drawback was the limited variety in the hospital menu.",Chase Mcpherson Jr.,Garcia Ltd,Robert Decker -834,3899,"The hospital provided good care overall. The nurses were compassionate, but the administrative processes were confusing and added unnecessary stress.",Mark Nichols,Garcia Ltd,Jo Ramirez -33,7503,My stay at the hospital was marred by a lack of cleanliness in my room. It was evident that the facilities were not properly maintained. Disappointing given the importance of hygiene in a healthcare setting.,Victor Dean,Garcia Ltd,Stacy Lindsey -746,3985,"The hospital had a modern and clean environment, and the medical staff was attentive. The slow response time for basic requests, however, was frustrating.",Rebecca Wallace,Garcia Ltd,Cathy Chavez -538,4977,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Ryan Curry,Garcia Ltd,Regina Vargas -226,4415,"My experience at the hospital was positive overall. The medical team was thorough and caring, but the lack of transparency about the billing process was a point of frustration.",Scott Rivera,Garcia Ltd,Monica Romero -991,5856,"I appreciated the hospital's efforts to create a child-friendly environment in the pediatric ward. The play area, though, could use more interactive and educational toys.",Renee Brown,Garcia Ltd,John Avery -739,5123,"The medical care was top-notch, and the hospital had a calm ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Jennifer Johnson,Garcia Ltd,Dr. Christopher Rogers -691,630,"The nursing staff was exceptional, providing attentive and personalized care. However, the administrative processes were confusing, and the lack of clear communication about my treatment plan left me anxious.",Craig Brooks,Garcia Ltd,Sherry Williams -79,6024,"I had a positive experience at the hospital. The medical staff was competent and caring, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Aaron Graves,Garcia Ltd,Jessica Rogers -354,6360,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Tina Wall,Garcia Ltd,Christopher Brown -716,6598,"I received prompt attention from the medical staff, and the technology used for diagnosis was impressive. The cleanliness, however, left much to be desired.",Brent Brewer,Garcia Ltd,Allison Elliott -121,7157,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Cheryl Smith,Garcia Ltd,Michael Johnson -582,7157,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Cheryl Smith,Garcia Ltd,Michael Johnson -145,2432,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,Garcia Ltd,Susan Ward -893,1990,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Amy Rios,Garcia Ltd,Dr. Charles Burton MD -175,7007,"The hospital provided quality care, and the nursing staff was attentive. However, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Amy Smith,Garcia Ltd,Stacy Jennings -789,3581,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Joseph Jackson,Garcia Ltd,David Crawford -240,2817,"The hospital environment was welcoming, and the support staff was always ready to assist. However, the billing process was confusing and stressful.",William Bailey,Garcia Ltd,Eric Williams -935,9450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Logan Diaz,Garcia Ltd,Mark Robinson -358,5687,"The hospital's medical team was knowledgeable and efficient in their care. Unfortunately, the frequent interruptions for routine checks made it challenging to get a good night's sleep.",Erik Guerrero,Garcia Ltd,Ryan Dodson -432,9805,"My time at the hospital was challenging, but the nursing staff made all the difference. Their kindness and patience truly made the experience more bearable.",Steven Watson,Garcia Ltd,George Barnes -476,8120,"I had a mixed experience at the hospital. The medical care was excellent, but the food quality left much to be desired. It's crucial to consider both aspects for a holistic view.",Candice Manning,Garcia Ltd,Christina Andrews -938,6267,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Candice Manning,Garcia Ltd,Tammy Benson DVM -519,4046,"I had a mixed experience at the hospital. The nursing staff was kind and caring, but there were delays in getting test results, causing some anxiety. The facility, however, was top-notch.",Terry Chan,Garcia Ltd,Jimmy Johnson -906,5658,"The hospital staff was exceptional, and I received excellent care. However, the lack of communication between departments led to some confusion about my treatment plan.",George Lee,Garcia Ltd,Matthew Montgomery -748,3520,"The nursing staff was compassionate, and the hospital facilities were top-notch. The limited visiting hours, though, made it challenging for my family to be present.",Michael Robinson,Garcia Ltd,Mario Stone -907,205,"I was impressed by the cleanliness and organization of the hospital. The medical team was efficient and caring, making my recovery smoother.",Timothy Gibson,Garcia Ltd,Rachel Williams -921,8944,"The medical staff was attentive and caring, providing quality care. Unfortunately, the noise from construction outside my room was disruptive and affected my rest.",Timothy Gibson,Garcia Ltd,Natalie Rojas -852,3226,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of clear communication about the post-discharge care plan was a concern.",Steven Smith,Garcia Ltd,Amber Stout -981,2127,"I appreciated the hospital's efforts to create a comfortable environment for patients. However, the noise from construction in the adjacent building was disruptive.",Taylor Williams PhD,Garcia Ltd,Tasha Dunn -85,55,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of communication between the staff and me made me feel isolated and frustrated.",Andrew King,"Rush, Owens and Johnson",Frank Reid -398,8800,"I appreciated the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Andrew King,"Rush, Owens and Johnson",William Foster -895,1840,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Thomas Middleton,"Rush, Owens and Johnson",Thomas Jacobs -943,9081,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Dustin Perez,"Rush, Owens and Johnson",Blake Martin -611,5881,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -782,5881,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -171,6286,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were confusing and resulted in billing errors that took weeks to resolve.",Robert Chen,"Rush, Owens and Johnson",Gregory Salazar -375,5366,"The nursing staff at the hospital was exceptional, providing compassionate care. However, the food options were limited and not great.",James Sparks,"Rush, Owens and Johnson",Jesus Griffin -213,6249,"The hospital's facilities were modern and well-maintained, contributing to a positive overall experience. Unfortunately, the billing process was confusing and required extensive clarification.",Veronica Moore,"Rush, Owens and Johnson",Heather Ferguson -343,2532,"The nursing staff was compassionate, and the medical facilities were up to par. Nonetheless, the cafeteria food left much to be desired, and I found myself ordering from outside frequently.",Robert Clements,"Rush, Owens and Johnson",Phyllis Waters -273,5700,"The hospital's medical staff was skilled and caring, providing excellent care. Unfortunately, the noise levels in the shared rooms made it challenging to rest and recover.",Geoffrey Jacobson,"Rush, Owens and Johnson",Timothy Avila -501,6523,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Russell Morris,"Rush, Owens and Johnson",John Martinez -833,6067,"The medical care I received was excellent, and the facilities were clean. However, the lack of communication between shifts caused confusion about my treatment plan.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -976,6067,"The hospital's location was convenient, and the shuttle service for patients was a thoughtful touch. However, the noise from construction nearby disrupted my rest.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -613,3089,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Linda Morris,"Rush, Owens and Johnson",Kaitlin Miller -617,9533,"I appreciate the professionalism of the doctors, but the lack of communication about my treatment plan left me feeling anxious.",Amy Smith,"Rush, Owens and Johnson",Cheryl Watts -193,177,"My stay at the hospital was exceptional. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout my time there.",Andrew James,"Rush, Owens and Johnson",Scott Nicholson -473,6462,"The hospital had a welcoming atmosphere, and the medical team was attentive. On the downside, the noise levels in the hallway made it challenging to rest during the night.",Andrew James,"Rush, Owens and Johnson",Matthew Walsh -600,827,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Rush, Owens and Johnson",Carolyn Nguyen DVM -210,579,"I had a positive experience with the hospital's medical staff, who went above and beyond to ensure my comfort. The only drawback was the limited availability of certain medical specialists.",Julie Walker,"Rush, Owens and Johnson",Leslie Kennedy -412,3377,"I had a positive overall experience at the hospital. The medical staff was attentive, and the facilities were well-maintained.",Melissa Garrett,"Rush, Owens and Johnson",James Villanueva -815,7948,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Jason Little,"Rush, Owens and Johnson",Melissa Barnes -243,2874,"I had a positive experience with the skilled and compassionate healthcare professionals. However, the outdated facilities could use some modernization.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -309,2874,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -401,2561,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Fisher,"Rush, Owens and Johnson",Christopher Collins -809,3058,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",James Allen,"Rush, Owens and Johnson",Jacqueline Cooper -520,3379,"The hospital staff went above and beyond to ensure my comfort and well-being. The doctors were thorough in explaining my condition, making me feel informed and at ease throughout my stay.",Marissa Shepherd,"Rush, Owens and Johnson",Timothy Hill -918,5640,"The hospital staff went above and beyond to make me feel comfortable. On the downside, the parking situation was chaotic, and finding a spot was a daily struggle.",Carmen Larsen,"Rush, Owens and Johnson",Gene Anderson -435,4134,"I am grateful for the exceptional care I received at the hospital. The nurses were not only skilled but also empathetic, making a significant impact on my recovery.",Jared Diaz,"Rush, Owens and Johnson",Angie Murphy -496,1401,"I am grateful for the care I received at the hospital. The medical team was compassionate, and the facilities were well-maintained. The only downside was the limited visiting hours.",Candice Manning,"Rush, Owens and Johnson",Tonya Ferguson -773,6383,"I encountered some communication issues during my stay. The medical staff seemed disorganized, and it led to confusion about my treatment plan.",Jacqueline Johnson,"Rush, Owens and Johnson",Jessica Mays -677,1787,"I had mixed feelings about my stay. While the medical team was skilled and attentive, the lack of follow-up after discharge left me feeling a bit neglected. A simple check-in would have been appreciated.",Christopher Stanley,"Rush, Owens and Johnson",Shaun Tran -917,3104,"I encountered both positive and negative aspects during my hospital stay. The medical care was excellent, but the facility could benefit from more patient-friendly amenities.",Kristopher Wiley Jr.,"Rush, Owens and Johnson",Jeffrey Wilkerson -752,9328,"The nursing staff was caring, and the hospital had a modern feel. The lack of clear communication about my treatment plan, however, was frustrating.",Julia Hoffman,"Rush, Owens and Johnson",David Jones -67,9399,"The hospital's medical team was exceptional, providing thorough and personalized care. The modern facilities and state-of-the-art equipment added to the overall positive atmosphere.",Christina Anderson,"Smith, Edwards and Obrien",Jesse Huerta -30,2721,"The hospital staff went above and beyond to ensure my comfort. The nurses were attentive, and the facility was clean and well-maintained. I felt well taken care of throughout my stay.",Keith Reed,"Smith, Edwards and Obrien",Tracy Davidson -61,6591,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Anthony Lynch,"Smith, Edwards and Obrien",David Simpson -313,167,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",Stephanie Vargas,"Smith, Edwards and Obrien",Joseph Bailey -449,8972,"My experience at the hospital was bittersweet. The medical care was excellent, but the lack of parking spaces made it inconvenient for visitors, causing unnecessary stress.",Aaron Graves,"Smith, Edwards and Obrien",Sharon Lewis -84,1841,"My experience at the hospital was positive overall. The medical team was competent, and the facilities were modern and well-equipped. The nursing staff was attentive and compassionate.",Tara Harris,"Smith, Edwards and Obrien",Garrett Gomez -650,5387,"The hospital's medical team was knowledgeable and supportive, but the lack of vegetarian options in the cafeteria was disappointing.",Jesse Hall,"Smith, Edwards and Obrien",Andrew Cantrell -111,3540,"I am grateful for the outstanding care I received at the hospital. The medical team was thorough in explaining my condition, and the facilities were well-maintained.",Lindsay Martinez,"Smith, Edwards and Obrien",Jacqueline Wilson -1003,4133,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Geoffrey Jacobson,"Smith, Edwards and Obrien",David Martinez -777,2150,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jennifer Murray,"Smith, Edwards and Obrien",Matthew Stokes -155,5542,"I had a positive experience overall. The hospital staff, from doctors to janitors, was friendly and helpful. The only drawback was the limited parking space, causing inconvenience for visitors.",Ronald Taylor,"Smith, Edwards and Obrien",Laura Gonzalez -674,341,The billing process at the hospital was a nightmare. Hidden fees and unclear charges made it difficult to understand the final cost of my treatment. This aspect needs significant improvement.,Ashley Young,"Smith, Edwards and Obrien",Robert Ho -766,6492,"I had a mixed experience. The medical care was good, but the noise level in the ward was disruptive, making it challenging to rest properly.",Bryan Jones,"Smith, Edwards and Obrien",Matthew Cannon -947,3729,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Alex Anderson,"Smith, Edwards and Obrien",Crystal Johnson -275,4179,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were confusing, causing delays in my treatment.",Katherine Jones,"Smith, Edwards and Obrien",Beverly Monroe -330,3707,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",David Lopez,"Smith, Edwards and Obrien",Larry Mitchell Jr. -361,5607,"The nursing staff was compassionate and attentive, ensuring my comfort. Nevertheless, the outdated decor in the patient rooms created a somewhat dreary atmosphere.",Edgar Harris,"Smith, Edwards and Obrien",Katie Santos -526,4655,"I am grateful for the attentive care I received at the hospital. The medical staff was prompt and efficient, and the facility was well-maintained. A positive experience overall.",Dean Hart,"Smith, Edwards and Obrien",Marcus Charles -430,2228,The hospital staff went above and beyond to make me comfortable during my stay. They even organized daily activities to keep patients engaged. Impressive service!,Nancy Nichols,"Smith, Edwards and Obrien",Martin Gilbert -871,749,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Kayla Hunter DDS,"Smith, Edwards and Obrien",Jennifer Wang -459,5408,"The hospital had an efficient and caring nursing staff. On the flip side, the lack of communication about the expected wait times for tests was a bit frustrating.",Deborah Sampson,"Smith, Edwards and Obrien",Danielle Lee -993,308,"The hospital's commitment to patient-centered care was evident. However, the outdated magazines in the waiting area could use an upgrade.",Ryan Jarvis,"Smith, Edwards and Obrien",Erin Porter -721,6662,"The nursing staff was caring and responsive to my needs. The outdated decor and furniture in the rooms, however, made the stay less comfortable.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -924,6662,"I had a positive experience with the hospital's medical team, who were knowledgeable and compassionate. However, the outdated decor in the rooms could use an upgrade.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -961,8520,"The hospital's facilities were outdated, and the lack of modern equipment was concerning. The medical care, though, was satisfactory.",Jeremy Arnold,"Smith, Edwards and Obrien",Zachary Thompson -979,2934,"I had an overall positive experience at the hospital. The medical team was thorough, and the rehabilitation services were beneficial to my recovery.",Elizabeth White,"Smith, Edwards and Obrien",Scott Morrison -874,9245,"The hospital staff was courteous, and the cleanliness standards were impressive. Unfortunately, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Christina Anderson,Shea LLC,Dr. John Fischer -43,2353,"The hospital staff lacked proper communication among themselves, leading to confusion about my treatment plan. Clear and cohesive communication is essential for patient care and overall satisfaction.",Erika Ingram,Shea LLC,Dennis Fitzgerald -875,8780,"I received excellent care at the hospital, and the medical team was proactive in addressing my concerns. Nevertheless, the outdated decor in the patient rooms could use a refresh.",Dustin Perez,Shea LLC,John Henderson -514,6910,"The hospital staff was compassionate, and the medical care was excellent. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Jason Martinez,Shea LLC,Andrea Byrd -567,9854,"The nursing staff was exceptional, and the hospital's cleanliness was impressive. However, the food quality could be improved.",Meagan Herrera,Shea LLC,James Vang -66,7387,"My stay at the hospital was disappointing. The cleanliness of the facilities was subpar, and the lack of attention from the nursing staff made me feel neglected and frustrated.",Tanya Mccarty,Shea LLC,Elizabeth Clark -880,5924,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Craig Brooks,Shea LLC,Megan Kline -81,8535,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Scott Scott,Shea LLC,Angela Zhang -94,6448,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Jesse Hall,Shea LLC,Tammy Flores -890,230,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Dennis Edwards,Shea LLC,Wanda Moore MD -366,5837,"The medical team was efficient and knowledgeable, ensuring my recovery was on track. Nevertheless, the constant beeping of machines in the shared rooms became a source of irritation.",Robert Clements,Shea LLC,Sarah Long -142,2864,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Elizabeth Meyer,Shea LLC,Danielle Shannon -150,9687,"While the medical care was excellent, the wait times for tests and results were quite long. It added unnecessary stress to an already challenging situation.",Jennifer Murray,Shea LLC,Dan Potter -267,6666,"I had a positive experience overall at the hospital. The medical staff was compassionate and knowledgeable, and the facilities were clean and comfortable.",Tamara Potter,Shea LLC,Amanda Cook -522,2509,"My stay at the hospital was nothing short of excellent. The medical team was not only professional but also compassionate. The facility was well-equipped, and the overall atmosphere was positive.",Tamara Potter,Shea LLC,Miss Denise Webster DVM -905,9361,"I had a mixed experience at the hospital. While the medical care was top-notch, the wait times were frustratingly long, and the facilities felt outdated.",Kimberly Oliver,Shea LLC,Lisa Williams -184,6230,"The medical team was efficient, and the facilities were modern. Unfortunately, the lack of Wi-Fi in the rooms made it difficult to stay connected with work and loved ones.",Jennifer Evans,Shea LLC,Brian Brock -208,2256,"The medical team at the hospital was knowledgeable and thorough. Nevertheless, the lack of transparency regarding the treatment plan and options was a point of concern for me.",Jessica Anderson,Shea LLC,Cindy Dixon -281,933,"The hospital's medical staff was dedicated and caring, providing personalized attention. However, the lack of communication about changes in my treatment plan was frustrating.",Nathan Smith,Shea LLC,April Eaton -374,2834,"I had a rough time at the hospital. The wait times were long, and the staff seemed overwhelmed and disorganized.",John Novak,Shea LLC,Charles Fields -264,852,"The hospital's medical team was thorough and efficient, providing excellent care. However, the uncomfortable beds made it challenging to get a good night's sleep.",Michelle Williams,Shea LLC,Christopher Adams -863,8509,"My stay at the hospital was surprisingly pleasant. The doctors were knowledgeable, and the nurses went above and beyond to make me comfortable. However, the food was quite bland.",Jason Johnston,Shea LLC,Jennifer Chapman -692,7719,I appreciated the hospital's efforts to create a positive environment. The cheerful decor and the availability of recreational activities helped alleviate the stress of being in a medical setting.,James Jackson,Shea LLC,Kerry Pittman -603,1881,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Abigail Cummings,Shea LLC,Clinton Gutierrez DDS -370,9901,"The medical team at the hospital was dedicated and thorough in their care. However, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Austin Alvarado,Shea LLC,Melissa Greer -394,8125,"I received top-notch medical care, but the lack of clear communication about my treatment plan left me feeling uncertain about my recovery.",Nathan Fischer,Shea LLC,Erik Robinson -710,2540,The hospital's commitment to patient safety was evident in the strict adherence to infection control measures. I felt reassured about my well-being throughout my stay.,Ryan Kirk,Shea LLC,Andrea Poole -969,9567,"The nursing staff was incredibly kind and attentive, making my hospital stay more bearable. Unfortunately, the lack of parking spaces was a major inconvenience.",Sara Newman,Shea LLC,Christopher Williams -696,3128,"My stay was marked by a lack of attention from the nursing staff. While the medical care was satisfactory, the nurses seemed overworked, leading to delays in responding to my requests.",Gary Swanson,Shea LLC,Nicole Shea -808,7973,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",George Lee,Shea LLC,Barbara Schwartz -544,8791,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Jacqueline Johnson,Shea LLC,Mr. Christopher Diaz -754,5928,"The hospital facilities were impressive, and the medical staff was efficient. The outdated technology for patient records, however, caused delays in my treatment.",Kelly Massey,Shea LLC,Nicole Brewer -590,8496,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were clean and well-equipped.",Joseph Gonzales,Shea LLC,Jennifer Campbell -722,9494,"The hospital was well-maintained, and the medical team was thorough. The cafeteria food, on the other hand, was subpar at best.",Julie Zimmerman,Shea LLC,Alicia Rios -727,9494,"The nursing staff was compassionate, and the hospital grounds were well-maintained. However, the outdated TV in the room was a letdown.",Julie Zimmerman,Shea LLC,Alicia Rios -928,7296,"The hospital's medical team was competent, and the facilities were clean. On the downside, the cafeteria food left much to be desired in terms of variety and taste.",Robert Davis,"Jones, Taylor and Garcia",Austin Webb -747,5957,"The doctors were knowledgeable, and the hospital had a welcoming atmosphere. The lack of Wi-Fi in the rooms, however, was inconvenient.",Alyssa Thomas,"Jones, Taylor and Garcia",Ariel Estrada -795,7946,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",William Mclaughlin,"Jones, Taylor and Garcia",Lindsay Sosa -986,2414,"The hospital's involvement in medical research and clinical trials was a key factor in choosing it for my treatment. The cafeteria food, however, was disappointing.",Veronica Moore,"Jones, Taylor and Garcia",Regina Dorsey -629,4149,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Amber Thomas,"Jones, Taylor and Garcia",William Wood -290,6743,"I was disappointed with my hospital stay. The medical care was average at best, and the staff seemed overwhelmed and disorganized.",Lisa Wallace,"Jones, Taylor and Garcia",Mark Maxwell -139,946,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Natalie Browning,"Jones, Taylor and Garcia",Joshua Sullivan -595,451,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jennifer Evans,"Jones, Taylor and Garcia",Charles Wade -912,2376,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Chad Peterson,"Jones, Taylor and Garcia",Priscilla Tate -189,9920,"The hospital provided top-notch medical care, and the staff was attentive. However, the noisy construction outside the window disrupted my ability to rest peacefully.",Stephen Johnson,"Jones, Taylor and Garcia",Benjamin Stone -499,1917,"The hospital staff was friendly and accommodating. The facilities were modern, and the medical care was top-notch. However, the discharge instructions were a bit unclear.",Dustin Griffin,"Jones, Taylor and Garcia",Lisa Irwin -295,7443,"The hospital provided top-notch medical care, and the facilities were state-of-the-art. Unfortunately, the waiting area was crowded, and the noise level was disruptive.",Jose Carroll,"Jones, Taylor and Garcia",Timothy Rodriguez -850,6481,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about the treatment plan was a drawback.",Joe Mendoza,"Jones, Taylor and Garcia",Ronnie Padilla -304,947,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joseph Santiago,"Jones, Taylor and Garcia",Jennifer Hoover -318,3039,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joyce Brown,"Jones, Taylor and Garcia",Tina Ibarra -512,4174,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the lack of clear communication about the treatment plan was a bit frustrating.",James Jackson,"Jones, Taylor and Garcia",Lisa Bush -438,2570,"The hospital provided top-notch care, and the rehabilitation services were outstanding. On the downside, the noise levels in the hallway made it difficult to rest at times.",Sean Best,"Jones, Taylor and Garcia",Jennifer Cooper -489,8730,"The hospital staff was attentive, and the medical care was exceptional. However, the billing process was confusing, and it took several calls to clarify the charges.",Tracy Garza,"Jones, Taylor and Garcia",Jeffrey Koch -384,3838,"The medical team was knowledgeable and caring, but the lack of parking spaces made it inconvenient for visitors.",Michael Gibbs,"Jones, Taylor and Garcia",Matthew White -388,6516,"The hospital had a modern infrastructure, but the communication between departments seemed lacking, leading to confusion about my treatment plan.",Alexander Rodriguez,"Jones, Taylor and Garcia",Daniel Klein -488,6887,"My stay at the hospital was comfortable. The nursing staff was attentive, and the rooms were clean. The only drawback was the limited variety in the hospital menu.",Jon Prince,"Jones, Taylor and Garcia",Jeremy Willis -497,4745,"The hospital staff was professional, and the medical care was exceptional. However, the lack of parking space made it challenging for visitors to find convenient spots.",David Foster,"Jones, Taylor and Garcia",Abigail Grant -542,7064,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Daniel Mack,"Jones, Taylor and Garcia",Teresa Hernandez -553,6777,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",Kelly Massey,"Jones, Taylor and Garcia",Adrienne Jackson DVM -785,2593,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Brittany Harris,"Jones, Taylor and Garcia",Ryan Jacobs -923,6111,"The hospital staff was friendly and accommodating, but the waiting times for tests and consultations were longer than expected.",Christopher Jordan,"Jones, Taylor and Garcia",Dylan Alvarez -972,4296,The hospital's commitment to patient safety was evident. The strict adherence to hygiene protocols gave me confidence in the cleanliness of the facilities.,Jessica Rodriguez,"Jones, Taylor and Garcia",Joshua Myers -18,4239,"The medical team's expertise and commitment to patient well-being were commendable. Yet, the bureaucratic hurdles in scheduling follow-up appointments need to be addressed for a smoother patient experience.",Thomas Middleton,Schultz-Powers,Yolanda Smith -277,4239,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of personalized attention left me feeling like just another patient in the system.",Thomas Middleton,Schultz-Powers,Yolanda Smith -192,3219,"The hospital facilities were clean and well-maintained, and the medical team was attentive. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",Mark Nichols,Schultz-Powers,Jessica Carrillo -26,2479,"The hospital's focus on preventive care and wellness programs was commendable. Unfortunately, the outdated patient information system caused confusion among the medical staff, affecting the continuity of care.",Mark Woods,Schultz-Powers,Karen Bishop -695,8460,I was impressed by the hospital's dedication to continuous improvement. The feedback mechanisms in place showed a genuine interest in enhancing the patient experience.,Rebecca Wallace,Schultz-Powers,Lisa Smith -53,1411,"The hospital's nursing staff were exceptional in their care and attention. They made a significant positive impact on my overall experience, providing comfort and support throughout my stay.",Tasha Griffin,Schultz-Powers,Brian Wilson -254,3893,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew Bates,Schultz-Powers,Joanna Schmidt -88,5138,"I'm thankful for the compassionate care I received at the hospital. The medical team was attentive and thorough, making a significant difference in my recovery process.",John Williams,Schultz-Powers,Samantha Wilson -110,7906,"My time at the hospital was both challenging and rewarding. The medical team was competent, but the lack of coordination among staff caused delays in my treatment.",William Mclaughlin,Schultz-Powers,John Richmond MD -114,448,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Mr. Justin Bryant,Schultz-Powers,Mike Winters -946,1117,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Cathy Church,Schultz-Powers,Melvin Miller -445,4295,"The hospital had an excellent emergency response team. They handled a sudden complication with speed and efficiency, potentially saving my life. Grateful for their expertise.",Amber Thomas,Schultz-Powers,Julie Dunlap -283,1511,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were top-notch. I felt well taken care of.",Jennifer Murray,Schultz-Powers,Kevin Duke -391,1511,"I had a positive experience overall. The hospital had a friendly atmosphere, and the medical team was knowledgeable and attentive.",Jennifer Murray,Schultz-Powers,Kevin Duke -527,6993,"My stay at the hospital was a rollercoaster. The medical care was satisfactory, but the noise levels were high, affecting my ability to rest and recover. Improvement in the environment is needed.",Tamara Potter,Schultz-Powers,Lisa Lowery -672,6993,"I was disappointed with the long wait times in the emergency room. It felt like hours before I received any attention, and the staff seemed overwhelmed with the number of patients.",Tamara Potter,Schultz-Powers,Lisa Lowery -942,1959,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Linda Morris,Schultz-Powers,James Thompson -792,561,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Erin Ramirez,Schultz-Powers,Martin Hines -181,7964,"The hospital staff was attentive and compassionate. However, the lack of comfortable seating in the waiting areas made the long waits for appointments less bearable.",Troy Wilson,Schultz-Powers,Scott Hall -185,4919,"I appreciate the caring attitude of the hospital staff. However, the lack of updated reading materials in the waiting area made the time pass slowly during appointments.",Chad Peterson,Schultz-Powers,Michael Wilson -776,468,"The hospital staff was attentive and caring. I felt well-supported throughout my stay, and the facilities were up to standard.",Michelle Williams,Schultz-Powers,Catherine Wallace -271,3678,"The hospital's medical team was thorough and efficient, and the facilities were modern. However, the administrative processes were confusing and time-consuming.",Rachel Oneill,Schultz-Powers,Darren Roberts -467,3803,The hospital's dedication to pain management was commendable. The medical team actively worked to ensure my comfort during the recovery process.,Joseph Santiago,Schultz-Powers,Nicole Roberts -404,1725,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",James Jackson,Schultz-Powers,Pamela Medina -869,5241,"I appreciate the compassion shown by the nursing staff, but the administrative staff seemed disorganized. It took multiple attempts to get my billing inquiries resolved.",Tracy Garza,Schultz-Powers,Jordan Bass -602,114,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Abigail Cummings,Schultz-Powers,Susan Mills -830,8066,"The nursing staff was attentive, and the hospital had a positive atmosphere. However, the lack of privacy in the shared rooms was a downside to an otherwise pleasant stay.",Michael Gibbs,Schultz-Powers,Christine Hurley -444,9484,"The hospital had a great team of doctors, but the communication between shifts was lacking. This sometimes resulted in confusion regarding my treatment plan.",Catherine Howard,Schultz-Powers,Eric Hill -955,7931,I was pleasantly surprised by the cleanliness of the hospital facilities. The janitorial staff did an outstanding job maintaining a hygienic environment.,Jason Merritt,Schultz-Powers,Bethany Farrell -442,9800,"The hospital staff was accommodating, and the rooms were comfortable. However, the lack of variety in the menu made the dining experience monotonous during my stay.",Maurice Lane,Schultz-Powers,Jonathan Anderson -509,8648,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Miguel Stout,Schultz-Powers,Kendra Carroll -920,7798,"The hospital's cleanliness and hygiene standards were commendable. However, the limited visiting hours made it challenging for my family to spend time with me.",Richard Miller,Schultz-Powers,Brooke Alvarez -491,2250,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Andre Johnson,Schultz-Powers,William Lawson -648,7482,"The hospital staff was attentive and caring. However, the outdated decor in the rooms detracted from the overall experience.",David Foster,Schultz-Powers,Dr. Ryan Lee -765,590,The hospital staff was friendly and efficient. I appreciated the prompt service and the clean environment.,Tammy Hart,Schultz-Powers,Karen Fox -659,7161,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Eric Patton,Schultz-Powers,Christopher Oconnell -899,1203,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Angelica Houston,Schultz-Powers,John Smith -952,8213,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Heather Smith,Schultz-Powers,Heidi Douglas -750,5941,"The hospital provided excellent care, and the nursing staff was attentive. The lack of private bathrooms in the rooms, though, was inconvenient.",Thomas Middleton,Brown Inc,Veronica Price -957,7423,The medical team at the hospital was exceptional. They were thorough in their examinations and took the time to explain everything in detail.,Natalie Mitchell,Brown Inc,Justin Smith -22,9179,"The hospital's efficient triage system ensured timely care for my emergency situation. Yet, the limited availability of interpreters posed challenges in effective communication with non-English-speaking patients.",Mark Nichols,Brown Inc,Derek Taylor -758,8976,"The doctors were efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Jesse Gordon,Brown Inc,Timothy Trevino -29,2467,"The hospital's commitment to philanthropy and community engagement was commendable. However, the limited resources for patient education materials hindered my ability to fully understand my condition and treatment options.",Andrew Wallace,Brown Inc,Anthony Dorsey -315,2690,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Ashley Le,Brown Inc,Tracy Sanford -814,6783,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Ashley Le,Brown Inc,Jessica Martinez -764,3884,"Unfortunately, my experience at the hospital was subpar. The staff seemed overworked, and I had to wait for an extended period before receiving any attention.",Renee Brown,Brown Inc,Pamela Lewis -702,5222,My experience was marred by the disorganization in the billing department. Confusing statements and delayed responses to my inquiries left me frustrated with the financial aspect of my treatment.,Aaron Graves,Brown Inc,Melissa Brown -80,8410,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Barbara Warner,Brown Inc,Tanya Rodgers -87,2311,"My time at the hospital was frustrating due to long wait times and a lack of communication about my treatment plan. The medical care itself was satisfactory, but improvements are needed in these areas.",Cory Campbell,Brown Inc,Joshua Ferguson -770,5264,"The hospital provided top-notch care. The medical team was efficient, and the facilities were state-of-the-art.",Jennifer Mccall,Brown Inc,Stephen Hernandez -303,3153,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Dennis Edwards,Brown Inc,Jackson Williams -511,1220,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",Cathy Church,Brown Inc,Blake Daniels -565,1220,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Cathy Church,Brown Inc,Blake Daniels -127,2517,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Kerry Hart,Brown Inc,Miguel Lewis -209,9984,"The hospital's facilities were clean and well-maintained, creating a comfortable environment. However, the communication between shifts regarding patient care could be improved for a seamless experience.",Leah Meadows,Brown Inc,Erica Crawford -135,6610,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amber Thomas,Brown Inc,Manuel Moore -778,2334,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Robert Clements,Brown Inc,Frances Bell -939,5671,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Robert Clements,Brown Inc,Wanda Jackson -552,2281,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Christine Rogers,Brown Inc,Joseph Long -216,8155,"The hospital's medical staff was attentive and caring, making my stay comfortable. However, the lack of follow-up communication after discharge left me feeling a bit disconnected from the overall care.",Joseph Johnson,Brown Inc,Austin Burke -389,4146,"I received excellent care from the medical team, but the administrative staff seemed overwhelmed, resulting in delays and paperwork errors.",Joseph Jones,Brown Inc,Anthony Gonzales -297,7439,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Mckinney,Brown Inc,Amanda Weeks -703,964,The hospital's commitment to diversity and inclusion was evident in its multicultural staff. It added a welcoming touch to the overall environment and made me feel valued as a patient.,Joe Mendoza,Brown Inc,Gail Harris -308,9607,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Kathleen Evans,Brown Inc,Robert Cruz -367,5985,"The hospital staff was friendly and accommodating, creating a positive atmosphere. However, the lack of a proper system for patient feedback made it challenging to express concerns and suggestions.",William Hart,Brown Inc,Brenda Johnson -720,7809,"The hospital had a modern feel, and the staff was attentive. However, the bureaucratic procedures for check-in and discharge were cumbersome.",Michael Miranda,Brown Inc,Beverly Johnson -385,6686,"I had a positive overall experience. The nursing staff was attentive, but the food quality did not meet my expectations.",Lauren Rojas,Brown Inc,Heather Palmer -708,6247,The hospital's commitment to research and innovation was impressive. The participation in clinical trials showcased a forward-thinking approach to providing cutting-edge medical treatments.,Daniel Martinez,Brown Inc,David Pittman -417,518,"I had a positive experience overall. The hospital staff was friendly, and the medical team provided excellent care. However, the noise levels in the shared rooms were disruptive.",Ryan Kirk,Brown Inc,Keith Chambers -729,4319,"The hospital had a calm and soothing atmosphere, and the doctors were attentive. Unfortunately, the long wait times in the ER were frustrating.",Steven Rivera,Brown Inc,Robert Cook -480,728,"My overall experience was positive. The doctors were attentive, and the rehabilitation services helped me recover faster. The only downside was the lack of parking space.",Luis Powell MD,Brown Inc,Terry Lawson -547,6518,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Erica George,Brown Inc,Michael Miles -831,3189,"I appreciate the professionalism of the medical team. The hospital was well-maintained, but the parking facilities were limited, causing inconvenience for visitors.",Mary Mahoney,Brown Inc,Amanda Lee -581,8769,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Linda Johnson,Brown Inc,Samuel Crosby -817,8769,"I appreciate the effort of the hospital staff in ensuring my comfort during my stay. However, the waiting times were a bit long, and the communication could be improved.",Linda Johnson,Brown Inc,Samuel Crosby -606,1651,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Bryan Smith,Brown Inc,Anthony Hunt -803,818,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Eric Marquez,Brown Inc,Paul Brooks -897,1440,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Barbara Warner,Brown Inc,Colton Rose -998,7563,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jeremy Arnold,Brown Inc,Elizabeth Reynolds -19,3098,"The hospital's commitment to environmental sustainability was apparent, with eco-friendly practices in place. However, the communication between shifts regarding my treatment plan was inconsistent and confusing.",Natalie Mitchell,Pearson LLC,Cody Green DDS -200,7550,"The nursing staff at the hospital was exceptional. They provided personalized care and were always ready to address any concerns. However, the wait times for tests were longer than expected.",Gerald Smith,Pearson LLC,Christopher Kelly -69,7650,"I'm thankful for the compassionate care I received at the hospital. The nurses were kind and attentive, making a significant difference in my recovery process.",Andrew Bates,Pearson LLC,Sheila Gonzales -101,8216,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Kyle Vasquez,Pearson LLC,Matthew Wyatt -102,2812,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Terry Short,Pearson LLC,Andrea Taylor -245,2021,"My overall experience was positive, thanks to the dedicated and caring nursing staff. However, the administrative process for scheduling tests was cumbersome.",Kimberly Johnson,Pearson LLC,Joshua Crawford -968,2093,"The hospital facilities were modern, and the technology used for diagnostics was impressive. However, the cafeteria food left much to be desired.",Elaine Medina,Pearson LLC,Joseph Avila -191,4605,"The nursing staff was attentive and caring, contributing to a positive hospital experience. However, the lack of clear communication about the daily schedule was a drawback.",Rhonda Diaz,Pearson LLC,Caitlin Park -849,5301,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",James Cooper,Pearson LLC,Holly Clark -959,5465,"The hospital had a calming atmosphere, and the rooms were well-designed for patient comfort. Unfortunately, the noise level in the hallway was disruptive at times.",James Cooper,Pearson LLC,Robert Mcguire -302,956,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Julie Walker,Pearson LLC,Elizabeth Anderson -910,3239,"I appreciate the efforts of the hospital staff in providing quality care. However, the food options were limited, and the cafeteria hours were inconvenient.",Samantha Barrett,Pearson LLC,Phillip Jones -573,2849,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Christopher Murphy,Pearson LLC,Jerry Ochoa -630,9250,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Timothy Martinez,Pearson LLC,Sarah Hernandez MD -276,4414,"The hospital's environment was welcoming, and the medical team was thorough in their examinations. However, the lack of communication about changes in my treatment plan was a drawback.",Kevin Warner,Pearson LLC,Katherine Alexander -908,8136,"The hospital had a warm and welcoming atmosphere. The only downside was the noise level at night, which made it challenging to rest properly.",Kathleen Evans,Pearson LLC,Donald Alexander -336,7456,"The medical team was efficient and prompt in addressing my needs. Unfortunately, the Wi-Fi in the hospital was unreliable, making it challenging to stay connected with loved ones during my stay.",Ryan Gutierrez,Pearson LLC,Joseph Smith -839,2222,"The medical team at the hospital was knowledgeable and supportive. Unfortunately, the limited visiting hours and strict policies made it challenging for family members.",Austin Alvarado,Pearson LLC,Susan Riddle -446,2562,"The hospital's cleanliness and hygiene standards were commendable. However, the constant interruptions for routine checks made it challenging to get a good night's sleep.",Miguel Stout,Pearson LLC,Monique Foster -936,6665,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Patrick Williams,Pearson LLC,Todd Taylor -460,5065,"The hospital provided excellent care, and the medical team was knowledgeable. However, the outdated magazines in the waiting area could use an upgrade.",Stephanie Ward,Pearson LLC,Christopher Day -694,4228,The hospital's commitment to patient-centric care was evident. The staff's friendliness and the comfortable rooms contributed to a positive atmosphere during my stay.,Gary Swanson,Pearson LLC,Nathaniel Parker -518,3865,"My time at the hospital was fantastic. The medical team was not only knowledgeable but also empathetic. The facility was clean and well-maintained, making my stay comfortable.",Samuel Hill,Pearson LLC,George Houston -640,6825,"The hospital's facilities were state-of-the-art, and the medical staff was knowledgeable. However, the noise from construction nearby was bothersome.",Ryan Jarvis,Pearson LLC,Douglas Hickman -652,225,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Michael Hodges,Pearson LLC,David Reed -726,7404,"The hospital had state-of-the-art equipment, and the medical team was knowledgeable. The outdated magazines in the waiting area, though, were a disappointment.",Rebecca Hernandez,Pearson LLC,Hannah Rogers -965,1973,I encountered some issues with the scheduling of tests at the hospital. It resulted in delays in my diagnosis and treatment.,Edgar Harris,Pearson LLC,Kelsey Lawson DVM -743,3858,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Angela Vance,Pearson LLC,Laura Taylor -20,6229,"The hospital's emphasis on patient comfort was evident in the well-designed rooms. Still, the frequent changes in nursing staff created a sense of inconsistency in the quality of care provided.",Alexis Nolan,Huynh PLC,Stephanie Murray -626,8388,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Mark Woods,Huynh PLC,Angela Cohen -100,5969,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Tina Wall,Huynh PLC,Ryan Powers DDS -345,5673,"The hospital staff was friendly and accommodating, but the constant disruptions due to maintenance work made it challenging to rest and recover.",William Mclaughlin,Huynh PLC,Jeremy Martin -405,9102,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Connie Tucker,Huynh PLC,Kenneth Long -866,8700,"The hospital environment was welcoming, and the room had a beautiful view. On the downside, the lack of communication between the departments led to some confusion about my treatment plan.",Christopher Murphy,Huynh PLC,Terrance Ramirez -221,2691,"The nursing staff at the hospital was compassionate and attentive, providing excellent care. However, the lack of coordination between departments led to some delays in my treatment plan.",Melissa Garrett,Huynh PLC,Timothy Rose -492,2683,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",James Johnson,Huynh PLC,Sabrina Williams -311,4758,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jason Johnston,Huynh PLC,Amanda Wilson -350,2665,"I appreciate the hospital's effort to create a positive environment. However, the constant beeping of machines in the shared rooms became a source of annoyance during my stay.",Michael Watson,Huynh PLC,Charles Holt -718,9461,"I had a positive experience overall. The doctors were knowledgeable, and the rehabilitation services were beneficial. The parking situation, though, was a hassle.",Ashley Torres,Huynh PLC,Kelly Burch -413,7145,"The hospital provided efficient medical care, but the lack of clear signage in the hallways made it challenging to navigate the facility.",Amy Bryant,Huynh PLC,Charles Chase -562,5863,"I received top-notch care at the hospital. The nurses were friendly and attentive, and the food was surprisingly good.",Kathleen Mitchell,Huynh PLC,Haley Bright -592,9521,"I received excellent care from the hospital staff. The facilities were modern and well-equipped, but the wait times for tests were longer than expected.",Kyle Campbell,Huynh PLC,Zoe Moore -645,2506,"I had a positive experience at the hospital. The medical team was thorough, and the facilities were well-maintained.",Beth Hall,Huynh PLC,Kevin Bryan -23,2301,"The hospital's commitment to research and innovation was apparent, with access to cutting-edge treatments. Nevertheless, the extended wait times for routine procedures were a notable drawback.",Jesse Gordon,Richardson-Powell,Jermaine Reyes -636,4639,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Robert Pratt,Richardson-Powell,Jessica Davis -740,2556,"The doctors were knowledgeable, and the hospital had a clean environment. The outdated and uncomfortable beds, however, affected my overall comfort.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -900,2556,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -212,6821,"I am grateful for the compassionate care I received from the hospital's medical team. However, the lack of a dedicated patient advocate made it challenging to address specific concerns promptly.",Sandra Porter,Richardson-Powell,Charles Vaughn -58,3543,"I had a challenging experience at the hospital due to the lack of privacy in shared rooms. Privacy is essential for patients, and improvements in this area would significantly enhance the overall patient experience.",Shelley Cobb,Richardson-Powell,Ashley Wallace -137,2948,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Lisa Brewer,Richardson-Powell,Christina Moore -956,7009,"The hospital staff was friendly and attentive, making me feel comfortable during my stay. However, the food options were limited and not very appetizing.",Kyle Vasquez,Richardson-Powell,Charles Davis -399,8122,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Sara Lopez,Richardson-Powell,Jenna Rodriguez -123,6756,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Veronica Moore,Richardson-Powell,Derek Edwards -140,6374,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Jamie Fisher,Richardson-Powell,Jeffrey Brown -662,1962,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Christine Rogers,Richardson-Powell,Scott Mills -904,9220,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable and kind, and the nurses made me feel comfortable throughout.",Christine Rogers,Richardson-Powell,Heather Powers -151,5272,"The hospital has a welcoming atmosphere, and the support from the nurses was outstanding. On the downside, the food options were limited and not very appetizing.",Carla Miller,Richardson-Powell,Charles Mitchell -257,5272,"The hospital's environment was comfortable, and the medical team was thorough in their examinations. However, the noise levels in the shared rooms were disruptive to my rest.",Carla Miller,Richardson-Powell,Charles Mitchell -824,4315,"I had a positive experience overall. The nurses were kind and responsive, but there were some communication gaps between the different departments.",Carla Miller,Richardson-Powell,Angela Williams -647,2675,"The medical care at the hospital was outstanding, but the lack of a comfortable waiting area for families was a drawback.",Cristina Ortega,Richardson-Powell,Michael Powell -543,5008,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Andrew James,Richardson-Powell,Mary White -433,7164,"The hospital had a warm and welcoming atmosphere. The doctors were knowledgeable, and the support staff was always ready to assist. A positive environment for recovery.",Denise Perez,Richardson-Powell,Tracy Oliver -242,7141,"The medical care was excellent, but the noise levels in the hospital were unbearable. It was challenging to rest and recover in such a chaotic environment.",Bryan Jones,Richardson-Powell,Alyssa Delgado -516,7141,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Bryan Jones,Richardson-Powell,Alyssa Delgado -256,2300,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Alex Anderson,Richardson-Powell,Harry Pennington MD -265,8171,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",April Shea,Richardson-Powell,Alfred Hernandez -356,4178,"The hospital's commitment to cleanliness and hygiene was evident, creating a comfortable environment. On the downside, the lack of vegetarian options in the cafeteria made meal choices limited.",Abigail Cummings,Richardson-Powell,Scott Long -387,7772,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. The only downside was the limited menu for patients.",Catherine Howard,Richardson-Powell,Daniel Braun -646,823,"The hospital staff was friendly and helpful, but the lack of Wi-Fi in the rooms made it challenging to stay connected with loved ones.",Nathan Fischer,Richardson-Powell,Kristen Johnson -395,733,"The hospital staff was attentive and caring. However, the outdated magazines in the waiting area could use an update.",Carmen Larsen,Richardson-Powell,Jason Alvarado -415,3767,"I appreciate the caring and attentive medical staff at the hospital. However, the lack of recreational activities for patients made my stay monotonous.",Daniel Martinez,Richardson-Powell,Sarah Burton -805,6207,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Lisa Anderson,Richardson-Powell,Joel Robertson -504,3469,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the cafeteria food left much to be desired.",Michael Berger,Richardson-Powell,Kaitlin Khan -507,4645,"The hospital staff was attentive, and the medical care was excellent. However, the lack of parking space made it challenging for visitors to find convenient spots.",Amy Daniels,Richardson-Powell,Betty Burke -517,7878,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Louis Chambers,Richardson-Powell,Linda Jones -521,631,"I had a challenging time at the hospital. The medical care was adequate, but the lack of communication between the staff and me left me feeling frustrated and confused about my treatment plan.",Samantha Mendez,Richardson-Powell,Kurt Gordon -591,8971,"The nursing staff was compassionate and attentive, and the hospital's commitment to patient well-being was evident. However, the administrative processes were a bit confusing.",Kathryn Johnson,Richardson-Powell,Dylan Maynard -601,4702,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Joseph Roman,Richardson-Powell,Caleb Coleman -977,6052,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Jacqueline Mcneil DVM,Richardson-Powell,Eric Duncan -967,846,I had a frustrating experience dealing with the hospital's insurance coordination. It added unnecessary complications to an already challenging situation.,Emily Lucas,Richardson-Powell,Jeffrey Carter -930,7331,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Jennifer Roberts,Richardson-Powell,Dominique Howard -730,4529,"The nursing staff provided excellent care, and the hospital was clean. The limited visiting hours, however, were inconvenient for my family.",Shaun Little,Richardson-Powell,Jesse Young -800,4794,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Rhonda Wall,Richardson-Powell,Christopher Fernandez -855,8265,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Rebecca Hernandez,Richardson-Powell,Jennifer Hale -780,6965,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Derek Edwards,Richardson-Powell,Ashley Nelson -798,6525,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Karen Klein,Richardson-Powell,Olivia Mccarthy -448,5558,The hospital staff showed genuine concern for patients' well-being. The daily check-ins and follow-ups were reassuring and demonstrated a high level of care.,Mark Woods,Cunningham and Sons,Samuel Knight -246,1031,"The hospital's medical team was efficient and knowledgeable, but the lack of personalized attention made me feel like just another patient in the system.",Jenna Taylor,Cunningham and Sons,Kathleen Conner -52,2860,"I encountered issues with the scheduling of appointments and consultations, leading to frustration and inconvenience. Improving the efficiency of the appointment system is crucial for patient satisfaction.",Ashley Le,Cunningham and Sons,Brian Rodriguez -57,911,The hospital's commitment to patient-centered care was evident in the personalized attention I received from the medical team. They took the time to address my concerns and involve me in decision-making.,Ronald Chen,Cunningham and Sons,Daniel Evans -63,140,"The hospital provided excellent care, and the medical team went above and beyond to ensure my comfort. I felt well-informed about my treatment plan throughout my stay.",Meagan Herrera,Cunningham and Sons,Tim Mercer -75,778,"My time at the hospital was challenging due to a lack of coordination among the staff. The left hand didn't seem to know what the right hand was doing, causing unnecessary stress during my stay.",Benjamin Stevens,Cunningham and Sons,Steven Davis -493,2513,"My experience at the hospital was a mix of highs and lows. The medical care was excellent, but the communication between different departments was lacking, leading to some confusion.",Logan Hansen,Cunningham and Sons,Ronald Wright -529,6917,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Craig Brooks,Cunningham and Sons,Lauren Dominguez -217,2626,"I had a positive experience with the hospital's nursing staff, who provided exceptional care. The only downside was the limited availability of certain diagnostic tests on-site.",Alyssa Thomas,Cunningham and Sons,John Parks -618,7847,"The hospital's environment was peaceful, and the rooms were well-maintained. Unfortunately, the billing process was confusing and stressful.",Jennifer Mccall,Cunningham and Sons,Cheryl Moss -837,6608,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the noise level in the corridors and shared spaces was disruptive.",Lisa Wilkinson,Cunningham and Sons,Jordan Berg -340,9596,"The hospital's medical team demonstrated expertise and empathy. Unfortunately, the noise level from construction nearby made it challenging to rest and recover.",Miss Maria King,Cunningham and Sons,James Richard -118,6547,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Dennis Edwards,Cunningham and Sons,Steven Gray -349,5305,"The medical team at the hospital was attentive and knowledgeable, making my stay comfortable. On the downside, the parking fees added an unexpected financial burden to my overall experience.",Antonio Campbell,Cunningham and Sons,Michele Scott -134,6070,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Leah Meadows,Cunningham and Sons,Linda Barker -588,9178,"I received excellent care from the hospital's medical team. The facilities were clean and well-maintained, but the food options were limited.",Amy Rios,Cunningham and Sons,Shane Sanchez -166,1339,"The hospital's medical team was thorough and attentive, ensuring my comfort. Nevertheless, the limited visiting hours were restrictive and made it challenging for family support.",Miranda Hunt,Cunningham and Sons,Margaret Casey -174,7307,"I appreciate the excellent care I received from the medical team. On the downside, the lack of patient education about medications and post-discharge care was a drawback.",Danielle Herring,Cunningham and Sons,Tabitha Sloan -351,7778,"The nursing staff was exceptional in their care, and the hospital's facilities were state-of-the-art. Despite this, the lack of clear communication about the treatment plan created confusion and anxiety.",Carol Sanchez,Cunningham and Sons,Karen Ross -995,2195,"The hospital's commitment to medical education and training was apparent. However, the limited visitation hours made it challenging for my family to be present.",Chad Peterson,Cunningham and Sons,Justin Jackson -244,9857,"The hospital staff was compassionate and understanding, providing emotional support during a difficult time. The only drawback was the limited visiting hours.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -392,9857,"The cleanliness and hygiene standards at the hospital were commendable. However, the cafeteria food left much to be desired.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -197,9924,"My experience at the hospital was disappointing. The communication between the medical team and the administrative staff was lacking, leading to confusion and frustration.",Courtney Walton,Cunningham and Sons,William Thompson -305,9924,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Courtney Walton,Cunningham and Sons,William Thompson -198,7795,"The hospital had a welcoming atmosphere, and the medical professionals were compassionate. Unfortunately, the outdated facilities were a downside to an otherwise positive experience.",Denise Chavez,Cunningham and Sons,Abigail Nixon -1002,6870,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Joseph Johnson,Cunningham and Sons,Erica Mcneil -919,5143,"I had a satisfactory experience at the hospital. The medical team was competent, but the lack of communication about the treatment plan left me feeling uncertain.",Miranda Meza,Cunningham and Sons,Jacob Pierce -842,5973,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Christopher Williamson,Cunningham and Sons,Scott Perez -263,2584,"I had a positive experience at the hospital, thanks to the caring and knowledgeable medical staff. However, the lack of coordination between different departments was a drawback.",Justin Anderson,Cunningham and Sons,Edward Mcpherson -515,350,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only drawback was the limited entertainment options in the patient rooms.",Jeffrey Williams,Cunningham and Sons,Gabriel Mccormick -410,4908,"The hospital staff was friendly and attentive, making my stay comfortable. However, the lack of updated information about my treatment plan was concerning.",Mr. Andrew Keller,Cunningham and Sons,Lori Woodard -841,5077,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Jesus Snyder,Cunningham and Sons,Andrea Morgan -580,3881,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Charles Kim,Cunningham and Sons,Edward Jones -883,1711,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Charles Kim,Cunningham and Sons,Matthew Ford -376,2766,"The hospital staff was friendly, and the room had a beautiful view. Unfortunately, the Wi-Fi was unreliable, making it hard to stay connected.",Michael Miranda,Cunningham and Sons,Benjamin Anderson -429,6321,"I had a mixed experience at the hospital. While the doctors were skilled and professional, the cafeteria food left much to be desired. A bit disappointing overall.",Amanda James,Cunningham and Sons,Donald Harris -698,9737,"The medical team was exceptional, providing thorough and compassionate care. However, the outdated decor and furnishings of the hospital rooms diminished the overall experience.",Scott Barton,Cunningham and Sons,Jenny Watson -701,681,"The hospital's dedication to patient well-being was evident in the diverse range of support services offered. From nutrition counseling to physical therapy, the comprehensive approach to care was commendable.",Robert Haynes,Cunningham and Sons,Jackie Arellano -757,7447,"The medical care was top-notch, and the hospital had a calming ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Karen Clark,Cunningham and Sons,John Oneill -926,4496,"The hospital's nursing staff was exceptional, providing personalized care. Unfortunately, the administrative processes were slow and bureaucratic.",Angelica Houston,Cunningham and Sons,Elizabeth Huff -992,719,"The hospital staff demonstrated professionalism and empathy. Unfortunately, the lack of coordination among the nursing shifts affected the consistency of care.",Joshua Jenkins,Cunningham and Sons,Travis Jordan -105,8871,"I can't thank the hospital staff enough for their exceptional care. The doctors were thorough, and the nurses went above and beyond to ensure I had everything I needed.",Rebecca Wallace,Jordan Inc,Aaron Franklin -337,7892,"The hospital's commitment to patient care was evident in the dedication of the staff. Nevertheless, the outdated decor and furniture in the rooms could use a refresh.",Rebecca Wallace,Jordan Inc,Kenneth Martin -911,4926,"The hospital facilities were modern and well-maintained. The only drawback was the lack of personal attention from the doctors, who seemed rushed during consultations.",Todd Mccormick,Jordan Inc,Gary Cook -44,6763,The hospital's commitment to patient education was evident in the thorough explanations provided by the medical team. I left with a clear understanding of my condition and how to manage it moving forward.,Nicole Keith,Jordan Inc,Andrew Morris -894,6763,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Nicole Keith,Jordan Inc,Andrew Morris -68,906,"I encountered a few issues during my hospital stay. While the medical care was competent, the wait times for tests and procedures were longer than expected, causing some frustration.",Monique Hall,Jordan Inc,Alec Hess -772,6913,"The hospital staff went above and beyond to make me feel comfortable. The atmosphere was warm, and the medical care was exceptional.",Andrew Bates,Jordan Inc,Elizabeth Rivera -836,7723,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about post-discharge care was a drawback.",Kelsey Dillon,Jordan Inc,Kimberly Cohen -987,6617,I encountered some issues with the scheduling of appointments at the hospital. The delays in getting test results were frustrating and prolonged my anxiety.,Lisa Brewer,Jordan Inc,William Barber -95,348,"The hospital staff were accommodating and supportive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Joshua Martinez,Jordan Inc,Nathan Elliott -96,5575,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Alyssa Thomas,Jordan Inc,Jessica Lyons -359,6318,"The hospital staff was attentive, and the medical facilities were well-maintained. Nonetheless, the lack of a proper system for patient feedback left me feeling unheard and undervalued.",Miss Maria King,Jordan Inc,Mikayla Baker -661,905,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Antonio Campbell,Jordan Inc,David Copeland -280,3155,"The hospital's facilities were top-notch, and the medical team was highly skilled. However, the administrative processes were confusing and time-consuming.",Miranda Hunt,Jordan Inc,Bailey Rich -982,2608,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Andrew James,Jordan Inc,Brian Schwartz -195,8830,"The hospital staff was friendly and accommodating. However, the cleanliness of the facilities left much to be desired. It could use some improvement in that aspect.",Paige Morris,Jordan Inc,Paul Mendez -230,6320,"The hospital's commitment to patient safety was evident, and the medical staff was knowledgeable. On the downside, the lack of entertainment options for patients during recovery was a drawback.",Alisha Figueroa,Jordan Inc,Rhonda King -248,5987,"The hospital staff was kind and attentive, making me feel well-cared-for. However, the outdated entertainment options in the patient rooms could be improved.",Christopher Williamson,Jordan Inc,Edward Rodriguez -284,3146,"I had a mixed experience at the hospital. While the medical care was good, the cleanliness of the facilities left something to be desired.",John Novak,Jordan Inc,Jeffrey Bradford -802,1465,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Timothy Riley,Jordan Inc,Mallory Jones -314,873,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",David Perez,Jordan Inc,Shannon Williams -994,8393,I had a positive experience with the hospital's pain management team. They were responsive to my needs and helped me cope during a challenging time.,Edward Miller,Jordan Inc,John Barrett -989,1892,I had a positive experience with the hospital's physical therapy department. The therapists were knowledgeable and dedicated to my recovery.,Lauren Williams,Jordan Inc,Nathan Miranda MD -382,9080,"I appreciate the hospital's efforts to create a warm atmosphere, but the outdated decor and furniture in the rooms could use an upgrade.",Ashley Torres,Jordan Inc,Brandon Norman -436,5561,"The hospital staff was attentive, and the rooms were kept clean. However, the lack of Wi-Fi in the patient rooms was inconvenient in this digital age.",Michael Berger,Jordan Inc,Amy Coleman -447,8365,"The medical team was proficient, and the technology used for diagnostics was impressive. On the downside, the waiting area was overcrowded, leading to extended wait times.",Miguel Davidson,Jordan Inc,Kevin Tate -483,9673,"The hospital provided exceptional care during my stay. The staff went above and beyond to ensure my comfort. However, the Wi-Fi was unreliable, making it challenging to stay connected.",Matthew Ward,Jordan Inc,Brandon Lopez -749,1702,"The medical team was thorough, and the hospital had a calming ambiance. The outdated magazines in the waiting area, however, were a disappointment.",David Carter,Jordan Inc,Michael Herrera -813,1702,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",David Carter,Jordan Inc,Michael Herrera -638,3477,"I had a positive experience at the hospital. The nursing staff was attentive, and the medical care exceeded my expectations.",Jonathan Lucas,Jordan Inc,Jessica Wolf -487,643,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Crystal Wallace,Jordan Inc,John Rios -510,643,"I had a positive experience at the hospital. The nursing staff was caring, and the facilities were modern and well-equipped. However, the cafeteria food left much to be desired.",Crystal Wallace,Jordan Inc,John Rios -794,8572,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Samuel Hill,Jordan Inc,David Kelley -579,4972,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Mary Mahoney,Jordan Inc,Anthony Burton -689,1828,"My stay was marked by a lack of communication between departments. It felt like each department operated independently, leading to delays in my treatment and discharge process.",Bernard Miller,Jordan Inc,Cameron Bailey -879,1828,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Bernard Miller,Jordan Inc,Cameron Bailey -742,9286,"The medical team was efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Miss Valerie George,Jordan Inc,Daniel Johnson -970,2009,"The hospital staff, from doctors to janitors, showed dedication to their work. However, the administrative processes need streamlining for a smoother patient experience.",Sally Jones,Jordan Inc,Gerald Hernandez diff --git a/langchain-rag-app/source_code_step_4/data/visits.csv b/langchain-rag-app/source_code_step_4/data/visits.csv deleted file mode 100644 index b27b0e80bc..0000000000 --- a/langchain-rag-app/source_code_step_4/data/visits.csv +++ /dev/null @@ -1,9999 +0,0 @@ -patient_id,date_of_admission,billing_amount,room_number,admission_type,discharge_date,test_results,visit_id,physician_id,payer_id,hospital_id,chief_complaint,treatment_description,primary_diagnosis,visit_status -0,2022-11-17,37490.98336352819,146,Elective,2022-12-01,Inconclusive,0,102,1,0,,,,DISCHARGED -1,2023-06-01,47304.06484547511,404,Emergency,,Normal,1,435,4,5,,,,OPEN -2,2019-01-09,36874.89699661277,292,Emergency,2019-02-08,Normal,2,348,2,6,,,,DISCHARGED -3,2020-05-02,23303.322092196904,480,Urgent,2020-05-03,Abnormal,3,270,4,15,,,,DISCHARGED -4,2021-07-09,18086.34418356388,477,Urgent,2021-08-02,Normal,4,106,2,29,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5,2020-08-20,22522.363384853263,180,Urgent,2020-08-23,Abnormal,5,71,1,26,,,,DISCHARGED -6,2021-03-22,39593.4357611308,161,Urgent,2021-04-15,Abnormal,6,188,2,14,,,,DISCHARGED -7,2019-05-16,13546.817249364824,384,Elective,2019-06-02,Normal,7,20,1,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -8,2020-12-17,24903.03726973869,215,Elective,2020-12-22,Abnormal,8,102,1,29,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -9,2022-12-15,22788.23602637677,310,Urgent,2022-12-16,Normal,9,121,3,1,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -10,2021-04-13,40325.071393983046,306,Emergency,2021-05-11,Abnormal,10,466,1,25,,,,DISCHARGED -11,2019-06-09,6185.903529552847,126,Emergency,2019-06-26,Inconclusive,11,214,2,24,,,,DISCHARGED -12,2021-11-29,4835.945649525413,444,Elective,2021-12-14,Inconclusive,12,330,3,22,,,,DISCHARGED -12,2022-07-07,2252.6827208169525,338,Elective,2022-08-02,Abnormal,7992,458,3,15,,,,DISCHARGED -12,2021-11-28,27633.45013875761,212,Emergency,2021-12-23,Abnormal,8815,87,1,16,,,,DISCHARGED -13,2021-07-29,13669.377744164887,492,Elective,2021-08-14,Normal,13,372,4,23,,,,DISCHARGED -14,2021-06-05,10342.836123527371,120,Emergency,2021-06-25,Inconclusive,14,99,4,14,,,,DISCHARGED -15,2021-08-07,27174.942906232496,492,Emergency,2021-08-14,Inconclusive,15,359,3,2,,,,DISCHARGED -16,2019-11-15,17394.994264453202,315,Elective,2019-12-04,Inconclusive,16,151,1,3,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -17,2022-03-08,45213.53762641964,475,Elective,2022-03-16,Inconclusive,17,130,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -18,2022-06-19,4262.91157816964,125,Elective,2022-06-29,Inconclusive,18,149,1,4,,,,DISCHARGED -19,2019-07-10,16609.311817449878,366,Emergency,2019-08-07,Inconclusive,19,308,1,16,,,,DISCHARGED -20,2023-02-25,32263.62215656245,238,Emergency,2023-03-27,Normal,20,257,3,5,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -20,2019-06-21,39952.38485585516,145,Elective,2019-07-13,Inconclusive,1280,343,3,9,,,,DISCHARGED -21,2022-12-12,42610.70456262938,364,Urgent,2022-12-26,Abnormal,21,491,0,21,,,,DISCHARGED -22,2022-10-09,16701.34713196211,130,Emergency,2022-11-01,Abnormal,22,413,4,17,,,,DISCHARGED -23,2019-01-10,22331.28015619921,120,Urgent,2019-01-31,Abnormal,23,293,4,26,,,,DISCHARGED -23,2022-11-03,20142.76467342658,440,Elective,2022-12-02,Abnormal,5767,385,4,9,,,,DISCHARGED -23,2019-02-28,38012.81444261646,315,Elective,2019-03-28,Abnormal,7305,191,2,5,,,,DISCHARGED -24,2022-08-05,41319.500315655176,293,Urgent,2022-09-03,Normal,24,443,1,23,,,,DISCHARGED -25,2021-05-27,37766.52123735682,292,Urgent,2021-06-23,Abnormal,25,276,3,5,,,,DISCHARGED -26,2021-07-12,35834.356603177686,379,Elective,2021-07-29,Abnormal,26,160,4,19,,,,DISCHARGED -27,2021-05-25,12680.730521058496,298,Emergency,2021-06-08,Abnormal,27,459,0,14,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -28,2019-05-14,12935.41324986354,392,Elective,2019-06-11,Abnormal,28,313,4,3,,,,DISCHARGED -29,2022-12-02,18393.421751093483,162,Emergency,2022-12-18,Inconclusive,29,21,1,24,,,,DISCHARGED -30,2021-11-09,22356.082268250702,456,Emergency,2021-11-28,Abnormal,30,252,1,15,,,,DISCHARGED -31,2023-07-09,21001.27487283218,197,Emergency,,Normal,31,235,3,21,,,,OPEN -32,2021-02-06,9007.96786622078,247,Urgent,2021-03-03,Abnormal,32,344,2,23,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -32,2022-10-01,5706.438141736805,492,Emergency,2022-10-28,Abnormal,449,48,3,7,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -33,2021-01-29,39031.362644016815,228,Elective,2021-02-23,Abnormal,33,474,4,6,,,,DISCHARGED -34,2019-12-01,24609.37462680727,137,Emergency,2019-12-18,Abnormal,34,58,0,18,,,,DISCHARGED -35,2019-11-12,5098.663127547211,192,Emergency,2019-11-24,Abnormal,35,169,3,25,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -35,2021-07-08,31178.81992005491,143,Elective,2021-07-28,Normal,3727,475,2,16,,,,DISCHARGED -36,2022-09-06,1000.1808370217516,258,Emergency,2022-09-18,Abnormal,36,187,3,20,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -37,2021-03-19,24913.55265165257,219,Elective,2021-03-20,Normal,37,463,1,12,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -38,2021-02-24,24274.14160062449,364,Elective,2021-03-21,Normal,38,270,4,14,,,,DISCHARGED -39,2021-06-30,16171.94855563634,414,Emergency,2021-07-14,Inconclusive,39,189,4,25,,,,DISCHARGED -40,2019-03-25,39329.11430902151,110,Urgent,2019-04-08,Inconclusive,40,445,4,25,,,,DISCHARGED -41,2021-08-15,22519.33617812455,465,Emergency,2021-09-06,Inconclusive,41,174,4,1,,,,DISCHARGED -42,2023-03-03,1996.3107212810503,469,Urgent,2023-03-05,Inconclusive,42,445,4,27,,,,DISCHARGED -43,2021-08-07,5470.20968689125,182,Emergency,2021-08-09,Inconclusive,43,50,4,9,,,,DISCHARGED -44,2019-06-06,16036.109990023424,119,Emergency,2019-06-30,Normal,44,363,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -45,2019-10-13,10803.730343659594,388,Emergency,2019-10-29,Inconclusive,45,54,2,17,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -45,2021-10-05,9881.807963117068,433,Emergency,2021-10-30,Abnormal,6773,243,4,29,,,,DISCHARGED -46,2022-10-20,38872.64522272379,412,Elective,2022-11-04,Abnormal,46,319,2,22,,,,DISCHARGED -46,2023-03-30,7264.670968184325,212,Emergency,2023-04-22,Inconclusive,7173,130,4,10,,,,DISCHARGED -47,2019-06-26,34132.623000118074,182,Emergency,2019-07-24,Normal,47,484,3,12,,,,DISCHARGED -48,2020-04-03,25948.507189184053,359,Emergency,2020-04-06,Normal,48,306,4,18,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -49,2021-02-18,46461.82252356185,186,Urgent,2021-03-06,Abnormal,49,134,1,28,,,,DISCHARGED -50,2019-06-14,10705.098399640798,437,Emergency,2019-07-13,Inconclusive,50,20,0,23,,,,DISCHARGED -51,2022-11-26,49576.87403288612,132,Elective,2022-12-08,Abnormal,51,328,3,24,,,,DISCHARGED -52,2023-08-25,8005.828337056341,271,Urgent,2023-09-12,Inconclusive,52,166,3,29,,,,DISCHARGED -53,2022-03-29,41295.399748056494,361,Emergency,2022-04-02,Normal,53,273,1,28,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -54,2021-07-04,20080.29764490514,303,Emergency,2021-07-29,Normal,54,387,4,23,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -55,2019-11-04,1888.0021112903448,317,Emergency,2019-11-19,Inconclusive,55,88,0,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -56,2021-12-28,44935.26969698472,439,Emergency,2022-01-09,Abnormal,56,315,3,4,,,,DISCHARGED -57,2022-10-27,10724.033246931533,153,Urgent,2022-11-18,Normal,57,13,0,2,,,,DISCHARGED -58,2023-04-06,14691.25004225776,438,Elective,2023-04-22,Inconclusive,58,241,3,18,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -58,2022-04-26,4927.534646772167,421,Elective,2022-05-18,Abnormal,1239,264,4,22,,,,DISCHARGED -58,2019-08-19,49228.707833991495,271,Emergency,2019-08-26,Inconclusive,1845,345,3,12,,,,DISCHARGED -58,2019-09-03,39154.24733174383,271,Urgent,2019-09-23,Abnormal,4802,52,3,4,,,,DISCHARGED -59,2020-01-19,47508.00017915965,120,Urgent,2020-01-24,Inconclusive,59,385,2,11,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -59,2020-09-29,15488.364529936747,195,Emergency,2020-10-02,Abnormal,9480,339,4,13,,,,DISCHARGED -60,2020-02-29,2628.94781998456,380,Emergency,2020-03-12,Normal,60,91,1,5,,,,DISCHARGED -61,2021-04-29,13794.720442081489,194,Urgent,2021-05-06,Inconclusive,61,366,1,29,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -61,2021-09-21,26987.12137071019,375,Elective,2021-09-26,Normal,3425,443,4,21,,,,DISCHARGED -62,2021-02-07,9991.074445541251,199,Emergency,2021-03-06,Normal,62,454,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -63,2023-10-28,18904.738199568317,404,Urgent,,Inconclusive,63,427,4,16,,,,OPEN -64,2020-08-08,44423.095535829976,301,Elective,2020-08-29,Normal,64,263,1,7,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -64,2020-03-30,48195.51281350375,220,Elective,2020-04-08,Abnormal,3882,430,2,25,,,,DISCHARGED -65,2023-07-09,22749.28413876537,223,Elective,2023-07-30,Inconclusive,65,34,1,12,,,,DISCHARGED -66,2021-06-13,21965.07965627856,410,Emergency,2021-06-23,Abnormal,66,205,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -67,2022-11-23,8311.397389222286,205,Urgent,2022-11-29,Abnormal,67,80,4,4,,,,DISCHARGED -68,2020-12-31,43547.77222226695,134,Urgent,2021-01-06,Abnormal,68,419,0,28,,,,DISCHARGED -69,2020-02-20,24509.041814010277,407,Urgent,2020-02-27,Inconclusive,69,49,0,21,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -69,2019-06-14,36026.53829069928,148,Emergency,2019-06-18,Inconclusive,5545,359,4,21,,,,DISCHARGED -70,2020-12-30,1997.332761270466,188,Urgent,2021-01-18,Normal,70,387,2,16,,,,DISCHARGED -71,2020-03-28,6575.139467900149,213,Emergency,2020-04-03,Abnormal,71,1,1,2,,,,DISCHARGED -72,2020-05-07,37421.29665993603,405,Emergency,2020-06-04,Abnormal,72,389,2,27,,,,DISCHARGED -73,2022-04-24,4679.119038677208,358,Elective,2022-05-22,Normal,73,53,0,5,,,,DISCHARGED -74,2021-07-30,22787.2792441943,147,Urgent,2021-08-27,Abnormal,74,105,4,13,,,,DISCHARGED -75,2023-08-12,33925.02014329144,115,Elective,2023-08-29,Normal,75,259,4,14,,,,DISCHARGED -76,2021-07-07,42685.19000354352,436,Emergency,2021-07-16,Abnormal,76,309,2,13,,,,DISCHARGED -77,2020-08-24,9029.126290619311,263,Emergency,2020-09-05,Normal,77,476,2,10,,,,DISCHARGED -78,2019-07-27,6777.229313799993,493,Emergency,2019-08-08,Inconclusive,78,190,1,10,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -78,2021-10-05,18232.7682106744,422,Urgent,2021-10-20,Abnormal,2603,401,3,8,,,,DISCHARGED -79,2023-08-19,28792.631974631822,460,Emergency,2023-09-07,Inconclusive,79,217,3,5,,,,DISCHARGED -80,2021-01-15,22081.278260597264,356,Emergency,2021-01-26,Abnormal,80,43,1,14,,,,DISCHARGED -81,2023-08-16,26440.396725683902,142,Elective,2023-09-15,Abnormal,81,161,3,11,,,,DISCHARGED -82,2019-10-22,46144.93971840711,392,Emergency,2019-11-10,Normal,82,201,0,28,,,,DISCHARGED -83,2018-12-28,5319.542762776323,139,Elective,2019-01-27,Abnormal,83,445,3,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -84,2019-01-12,44047.14424188422,482,Elective,2019-02-11,Normal,84,483,1,0,,,,DISCHARGED -84,2022-06-04,17592.873248294633,330,Elective,2022-07-02,Normal,7745,269,3,24,,,,DISCHARGED -85,2019-06-30,47452.441876165394,141,Urgent,2019-07-20,Abnormal,85,350,4,15,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -86,2020-12-12,34056.929869869935,397,Emergency,2020-12-29,Normal,86,303,2,19,,,,DISCHARGED -87,2019-10-21,17241.1163626356,347,Urgent,2019-10-22,Abnormal,87,270,0,14,,,,DISCHARGED -88,2021-02-10,18898.603555373968,245,Elective,2021-02-21,Inconclusive,88,455,4,1,,,,DISCHARGED -89,2020-08-15,35869.40641203239,143,Elective,2020-08-29,Normal,89,461,4,16,,,,DISCHARGED -90,2022-03-17,23559.596143840925,405,Emergency,2022-04-09,Inconclusive,90,214,1,2,,,,DISCHARGED -91,2021-10-23,23777.795524651938,142,Elective,2021-11-21,Abnormal,91,251,2,2,,,,DISCHARGED -92,2021-09-22,16931.636008434823,108,Emergency,2021-10-22,Normal,92,189,2,4,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -93,2021-03-28,13073.28802256408,268,Emergency,2021-04-06,Normal,93,295,0,16,,,,DISCHARGED -94,2018-11-18,5092.74967506549,182,Urgent,2018-12-08,Inconclusive,94,212,1,22,,,,DISCHARGED -95,2020-02-26,22577.60260775006,119,Elective,2020-03-18,Abnormal,95,207,0,28,,,,DISCHARGED -96,2020-12-10,11057.975641406209,176,Emergency,2021-01-09,Abnormal,96,236,3,16,,,,DISCHARGED -97,2022-10-15,1923.9067941825535,462,Elective,2022-10-19,Abnormal,97,337,4,19,,,,DISCHARGED -98,2023-07-03,33776.79958830402,484,Urgent,2023-07-19,Inconclusive,98,366,0,5,,,,DISCHARGED -99,2023-04-23,38450.62746287311,329,Urgent,2023-05-01,Normal,99,52,4,0,,,,DISCHARGED -100,2020-10-05,48379.06255904229,335,Urgent,2020-11-03,Inconclusive,100,279,1,6,,,,DISCHARGED -101,2021-09-12,40340.5304226113,201,Emergency,2021-09-27,Inconclusive,101,409,3,25,,,,DISCHARGED -102,2022-10-31,18161.75197765212,309,Emergency,2022-11-29,Inconclusive,102,216,1,14,,,,DISCHARGED -103,2020-12-28,23517.461851862125,389,Urgent,2021-01-14,Normal,103,251,3,6,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -104,2019-08-25,24116.59972560668,217,Urgent,2019-09-23,Inconclusive,104,187,3,18,,,,DISCHARGED -105,2020-02-16,8895.137287821723,137,Elective,2020-02-27,Abnormal,105,379,4,19,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -106,2022-06-14,48995.04883877174,299,Emergency,2022-07-13,Inconclusive,106,492,1,21,,,,DISCHARGED -107,2021-08-16,17835.950541843562,275,Urgent,2021-09-01,Normal,107,40,1,29,,,,DISCHARGED -108,2023-03-02,36379.94714743435,181,Emergency,2023-03-27,Abnormal,108,156,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -109,2021-01-22,23684.915547098724,401,Emergency,2021-02-19,Abnormal,109,14,1,22,,,,DISCHARGED -110,2023-05-25,20312.769821444414,263,Elective,2023-06-15,Inconclusive,110,300,0,13,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -111,2020-11-11,47999.806126673175,214,Elective,2020-11-14,Normal,111,64,2,12,,,,DISCHARGED -112,2019-12-05,41814.42446823161,267,Emergency,2019-12-13,Inconclusive,112,344,2,19,,,,DISCHARGED -113,2021-05-31,25436.99471967156,211,Urgent,2021-06-01,Inconclusive,113,326,2,25,,,,DISCHARGED -113,2023-05-19,40484.25712271965,462,Elective,2023-05-20,Normal,4400,8,1,26,,,,DISCHARGED -114,2020-03-08,22139.971997018227,247,Elective,2020-04-06,Normal,114,343,1,24,,,,DISCHARGED -115,2019-06-21,39666.240550571936,482,Elective,2019-07-20,Inconclusive,115,128,0,8,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -116,2022-03-27,26051.414457974857,184,Emergency,2022-04-07,Inconclusive,116,491,3,8,,,,DISCHARGED -117,2019-09-13,19279.260214819587,140,Emergency,2019-09-16,Abnormal,117,135,0,15,,,,DISCHARGED -118,2022-03-23,32007.35285877332,416,Elective,2022-04-04,Inconclusive,118,471,2,11,,,,DISCHARGED -119,2020-06-19,36823.92825999236,179,Elective,2020-07-04,Normal,119,62,0,9,,,,DISCHARGED -120,2021-07-09,36946.000267329895,115,Urgent,2021-07-10,Normal,120,138,3,5,,,,DISCHARGED -121,2020-01-14,3345.703488808345,292,Elective,2020-02-05,Inconclusive,121,498,1,17,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -122,2022-11-01,21591.836167692487,289,Elective,2022-11-24,Abnormal,122,80,0,1,,,,DISCHARGED -123,2021-08-24,13080.66532485659,293,Elective,2021-09-06,Abnormal,123,391,2,26,,,,DISCHARGED -124,2023-04-28,31008.47930812416,350,Urgent,2023-05-04,Abnormal,124,162,2,19,,,,DISCHARGED -125,2021-11-14,31546.52020237202,104,Urgent,2021-11-26,Abnormal,125,418,1,8,,,,DISCHARGED -126,2020-07-16,9824.265046284614,238,Emergency,2020-08-05,Abnormal,126,288,0,18,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -127,2022-04-28,44419.985424088765,220,Elective,2022-05-20,Normal,127,378,3,5,,,,DISCHARGED -128,2023-08-03,13759.843812407513,464,Urgent,,Inconclusive,128,260,1,1,,,,OPEN -129,2022-04-30,22862.208504756825,215,Urgent,2022-05-11,Normal,129,489,0,14,,,,DISCHARGED -130,2020-10-20,40372.11674045899,419,Urgent,2020-10-23,Normal,130,230,4,16,,,,DISCHARGED -131,2020-08-07,37867.019332053904,445,Emergency,2020-08-28,Normal,131,40,2,15,,,,DISCHARGED -132,2022-12-01,42968.27269849119,401,Emergency,2022-12-04,Normal,132,27,3,27,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -133,2019-03-04,23907.335315170323,247,Elective,2019-03-24,Inconclusive,133,134,3,20,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -133,2019-11-27,15299.234835051224,481,Emergency,2019-12-08,Abnormal,5468,200,3,7,,,,DISCHARGED -134,2020-05-31,17415.97576710672,398,Emergency,2020-06-18,Normal,134,327,2,9,,,,DISCHARGED -134,2023-02-04,10042.06121892342,198,Emergency,,Normal,8968,267,0,9,,,,OPEN -135,2020-07-29,49219.20954307443,146,Elective,2020-08-20,Inconclusive,135,417,1,17,,,,DISCHARGED -136,2023-04-18,6171.457067712023,153,Emergency,,Abnormal,136,32,0,9,,,,OPEN -137,2020-08-20,31644.800997890783,336,Emergency,2020-08-22,Normal,137,47,1,8,,,,DISCHARGED -138,2023-07-09,44535.25303619564,413,Emergency,2023-07-17,Normal,138,406,3,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -139,2023-08-19,10591.269644030772,115,Emergency,2023-08-27,Inconclusive,139,61,0,23,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -140,2021-05-09,43535.60904445826,145,Emergency,2021-05-24,Normal,140,215,3,18,,,,DISCHARGED -141,2019-04-21,41058.23387378459,148,Urgent,2019-05-09,Abnormal,141,292,4,0,,,,DISCHARGED -142,2021-06-23,7154.956699857513,432,Emergency,2021-07-03,Inconclusive,142,98,3,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -143,2022-04-30,46131.07031578395,430,Emergency,2022-05-18,Normal,143,171,3,23,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -144,2021-04-01,16487.676785652297,406,Elective,2021-05-01,Abnormal,144,359,1,2,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -145,2023-04-27,31583.5527912602,214,Emergency,,Abnormal,145,213,4,9,,,,OPEN -146,2021-08-20,29289.6526009692,295,Elective,2021-08-28,Abnormal,146,474,3,11,,,,DISCHARGED -147,2019-12-04,27022.82692689431,175,Urgent,2019-12-19,Normal,147,34,3,17,,,,DISCHARGED -148,2020-08-20,13962.427775097512,409,Urgent,2020-09-14,Inconclusive,148,448,4,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -149,2021-12-16,18991.073222521736,424,Emergency,2021-12-26,Normal,149,226,4,19,,,,DISCHARGED -150,2019-06-25,8851.608731170869,168,Elective,2019-06-29,Inconclusive,150,100,0,5,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -151,2020-04-02,31670.263275760328,136,Emergency,2020-04-22,Inconclusive,151,430,1,20,,,,DISCHARGED -152,2020-03-17,25129.17595189029,459,Emergency,2020-04-06,Inconclusive,152,461,4,1,,,,DISCHARGED -153,2022-07-31,6787.533990371548,110,Urgent,2022-08-20,Inconclusive,153,130,4,9,,,,DISCHARGED -154,2022-04-09,5974.970205241097,238,Emergency,2022-04-13,Inconclusive,154,256,2,1,,,,DISCHARGED -155,2022-03-31,18200.75799706072,261,Elective,2022-04-06,Abnormal,155,4,4,29,,,,DISCHARGED -156,2019-11-27,10753.757615365406,145,Urgent,2019-12-14,Normal,156,217,1,8,,,,DISCHARGED -157,2022-03-02,28004.34153668766,261,Elective,2022-03-25,Abnormal,157,254,3,26,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -158,2022-07-13,41890.24643937346,257,Emergency,2022-07-26,Inconclusive,158,397,3,9,,,,DISCHARGED -159,2020-04-28,23961.069814057933,170,Elective,2020-05-24,Inconclusive,159,358,3,1,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -160,2021-10-21,42051.09409357057,219,Emergency,2021-11-09,Abnormal,160,282,3,7,,,,DISCHARGED -161,2023-04-02,32613.241610463538,186,Elective,2023-04-25,Abnormal,161,392,2,23,,,,DISCHARGED -162,2023-05-19,36745.210455298446,451,Elective,,Abnormal,162,206,4,16,,,,OPEN -163,2020-02-02,21341.238842723888,372,Emergency,2020-02-18,Normal,163,14,3,16,,,,DISCHARGED -164,2022-02-18,26060.673368682383,202,Emergency,2022-02-23,Abnormal,164,345,0,28,,,,DISCHARGED -164,2023-03-13,37318.52253084823,372,Urgent,,Normal,186,41,3,3,,,,OPEN -164,2020-02-02,38972.20553391844,312,Emergency,2020-02-11,Normal,6871,379,4,17,,,,DISCHARGED -165,2020-04-29,23968.31691825013,245,Elective,2020-05-18,Normal,165,460,3,11,,,,DISCHARGED -166,2022-02-01,25926.948542070604,394,Elective,2022-02-15,Normal,166,178,2,16,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -167,2023-10-08,13981.11261300321,372,Elective,2023-10-27,Abnormal,167,62,1,8,,,,DISCHARGED -168,2023-05-24,21470.41773819721,264,Elective,2023-05-27,Inconclusive,168,351,1,28,,,,DISCHARGED -169,2018-12-23,45391.284642001214,398,Urgent,2019-01-13,Normal,169,230,4,18,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -170,2020-03-04,20926.29797947113,279,Emergency,2020-04-01,Abnormal,170,240,1,13,,,,DISCHARGED -171,2019-08-24,14029.206950528902,260,Emergency,2019-09-05,Abnormal,171,51,1,13,,,,DISCHARGED -172,2020-12-04,47034.49402476752,499,Emergency,2020-12-12,Normal,172,95,0,29,,,,DISCHARGED -173,2019-05-18,48782.85631566246,452,Emergency,2019-05-31,Normal,173,387,4,16,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -174,2022-09-23,40262.31151423387,365,Urgent,2022-10-19,Inconclusive,174,221,4,1,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -174,2019-09-27,12540.246991303611,386,Emergency,2019-10-14,Inconclusive,1365,484,1,7,,,,DISCHARGED -174,2021-01-28,10914.944587775164,260,Urgent,2021-02-13,Inconclusive,6775,406,1,4,,,,DISCHARGED -175,2022-12-18,17902.64639380951,267,Urgent,2023-01-05,Inconclusive,175,230,1,26,,,,DISCHARGED -176,2020-05-13,15773.901182914306,340,Emergency,2020-06-03,Inconclusive,176,236,2,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -177,2020-11-03,31155.40427129732,360,Emergency,2020-11-07,Inconclusive,177,142,3,21,,,,DISCHARGED -178,2020-03-25,7140.773832777042,290,Urgent,2020-04-10,Normal,178,170,2,28,,,,DISCHARGED -179,2023-05-02,21901.826644158733,103,Urgent,2023-05-27,Inconclusive,179,28,4,15,,,,DISCHARGED -180,2022-12-07,36744.03787993472,187,Urgent,2022-12-22,Abnormal,180,35,0,15,,,,DISCHARGED -180,2019-07-14,8754.548885920169,452,Urgent,2019-08-11,Inconclusive,5771,12,3,16,,,,DISCHARGED -181,2020-05-26,37006.72482949869,378,Elective,2020-06-05,Inconclusive,181,159,0,21,,,,DISCHARGED -182,2022-06-27,42431.39127028394,334,Elective,2022-07-02,Normal,182,326,4,26,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -182,2019-11-12,4825.244065937908,340,Elective,2019-11-29,Normal,7627,186,4,6,,,,DISCHARGED -183,2020-07-10,14578.913011822762,470,Urgent,2020-08-04,Normal,183,242,0,19,,,,DISCHARGED -183,2019-08-30,14027.139384365915,486,Urgent,2019-09-15,Abnormal,8295,85,0,7,,,,DISCHARGED -184,2021-12-12,30845.782022184423,252,Elective,2021-12-18,Inconclusive,184,283,0,7,,,,DISCHARGED -185,2023-06-01,14876.215477845824,162,Emergency,,Abnormal,185,65,4,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -187,2019-07-15,5727.338103033213,450,Elective,2019-07-31,Abnormal,187,169,1,10,,,,DISCHARGED -188,2022-11-17,38068.85215268489,106,Emergency,2022-11-26,Abnormal,188,44,0,14,,,,DISCHARGED -189,2019-01-23,21198.65472662128,259,Urgent,2019-02-02,Abnormal,189,61,3,17,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -190,2022-03-25,35415.68222692115,344,Urgent,2022-04-04,Normal,190,440,4,5,,,,DISCHARGED -191,2022-10-25,3673.0429478707465,489,Urgent,2022-10-28,Normal,191,133,2,21,,,,DISCHARGED -192,2018-11-21,1608.691792689302,153,Urgent,2018-11-29,Abnormal,192,283,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -193,2022-09-30,24357.6078664628,276,Urgent,2022-10-05,Abnormal,193,27,3,14,,,,DISCHARGED -194,2022-02-24,28710.513951078006,134,Elective,2022-02-26,Abnormal,194,107,1,27,,,,DISCHARGED -195,2019-12-30,7942.853285893594,155,Emergency,2020-01-26,Abnormal,195,43,0,22,,,,DISCHARGED -196,2018-11-09,3623.40823141465,361,Urgent,2018-11-19,Abnormal,196,339,4,5,,,,DISCHARGED -197,2021-06-02,5516.704185371408,155,Urgent,2021-06-14,Abnormal,197,285,0,17,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -198,2021-11-12,1452.0538192226131,120,Emergency,2021-11-28,Abnormal,198,445,4,23,,,,DISCHARGED -199,2019-10-30,19630.673492911475,455,Urgent,2019-11-13,Inconclusive,199,330,2,19,,,,DISCHARGED -200,2023-09-18,7061.842439551254,425,Urgent,,Abnormal,200,127,0,8,,,,OPEN -201,2019-07-21,48659.59883179092,108,Urgent,2019-08-10,Normal,201,347,3,7,,,,DISCHARGED -202,2021-02-13,4357.928046957646,361,Emergency,2021-03-02,Abnormal,202,472,1,13,,,,DISCHARGED -203,2020-02-12,17166.802113751983,181,Elective,2020-03-06,Abnormal,203,230,3,18,,,,DISCHARGED -203,2020-11-16,48634.28489530816,352,Elective,2020-12-06,Normal,2326,189,1,18,,,,DISCHARGED -203,2021-03-06,31829.563417226123,192,Emergency,2021-03-25,Normal,3189,224,0,7,,,,DISCHARGED -203,2019-06-14,41920.04967706079,152,Elective,2019-07-08,Normal,6757,384,0,1,,,,DISCHARGED -204,2023-07-11,34595.32839489074,205,Elective,,Abnormal,204,376,1,24,,,,OPEN -205,2023-01-17,4871.013184133684,400,Elective,,Abnormal,205,282,2,3,,,,OPEN -206,2022-08-12,24714.11476217247,127,Emergency,2022-08-28,Inconclusive,206,445,4,5,,,,DISCHARGED -207,2021-03-28,25146.966653393283,148,Emergency,2021-04-04,Normal,207,120,3,2,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -208,2019-05-14,1523.106019881822,333,Elective,2019-05-15,Normal,208,115,3,2,,,,DISCHARGED -209,2021-03-29,42208.79874931622,162,Elective,2021-04-25,Inconclusive,209,460,3,18,,,,DISCHARGED -210,2019-05-12,17656.0383962488,119,Urgent,2019-05-25,Normal,210,232,0,10,,,,DISCHARGED -211,2021-05-24,19286.481815291507,456,Elective,2021-06-21,Normal,211,258,3,28,,,,DISCHARGED -212,2022-08-28,12580.88842813392,443,Elective,2022-09-20,Normal,212,358,4,9,,,,DISCHARGED -213,2022-07-26,24153.70930246234,129,Urgent,2022-08-21,Normal,213,197,4,11,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -214,2020-06-28,33771.61714774528,292,Elective,2020-07-23,Normal,214,455,1,13,,,,DISCHARGED -215,2021-05-06,35774.256988922985,164,Emergency,2021-05-30,Inconclusive,215,410,0,29,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -216,2018-11-10,26660.61244403476,486,Elective,2018-11-14,Abnormal,216,136,4,29,,,,DISCHARGED -217,2021-10-29,12586.402694767605,440,Elective,2021-11-12,Inconclusive,217,317,2,27,,,,DISCHARGED -218,2021-02-23,36936.78774160133,275,Elective,2021-03-06,Abnormal,218,164,0,17,,,,DISCHARGED -219,2020-01-06,3973.849432100773,265,Urgent,2020-01-10,Abnormal,219,224,0,23,,,,DISCHARGED -220,2022-08-11,7377.715552608968,459,Elective,2022-08-23,Normal,220,306,4,8,,,,DISCHARGED -221,2019-11-15,41708.40918418684,193,Urgent,2019-12-12,Normal,221,233,2,14,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -222,2021-11-27,39323.85130398303,309,Emergency,2021-12-11,Inconclusive,222,171,1,23,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -223,2019-03-19,45969.61025007398,222,Emergency,2019-04-18,Normal,223,151,4,25,,,,DISCHARGED -224,2020-10-17,37374.02613608901,488,Emergency,2020-11-14,Abnormal,224,462,2,2,,,,DISCHARGED -225,2023-05-17,39086.98787283012,472,Emergency,,Normal,225,314,0,22,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -226,2020-10-05,40530.70254051108,391,Urgent,2020-10-16,Normal,226,373,2,10,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -227,2021-11-07,11571.570777611638,295,Elective,2021-11-22,Inconclusive,227,159,0,9,,,,DISCHARGED -228,2018-11-05,44256.64930794812,186,Urgent,2018-11-18,Normal,228,95,4,17,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -229,2019-12-06,11113.373663116638,162,Urgent,2019-12-17,Abnormal,229,471,4,3,,,,DISCHARGED -230,2021-03-20,19660.006933679557,179,Elective,2021-04-03,Inconclusive,230,232,3,27,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -231,2020-01-03,45434.40973278368,230,Urgent,2020-01-30,Abnormal,231,179,3,12,,,,DISCHARGED -232,2019-02-28,49035.20692704052,460,Urgent,2019-03-26,Inconclusive,232,112,3,29,,,,DISCHARGED -233,2023-06-25,43321.06324132443,322,Elective,2023-06-28,Normal,233,317,4,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -234,2022-01-03,44033.88631580622,272,Emergency,2022-01-12,Abnormal,234,496,1,5,,,,DISCHARGED -235,2021-08-20,36912.186705469736,452,Emergency,2021-09-01,Normal,235,441,4,26,,,,DISCHARGED -236,2021-02-03,23391.79405275708,301,Urgent,2021-03-05,Inconclusive,236,51,2,20,,,,DISCHARGED -237,2022-04-09,12547.100881090744,154,Elective,2022-05-05,Normal,237,267,4,12,,,,DISCHARGED -238,2020-02-02,28792.05062080646,416,Emergency,2020-02-15,Abnormal,238,294,4,24,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -239,2022-07-30,48047.65258952828,414,Urgent,2022-08-13,Inconclusive,239,385,0,25,,,,DISCHARGED -240,2021-04-11,18782.95572717789,236,Elective,2021-04-21,Abnormal,240,386,0,19,,,,DISCHARGED -241,2023-07-06,3866.337052231231,375,Emergency,,Abnormal,241,112,0,4,,,,OPEN -242,2021-05-08,23016.760104322355,141,Urgent,2021-05-26,Normal,242,100,4,19,,,,DISCHARGED -243,2022-06-17,10159.670834409591,221,Urgent,2022-07-04,Inconclusive,243,112,1,13,,,,DISCHARGED -244,2021-12-29,2212.477918683048,244,Emergency,2022-01-18,Normal,244,439,2,12,,,,DISCHARGED -245,2020-08-14,34789.57595578117,201,Emergency,2020-08-30,Inconclusive,245,80,2,13,,,,DISCHARGED -246,2022-07-20,49488.20077925565,287,Urgent,2022-07-27,Normal,246,186,1,7,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -247,2021-01-11,30304.65384984076,129,Urgent,2021-01-29,Inconclusive,247,112,1,15,,,,DISCHARGED -248,2023-10-28,24559.75928726179,179,Emergency,2023-11-02,Abnormal,248,1,2,12,,,,DISCHARGED -249,2020-12-04,13318.195486021532,181,Elective,2020-12-30,Abnormal,249,129,3,23,,,,DISCHARGED -250,2023-03-16,30570.902071926805,243,Elective,2023-04-14,Normal,250,219,0,14,,,,DISCHARGED -251,2020-03-24,12831.046557387592,370,Elective,2020-03-28,Inconclusive,251,53,0,18,,,,DISCHARGED -252,2021-10-22,2684.4017211574974,147,Elective,2021-11-04,Inconclusive,252,342,2,0,,,,DISCHARGED -253,2021-04-17,43535.02257204043,237,Elective,2021-05-16,Inconclusive,253,484,1,21,,,,DISCHARGED -254,2020-07-20,41414.986529871,292,Urgent,2020-08-09,Abnormal,254,223,3,1,,,,DISCHARGED -254,2020-10-01,27011.078263229403,357,Urgent,2020-10-17,Inconclusive,1492,224,2,17,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -255,2022-04-28,16085.737509110111,465,Elective,2022-05-25,Normal,255,384,0,18,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -256,2021-03-24,15847.440245823502,264,Urgent,2021-04-12,Inconclusive,256,402,4,7,,,,DISCHARGED -256,2020-10-27,24033.86381194272,215,Urgent,2020-10-31,Normal,9268,125,1,2,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -257,2021-04-14,33811.6857725144,234,Elective,2021-04-28,Abnormal,257,129,4,22,,,,DISCHARGED -258,2022-11-22,31911.129134091283,458,Urgent,2022-12-09,Normal,258,52,2,25,,,,DISCHARGED -259,2021-09-30,15801.842288402857,226,Urgent,2021-10-28,Abnormal,259,171,0,13,,,,DISCHARGED -260,2020-12-09,22815.891209293797,478,Urgent,2020-12-17,Abnormal,260,217,3,25,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -261,2023-03-29,26525.99380537169,204,Urgent,2023-04-22,Abnormal,261,159,4,8,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -262,2019-03-08,22985.616664913257,366,Urgent,2019-03-25,Inconclusive,262,197,3,28,,,,DISCHARGED -263,2023-08-24,39573.52145151389,196,Emergency,2023-09-21,Inconclusive,263,415,0,7,,,,DISCHARGED -264,2021-12-23,37246.81915431043,294,Elective,2022-01-07,Normal,264,246,4,16,,,,DISCHARGED -264,2022-09-04,18258.38213425475,476,Elective,2022-09-11,Inconclusive,7455,323,3,22,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -265,2022-12-08,49359.79206170607,462,Emergency,2022-12-16,Abnormal,265,438,3,22,,,,DISCHARGED -266,2022-07-10,42621.44964684069,297,Urgent,2022-07-28,Inconclusive,266,202,4,23,,,,DISCHARGED -267,2021-03-27,23660.216628296115,280,Elective,2021-04-07,Normal,267,183,0,15,,,,DISCHARGED -268,2021-12-23,35791.956328527325,238,Urgent,2022-01-10,Inconclusive,268,122,3,9,,,,DISCHARGED -269,2022-08-08,43882.56194900586,374,Elective,2022-08-14,Abnormal,269,400,2,20,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -270,2022-05-23,22979.213540298944,216,Emergency,2022-06-11,Abnormal,270,254,4,9,,,,DISCHARGED -271,2021-09-19,37360.639585599776,135,Elective,2021-09-29,Normal,271,293,1,24,,,,DISCHARGED -272,2022-05-16,40757.910944602416,303,Urgent,2022-06-09,Inconclusive,272,279,1,24,,,,DISCHARGED -273,2023-01-27,23331.281203322746,225,Elective,,Abnormal,273,324,0,23,,,,OPEN -274,2020-12-14,6628.356138570429,152,Elective,2020-12-16,Abnormal,274,371,2,5,,,,DISCHARGED -275,2020-09-26,12470.76959830422,444,Emergency,2020-10-18,Abnormal,275,97,3,21,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -276,2022-02-24,7364.750960595123,270,Urgent,2022-03-05,Inconclusive,276,197,1,16,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -277,2022-06-02,1939.3191021634184,454,Elective,2022-06-18,Normal,277,469,0,28,,,,DISCHARGED -277,2022-12-31,36463.28133462362,220,Urgent,2023-01-25,Inconclusive,2408,394,2,15,,,,DISCHARGED -278,2020-01-30,4002.824156525608,425,Urgent,2020-02-01,Inconclusive,278,239,2,14,,,,DISCHARGED -279,2022-06-08,28394.39906646661,442,Emergency,2022-07-08,Normal,279,143,0,21,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -280,2023-09-01,47295.55751295883,189,Emergency,2023-09-07,Normal,280,96,0,13,,,,DISCHARGED -281,2022-06-16,13749.968280129424,487,Emergency,2022-06-24,Normal,281,200,3,3,,,,DISCHARGED -282,2019-02-13,42550.621840623455,119,Urgent,2019-02-23,Abnormal,282,123,0,3,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -283,2020-08-27,42182.74976501221,356,Elective,2020-09-17,Normal,283,186,3,29,,,,DISCHARGED -284,2018-12-15,5901.145156327686,104,Urgent,2018-12-19,Inconclusive,284,325,3,1,,,,DISCHARGED -285,2018-12-10,10333.001823102266,184,Urgent,2018-12-22,Inconclusive,285,463,4,28,,,,DISCHARGED -286,2021-11-06,7164.88617166191,130,Urgent,2021-11-25,Normal,286,348,2,10,,,,DISCHARGED -287,2020-07-18,15622.693687190786,485,Elective,2020-07-22,Abnormal,287,258,2,29,,,,DISCHARGED -287,2019-02-10,3167.4111565989388,201,Emergency,2019-02-25,Abnormal,5585,147,2,3,,,,DISCHARGED -288,2020-05-31,20699.813436150755,218,Elective,2020-06-17,Inconclusive,288,251,4,20,,,,DISCHARGED -289,2019-01-27,25420.21123802783,445,Urgent,2019-02-08,Abnormal,289,442,3,28,,,,DISCHARGED -290,2018-12-15,17531.212779067297,111,Emergency,2018-12-28,Inconclusive,290,419,3,27,,,,DISCHARGED -291,2019-04-12,17743.96851930109,119,Emergency,2019-04-25,Abnormal,291,402,0,20,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -292,2020-10-31,45477.90913864933,482,Emergency,2020-11-27,Normal,292,345,4,15,,,,DISCHARGED -293,2023-04-16,26633.450415065217,105,Emergency,2023-05-08,Inconclusive,293,450,0,20,,,,DISCHARGED -294,2022-11-09,41995.872277153765,362,Urgent,2022-11-20,Normal,294,146,4,3,,,,DISCHARGED -295,2019-04-12,29696.19164140571,425,Elective,2019-05-08,Normal,295,147,0,0,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -295,2022-11-06,49234.3216039978,302,Urgent,2022-11-28,Inconclusive,7747,351,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -296,2021-03-02,10033.766921269436,347,Urgent,2021-03-07,Abnormal,296,198,2,25,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -297,2019-09-19,41417.84433902557,230,Elective,2019-10-18,Abnormal,297,307,2,23,,,,DISCHARGED -298,2020-03-06,16592.012152966505,223,Emergency,2020-03-22,Abnormal,298,488,3,18,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -299,2021-08-18,7858.398730971636,199,Emergency,2021-09-09,Abnormal,299,416,1,1,,,,DISCHARGED -300,2021-10-02,8487.438712109812,497,Elective,2021-10-15,Inconclusive,300,423,2,8,,,,DISCHARGED -301,2021-09-19,32142.99757357748,420,Elective,2021-09-28,Normal,301,127,3,22,,,,DISCHARGED -301,2021-12-15,17594.974880421043,464,Urgent,2021-12-26,Normal,5445,38,1,24,,,,DISCHARGED -302,2019-07-03,43311.75941534955,432,Emergency,2019-07-21,Normal,302,337,2,12,,,,DISCHARGED -303,2020-01-02,26419.324812573923,483,Emergency,2020-01-30,Inconclusive,303,359,0,17,,,,DISCHARGED -304,2019-04-27,11548.830510952335,162,Elective,2019-05-16,Normal,304,128,4,15,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -305,2018-11-14,27593.64508218064,161,Elective,2018-12-01,Abnormal,305,266,1,15,,,,DISCHARGED -306,2023-07-02,8129.35849870258,436,Emergency,,Abnormal,306,475,3,24,,,,OPEN -307,2021-12-10,44941.23044388389,485,Emergency,2021-12-12,Inconclusive,307,440,1,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -308,2019-04-25,18364.414653784555,288,Elective,2019-05-20,Abnormal,308,472,3,8,,,,DISCHARGED -309,2019-11-12,42007.24435061608,440,Emergency,2019-12-07,Normal,309,433,1,10,,,,DISCHARGED -310,2022-06-24,34747.27007791632,133,Emergency,2022-07-03,Inconclusive,310,150,3,24,,,,DISCHARGED -311,2023-06-14,4740.109026437096,425,Emergency,,Abnormal,311,414,2,25,,,,OPEN -312,2019-09-11,31600.77207749116,237,Emergency,2019-09-21,Normal,312,477,0,28,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -312,2023-10-30,49872.58407396083,210,Urgent,2023-11-19,Abnormal,2030,297,2,25,,,,DISCHARGED -313,2020-03-15,25429.83077727948,104,Elective,2020-04-11,Abnormal,313,98,0,3,,,,DISCHARGED -313,2018-12-29,13718.963947484735,429,Urgent,2019-01-10,Inconclusive,3144,262,2,9,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -314,2023-07-10,44724.88270722428,114,Emergency,2023-08-04,Abnormal,314,251,2,2,,,,DISCHARGED -315,2023-09-06,29673.008474633425,253,Urgent,2023-09-30,Abnormal,315,143,1,5,,,,DISCHARGED -316,2022-12-25,46868.40818401109,244,Urgent,2022-12-31,Normal,316,345,4,2,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -317,2021-10-24,14496.083089014775,458,Elective,2021-11-12,Inconclusive,317,111,3,26,,,,DISCHARGED -318,2020-03-19,36496.77564422509,286,Elective,2020-04-05,Normal,318,499,3,8,,,,DISCHARGED -318,2023-04-26,10949.732176868753,199,Urgent,2023-05-11,Abnormal,4102,59,3,2,,,,DISCHARGED -319,2021-01-10,6850.97280044338,270,Elective,2021-01-20,Inconclusive,319,368,0,17,,,,DISCHARGED -319,2022-06-25,25098.403979328043,380,Emergency,2022-07-06,Normal,4879,1,3,7,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -320,2021-08-28,1256.479071739218,265,Urgent,2021-09-22,Abnormal,320,384,3,21,,,,DISCHARGED -321,2021-05-06,9731.395318301362,109,Elective,2021-05-13,Inconclusive,321,303,1,7,,,,DISCHARGED -322,2023-07-06,11610.39348971673,390,Urgent,,Abnormal,322,253,2,14,,,,OPEN -323,2023-02-22,21859.77342142722,207,Urgent,2023-03-18,Normal,323,139,3,12,,,,DISCHARGED -324,2020-09-19,26442.358750239266,442,Emergency,2020-10-18,Abnormal,324,452,4,6,,,,DISCHARGED -325,2019-08-20,12287.139440438472,384,Elective,2019-09-07,Inconclusive,325,36,3,18,,,,DISCHARGED -326,2020-05-09,40449.84643340579,411,Emergency,2020-06-05,Normal,326,159,0,7,,,,DISCHARGED -327,2018-11-25,35939.431931536754,324,Emergency,2018-12-17,Normal,327,8,0,9,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -327,2023-09-05,38471.19575373122,245,Elective,2023-09-09,Abnormal,7987,232,0,16,,,,DISCHARGED -328,2021-11-12,14230.466490795783,357,Elective,2021-11-28,Normal,328,98,3,0,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -329,2022-08-27,3380.7723809302533,153,Elective,2022-09-13,Inconclusive,329,146,1,12,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -330,2020-06-07,37081.46098786112,283,Emergency,2020-06-11,Inconclusive,330,303,4,28,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -331,2020-03-15,22268.034662054877,315,Urgent,2020-04-04,Inconclusive,331,207,3,25,,,,DISCHARGED -331,2022-09-07,24034.51877562933,192,Urgent,2022-09-12,Inconclusive,7077,130,1,12,,,,DISCHARGED -332,2023-07-28,37744.299585288834,471,Elective,2023-07-29,Abnormal,332,403,1,23,,,,DISCHARGED -333,2023-06-29,33399.46560693334,274,Urgent,,Abnormal,333,151,3,15,,,,OPEN -334,2022-05-21,34173.02524058562,353,Elective,2022-06-04,Abnormal,334,53,3,28,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -335,2020-09-15,45825.97889539125,311,Urgent,2020-09-25,Normal,335,119,1,8,,,,DISCHARGED -336,2022-10-29,30203.557649485752,490,Emergency,2022-11-20,Inconclusive,336,160,1,9,,,,DISCHARGED -337,2020-01-23,24305.53370218853,135,Urgent,2020-01-28,Inconclusive,337,407,1,5,,,,DISCHARGED -338,2022-03-29,45444.29373533064,368,Elective,2022-04-21,Abnormal,338,115,3,4,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -339,2021-02-04,2534.7004700955627,284,Elective,2021-02-22,Inconclusive,339,74,1,1,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -340,2019-02-07,27676.337232617487,242,Urgent,2019-02-22,Normal,340,112,0,10,,,,DISCHARGED -341,2018-12-08,5674.214337465009,209,Urgent,2018-12-15,Abnormal,341,455,3,8,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -342,2019-12-11,43475.28509858285,404,Elective,2019-12-13,Abnormal,342,419,0,5,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -343,2019-07-30,7237.040594808773,442,Emergency,2019-08-28,Normal,343,421,2,7,,,,DISCHARGED -344,2021-10-08,45537.19439445536,110,Urgent,2021-11-01,Normal,344,103,3,8,,,,DISCHARGED -345,2021-10-02,37113.07025273272,226,Elective,2021-10-07,Inconclusive,345,339,2,8,,,,DISCHARGED -346,2023-03-29,30730.893293449484,400,Urgent,,Inconclusive,346,253,1,7,,,,OPEN -347,2022-02-06,22773.131100555293,433,Emergency,2022-02-21,Normal,347,226,1,11,,,,DISCHARGED -348,2021-11-25,31303.64786842636,116,Elective,2021-12-24,Abnormal,348,111,4,25,,,,DISCHARGED -348,2021-04-15,8270.489262945997,362,Elective,2021-05-09,Normal,9482,472,1,7,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -349,2020-01-02,37527.711514253766,247,Urgent,2020-01-27,Inconclusive,349,98,2,2,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -349,2021-07-26,12372.907407008051,196,Emergency,2021-07-29,Normal,3087,152,1,12,,,,DISCHARGED -350,2022-06-07,29986.11627858563,439,Emergency,2022-06-10,Inconclusive,350,348,3,18,,,,DISCHARGED -351,2023-06-10,23360.65861318663,460,Elective,,Inconclusive,351,401,1,1,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",OPEN -352,2022-04-15,27065.747046561937,275,Elective,2022-05-12,Normal,352,383,4,16,,,,DISCHARGED -353,2019-07-29,34465.82487563732,361,Emergency,2019-08-27,Inconclusive,353,365,1,15,,,,DISCHARGED -354,2019-02-02,36439.07844953238,303,Emergency,2019-02-05,Abnormal,354,337,2,3,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -355,2023-05-19,46161.70793060004,278,Elective,2023-06-13,Abnormal,355,193,2,17,,,,DISCHARGED -356,2022-10-14,48192.6486063671,490,Urgent,2022-11-03,Inconclusive,356,309,1,13,,,,DISCHARGED -357,2022-07-24,5061.5932847128415,249,Emergency,2022-07-28,Normal,357,162,2,29,,,,DISCHARGED -358,2020-09-14,11784.94142268194,176,Elective,2020-09-27,Abnormal,358,207,2,1,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -359,2019-09-26,6442.96821664964,498,Urgent,2019-10-02,Inconclusive,359,444,4,12,,,,DISCHARGED -360,2019-06-13,13591.04308748773,240,Emergency,2019-07-02,Inconclusive,360,168,3,26,,,,DISCHARGED -361,2023-08-26,19710.535332992906,107,Emergency,2023-09-16,Inconclusive,361,483,4,26,,,,DISCHARGED -362,2021-11-15,20846.38332202797,407,Elective,2021-11-21,Normal,362,160,0,20,,,,DISCHARGED -362,2022-09-18,16965.96207064319,320,Elective,2022-10-06,Inconclusive,5565,67,4,19,,,,DISCHARGED -362,2019-05-08,34732.26290846109,155,Urgent,2019-06-05,Normal,7564,288,1,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -362,2023-05-23,6711.307078454929,236,Elective,2023-05-24,Normal,9878,397,3,14,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -363,2018-12-05,24261.16168217426,383,Urgent,2018-12-16,Normal,363,276,1,24,,,,DISCHARGED -364,2019-08-01,43495.23034505423,493,Urgent,2019-08-23,Abnormal,364,303,0,29,,,,DISCHARGED -365,2023-06-26,34698.50261708388,338,Urgent,,Inconclusive,365,403,3,19,,,,OPEN -366,2020-06-14,18524.74395050052,115,Elective,2020-06-28,Normal,366,383,2,4,,,,DISCHARGED -367,2021-05-27,17061.046663657253,357,Urgent,2021-06-12,Abnormal,367,391,4,6,,,,DISCHARGED -368,2023-04-25,3535.011881247826,130,Elective,,Abnormal,368,134,1,17,,,,OPEN -369,2020-11-24,31359.518931029103,262,Urgent,2020-12-17,Abnormal,369,194,0,23,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -370,2021-05-20,37419.01662386105,496,Elective,2021-06-08,Inconclusive,370,400,2,10,,,,DISCHARGED -371,2021-06-03,22697.41582654181,447,Emergency,2021-06-20,Inconclusive,371,127,4,17,,,,DISCHARGED -372,2019-10-12,20649.3872071603,246,Urgent,2019-10-17,Abnormal,372,32,2,26,,,,DISCHARGED -373,2019-02-10,29737.635840160445,275,Elective,2019-02-16,Abnormal,373,175,4,25,,,,DISCHARGED -374,2023-07-04,44019.07744764769,111,Urgent,2023-07-15,Inconclusive,374,459,3,4,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -375,2020-05-30,21864.01000742826,406,Elective,2020-06-15,Inconclusive,375,442,2,12,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -376,2022-02-10,15469.681276723895,305,Elective,2022-03-06,Abnormal,376,370,2,27,,,,DISCHARGED -377,2023-09-02,27667.126598927283,252,Urgent,,Abnormal,377,469,2,17,,,,OPEN -378,2022-04-17,26172.07906359765,155,Emergency,2022-05-04,Inconclusive,378,374,3,1,,,,DISCHARGED -379,2020-08-25,44643.05436145811,152,Elective,2020-09-06,Inconclusive,379,21,0,19,,,,DISCHARGED -380,2021-05-24,39533.37820142007,315,Urgent,2021-06-13,Normal,380,237,4,3,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -381,2022-01-20,29878.881332256024,479,Elective,2022-01-22,Abnormal,381,157,2,12,,,,DISCHARGED -382,2023-07-04,34386.58635397911,462,Elective,2023-07-26,Normal,382,37,3,23,,,,DISCHARGED -383,2023-08-01,44655.69907542223,363,Emergency,2023-08-16,Inconclusive,383,229,0,28,,,,DISCHARGED -384,2021-05-07,29272.274469788208,153,Emergency,2021-05-19,Inconclusive,384,364,4,15,,,,DISCHARGED -385,2020-12-05,24181.19275845464,394,Emergency,2020-12-18,Abnormal,385,50,3,5,,,,DISCHARGED -386,2020-10-16,18089.133069620937,239,Emergency,2020-11-02,Normal,386,437,4,25,,,,DISCHARGED -387,2021-03-30,2485.616432157961,145,Emergency,2021-04-17,Normal,387,263,2,7,,,,DISCHARGED -388,2023-06-13,16118.166535916958,192,Urgent,2023-07-11,Abnormal,388,282,0,15,,,,DISCHARGED -389,2023-03-11,21025.566735250803,142,Urgent,2023-04-01,Abnormal,389,26,3,12,,,,DISCHARGED -390,2022-03-07,22624.00546071185,158,Emergency,2022-03-09,Normal,390,225,0,22,,,,DISCHARGED -391,2023-09-10,4098.8542028788615,168,Elective,2023-09-18,Inconclusive,391,276,2,28,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -392,2022-06-12,19955.344980387046,379,Emergency,2022-06-13,Inconclusive,392,285,0,25,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -393,2019-11-21,10179.756432705788,126,Emergency,2019-12-09,Abnormal,393,96,0,3,,,,DISCHARGED -394,2022-10-31,17185.194410454264,369,Emergency,2022-11-26,Normal,394,283,1,1,,,,DISCHARGED -395,2023-04-11,5411.414545512917,270,Elective,,Normal,395,366,0,8,,,,OPEN -395,2022-12-24,11866.015881332352,335,Emergency,2023-01-06,Abnormal,1051,447,4,17,,,,DISCHARGED -396,2022-08-29,35307.19747887386,229,Urgent,2022-09-07,Abnormal,396,480,3,16,,,,DISCHARGED -397,2022-01-26,10492.799553848816,497,Emergency,2022-02-06,Normal,397,452,1,7,,,,DISCHARGED -398,2019-02-17,13271.716783215192,425,Elective,2019-02-27,Inconclusive,398,316,3,25,,,,DISCHARGED -399,2019-02-23,7219.466253041419,483,Urgent,2019-03-06,Normal,399,303,3,14,,,,DISCHARGED -400,2020-01-09,6098.460276413218,372,Urgent,2020-01-17,Normal,400,146,2,8,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -401,2021-08-20,29285.344053736582,162,Emergency,2021-09-15,Abnormal,401,3,2,16,,,,DISCHARGED -402,2023-03-17,35490.26267380252,403,Urgent,,Abnormal,402,34,1,22,,,,OPEN -403,2021-02-14,28835.35019006271,205,Emergency,2021-02-24,Abnormal,403,191,2,1,,,,DISCHARGED -404,2020-01-29,11300.527273565993,497,Urgent,2020-02-15,Abnormal,404,48,2,5,,,,DISCHARGED -405,2022-12-07,15988.782443956656,353,Emergency,2022-12-29,Inconclusive,405,16,2,28,,,,DISCHARGED -406,2021-06-17,30137.59626994503,196,Emergency,2021-07-04,Normal,406,171,3,26,,,,DISCHARGED -407,2022-03-05,10045.003229310056,349,Urgent,2022-04-03,Normal,407,219,1,4,,,,DISCHARGED -408,2020-10-22,48716.28910714937,476,Emergency,2020-11-19,Normal,408,157,3,16,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -409,2022-04-27,47881.28110741898,144,Urgent,2022-05-12,Abnormal,409,476,4,1,,,,DISCHARGED -410,2023-07-08,31587.212506815024,406,Urgent,2023-07-17,Abnormal,410,45,3,17,,,,DISCHARGED -411,2019-07-06,19425.9678150406,257,Emergency,2019-07-25,Normal,411,372,4,9,,,,DISCHARGED -412,2023-09-03,38734.81354183516,259,Elective,,Abnormal,412,5,0,9,,,,OPEN -413,2019-03-07,39757.64872636877,330,Elective,2019-03-20,Normal,413,98,0,5,,,,DISCHARGED -414,2019-06-24,9199.668301340776,291,Elective,2019-07-09,Abnormal,414,379,4,26,,,,DISCHARGED -414,2022-08-21,11786.019631084911,210,Elective,2022-08-28,Abnormal,3866,232,4,11,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -415,2022-10-17,22111.45567806985,334,Emergency,2022-11-09,Abnormal,415,36,3,16,,,,DISCHARGED -416,2023-09-16,11391.122160265388,180,Urgent,2023-09-27,Inconclusive,416,279,4,26,,,,DISCHARGED -417,2021-03-09,33952.609194823075,407,Emergency,2021-04-08,Inconclusive,417,348,1,12,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -418,2022-12-17,39875.2158788523,230,Elective,2023-01-11,Inconclusive,418,496,0,19,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -418,2019-08-01,34302.73469258127,452,Urgent,2019-08-07,Normal,6495,301,0,27,,,,DISCHARGED -419,2020-10-29,46133.54164833743,325,Elective,2020-11-08,Inconclusive,419,180,4,15,,,,DISCHARGED -420,2020-02-13,19528.40176294773,268,Elective,2020-02-20,Inconclusive,420,94,2,9,,,,DISCHARGED -421,2023-03-10,45925.07177264269,224,Elective,,Abnormal,421,98,2,26,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -421,2019-09-14,46700.05126801022,272,Elective,2019-10-03,Inconclusive,3580,187,4,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -422,2023-10-11,18272.82553900976,359,Emergency,2023-10-27,Abnormal,422,480,1,1,,,,DISCHARGED -423,2022-10-31,32052.22463067412,213,Emergency,2022-11-16,Abnormal,423,115,2,1,,,,DISCHARGED -424,2019-02-09,18605.860442632416,433,Emergency,2019-02-25,Normal,424,190,4,22,,,,DISCHARGED -425,2022-03-06,45565.74980582937,340,Elective,2022-03-29,Inconclusive,425,252,1,6,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -426,2022-02-27,49213.851670692,406,Elective,2022-03-21,Inconclusive,426,468,1,5,,,,DISCHARGED -427,2019-12-12,41767.21232826044,286,Emergency,2019-12-16,Inconclusive,427,415,3,0,,,,DISCHARGED -428,2022-01-27,28158.32776555694,374,Urgent,2022-02-15,Abnormal,428,470,1,11,,,,DISCHARGED -429,2022-04-14,23888.35667902367,336,Urgent,2022-04-19,Abnormal,429,160,2,12,,,,DISCHARGED -430,2023-04-29,3991.755828825399,252,Elective,2023-05-18,Abnormal,430,255,2,11,,,,DISCHARGED -431,2023-09-04,22314.393944570365,386,Elective,2023-09-17,Abnormal,431,322,4,18,,,,DISCHARGED -432,2019-07-26,49619.86254685744,428,Elective,2019-08-25,Abnormal,432,127,4,8,,,,DISCHARGED -433,2021-06-24,47695.93306826968,439,Emergency,2021-07-11,Inconclusive,433,17,1,9,,,,DISCHARGED -434,2022-08-19,4377.60198677737,265,Elective,2022-09-09,Abnormal,434,280,0,16,,,,DISCHARGED -435,2020-11-09,33919.88146222602,153,Elective,2020-11-17,Abnormal,435,489,3,17,,,,DISCHARGED -436,2021-01-19,26017.318073241207,264,Urgent,2021-02-14,Inconclusive,436,222,0,7,,,,DISCHARGED -437,2020-08-05,24371.732446723752,234,Emergency,2020-08-13,Normal,437,53,1,6,,,,DISCHARGED -437,2020-09-23,31717.16699091609,398,Urgent,2020-10-19,Abnormal,2180,57,1,8,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -438,2022-04-02,12723.420482916645,174,Elective,2022-04-09,Inconclusive,438,322,0,9,,,,DISCHARGED -439,2023-02-05,4433.950956325497,445,Emergency,2023-02-18,Abnormal,439,359,3,11,,,,DISCHARGED -440,2019-09-29,6849.015274052991,110,Urgent,2019-10-24,Inconclusive,440,173,0,14,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -441,2021-02-07,17219.17249139119,101,Urgent,2021-02-21,Abnormal,441,279,4,14,,,,DISCHARGED -442,2020-06-21,13137.632496612798,145,Urgent,2020-07-20,Abnormal,442,113,2,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -443,2022-07-06,49528.92118252973,382,Elective,2022-07-13,Inconclusive,443,287,4,3,,,,DISCHARGED -444,2021-05-05,39734.99511709112,496,Emergency,2021-05-14,Abnormal,444,430,2,3,,,,DISCHARGED -444,2020-07-01,38587.5803444483,150,Emergency,2020-07-17,Normal,3315,341,1,22,,,,DISCHARGED -445,2020-08-26,1926.8812784193387,485,Urgent,2020-09-19,Normal,445,150,3,0,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -446,2023-07-29,26531.698294090373,375,Elective,2023-08-10,Abnormal,446,449,0,25,,,,DISCHARGED -447,2020-07-15,32573.7247492396,435,Urgent,2020-08-14,Normal,447,126,3,11,,,,DISCHARGED -448,2019-07-02,9880.393141552431,235,Emergency,2019-07-18,Normal,448,154,0,24,,,,DISCHARGED -450,2019-11-15,28473.03123070652,353,Urgent,2019-11-25,Abnormal,450,489,4,1,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -451,2023-10-24,41787.1881271981,474,Urgent,,Abnormal,451,385,4,14,,,,OPEN -452,2022-07-02,42419.10894481873,443,Urgent,2022-07-22,Abnormal,452,473,0,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -453,2020-07-30,1769.47942259644,344,Urgent,2020-08-04,Abnormal,453,272,3,6,,,,DISCHARGED -454,2019-05-28,22938.061375785877,363,Elective,2019-06-12,Normal,454,103,0,5,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -455,2020-03-28,29149.76226273954,301,Emergency,2020-04-11,Abnormal,455,416,1,11,,,,DISCHARGED -456,2021-12-13,35725.015997528026,246,Elective,2021-12-22,Abnormal,456,392,4,18,,,,DISCHARGED -457,2023-07-03,45968.66601088508,242,Elective,,Abnormal,457,298,1,0,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",OPEN -458,2022-07-31,47633.19611828846,467,Elective,2022-08-10,Inconclusive,458,245,4,27,,,,DISCHARGED -459,2022-03-24,11837.391382902972,439,Emergency,2022-04-13,Inconclusive,459,175,4,20,,,,DISCHARGED -459,2022-07-02,33329.166580649966,374,Emergency,2022-07-17,Abnormal,4961,38,2,25,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -460,2023-06-10,34295.81941924599,435,Urgent,2023-07-10,Normal,460,476,1,13,,,,DISCHARGED -461,2019-02-15,41665.42359867156,146,Elective,2019-03-11,Inconclusive,461,169,1,3,,,,DISCHARGED -462,2021-06-08,31726.59716065663,118,Elective,2021-07-04,Abnormal,462,246,2,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -463,2022-06-02,12798.354436372836,206,Elective,2022-06-15,Inconclusive,463,25,3,0,,,,DISCHARGED -464,2022-11-07,13364.28478214961,233,Emergency,2022-11-21,Normal,464,354,1,0,,,,DISCHARGED -465,2019-10-07,9198.071177894664,158,Elective,2019-10-29,Inconclusive,465,305,0,20,,,,DISCHARGED -466,2020-09-26,45218.39685568974,269,Elective,2020-10-05,Inconclusive,466,408,2,5,,,,DISCHARGED -466,2019-11-26,4117.6167256256,451,Emergency,2019-12-01,Inconclusive,7860,407,1,4,,,,DISCHARGED -467,2022-08-25,7813.239088644965,422,Emergency,2022-08-27,Abnormal,467,12,3,1,,,,DISCHARGED -468,2020-09-07,14722.06486979564,441,Urgent,2020-09-21,Inconclusive,468,315,1,24,,,,DISCHARGED -469,2020-08-06,28414.392830500576,136,Elective,2020-08-30,Normal,469,390,4,20,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -470,2019-11-07,23600.111033537287,289,Emergency,2019-11-10,Normal,470,312,0,26,,,,DISCHARGED -471,2020-02-16,22065.281396557828,320,Elective,2020-03-07,Abnormal,471,35,2,26,,,,DISCHARGED -472,2021-12-21,28830.35043862421,173,Elective,2021-12-25,Abnormal,472,172,4,4,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -473,2022-07-16,11169.299479570573,269,Urgent,2022-08-02,Abnormal,473,19,3,25,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -474,2023-10-30,37904.3953340171,359,Elective,2023-11-08,Abnormal,474,320,4,8,,,,DISCHARGED -475,2023-01-24,17370.67402887645,334,Emergency,2023-02-18,Abnormal,475,263,4,18,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -476,2023-10-16,42494.658488975496,180,Urgent,2023-10-29,Abnormal,476,493,3,20,,,,DISCHARGED -476,2020-12-26,19166.455614682505,220,Urgent,2020-12-28,Normal,6663,399,4,14,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -477,2023-05-24,3717.532768174956,412,Elective,2023-06-12,Normal,477,141,2,12,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -478,2021-07-14,5181.797329471285,277,Urgent,2021-07-21,Normal,478,459,1,11,,,,DISCHARGED -479,2019-10-31,38384.83383994121,423,Elective,2019-11-29,Inconclusive,479,370,4,4,,,,DISCHARGED -480,2019-11-11,1872.6240696749564,249,Emergency,2019-12-04,Normal,480,470,2,1,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -480,2023-09-10,11877.554813326786,290,Emergency,,Normal,5414,142,1,26,,,,OPEN -481,2021-08-27,26642.91852973562,265,Emergency,2021-09-06,Inconclusive,481,91,1,3,,,,DISCHARGED -482,2019-11-16,12517.38311628151,112,Elective,2019-11-17,Abnormal,482,353,4,26,,,,DISCHARGED -483,2018-11-25,2095.1559258625894,433,Elective,2018-12-18,Abnormal,483,321,2,26,,,,DISCHARGED -484,2019-08-10,1733.3650274449624,139,Urgent,2019-08-16,Abnormal,484,287,4,17,,,,DISCHARGED -484,2020-04-10,30453.29256083368,481,Emergency,2020-05-10,Inconclusive,934,214,3,20,,,,DISCHARGED -485,2023-07-15,47022.68531585785,304,Urgent,2023-08-03,Abnormal,485,446,1,9,,,,DISCHARGED -486,2022-03-04,37784.19228834623,120,Urgent,2022-03-12,Inconclusive,486,341,4,12,,,,DISCHARGED -487,2021-08-17,48166.4649733162,215,Emergency,2021-09-04,Inconclusive,487,50,1,11,,,,DISCHARGED -488,2021-02-17,8771.405136422072,478,Emergency,2021-03-03,Abnormal,488,152,2,1,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -489,2019-02-27,29401.01362275602,450,Elective,2019-03-22,Normal,489,185,0,25,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -490,2022-06-05,25768.14923325117,105,Emergency,2022-06-25,Normal,490,62,4,14,,,,DISCHARGED -491,2021-12-07,24931.510709500853,129,Urgent,2021-12-25,Normal,491,189,4,13,,,,DISCHARGED -492,2021-12-22,25403.265432304517,436,Urgent,2022-01-15,Normal,492,124,1,24,,,,DISCHARGED -493,2022-08-21,4872.52203867796,300,Emergency,2022-08-23,Normal,493,149,2,9,,,,DISCHARGED -494,2021-03-07,16579.523111324743,181,Elective,2021-03-14,Abnormal,494,313,3,21,,,,DISCHARGED -495,2019-07-31,36267.53004591016,359,Elective,2019-08-08,Inconclusive,495,57,2,7,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -496,2019-04-17,14630.921981044075,243,Elective,2019-04-19,Inconclusive,496,341,4,24,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -497,2021-03-06,20948.868408245267,451,Elective,2021-03-08,Inconclusive,497,304,3,14,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,DISCHARGED -498,2019-06-25,16520.40104282614,454,Emergency,2019-07-06,Abnormal,498,179,2,12,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -499,2021-02-08,40894.21213974231,324,Urgent,2021-03-03,Abnormal,499,169,0,7,,,,DISCHARGED -500,2022-11-29,21763.63091730142,413,Elective,2022-12-20,Abnormal,500,325,1,20,,,,DISCHARGED -500,2022-03-12,3091.861153836057,351,Emergency,2022-04-07,Normal,1441,270,2,20,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -501,2019-08-20,19095.93781532436,233,Urgent,2019-09-06,Abnormal,501,53,2,21,,,,DISCHARGED -502,2023-04-12,36653.518666295786,279,Urgent,2023-05-10,Normal,502,490,0,13,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -503,2021-10-30,7425.021655104772,257,Elective,2021-11-14,Normal,503,443,4,0,,,,DISCHARGED -504,2022-05-31,7971.315646371439,227,Elective,2022-06-24,Inconclusive,504,100,1,12,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -505,2020-06-28,39914.27607055036,458,Urgent,2020-07-09,Inconclusive,505,480,2,26,,,,DISCHARGED -506,2020-10-10,7114.390324960495,209,Urgent,2020-10-14,Normal,506,263,3,7,,,,DISCHARGED -506,2019-05-12,40593.27133069669,202,Elective,2019-05-24,Inconclusive,4062,52,2,17,,,,DISCHARGED -506,2021-01-10,8802.237166078168,260,Emergency,2021-02-05,Normal,9089,59,1,21,,,,DISCHARGED -507,2019-11-17,35155.664221050734,148,Urgent,2019-11-18,Abnormal,507,491,2,29,,,,DISCHARGED -508,2019-06-05,2940.4267013198146,121,Elective,2019-06-23,Inconclusive,508,107,0,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -509,2021-09-25,20832.681283156555,461,Emergency,2021-10-21,Inconclusive,509,4,2,8,,,,DISCHARGED -510,2022-07-03,26790.38571886688,228,Urgent,2022-07-12,Normal,510,102,2,12,,,,DISCHARGED -511,2020-06-30,7075.04249268287,216,Elective,2020-07-25,Inconclusive,511,195,3,2,,,,DISCHARGED -512,2021-10-06,41813.39958512251,302,Urgent,2021-10-21,Abnormal,512,261,0,17,,,,DISCHARGED -513,2019-08-16,26925.89517815298,266,Elective,2019-09-12,Inconclusive,513,364,0,9,,,,DISCHARGED -514,2019-04-11,34710.04305373714,115,Emergency,2019-04-12,Inconclusive,514,479,2,4,,,,DISCHARGED -515,2022-05-10,24406.045621389712,417,Emergency,2022-05-27,Abnormal,515,371,3,26,,,,DISCHARGED -516,2020-03-13,32681.888295183657,450,Urgent,2020-04-01,Normal,516,349,2,24,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -516,2022-05-12,38857.2600632808,441,Emergency,2022-06-01,Inconclusive,9884,46,2,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -517,2022-04-30,6070.790387328666,283,Urgent,2022-05-09,Inconclusive,517,354,1,29,,,,DISCHARGED -518,2022-12-27,8144.499917205368,369,Emergency,2023-01-11,Normal,518,310,1,7,,,,DISCHARGED -519,2019-04-18,33700.44951446174,227,Urgent,2019-05-12,Inconclusive,519,423,3,23,,,,DISCHARGED -520,2018-12-13,23147.662039422623,121,Emergency,2018-12-16,Inconclusive,520,307,4,6,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -521,2021-05-20,4779.894357051111,382,Urgent,2021-05-29,Abnormal,521,143,1,20,,,,DISCHARGED -522,2021-08-12,35536.83539932699,231,Elective,2021-08-22,Normal,522,268,4,17,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -523,2022-03-21,9548.401159450852,384,Emergency,2022-04-19,Normal,523,369,0,13,,,,DISCHARGED -524,2021-08-03,37589.305795129854,171,Urgent,2021-08-17,Normal,524,123,1,14,,,,DISCHARGED -525,2021-04-18,11480.50809386221,150,Elective,2021-05-06,Normal,525,105,1,9,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -526,2021-10-29,48934.26926430396,224,Elective,2021-11-09,Abnormal,526,157,3,25,,,,DISCHARGED -527,2021-06-08,41867.42276599655,292,Elective,2021-06-13,Normal,527,146,4,20,,,,DISCHARGED -527,2021-08-07,18030.99760957841,188,Urgent,2021-08-11,Inconclusive,5471,144,1,11,,,,DISCHARGED -528,2020-09-07,30326.548123541277,464,Urgent,2020-10-02,Abnormal,528,119,1,6,,,,DISCHARGED -528,2023-05-02,9069.588120614291,251,Emergency,,Inconclusive,7124,318,3,27,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -528,2019-05-14,19162.047514277485,109,Emergency,2019-05-28,Inconclusive,8772,274,3,27,,,,DISCHARGED -529,2019-02-15,15650.89136366234,323,Emergency,2019-03-13,Abnormal,529,91,4,6,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -529,2020-12-28,22369.397932161075,312,Urgent,2021-01-11,Abnormal,3782,57,0,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -529,2023-02-05,22591.60146174062,334,Emergency,2023-02-24,Abnormal,5193,438,0,12,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -529,2023-08-28,47327.88276694965,438,Elective,2023-09-26,Abnormal,6700,345,2,14,,,,DISCHARGED -530,2023-07-07,23674.450003124257,457,Emergency,2023-07-08,Normal,530,228,1,17,,,,DISCHARGED -531,2020-02-26,4327.007176437091,443,Urgent,2020-03-07,Abnormal,531,473,4,6,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -532,2021-03-15,29642.72166436872,349,Urgent,2021-03-28,Abnormal,532,116,1,5,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -533,2019-06-30,23708.64705040193,358,Emergency,2019-07-23,Abnormal,533,317,4,22,,,,DISCHARGED -534,2019-05-01,25553.108423598303,449,Urgent,2019-05-18,Abnormal,534,278,4,10,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -535,2021-09-20,2843.9567706199905,223,Emergency,2021-10-12,Inconclusive,535,126,4,7,,,,DISCHARGED -536,2023-08-02,17514.335725622943,418,Emergency,2023-09-01,Normal,536,392,1,19,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -536,2020-06-01,38987.91525101814,489,Emergency,2020-06-04,Normal,3997,395,3,0,,,,DISCHARGED -536,2022-02-27,2615.279110410856,361,Emergency,2022-03-20,Normal,9607,128,1,7,,,,DISCHARGED -537,2020-01-30,13176.78745609465,220,Urgent,2020-02-01,Abnormal,537,57,4,7,,,,DISCHARGED -537,2019-04-12,12524.607133670266,167,Urgent,2019-04-17,Inconclusive,4875,121,2,18,,,,DISCHARGED -538,2019-04-26,26984.7214350776,370,Urgent,2019-05-17,Normal,538,0,0,2,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -539,2022-08-08,6972.148003460449,270,Urgent,2022-09-02,Inconclusive,539,238,4,4,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -540,2022-06-16,23127.21955713945,489,Emergency,2022-07-06,Abnormal,540,289,2,29,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -541,2022-02-10,49053.356073379015,383,Emergency,2022-02-26,Normal,541,95,3,2,,,,DISCHARGED -542,2021-02-18,26673.32884194635,151,Elective,2021-02-25,Abnormal,542,125,4,14,,,,DISCHARGED -543,2019-10-22,26730.533030935014,475,Elective,2019-11-14,Normal,543,117,2,13,,,,DISCHARGED -544,2018-12-30,1273.5634892546543,193,Emergency,2019-01-09,Inconclusive,544,47,4,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -544,2019-03-11,6584.543834592671,271,Elective,2019-03-14,Inconclusive,858,88,1,14,,,,DISCHARGED -545,2019-10-07,9530.447755726893,130,Emergency,2019-10-17,Normal,545,487,2,23,,,,DISCHARGED -546,2021-03-12,41468.33201755068,486,Urgent,2021-03-13,Inconclusive,546,236,1,16,,,,DISCHARGED -547,2018-11-29,29471.338578563355,195,Emergency,2018-12-29,Normal,547,372,1,17,,,,DISCHARGED -548,2023-07-28,13566.273821021534,370,Urgent,2023-08-02,Inconclusive,548,384,2,1,,,,DISCHARGED -549,2020-01-06,44848.3132673048,394,Emergency,2020-01-12,Normal,549,271,0,11,,,,DISCHARGED -549,2019-07-12,34345.70828955726,449,Emergency,2019-08-04,Abnormal,9072,188,2,15,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -550,2021-03-17,45032.998617150966,332,Urgent,2021-04-02,Normal,550,486,0,3,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -551,2022-11-05,35815.45584647932,183,Emergency,2022-12-04,Normal,551,191,4,24,,,,DISCHARGED -552,2019-06-24,19532.53278723472,482,Urgent,2019-07-12,Abnormal,552,446,4,1,,,,DISCHARGED -553,2019-12-04,45970.0253982044,349,Urgent,2019-12-31,Abnormal,553,68,2,27,,,,DISCHARGED -554,2021-02-03,31603.464289996395,129,Urgent,2021-03-03,Inconclusive,554,277,4,13,,,,DISCHARGED -555,2022-04-20,46859.300809502565,101,Urgent,2022-05-05,Normal,555,348,3,10,,,,DISCHARGED -555,2020-11-07,34600.54375101597,413,Emergency,2020-11-23,Abnormal,1650,246,1,12,,,,DISCHARGED -555,2021-08-19,11018.936252881129,239,Emergency,2021-09-08,Abnormal,4177,450,1,27,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -556,2021-11-28,12442.5573858006,437,Urgent,2021-12-12,Normal,556,75,0,24,,,,DISCHARGED -557,2021-12-11,30663.060917614795,350,Elective,2021-12-18,Abnormal,557,153,4,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -558,2019-04-08,46515.22909192982,309,Emergency,2019-05-04,Inconclusive,558,143,0,9,,,,DISCHARGED -559,2023-02-09,11124.064664015672,114,Urgent,2023-02-22,Inconclusive,559,434,1,23,,,,DISCHARGED -559,2020-06-22,29305.80150045741,409,Urgent,2020-07-07,Normal,8306,484,1,0,,,,DISCHARGED -560,2021-06-30,47627.27783828069,394,Urgent,2021-07-09,Inconclusive,560,85,4,28,,,,DISCHARGED -560,2022-06-17,29711.44848855328,171,Elective,2022-07-12,Abnormal,642,184,3,20,,,,DISCHARGED -561,2020-04-11,31263.33812260269,359,Urgent,2020-04-21,Abnormal,561,284,3,24,,,,DISCHARGED -562,2022-02-03,28352.41473171589,469,Emergency,2022-02-20,Inconclusive,562,461,4,27,,,,DISCHARGED -563,2022-05-12,42655.64205587303,366,Emergency,2022-06-05,Normal,563,219,4,3,,,,DISCHARGED -564,2020-06-23,22269.55697399366,158,Emergency,2020-07-08,Abnormal,564,68,0,17,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -565,2021-05-08,42727.06257920989,424,Emergency,2021-05-16,Inconclusive,565,46,4,5,,,,DISCHARGED -566,2019-06-05,33632.929738282095,359,Elective,2019-06-27,Inconclusive,566,496,3,1,,,,DISCHARGED -567,2021-05-13,35921.24997513281,312,Elective,2021-05-20,Normal,567,93,4,2,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -567,2023-09-22,39038.30212916092,301,Emergency,2023-09-30,Abnormal,7463,237,0,13,,,,DISCHARGED -568,2019-04-10,29057.33788783523,292,Urgent,2019-04-16,Inconclusive,568,445,0,7,,,,DISCHARGED -568,2020-08-08,48015.68909005,437,Elective,2020-08-27,Abnormal,4633,499,0,15,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -569,2020-02-23,11798.272635112471,120,Urgent,2020-02-29,Normal,569,452,0,18,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -570,2019-02-05,29004.148319391294,172,Elective,2019-02-09,Abnormal,570,203,2,17,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -571,2022-08-03,35302.0542529773,285,Elective,2022-08-30,Inconclusive,571,399,4,5,,,,DISCHARGED -572,2023-06-01,40930.33670034296,269,Elective,,Abnormal,572,217,1,13,,,,OPEN -573,2020-10-13,18198.873724591896,353,Urgent,2020-11-04,Abnormal,573,473,4,2,,,,DISCHARGED -574,2020-02-04,2169.8000252912543,250,Emergency,2020-02-17,Abnormal,574,431,2,15,,,,DISCHARGED -575,2023-09-04,22325.85848784263,494,Emergency,,Normal,575,340,0,0,,,,OPEN -576,2020-07-17,39300.53214001592,148,Urgent,2020-07-22,Normal,576,38,2,11,,,,DISCHARGED -576,2022-01-10,7061.616018176291,403,Emergency,2022-01-26,Inconclusive,5017,99,3,29,,,,DISCHARGED -577,2021-09-09,48637.890352783135,489,Urgent,2021-09-30,Inconclusive,577,288,3,13,,,,DISCHARGED -578,2019-10-21,11455.638278335364,299,Elective,2019-11-07,Abnormal,578,253,4,18,,,,DISCHARGED -579,2023-08-14,29736.48579821002,333,Urgent,,Normal,579,221,4,21,,,,OPEN -580,2023-09-19,31546.04034452285,118,Emergency,2023-09-23,Inconclusive,580,356,1,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -581,2023-03-11,29531.96894938637,194,Urgent,2023-04-07,Abnormal,581,22,1,8,,,,DISCHARGED -582,2020-11-08,27793.874151156982,354,Elective,2020-12-07,Abnormal,582,249,3,6,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -583,2022-12-21,25651.524166615734,210,Urgent,2022-12-27,Abnormal,583,9,0,13,,,,DISCHARGED -584,2019-06-20,2633.7930984837817,459,Urgent,2019-07-11,Abnormal,584,245,2,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -585,2019-10-18,36200.574823271,150,Elective,2019-11-07,Inconclusive,585,324,1,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -586,2022-09-17,27740.621895862027,419,Elective,2022-09-25,Abnormal,586,99,1,8,,,,DISCHARGED -586,2020-10-26,17265.95313814678,173,Urgent,2020-11-10,Inconclusive,5159,289,0,20,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -587,2023-06-17,10942.246708037756,308,Urgent,2023-07-05,Normal,587,179,0,6,,,,DISCHARGED -588,2022-09-27,1580.5238993603143,385,Emergency,2022-10-05,Normal,588,222,4,8,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -589,2021-08-22,4430.935757891534,283,Urgent,2021-09-12,Abnormal,589,393,2,3,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -590,2020-05-22,47716.54155932406,150,Elective,2020-05-29,Abnormal,590,249,0,24,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -591,2023-07-15,6907.865086316721,298,Emergency,,Normal,591,146,1,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,OPEN -592,2023-04-26,37718.965979142384,349,Urgent,2023-05-09,Inconclusive,592,441,1,11,,,,DISCHARGED -593,2020-08-16,20190.8093362639,287,Emergency,2020-09-01,Normal,593,95,3,5,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -594,2019-09-27,8957.21032146065,486,Elective,2019-10-18,Inconclusive,594,256,0,17,,,,DISCHARGED -595,2022-10-02,1621.74136483954,124,Elective,2022-10-30,Abnormal,595,324,4,7,,,,DISCHARGED -596,2018-12-17,14870.627251261443,493,Elective,2019-01-12,Inconclusive,596,492,2,20,,,,DISCHARGED -597,2022-10-06,17325.665238130157,356,Elective,2022-10-07,Inconclusive,597,3,4,14,,,,DISCHARGED -598,2020-08-14,17171.201075165605,471,Emergency,2020-09-07,Normal,598,15,1,2,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -599,2019-09-04,1720.1186557995557,197,Elective,2019-09-14,Normal,599,279,4,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -599,2023-07-21,25090.970740519588,255,Elective,2023-08-17,Normal,9871,335,1,23,,,,DISCHARGED -599,2021-01-02,42473.727572099335,459,Emergency,2021-01-18,Abnormal,9885,246,1,22,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -600,2021-12-22,43169.871554592566,190,Urgent,2021-12-30,Abnormal,600,257,1,8,,,,DISCHARGED -601,2021-02-28,21815.834706117395,497,Urgent,2021-03-15,Normal,601,496,1,7,,,,DISCHARGED -602,2022-12-28,15723.024459754026,104,Emergency,2023-01-26,Normal,602,475,1,26,,,,DISCHARGED -603,2019-08-17,25943.140950768706,386,Urgent,2019-08-30,Normal,603,383,3,3,,,,DISCHARGED -604,2021-08-25,43137.28068250206,291,Urgent,2021-08-30,Normal,604,159,4,1,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -605,2019-04-29,20480.127366492598,194,Emergency,2019-05-04,Normal,605,474,3,13,,,,DISCHARGED -606,2022-11-08,41749.141427979725,358,Urgent,2022-11-17,Abnormal,606,339,3,28,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -607,2021-08-31,25944.58736990828,163,Urgent,2021-09-29,Abnormal,607,151,0,1,,,,DISCHARGED -608,2021-04-18,7898.41039505423,152,Emergency,2021-05-03,Inconclusive,608,395,0,1,,,,DISCHARGED -609,2018-12-01,26652.02629964267,339,Emergency,2018-12-02,Inconclusive,609,177,0,29,,,,DISCHARGED -610,2018-11-20,22964.513025846525,142,Urgent,2018-12-07,Normal,610,162,2,26,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -611,2022-10-30,40088.25191410642,445,Emergency,2022-11-24,Abnormal,611,379,0,27,,,,DISCHARGED -612,2020-06-18,21643.0988673552,441,Urgent,2020-07-18,Inconclusive,612,32,4,21,,,,DISCHARGED -613,2020-09-25,45847.121454257394,303,Elective,2020-10-04,Abnormal,613,416,3,6,,,,DISCHARGED -614,2020-02-01,21787.94821260656,221,Emergency,2020-02-25,Normal,614,444,4,11,,,,DISCHARGED -615,2019-07-14,1308.4505111228175,203,Urgent,2019-07-15,Abnormal,615,178,0,5,,,,DISCHARGED -616,2022-08-12,16653.861241303515,233,Elective,2022-09-08,Abnormal,616,426,2,17,,,,DISCHARGED -617,2021-03-07,4890.952697087665,355,Emergency,2021-04-05,Abnormal,617,100,2,3,,,,DISCHARGED -617,2019-11-03,5822.149830631723,346,Emergency,2019-11-08,Inconclusive,6584,267,3,18,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -618,2021-09-05,3672.3107384173054,287,Urgent,2021-09-13,Inconclusive,618,322,4,26,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -619,2022-07-02,2754.2413838719704,496,Urgent,2022-07-25,Abnormal,619,64,1,12,,,,DISCHARGED -620,2022-03-04,7375.7026775905215,469,Urgent,2022-03-20,Normal,620,416,4,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -621,2018-12-21,17774.51346033581,315,Emergency,2018-12-28,Normal,621,167,0,20,,,,DISCHARGED -622,2022-06-01,37817.35473895176,245,Urgent,2022-06-29,Abnormal,622,329,1,22,,,,DISCHARGED -623,2022-10-29,35327.49680593469,187,Elective,2022-11-05,Abnormal,623,42,2,29,,,,DISCHARGED -624,2020-02-24,7515.106726165153,118,Urgent,2020-03-18,Abnormal,624,43,3,24,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -625,2022-12-25,26191.855680458164,250,Elective,2022-12-30,Inconclusive,625,284,3,26,,,,DISCHARGED -626,2020-09-15,40368.63078527363,467,Emergency,2020-09-28,Abnormal,626,396,2,1,,,,DISCHARGED -627,2021-10-12,12318.402603786715,444,Elective,2021-10-23,Abnormal,627,11,0,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -627,2021-12-27,33140.021561048576,393,Urgent,2022-01-20,Normal,4993,94,2,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -627,2021-07-17,40729.93029548378,246,Urgent,2021-07-19,Abnormal,9855,301,0,8,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -628,2019-12-22,25682.58667785405,500,Elective,2020-01-03,Abnormal,628,385,1,25,,,,DISCHARGED -629,2023-07-03,1166.7713188498326,212,Elective,2023-08-02,Abnormal,629,252,2,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -630,2022-11-24,26137.14802036306,405,Urgent,2022-12-18,Normal,630,498,0,3,,,,DISCHARGED -631,2022-10-18,30496.5510232852,270,Elective,2022-11-08,Abnormal,631,241,1,15,,,,DISCHARGED -632,2020-02-01,22805.877722145397,226,Urgent,2020-02-22,Abnormal,632,34,2,18,,,,DISCHARGED -633,2019-05-07,49270.072507326775,133,Elective,2019-05-13,Abnormal,633,214,3,9,,,,DISCHARGED -634,2020-03-26,4858.182480607207,261,Urgent,2020-04-03,Abnormal,634,336,2,5,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -635,2019-03-09,9221.570265611015,415,Elective,2019-03-16,Abnormal,635,89,4,15,,,,DISCHARGED -636,2021-06-06,7277.398359386279,450,Emergency,2021-06-24,Abnormal,636,263,2,9,,,,DISCHARGED -637,2023-03-29,46231.732510155394,153,Emergency,2023-04-26,Normal,637,92,4,12,,,,DISCHARGED -638,2019-10-16,4159.8516752477735,240,Elective,2019-11-15,Inconclusive,638,409,1,8,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -639,2022-02-27,39008.29088176689,231,Emergency,2022-03-23,Abnormal,639,457,2,6,,,,DISCHARGED -640,2020-06-13,5859.633336178047,136,Emergency,2020-06-24,Abnormal,640,89,1,3,,,,DISCHARGED -641,2018-11-07,11504.243525500084,304,Emergency,2018-11-17,Abnormal,641,417,1,18,,,,DISCHARGED -643,2022-07-11,12779.4190671751,139,Urgent,2022-07-15,Normal,643,114,0,25,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -644,2021-07-14,37031.667951122414,464,Elective,2021-07-24,Normal,644,104,1,3,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -645,2019-03-22,35296.60739748208,478,Elective,2019-04-12,Inconclusive,645,390,1,18,,,,DISCHARGED -646,2020-11-29,13251.93066792951,272,Urgent,2020-12-11,Normal,646,195,2,27,,,,DISCHARGED -646,2022-04-12,36688.41362234406,493,Urgent,2022-05-02,Inconclusive,5599,313,2,18,,,,DISCHARGED -647,2019-06-18,10398.841431365803,263,Elective,2019-07-14,Abnormal,647,113,3,11,,,,DISCHARGED -648,2018-11-21,35824.27718337132,147,Emergency,2018-12-17,Abnormal,648,492,0,29,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -649,2021-10-29,25646.982769784863,384,Emergency,2021-11-04,Normal,649,74,1,12,,,,DISCHARGED -650,2023-08-11,38797.57016070035,443,Emergency,,Inconclusive,650,412,0,24,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",OPEN -650,2021-11-27,42999.48515017059,478,Emergency,2021-12-27,Inconclusive,5021,375,4,3,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -651,2022-09-23,39298.31397906687,499,Emergency,2022-09-29,Normal,651,419,1,24,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -652,2022-01-31,13906.86947145366,254,Urgent,2022-02-21,Abnormal,652,216,0,27,,,,DISCHARGED -653,2018-12-05,3240.3099231891383,310,Urgent,2018-12-12,Inconclusive,653,276,3,9,,,,DISCHARGED -654,2020-11-12,18890.599993942385,323,Emergency,2020-12-11,Inconclusive,654,248,3,20,,,,DISCHARGED -655,2021-10-21,1832.966602057094,308,Urgent,2021-11-14,Abnormal,655,163,1,6,,,,DISCHARGED -656,2021-10-10,9781.227877151165,145,Elective,2021-10-14,Abnormal,656,393,4,29,,,,DISCHARGED -657,2020-08-26,3484.9172789396234,287,Elective,2020-09-21,Normal,657,356,3,4,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -658,2021-07-07,28319.6755694606,223,Elective,2021-07-21,Normal,658,456,3,16,,,,DISCHARGED -659,2021-08-19,22706.167498746145,253,Emergency,2021-08-22,Abnormal,659,407,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -660,2020-01-11,8941.46951865727,155,Emergency,2020-01-17,Abnormal,660,191,0,10,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -661,2020-08-23,6537.146944177454,213,Urgent,2020-09-12,Inconclusive,661,226,3,14,,,,DISCHARGED -662,2021-01-04,2089.9212968616207,287,Emergency,2021-01-15,Inconclusive,662,176,2,20,,,,DISCHARGED -663,2021-06-25,6786.999888529623,451,Elective,2021-07-22,Inconclusive,663,98,3,21,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -664,2020-07-28,7135.088456734516,413,Emergency,2020-08-11,Normal,664,495,0,6,,,,DISCHARGED -665,2019-06-01,38992.27217140143,471,Elective,2019-06-15,Normal,665,35,0,17,,,,DISCHARGED -666,2019-05-01,24341.76247166152,288,Elective,2019-05-04,Normal,666,465,1,25,,,,DISCHARGED -667,2022-10-24,38397.633513422974,381,Emergency,2022-10-27,Normal,667,496,2,24,,,,DISCHARGED -667,2020-12-10,3818.595075203345,221,Emergency,2021-01-05,Normal,3686,486,0,5,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -668,2020-10-31,19815.01793877015,225,Emergency,2020-11-11,Inconclusive,668,95,4,17,,,,DISCHARGED -669,2021-10-23,43750.163335970974,131,Urgent,2021-11-10,Inconclusive,669,151,2,15,,,,DISCHARGED -670,2022-05-05,32288.973244691417,191,Elective,2022-05-25,Inconclusive,670,150,2,1,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -671,2020-11-20,21005.63444737728,425,Emergency,2020-12-12,Normal,671,189,4,18,,,,DISCHARGED -672,2019-06-16,34855.727260136984,233,Urgent,2019-07-05,Normal,672,223,3,0,,,,DISCHARGED -673,2022-08-06,26510.62830691177,135,Urgent,2022-09-04,Inconclusive,673,36,4,24,,,,DISCHARGED -674,2021-07-07,12042.408939254816,385,Elective,2021-07-08,Inconclusive,674,267,4,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -675,2020-04-04,41216.67692224184,178,Urgent,2020-04-28,Abnormal,675,368,3,25,,,,DISCHARGED -676,2019-06-07,6752.416370961948,405,Urgent,2019-06-11,Normal,676,182,3,10,,,,DISCHARGED -676,2018-12-17,12802.501487818598,397,Urgent,2018-12-22,Abnormal,6093,12,3,19,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -677,2023-03-09,24865.147652104934,411,Emergency,2023-03-22,Inconclusive,677,278,3,4,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -678,2021-06-01,44480.89614627855,423,Elective,2021-06-29,Normal,678,216,3,15,,,,DISCHARGED -679,2020-03-05,35699.31152905354,329,Urgent,2020-03-18,Normal,679,354,4,22,,,,DISCHARGED -680,2020-10-03,23327.64271375108,121,Emergency,2020-10-18,Normal,680,360,1,0,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -681,2023-01-15,48488.17808785007,213,Emergency,2023-01-23,Abnormal,681,285,1,18,,,,DISCHARGED -682,2021-02-10,44147.79354614219,315,Emergency,2021-03-09,Normal,682,272,0,13,,,,DISCHARGED -683,2023-02-19,43699.09339220958,460,Emergency,2023-03-06,Abnormal,683,368,1,2,,,,DISCHARGED -684,2019-12-04,34573.60212639306,366,Elective,2019-12-12,Abnormal,684,61,1,1,,,,DISCHARGED -685,2019-09-13,25726.29888730881,493,Emergency,2019-09-20,Inconclusive,685,83,4,23,,,,DISCHARGED -685,2021-07-16,37424.896712974136,357,Emergency,2021-07-22,Inconclusive,8664,367,3,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -686,2023-03-23,28751.33243401702,326,Emergency,2023-04-18,Normal,686,216,3,16,,,,DISCHARGED -687,2022-09-27,26553.981812972223,268,Elective,2022-10-27,Abnormal,687,341,4,27,,,,DISCHARGED -688,2019-08-02,34730.2311812142,441,Emergency,2019-08-25,Inconclusive,688,396,1,17,,,,DISCHARGED -689,2020-06-22,33563.15886344288,310,Elective,2020-07-13,Inconclusive,689,186,4,0,,,,DISCHARGED -690,2021-03-28,40482.86091982188,173,Elective,2021-04-13,Inconclusive,690,18,0,14,,,,DISCHARGED -691,2020-08-21,10100.077988372932,229,Elective,2020-08-31,Normal,691,176,3,21,,,,DISCHARGED -692,2023-01-29,2397.2433727984144,193,Urgent,,Normal,692,99,2,8,,,,OPEN -692,2019-12-27,7843.407417399141,494,Emergency,2020-01-01,Abnormal,7451,395,0,26,,,,DISCHARGED -692,2023-08-24,13046.980253989215,350,Elective,,Abnormal,7456,444,0,22,,,,OPEN -692,2020-01-09,3621.536449748656,392,Emergency,2020-01-26,Abnormal,8662,232,4,4,,,,DISCHARGED -693,2020-01-02,6264.5528465513535,483,Emergency,2020-01-24,Inconclusive,693,402,1,27,,,,DISCHARGED -694,2019-10-26,26193.20859270649,324,Urgent,2019-10-28,Inconclusive,694,75,3,12,,,,DISCHARGED -695,2023-04-05,26875.03408023667,103,Urgent,,Inconclusive,695,264,2,18,,,,OPEN -696,2023-06-04,20789.857274019647,179,Elective,2023-06-17,Inconclusive,696,454,0,27,,,,DISCHARGED -697,2021-01-10,44300.24972189319,334,Emergency,2021-01-21,Normal,697,283,2,27,,,,DISCHARGED -698,2022-09-18,8515.07868571556,189,Emergency,2022-09-21,Inconclusive,698,205,1,23,,,,DISCHARGED -699,2022-09-27,32934.47275227343,357,Elective,2022-10-26,Abnormal,699,222,1,9,,,,DISCHARGED -700,2020-07-05,43134.404352418045,138,Urgent,2020-07-27,Abnormal,700,383,2,19,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -701,2022-05-27,26655.77099731245,405,Emergency,2022-06-18,Abnormal,701,51,3,24,,,,DISCHARGED -702,2020-02-09,30328.08155057094,381,Urgent,2020-02-12,Normal,702,338,1,20,,,,DISCHARGED -703,2023-09-19,48960.84096432827,241,Urgent,2023-10-05,Inconclusive,703,366,2,13,,,,DISCHARGED -704,2020-01-24,29381.57959955362,478,Emergency,2020-02-05,Abnormal,704,143,0,21,,,,DISCHARGED -705,2022-02-18,42307.77965279135,306,Elective,2022-02-24,Normal,705,372,2,20,,,,DISCHARGED -706,2021-06-23,27564.35972719125,244,Elective,2021-06-26,Inconclusive,706,68,2,25,,,,DISCHARGED -707,2021-11-26,20131.64987884304,478,Emergency,2021-12-01,Abnormal,707,98,4,11,,,,DISCHARGED -708,2020-08-05,10643.351924430925,444,Urgent,2020-08-14,Abnormal,708,395,1,10,,,,DISCHARGED -709,2021-10-28,39053.62294380567,481,Elective,2021-11-04,Abnormal,709,24,3,22,,,,DISCHARGED -710,2022-11-03,19760.56870428288,347,Elective,2022-11-09,Abnormal,710,435,3,6,,,,DISCHARGED -710,2022-06-29,3304.226375100389,313,Urgent,2022-07-28,Abnormal,2800,378,4,16,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -711,2022-03-26,27726.72587782294,313,Elective,2022-04-23,Abnormal,711,468,3,17,,,,DISCHARGED -712,2019-07-08,34328.250210011785,313,Emergency,2019-07-18,Abnormal,712,483,2,6,,,,DISCHARGED -713,2023-01-02,7452.926275865916,161,Urgent,,Abnormal,713,52,4,23,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",OPEN -713,2022-01-29,9762.152487460102,378,Elective,2022-02-11,Abnormal,1084,150,0,19,,,,DISCHARGED -714,2019-03-08,35381.34910117897,460,Elective,2019-03-24,Normal,714,143,1,5,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -715,2023-09-30,29898.894423810558,164,Elective,2023-10-02,Abnormal,715,56,1,10,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -716,2021-09-11,22542.047911364465,350,Elective,2021-10-11,Inconclusive,716,38,1,11,,,,DISCHARGED -717,2020-01-10,36610.928816561405,445,Urgent,2020-01-25,Normal,717,108,2,25,,,,DISCHARGED -718,2023-04-03,19789.25254162127,413,Urgent,2023-04-07,Normal,718,180,0,15,,,,DISCHARGED -719,2021-12-17,16479.89691558537,156,Elective,2021-12-27,Normal,719,41,4,18,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -720,2021-09-02,2023.521819580016,499,Emergency,2021-09-27,Abnormal,720,185,4,22,,,,DISCHARGED -721,2021-03-06,8596.554415684222,498,Emergency,2021-03-31,Inconclusive,721,422,1,26,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -722,2021-09-01,17282.783447122092,210,Urgent,2021-09-11,Inconclusive,722,397,0,18,,,,DISCHARGED -723,2019-10-18,45839.002243320174,175,Elective,2019-10-22,Abnormal,723,222,0,10,,,,DISCHARGED -724,2019-04-10,43865.89991922462,360,Urgent,2019-05-09,Normal,724,121,0,15,,,,DISCHARGED -725,2021-02-06,5290.39706178965,362,Emergency,2021-02-13,Inconclusive,725,132,3,22,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -725,2023-09-14,10031.63094138683,148,Emergency,,Inconclusive,8012,162,3,27,,,,OPEN -725,2018-12-27,45268.70600762127,329,Elective,2019-01-25,Inconclusive,8257,214,1,26,,,,DISCHARGED -726,2019-02-10,41850.87495762621,180,Urgent,2019-02-13,Normal,726,220,0,11,,,,DISCHARGED -727,2023-09-16,26642.36763976629,402,Emergency,2023-10-14,Abnormal,727,234,0,26,,,,DISCHARGED -728,2019-07-07,9976.235732053396,272,Elective,2019-07-23,Normal,728,330,4,7,,,,DISCHARGED -729,2020-03-09,22780.126968153894,155,Urgent,2020-03-26,Abnormal,729,145,4,2,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -730,2023-04-11,19037.819963447117,203,Urgent,2023-05-09,Abnormal,730,238,1,1,,,,DISCHARGED -731,2023-05-18,5936.85442788524,248,Emergency,2023-05-19,Inconclusive,731,75,0,27,,,,DISCHARGED -732,2021-09-11,33209.18551542296,331,Elective,2021-10-03,Abnormal,732,8,1,5,,,,DISCHARGED -733,2020-06-27,25489.361897336825,430,Emergency,2020-07-09,Normal,733,73,4,15,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -734,2020-12-07,49974.80659196992,390,Emergency,2020-12-28,Normal,734,441,4,19,,,,DISCHARGED -735,2021-10-09,21078.494919886787,154,Elective,2021-11-08,Abnormal,735,491,3,23,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -736,2023-03-07,33335.113067909144,341,Emergency,,Inconclusive,736,400,1,28,,,,OPEN -737,2021-08-29,42294.9053217139,401,Urgent,2021-08-30,Inconclusive,737,252,1,14,,,,DISCHARGED -738,2019-03-09,20485.05305682624,312,Urgent,2019-03-28,Normal,738,229,0,13,,,,DISCHARGED -739,2018-11-28,24362.3739604404,424,Urgent,2018-12-02,Abnormal,739,6,0,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -740,2023-06-04,30219.840568138978,248,Urgent,,Normal,740,173,3,19,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",OPEN -741,2020-12-15,16043.149171051742,231,Urgent,2020-12-31,Normal,741,140,2,17,,,,DISCHARGED -742,2021-02-28,47901.75283538637,336,Elective,2021-03-02,Inconclusive,742,167,2,13,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -743,2022-08-07,46411.59805250819,299,Elective,2022-09-02,Abnormal,743,169,2,17,,,,DISCHARGED -744,2019-04-18,5412.689044818573,495,Urgent,2019-05-06,Inconclusive,744,392,1,1,,,,DISCHARGED -745,2020-02-10,39094.68030580683,180,Emergency,2020-02-27,Abnormal,745,433,1,0,,,,DISCHARGED -746,2022-06-13,38597.00167876915,136,Urgent,2022-06-15,Abnormal,746,282,4,19,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -747,2020-03-09,28429.30705666029,211,Elective,2020-04-07,Inconclusive,747,121,1,1,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -748,2021-08-11,44226.342901836,338,Elective,2021-09-09,Normal,748,193,1,8,,,,DISCHARGED -749,2023-03-14,24428.30168772113,470,Elective,,Abnormal,749,4,1,8,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",OPEN -750,2023-05-10,19925.36121455757,381,Emergency,2023-06-03,Inconclusive,750,28,3,15,,,,DISCHARGED -751,2023-06-08,20592.203163869275,230,Elective,2023-06-30,Inconclusive,751,164,1,10,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -752,2020-12-04,9812.179824131505,262,Urgent,2020-12-13,Abnormal,752,421,0,26,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -753,2019-11-28,19972.934865547548,139,Emergency,2019-12-12,Normal,753,338,0,22,,,,DISCHARGED -754,2022-08-15,41120.09899603738,208,Emergency,2022-08-30,Inconclusive,754,135,4,5,,,,DISCHARGED -754,2021-05-02,16581.515286624075,131,Urgent,2021-05-20,Abnormal,3396,495,3,11,,,,DISCHARGED -754,2022-07-10,49951.26176069349,476,Emergency,2022-08-06,Inconclusive,5169,364,0,2,,,,DISCHARGED -755,2023-10-12,11287.415506639492,447,Urgent,2023-10-21,Abnormal,755,320,3,29,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -756,2023-01-26,31740.491338369888,174,Emergency,,Inconclusive,756,341,3,11,,,,OPEN -757,2022-06-07,13376.239619834629,240,Elective,2022-06-29,Normal,757,499,4,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -758,2022-03-14,27639.326063183085,162,Elective,2022-03-27,Abnormal,758,144,3,22,,,,DISCHARGED -759,2019-08-16,19180.35768120774,469,Elective,2019-09-10,Normal,759,326,1,0,,,,DISCHARGED -760,2021-08-08,40812.4540565021,374,Elective,2021-08-22,Normal,760,216,3,8,,,,DISCHARGED -761,2022-02-15,17426.341356949,341,Elective,2022-03-10,Inconclusive,761,300,4,19,,,,DISCHARGED -762,2020-03-03,44982.00041483668,299,Emergency,2020-03-18,Abnormal,762,131,4,21,,,,DISCHARGED -763,2018-11-30,47650.80969466829,364,Elective,2018-12-15,Abnormal,763,291,4,5,,,,DISCHARGED -764,2020-02-16,6103.389063833198,369,Elective,2020-03-11,Normal,764,69,0,10,,,,DISCHARGED -765,2019-01-23,24921.315633679584,235,Emergency,2019-02-11,Normal,765,251,1,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -766,2018-12-13,1032.2630866161535,377,Urgent,2018-12-14,Normal,766,414,0,3,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -767,2019-09-15,42103.26303322263,366,Urgent,2019-10-07,Normal,767,274,2,28,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -768,2021-12-13,24954.7311360958,343,Urgent,2022-01-08,Normal,768,444,1,26,,,,DISCHARGED -769,2021-04-19,9326.034946567304,144,Elective,2021-05-09,Inconclusive,769,363,3,9,,,,DISCHARGED -769,2021-07-07,5276.557815435547,266,Urgent,2021-08-01,Inconclusive,8198,181,4,18,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -770,2021-05-27,25362.31419278356,148,Urgent,2021-06-26,Inconclusive,770,166,2,28,,,,DISCHARGED -771,2019-08-24,44336.26915459241,401,Urgent,2019-09-07,Inconclusive,771,90,1,5,,,,DISCHARGED -772,2022-03-12,5538.761874127573,277,Emergency,2022-03-27,Normal,772,201,0,0,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -773,2022-10-19,16280.90909814606,199,Urgent,2022-10-31,Inconclusive,773,345,4,7,,,,DISCHARGED -774,2022-02-08,8508.149556513565,183,Urgent,2022-02-10,Normal,774,18,0,7,,,,DISCHARGED -775,2020-01-03,10230.631506124004,481,Urgent,2020-01-30,Normal,775,38,1,24,,,,DISCHARGED -776,2019-02-11,41051.670280796825,329,Emergency,2019-02-21,Normal,776,125,1,5,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -777,2019-07-04,23274.304046522768,427,Urgent,2019-07-23,Inconclusive,777,450,2,16,,,,DISCHARGED -778,2023-04-13,37722.50942761079,257,Emergency,2023-05-06,Abnormal,778,172,3,18,,,,DISCHARGED -778,2022-01-05,48627.34760569774,300,Urgent,2022-01-10,Normal,784,140,0,0,,,,DISCHARGED -779,2020-04-20,47030.328586837946,467,Emergency,2020-05-10,Abnormal,779,241,2,14,,,,DISCHARGED -780,2023-01-31,32654.99224589677,289,Elective,,Abnormal,780,219,4,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",OPEN -781,2019-04-04,29497.37402678459,244,Elective,2019-04-26,Normal,781,125,3,20,,,,DISCHARGED -782,2019-05-18,27302.715218910147,375,Emergency,2019-05-29,Abnormal,782,57,2,2,,,,DISCHARGED -783,2020-11-24,47704.5817939048,296,Urgent,2020-11-29,Inconclusive,783,147,0,29,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -785,2019-04-17,35343.11175166781,189,Emergency,2019-05-03,Abnormal,785,475,1,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -786,2019-12-01,41082.61487121857,359,Elective,2019-12-07,Normal,786,455,4,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -787,2021-11-05,34712.191114828,104,Elective,2021-11-11,Abnormal,787,316,0,8,,,,DISCHARGED -788,2019-08-25,23918.812512706263,165,Elective,2019-09-20,Abnormal,788,382,3,26,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -789,2022-06-26,8749.923730892473,295,Emergency,2022-07-12,Inconclusive,789,360,3,15,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -790,2020-07-17,25970.86613875968,235,Elective,2020-07-25,Inconclusive,790,422,1,23,,,,DISCHARGED -791,2019-07-14,20536.00918132653,119,Urgent,2019-08-13,Normal,791,0,1,12,,,,DISCHARGED -792,2020-12-26,17232.967197593738,143,Urgent,2021-01-08,Inconclusive,792,386,4,18,,,,DISCHARGED -793,2023-08-05,22420.439275320496,200,Urgent,,Inconclusive,793,460,4,26,,,,OPEN -794,2022-01-24,43237.62811458214,472,Elective,2022-02-05,Normal,794,347,1,17,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -795,2023-01-29,11296.566023574776,123,Elective,2023-02-11,Abnormal,795,189,1,20,,,,DISCHARGED -796,2019-01-01,8476.740871912792,262,Urgent,2019-01-24,Normal,796,190,3,11,,,,DISCHARGED -797,2021-12-15,36408.22625238741,135,Elective,2022-01-10,Inconclusive,797,368,1,27,,,,DISCHARGED -798,2022-02-28,19484.05123974328,242,Elective,2022-03-29,Inconclusive,798,408,2,28,,,,DISCHARGED -799,2020-11-19,13608.178967324164,304,Emergency,2020-12-15,Inconclusive,799,311,0,11,,,,DISCHARGED -800,2021-07-17,25004.26860951412,416,Emergency,2021-07-18,Inconclusive,800,416,1,0,,,,DISCHARGED -801,2021-01-29,37667.41225733959,468,Emergency,2021-02-15,Inconclusive,801,421,4,19,,,,DISCHARGED -802,2019-02-16,16236.094943725762,273,Urgent,2019-03-18,Normal,802,116,2,7,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -803,2022-03-14,41603.68076690758,396,Elective,2022-04-11,Normal,803,133,4,16,,,,DISCHARGED -804,2021-05-24,30732.69838336576,292,Elective,2021-06-19,Inconclusive,804,57,2,20,,,,DISCHARGED -805,2019-07-08,29222.32718305689,355,Emergency,2019-07-26,Inconclusive,805,43,1,27,,,,DISCHARGED -806,2020-06-25,39541.66394307452,351,Emergency,2020-07-11,Normal,806,172,0,19,,,,DISCHARGED -807,2019-05-02,44595.209917483306,240,Emergency,2019-05-17,Normal,807,159,4,21,,,,DISCHARGED -808,2020-05-12,11167.18406266578,395,Emergency,2020-06-07,Inconclusive,808,172,2,6,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -809,2020-09-26,42381.33687268156,194,Elective,2020-10-05,Normal,809,316,3,8,,,,DISCHARGED -810,2022-03-21,11523.996974043888,319,Urgent,2022-03-27,Normal,810,302,1,16,,,,DISCHARGED -811,2022-03-12,38730.91328230767,130,Elective,2022-03-24,Normal,811,148,0,26,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -812,2020-03-02,16887.30253383948,340,Urgent,2020-03-20,Inconclusive,812,79,1,9,,,,DISCHARGED -813,2022-03-03,34572.735332712386,393,Urgent,2022-03-16,Abnormal,813,373,3,3,,,,DISCHARGED -814,2023-07-06,47900.18864530278,440,Urgent,,Normal,814,212,0,21,,,,OPEN -815,2019-09-05,24048.26659662773,370,Emergency,2019-09-11,Normal,815,202,3,25,,,,DISCHARGED -816,2023-07-29,41011.11902185864,268,Elective,,Inconclusive,816,251,1,6,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",OPEN -817,2020-06-19,9100.186853541489,303,Elective,2020-07-05,Inconclusive,817,228,2,6,,,,DISCHARGED -818,2023-06-21,35435.875071456,363,Emergency,2023-07-16,Inconclusive,818,163,1,7,,,,DISCHARGED -819,2023-05-09,28265.168342965186,119,Urgent,2023-06-06,Normal,819,226,1,29,,,,DISCHARGED -820,2019-08-24,1318.430280551725,129,Emergency,2019-09-05,Inconclusive,820,146,1,25,,,,DISCHARGED -820,2020-12-10,28266.4288766217,165,Emergency,2020-12-22,Abnormal,7244,19,4,23,,,,DISCHARGED -821,2022-09-21,43949.34658226591,278,Emergency,2022-09-30,Inconclusive,821,440,3,23,,,,DISCHARGED -822,2021-03-12,17245.167346985596,290,Emergency,2021-03-18,Abnormal,822,401,3,7,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -823,2023-03-16,19562.89780892543,326,Emergency,,Inconclusive,823,46,3,15,,,,OPEN -824,2021-01-24,32220.03922731605,201,Emergency,2021-02-04,Normal,824,232,4,11,,,,DISCHARGED -825,2023-07-25,33854.29689630168,461,Elective,,Abnormal,825,304,2,14,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -826,2019-06-04,45936.95113416006,244,Elective,2019-06-18,Normal,826,13,1,7,,,,DISCHARGED -827,2022-06-05,33301.630993388186,464,Urgent,2022-06-18,Abnormal,827,142,2,21,,,,DISCHARGED -828,2021-03-28,2634.757862571336,210,Urgent,2021-04-08,Normal,828,414,4,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -829,2023-09-19,43274.06974916167,268,Elective,2023-10-14,Normal,829,0,3,2,,,,DISCHARGED -830,2020-02-06,1606.2851913733862,491,Elective,2020-02-16,Inconclusive,830,372,1,21,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -831,2019-06-24,44358.02707896767,108,Emergency,2019-07-15,Inconclusive,831,53,0,20,,,,DISCHARGED -832,2023-07-21,25817.69518494261,163,Emergency,2023-07-22,Abnormal,832,373,0,15,,,,DISCHARGED -833,2018-11-03,43952.390215232524,343,Urgent,2018-11-13,Inconclusive,833,258,2,14,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -834,2023-04-10,23210.81233488537,443,Urgent,2023-04-25,Abnormal,834,143,3,23,,,,DISCHARGED -835,2021-10-22,47469.083166671415,355,Elective,2021-11-18,Inconclusive,835,470,0,3,,,,DISCHARGED -836,2019-02-24,8945.823548135064,146,Urgent,2019-03-23,Abnormal,836,440,2,19,,,,DISCHARGED -837,2019-04-01,45779.07518868438,232,Urgent,2019-04-24,Normal,837,458,4,28,,,,DISCHARGED -838,2021-12-14,14964.071601818474,376,Elective,2022-01-10,Inconclusive,838,11,2,15,,,,DISCHARGED -838,2022-07-29,25037.67180078681,231,Elective,2022-08-20,Normal,9322,329,2,9,,,,DISCHARGED -839,2022-03-16,32000.19585303313,292,Emergency,2022-03-31,Normal,839,223,2,10,,,,DISCHARGED -840,2023-01-29,18696.998297113296,266,Emergency,,Normal,840,271,1,25,,,,OPEN -841,2023-07-06,13108.510887048702,209,Elective,,Abnormal,841,455,2,28,,,,OPEN -842,2019-08-23,17892.930585551392,230,Elective,2019-09-15,Inconclusive,842,357,2,4,,,,DISCHARGED -843,2023-01-08,32942.42402901524,395,Elective,2023-01-23,Normal,843,459,1,10,,,,DISCHARGED -843,2023-06-03,21495.738111991657,310,Emergency,,Abnormal,8227,407,1,28,,,,OPEN -843,2020-02-29,21584.28724643771,249,Emergency,2020-03-04,Normal,8643,155,4,12,,,,DISCHARGED -844,2022-11-26,43613.48843229857,315,Emergency,2022-12-04,Inconclusive,844,372,3,14,,,,DISCHARGED -845,2023-02-20,19989.16791824609,449,Urgent,2023-03-14,Abnormal,845,7,0,5,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -846,2022-04-05,45853.988019674616,401,Urgent,2022-04-21,Normal,846,121,0,15,,,,DISCHARGED -847,2019-01-21,20230.445508408902,473,Elective,2019-02-06,Normal,847,347,2,14,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -848,2022-12-31,33070.80494268545,265,Elective,2023-01-18,Normal,848,163,4,10,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -849,2020-09-01,26105.14343227611,185,Emergency,2020-09-11,Normal,849,89,2,19,,,,DISCHARGED -850,2020-12-30,19835.730466945995,289,Elective,2021-01-03,Normal,850,135,0,1,,,,DISCHARGED -851,2019-08-09,36906.24048364317,417,Urgent,2019-08-28,Abnormal,851,185,1,27,,,,DISCHARGED -852,2022-04-30,30810.30608675105,429,Emergency,2022-05-25,Normal,852,315,3,27,,,,DISCHARGED -853,2019-10-04,9766.823867104662,133,Emergency,2019-10-12,Abnormal,853,177,4,29,,,,DISCHARGED -854,2019-05-18,36594.910736133126,453,Elective,2019-05-27,Normal,854,27,1,1,,,,DISCHARGED -855,2021-11-05,30615.00910167529,332,Emergency,2021-12-05,Inconclusive,855,219,3,11,,,,DISCHARGED -856,2020-04-08,42871.49405310083,374,Elective,2020-05-01,Normal,856,356,4,15,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -857,2022-05-19,43266.509988288686,435,Elective,2022-06-06,Abnormal,857,40,4,18,,,,DISCHARGED -859,2023-05-03,14317.380703337723,186,Urgent,2023-05-23,Normal,859,227,0,1,,,,DISCHARGED -860,2023-09-09,43128.45216346048,495,Emergency,2023-10-01,Normal,860,191,1,16,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -861,2019-09-18,43281.86685234736,452,Urgent,2019-10-05,Abnormal,861,410,4,13,,,,DISCHARGED -862,2021-03-12,22223.745822063414,118,Emergency,2021-03-29,Inconclusive,862,446,4,23,,,,DISCHARGED -863,2021-06-06,16817.144711016495,228,Emergency,2021-07-06,Abnormal,863,144,3,27,,,,DISCHARGED -863,2018-11-21,20367.622838115523,287,Urgent,2018-12-04,Inconclusive,1257,200,0,15,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -863,2020-04-07,2378.1039321950675,473,Emergency,2020-04-13,Inconclusive,1497,416,2,4,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -863,2022-02-24,12041.40099992239,117,Elective,2022-03-22,Abnormal,3367,211,0,9,,,,DISCHARGED -864,2021-09-05,34122.433884829334,120,Emergency,2021-09-19,Normal,864,460,2,16,,,,DISCHARGED -865,2022-07-07,25511.207481400503,348,Elective,2022-08-05,Inconclusive,865,219,1,12,,,,DISCHARGED -866,2020-09-05,37736.47265419371,232,Urgent,2020-10-01,Inconclusive,866,239,1,15,,,,DISCHARGED -867,2019-02-16,32010.07869799625,258,Urgent,2019-03-06,Inconclusive,867,412,4,8,,,,DISCHARGED -868,2022-04-07,42041.61274595943,455,Urgent,2022-04-14,Normal,868,396,1,23,,,,DISCHARGED -869,2023-06-22,37221.71893792978,382,Urgent,2023-07-15,Inconclusive,869,45,4,3,,,,DISCHARGED -869,2020-11-25,19218.478593176973,262,Urgent,2020-12-05,Normal,961,34,0,23,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -870,2021-04-23,25159.923894608342,233,Elective,2021-05-22,Abnormal,870,252,1,28,,,,DISCHARGED -871,2020-04-06,27165.33484701917,215,Emergency,2020-04-26,Normal,871,389,0,27,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -872,2023-03-31,49401.13272733071,263,Emergency,2023-04-02,Inconclusive,872,81,0,28,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -873,2021-07-04,24982.046872796636,475,Urgent,2021-07-10,Normal,873,370,1,25,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -874,2023-09-24,4861.598349460129,483,Emergency,2023-10-14,Normal,874,255,0,15,,,,DISCHARGED -875,2019-01-14,39645.26780450172,277,Emergency,2019-02-07,Normal,875,196,1,22,,,,DISCHARGED -875,2020-10-06,7811.272407607505,424,Urgent,2020-10-20,Abnormal,3345,302,1,26,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -876,2021-03-13,10776.4006344024,430,Emergency,2021-04-07,Normal,876,408,1,10,,,,DISCHARGED -877,2022-12-02,15731.156626312792,340,Emergency,2022-12-07,Normal,877,449,2,6,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -878,2019-10-02,38598.05972204022,120,Emergency,2019-10-10,Inconclusive,878,9,0,16,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -879,2023-06-03,41324.84835503696,132,Urgent,2023-06-07,Normal,879,311,3,21,,,,DISCHARGED -880,2021-11-25,24578.1849883086,437,Emergency,2021-12-16,Normal,880,285,1,12,,,,DISCHARGED -880,2021-12-21,38942.641928085446,322,Emergency,2022-01-03,Inconclusive,5393,241,0,3,,,,DISCHARGED -881,2020-05-05,36750.88798882281,457,Elective,2020-06-03,Inconclusive,881,250,4,13,,,,DISCHARGED -882,2023-10-02,9305.999962141696,332,Elective,,Normal,882,364,1,9,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,OPEN -883,2018-11-14,39472.19375652928,337,Elective,2018-11-25,Inconclusive,883,4,1,9,,,,DISCHARGED -884,2021-07-01,21707.77774066421,380,Urgent,2021-07-27,Abnormal,884,118,3,9,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -885,2021-06-15,23549.230665817217,398,Urgent,2021-07-06,Abnormal,885,288,2,26,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -886,2023-08-18,17745.867166260814,312,Emergency,2023-08-20,Inconclusive,886,373,2,11,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -887,2019-11-01,36443.7655273581,497,Emergency,2019-11-06,Normal,887,64,1,1,,,,DISCHARGED -888,2021-04-17,30101.679007294177,269,Urgent,2021-05-03,Inconclusive,888,145,0,25,,,,DISCHARGED -889,2019-06-26,25974.55282800295,317,Elective,2019-07-05,Inconclusive,889,223,4,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -890,2023-10-10,8381.32835687946,175,Urgent,2023-10-26,Normal,890,238,4,8,,,,DISCHARGED -891,2022-01-04,1897.45540969458,247,Elective,2022-01-21,Normal,891,176,0,28,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -892,2019-04-29,10160.57927857945,236,Emergency,2019-05-24,Inconclusive,892,266,1,4,,,,DISCHARGED -893,2020-04-30,16774.2745145328,255,Emergency,2020-05-14,Inconclusive,893,340,4,7,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -894,2022-11-02,20293.670726972658,247,Urgent,2022-11-19,Abnormal,894,281,2,20,,,,DISCHARGED -895,2019-10-05,5223.958945218635,143,Emergency,2019-10-25,Abnormal,895,62,0,13,,,,DISCHARGED -895,2019-11-28,25172.36391680856,299,Urgent,2019-12-25,Inconclusive,8812,216,3,6,,,,DISCHARGED -896,2021-09-30,39148.113565753534,417,Urgent,2021-10-05,Inconclusive,896,341,1,6,,,,DISCHARGED -897,2021-08-28,31040.18118413378,291,Urgent,2021-09-01,Normal,897,314,0,8,,,,DISCHARGED -898,2020-01-02,18793.673611654864,184,Urgent,2020-01-09,Normal,898,282,4,2,,,,DISCHARGED -899,2020-09-25,26851.736552517534,233,Urgent,2020-10-21,Inconclusive,899,176,1,13,,,,DISCHARGED -900,2020-08-09,16011.956739589308,253,Emergency,2020-08-23,Inconclusive,900,460,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -901,2022-01-19,30711.59869089186,370,Elective,2022-02-17,Abnormal,901,416,1,17,,,,DISCHARGED -902,2020-02-03,39174.53901940646,434,Urgent,2020-02-28,Abnormal,902,97,1,11,,,,DISCHARGED -903,2019-12-14,47813.995206288746,382,Elective,2019-12-29,Inconclusive,903,104,2,21,,,,DISCHARGED -904,2023-01-28,32125.16340235134,170,Urgent,2023-02-21,Abnormal,904,98,2,13,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -905,2022-05-23,5244.507979694919,463,Elective,2022-06-13,Inconclusive,905,384,1,25,,,,DISCHARGED -906,2023-07-16,35954.78656801338,470,Urgent,,Normal,906,404,2,25,,,,OPEN -907,2019-12-30,33571.51657135808,178,Urgent,2020-01-07,Inconclusive,907,495,0,27,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -908,2019-09-20,27603.99620970626,139,Urgent,2019-10-19,Inconclusive,908,310,2,12,,,,DISCHARGED -909,2023-09-05,38216.1304996964,394,Emergency,,Inconclusive,909,5,2,13,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",OPEN -910,2021-10-12,14083.523234672955,443,Urgent,2021-11-03,Inconclusive,910,475,1,8,,,,DISCHARGED -911,2020-06-19,4865.551837410914,386,Elective,2020-06-28,Normal,911,464,0,18,,,,DISCHARGED -912,2023-09-04,41477.44480839696,102,Elective,2023-09-21,Normal,912,196,3,25,,,,DISCHARGED -913,2021-10-23,35830.27002097727,383,Emergency,2021-10-27,Abnormal,913,350,3,1,,,,DISCHARGED -914,2018-11-01,29563.97141899037,232,Urgent,2018-11-05,Normal,914,132,4,10,,,,DISCHARGED -915,2020-08-27,22616.997534497696,195,Emergency,2020-09-21,Abnormal,915,357,2,16,,,,DISCHARGED -916,2019-07-09,32362.671074725786,290,Emergency,2019-07-13,Normal,916,258,2,1,,,,DISCHARGED -917,2020-01-13,10669.98505124486,317,Urgent,2020-02-08,Abnormal,917,436,0,18,,,,DISCHARGED -918,2019-04-05,2936.565609257423,172,Emergency,2019-04-23,Abnormal,918,22,3,6,,,,DISCHARGED -919,2021-03-25,21498.0280853457,193,Emergency,2021-04-18,Abnormal,919,484,4,17,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -919,2021-06-28,38306.006058053696,338,Emergency,2021-07-14,Abnormal,5133,52,0,12,,,,DISCHARGED -920,2020-11-20,42322.8899013448,148,Urgent,2020-11-26,Inconclusive,920,164,2,4,,,,DISCHARGED -921,2023-03-27,3345.578641233508,467,Emergency,2023-04-13,Abnormal,921,201,3,17,,,,DISCHARGED -922,2019-12-05,49142.72430759861,230,Elective,2020-01-04,Inconclusive,922,457,4,22,,,,DISCHARGED -923,2022-01-24,10571.488648119745,316,Emergency,2022-02-04,Inconclusive,923,82,1,25,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -924,2019-09-03,45454.86612459802,146,Emergency,2019-09-14,Inconclusive,924,144,3,23,,,,DISCHARGED -925,2022-10-13,22547.49600417364,491,Emergency,2022-10-21,Inconclusive,925,84,4,23,,,,DISCHARGED -926,2020-01-18,28481.45552991867,216,Urgent,2020-02-17,Inconclusive,926,77,0,28,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -926,2019-08-18,48559.37637880373,160,Emergency,2019-08-19,Inconclusive,9844,456,1,15,,,,DISCHARGED -927,2019-03-05,22508.974337063948,453,Emergency,2019-03-07,Normal,927,365,4,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -928,2019-11-01,5767.5005933531065,126,Emergency,2019-11-04,Normal,928,0,4,7,,,,DISCHARGED -929,2023-07-10,19068.02251914365,269,Elective,2023-07-12,Abnormal,929,50,2,25,,,,DISCHARGED -930,2020-08-12,7878.617814509283,145,Emergency,2020-08-27,Normal,930,172,3,14,,,,DISCHARGED -931,2019-06-20,25286.452650626565,360,Emergency,2019-06-28,Normal,931,204,2,24,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -932,2019-09-14,46304.035954818726,230,Elective,2019-09-25,Normal,932,259,1,0,,,,DISCHARGED -933,2021-11-12,3552.858736293684,345,Elective,2021-11-30,Inconclusive,933,445,4,27,,,,DISCHARGED -935,2021-12-01,47788.8009909394,354,Urgent,2021-12-13,Normal,935,448,2,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -935,2019-12-21,11346.018564147746,315,Emergency,2020-01-10,Abnormal,2538,368,3,29,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -936,2023-02-05,11876.302287752913,399,Urgent,2023-02-11,Abnormal,936,487,1,14,,,,DISCHARGED -937,2021-03-20,40247.68976367777,401,Urgent,2021-03-24,Inconclusive,937,287,0,13,,,,DISCHARGED -938,2022-10-26,47776.28688258328,247,Emergency,2022-11-06,Normal,938,33,2,13,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -939,2021-12-03,28830.111661622268,293,Urgent,2021-12-27,Normal,939,347,1,9,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -940,2020-04-16,32979.14624516548,313,Elective,2020-05-06,Abnormal,940,94,0,1,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -941,2020-03-31,25359.56450450433,468,Emergency,2020-04-13,Inconclusive,941,71,2,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -941,2022-06-05,25953.25397070174,119,Urgent,2022-06-14,Abnormal,7095,38,1,5,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -942,2023-04-21,6651.500496220246,124,Urgent,2023-05-11,Normal,942,153,1,29,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -943,2022-07-25,43965.77871435453,470,Urgent,2022-08-14,Abnormal,943,249,2,16,,,,DISCHARGED -944,2022-04-29,9964.062953370332,375,Emergency,2022-04-30,Normal,944,161,1,4,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -945,2019-10-16,37502.40471040786,449,Emergency,2019-11-03,Abnormal,945,437,4,4,,,,DISCHARGED -946,2021-09-30,28440.88139197424,500,Elective,2021-10-26,Inconclusive,946,117,2,14,,,,DISCHARGED -947,2020-01-11,18225.08407736348,422,Urgent,2020-01-26,Abnormal,947,258,1,14,,,,DISCHARGED -948,2023-08-18,47902.6238348975,314,Emergency,,Normal,948,378,0,19,,,,OPEN -949,2022-08-21,11762.22363373898,237,Elective,2022-09-13,Abnormal,949,305,0,10,,,,DISCHARGED -950,2021-11-25,11272.087766056598,349,Urgent,2021-12-04,Normal,950,267,4,4,,,,DISCHARGED -951,2018-12-21,26589.43327035366,443,Emergency,2018-12-26,Normal,951,448,2,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -952,2021-03-29,44765.71675128714,437,Elective,2021-04-02,Abnormal,952,53,1,0,,,,DISCHARGED -953,2021-06-09,30217.25113277229,295,Emergency,2021-06-28,Normal,953,235,1,10,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -954,2021-11-25,12617.485301244877,408,Emergency,2021-12-18,Abnormal,954,388,0,10,,,,DISCHARGED -955,2020-12-06,42052.52487859687,308,Elective,2021-01-05,Normal,955,477,4,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -956,2020-12-22,49125.15774544177,430,Elective,2021-01-02,Inconclusive,956,221,0,22,,,,DISCHARGED -956,2021-05-17,22623.172376866787,484,Urgent,2021-05-20,Inconclusive,3188,250,0,7,,,,DISCHARGED -957,2020-04-01,17704.741580046102,127,Emergency,2020-04-22,Abnormal,957,312,4,1,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -958,2022-08-25,39459.43626937456,188,Emergency,2022-09-17,Abnormal,958,400,2,14,,,,DISCHARGED -959,2021-06-01,6897.100320164001,164,Emergency,2021-06-24,Abnormal,959,111,1,22,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -960,2021-10-23,33283.28469600307,257,Elective,2021-11-06,Normal,960,254,2,21,,,,DISCHARGED -962,2019-06-15,14267.909879475064,159,Urgent,2019-07-04,Normal,962,302,3,8,,,,DISCHARGED -963,2019-03-19,11289.8475918743,481,Urgent,2019-04-03,Normal,963,406,3,14,,,,DISCHARGED -964,2022-09-30,49565.02133019294,125,Urgent,2022-10-18,Abnormal,964,206,3,7,,,,DISCHARGED -965,2020-10-22,9932.191489694784,135,Emergency,2020-11-07,Inconclusive,965,228,4,29,,,,DISCHARGED -966,2020-10-17,2737.6761092319102,370,Urgent,2020-10-23,Normal,966,340,0,15,,,,DISCHARGED -967,2023-05-18,39737.3294795954,144,Emergency,2023-06-03,Abnormal,967,397,2,26,Frequent headaches and light sensitivity,"Identify triggers and recommend lifestyle changes, prescribe pain relievers, and explore preventive medications.","G43.9 - Migraine, unspecified",DISCHARGED -968,2019-07-13,32465.12851802168,500,Urgent,2019-07-26,Normal,968,65,1,13,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -969,2023-08-01,49666.60565020357,251,Emergency,2023-08-11,Abnormal,969,74,3,14,,,,DISCHARGED -970,2021-10-12,3975.074524601444,310,Emergency,2021-11-03,Normal,970,434,2,19,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -971,2022-09-29,35582.755821957675,473,Emergency,2022-10-26,Abnormal,971,102,3,29,,,,DISCHARGED -971,2023-06-17,43440.69354324734,158,Elective,2023-06-22,Normal,5309,421,3,12,,,,DISCHARGED -972,2023-07-03,22722.00032027516,232,Elective,,Inconclusive,972,191,1,8,,,,OPEN -973,2021-07-19,37662.66962013407,308,Urgent,2021-08-01,Abnormal,973,251,4,0,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -974,2021-04-10,10035.332962985063,489,Emergency,2021-04-27,Normal,974,225,0,26,,,,DISCHARGED -975,2020-07-12,26153.389223171765,199,Elective,2020-07-26,Normal,975,293,4,5,,,,DISCHARGED -976,2022-01-31,3882.070120919608,284,Elective,2022-02-02,Abnormal,976,305,2,7,,,,DISCHARGED -977,2020-03-07,39221.77786876479,304,Elective,2020-03-20,Abnormal,977,97,4,26,,,,DISCHARGED -978,2023-09-28,20707.31963302498,261,Elective,2023-10-08,Normal,978,337,2,26,,,,DISCHARGED -979,2020-02-02,47443.9975967796,210,Elective,2020-02-26,Normal,979,285,2,19,,,,DISCHARGED -980,2022-08-15,34241.75892783715,262,Urgent,2022-09-02,Normal,980,334,0,17,,,,DISCHARGED -981,2018-11-17,31097.836432076627,285,Emergency,2018-12-08,Abnormal,981,346,1,26,,,,DISCHARGED -982,2018-12-04,18290.27653676672,141,Urgent,2018-12-15,Abnormal,982,434,0,17,,,,DISCHARGED -983,2020-10-12,42685.20052126965,333,Urgent,2020-10-22,Normal,983,446,4,25,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -984,2021-11-11,16471.376988443008,413,Urgent,2021-12-04,Normal,984,481,2,16,,,,DISCHARGED -985,2019-10-25,6982.392907502469,157,Emergency,2019-11-08,Abnormal,985,307,3,20,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -986,2021-10-07,13650.48758976079,465,Emergency,2021-11-03,Inconclusive,986,248,3,15,,,,DISCHARGED -987,2019-06-04,37771.75899331921,169,Elective,2019-06-12,Normal,987,165,2,12,,,,DISCHARGED -988,2019-03-02,44947.469977418456,155,Urgent,2019-03-17,Abnormal,988,480,0,21,,,,DISCHARGED -989,2019-10-13,49910.077615104696,152,Elective,2019-10-24,Inconclusive,989,471,1,3,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -990,2021-01-09,36183.54547596295,343,Urgent,2021-01-24,Inconclusive,990,334,0,3,,,,DISCHARGED -990,2020-03-24,25848.39479521417,428,Elective,2020-04-17,Abnormal,6426,29,2,20,,,,DISCHARGED -991,2020-11-22,12248.576952205853,178,Urgent,2020-11-27,Inconclusive,991,246,2,13,,,,DISCHARGED -992,2019-04-12,6852.501054774294,159,Elective,2019-04-22,Normal,992,105,1,4,,,,DISCHARGED -993,2019-07-24,13393.83069877322,387,Urgent,2019-08-19,Normal,993,50,4,15,,,,DISCHARGED -994,2020-02-04,47549.05086457916,418,Emergency,2020-02-06,Inconclusive,994,80,4,13,,,,DISCHARGED -995,2020-02-02,21293.018508273275,487,Urgent,2020-02-22,Abnormal,995,132,1,29,,,,DISCHARGED -996,2023-04-22,46888.66110954936,266,Urgent,2023-05-20,Normal,996,284,4,13,,,,DISCHARGED -997,2019-10-08,46323.269465520345,142,Emergency,2019-10-18,Abnormal,997,387,3,13,,,,DISCHARGED -998,2021-01-12,47792.23068731463,338,Urgent,2021-02-02,Abnormal,998,137,4,24,,,,DISCHARGED -999,2022-06-14,16530.72821577357,147,Elective,2022-06-27,Inconclusive,999,183,4,23,,,,DISCHARGED -1000,2022-10-31,16003.554363360294,448,Urgent,2022-11-04,Inconclusive,1000,400,4,24,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -1001,2021-03-01,38471.52971748169,123,Urgent,2021-03-16,Normal,1001,329,3,28,,,,DISCHARGED -1002,2020-07-17,19121.37769183429,391,Urgent,2020-08-08,Normal,1002,272,4,13,,,,DISCHARGED -1002,2021-04-17,46258.71307876149,373,Urgent,2021-04-27,Normal,7788,339,3,18,,,,DISCHARGED -1002,2019-12-29,24471.780221569203,453,Urgent,2020-01-13,Inconclusive,7956,471,1,29,,,,DISCHARGED -1003,2020-08-16,17214.85030012984,249,Emergency,2020-09-07,Inconclusive,1003,68,0,2,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1003,2022-11-07,39549.44744884395,185,Urgent,2022-11-11,Inconclusive,9728,33,1,16,,,,DISCHARGED -1004,2021-06-13,30395.38016403744,323,Elective,2021-06-16,Normal,1004,261,0,13,,,,DISCHARGED -1005,2023-03-24,12583.37724666549,138,Urgent,,Normal,1005,52,1,9,,,,OPEN -1005,2021-04-02,24645.5888707156,362,Urgent,2021-04-11,Normal,9741,449,0,12,,,,DISCHARGED -1006,2019-11-04,29672.584690197866,344,Emergency,2019-12-03,Abnormal,1006,204,0,21,,,,DISCHARGED -1007,2022-03-19,29093.794921313485,456,Urgent,2022-04-09,Normal,1007,125,2,3,,,,DISCHARGED -1008,2021-10-01,5327.951953059953,106,Elective,2021-10-03,Abnormal,1008,234,0,10,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1009,2019-11-19,30883.54910563144,179,Urgent,2019-11-20,Inconclusive,1009,42,0,14,,,,DISCHARGED -1010,2020-02-29,44183.98783342684,442,Emergency,2020-03-29,Inconclusive,1010,239,2,14,,,,DISCHARGED -1011,2019-09-06,32279.41242028469,204,Urgent,2019-10-02,Normal,1011,458,4,29,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1012,2019-03-08,14443.89639254573,464,Urgent,2019-03-11,Inconclusive,1012,370,4,23,,,,DISCHARGED -1013,2019-03-03,46044.10392192208,283,Elective,2019-03-28,Normal,1013,110,2,1,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1014,2020-08-10,38551.13450179261,230,Elective,2020-08-21,Inconclusive,1014,248,3,10,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1015,2023-05-10,37858.7038223006,469,Urgent,2023-05-30,Normal,1015,150,0,1,,,,DISCHARGED -1016,2022-04-01,15579.67656848146,462,Urgent,2022-04-06,Inconclusive,1016,182,0,22,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1017,2022-08-14,1427.2402451149244,331,Elective,2022-08-23,Inconclusive,1017,335,2,28,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1018,2023-08-11,13150.658308907794,451,Elective,2023-08-14,Normal,1018,94,2,4,,,,DISCHARGED -1019,2022-11-26,12276.789807472896,156,Urgent,2022-12-14,Inconclusive,1019,458,3,12,,,,DISCHARGED -1020,2023-08-21,13066.624159091592,174,Emergency,,Normal,1020,373,4,0,,,,OPEN -1021,2023-01-24,45391.450019714095,368,Urgent,,Normal,1021,399,1,6,,,,OPEN -1022,2023-02-06,13280.426895480943,462,Elective,2023-02-17,Abnormal,1022,7,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -1023,2021-09-20,18317.992713206717,467,Urgent,2021-10-14,Abnormal,1023,387,0,9,,,,DISCHARGED -1024,2023-06-03,44578.6597471159,253,Urgent,2023-06-26,Normal,1024,359,2,5,,,,DISCHARGED -1025,2023-01-01,29716.842497167323,230,Elective,,Normal,1025,387,3,19,,,,OPEN -1026,2020-11-20,44421.37049001882,153,Urgent,2020-11-21,Abnormal,1026,183,4,11,,,,DISCHARGED -1027,2023-06-12,20528.41951121232,400,Urgent,,Normal,1027,280,3,12,,,,OPEN -1028,2021-10-02,25161.661687536573,136,Emergency,2021-10-23,Abnormal,1028,194,4,23,,,,DISCHARGED -1028,2020-01-23,27722.667560162197,299,Elective,2020-02-09,Abnormal,5837,351,0,27,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1028,2019-05-04,8364.857568959138,375,Elective,2019-05-14,Inconclusive,6053,194,1,10,,,,DISCHARGED -1029,2019-01-20,20452.85316313485,431,Emergency,2019-02-16,Normal,1029,154,3,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -1030,2019-08-30,4091.350555563202,257,Emergency,2019-09-11,Abnormal,1030,92,3,1,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -1030,2023-07-21,14486.055387009932,281,Urgent,,Normal,4099,159,1,15,,,,OPEN -1030,2018-12-03,37918.21675397432,112,Urgent,2018-12-13,Normal,9281,433,3,1,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1031,2023-01-25,38877.33284293997,366,Urgent,,Normal,1031,60,3,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -1032,2019-01-01,24469.18264098984,222,Elective,2019-01-27,Normal,1032,121,4,5,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -1033,2021-08-24,1776.283726777765,482,Elective,2021-09-06,Abnormal,1033,50,4,0,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -1034,2021-01-22,10664.308196736294,440,Emergency,2021-02-19,Normal,1034,402,1,10,,,,DISCHARGED -1035,2022-07-17,2226.816011507629,223,Emergency,2022-08-13,Abnormal,1035,276,0,17,,,,DISCHARGED -1036,2021-10-17,44774.41192264778,404,Elective,2021-11-06,Normal,1036,4,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1037,2021-09-01,23738.851128162096,468,Urgent,2021-09-05,Abnormal,1037,465,0,17,,,,DISCHARGED -1038,2019-01-22,36909.15835854595,262,Emergency,2019-01-29,Inconclusive,1038,91,1,29,,,,DISCHARGED -1039,2019-04-07,9804.144829260367,157,Elective,2019-05-05,Normal,1039,169,1,27,,,,DISCHARGED -1039,2021-10-16,17558.771795464298,290,Urgent,2021-10-17,Abnormal,3293,316,4,0,,,,DISCHARGED -1040,2023-07-22,11277.168487143856,395,Elective,2023-07-26,Inconclusive,1040,21,3,18,,,,DISCHARGED -1041,2020-02-11,38109.40028920199,344,Emergency,2020-02-13,Normal,1041,404,2,15,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1042,2022-03-16,37537.0934864418,115,Emergency,2022-04-01,Abnormal,1042,325,1,25,,,,DISCHARGED -1043,2022-10-01,32755.08364614499,498,Emergency,2022-10-05,Normal,1043,0,3,6,,,,DISCHARGED -1044,2023-10-09,12639.613943913071,129,Urgent,,Inconclusive,1044,132,0,14,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -1045,2019-09-21,9533.901075690825,385,Elective,2019-09-23,Inconclusive,1045,232,4,28,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1046,2021-09-16,32026.06579071749,480,Elective,2021-10-06,Abnormal,1046,11,0,0,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -1047,2019-11-15,45667.404262042925,187,Emergency,2019-11-27,Inconclusive,1047,345,1,22,,,,DISCHARGED -1048,2020-05-19,49828.86971328996,451,Urgent,2020-06-09,Normal,1048,45,1,20,,,,DISCHARGED -1049,2023-08-14,29466.305618018185,104,Urgent,2023-08-20,Normal,1049,33,0,8,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1050,2021-08-16,13253.460095166196,106,Elective,2021-09-12,Normal,1050,432,1,1,,,,DISCHARGED -1052,2022-06-20,13725.585572467988,218,Emergency,2022-06-28,Normal,1052,77,3,16,,,,DISCHARGED -1053,2020-12-30,47970.554912473664,389,Urgent,2021-01-25,Abnormal,1053,217,1,24,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1054,2020-09-28,16874.34385786162,149,Emergency,2020-10-10,Inconclusive,1054,300,4,23,,,,DISCHARGED -1055,2022-11-23,3980.950877472487,472,Emergency,2022-12-19,Abnormal,1055,410,3,9,,,,DISCHARGED -1056,2023-06-13,30279.07586104645,419,Urgent,,Abnormal,1056,72,2,5,,,,OPEN -1057,2021-11-21,48363.46949168556,317,Emergency,2021-11-25,Abnormal,1057,281,1,4,,,,DISCHARGED -1058,2021-08-30,9142.466559530152,437,Emergency,2021-09-04,Abnormal,1058,248,1,7,,,,DISCHARGED -1059,2021-06-15,25761.41803889061,282,Urgent,2021-06-26,Abnormal,1059,46,4,7,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1060,2019-02-26,10540.626324518766,319,Urgent,2019-02-27,Abnormal,1060,120,4,29,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1061,2023-07-22,30243.63012895959,449,Elective,2023-08-08,Normal,1061,213,0,4,,,,DISCHARGED -1062,2023-05-04,8156.690305870477,410,Urgent,,Abnormal,1062,238,0,11,,,,OPEN -1063,2021-12-25,24424.22559421633,264,Emergency,2022-01-17,Abnormal,1063,55,0,6,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -1064,2018-12-22,35172.5191017441,343,Urgent,2019-01-02,Abnormal,1064,349,4,12,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1065,2023-02-10,41657.17672978149,347,Urgent,2023-03-01,Inconclusive,1065,106,0,12,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1066,2020-08-17,44920.1547233997,467,Elective,2020-09-14,Abnormal,1066,318,0,16,,,,DISCHARGED -1067,2020-03-11,32077.001406178097,198,Elective,2020-04-06,Inconclusive,1067,47,2,3,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1068,2019-09-26,25381.415091573832,396,Elective,2019-10-20,Abnormal,1068,60,0,17,,,,DISCHARGED -1068,2021-07-19,28628.99097100425,407,Urgent,2021-07-26,Abnormal,3705,336,1,9,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1069,2021-11-04,46898.20096350798,445,Elective,2021-11-23,Inconclusive,1069,25,4,2,,,,DISCHARGED -1070,2020-02-07,46575.69231142742,249,Emergency,2020-03-02,Normal,1070,291,3,11,,,,DISCHARGED -1071,2020-03-28,43951.99192963962,151,Urgent,2020-03-29,Inconclusive,1071,256,2,0,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -1071,2022-08-09,23904.01991837312,299,Urgent,2022-08-31,Normal,2080,7,4,26,,,,DISCHARGED -1072,2022-02-10,46193.03652568125,290,Elective,2022-02-16,Abnormal,1072,112,4,10,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -1073,2022-01-06,37450.27203193296,348,Elective,2022-01-26,Normal,1073,354,1,17,,,,DISCHARGED -1074,2019-03-06,14720.929669349263,462,Emergency,2019-03-14,Inconclusive,1074,252,0,12,,,,DISCHARGED -1075,2023-04-18,8632.347576091594,482,Emergency,,Abnormal,1075,179,1,16,,,,OPEN -1076,2020-07-24,36803.18173741968,182,Urgent,2020-07-31,Abnormal,1076,206,0,7,,,,DISCHARGED -1077,2020-10-01,47733.26472412944,369,Emergency,2020-10-14,Normal,1077,302,0,19,,,,DISCHARGED -1077,2020-04-03,22908.642678849417,292,Urgent,2020-04-14,Normal,2343,126,4,18,,,,DISCHARGED -1077,2022-02-12,29685.310988178346,418,Urgent,2022-02-13,Inconclusive,9571,55,0,16,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -1078,2019-07-11,25099.690427998063,176,Elective,2019-08-02,Abnormal,1078,213,2,1,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1079,2023-10-19,12447.996620982372,202,Elective,,Inconclusive,1079,13,2,2,,,,OPEN -1080,2019-05-16,49267.52595702954,344,Emergency,2019-06-03,Abnormal,1080,473,2,2,,,,DISCHARGED -1081,2023-05-22,27719.14087727544,452,Urgent,,Abnormal,1081,27,4,5,,,,OPEN -1082,2022-03-15,33080.820074953386,455,Urgent,2022-03-19,Normal,1082,470,1,9,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -1083,2019-05-27,48609.473182639726,283,Emergency,2019-06-08,Normal,1083,77,3,23,,,,DISCHARGED -1085,2019-06-13,23958.47661600233,129,Emergency,2019-06-20,Abnormal,1085,215,0,21,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -1086,2020-01-07,19382.086973287744,134,Urgent,2020-01-28,Inconclusive,1086,385,3,17,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1087,2022-11-04,14226.518027129663,472,Elective,2022-11-13,Inconclusive,1087,364,1,17,,,,DISCHARGED -1088,2022-11-03,26674.5612548506,317,Urgent,2022-11-19,Abnormal,1088,153,1,13,,,,DISCHARGED -1089,2023-04-16,31470.56944624252,392,Elective,2023-05-08,Abnormal,1089,13,4,15,,,,DISCHARGED -1090,2021-06-04,45081.410725158734,287,Elective,2021-06-15,Inconclusive,1090,186,2,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1091,2019-08-28,40959.45695498407,313,Emergency,2019-09-14,Abnormal,1091,311,2,0,,,,DISCHARGED -1092,2022-11-28,24230.372278766685,307,Urgent,2022-12-11,Inconclusive,1092,370,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -1093,2018-11-05,16694.51505391854,281,Emergency,2018-12-03,Abnormal,1093,6,4,22,,,,DISCHARGED -1094,2021-05-10,31626.636262441792,149,Elective,2021-05-24,Normal,1094,2,4,24,,,,DISCHARGED -1095,2020-12-25,12335.809240705576,125,Emergency,2021-01-24,Abnormal,1095,110,0,4,,,,DISCHARGED -1096,2020-10-05,2987.5399188342394,382,Emergency,2020-10-17,Inconclusive,1096,406,2,26,,,,DISCHARGED -1097,2018-12-05,20832.09607910485,255,Urgent,2018-12-06,Inconclusive,1097,237,1,0,,,,DISCHARGED -1098,2019-01-02,39624.18294525288,396,Urgent,2019-01-07,Inconclusive,1098,362,3,20,,,,DISCHARGED -1099,2021-11-12,36578.7696378829,110,Elective,2021-11-18,Inconclusive,1099,238,2,26,,,,DISCHARGED -1099,2020-06-07,36414.4418703498,308,Elective,2020-07-01,Normal,2992,492,0,16,,,,DISCHARGED -1099,2020-01-19,41992.04300672076,363,Emergency,2020-01-26,Inconclusive,8021,273,4,9,,,,DISCHARGED -1099,2021-10-29,28768.908112164,410,Elective,2021-11-01,Inconclusive,9009,293,1,11,,,,DISCHARGED -1100,2023-04-10,34658.16021565173,138,Elective,2023-04-17,Abnormal,1100,226,2,24,,,,DISCHARGED -1101,2019-03-24,7244.795094079022,373,Urgent,2019-04-10,Inconclusive,1101,370,3,19,,,,DISCHARGED -1102,2021-12-09,39957.22771485021,364,Elective,2021-12-23,Inconclusive,1102,14,0,24,,,,DISCHARGED -1103,2023-07-10,21935.7261253434,422,Emergency,,Inconclusive,1103,191,0,1,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -1104,2021-01-12,49745.81197663535,301,Elective,2021-02-08,Normal,1104,472,2,22,,,,DISCHARGED -1105,2023-01-15,31022.66273851671,383,Urgent,2023-01-21,Inconclusive,1105,118,3,15,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1105,2021-03-06,11184.769841216035,394,Emergency,2021-03-28,Inconclusive,4982,484,0,14,,,,DISCHARGED -1106,2021-11-22,2501.263990397233,207,Elective,2021-11-25,Abnormal,1106,27,1,27,,,,DISCHARGED -1107,2021-01-30,7624.264538383552,188,Elective,2021-02-02,Abnormal,1107,201,0,12,,,,DISCHARGED -1108,2022-08-13,21308.016492603358,154,Elective,2022-08-20,Inconclusive,1108,38,3,17,,,,DISCHARGED -1109,2021-01-16,29610.20697209234,173,Emergency,2021-01-19,Normal,1109,440,4,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1110,2020-03-13,12858.329680820654,358,Elective,2020-03-19,Inconclusive,1110,272,4,19,,,,DISCHARGED -1111,2020-03-03,29766.39782791405,371,Elective,2020-03-09,Inconclusive,1111,230,2,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1112,2021-01-12,46610.82527232745,426,Urgent,2021-02-02,Inconclusive,1112,85,3,13,,,,DISCHARGED -1113,2021-07-30,32756.384594698724,358,Elective,2021-08-24,Inconclusive,1113,473,0,17,,,,DISCHARGED -1114,2020-05-14,12185.838007240294,491,Elective,2020-05-27,Normal,1114,125,0,1,,,,DISCHARGED -1115,2019-08-29,11914.798281312733,494,Elective,2019-09-07,Abnormal,1115,299,4,1,,,,DISCHARGED -1115,2023-09-01,29792.12675672413,205,Urgent,2023-09-29,Inconclusive,8445,24,4,2,,,,DISCHARGED -1116,2020-02-10,29644.047440000428,177,Urgent,2020-03-11,Inconclusive,1116,144,1,4,,,,DISCHARGED -1117,2022-03-18,25598.76277485741,358,Emergency,2022-04-04,Normal,1117,12,4,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1118,2019-01-17,18241.188379800034,289,Emergency,2019-02-06,Normal,1118,211,1,15,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1119,2020-02-07,9714.900553776992,192,Elective,2020-02-27,Inconclusive,1119,24,0,21,,,,DISCHARGED -1119,2021-04-02,16013.55212148886,411,Elective,2021-04-05,Normal,6296,67,1,14,,,,DISCHARGED -1120,2019-10-01,21455.183704736453,181,Elective,2019-10-30,Normal,1120,393,1,11,,,,DISCHARGED -1120,2023-06-04,25989.15288712472,219,Elective,2023-06-08,Abnormal,6509,66,2,29,,,,DISCHARGED -1121,2022-11-22,35612.34900248359,108,Emergency,2022-12-22,Abnormal,1121,232,4,8,,,,DISCHARGED -1122,2018-12-22,2747.307506827188,471,Urgent,2019-01-02,Abnormal,1122,108,1,25,,,,DISCHARGED -1123,2020-04-24,31326.014175631877,495,Elective,2020-04-29,Normal,1123,145,0,13,,,,DISCHARGED -1124,2019-01-13,16580.587544365553,277,Urgent,2019-01-28,Abnormal,1124,110,3,28,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -1125,2023-01-04,47289.62818797012,222,Elective,2023-01-25,Abnormal,1125,227,1,20,,,,DISCHARGED -1126,2021-12-15,48662.63619695368,445,Urgent,2022-01-14,Inconclusive,1126,110,4,15,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1127,2021-09-20,15534.477911539512,151,Elective,2021-10-14,Normal,1127,469,2,10,,,,DISCHARGED -1128,2019-03-23,40822.83972098153,158,Emergency,2019-03-28,Abnormal,1128,33,0,5,,,,DISCHARGED -1129,2019-01-29,13911.047059608863,284,Emergency,2019-02-27,Inconclusive,1129,110,2,9,,,,DISCHARGED -1130,2022-07-27,14043.472437604536,271,Urgent,2022-07-28,Abnormal,1130,263,3,27,,,,DISCHARGED -1131,2023-04-14,33590.344357905844,479,Elective,2023-05-13,Abnormal,1131,423,1,7,,,,DISCHARGED -1132,2022-10-01,1431.34717755332,320,Emergency,2022-10-24,Normal,1132,368,1,15,,,,DISCHARGED -1133,2019-05-14,11831.63541715834,260,Elective,2019-06-01,Abnormal,1133,235,4,2,,,,DISCHARGED -1134,2023-02-09,17234.199011547676,225,Urgent,2023-02-11,Normal,1134,82,1,1,,,,DISCHARGED -1135,2019-05-02,25703.085582405663,253,Emergency,2019-05-14,Normal,1135,41,0,15,,,,DISCHARGED -1136,2022-07-28,8755.079539022758,221,Urgent,2022-07-29,Normal,1136,424,3,18,,,,DISCHARGED -1137,2022-02-05,32719.902818172577,460,Elective,2022-02-27,Normal,1137,100,2,29,,,,DISCHARGED -1138,2022-06-21,37487.55650359803,224,Elective,2022-07-19,Inconclusive,1138,5,3,8,,,,DISCHARGED -1139,2022-05-30,14141.449775284633,306,Elective,2022-06-19,Inconclusive,1139,179,1,15,,,,DISCHARGED -1140,2020-03-18,4218.245750381788,414,Elective,2020-04-08,Abnormal,1140,281,2,21,,,,DISCHARGED -1141,2023-05-16,49113.45390922478,350,Emergency,2023-06-14,Inconclusive,1141,319,4,25,,,,DISCHARGED -1142,2021-06-02,45128.64225953589,157,Elective,2021-06-18,Abnormal,1142,225,3,27,,,,DISCHARGED -1142,2018-12-17,38191.59485354582,461,Urgent,2019-01-04,Abnormal,3581,442,2,3,,,,DISCHARGED -1143,2020-09-18,4217.629177861016,312,Urgent,2020-10-12,Inconclusive,1143,439,2,9,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1144,2019-05-05,17346.7018010093,130,Urgent,2019-05-26,Inconclusive,1144,314,2,18,,,,DISCHARGED -1145,2023-01-23,2504.6657409856825,345,Emergency,2023-02-06,Inconclusive,1145,364,0,12,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -1146,2021-06-06,36225.04466984435,456,Urgent,2021-06-10,Normal,1146,453,3,17,,,,DISCHARGED -1147,2021-10-04,18013.00440749451,393,Urgent,2021-10-25,Abnormal,1147,228,2,14,,,,DISCHARGED -1148,2018-12-01,1776.0583134019848,119,Elective,2018-12-18,Normal,1148,376,3,29,,,,DISCHARGED -1149,2020-06-19,20608.23506557948,358,Urgent,2020-07-10,Abnormal,1149,288,2,3,,,,DISCHARGED -1150,2023-02-02,4057.9869338217113,436,Emergency,2023-02-23,Normal,1150,436,4,8,,,,DISCHARGED -1151,2022-08-09,33228.59669417098,326,Emergency,2022-08-27,Inconclusive,1151,149,4,3,,,,DISCHARGED -1152,2019-10-03,33962.70062173823,493,Urgent,2019-10-04,Normal,1152,276,4,28,,,,DISCHARGED -1153,2021-09-24,22699.013322843228,133,Urgent,2021-10-11,Abnormal,1153,197,1,15,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -1154,2023-10-15,30355.58692744464,465,Urgent,2023-10-25,Inconclusive,1154,69,2,27,,,,DISCHARGED -1155,2022-06-27,44116.83924275791,352,Urgent,2022-07-16,Normal,1155,111,1,20,,,,DISCHARGED -1156,2023-04-24,3801.621321126084,207,Emergency,,Abnormal,1156,3,3,14,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -1157,2018-11-20,20679.393198854417,462,Emergency,2018-11-27,Abnormal,1157,349,1,23,,,,DISCHARGED -1158,2020-03-30,15819.015810341827,336,Elective,2020-04-28,Normal,1158,330,3,1,,,,DISCHARGED -1159,2021-04-28,4586.164218134851,138,Emergency,2021-05-01,Abnormal,1159,445,3,27,,,,DISCHARGED -1160,2022-05-17,19260.10883332154,384,Urgent,2022-05-20,Inconclusive,1160,317,3,26,,,,DISCHARGED -1161,2023-07-03,31763.598391234664,390,Elective,,Normal,1161,349,1,13,,,,OPEN -1162,2019-01-20,26004.681469192798,144,Emergency,2019-02-03,Normal,1162,94,2,2,,,,DISCHARGED -1162,2023-08-26,25423.86355443825,194,Emergency,2023-09-15,Normal,4235,151,1,21,,,,DISCHARGED -1163,2021-04-04,20701.251937371657,424,Emergency,2021-04-07,Normal,1163,310,2,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1164,2019-07-09,43953.82009825218,344,Elective,2019-07-24,Normal,1164,136,2,22,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1165,2019-05-18,41091.16086805388,236,Emergency,2019-05-28,Abnormal,1165,246,3,3,,,,DISCHARGED -1166,2019-03-30,15338.723337240062,294,Elective,2019-04-15,Normal,1166,386,1,29,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1167,2023-06-24,33664.1720915906,406,Urgent,,Abnormal,1167,242,2,0,,,,OPEN -1168,2021-11-23,42956.34212029266,373,Elective,2021-12-10,Inconclusive,1168,30,4,22,,,,DISCHARGED -1168,2021-03-06,17879.64869722793,188,Elective,2021-03-09,Normal,6204,39,2,27,,,,DISCHARGED -1169,2020-03-04,43394.57614947869,158,Urgent,2020-03-23,Normal,1169,228,4,8,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1169,2022-02-09,26631.29428026452,406,Elective,2022-02-17,Inconclusive,8988,35,1,16,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -1170,2022-06-30,14654.938259882,446,Elective,2022-07-30,Normal,1170,407,1,13,,,,DISCHARGED -1171,2022-02-05,48526.46284013904,124,Emergency,2022-02-25,Normal,1171,222,1,16,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1172,2019-01-25,8209.733596227736,306,Urgent,2019-02-24,Inconclusive,1172,5,2,0,,,,DISCHARGED -1173,2022-09-28,38661.43020213124,393,Urgent,2022-10-08,Inconclusive,1173,321,0,9,,,,DISCHARGED -1174,2020-11-23,21983.59675363703,408,Emergency,2020-12-19,Abnormal,1174,467,2,22,,,,DISCHARGED -1175,2020-05-26,7438.198774811782,421,Urgent,2020-06-01,Normal,1175,219,2,15,,,,DISCHARGED -1176,2023-05-04,43050.38925496119,159,Elective,2023-05-27,Normal,1176,74,3,26,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -1177,2021-05-25,40800.26104034731,182,Urgent,2021-05-30,Inconclusive,1177,3,3,24,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1178,2023-06-29,23788.44155249145,171,Emergency,2023-07-08,Inconclusive,1178,334,2,18,,,,DISCHARGED -1179,2020-07-02,2329.716838181408,301,Elective,2020-07-14,Abnormal,1179,133,4,23,,,,DISCHARGED -1180,2019-06-05,18322.625425350245,371,Urgent,2019-06-10,Inconclusive,1180,117,3,24,,,,DISCHARGED -1181,2022-02-04,14597.652841025869,385,Emergency,2022-02-23,Normal,1181,368,2,2,,,,DISCHARGED -1182,2022-09-23,13170.475125703775,109,Elective,2022-10-12,Inconclusive,1182,93,0,27,,,,DISCHARGED -1183,2019-06-30,16353.425227300277,385,Elective,2019-07-12,Normal,1183,485,4,11,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -1184,2020-02-29,10161.065595707933,315,Emergency,2020-03-02,Abnormal,1184,434,1,2,,,,DISCHARGED -1184,2020-11-05,15045.975502391975,476,Emergency,2020-12-03,Normal,9030,61,2,14,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1185,2019-01-14,34922.38297085735,214,Elective,2019-02-11,Inconclusive,1185,440,2,16,,,,DISCHARGED -1186,2019-08-17,40388.82742198076,488,Elective,2019-08-31,Abnormal,1186,193,4,17,,,,DISCHARGED -1187,2021-05-17,29050.357961553014,204,Elective,2021-05-21,Normal,1187,334,3,6,,,,DISCHARGED -1188,2023-01-06,18485.08744282802,414,Elective,2023-01-12,Normal,1188,202,3,18,,,,DISCHARGED -1189,2020-05-08,40928.72103454187,220,Urgent,2020-05-21,Inconclusive,1189,391,3,6,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -1190,2023-10-27,16145.513989435149,206,Emergency,,Abnormal,1190,25,1,4,,,,OPEN -1191,2020-03-21,18997.964142483488,490,Elective,2020-04-18,Abnormal,1191,434,4,25,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1192,2020-08-25,33666.10151448994,399,Emergency,2020-09-03,Normal,1192,172,4,7,,,,DISCHARGED -1193,2021-11-19,21273.63857138902,394,Urgent,2021-12-06,Normal,1193,299,3,20,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -1194,2018-11-16,30593.594112356463,307,Elective,2018-11-25,Abnormal,1194,132,3,15,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -1195,2023-10-18,36081.012362831054,268,Emergency,2023-11-16,Normal,1195,325,0,15,,,,DISCHARGED -1196,2020-04-12,48155.10651485851,231,Urgent,2020-04-24,Normal,1196,409,0,18,,,,DISCHARGED -1197,2021-04-24,6082.668147055431,251,Emergency,2021-05-01,Inconclusive,1197,117,2,24,,,,DISCHARGED -1198,2023-03-14,18848.72342535029,386,Urgent,,Inconclusive,1198,323,2,14,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -1199,2020-03-08,33087.17146681565,470,Elective,2020-03-29,Abnormal,1199,274,4,6,,,,DISCHARGED -1199,2023-03-25,33622.46196643783,390,Urgent,2023-03-26,Inconclusive,7488,211,4,4,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1200,2022-01-08,23371.83356117796,119,Urgent,2022-01-23,Normal,1200,224,1,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1201,2022-05-08,30979.10331267826,330,Urgent,2022-05-17,Inconclusive,1201,19,1,10,,,,DISCHARGED -1202,2021-12-06,22143.025098365524,478,Emergency,2021-12-14,Abnormal,1202,112,0,9,,,,DISCHARGED -1203,2021-12-30,29935.023949114915,212,Emergency,2022-01-13,Normal,1203,139,2,24,,,,DISCHARGED -1203,2022-12-14,45342.83358565388,123,Elective,2023-01-12,Abnormal,1676,46,0,20,,,,DISCHARGED -1203,2018-12-24,26840.033335812244,381,Urgent,2019-01-05,Abnormal,2855,0,0,22,,,,DISCHARGED -1203,2021-06-25,17690.804342238753,165,Emergency,2021-07-05,Normal,8553,89,2,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -1204,2021-05-18,24397.050394984235,267,Urgent,2021-06-14,Normal,1204,141,1,8,,,,DISCHARGED -1205,2022-06-08,12449.000455630903,414,Elective,2022-07-07,Inconclusive,1205,319,2,0,,,,DISCHARGED -1206,2021-01-15,1104.5444222297997,226,Elective,2021-02-13,Abnormal,1206,37,3,19,,,,DISCHARGED -1207,2019-11-12,20771.09576182276,245,Urgent,2019-11-29,Inconclusive,1207,292,3,0,,,,DISCHARGED -1207,2018-12-10,28783.157593200434,171,Emergency,2018-12-21,Abnormal,2282,381,3,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1208,2020-05-22,47923.56136113807,126,Emergency,2020-06-02,Normal,1208,138,4,2,,,,DISCHARGED -1209,2019-07-27,16408.96691858919,278,Elective,2019-08-16,Normal,1209,355,1,1,,,,DISCHARGED -1210,2022-08-08,49690.697911435294,421,Emergency,2022-08-15,Normal,1210,332,1,29,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -1211,2020-05-01,4296.00837447991,182,Emergency,2020-05-13,Abnormal,1211,490,4,3,,,,DISCHARGED -1212,2021-08-02,13061.152620069335,425,Elective,2021-08-20,Inconclusive,1212,258,0,26,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1213,2022-06-29,22714.291173502483,206,Urgent,2022-07-11,Abnormal,1213,160,3,18,,,,DISCHARGED -1213,2022-03-06,44814.38625120392,433,Emergency,2022-04-02,Inconclusive,4593,389,3,10,,,,DISCHARGED -1213,2021-07-13,45312.51788790039,430,Emergency,2021-08-04,Abnormal,9478,177,0,4,,,,DISCHARGED -1214,2019-11-18,26194.244322673203,307,Emergency,2019-12-08,Normal,1214,9,2,28,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -1215,2021-03-07,21357.20858686988,321,Elective,2021-03-08,Abnormal,1215,260,2,23,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -1216,2022-07-22,23936.09270790532,377,Emergency,2022-08-13,Inconclusive,1216,406,1,9,,,,DISCHARGED -1217,2023-09-23,32406.750771743336,320,Elective,2023-10-14,Inconclusive,1217,137,4,23,,,,DISCHARGED -1218,2021-05-07,14524.707446284056,116,Elective,2021-06-03,Inconclusive,1218,171,1,26,,,,DISCHARGED -1219,2020-02-16,26047.705097458056,124,Emergency,2020-02-22,Normal,1219,385,2,22,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1220,2022-04-07,37384.843343099536,177,Urgent,2022-04-13,Abnormal,1220,12,0,7,,,,DISCHARGED -1221,2022-08-07,1521.590578414325,267,Urgent,2022-08-21,Normal,1221,167,1,12,,,,DISCHARGED -1222,2020-02-12,1185.2138790636018,175,Emergency,2020-03-02,Inconclusive,1222,129,3,28,,,,DISCHARGED -1223,2022-09-23,35550.2218680213,289,Elective,2022-10-20,Normal,1223,83,3,4,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -1224,2022-05-30,27851.777932834848,433,Emergency,2022-06-28,Inconclusive,1224,320,0,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1225,2021-11-16,35849.42724682361,135,Urgent,2021-11-30,Normal,1225,318,2,25,,,,DISCHARGED -1226,2022-09-26,18595.633277089997,383,Urgent,2022-10-16,Abnormal,1226,100,3,26,,,,DISCHARGED -1227,2023-05-23,43709.13461108844,200,Urgent,2023-06-12,Normal,1227,328,3,11,,,,DISCHARGED -1228,2019-08-07,36820.77074553299,400,Urgent,2019-08-23,Abnormal,1228,272,4,26,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1229,2021-04-22,12593.553327817548,234,Elective,2021-05-09,Normal,1229,264,1,12,,,,DISCHARGED -1230,2020-10-13,42545.92068919371,311,Emergency,2020-11-09,Abnormal,1230,458,2,21,,,,DISCHARGED -1231,2021-03-22,11561.811843317191,468,Urgent,2021-03-28,Inconclusive,1231,398,1,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -1232,2019-10-21,16971.83619790432,229,Urgent,2019-11-01,Inconclusive,1232,407,2,14,,,,DISCHARGED -1233,2023-10-25,28280.36006787648,439,Emergency,2023-11-17,Inconclusive,1233,37,3,12,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -1233,2021-10-28,39519.36419704959,486,Emergency,2021-10-29,Inconclusive,5862,418,4,0,,,,DISCHARGED -1234,2021-05-21,49898.23155845238,339,Elective,2021-05-28,Normal,1234,93,1,21,,,,DISCHARGED -1235,2020-06-02,10592.25566233709,255,Elective,2020-06-24,Inconclusive,1235,94,3,5,,,,DISCHARGED -1236,2019-08-08,18826.741718490663,409,Elective,2019-08-22,Inconclusive,1236,304,2,10,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1237,2023-10-17,18193.27476480426,183,Elective,2023-10-27,Inconclusive,1237,68,1,12,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -1238,2021-05-04,15446.76075706385,418,Emergency,2021-05-25,Inconclusive,1238,317,1,20,,,,DISCHARGED -1240,2022-07-13,7629.581899678145,437,Elective,2022-08-12,Abnormal,1240,443,3,19,,,,DISCHARGED -1241,2022-10-19,13676.34886679554,193,Elective,2022-10-27,Normal,1241,235,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1241,2020-02-12,9794.33798335858,310,Emergency,2020-02-14,Normal,2677,433,4,10,,,,DISCHARGED -1242,2019-01-31,16330.95706627832,274,Urgent,2019-02-08,Abnormal,1242,333,4,25,,,,DISCHARGED -1243,2021-01-15,36324.42753075232,358,Emergency,2021-02-12,Inconclusive,1243,372,3,10,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1244,2021-06-05,39832.71072190877,181,Elective,2021-06-06,Abnormal,1244,375,2,7,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1245,2023-02-17,42520.49073184942,486,Elective,,Normal,1245,458,3,21,,,,OPEN -1246,2023-03-06,47225.56689242021,283,Urgent,,Inconclusive,1246,136,4,2,,,,OPEN -1247,2021-08-09,2813.0521460089017,185,Urgent,2021-08-21,Abnormal,1247,417,0,27,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -1248,2018-11-14,3380.081744533818,223,Emergency,2018-12-09,Abnormal,1248,75,0,18,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1248,2021-06-07,7380.28809480587,474,Urgent,2021-06-19,Normal,5027,482,1,11,,,,DISCHARGED -1249,2020-08-08,3680.684870384705,252,Elective,2020-08-22,Normal,1249,34,1,5,,,,DISCHARGED -1250,2022-09-17,22505.27524413041,399,Emergency,2022-10-06,Abnormal,1250,0,0,27,,,,DISCHARGED -1251,2022-11-01,44542.30167895572,226,Elective,2022-11-30,Abnormal,1251,295,4,22,,,,DISCHARGED -1252,2022-12-09,10786.778256915602,256,Urgent,2022-12-18,Inconclusive,1252,319,1,7,,,,DISCHARGED -1253,2022-02-17,23021.113540007093,364,Emergency,2022-03-02,Inconclusive,1253,405,3,4,,,,DISCHARGED -1254,2019-07-14,39452.70869998484,208,Urgent,2019-07-21,Normal,1254,59,3,9,,,,DISCHARGED -1255,2019-09-24,45411.31237886845,257,Urgent,2019-10-03,Abnormal,1255,319,4,21,,,,DISCHARGED -1256,2018-11-19,12472.402228018342,459,Emergency,2018-11-29,Normal,1256,348,1,15,,,,DISCHARGED -1258,2020-12-23,30726.948945926037,189,Emergency,2021-01-03,Inconclusive,1258,327,3,11,,,,DISCHARGED -1259,2023-10-14,40386.51935783964,415,Elective,2023-10-29,Normal,1259,266,1,16,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -1260,2019-05-22,28785.336133155757,295,Urgent,2019-06-13,Inconclusive,1260,360,1,5,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1261,2020-04-19,41556.09406666805,143,Urgent,2020-04-25,Normal,1261,228,3,8,,,,DISCHARGED -1262,2021-01-31,12068.35929733992,174,Urgent,2021-03-01,Abnormal,1262,269,0,9,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -1263,2022-01-31,24954.6035244282,112,Urgent,2022-02-05,Abnormal,1263,315,3,19,,,,DISCHARGED -1264,2021-02-10,29575.060941490698,248,Emergency,2021-02-25,Inconclusive,1264,285,4,13,,,,DISCHARGED -1265,2021-04-17,44756.11246332132,377,Emergency,2021-04-22,Abnormal,1265,290,2,13,,,,DISCHARGED -1266,2021-03-08,20416.930256632604,201,Urgent,2021-03-31,Inconclusive,1266,212,3,25,,,,DISCHARGED -1267,2020-10-29,7658.078012170146,154,Urgent,2020-11-18,Inconclusive,1267,164,1,28,,,,DISCHARGED -1268,2023-06-16,3475.838524777997,187,Elective,2023-06-17,Inconclusive,1268,4,1,16,,,,DISCHARGED -1269,2022-12-01,36147.16225697457,150,Elective,2022-12-07,Normal,1269,338,3,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1270,2022-03-11,6564.677593833786,159,Emergency,2022-04-03,Inconclusive,1270,378,2,26,,,,DISCHARGED -1271,2021-06-01,42030.47334133956,329,Urgent,2021-06-18,Inconclusive,1271,77,3,24,,,,DISCHARGED -1272,2023-01-16,4614.166449747308,456,Urgent,2023-02-05,Normal,1272,409,2,15,,,,DISCHARGED -1273,2020-09-12,14948.727919776426,145,Elective,2020-09-16,Normal,1273,61,2,3,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1274,2019-12-13,12937.336655226634,206,Emergency,2019-12-21,Inconclusive,1274,131,4,1,,,,DISCHARGED -1275,2020-11-16,12684.631588335356,341,Emergency,2020-12-06,Normal,1275,88,1,15,,,,DISCHARGED -1275,2019-04-01,34809.32560140672,499,Elective,2019-04-04,Abnormal,2882,236,1,0,,,,DISCHARGED -1276,2023-04-08,4426.441900370795,400,Emergency,2023-04-27,Normal,1276,41,2,2,,,,DISCHARGED -1277,2020-04-26,27763.51164659517,285,Elective,2020-05-20,Inconclusive,1277,88,1,22,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -1278,2022-04-28,23163.8125463224,312,Emergency,2022-04-30,Normal,1278,401,0,10,,,,DISCHARGED -1279,2021-03-27,46220.425450589,230,Elective,2021-04-20,Normal,1279,295,2,15,,,,DISCHARGED -1281,2020-04-25,13816.96822453083,308,Urgent,2020-05-14,Abnormal,1281,327,1,25,,,,DISCHARGED -1281,2019-12-31,30416.09488723861,184,Emergency,2020-01-05,Normal,1289,294,0,17,,,,DISCHARGED -1281,2022-06-26,44132.98157271498,466,Elective,2022-07-02,Inconclusive,6404,103,4,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -1282,2020-12-28,32779.85373503364,219,Elective,2021-01-08,Normal,1282,13,1,8,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -1282,2021-11-24,29191.81853669066,340,Elective,2021-12-09,Inconclusive,5519,287,0,11,,,,DISCHARGED -1283,2018-11-28,20205.83968806844,167,Emergency,2018-12-19,Normal,1283,178,3,28,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1284,2020-10-04,12900.760488393376,184,Emergency,2020-10-18,Inconclusive,1284,124,3,26,,,,DISCHARGED -1285,2020-06-22,30861.775957667694,402,Urgent,2020-06-27,Normal,1285,421,0,17,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -1285,2022-10-05,32177.77606626569,428,Elective,2022-10-24,Abnormal,3708,352,2,4,,,,DISCHARGED -1286,2023-05-12,49450.89339700137,405,Emergency,,Normal,1286,22,2,23,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",OPEN -1287,2022-08-08,5427.744304314314,333,Emergency,2022-08-17,Inconclusive,1287,62,1,28,,,,DISCHARGED -1288,2021-12-09,37926.04072482408,229,Elective,2022-01-05,Abnormal,1288,142,3,28,,,,DISCHARGED -1290,2021-04-28,25082.84787911366,244,Urgent,2021-05-02,Abnormal,1290,480,2,27,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1291,2023-05-19,18473.76612752954,311,Elective,2023-05-24,Normal,1291,152,2,25,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -1292,2022-10-18,4336.557614920836,266,Emergency,2022-10-23,Inconclusive,1292,144,3,7,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -1293,2018-11-09,18763.54096410252,116,Urgent,2018-11-10,Normal,1293,224,4,2,,,,DISCHARGED -1294,2019-05-07,26175.373784489304,296,Emergency,2019-05-08,Normal,1294,494,2,1,,,,DISCHARGED -1294,2019-11-12,1020.337790368703,308,Elective,2019-11-24,Abnormal,4866,449,0,24,,,,DISCHARGED -1295,2022-02-18,27744.82871129207,230,Emergency,2022-02-26,Abnormal,1295,461,1,18,,,,DISCHARGED -1296,2022-03-01,32114.2051477691,151,Elective,2022-03-31,Inconclusive,1296,308,2,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1297,2020-01-03,17802.893119476135,234,Urgent,2020-01-21,Normal,1297,103,2,1,,,,DISCHARGED -1298,2022-07-23,34186.35420136755,122,Urgent,2022-08-03,Inconclusive,1298,103,4,18,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -1299,2022-04-27,14251.922318501358,250,Emergency,2022-05-25,Abnormal,1299,434,0,0,,,,DISCHARGED -1300,2022-05-24,24898.83671104919,304,Emergency,2022-06-12,Inconclusive,1300,38,1,29,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -1301,2021-10-06,1837.0960878260496,164,Elective,2021-11-03,Normal,1301,434,2,26,,,,DISCHARGED -1302,2019-07-31,8319.88193476987,428,Urgent,2019-08-06,Inconclusive,1302,197,1,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -1303,2019-07-13,48030.108538739965,209,Urgent,2019-08-09,Inconclusive,1303,133,3,12,,,,DISCHARGED -1304,2022-08-31,18949.34708044389,375,Urgent,2022-09-19,Abnormal,1304,66,2,22,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -1305,2022-07-30,33793.81315855958,140,Emergency,2022-08-26,Normal,1305,390,2,19,,,,DISCHARGED -1306,2019-08-09,7841.799282829665,450,Urgent,2019-08-29,Abnormal,1306,178,3,16,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1307,2019-04-27,34655.80214795067,462,Urgent,2019-05-27,Abnormal,1307,455,4,2,,,,DISCHARGED -1308,2019-11-17,34967.32611078716,492,Elective,2019-11-26,Normal,1308,41,2,8,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -1309,2019-05-15,35017.44604976795,474,Emergency,2019-06-03,Inconclusive,1309,447,1,4,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1310,2023-07-06,6765.461424476579,122,Elective,2023-07-21,Abnormal,1310,499,0,5,,,,DISCHARGED -1311,2023-04-01,36441.78294344234,411,Urgent,2023-04-26,Normal,1311,14,1,3,,,,DISCHARGED -1311,2022-09-27,39055.06447916271,337,Elective,2022-10-11,Inconclusive,4876,110,4,16,,,,DISCHARGED -1312,2022-11-01,8747.39959765486,151,Emergency,2022-11-08,Inconclusive,1312,156,0,29,,,,DISCHARGED -1313,2023-09-15,12449.34885065373,360,Emergency,2023-10-11,Normal,1313,288,1,20,,,,DISCHARGED -1314,2021-07-14,46983.283342800525,379,Elective,2021-07-18,Inconclusive,1314,499,1,20,,,,DISCHARGED -1315,2020-05-06,47059.5432872028,332,Emergency,2020-05-24,Abnormal,1315,477,3,20,,,,DISCHARGED -1316,2023-02-17,9526.488495913578,317,Urgent,2023-03-16,Inconclusive,1316,230,4,15,,,,DISCHARGED -1317,2020-02-15,42765.054657454704,140,Urgent,2020-03-03,Normal,1317,410,3,15,,,,DISCHARGED -1318,2021-10-07,1297.337603370916,297,Urgent,2021-10-25,Inconclusive,1318,419,0,21,,,,DISCHARGED -1318,2019-12-27,5694.385456881819,101,Emergency,2020-01-06,Inconclusive,8837,156,3,10,,,,DISCHARGED -1319,2019-09-17,30754.00902981249,461,Urgent,2019-10-14,Abnormal,1319,37,4,1,,,,DISCHARGED -1320,2021-10-26,30102.211581868505,112,Emergency,2021-11-13,Normal,1320,440,2,16,,,,DISCHARGED -1321,2022-09-21,27788.64223060028,314,Urgent,2022-10-01,Normal,1321,96,2,14,,,,DISCHARGED -1322,2021-05-15,13263.73829565018,470,Elective,2021-05-18,Normal,1322,484,0,17,,,,DISCHARGED -1323,2022-02-12,5645.578310371213,179,Emergency,2022-03-07,Normal,1323,410,2,28,,,,DISCHARGED -1324,2019-06-29,42292.83341927076,480,Emergency,2019-07-23,Abnormal,1324,438,3,9,,,,DISCHARGED -1324,2022-10-22,25039.32458007894,387,Urgent,2022-11-14,Normal,2952,288,0,5,,,,DISCHARGED -1325,2021-05-24,31035.355260224784,492,Emergency,2021-06-06,Inconclusive,1325,253,4,20,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -1326,2022-06-12,6372.419173600877,385,Elective,2022-06-27,Normal,1326,195,0,15,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1327,2023-10-24,21361.96180425918,333,Urgent,,Abnormal,1327,85,0,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -1328,2018-11-25,40094.83617804797,216,Urgent,2018-12-13,Inconclusive,1328,321,1,11,,,,DISCHARGED -1329,2022-10-14,13784.807039715315,476,Urgent,2022-11-10,Inconclusive,1329,9,1,27,,,,DISCHARGED -1330,2019-05-23,4668.921063194623,116,Emergency,2019-06-08,Normal,1330,4,0,5,,,,DISCHARGED -1331,2023-09-01,14835.440745608956,436,Elective,2023-09-06,Abnormal,1331,122,2,13,,,,DISCHARGED -1331,2020-03-16,6843.934455712214,141,Emergency,2020-03-17,Normal,2816,329,1,25,,,,DISCHARGED -1332,2023-04-02,10685.946269722144,342,Urgent,2023-04-16,Normal,1332,352,4,22,,,,DISCHARGED -1333,2022-01-07,10883.97184434871,239,Urgent,2022-01-16,Abnormal,1333,117,3,15,,,,DISCHARGED -1334,2021-04-23,24593.80209908757,185,Elective,2021-04-28,Inconclusive,1334,293,1,24,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -1335,2022-01-06,44259.74180523009,256,Emergency,2022-01-13,Normal,1335,396,0,6,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -1336,2018-12-30,21804.132185126196,180,Emergency,2019-01-19,Abnormal,1336,158,2,1,,,,DISCHARGED -1337,2019-09-07,7079.1786056247065,140,Elective,2019-10-07,Abnormal,1337,302,3,5,,,,DISCHARGED -1337,2020-12-03,10659.663346045125,134,Emergency,2020-12-20,Abnormal,6436,227,1,8,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1337,2019-09-13,18409.45073823073,291,Elective,2019-09-25,Normal,8457,364,2,6,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -1338,2021-08-14,15092.169812163856,196,Emergency,2021-09-12,Abnormal,1338,215,2,1,,,,DISCHARGED -1339,2021-05-15,37275.94576375411,251,Elective,2021-06-11,Abnormal,1339,435,2,18,,,,DISCHARGED -1340,2019-01-02,15412.399249958517,219,Elective,2019-01-11,Inconclusive,1340,183,0,7,,,,DISCHARGED -1341,2021-04-25,41714.72931861722,199,Emergency,2021-04-29,Normal,1341,14,4,10,,,,DISCHARGED -1341,2019-12-03,42261.106845215625,210,Elective,2020-01-02,Normal,1691,156,2,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1342,2023-10-24,35536.80934367094,255,Elective,2023-11-03,Normal,1342,135,3,3,,,,DISCHARGED -1343,2020-06-01,27514.05218284695,470,Elective,2020-06-14,Abnormal,1343,260,1,15,,,,DISCHARGED -1344,2021-01-18,29342.925787595734,431,Emergency,2021-01-23,Abnormal,1344,156,3,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -1345,2023-06-29,9702.677381655449,448,Elective,2023-07-02,Abnormal,1345,46,0,17,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1346,2022-10-22,9775.692599447482,132,Elective,2022-10-30,Normal,1346,323,0,12,,,,DISCHARGED -1347,2023-01-29,13393.255800566814,400,Emergency,2023-02-04,Normal,1347,331,3,26,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1348,2020-04-01,20614.09441339475,145,Emergency,2020-04-04,Abnormal,1348,172,4,4,,,,DISCHARGED -1348,2020-08-10,17683.872010708623,158,Elective,2020-08-16,Abnormal,8277,129,0,26,,,,DISCHARGED -1349,2019-11-21,30419.75223392837,483,Emergency,2019-12-06,Abnormal,1349,410,0,1,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -1350,2022-04-17,49853.76511681912,357,Urgent,2022-05-16,Abnormal,1350,94,3,10,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -1351,2023-05-18,33738.62525044173,416,Emergency,,Abnormal,1351,114,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",OPEN -1352,2020-05-07,40942.005631729386,113,Urgent,2020-05-14,Inconclusive,1352,242,4,12,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1353,2022-02-21,48270.69141645253,453,Emergency,2022-03-14,Inconclusive,1353,419,4,29,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -1354,2023-02-17,16292.432929931489,134,Emergency,2023-02-19,Normal,1354,291,4,4,,,,DISCHARGED -1355,2020-04-09,26386.82263435522,158,Emergency,2020-04-22,Normal,1355,281,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1356,2020-05-03,32862.3870842997,470,Urgent,2020-05-27,Inconclusive,1356,298,4,13,,,,DISCHARGED -1356,2019-05-22,28071.47714454473,319,Emergency,2019-05-28,Normal,6990,282,4,12,,,,DISCHARGED -1357,2020-12-26,40100.42931606188,147,Elective,2021-01-25,Abnormal,1357,68,1,6,,,,DISCHARGED -1357,2020-05-05,41931.183707035794,178,Emergency,2020-05-06,Inconclusive,9160,147,2,7,,,,DISCHARGED -1358,2023-05-05,2079.178611168977,335,Urgent,2023-05-29,Normal,1358,10,0,17,,,,DISCHARGED -1359,2019-11-02,30348.487459544685,157,Elective,2019-11-28,Abnormal,1359,253,4,6,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1360,2023-03-09,42072.0237379467,298,Emergency,2023-03-18,Normal,1360,329,0,19,,,,DISCHARGED -1360,2021-05-27,25006.88674513295,476,Elective,2021-06-15,Normal,9413,359,3,16,,,,DISCHARGED -1361,2022-11-24,17528.85649141689,488,Urgent,2022-12-17,Normal,1361,37,0,15,,,,DISCHARGED -1362,2023-02-12,28564.792331379434,370,Urgent,,Abnormal,1362,133,1,10,,,,OPEN -1362,2019-06-21,30193.36847627906,156,Urgent,2019-07-05,Abnormal,5131,199,0,18,,,,DISCHARGED -1363,2020-12-16,32097.859166555794,213,Urgent,2020-12-17,Inconclusive,1363,22,0,26,,,,DISCHARGED -1364,2019-03-17,15945.961367968866,247,Urgent,2019-03-26,Abnormal,1364,302,0,27,,,,DISCHARGED -1366,2020-06-04,14618.054341992476,220,Elective,2020-06-10,Abnormal,1366,345,2,0,,,,DISCHARGED -1367,2019-09-01,39707.08205512446,227,Urgent,2019-09-10,Normal,1367,301,2,20,,,,DISCHARGED -1368,2022-12-06,38582.84223966761,366,Emergency,2022-12-28,Normal,1368,362,3,28,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1369,2020-11-18,48273.44967462655,220,Emergency,2020-11-23,Abnormal,1369,395,1,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -1369,2019-10-21,30414.234531776783,449,Urgent,2019-10-28,Inconclusive,2955,217,0,0,,,,DISCHARGED -1369,2020-05-29,4691.08529498244,482,Emergency,2020-06-09,Abnormal,4936,140,0,29,,,,DISCHARGED -1369,2021-05-23,39115.84611259714,450,Urgent,2021-06-11,Inconclusive,8259,103,0,8,,,,DISCHARGED -1370,2021-01-15,2254.6992373283547,411,Elective,2021-02-12,Inconclusive,1370,445,0,18,,,,DISCHARGED -1371,2021-11-19,14018.183322932537,119,Emergency,2021-12-17,Abnormal,1371,209,2,20,,,,DISCHARGED -1372,2022-06-01,17975.293295405925,309,Urgent,2022-06-08,Abnormal,1372,472,3,8,,,,DISCHARGED -1372,2019-08-08,46106.06030651323,420,Emergency,2019-08-09,Normal,3012,480,4,20,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1372,2019-06-17,18676.714498391782,468,Emergency,2019-07-01,Normal,3617,110,1,24,,,,DISCHARGED -1373,2021-04-10,19107.62806985715,336,Elective,2021-04-14,Normal,1373,103,0,9,,,,DISCHARGED -1373,2018-11-28,11888.154593877976,402,Elective,2018-12-04,Normal,4619,315,3,23,,,,DISCHARGED -1373,2020-09-11,35901.92354336211,178,Emergency,2020-10-05,Inconclusive,7079,170,4,22,,,,DISCHARGED -1374,2022-01-31,44696.84341738928,409,Urgent,2022-02-23,Normal,1374,459,3,10,,,,DISCHARGED -1375,2021-04-14,16826.908105432085,444,Elective,2021-04-25,Abnormal,1375,491,2,0,,,,DISCHARGED -1376,2023-10-13,25260.59018586082,377,Emergency,,Normal,1376,355,4,19,,,,OPEN -1377,2023-03-07,43176.1713041612,122,Urgent,2023-03-23,Inconclusive,1377,495,3,24,,,,DISCHARGED -1378,2023-08-18,4953.799293288754,219,Elective,2023-09-12,Inconclusive,1378,323,2,25,,,,DISCHARGED -1379,2022-12-03,11125.163396528716,144,Emergency,2022-12-11,Abnormal,1379,132,3,7,,,,DISCHARGED -1379,2023-08-06,31385.14586292253,386,Urgent,2023-08-18,Abnormal,9631,375,3,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1380,2022-03-15,12716.043597710464,181,Elective,2022-03-16,Abnormal,1380,292,4,11,,,,DISCHARGED -1381,2022-08-21,15835.854309550064,130,Urgent,2022-08-31,Abnormal,1381,327,2,0,,,,DISCHARGED -1382,2021-01-12,41279.31592714954,442,Urgent,2021-01-20,Inconclusive,1382,126,0,9,,,,DISCHARGED -1383,2020-04-11,2839.861412218511,165,Elective,2020-04-24,Normal,1383,105,1,3,,,,DISCHARGED -1384,2019-01-20,2117.911193018509,314,Elective,2019-02-02,Normal,1384,496,4,14,,,,DISCHARGED -1385,2023-03-12,43647.08174336824,457,Urgent,2023-04-09,Inconclusive,1385,91,2,18,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -1385,2020-03-31,23455.934726748477,309,Urgent,2020-04-20,Normal,6751,286,3,5,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1386,2022-04-10,25357.52536212509,241,Elective,2022-04-16,Abnormal,1386,377,2,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -1387,2021-10-08,28462.868455274573,259,Urgent,2021-11-02,Normal,1387,392,1,4,,,,DISCHARGED -1388,2021-09-24,1606.5171857414905,310,Emergency,2021-10-14,Normal,1388,50,1,4,,,,DISCHARGED -1389,2022-01-09,4310.323262295909,334,Emergency,2022-02-03,Inconclusive,1389,28,0,17,,,,DISCHARGED -1390,2020-09-13,34728.988387154386,195,Urgent,2020-10-06,Abnormal,1390,461,0,27,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1391,2020-03-06,44858.631528777136,371,Elective,2020-03-16,Inconclusive,1391,295,1,2,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1392,2020-11-28,1741.1202167185404,129,Emergency,2020-12-07,Normal,1392,296,4,26,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1393,2020-04-16,39550.62926049432,403,Elective,2020-05-15,Inconclusive,1393,213,4,21,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1394,2019-09-05,11827.366098753697,246,Emergency,2019-09-29,Abnormal,1394,266,3,1,,,,DISCHARGED -1395,2018-11-04,2665.3704556912858,266,Elective,2018-11-30,Abnormal,1395,406,0,3,,,,DISCHARGED -1396,2020-03-26,42047.04277967537,316,Elective,2020-04-11,Normal,1396,256,3,17,,,,DISCHARGED -1397,2019-08-03,2441.8910180895077,225,Emergency,2019-08-05,Abnormal,1397,301,0,8,Frequent hiccups,"Identify the underlying cause, prescribe medications if necessary, and recommend lifestyle changes.",R11 - Nausea and vomiting,DISCHARGED -1398,2020-09-27,39439.2358950029,256,Emergency,2020-10-16,Abnormal,1398,100,1,18,,,,DISCHARGED -1399,2019-04-14,9817.682605035849,292,Urgent,2019-04-26,Inconclusive,1399,404,4,25,,,,DISCHARGED -1400,2018-11-02,2012.02631439907,105,Elective,2018-12-01,Inconclusive,1400,345,4,9,,,,DISCHARGED -1401,2019-11-03,22991.51524053853,496,Elective,2019-11-07,Normal,1401,109,1,21,,,,DISCHARGED -1402,2023-10-26,30187.40550164447,247,Emergency,,Normal,1402,419,3,14,,,,OPEN -1403,2019-05-04,47165.29916522435,417,Emergency,2019-06-02,Inconclusive,1403,181,3,0,,,,DISCHARGED -1403,2022-07-25,32270.15203671778,284,Urgent,2022-08-14,Normal,1979,470,2,28,,,,DISCHARGED -1403,2019-10-16,31132.66929952767,248,Emergency,2019-11-13,Inconclusive,7935,312,0,10,,,,DISCHARGED -1404,2023-10-18,21076.97085530908,462,Urgent,2023-11-14,Normal,1404,0,3,13,,,,DISCHARGED -1405,2019-05-19,38584.13621471236,493,Elective,2019-05-29,Abnormal,1405,318,1,9,,,,DISCHARGED -1406,2022-04-16,47519.370031681705,169,Elective,2022-05-11,Abnormal,1406,437,3,18,,,,DISCHARGED -1407,2021-01-02,15437.549708269484,331,Elective,2021-01-27,Normal,1407,54,4,23,,,,DISCHARGED -1408,2023-08-13,36346.61752846077,312,Urgent,,Abnormal,1408,370,0,20,,,,OPEN -1408,2022-03-01,20042.38385555324,251,Elective,2022-03-31,Normal,2675,423,2,15,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1409,2020-09-29,5253.616012329089,261,Emergency,2020-10-15,Abnormal,1409,398,0,7,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -1410,2022-01-11,19484.01734967431,425,Urgent,2022-01-16,Abnormal,1410,148,4,1,,,,DISCHARGED -1410,2019-10-12,49573.399903411984,177,Urgent,2019-10-27,Normal,2634,430,4,22,,,,DISCHARGED -1411,2019-06-21,17698.27973352936,484,Emergency,2019-07-12,Normal,1411,456,4,24,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1412,2019-11-03,31901.68206656949,153,Elective,2019-11-24,Inconclusive,1412,308,4,6,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1412,2022-01-11,31842.627595819275,457,Elective,2022-02-09,Abnormal,9237,136,1,18,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1413,2019-03-22,4771.650508572607,360,Elective,2019-03-25,Abnormal,1413,201,2,6,,,,DISCHARGED -1413,2020-11-11,46930.69946037082,484,Emergency,2020-11-15,Abnormal,8235,435,4,14,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1414,2023-08-24,34753.239049473814,282,Elective,2023-09-16,Normal,1414,312,4,7,,,,DISCHARGED -1415,2019-04-24,45302.70126572699,446,Emergency,2019-04-26,Normal,1415,116,3,13,,,,DISCHARGED -1416,2019-08-19,26665.901699254176,287,Emergency,2019-08-27,Abnormal,1416,153,2,0,,,,DISCHARGED -1417,2020-12-06,45499.04021381226,113,Elective,2020-12-13,Abnormal,1417,424,0,28,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -1418,2022-07-21,31427.659167171816,255,Urgent,2022-08-16,Abnormal,1418,290,2,12,,,,DISCHARGED -1419,2020-05-08,26649.65348563137,465,Emergency,2020-06-07,Normal,1419,62,2,2,,,,DISCHARGED -1419,2018-11-08,38150.36697658243,366,Emergency,2018-12-08,Abnormal,9360,243,2,20,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1420,2022-09-24,18092.40030006162,407,Elective,2022-10-12,Inconclusive,1420,24,4,27,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1421,2021-01-04,12784.843889181002,243,Elective,2021-01-17,Abnormal,1421,89,4,5,,,,DISCHARGED -1422,2023-08-30,9661.473049903942,437,Urgent,,Abnormal,1422,74,1,18,,,,OPEN -1423,2021-03-10,7765.808456352994,349,Elective,2021-03-12,Abnormal,1423,293,0,14,,,,DISCHARGED -1424,2022-08-06,25955.496274861285,295,Emergency,2022-08-22,Abnormal,1424,385,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1425,2023-10-10,39456.79757345628,302,Elective,,Abnormal,1425,390,2,20,,,,OPEN -1426,2023-06-11,43070.47038936852,215,Elective,2023-06-27,Inconclusive,1426,209,0,2,,,,DISCHARGED -1426,2021-10-20,12469.12414019698,323,Emergency,2021-11-03,Inconclusive,5658,474,0,3,,,,DISCHARGED -1427,2021-03-20,22444.633462416918,377,Urgent,2021-03-21,Inconclusive,1427,417,1,4,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1428,2022-12-31,36233.19537438693,222,Elective,2023-01-10,Inconclusive,1428,346,3,17,,,,DISCHARGED -1428,2019-03-07,23440.663892346656,461,Emergency,2019-03-17,Inconclusive,9735,16,2,25,,,,DISCHARGED -1429,2023-03-20,21741.70650863805,355,Elective,2023-03-30,Abnormal,1429,127,3,24,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -1430,2019-08-17,32477.750363689145,485,Emergency,2019-09-14,Inconclusive,1430,426,1,9,,,,DISCHARGED -1431,2022-02-09,45335.88699464429,242,Elective,2022-03-05,Abnormal,1431,442,4,7,,,,DISCHARGED -1432,2023-01-23,15451.5159912924,499,Urgent,2023-01-31,Normal,1432,363,0,11,,,,DISCHARGED -1433,2022-03-14,2371.4185014294544,228,Elective,2022-03-30,Inconclusive,1433,250,2,21,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1434,2020-09-23,18301.32584245176,448,Elective,2020-10-22,Inconclusive,1434,178,4,25,,,,DISCHARGED -1435,2022-08-21,22734.364435997264,316,Emergency,2022-09-16,Normal,1435,181,1,26,,,,DISCHARGED -1436,2023-03-06,44027.39730508172,477,Emergency,2023-03-20,Normal,1436,151,3,2,,,,DISCHARGED -1437,2022-05-09,49071.6153727576,169,Urgent,2022-05-10,Normal,1437,24,0,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1438,2020-10-27,14571.144107607395,428,Urgent,2020-10-29,Abnormal,1438,454,2,17,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1439,2021-10-07,26424.20607939292,114,Emergency,2021-10-29,Normal,1439,179,4,22,,,,DISCHARGED -1440,2019-11-15,14923.14708562106,472,Urgent,2019-12-05,Normal,1440,197,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1442,2023-10-11,29485.75542112056,213,Elective,2023-10-14,Abnormal,1442,343,0,25,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -1443,2021-12-01,10791.325616137889,317,Emergency,2021-12-02,Abnormal,1443,160,3,0,,,,DISCHARGED -1443,2023-08-20,42274.32778501501,235,Elective,2023-09-13,Inconclusive,2714,176,1,13,,,,DISCHARGED -1444,2021-10-16,30317.09975741035,488,Urgent,2021-11-06,Normal,1444,284,3,21,,,,DISCHARGED -1445,2020-07-12,29767.975467313696,478,Urgent,2020-08-06,Abnormal,1445,62,3,22,,,,DISCHARGED -1446,2019-12-03,4721.403200353537,284,Emergency,2019-12-05,Normal,1446,490,3,12,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1447,2023-02-02,18062.52811261929,181,Emergency,2023-02-05,Inconclusive,1447,149,0,24,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -1448,2023-06-08,4916.296358886948,397,Emergency,2023-07-06,Abnormal,1448,153,0,11,,,,DISCHARGED -1449,2022-10-13,42499.60908630285,281,Elective,2022-11-04,Abnormal,1449,155,1,2,,,,DISCHARGED -1450,2019-01-30,27664.075375883356,111,Urgent,2019-02-25,Normal,1450,369,3,17,,,,DISCHARGED -1451,2019-12-20,43877.65177032784,486,Urgent,2019-12-25,Normal,1451,468,0,20,,,,DISCHARGED -1452,2021-09-06,15696.96699355709,314,Emergency,2021-09-30,Abnormal,1452,48,1,12,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -1453,2020-10-28,28548.355248954325,187,Urgent,2020-10-31,Normal,1453,454,1,14,,,,DISCHARGED -1454,2020-10-11,24120.18404388413,286,Elective,2020-10-16,Inconclusive,1454,336,3,9,,,,DISCHARGED -1454,2021-11-29,9889.490744950002,473,Emergency,2021-12-06,Abnormal,2600,83,2,0,,,,DISCHARGED -1455,2022-09-26,7474.711087373894,325,Urgent,2022-10-13,Abnormal,1455,360,3,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -1456,2021-02-05,24634.73033601485,206,Emergency,2021-02-10,Normal,1456,176,2,5,,,,DISCHARGED -1457,2020-10-28,44104.56514798776,282,Elective,2020-11-21,Inconclusive,1457,147,1,8,,,,DISCHARGED -1458,2021-08-11,14390.020913011787,494,Urgent,2021-09-06,Inconclusive,1458,117,0,9,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1459,2020-11-24,20067.42030581381,131,Elective,2020-12-12,Normal,1459,341,4,14,,,,DISCHARGED -1460,2023-08-23,24156.82001598274,208,Emergency,2023-09-19,Inconclusive,1460,475,1,8,,,,DISCHARGED -1461,2019-08-31,45354.73409867554,181,Emergency,2019-09-02,Abnormal,1461,62,0,22,,,,DISCHARGED -1461,2019-07-15,22135.735416199044,356,Elective,2019-08-10,Abnormal,5216,188,1,13,,,,DISCHARGED -1462,2019-09-07,33576.844385190285,406,Emergency,2019-09-14,Abnormal,1462,359,3,10,,,,DISCHARGED -1463,2021-02-04,36094.08668049679,163,Elective,2021-02-11,Inconclusive,1463,48,2,6,,,,DISCHARGED -1464,2022-04-21,5114.73256005197,485,Urgent,2022-05-03,Abnormal,1464,326,1,23,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1465,2023-04-03,15417.000001193475,423,Urgent,2023-04-10,Normal,1465,256,0,25,,,,DISCHARGED -1466,2022-07-09,14966.189831628875,131,Emergency,2022-08-06,Inconclusive,1466,223,3,29,,,,DISCHARGED -1467,2023-10-02,18283.993899372657,298,Elective,2023-10-06,Inconclusive,1467,140,4,1,,,,DISCHARGED -1468,2019-10-06,30304.375081587805,474,Elective,2019-10-19,Abnormal,1468,477,3,13,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1469,2021-10-13,29356.275590938763,171,Elective,2021-10-25,Normal,1469,214,2,5,,,,DISCHARGED -1470,2020-12-01,34472.084194001654,422,Urgent,2020-12-16,Normal,1470,434,3,4,,,,DISCHARGED -1471,2021-08-17,38743.88147789532,355,Urgent,2021-08-20,Normal,1471,378,4,4,,,,DISCHARGED -1472,2020-05-17,5110.232728208756,349,Urgent,2020-05-22,Inconclusive,1472,439,0,28,,,,DISCHARGED -1472,2021-06-30,14044.392060190456,217,Emergency,2021-07-27,Abnormal,5563,210,1,18,,,,DISCHARGED -1472,2021-07-08,29210.176374035756,126,Emergency,2021-07-15,Abnormal,9026,317,2,18,,,,DISCHARGED -1473,2021-08-15,7536.747469676526,470,Urgent,2021-08-22,Normal,1473,31,4,5,,,,DISCHARGED -1474,2021-12-06,17944.24264921578,430,Emergency,2021-12-16,Normal,1474,157,2,27,,,,DISCHARGED -1475,2021-07-04,47384.05104293734,178,Urgent,2021-07-29,Abnormal,1475,284,3,25,,,,DISCHARGED -1476,2020-09-06,47527.2226044018,272,Urgent,2020-09-27,Abnormal,1476,304,2,28,,,,DISCHARGED -1477,2022-03-28,44490.20985706157,228,Urgent,2022-04-26,Abnormal,1477,428,4,9,,,,DISCHARGED -1478,2022-05-31,48098.55655167212,466,Elective,2022-06-07,Normal,1478,476,1,22,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1479,2023-04-13,33333.405400636926,148,Elective,2023-04-27,Inconclusive,1479,285,1,13,,,,DISCHARGED -1480,2019-04-11,1599.8748640537535,223,Elective,2019-04-23,Inconclusive,1480,143,2,16,,,,DISCHARGED -1481,2019-01-27,30291.16313443074,106,Urgent,2019-02-16,Abnormal,1481,423,0,29,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1482,2021-11-11,24458.10656430833,320,Emergency,2021-12-04,Normal,1482,18,2,2,,,,DISCHARGED -1483,2020-05-11,29896.74820134905,157,Elective,2020-05-15,Abnormal,1483,17,3,27,,,,DISCHARGED -1484,2022-02-02,41940.65611297242,253,Elective,2022-02-28,Normal,1484,256,1,0,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1485,2023-05-31,28835.0472876612,421,Urgent,2023-06-10,Abnormal,1485,77,1,9,,,,DISCHARGED -1486,2020-06-04,6150.015684868643,458,Elective,2020-06-29,Abnormal,1486,370,1,2,,,,DISCHARGED -1487,2023-06-19,26457.314733062405,154,Elective,2023-07-15,Normal,1487,174,0,4,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1488,2022-05-20,7198.770967286122,497,Urgent,2022-05-29,Abnormal,1488,497,0,24,,,,DISCHARGED -1489,2019-12-25,45306.601749417714,402,Urgent,2020-01-19,Inconclusive,1489,193,4,18,,,,DISCHARGED -1490,2019-01-13,17738.069851981614,297,Urgent,2019-01-29,Abnormal,1490,475,2,9,,,,DISCHARGED -1491,2020-05-24,24742.714097824395,258,Urgent,2020-05-28,Inconclusive,1491,112,2,29,,,,DISCHARGED -1493,2020-10-01,49141.0230566944,161,Urgent,2020-10-27,Abnormal,1493,113,3,25,,,,DISCHARGED -1494,2019-03-31,3396.323894291608,144,Emergency,2019-04-11,Inconclusive,1494,221,1,24,,,,DISCHARGED -1495,2021-11-30,49974.16045847918,441,Emergency,2021-12-16,Abnormal,1495,165,0,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1496,2019-07-05,44847.52526813831,137,Urgent,2019-07-11,Normal,1496,434,3,0,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1498,2020-09-30,20086.904045989628,139,Elective,2020-10-03,Normal,1498,318,3,5,,,,DISCHARGED -1499,2022-04-19,13391.602986508997,308,Urgent,2022-05-15,Inconclusive,1499,131,0,8,,,,DISCHARGED -1500,2019-09-04,29167.79216874884,164,Urgent,2019-09-07,Abnormal,1500,384,2,27,,,,DISCHARGED -1501,2019-05-24,37176.7800806692,121,Elective,2019-06-19,Abnormal,1501,263,1,4,,,,DISCHARGED -1502,2021-12-01,18137.14824526985,351,Urgent,2021-12-12,Normal,1502,412,2,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1503,2023-04-11,48554.94871358728,249,Urgent,2023-04-15,Inconclusive,1503,54,3,13,,,,DISCHARGED -1504,2020-08-03,5483.7073453562025,346,Urgent,2020-08-08,Normal,1504,358,1,9,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1505,2019-05-28,46026.91105722429,422,Elective,2019-06-21,Abnormal,1505,130,4,1,,,,DISCHARGED -1506,2020-06-25,42941.61067262114,500,Urgent,2020-07-09,Inconclusive,1506,287,3,4,,,,DISCHARGED -1507,2023-06-23,6718.587381240304,292,Urgent,2023-07-14,Normal,1507,265,2,0,,,,DISCHARGED -1508,2019-06-22,5001.402102076398,147,Elective,2019-07-07,Abnormal,1508,457,2,24,,,,DISCHARGED -1508,2021-06-01,5780.596079973189,414,Elective,2021-06-15,Normal,2759,466,2,9,,,,DISCHARGED -1509,2019-03-25,49877.89864721778,283,Emergency,2019-04-23,Normal,1509,365,0,28,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1510,2019-10-12,44074.03564553098,301,Elective,2019-10-18,Inconclusive,1510,161,3,25,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1511,2021-08-09,5471.482228615109,363,Elective,2021-08-20,Inconclusive,1511,379,1,24,,,,DISCHARGED -1512,2019-07-13,33067.77166015609,263,Elective,2019-08-09,Inconclusive,1512,480,2,21,,,,DISCHARGED -1513,2021-01-17,34596.27497179083,241,Elective,2021-01-31,Inconclusive,1513,86,2,26,,,,DISCHARGED -1513,2022-02-17,21420.41760462032,265,Elective,2022-03-06,Normal,3011,54,0,8,,,,DISCHARGED -1513,2021-04-26,18677.676500513757,366,Elective,2021-05-23,Normal,5961,475,1,29,,,,DISCHARGED -1514,2023-02-24,46542.01178268709,106,Elective,2023-03-22,Abnormal,1514,287,3,2,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1515,2020-07-27,13318.406346446598,379,Urgent,2020-08-03,Inconclusive,1515,177,4,14,,,,DISCHARGED -1516,2020-09-15,29869.756045200484,265,Urgent,2020-09-21,Inconclusive,1516,390,0,3,,,,DISCHARGED -1517,2022-06-09,18176.316545724745,416,Elective,2022-06-16,Normal,1517,348,3,12,,,,DISCHARGED -1518,2021-11-19,43000.54119978862,101,Emergency,2021-12-05,Abnormal,1518,7,4,5,,,,DISCHARGED -1519,2019-08-07,41312.72078255848,222,Urgent,2019-08-11,Abnormal,1519,320,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -1520,2019-04-21,7079.09301546943,345,Urgent,2019-05-11,Abnormal,1520,312,2,16,,,,DISCHARGED -1521,2022-01-17,30326.74369682075,372,Urgent,2022-02-14,Abnormal,1521,246,1,22,,,,DISCHARGED -1521,2022-08-30,46952.67115575456,249,Emergency,2022-09-10,Abnormal,2114,322,4,4,,,,DISCHARGED -1521,2020-12-15,11192.328207796692,114,Emergency,2020-12-18,Normal,9428,471,2,29,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -1522,2020-08-09,35316.192399242354,498,Emergency,2020-08-18,Inconclusive,1522,470,2,14,,,,DISCHARGED -1523,2020-03-04,8511.769699943969,387,Elective,2020-03-20,Normal,1523,442,1,7,,,,DISCHARGED -1524,2022-10-19,36495.692531056055,319,Urgent,2022-11-10,Abnormal,1524,254,3,24,,,,DISCHARGED -1525,2019-12-30,49484.04094772212,336,Elective,2020-01-23,Abnormal,1525,327,2,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1526,2021-01-15,6717.731122851445,471,Urgent,2021-02-05,Abnormal,1526,53,0,23,,,,DISCHARGED -1526,2023-10-11,3414.1350419937626,243,Elective,2023-10-23,Normal,1777,248,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -1527,2020-04-10,13829.91480382067,474,Urgent,2020-04-22,Normal,1527,238,3,0,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1528,2020-08-20,32230.718790583487,435,Emergency,2020-08-30,Inconclusive,1528,228,4,0,,,,DISCHARGED -1529,2021-04-06,29074.919762426194,198,Elective,2021-04-12,Normal,1529,66,1,6,,,,DISCHARGED -1529,2022-05-10,8473.007721982092,179,Urgent,2022-05-27,Normal,6859,50,0,21,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1530,2021-03-09,4247.833298255256,488,Urgent,2021-03-10,Abnormal,1530,96,0,4,,,,DISCHARGED -1531,2021-05-30,20566.599437552028,381,Elective,2021-06-03,Normal,1531,91,3,13,,,,DISCHARGED -1532,2020-10-02,44047.51836034425,299,Emergency,2020-10-06,Normal,1532,494,4,14,,,,DISCHARGED -1533,2023-08-26,27599.383578136498,286,Urgent,2023-09-03,Inconclusive,1533,263,4,20,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1534,2019-03-04,48209.00770432499,232,Elective,2019-03-31,Abnormal,1534,417,3,29,,,,DISCHARGED -1534,2020-05-18,14433.475723397838,235,Urgent,2020-06-07,Inconclusive,2659,290,0,24,,,,DISCHARGED -1535,2020-09-26,14709.21819915168,201,Elective,2020-10-02,Abnormal,1535,95,1,16,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1536,2021-10-14,16246.589848734411,237,Elective,2021-10-19,Inconclusive,1536,87,0,23,,,,DISCHARGED -1537,2019-02-04,44113.84667491173,167,Emergency,2019-02-14,Normal,1537,77,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1538,2021-04-11,24403.631086452955,444,Urgent,2021-04-15,Inconclusive,1538,287,0,6,,,,DISCHARGED -1539,2022-07-10,22076.602536944843,460,Emergency,2022-08-01,Inconclusive,1539,119,1,21,,,,DISCHARGED -1540,2021-11-08,4535.095021149562,426,Elective,2021-11-21,Inconclusive,1540,301,2,25,,,,DISCHARGED -1541,2021-12-31,30952.25860746648,227,Emergency,2022-01-05,Inconclusive,1541,490,0,17,,,,DISCHARGED -1542,2018-11-02,24441.2028671702,355,Urgent,2018-11-23,Inconclusive,1542,399,3,27,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1543,2022-07-26,13329.44088048892,255,Emergency,2022-08-17,Inconclusive,1543,451,2,28,,,,DISCHARGED -1544,2023-02-07,17970.747199969097,484,Elective,2023-02-10,Normal,1544,499,3,18,,,,DISCHARGED -1544,2020-03-18,48533.68532838184,241,Elective,2020-04-14,Abnormal,3173,164,3,19,,,,DISCHARGED -1545,2022-05-27,31080.43363296485,136,Emergency,2022-05-30,Normal,1545,181,3,6,,,,DISCHARGED -1546,2019-06-05,9819.675917973173,133,Urgent,2019-06-30,Normal,1546,468,0,7,,,,DISCHARGED -1547,2023-10-07,39156.5539168982,379,Elective,2023-10-16,Inconclusive,1547,397,4,12,,,,DISCHARGED -1548,2020-07-29,39561.77312013998,189,Emergency,2020-08-08,Abnormal,1548,222,2,26,,,,DISCHARGED -1549,2021-01-09,10841.461394664037,447,Elective,2021-01-18,Normal,1549,310,1,17,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1550,2022-12-25,40821.40976421033,105,Elective,2022-12-31,Abnormal,1550,431,4,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -1551,2022-02-01,19119.443166478944,499,Elective,2022-03-02,Normal,1551,465,0,10,,,,DISCHARGED -1552,2020-01-04,23204.4704391058,258,Urgent,2020-01-16,Inconclusive,1552,6,3,8,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1553,2021-06-27,21941.00828878537,223,Emergency,2021-07-07,Inconclusive,1553,329,1,22,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -1554,2018-12-18,13172.351914492096,382,Emergency,2019-01-02,Normal,1554,262,2,0,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -1555,2021-11-26,28491.10773226692,278,Elective,2021-12-01,Abnormal,1555,160,4,21,,,,DISCHARGED -1556,2021-03-07,20362.240661541942,331,Elective,2021-03-17,Abnormal,1556,150,4,7,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1557,2023-08-05,1659.8865598222835,218,Elective,2023-08-20,Abnormal,1557,84,1,20,,,,DISCHARGED -1558,2023-07-16,39075.600712803,296,Emergency,2023-08-13,Abnormal,1558,146,0,11,,,,DISCHARGED -1559,2021-07-27,16999.53176991475,379,Urgent,2021-08-08,Normal,1559,111,2,1,,,,DISCHARGED -1560,2020-01-08,5460.202691148909,486,Emergency,2020-01-10,Inconclusive,1560,380,1,14,,,,DISCHARGED -1561,2022-06-20,46635.08420770996,250,Emergency,2022-07-11,Inconclusive,1561,402,3,20,,,,DISCHARGED -1561,2021-05-06,22422.542811681844,428,Emergency,2021-05-13,Abnormal,5566,35,2,23,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1561,2023-02-20,40146.70724141927,448,Emergency,2023-03-22,Abnormal,7083,284,4,17,,,,DISCHARGED -1561,2020-03-22,36636.92126992474,184,Emergency,2020-04-19,Abnormal,7570,187,1,16,,,,DISCHARGED -1562,2023-08-19,43362.62942467006,440,Elective,2023-08-21,Normal,1562,81,4,14,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -1563,2021-11-04,18562.037225599644,268,Urgent,2021-12-03,Normal,1563,1,4,19,,,,DISCHARGED -1564,2021-01-29,4610.07353428681,155,Elective,2021-02-15,Inconclusive,1564,384,4,19,,,,DISCHARGED -1565,2022-05-01,11120.327138856614,141,Urgent,2022-05-21,Inconclusive,1565,302,0,8,,,,DISCHARGED -1566,2020-06-07,14214.74078190503,447,Elective,2020-07-04,Inconclusive,1566,196,4,2,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1567,2021-03-17,3988.9770316574472,232,Emergency,2021-04-02,Inconclusive,1567,403,3,19,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1567,2021-02-23,27596.398901714227,426,Emergency,2021-03-24,Abnormal,5973,10,3,18,,,,DISCHARGED -1568,2019-10-15,19055.30829084292,177,Urgent,2019-10-28,Abnormal,1568,233,2,17,,,,DISCHARGED -1569,2021-07-21,3962.3585451220542,151,Emergency,2021-08-04,Inconclusive,1569,385,4,19,,,,DISCHARGED -1570,2022-02-02,7792.850186638831,361,Elective,2022-03-04,Abnormal,1570,194,4,29,,,,DISCHARGED -1571,2021-12-10,14718.8206639204,288,Elective,2022-01-04,Abnormal,1571,470,1,7,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -1572,2020-01-20,20367.02596402093,189,Emergency,2020-02-12,Abnormal,1572,118,0,0,,,,DISCHARGED -1573,2020-07-14,10183.27104472155,473,Urgent,2020-07-20,Abnormal,1573,395,2,23,,,,DISCHARGED -1574,2020-03-25,40537.16596847549,414,Elective,2020-03-30,Abnormal,1574,19,4,23,,,,DISCHARGED -1575,2021-10-27,32676.253443271053,357,Emergency,2021-11-10,Abnormal,1575,260,1,14,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1576,2020-05-19,39659.26128947385,459,Emergency,2020-06-03,Inconclusive,1576,292,0,18,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1577,2020-12-17,8071.724988758223,248,Emergency,2021-01-07,Abnormal,1577,421,2,29,,,,DISCHARGED -1578,2022-04-30,44305.12563629532,257,Urgent,2022-05-23,Abnormal,1578,255,2,25,,,,DISCHARGED -1579,2020-10-31,37522.7936316438,500,Elective,2020-11-09,Abnormal,1579,221,4,9,,,,DISCHARGED -1580,2021-08-19,26124.181564033926,243,Elective,2021-09-01,Inconclusive,1580,392,2,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1581,2021-08-26,49201.887875779714,335,Urgent,2021-09-25,Abnormal,1581,225,1,27,,,,DISCHARGED -1582,2019-06-14,34813.197208903104,323,Urgent,2019-06-21,Abnormal,1582,52,2,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1583,2020-11-23,16905.648702683087,121,Elective,2020-12-11,Normal,1583,427,3,28,,,,DISCHARGED -1584,2018-11-27,49405.83723633517,282,Urgent,2018-12-23,Abnormal,1584,354,1,12,,,,DISCHARGED -1585,2019-11-15,8408.061478502012,202,Urgent,2019-11-22,Inconclusive,1585,499,0,3,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -1586,2023-02-14,40698.308204961126,483,Urgent,2023-03-09,Inconclusive,1586,341,0,12,,,,DISCHARGED -1587,2022-08-09,9059.383911757295,286,Emergency,2022-08-18,Abnormal,1587,363,4,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1588,2020-08-04,32550.981092199014,230,Urgent,2020-08-31,Inconclusive,1588,279,4,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1589,2020-01-01,25062.904694820525,303,Emergency,2020-01-07,Inconclusive,1589,80,3,0,,,,DISCHARGED -1590,2019-06-19,45419.86480615151,368,Emergency,2019-07-09,Abnormal,1590,201,0,4,,,,DISCHARGED -1590,2022-06-04,39064.003103802985,459,Elective,2022-07-03,Normal,6065,157,0,27,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1591,2020-12-06,44771.85624926054,130,Urgent,2020-12-26,Normal,1591,119,0,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -1592,2023-08-28,13357.176322480962,446,Elective,,Abnormal,1592,58,0,16,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1593,2022-11-07,30030.42019546245,339,Emergency,2022-11-28,Normal,1593,493,2,17,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -1593,2019-06-13,42187.0691878531,127,Emergency,2019-06-21,Abnormal,2140,214,1,6,,,,DISCHARGED -1593,2019-08-06,27363.455929256776,305,Urgent,2019-08-20,Normal,5666,127,1,15,,,,DISCHARGED -1594,2022-03-19,28582.90276413069,247,Elective,2022-03-23,Inconclusive,1594,223,3,7,,,,DISCHARGED -1595,2020-01-07,4661.97592514057,489,Elective,2020-01-14,Abnormal,1595,208,2,11,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1596,2022-05-07,49898.20827675171,140,Emergency,2022-06-05,Normal,1596,369,0,13,,,,DISCHARGED -1596,2021-12-12,14276.452978951447,322,Elective,2021-12-28,Abnormal,2820,114,0,18,,,,DISCHARGED -1597,2021-04-17,10594.497573444967,222,Elective,2021-04-25,Abnormal,1597,208,4,10,,,,DISCHARGED -1598,2021-12-25,7799.003444567236,203,Urgent,2022-01-06,Abnormal,1598,13,4,11,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1599,2019-09-14,43533.68721416263,239,Elective,2019-09-30,Abnormal,1599,8,3,12,,,,DISCHARGED -1600,2023-05-11,44350.5286952169,261,Elective,2023-05-28,Inconclusive,1600,39,0,7,,,,DISCHARGED -1601,2021-03-11,41913.25053234611,173,Urgent,2021-03-19,Abnormal,1601,449,3,0,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -1602,2021-10-29,34623.58127952162,428,Emergency,2021-11-14,Abnormal,1602,236,2,8,,,,DISCHARGED -1603,2022-04-06,47618.35565392174,159,Elective,2022-05-06,Abnormal,1603,280,1,27,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1604,2023-08-20,3730.572416681823,206,Urgent,,Normal,1604,358,0,1,,,,OPEN -1605,2023-04-11,8337.67786285797,480,Urgent,2023-04-30,Normal,1605,200,2,13,,,,DISCHARGED -1606,2023-03-24,16449.288806209093,354,Urgent,2023-04-06,Inconclusive,1606,245,0,12,,,,DISCHARGED -1607,2022-11-21,43756.01489579732,226,Urgent,2022-12-14,Normal,1607,277,4,15,,,,DISCHARGED -1608,2022-12-20,49028.82867743158,335,Urgent,2022-12-24,Abnormal,1608,234,3,1,,,,DISCHARGED -1609,2018-12-28,34385.611931837746,469,Elective,2019-01-03,Abnormal,1609,493,4,3,,,,DISCHARGED -1610,2020-07-24,40304.11805818253,449,Elective,2020-08-20,Inconclusive,1610,3,1,11,,,,DISCHARGED -1611,2019-07-06,31352.567947138643,388,Urgent,2019-07-28,Abnormal,1611,153,4,15,,,,DISCHARGED -1612,2019-10-06,21616.487340415264,187,Urgent,2019-11-03,Normal,1612,441,0,9,,,,DISCHARGED -1613,2022-04-18,11546.685093469854,337,Emergency,2022-05-12,Inconclusive,1613,28,4,2,,,,DISCHARGED -1614,2022-09-17,9990.811232952174,243,Urgent,2022-09-18,Inconclusive,1614,108,0,3,,,,DISCHARGED -1615,2019-09-20,14838.197617728732,101,Urgent,2019-09-25,Normal,1615,97,1,5,,,,DISCHARGED -1616,2022-02-04,6600.128643976353,132,Emergency,2022-02-07,Abnormal,1616,214,4,22,,,,DISCHARGED -1617,2023-08-24,13939.455633533002,475,Urgent,2023-09-20,Inconclusive,1617,292,3,4,,,,DISCHARGED -1618,2020-06-17,22622.770977671207,238,Urgent,2020-06-26,Abnormal,1618,74,3,17,,,,DISCHARGED -1618,2022-12-29,32144.19291591066,465,Urgent,2023-01-28,Normal,4240,325,3,2,,,,DISCHARGED -1619,2022-11-11,9732.832837619077,237,Urgent,2022-12-01,Normal,1619,145,4,9,,,,DISCHARGED -1619,2023-10-16,7004.712221292044,179,Emergency,2023-11-05,Normal,8015,127,4,10,,,,DISCHARGED -1620,2022-06-07,46651.11799627453,234,Emergency,2022-06-30,Abnormal,1620,340,4,18,,,,DISCHARGED -1621,2019-02-10,28587.75781766353,253,Elective,2019-02-23,Abnormal,1621,41,0,13,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1622,2022-03-27,17210.356394974835,440,Urgent,2022-04-06,Normal,1622,355,1,20,,,,DISCHARGED -1623,2019-11-16,48063.48989423363,121,Urgent,2019-11-26,Inconclusive,1623,40,3,27,,,,DISCHARGED -1624,2021-03-19,17960.330687829704,478,Urgent,2021-04-06,Abnormal,1624,421,0,10,,,,DISCHARGED -1625,2022-10-21,21001.131138557284,164,Emergency,2022-11-18,Abnormal,1625,33,3,27,,,,DISCHARGED -1626,2022-01-23,39720.17072696117,204,Emergency,2022-02-18,Normal,1626,16,0,20,,,,DISCHARGED -1627,2023-08-08,44924.82665964953,108,Urgent,,Abnormal,1627,164,4,3,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1628,2021-10-01,9929.680402414138,373,Urgent,2021-10-08,Normal,1628,152,3,23,,,,DISCHARGED -1629,2019-06-18,38008.59422479103,220,Emergency,2019-06-24,Abnormal,1629,485,4,21,,,,DISCHARGED -1630,2023-02-10,30444.0359381278,287,Emergency,,Normal,1630,377,3,5,,,,OPEN -1631,2019-07-28,6109.029245576259,401,Elective,2019-08-03,Normal,1631,75,2,16,,,,DISCHARGED -1632,2020-06-23,9032.24588452845,458,Emergency,2020-06-25,Normal,1632,86,0,21,,,,DISCHARGED -1633,2020-02-18,30737.58690067896,286,Urgent,2020-03-06,Inconclusive,1633,116,2,18,,,,DISCHARGED -1634,2021-01-16,19428.59802448125,468,Emergency,2021-02-10,Normal,1634,361,0,12,,,,DISCHARGED -1635,2020-10-11,33636.86245968776,444,Urgent,2020-11-08,Inconclusive,1635,341,1,21,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1636,2021-04-12,29244.57786835185,184,Elective,2021-05-01,Abnormal,1636,468,3,9,,,,DISCHARGED -1637,2023-02-17,33066.425715574056,173,Emergency,2023-03-10,Normal,1637,26,1,28,,,,DISCHARGED -1638,2023-02-13,11767.73144327441,251,Elective,2023-03-07,Inconclusive,1638,312,1,10,,,,DISCHARGED -1639,2020-12-01,42020.81237998765,425,Elective,2020-12-21,Normal,1639,286,0,28,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1640,2020-02-20,28249.404302956627,348,Elective,2020-03-12,Inconclusive,1640,133,2,5,,,,DISCHARGED -1640,2020-10-18,2127.119775493846,164,Emergency,2020-11-12,Abnormal,3431,218,4,1,,,,DISCHARGED -1641,2023-02-06,7111.758125266638,174,Elective,,Abnormal,1641,167,0,0,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,OPEN -1642,2019-07-06,22635.866617515952,292,Urgent,2019-07-14,Inconclusive,1642,97,4,10,,,,DISCHARGED -1643,2023-05-15,13340.210052651226,351,Elective,2023-06-03,Inconclusive,1643,267,1,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -1644,2023-05-21,33533.5820435409,477,Emergency,2023-06-04,Abnormal,1644,236,4,2,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1645,2022-03-31,40549.54544932743,463,Emergency,2022-04-02,Abnormal,1645,308,2,4,,,,DISCHARGED -1646,2021-05-14,31284.744541393306,382,Elective,2021-05-20,Inconclusive,1646,454,0,14,,,,DISCHARGED -1647,2020-08-01,9763.439082978002,396,Urgent,2020-08-02,Inconclusive,1647,393,2,14,,,,DISCHARGED -1648,2019-10-03,40844.41203928748,226,Urgent,2019-10-06,Inconclusive,1648,172,2,3,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1649,2023-09-03,21921.308292920243,267,Emergency,2023-09-29,Normal,1649,400,0,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1649,2023-06-04,15803.855756430356,320,Elective,,Inconclusive,7318,409,2,3,,,,OPEN -1651,2020-11-08,15821.832530223495,437,Emergency,2020-12-05,Inconclusive,1651,468,3,7,,,,DISCHARGED -1652,2019-06-26,39582.886674268826,162,Emergency,2019-07-09,Normal,1652,475,3,6,,,,DISCHARGED -1653,2018-12-31,3325.889943715688,110,Urgent,2019-01-23,Normal,1653,189,3,25,,,,DISCHARGED -1654,2023-02-08,1539.4352789185646,262,Urgent,2023-02-09,Abnormal,1654,121,4,24,,,,DISCHARGED -1655,2018-12-09,15901.473686414514,179,Emergency,2018-12-20,Abnormal,1655,45,2,16,,,,DISCHARGED -1656,2023-10-05,6407.487406102353,413,Urgent,2023-11-01,Abnormal,1656,63,0,14,,,,DISCHARGED -1657,2023-03-23,30413.431082880103,474,Urgent,2023-04-04,Abnormal,1657,129,0,4,,,,DISCHARGED -1658,2022-02-08,28154.494737076755,433,Urgent,2022-02-13,Abnormal,1658,309,4,12,,,,DISCHARGED -1658,2022-10-08,11190.70399174364,168,Emergency,2022-10-27,Inconclusive,8450,362,0,3,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1659,2021-06-06,48143.46994562864,384,Urgent,2021-07-04,Abnormal,1659,192,3,21,,,,DISCHARGED -1660,2020-10-11,35948.56128447213,339,Urgent,2020-11-09,Normal,1660,306,2,16,,,,DISCHARGED -1661,2022-09-23,5079.581673657241,435,Urgent,2022-10-20,Normal,1661,180,0,21,,,,DISCHARGED -1662,2022-02-16,32616.817755984383,136,Elective,2022-02-25,Inconclusive,1662,291,0,16,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -1663,2022-05-14,8653.46498716628,262,Emergency,2022-05-20,Inconclusive,1663,370,1,13,,,,DISCHARGED -1664,2020-02-15,31203.922135856315,189,Elective,2020-03-12,Normal,1664,281,1,13,,,,DISCHARGED -1665,2023-03-17,48876.96397776978,267,Elective,,Abnormal,1665,28,1,16,,,,OPEN -1666,2023-06-06,22267.19192755914,168,Urgent,,Inconclusive,1666,148,2,7,,,,OPEN -1667,2020-11-04,32824.66280310961,157,Elective,2020-12-03,Normal,1667,266,3,1,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1667,2021-04-10,44641.18763242762,331,Elective,2021-04-21,Normal,7988,295,3,25,,,,DISCHARGED -1668,2022-06-07,36296.85633357853,415,Emergency,2022-06-20,Normal,1668,10,3,12,,,,DISCHARGED -1669,2020-02-21,25760.993504867,350,Urgent,2020-03-10,Inconclusive,1669,163,2,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1670,2021-01-17,3361.70180983459,142,Urgent,2021-01-22,Normal,1670,112,2,21,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1671,2021-05-22,46730.33343528532,312,Elective,2021-06-20,Inconclusive,1671,186,1,15,,,,DISCHARGED -1671,2022-02-16,4980.572045257291,499,Elective,2022-03-13,Normal,4731,294,0,29,,,,DISCHARGED -1671,2019-04-15,4426.005007154834,262,Urgent,2019-04-30,Abnormal,9764,231,4,15,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1672,2020-12-16,4001.108014179361,200,Emergency,2021-01-07,Abnormal,1672,226,4,5,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1673,2023-04-20,30930.41716660681,490,Urgent,2023-05-01,Normal,1673,309,0,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -1674,2020-01-13,23598.86083668433,115,Urgent,2020-01-22,Inconclusive,1674,97,1,23,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -1675,2019-11-18,5052.2292107646335,312,Emergency,2019-12-12,Abnormal,1675,54,0,3,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -1677,2023-07-03,43031.03142926738,120,Urgent,,Inconclusive,1677,110,0,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -1678,2022-11-20,42300.672082277386,405,Elective,2022-11-30,Normal,1678,151,4,5,,,,DISCHARGED -1679,2019-10-06,43144.08589750818,235,Emergency,2019-10-28,Abnormal,1679,245,1,3,,,,DISCHARGED -1680,2020-05-16,21697.23315609584,122,Emergency,2020-06-01,Abnormal,1680,405,2,17,,,,DISCHARGED -1681,2018-12-03,19067.614144283914,222,Urgent,2018-12-15,Abnormal,1681,68,4,5,,,,DISCHARGED -1682,2019-04-12,4578.992476601186,199,Emergency,2019-04-25,Normal,1682,311,2,25,,,,DISCHARGED -1683,2020-12-09,2684.244773265752,379,Elective,2020-12-12,Abnormal,1683,288,1,4,,,,DISCHARGED -1684,2019-01-16,5296.7476449354535,495,Emergency,2019-01-24,Inconclusive,1684,249,0,26,,,,DISCHARGED -1685,2021-02-18,27219.886327918648,229,Urgent,2021-03-16,Abnormal,1685,35,3,8,,,,DISCHARGED -1685,2020-09-27,27049.019366713183,212,Elective,2020-10-12,Normal,8611,238,3,10,,,,DISCHARGED -1686,2023-10-22,17485.032450769977,199,Emergency,,Inconclusive,1686,147,1,5,,,,OPEN -1687,2020-09-01,40419.15509498384,471,Emergency,2020-09-02,Abnormal,1687,466,3,29,,,,DISCHARGED -1688,2021-05-12,23695.64148451712,295,Urgent,2021-06-05,Normal,1688,226,2,15,,,,DISCHARGED -1689,2019-10-19,22819.965042485725,172,Urgent,2019-11-04,Abnormal,1689,243,3,18,,,,DISCHARGED -1690,2022-10-11,26331.99711885888,177,Elective,2022-10-22,Abnormal,1690,490,1,10,,,,DISCHARGED -1692,2022-06-19,40026.5742483302,231,Urgent,2022-07-19,Inconclusive,1692,336,1,20,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -1693,2021-05-20,28808.713152131677,461,Elective,2021-06-19,Inconclusive,1693,445,2,14,,,,DISCHARGED -1694,2020-07-18,33327.360290063094,453,Elective,2020-07-24,Abnormal,1694,364,3,25,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1695,2021-11-21,49668.60364698613,430,Emergency,2021-12-11,Normal,1695,490,3,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -1696,2023-09-06,46838.34345875178,180,Elective,2023-10-02,Abnormal,1696,481,0,8,,,,DISCHARGED -1697,2023-07-05,6192.463358169395,404,Urgent,2023-07-15,Abnormal,1697,200,4,23,,,,DISCHARGED -1698,2023-10-17,9109.467333036298,119,Emergency,2023-11-06,Abnormal,1698,153,1,18,,,,DISCHARGED -1699,2019-07-30,11746.0548177155,429,Emergency,2019-08-10,Normal,1699,449,0,24,,,,DISCHARGED -1700,2019-08-02,49627.27990683305,151,Urgent,2019-08-26,Normal,1700,72,1,18,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1701,2022-02-26,33058.53436262671,457,Elective,2022-03-18,Normal,1701,200,0,23,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -1702,2022-10-21,46028.33662326605,170,Urgent,2022-11-13,Abnormal,1702,295,4,25,,,,DISCHARGED -1703,2021-08-31,12728.619152147832,105,Urgent,2021-09-19,Inconclusive,1703,16,0,8,,,,DISCHARGED -1703,2023-03-11,44477.16899635639,162,Emergency,2023-04-03,Normal,8136,128,1,22,,,,DISCHARGED -1704,2023-05-02,1585.6029307854085,272,Emergency,2023-06-01,Inconclusive,1704,216,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1705,2019-05-14,33284.41190849319,322,Elective,2019-05-31,Normal,1705,60,1,9,,,,DISCHARGED -1706,2022-01-30,23552.031014676013,440,Urgent,2022-02-15,Normal,1706,426,2,8,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1707,2023-04-07,41482.60068515046,172,Urgent,2023-04-12,Normal,1707,103,2,18,,,,DISCHARGED -1708,2022-05-28,16679.02069074319,496,Urgent,2022-06-17,Abnormal,1708,41,2,14,,,,DISCHARGED -1709,2023-05-19,22822.99016277693,476,Emergency,2023-06-16,Inconclusive,1709,24,2,18,,,,DISCHARGED -1710,2020-01-08,28339.711203225117,302,Emergency,2020-01-10,Inconclusive,1710,38,4,1,,,,DISCHARGED -1710,2019-11-17,11818.093252196604,214,Urgent,2019-11-24,Abnormal,3753,290,3,9,,,,DISCHARGED -1711,2021-09-07,43572.41576362039,299,Urgent,2021-09-13,Normal,1711,130,3,18,,,,DISCHARGED -1712,2022-12-08,20289.62379154284,494,Urgent,2023-01-06,Normal,1712,497,1,16,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1713,2021-02-17,23931.500144936585,294,Urgent,2021-03-07,Normal,1713,228,0,19,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1714,2020-03-29,31946.37749623787,211,Elective,2020-04-06,Normal,1714,107,1,23,,,,DISCHARGED -1715,2022-10-15,39535.03588260112,182,Elective,2022-10-31,Normal,1715,171,1,20,,,,DISCHARGED -1716,2022-04-01,49155.40764559618,184,Urgent,2022-04-21,Inconclusive,1716,434,1,1,,,,DISCHARGED -1717,2021-05-16,3128.3358006571398,481,Elective,2021-05-31,Abnormal,1717,477,1,18,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1718,2019-02-26,19607.48740318562,174,Urgent,2019-02-27,Abnormal,1718,101,3,16,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -1719,2020-04-07,39106.76178026233,263,Elective,2020-04-08,Abnormal,1719,353,0,17,,,,DISCHARGED -1720,2021-12-14,42165.45122652554,382,Elective,2021-12-20,Inconclusive,1720,11,1,16,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -1721,2023-04-21,17490.76997039526,239,Emergency,2023-05-08,Abnormal,1721,274,3,1,,,,DISCHARGED -1722,2020-12-24,30681.39829776015,179,Emergency,2021-01-15,Inconclusive,1722,100,1,18,,,,DISCHARGED -1723,2021-05-18,19508.68023534052,408,Emergency,2021-05-21,Abnormal,1723,43,2,0,,,,DISCHARGED -1724,2019-09-28,33708.3837467538,120,Urgent,2019-10-08,Abnormal,1724,442,1,10,,,,DISCHARGED -1725,2020-02-25,41605.48316912713,440,Urgent,2020-03-11,Inconclusive,1725,304,1,24,,,,DISCHARGED -1725,2019-01-01,5545.337874746683,495,Urgent,2019-01-31,Normal,4534,444,4,9,,,,DISCHARGED -1726,2022-04-13,42895.64382232488,308,Elective,2022-04-26,Abnormal,1726,16,2,4,,,,DISCHARGED -1727,2022-04-30,32287.266485462696,405,Emergency,2022-05-27,Normal,1727,329,0,15,,,,DISCHARGED -1728,2020-11-14,20089.26616869234,288,Emergency,2020-12-12,Abnormal,1728,56,1,23,,,,DISCHARGED -1729,2019-07-26,49014.336975744256,387,Emergency,2019-08-02,Inconclusive,1729,310,0,4,,,,DISCHARGED -1730,2022-10-20,13087.863934527351,193,Emergency,2022-11-12,Abnormal,1730,496,2,23,,,,DISCHARGED -1731,2020-02-02,25850.433904634367,155,Urgent,2020-02-17,Inconclusive,1731,302,1,22,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1732,2021-04-09,37095.79224097199,199,Emergency,2021-04-11,Abnormal,1732,11,4,11,,,,DISCHARGED -1733,2021-08-04,41069.89692189269,474,Elective,2021-08-14,Abnormal,1733,317,3,3,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1734,2022-04-11,9736.793113344374,202,Urgent,2022-04-18,Abnormal,1734,79,4,22,,,,DISCHARGED -1735,2020-01-30,47967.04292224845,136,Urgent,2020-02-01,Normal,1735,215,4,5,,,,DISCHARGED -1736,2021-02-06,25917.92370801676,278,Emergency,2021-02-11,Abnormal,1736,338,3,18,,,,DISCHARGED -1737,2019-08-13,16520.248829823708,491,Urgent,2019-09-03,Abnormal,1737,263,3,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -1738,2020-12-11,29055.40372254097,238,Elective,2020-12-26,Normal,1738,478,3,11,,,,DISCHARGED -1739,2019-03-05,8741.897068889895,341,Elective,2019-03-28,Abnormal,1739,148,1,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1740,2020-07-31,44432.74777932138,189,Elective,2020-08-24,Inconclusive,1740,80,0,14,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1740,2022-01-31,46231.48230771744,167,Elective,2022-03-01,Normal,7027,214,0,15,,,,DISCHARGED -1741,2021-04-14,14289.055290364904,344,Urgent,2021-04-25,Abnormal,1741,484,3,12,,,,DISCHARGED -1742,2021-01-29,32855.941966081904,247,Elective,2021-02-23,Normal,1742,373,4,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1743,2022-07-03,24956.22097763945,489,Emergency,2022-07-16,Abnormal,1743,463,2,29,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -1744,2020-10-27,49672.33501232845,422,Elective,2020-10-30,Normal,1744,197,3,20,,,,DISCHARGED -1744,2021-02-13,49544.01210865921,133,Elective,2021-03-14,Abnormal,5591,199,4,23,,,,DISCHARGED -1745,2019-10-10,19952.60298426153,335,Urgent,2019-11-05,Normal,1745,24,4,6,,,,DISCHARGED -1746,2023-04-28,14412.032243801204,225,Urgent,2023-05-20,Abnormal,1746,465,1,24,,,,DISCHARGED -1746,2022-07-22,41801.92684003736,239,Urgent,2022-08-17,Normal,6051,88,1,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1747,2020-04-13,33590.01511294825,275,Emergency,2020-05-08,Inconclusive,1747,267,0,19,,,,DISCHARGED -1748,2021-03-08,49930.03160105285,236,Elective,2021-03-15,Inconclusive,1748,142,0,3,,,,DISCHARGED -1749,2018-12-19,15662.350217555424,486,Urgent,2019-01-06,Abnormal,1749,58,2,10,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1750,2023-06-07,31285.156892657167,432,Elective,2023-06-09,Inconclusive,1750,409,2,7,,,,DISCHARGED -1751,2022-04-29,22959.82683395974,262,Urgent,2022-05-20,Inconclusive,1751,488,2,5,,,,DISCHARGED -1752,2020-07-10,44726.75416710159,385,Urgent,2020-07-23,Abnormal,1752,364,2,24,,,,DISCHARGED -1753,2019-08-23,12445.396520202778,132,Elective,2019-08-27,Abnormal,1753,25,4,29,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1754,2023-03-10,24735.61941327937,222,Urgent,2023-03-29,Abnormal,1754,46,4,9,,,,DISCHARGED -1755,2022-07-25,18401.776355382084,381,Urgent,2022-08-05,Inconclusive,1755,287,0,29,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -1756,2022-02-08,22792.62736010912,452,Urgent,2022-03-04,Normal,1756,265,1,6,,,,DISCHARGED -1757,2023-08-17,23703.43028844692,299,Emergency,2023-08-31,Abnormal,1757,15,1,6,,,,DISCHARGED -1758,2020-07-31,18613.166209777763,261,Emergency,2020-08-02,Normal,1758,198,3,3,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1759,2023-01-09,47477.9076836322,428,Urgent,,Abnormal,1759,400,4,2,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,OPEN -1760,2019-07-02,24239.16822315615,108,Urgent,2019-07-20,Normal,1760,406,2,23,,,,DISCHARGED -1761,2022-06-13,37559.36514392631,205,Elective,2022-06-25,Abnormal,1761,281,2,6,,,,DISCHARGED -1762,2021-05-09,12050.859518625664,326,Emergency,2021-05-12,Inconclusive,1762,468,3,3,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1763,2021-03-16,36518.67081941626,348,Emergency,2021-03-29,Abnormal,1763,85,1,12,,,,DISCHARGED -1764,2023-10-23,19298.38207896289,349,Elective,2023-11-21,Abnormal,1764,249,2,19,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -1765,2019-12-13,2605.136395514628,146,Elective,2019-12-26,Abnormal,1765,390,1,16,,,,DISCHARGED -1766,2021-06-12,44045.00829624264,184,Elective,2021-06-22,Inconclusive,1766,269,3,26,,,,DISCHARGED -1767,2023-03-13,10187.720543271913,463,Elective,2023-04-09,Normal,1767,334,1,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1767,2021-03-13,36544.75046404455,311,Elective,2021-03-17,Normal,4218,116,1,16,,,,DISCHARGED -1768,2020-04-24,11766.05827492471,377,Urgent,2020-05-05,Abnormal,1768,6,1,25,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1769,2019-12-24,47630.10051566829,141,Urgent,2020-01-03,Normal,1769,136,2,25,,,,DISCHARGED -1770,2022-06-27,15887.717804693268,234,Urgent,2022-07-12,Abnormal,1770,370,0,3,,,,DISCHARGED -1770,2019-05-08,48466.61597695912,129,Urgent,2019-06-03,Inconclusive,7521,175,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -1771,2019-07-19,4918.746364425382,413,Emergency,2019-08-11,Normal,1771,327,1,29,,,,DISCHARGED -1772,2022-06-17,38030.58842549773,300,Elective,2022-07-10,Normal,1772,497,1,2,,,,DISCHARGED -1773,2020-10-23,45926.57863866224,383,Elective,2020-11-12,Abnormal,1773,314,1,10,,,,DISCHARGED -1774,2022-04-26,17586.22313133439,464,Emergency,2022-05-24,Normal,1774,214,0,2,,,,DISCHARGED -1774,2021-02-15,42636.21118049487,185,Elective,2021-02-25,Inconclusive,8086,476,3,11,,,,DISCHARGED -1775,2021-01-20,8883.185798579063,111,Emergency,2021-02-19,Abnormal,1775,81,2,0,,,,DISCHARGED -1776,2021-12-05,35807.01215756193,419,Urgent,2021-12-27,Inconclusive,1776,222,0,3,,,,DISCHARGED -1778,2023-08-28,13668.24552120096,221,Emergency,,Normal,1778,477,1,13,,,,OPEN -1779,2023-07-06,45716.32803350753,260,Emergency,2023-07-24,Normal,1779,371,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1780,2021-09-26,45528.0743677317,442,Urgent,2021-10-08,Abnormal,1780,422,0,13,,,,DISCHARGED -1781,2023-04-27,23860.374485493845,284,Emergency,,Abnormal,1781,482,0,12,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -1782,2022-05-25,38729.127161801,230,Urgent,2022-06-02,Abnormal,1782,401,3,12,,,,DISCHARGED -1783,2023-04-02,40983.25246829903,260,Emergency,,Normal,1783,442,4,23,,,,OPEN -1784,2020-08-20,25637.02724477805,389,Emergency,2020-09-02,Abnormal,1784,489,2,14,,,,DISCHARGED -1785,2023-03-23,8831.530945090177,462,Elective,,Abnormal,1785,102,3,16,,,,OPEN -1785,2019-11-13,43570.11250217532,468,Emergency,2019-12-05,Inconclusive,5152,272,3,11,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -1786,2021-12-23,43208.57344830517,296,Urgent,2022-01-03,Abnormal,1786,13,4,29,,,,DISCHARGED -1787,2023-04-25,44382.55840928534,251,Elective,2023-05-16,Inconclusive,1787,158,3,21,,,,DISCHARGED -1788,2019-09-01,44916.09826864657,353,Urgent,2019-09-28,Inconclusive,1788,151,0,22,,,,DISCHARGED -1789,2021-04-12,49104.60691172034,332,Emergency,2021-05-05,Inconclusive,1789,482,0,25,,,,DISCHARGED -1790,2020-11-09,39509.626037714654,471,Emergency,2020-11-14,Abnormal,1790,107,1,13,,,,DISCHARGED -1791,2021-06-03,7531.642746334843,470,Emergency,2021-06-19,Abnormal,1791,187,3,11,,,,DISCHARGED -1792,2019-12-27,6588.512196506966,132,Urgent,2020-01-16,Abnormal,1792,300,1,17,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1793,2022-11-21,2295.1865231349657,353,Emergency,2022-12-20,Inconclusive,1793,97,2,3,,,,DISCHARGED -1794,2020-06-19,18566.443042045958,399,Emergency,2020-06-24,Inconclusive,1794,130,0,26,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1795,2022-09-26,37641.013848260205,253,Elective,2022-10-21,Inconclusive,1795,292,2,13,,,,DISCHARGED -1796,2021-02-23,31396.935064698115,481,Elective,2021-03-06,Inconclusive,1796,170,4,18,,,,DISCHARGED -1797,2023-01-06,19899.698202309253,450,Emergency,2023-01-16,Abnormal,1797,423,0,28,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -1798,2019-02-25,15752.505577282309,431,Elective,2019-03-03,Normal,1798,473,2,12,,,,DISCHARGED -1798,2019-05-01,17471.81601389419,401,Elective,2019-05-20,Normal,1988,182,4,24,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -1799,2022-04-28,7140.174881829507,271,Emergency,2022-05-23,Normal,1799,470,2,29,,,,DISCHARGED -1800,2019-11-29,34353.53541581946,433,Urgent,2019-12-22,Normal,1800,363,4,22,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1801,2018-11-05,34521.47185557458,178,Elective,2018-12-04,Inconclusive,1801,38,4,17,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1801,2021-05-26,31408.13641635991,187,Urgent,2021-05-31,Abnormal,4620,14,0,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1801,2022-02-16,6786.236349478734,472,Emergency,2022-03-11,Abnormal,5315,375,1,27,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -1802,2021-12-16,22897.344520048595,184,Elective,2022-01-05,Inconclusive,1802,496,4,5,,,,DISCHARGED -1803,2023-01-05,2554.6947434757785,366,Emergency,,Abnormal,1803,3,4,8,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",OPEN -1804,2023-08-21,9753.597653821844,375,Elective,2023-09-12,Normal,1804,348,0,11,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -1805,2019-09-13,47419.87576436537,326,Elective,2019-10-05,Inconclusive,1805,469,1,18,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1806,2022-09-19,38071.57683517128,337,Elective,2022-10-17,Abnormal,1806,408,3,13,,,,DISCHARGED -1807,2019-07-17,5532.607821408728,270,Emergency,2019-07-31,Normal,1807,396,3,14,,,,DISCHARGED -1807,2021-08-20,17436.021757767616,277,Urgent,2021-09-16,Inconclusive,3032,209,1,10,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1808,2018-12-09,4700.425956265227,276,Emergency,2019-01-08,Inconclusive,1808,160,2,5,,,,DISCHARGED -1809,2022-06-19,29103.992572609222,435,Emergency,2022-06-21,Abnormal,1809,15,0,13,,,,DISCHARGED -1810,2021-05-01,11777.147357721204,315,Urgent,2021-05-27,Inconclusive,1810,492,1,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -1811,2021-09-21,32646.69447758125,161,Emergency,2021-09-30,Inconclusive,1811,425,3,18,,,,DISCHARGED -1812,2021-06-22,35611.2194280443,226,Emergency,2021-07-04,Inconclusive,1812,107,4,19,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1813,2021-09-28,35022.835383073776,187,Elective,2021-10-26,Abnormal,1813,381,3,24,,,,DISCHARGED -1813,2019-07-23,32166.612051579497,379,Urgent,2019-08-03,Inconclusive,2987,449,4,10,,,,DISCHARGED -1813,2023-04-05,10586.566650090606,324,Elective,2023-04-14,Normal,5167,310,0,28,,,,DISCHARGED -1814,2020-12-03,46675.02746064535,447,Elective,2020-12-24,Inconclusive,1814,226,4,23,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1815,2023-03-03,46339.13594657636,199,Elective,2023-03-16,Inconclusive,1815,169,1,16,,,,DISCHARGED -1816,2022-11-06,48879.34401722974,139,Urgent,2022-11-26,Abnormal,1816,33,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -1817,2020-01-16,9606.90312498718,127,Emergency,2020-01-23,Normal,1817,413,2,27,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -1818,2021-03-22,49142.04233175327,163,Emergency,2021-04-17,Inconclusive,1818,250,1,26,,,,DISCHARGED -1818,2020-01-02,6005.408027048361,411,Elective,2020-01-30,Normal,3084,246,0,16,,,,DISCHARGED -1819,2022-10-15,40451.95928616724,497,Emergency,2022-11-04,Inconclusive,1819,268,1,22,,,,DISCHARGED -1820,2021-07-11,20185.63560666859,431,Elective,2021-07-31,Inconclusive,1820,140,2,2,,,,DISCHARGED -1821,2021-10-11,12387.11981438794,151,Urgent,2021-10-24,Abnormal,1821,273,0,13,,,,DISCHARGED -1822,2023-10-16,39747.99908426908,156,Elective,,Abnormal,1822,415,3,26,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",OPEN -1823,2020-04-30,10645.75325129062,399,Emergency,2020-05-26,Inconclusive,1823,95,2,6,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1824,2022-07-21,15742.940946263932,347,Emergency,2022-07-30,Inconclusive,1824,226,0,24,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -1825,2020-02-14,40433.10369339495,122,Elective,2020-02-27,Inconclusive,1825,378,4,18,,,,DISCHARGED -1826,2020-01-27,14557.977822890807,106,Emergency,2020-02-03,Abnormal,1826,38,1,2,,,,DISCHARGED -1827,2021-04-20,19844.044740370973,278,Emergency,2021-05-12,Abnormal,1827,301,0,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1828,2022-11-15,38074.05939662491,355,Elective,2022-11-17,Abnormal,1828,499,1,25,,,,DISCHARGED -1829,2019-07-04,15488.79306105153,432,Elective,2019-08-03,Abnormal,1829,28,4,16,,,,DISCHARGED -1830,2019-03-09,31240.501992157708,426,Emergency,2019-04-05,Inconclusive,1830,445,0,8,,,,DISCHARGED -1831,2023-04-17,17959.755087190377,365,Urgent,2023-04-25,Abnormal,1831,496,3,21,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1832,2022-05-02,39247.26840902522,496,Elective,2022-06-01,Abnormal,1832,476,2,5,,,,DISCHARGED -1833,2020-06-02,37119.01527783798,305,Elective,2020-06-19,Abnormal,1833,317,0,23,,,,DISCHARGED -1834,2022-02-28,46994.167365844194,451,Emergency,2022-03-10,Abnormal,1834,244,4,26,,,,DISCHARGED -1835,2019-09-25,19894.73879602928,208,Urgent,2019-10-03,Normal,1835,235,0,20,,,,DISCHARGED -1836,2019-04-13,16339.485108133296,346,Urgent,2019-05-09,Normal,1836,184,1,8,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -1837,2021-08-18,8722.9907593805,253,Emergency,2021-09-04,Normal,1837,271,0,26,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -1838,2021-06-03,32316.35635606747,303,Urgent,2021-06-06,Abnormal,1838,439,3,4,,,,DISCHARGED -1839,2023-06-02,4348.041193289953,388,Urgent,,Normal,1839,235,0,1,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",OPEN -1840,2019-02-16,17002.03878733363,449,Emergency,2019-03-06,Inconclusive,1840,238,2,21,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -1840,2019-09-08,31484.254282814152,497,Urgent,2019-09-14,Abnormal,3773,376,0,14,,,,DISCHARGED -1841,2023-04-13,46295.82039528607,498,Urgent,,Normal,1841,265,1,8,,,,OPEN -1842,2023-07-20,40410.80646270186,238,Urgent,2023-08-15,Normal,1842,413,0,18,,,,DISCHARGED -1842,2023-03-08,19327.59177761065,476,Urgent,2023-03-09,Normal,5646,408,3,9,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1843,2022-03-24,4284.597728195915,213,Urgent,2022-04-04,Abnormal,1843,358,4,3,,,,DISCHARGED -1844,2023-03-27,20774.565915105068,482,Urgent,2023-04-03,Abnormal,1844,339,0,9,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -1846,2019-12-15,46711.698029371306,394,Elective,2020-01-12,Normal,1846,388,0,26,,,,DISCHARGED -1847,2021-10-23,33509.58365506775,400,Urgent,2021-10-31,Abnormal,1847,64,2,7,,,,DISCHARGED -1848,2023-09-28,10338.40689083627,322,Elective,2023-10-26,Inconclusive,1848,477,3,21,,,,DISCHARGED -1848,2018-11-02,22533.32023233502,147,Elective,2018-11-20,Normal,1919,176,4,12,,,,DISCHARGED -1849,2021-10-30,8601.427725112477,121,Urgent,2021-11-03,Inconclusive,1849,2,1,6,,,,DISCHARGED -1850,2020-06-03,40317.75495926055,141,Urgent,2020-06-07,Abnormal,1850,428,0,6,,,,DISCHARGED -1851,2019-09-19,36394.03514975964,437,Urgent,2019-09-30,Inconclusive,1851,141,4,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -1852,2020-06-07,2943.0267782070614,195,Emergency,2020-06-13,Inconclusive,1852,375,1,14,,,,DISCHARGED -1853,2023-04-02,33696.09719762407,156,Emergency,,Inconclusive,1853,157,3,11,,,,OPEN -1854,2023-02-25,13441.01963869145,348,Emergency,2023-03-09,Abnormal,1854,497,3,15,,,,DISCHARGED -1855,2023-01-23,25622.162798918784,332,Urgent,2023-02-05,Abnormal,1855,323,4,5,,,,DISCHARGED -1856,2020-06-14,9920.695809958854,351,Elective,2020-07-07,Normal,1856,145,1,27,,,,DISCHARGED -1857,2021-02-07,28425.22694268,479,Elective,2021-02-19,Inconclusive,1857,445,3,8,,,,DISCHARGED -1858,2018-11-25,24452.80579696671,291,Elective,2018-12-21,Normal,1858,292,4,2,,,,DISCHARGED -1859,2020-08-04,47317.310855331016,453,Emergency,2020-08-08,Normal,1859,152,3,7,,,,DISCHARGED -1860,2019-04-24,22999.625918643214,121,Elective,2019-05-22,Normal,1860,431,3,6,,,,DISCHARGED -1861,2023-02-16,28562.1130136861,382,Elective,2023-02-26,Inconclusive,1861,192,3,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -1862,2022-02-20,49559.84190109701,288,Urgent,2022-03-05,Inconclusive,1862,436,2,25,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1863,2020-01-07,11008.533386828947,266,Emergency,2020-01-28,Inconclusive,1863,493,1,12,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1864,2019-07-01,44139.10380111014,397,Urgent,2019-07-08,Abnormal,1864,462,4,18,,,,DISCHARGED -1864,2020-11-19,46178.69739013859,167,Emergency,2020-11-30,Normal,7770,72,4,29,,,,DISCHARGED -1865,2023-01-11,7105.675175599059,467,Emergency,,Normal,1865,398,1,6,,,,OPEN -1866,2023-02-25,41242.35173047311,154,Urgent,,Inconclusive,1866,304,1,9,,,,OPEN -1867,2023-10-15,3072.338808929336,231,Urgent,2023-10-19,Normal,1867,376,1,24,,,,DISCHARGED -1868,2021-11-01,16417.387415955425,280,Elective,2021-11-30,Normal,1868,343,1,11,,,,DISCHARGED -1868,2019-03-15,39242.05464486015,156,Elective,2019-04-01,Normal,4641,451,0,25,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -1869,2021-06-23,20359.316840134477,254,Urgent,2021-06-30,Abnormal,1869,139,4,2,,,,DISCHARGED -1870,2022-07-28,4630.373225070944,287,Elective,2022-08-07,Abnormal,1870,186,0,25,,,,DISCHARGED -1871,2020-07-23,20754.495290162788,427,Emergency,2020-08-22,Normal,1871,292,3,24,,,,DISCHARGED -1872,2019-09-15,28695.928883616696,142,Elective,2019-10-15,Inconclusive,1872,60,3,28,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -1873,2019-07-19,43919.10652521338,106,Emergency,2019-07-24,Inconclusive,1873,484,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1874,2019-03-10,27564.73570021476,162,Urgent,2019-04-02,Normal,1874,426,3,11,,,,DISCHARGED -1875,2022-03-10,9731.910735275478,349,Elective,2022-03-12,Inconclusive,1875,379,1,18,,,,DISCHARGED -1876,2021-06-18,7843.536505201325,127,Urgent,2021-06-20,Normal,1876,197,0,14,,,,DISCHARGED -1877,2021-06-09,31934.68531826172,393,Emergency,2021-06-29,Abnormal,1877,294,1,7,,,,DISCHARGED -1878,2021-05-18,48910.62014398547,105,Elective,2021-06-07,Abnormal,1878,439,3,11,,,,DISCHARGED -1879,2019-09-14,41199.28111607103,140,Elective,2019-10-01,Normal,1879,318,0,19,,,,DISCHARGED -1880,2019-08-18,26881.39320250615,482,Elective,2019-08-26,Inconclusive,1880,301,1,5,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -1881,2019-06-18,19397.21079566613,278,Elective,2019-06-20,Abnormal,1881,343,4,27,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1882,2023-09-29,41082.13669718514,484,Elective,2023-10-13,Abnormal,1882,10,1,9,,,,DISCHARGED -1883,2019-07-28,18696.09480430217,163,Emergency,2019-07-29,Inconclusive,1883,61,3,1,,,,DISCHARGED -1884,2019-07-08,6663.714835225604,484,Emergency,2019-08-03,Normal,1884,332,0,23,,,,DISCHARGED -1885,2020-08-27,28977.6463860359,181,Elective,2020-09-16,Abnormal,1885,225,4,12,,,,DISCHARGED -1886,2020-05-06,17769.120841650492,191,Emergency,2020-05-31,Inconclusive,1886,152,0,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1887,2022-12-27,42385.43544997359,398,Emergency,2023-01-13,Normal,1887,198,4,6,,,,DISCHARGED -1888,2023-06-15,45793.97348687594,370,Elective,2023-07-04,Normal,1888,51,0,7,,,,DISCHARGED -1889,2019-07-14,12326.52289143118,492,Elective,2019-07-22,Inconclusive,1889,259,3,22,,,,DISCHARGED -1890,2021-02-01,44194.43935454828,310,Elective,2021-02-09,Normal,1890,58,4,15,,,,DISCHARGED -1891,2020-01-22,1708.0346828317952,157,Elective,2020-02-14,Abnormal,1891,71,2,10,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1892,2019-07-11,32186.121115637376,381,Elective,2019-08-10,Abnormal,1892,147,0,25,,,,DISCHARGED -1893,2020-05-29,29718.08361296356,424,Urgent,2020-06-10,Normal,1893,348,0,3,,,,DISCHARGED -1894,2021-06-19,19433.579581121485,345,Emergency,2021-06-22,Abnormal,1894,62,1,16,,,,DISCHARGED -1895,2019-04-12,27781.642165398494,141,Elective,2019-04-18,Abnormal,1895,309,4,15,,,,DISCHARGED -1896,2020-09-16,45518.72508291688,408,Emergency,2020-10-05,Normal,1896,372,2,18,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1897,2021-12-27,14969.634638600914,463,Elective,2022-01-08,Inconclusive,1897,242,3,22,,,,DISCHARGED -1898,2023-08-12,11847.724675739692,473,Emergency,,Inconclusive,1898,492,1,26,,,,OPEN -1899,2019-09-27,1376.2348507610157,498,Emergency,2019-10-25,Normal,1899,365,2,10,,,,DISCHARGED -1900,2022-04-27,11580.471042970674,460,Emergency,2022-05-26,Inconclusive,1900,329,4,6,,,,DISCHARGED -1900,2022-03-25,8071.719887739294,397,Urgent,2022-04-19,Abnormal,9193,106,2,26,,,,DISCHARGED -1901,2018-12-31,21757.650788310628,171,Elective,2019-01-16,Normal,1901,225,0,12,,,,DISCHARGED -1901,2021-03-15,24380.98707844641,354,Urgent,2021-03-24,Abnormal,7949,312,0,18,,,,DISCHARGED -1902,2019-02-21,23058.760460206624,413,Urgent,2019-03-18,Inconclusive,1902,217,1,16,,,,DISCHARGED -1903,2021-02-28,39792.83306932154,329,Elective,2021-03-01,Abnormal,1903,424,4,25,,,,DISCHARGED -1904,2021-11-22,35540.05493652951,482,Urgent,2021-12-04,Normal,1904,240,4,24,,,,DISCHARGED -1905,2019-09-02,29942.22167699223,214,Emergency,2019-09-08,Abnormal,1905,258,2,27,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -1906,2020-06-04,9854.047808583182,473,Emergency,2020-07-01,Normal,1906,375,1,21,,,,DISCHARGED -1907,2019-12-24,36121.9405302333,144,Emergency,2020-01-04,Inconclusive,1907,261,4,12,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -1908,2019-11-28,33913.757284865686,153,Urgent,2019-12-27,Normal,1908,4,0,28,,,,DISCHARGED -1909,2023-05-17,27543.518758783204,199,Emergency,,Normal,1909,260,2,11,,,,OPEN -1910,2020-11-07,1535.7776483752568,113,Elective,2020-11-25,Inconclusive,1910,53,3,6,,,,DISCHARGED -1911,2020-08-19,12551.33538683973,428,Emergency,2020-08-30,Inconclusive,1911,46,0,0,,,,DISCHARGED -1912,2020-12-17,47502.03291856158,300,Urgent,2020-12-28,Normal,1912,214,1,0,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1913,2023-02-18,11116.763831547913,234,Elective,,Abnormal,1913,176,4,19,,,,OPEN -1914,2020-07-23,18089.911803438685,344,Urgent,2020-08-10,Abnormal,1914,8,0,22,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1915,2018-11-17,10170.08559278319,206,Emergency,2018-11-20,Inconclusive,1915,98,3,13,,,,DISCHARGED -1916,2023-05-03,13252.430586321976,406,Emergency,,Abnormal,1916,19,3,26,,,,OPEN -1917,2021-09-17,41458.66099156509,211,Elective,2021-10-10,Inconclusive,1917,377,1,14,,,,DISCHARGED -1918,2023-08-12,36576.6201263894,222,Emergency,,Abnormal,1918,240,0,10,,,,OPEN -1920,2021-11-10,49140.93556123616,140,Emergency,2021-11-28,Inconclusive,1920,60,2,23,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1921,2022-08-05,25154.13254782006,386,Elective,2022-08-11,Normal,1921,378,0,25,,,,DISCHARGED -1921,2019-08-27,34689.41647819316,447,Urgent,2019-09-13,Abnormal,7638,489,3,8,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1922,2021-03-02,40011.51641921789,421,Urgent,2021-03-24,Normal,1922,418,1,16,,,,DISCHARGED -1923,2019-08-03,45713.36467994517,324,Urgent,2019-08-26,Normal,1923,177,1,3,,,,DISCHARGED -1924,2019-02-04,46673.20401727847,331,Emergency,2019-02-16,Abnormal,1924,337,2,19,,,,DISCHARGED -1925,2022-05-18,49467.41146821703,492,Emergency,2022-05-31,Inconclusive,1925,61,1,18,,,,DISCHARGED -1926,2019-01-30,42234.98979534442,258,Elective,2019-02-28,Abnormal,1926,144,1,6,,,,DISCHARGED -1927,2019-05-29,42561.29694819286,288,Emergency,2019-06-20,Inconclusive,1927,215,1,0,,,,DISCHARGED -1928,2022-08-03,21587.36159991745,246,Urgent,2022-08-16,Normal,1928,2,1,8,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -1929,2020-08-10,5184.076303545168,467,Emergency,2020-08-28,Normal,1929,159,1,12,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -1930,2020-11-07,42582.56961924691,171,Elective,2020-11-30,Abnormal,1930,226,3,23,,,,DISCHARGED -1931,2022-10-01,9350.316427765074,195,Urgent,2022-10-25,Inconclusive,1931,485,0,1,,,,DISCHARGED -1931,2021-05-09,19307.396751309218,117,Urgent,2021-06-06,Inconclusive,5425,268,4,1,,,,DISCHARGED -1931,2022-06-22,4712.908215969233,311,Elective,2022-07-09,Normal,5553,119,1,23,,,,DISCHARGED -1932,2022-04-08,28435.24023485244,498,Urgent,2022-04-20,Normal,1932,380,4,26,,,,DISCHARGED -1933,2020-06-18,29578.80018017523,103,Emergency,2020-07-03,Normal,1933,494,4,29,,,,DISCHARGED -1934,2023-08-24,10779.594504172885,224,Emergency,2023-09-15,Inconclusive,1934,88,3,14,,,,DISCHARGED -1934,2022-10-01,49066.3508760399,104,Urgent,2022-10-05,Inconclusive,7120,328,1,16,,,,DISCHARGED -1935,2018-12-31,30744.71202458943,213,Urgent,2019-01-16,Normal,1935,67,4,12,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1935,2023-08-10,12955.51857584719,423,Emergency,2023-08-30,Abnormal,7023,397,1,6,,,,DISCHARGED -1936,2023-09-01,48012.95577113939,140,Emergency,2023-09-03,Normal,1936,356,2,8,,,,DISCHARGED -1937,2021-10-17,19321.8685798229,176,Urgent,2021-10-27,Inconclusive,1937,97,2,11,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1938,2018-11-14,23469.70102115066,107,Elective,2018-11-30,Inconclusive,1938,266,2,2,,,,DISCHARGED -1939,2021-01-20,42667.44926077702,165,Urgent,2021-01-29,Abnormal,1939,104,4,22,,,,DISCHARGED -1940,2022-05-19,6844.30269955517,462,Emergency,2022-06-10,Inconclusive,1940,439,2,21,,,,DISCHARGED -1941,2020-12-15,4186.133942069935,208,Emergency,2020-12-17,Abnormal,1941,322,3,14,,,,DISCHARGED -1942,2021-05-28,44681.11732429371,330,Emergency,2021-06-04,Inconclusive,1942,122,3,6,,,,DISCHARGED -1943,2023-03-14,42797.493004043965,179,Emergency,2023-03-16,Inconclusive,1943,475,4,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1944,2022-05-10,48005.89190873987,312,Elective,2022-05-30,Abnormal,1944,28,1,25,,,,DISCHARGED -1945,2021-07-15,24522.665638630267,116,Elective,2021-07-29,Inconclusive,1945,136,0,0,,,,DISCHARGED -1946,2023-03-03,9934.100792799354,138,Emergency,,Abnormal,1946,194,1,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",OPEN -1947,2020-10-01,34720.03167714135,323,Elective,2020-10-29,Normal,1947,408,1,18,,,,DISCHARGED -1948,2021-10-31,17613.03226914178,230,Elective,2021-11-15,Inconclusive,1948,225,1,15,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1949,2018-11-07,11281.55527316713,192,Urgent,2018-11-15,Inconclusive,1949,331,1,9,,,,DISCHARGED -1950,2021-10-13,16824.263823389083,127,Urgent,2021-10-18,Normal,1950,169,0,0,,,,DISCHARGED -1951,2022-08-30,18360.45321422453,201,Elective,2022-09-23,Normal,1951,8,2,4,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1951,2023-08-31,17611.86285714769,191,Urgent,2023-09-28,Normal,2708,462,1,2,,,,DISCHARGED -1952,2020-07-09,2406.864973537379,329,Elective,2020-07-22,Inconclusive,1952,39,3,16,,,,DISCHARGED -1953,2018-12-09,9898.757583020364,176,Elective,2018-12-20,Normal,1953,24,4,17,,,,DISCHARGED -1954,2021-12-06,3428.4048839912057,128,Elective,2021-12-20,Abnormal,1954,260,4,25,,,,DISCHARGED -1955,2023-05-03,42042.27409647247,129,Urgent,2023-06-01,Inconclusive,1955,394,3,20,,,,DISCHARGED -1956,2023-03-06,7754.467222462754,163,Elective,2023-03-21,Inconclusive,1956,442,1,26,,,,DISCHARGED -1957,2023-06-18,45173.32323819144,131,Emergency,2023-06-27,Normal,1957,225,0,18,,,,DISCHARGED -1958,2023-10-17,14200.79791915669,217,Urgent,,Inconclusive,1958,471,2,21,,,,OPEN -1959,2020-03-28,37892.66794147765,305,Emergency,2020-04-03,Abnormal,1959,123,4,24,,,,DISCHARGED -1960,2021-06-16,42858.29550284436,360,Urgent,2021-07-12,Inconclusive,1960,462,2,21,,,,DISCHARGED -1961,2022-05-12,21138.61470352916,170,Urgent,2022-05-24,Normal,1961,37,0,17,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1962,2022-08-17,9588.89347540396,417,Emergency,2022-08-22,Inconclusive,1962,327,4,15,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1963,2020-04-25,4878.929466918511,386,Urgent,2020-05-18,Abnormal,1963,250,2,1,,,,DISCHARGED -1964,2023-08-19,38415.98461518616,168,Emergency,2023-09-16,Normal,1964,388,0,14,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1965,2021-06-18,29906.83494316573,340,Emergency,2021-06-29,Normal,1965,175,2,12,,,,DISCHARGED -1966,2022-06-08,28905.452630692063,360,Urgent,2022-06-09,Normal,1966,89,1,12,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1967,2021-09-09,34476.619431206105,183,Urgent,2021-09-12,Inconclusive,1967,401,0,15,,,,DISCHARGED -1968,2018-11-02,1566.8945187909271,319,Urgent,2018-11-11,Normal,1968,453,2,7,,,,DISCHARGED -1969,2023-03-12,35933.799906807515,473,Elective,,Abnormal,1969,36,1,10,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,OPEN -1970,2019-09-06,13793.893093478908,281,Elective,2019-09-30,Normal,1970,315,1,7,,,,DISCHARGED -1971,2019-09-25,34066.04478907022,126,Elective,2019-10-21,Abnormal,1971,175,0,21,,,,DISCHARGED -1972,2019-11-29,7688.95366865212,453,Emergency,2019-12-04,Normal,1972,460,3,9,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1973,2022-02-08,35929.75453249108,191,Elective,2022-02-11,Normal,1973,283,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1974,2019-12-01,2634.3452079374347,141,Urgent,2019-12-19,Abnormal,1974,452,0,0,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1975,2021-10-17,41769.83077168575,259,Elective,2021-11-07,Inconclusive,1975,460,1,11,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -1976,2021-06-08,36799.51692561363,496,Elective,2021-07-03,Normal,1976,80,1,8,,,,DISCHARGED -1977,2023-02-13,47961.68199869757,393,Urgent,2023-02-18,Inconclusive,1977,113,0,4,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1978,2022-04-28,35550.18738299962,162,Elective,2022-05-26,Inconclusive,1978,39,3,8,,,,DISCHARGED -1980,2021-11-17,22090.139286092104,337,Elective,2021-11-27,Abnormal,1980,300,4,15,,,,DISCHARGED -1981,2021-01-04,16385.282344828614,160,Elective,2021-01-21,Abnormal,1981,223,2,17,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1982,2021-01-20,9098.922491055697,240,Urgent,2021-02-17,Abnormal,1982,317,0,29,,,,DISCHARGED -1983,2021-11-01,27646.57878743372,173,Urgent,2021-11-22,Normal,1983,348,4,7,,,,DISCHARGED -1984,2018-12-27,4990.600989418026,418,Urgent,2019-01-10,Normal,1984,114,4,22,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1985,2020-09-04,32909.25647965637,249,Elective,2020-09-22,Inconclusive,1985,185,1,10,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -1986,2018-10-30,46316.393646287564,378,Elective,2018-11-10,Inconclusive,1986,322,2,29,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1987,2019-04-23,34730.572446504884,220,Elective,2019-04-26,Abnormal,1987,55,0,19,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1989,2022-09-23,5814.698960747643,176,Urgent,2022-10-18,Inconclusive,1989,39,1,18,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1990,2023-01-15,48900.028144822645,426,Elective,,Inconclusive,1990,353,1,3,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,OPEN -1991,2022-08-06,49387.20965576066,324,Emergency,2022-08-14,Inconclusive,1991,39,3,19,,,,DISCHARGED -1992,2020-07-20,47932.91760613315,287,Urgent,2020-07-29,Abnormal,1992,346,4,25,,,,DISCHARGED -1993,2021-08-21,14849.3602948883,127,Urgent,2021-08-24,Normal,1993,460,0,9,,,,DISCHARGED -1993,2018-11-17,32225.36731480178,398,Elective,2018-11-28,Abnormal,4151,236,0,23,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1993,2022-09-25,18024.03197837031,243,Elective,2022-09-28,Inconclusive,5911,288,0,12,,,,DISCHARGED -1993,2019-08-11,39647.521929729446,158,Urgent,2019-08-13,Normal,8208,261,1,28,,,,DISCHARGED -1994,2018-12-12,8999.511383111498,381,Urgent,2018-12-23,Normal,1994,215,3,19,,,,DISCHARGED -1995,2022-05-15,11937.70044994392,220,Elective,2022-06-12,Inconclusive,1995,146,2,13,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1996,2021-08-29,24318.936183062666,184,Elective,2021-09-25,Inconclusive,1996,335,1,20,,,,DISCHARGED -1996,2019-04-06,48588.4877518146,443,Urgent,2019-04-18,Normal,6616,167,2,1,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1997,2019-08-16,18255.99630654858,270,Urgent,2019-09-04,Abnormal,1997,91,3,28,,,,DISCHARGED -1998,2023-10-22,34897.339312040254,217,Emergency,2023-11-06,Normal,1998,352,4,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1999,2019-06-19,14839.536433999165,245,Elective,2019-07-15,Inconclusive,1999,58,0,6,,,,DISCHARGED -1999,2018-12-17,35469.8700217584,446,Emergency,2019-01-08,Normal,5841,58,2,18,,,,DISCHARGED -2000,2022-03-16,10407.995137039889,427,Elective,2022-03-24,Inconclusive,2000,303,1,29,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2001,2023-08-19,14823.582168557352,315,Emergency,2023-09-05,Normal,2001,168,2,29,,,,DISCHARGED -2002,2020-02-27,7505.183786862262,351,Urgent,2020-03-28,Normal,2002,268,4,16,,,,DISCHARGED -2003,2018-11-26,24259.419486427603,267,Urgent,2018-12-10,Abnormal,2003,362,0,15,,,,DISCHARGED -2004,2021-10-13,40297.07275956278,174,Elective,2021-10-19,Normal,2004,44,2,12,,,,DISCHARGED -2005,2021-09-03,36238.50343741295,314,Urgent,2021-09-15,Abnormal,2005,344,4,23,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -2006,2021-06-16,2700.555676511574,234,Elective,2021-06-29,Normal,2006,180,1,23,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2007,2020-12-28,31137.503276117357,262,Emergency,2021-01-03,Inconclusive,2007,169,3,21,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2008,2022-03-19,48876.89504731091,317,Elective,2022-03-25,Abnormal,2008,355,1,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -2009,2021-02-17,27650.223057620424,179,Urgent,2021-02-25,Inconclusive,2009,190,0,25,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -2010,2020-08-10,27246.935549930426,446,Elective,2020-09-04,Normal,2010,154,1,26,,,,DISCHARGED -2011,2021-10-17,8549.06438901529,321,Urgent,2021-11-10,Normal,2011,421,1,17,,,,DISCHARGED -2012,2019-01-03,41076.0628395771,358,Elective,2019-01-26,Inconclusive,2012,187,1,20,,,,DISCHARGED -2013,2019-05-29,42272.42958083964,355,Elective,2019-06-09,Normal,2013,6,1,11,,,,DISCHARGED -2014,2020-08-15,19975.2298527301,398,Urgent,2020-08-27,Abnormal,2014,132,0,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2015,2022-08-21,2719.602968915492,439,Elective,2022-09-12,Normal,2015,234,4,24,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2016,2022-02-01,40753.16388517093,356,Elective,2022-03-01,Normal,2016,44,2,0,,,,DISCHARGED -2017,2022-05-30,27626.17716229101,195,Emergency,2022-06-19,Abnormal,2017,313,3,14,,,,DISCHARGED -2018,2021-04-23,16246.593072989095,107,Elective,2021-04-28,Normal,2018,248,2,2,,,,DISCHARGED -2019,2019-04-04,45281.985279707456,114,Emergency,2019-05-02,Normal,2019,498,2,5,,,,DISCHARGED -2020,2021-12-19,9260.447952279146,483,Elective,2022-01-15,Normal,2020,30,3,13,,,,DISCHARGED -2021,2023-05-16,1071.456127337255,360,Emergency,2023-06-02,Abnormal,2021,22,0,22,,,,DISCHARGED -2022,2020-08-20,32388.093844520277,214,Elective,2020-09-10,Inconclusive,2022,425,3,5,,,,DISCHARGED -2023,2023-08-22,37191.461034564745,276,Emergency,,Inconclusive,2023,393,0,0,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -2024,2021-12-02,22831.381895438542,446,Urgent,2021-12-19,Normal,2024,159,2,19,,,,DISCHARGED -2025,2021-06-28,45513.53067008454,263,Emergency,2021-07-02,Inconclusive,2025,362,0,5,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2026,2019-05-01,13800.490493355994,205,Urgent,2019-05-22,Inconclusive,2026,436,4,7,,,,DISCHARGED -2026,2019-05-03,5905.662071404492,108,Urgent,2019-05-22,Abnormal,4090,157,3,25,,,,DISCHARGED -2027,2022-04-24,48673.839489838894,269,Emergency,2022-05-20,Inconclusive,2027,38,4,14,,,,DISCHARGED -2027,2019-10-31,24587.021678844783,415,Urgent,2019-11-23,Inconclusive,2550,414,2,13,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2028,2023-10-19,41322.48311537493,247,Emergency,,Abnormal,2028,81,3,15,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -2029,2023-08-21,23590.442974111906,240,Emergency,2023-09-15,Inconclusive,2029,355,2,19,,,,DISCHARGED -2031,2023-05-11,2314.8431806592434,158,Elective,2023-05-24,Normal,2031,257,4,22,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2032,2019-01-29,22780.579535368885,109,Elective,2019-02-21,Normal,2032,205,2,15,,,,DISCHARGED -2033,2019-01-19,11583.245672978226,370,Emergency,2019-02-17,Inconclusive,2033,76,3,26,,,,DISCHARGED -2034,2021-04-05,20276.82439225447,282,Urgent,2021-05-01,Inconclusive,2034,476,3,18,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2035,2022-08-19,16532.926665381274,450,Urgent,2022-08-23,Normal,2035,11,2,23,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2036,2019-04-22,10363.253008887945,183,Emergency,2019-05-21,Abnormal,2036,294,3,0,,,,DISCHARGED -2037,2020-01-11,38265.866503436126,103,Elective,2020-01-18,Inconclusive,2037,449,3,3,,,,DISCHARGED -2038,2019-09-19,20246.780500469053,269,Elective,2019-10-16,Abnormal,2038,223,2,23,,,,DISCHARGED -2039,2020-06-25,45306.20768750641,413,Elective,2020-07-10,Abnormal,2039,12,4,9,,,,DISCHARGED -2040,2023-03-31,41406.32685394251,447,Elective,2023-04-03,Abnormal,2040,45,3,19,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2041,2020-03-14,4275.88415481029,305,Elective,2020-04-03,Inconclusive,2041,154,3,17,,,,DISCHARGED -2042,2020-05-26,49758.882336384384,270,Urgent,2020-06-11,Normal,2042,112,3,1,,,,DISCHARGED -2043,2021-08-28,5540.501871673423,163,Elective,2021-09-03,Inconclusive,2043,232,3,3,,,,DISCHARGED -2043,2023-03-01,15615.09297550578,156,Urgent,2023-03-05,Normal,3294,16,2,14,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -2044,2020-11-21,23419.25780163656,203,Urgent,2020-12-18,Abnormal,2044,359,4,28,,,,DISCHARGED -2044,2021-06-14,15804.647106077038,303,Urgent,2021-06-17,Inconclusive,3490,222,4,3,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -2045,2019-03-21,31536.83911458599,320,Emergency,2019-04-10,Inconclusive,2045,353,0,15,,,,DISCHARGED -2046,2021-03-12,10827.12339915266,469,Urgent,2021-03-18,Abnormal,2046,187,3,14,,,,DISCHARGED -2047,2022-04-02,26351.518306921786,256,Elective,2022-04-14,Normal,2047,447,3,17,,,,DISCHARGED -2048,2022-06-27,5348.734302659625,457,Emergency,2022-07-05,Normal,2048,343,0,6,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2049,2020-12-28,48362.08001340964,101,Elective,2021-01-03,Abnormal,2049,364,4,14,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2050,2021-07-25,21854.0146281259,375,Emergency,2021-08-02,Abnormal,2050,162,1,21,,,,DISCHARGED -2051,2020-12-08,9925.67313429751,341,Urgent,2020-12-26,Normal,2051,495,1,10,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2052,2020-11-14,15959.371385755869,170,Urgent,2020-11-21,Abnormal,2052,325,4,18,,,,DISCHARGED -2053,2023-08-24,41368.118978286926,500,Elective,,Abnormal,2053,466,3,7,,,,OPEN -2054,2021-10-16,48541.850205770046,371,Elective,2021-11-15,Normal,2054,413,1,23,,,,DISCHARGED -2055,2023-03-14,8377.553044992927,419,Elective,2023-03-22,Normal,2055,454,2,0,,,,DISCHARGED -2056,2022-04-10,39921.51704733342,245,Urgent,2022-04-21,Inconclusive,2056,73,2,2,,,,DISCHARGED -2057,2022-05-24,14789.310597157544,261,Urgent,2022-05-31,Normal,2057,232,0,4,,,,DISCHARGED -2058,2020-11-06,45704.80291242897,158,Emergency,2020-11-13,Inconclusive,2058,223,4,17,,,,DISCHARGED -2059,2022-11-23,4393.604264030067,440,Emergency,2022-12-01,Inconclusive,2059,481,4,11,,,,DISCHARGED -2059,2020-06-14,2463.007275796864,234,Urgent,2020-07-08,Inconclusive,6407,318,1,11,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -2059,2021-07-14,5942.493531111142,479,Elective,2021-08-06,Abnormal,8232,411,3,20,,,,DISCHARGED -2060,2023-06-11,4592.647390434896,263,Emergency,2023-07-03,Inconclusive,2060,59,4,26,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2061,2019-09-20,47896.26204049533,266,Emergency,2019-10-03,Inconclusive,2061,334,1,25,,,,DISCHARGED -2062,2020-12-11,28348.199914675934,407,Emergency,2020-12-14,Normal,2062,221,1,18,,,,DISCHARGED -2063,2022-01-15,46165.750045048815,117,Elective,2022-02-09,Inconclusive,2063,36,4,8,,,,DISCHARGED -2064,2022-03-19,9903.23897126594,314,Elective,2022-04-16,Normal,2064,476,1,10,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2065,2021-06-15,13242.462452917662,295,Elective,2021-06-16,Inconclusive,2065,277,0,16,,,,DISCHARGED -2065,2021-02-21,35567.087908688714,442,Urgent,2021-03-23,Abnormal,7512,195,0,15,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2066,2022-10-09,48524.95848727584,214,Elective,2022-10-10,Normal,2066,403,4,3,,,,DISCHARGED -2067,2020-12-06,11168.75532876516,394,Emergency,2020-12-24,Normal,2067,351,3,9,,,,DISCHARGED -2068,2022-01-14,24677.399998237463,218,Urgent,2022-02-03,Normal,2068,483,0,21,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2069,2020-12-31,25973.43439934297,164,Emergency,2021-01-01,Inconclusive,2069,241,0,14,,,,DISCHARGED -2070,2018-12-04,32670.46186780801,316,Urgent,2018-12-11,Normal,2070,323,4,24,,,,DISCHARGED -2071,2021-01-16,2559.8303424174137,168,Elective,2021-01-24,Normal,2071,218,2,18,,,,DISCHARGED -2072,2023-06-08,30534.64537201438,354,Urgent,2023-06-18,Normal,2072,191,1,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2073,2021-03-06,16893.29456822989,248,Emergency,2021-04-05,Abnormal,2073,16,0,27,,,,DISCHARGED -2074,2023-02-10,46201.73209791707,207,Emergency,,Inconclusive,2074,11,2,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -2075,2022-09-25,16914.794113676413,162,Elective,2022-10-10,Inconclusive,2075,405,3,22,,,,DISCHARGED -2076,2021-08-04,47836.62063419884,229,Urgent,2021-08-16,Normal,2076,400,2,29,,,,DISCHARGED -2077,2019-12-26,38766.63318687199,236,Urgent,2020-01-24,Abnormal,2077,393,4,4,,,,DISCHARGED -2078,2022-12-09,46465.22968326172,449,Elective,2022-12-15,Abnormal,2078,373,3,10,,,,DISCHARGED -2078,2021-09-16,31926.505122881703,453,Urgent,2021-10-08,Inconclusive,3052,192,3,23,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2079,2022-10-22,48586.78122604569,206,Emergency,2022-10-30,Inconclusive,2079,21,2,4,,,,DISCHARGED -2081,2023-03-06,30149.34788755248,104,Emergency,2023-03-21,Inconclusive,2081,473,4,6,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2082,2020-01-11,23138.25897659856,427,Urgent,2020-02-02,Abnormal,2082,119,0,5,,,,DISCHARGED -2083,2021-05-15,3027.8217962428744,417,Emergency,2021-06-12,Inconclusive,2083,209,2,29,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2084,2020-09-28,41102.94377939528,305,Elective,2020-10-06,Inconclusive,2084,305,0,25,,,,DISCHARGED -2084,2020-11-26,34007.44060822871,342,Emergency,2020-12-16,Normal,6180,269,2,12,,,,DISCHARGED -2085,2022-09-17,42363.4239882424,452,Urgent,2022-10-13,Normal,2085,191,0,1,,,,DISCHARGED -2085,2021-01-18,6485.970306762875,271,Emergency,2021-02-02,Abnormal,9924,174,2,18,,,,DISCHARGED -2086,2020-04-18,25463.780987742743,499,Elective,2020-05-01,Normal,2086,284,3,10,,,,DISCHARGED -2087,2019-11-30,34282.97716556832,487,Elective,2019-12-26,Normal,2087,203,1,26,,,,DISCHARGED -2088,2018-11-03,33690.585342013335,357,Elective,2018-11-07,Abnormal,2088,163,3,19,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2089,2022-02-23,46771.21849161071,223,Elective,2022-03-10,Abnormal,2089,250,0,4,,,,DISCHARGED -2090,2023-01-11,28542.96933360632,255,Emergency,2023-01-26,Normal,2090,226,4,8,,,,DISCHARGED -2091,2022-01-12,24919.01818340537,356,Elective,2022-02-10,Abnormal,2091,435,3,5,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -2092,2019-11-29,44923.26265703136,442,Elective,2019-12-26,Abnormal,2092,380,1,16,,,,DISCHARGED -2092,2023-01-19,16601.87170171211,251,Elective,2023-01-24,Normal,7242,459,0,18,,,,DISCHARGED -2093,2022-05-12,46708.80823788788,142,Urgent,2022-05-26,Abnormal,2093,6,3,22,,,,DISCHARGED -2094,2021-05-27,37079.56782331316,298,Urgent,2021-06-10,Normal,2094,28,2,7,,,,DISCHARGED -2096,2020-07-24,10732.59435232566,456,Elective,2020-07-30,Inconclusive,2096,394,4,6,,,,DISCHARGED -2097,2019-05-23,44174.16773087699,199,Urgent,2019-06-15,Abnormal,2097,32,0,4,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2098,2022-12-13,37826.68147158112,374,Emergency,2022-12-14,Abnormal,2098,133,3,14,,,,DISCHARGED -2099,2019-11-26,45584.49829060876,162,Emergency,2019-12-04,Inconclusive,2099,366,0,9,,,,DISCHARGED -2100,2019-09-12,25856.356275460454,297,Elective,2019-10-06,Normal,2100,78,2,23,,,,DISCHARGED -2101,2023-09-26,38455.99547786433,196,Urgent,2023-09-29,Abnormal,2101,415,1,15,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2102,2023-07-09,40134.479606453664,392,Urgent,2023-08-03,Abnormal,2102,434,3,8,,,,DISCHARGED -2103,2020-07-31,12587.52217060346,106,Urgent,2020-08-15,Normal,2103,458,0,6,,,,DISCHARGED -2104,2019-04-28,7588.420163231811,429,Emergency,2019-05-03,Normal,2104,57,0,10,,,,DISCHARGED -2105,2021-12-06,26929.921355979764,437,Urgent,2021-12-28,Abnormal,2105,470,0,8,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -2106,2022-09-09,9327.259870044523,479,Emergency,2022-09-11,Abnormal,2106,25,1,16,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2107,2023-03-30,32596.973552053438,256,Urgent,,Normal,2107,481,0,29,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",OPEN -2108,2022-11-16,11989.362204519535,486,Urgent,2022-11-18,Normal,2108,429,4,8,,,,DISCHARGED -2109,2020-05-03,34827.815240902244,201,Urgent,2020-05-31,Normal,2109,225,4,2,,,,DISCHARGED -2109,2019-07-30,18790.112311173714,110,Elective,2019-08-28,Normal,2407,284,0,21,,,,DISCHARGED -2110,2019-11-11,32155.997682675246,397,Elective,2019-11-23,Normal,2110,3,4,7,,,,DISCHARGED -2111,2019-12-02,48837.91662444725,346,Emergency,2019-12-07,Normal,2111,464,3,18,,,,DISCHARGED -2112,2022-07-22,38033.32261578057,172,Elective,2022-07-28,Inconclusive,2112,98,4,19,,,,DISCHARGED -2113,2023-10-05,27077.69337474183,139,Urgent,2023-10-30,Normal,2113,396,0,15,,,,DISCHARGED -2115,2020-11-25,45613.74976944374,402,Elective,2020-12-13,Inconclusive,2115,488,2,6,,,,DISCHARGED -2115,2019-04-29,4162.294299482434,117,Emergency,2019-05-14,Inconclusive,3509,38,3,27,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -2115,2023-04-14,13481.843601490198,470,Elective,2023-05-07,Abnormal,6605,270,1,6,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2116,2021-03-17,14480.20800156411,108,Elective,2021-04-16,Normal,2116,374,0,19,,,,DISCHARGED -2117,2023-08-08,22610.05069166719,474,Urgent,2023-08-18,Normal,2117,284,1,24,,,,DISCHARGED -2118,2022-07-20,49041.83712488501,110,Emergency,2022-08-19,Abnormal,2118,156,2,12,,,,DISCHARGED -2119,2023-01-20,44784.72199270345,442,Emergency,,Normal,2119,74,1,2,,,,OPEN -2120,2023-10-13,7684.685521442606,248,Urgent,2023-11-04,Abnormal,2120,371,0,11,,,,DISCHARGED -2121,2021-02-04,34397.71731295817,242,Emergency,2021-02-07,Normal,2121,287,0,23,,,,DISCHARGED -2122,2020-03-20,44738.75152787779,289,Elective,2020-04-05,Normal,2122,129,2,7,,,,DISCHARGED -2123,2020-11-15,45539.99655393264,117,Elective,2020-12-09,Inconclusive,2123,174,0,12,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2124,2019-06-08,7219.30369394389,353,Urgent,2019-06-20,Inconclusive,2124,461,2,19,,,,DISCHARGED -2125,2023-07-23,5274.440716905491,117,Urgent,2023-07-26,Normal,2125,83,2,15,,,,DISCHARGED -2126,2022-08-15,19909.398010864497,154,Urgent,2022-08-22,Inconclusive,2126,21,0,6,,,,DISCHARGED -2127,2019-05-18,40530.53507937405,351,Emergency,2019-06-11,Inconclusive,2127,458,4,3,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -2128,2023-02-10,21243.07467193288,223,Urgent,2023-03-08,Inconclusive,2128,26,2,28,,,,DISCHARGED -2129,2023-07-07,3083.1600740083354,127,Emergency,2023-08-03,Inconclusive,2129,194,0,11,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2130,2021-02-13,32997.127608599854,105,Emergency,2021-02-24,Normal,2130,336,4,16,,,,DISCHARGED -2131,2023-09-16,48777.68007258824,493,Emergency,2023-10-09,Inconclusive,2131,381,2,0,,,,DISCHARGED -2132,2022-11-02,27821.708687409784,448,Elective,2022-11-12,Normal,2132,235,4,29,,,,DISCHARGED -2133,2019-04-15,41220.75412978184,489,Emergency,2019-05-09,Inconclusive,2133,439,3,16,,,,DISCHARGED -2134,2021-04-08,29606.4245184412,260,Emergency,2021-04-29,Normal,2134,91,3,1,,,,DISCHARGED -2135,2023-03-06,13657.607499957252,221,Emergency,2023-03-16,Normal,2135,476,4,5,,,,DISCHARGED -2136,2019-05-12,4358.754081952631,128,Elective,2019-05-26,Normal,2136,20,2,11,,,,DISCHARGED -2137,2023-02-21,8012.236285130733,137,Elective,2023-03-07,Normal,2137,302,0,25,,,,DISCHARGED -2138,2022-02-24,14246.813650252376,232,Urgent,2022-03-14,Inconclusive,2138,463,1,10,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2139,2019-05-04,47300.362049135685,335,Elective,2019-06-03,Normal,2139,356,0,20,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2141,2021-03-17,19438.067002583404,116,Urgent,2021-04-07,Inconclusive,2141,442,1,10,,,,DISCHARGED -2142,2019-05-05,41993.05395013485,136,Elective,2019-06-01,Inconclusive,2142,83,1,17,,,,DISCHARGED -2143,2022-06-16,36167.21869272584,123,Urgent,2022-07-12,Normal,2143,261,2,7,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -2144,2020-04-16,22361.41406399233,254,Emergency,2020-05-07,Normal,2144,146,4,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -2145,2020-09-06,48208.99674501512,263,Emergency,2020-09-25,Inconclusive,2145,440,0,6,,,,DISCHARGED -2146,2023-07-23,17525.474760021036,331,Emergency,2023-07-27,Abnormal,2146,452,4,27,,,,DISCHARGED -2147,2020-10-20,23795.476602545383,416,Urgent,2020-11-13,Normal,2147,386,3,13,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -2148,2022-10-25,37693.909176755216,320,Urgent,2022-11-20,Abnormal,2148,256,2,15,,,,DISCHARGED -2149,2021-01-18,4699.461084400098,122,Emergency,2021-02-03,Inconclusive,2149,57,2,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -2150,2019-06-18,18489.543619802986,106,Urgent,2019-07-15,Normal,2150,379,3,8,,,,DISCHARGED -2151,2022-01-15,16024.907097217285,488,Elective,2022-02-09,Inconclusive,2151,421,0,19,,,,DISCHARGED -2152,2023-04-03,28584.572382521823,260,Urgent,2023-04-17,Inconclusive,2152,14,3,28,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2153,2022-12-02,46986.42214523118,244,Elective,2022-12-11,Abnormal,2153,161,0,22,,,,DISCHARGED -2153,2021-08-30,14040.74378787196,224,Elective,2021-09-22,Inconclusive,2899,444,1,20,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2154,2019-04-15,27866.763666625666,325,Elective,2019-05-15,Abnormal,2154,162,2,15,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2155,2020-01-30,46989.64577927644,429,Emergency,2020-02-01,Normal,2155,319,0,20,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -2156,2021-06-27,10624.533398155232,434,Emergency,2021-07-25,Inconclusive,2156,496,4,18,,,,DISCHARGED -2157,2021-04-06,16327.105345642376,364,Elective,2021-04-27,Normal,2157,280,4,15,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2158,2019-03-09,9935.432220366523,286,Urgent,2019-03-11,Abnormal,2158,279,2,8,,,,DISCHARGED -2158,2020-08-10,41080.77719781172,303,Emergency,2020-08-24,Abnormal,6304,11,3,12,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2159,2020-08-15,8034.445956925054,454,Emergency,2020-08-31,Normal,2159,273,3,25,,,,DISCHARGED -2160,2022-12-03,29295.887722246087,125,Elective,2022-12-28,Abnormal,2160,270,0,4,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2161,2020-04-28,33877.32845187741,301,Urgent,2020-05-05,Inconclusive,2161,491,3,21,,,,DISCHARGED -2162,2021-10-25,41565.46945826818,217,Urgent,2021-11-13,Normal,2162,207,2,18,,,,DISCHARGED -2163,2019-07-15,20720.024952434516,152,Urgent,2019-08-04,Abnormal,2163,26,0,9,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -2164,2022-11-17,30051.834844619694,426,Emergency,2022-12-02,Inconclusive,2164,71,1,6,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2165,2021-03-01,48244.6217501954,470,Elective,2021-03-03,Normal,2165,59,3,8,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2166,2020-08-17,9701.398771828128,328,Elective,2020-08-29,Abnormal,2166,429,3,24,,,,DISCHARGED -2166,2021-07-15,27167.536177824102,389,Urgent,2021-07-19,Abnormal,9647,472,0,13,,,,DISCHARGED -2167,2020-05-31,16318.3748057804,481,Emergency,2020-06-11,Abnormal,2167,144,4,14,,,,DISCHARGED -2168,2023-09-06,31102.403444031337,287,Urgent,2023-09-10,Inconclusive,2168,92,3,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2169,2020-05-30,26491.544721336537,398,Elective,2020-06-05,Normal,2169,308,2,9,,,,DISCHARGED -2170,2019-07-30,45191.83947535334,130,Urgent,2019-08-17,Normal,2170,7,3,13,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2171,2023-02-24,7089.890882975364,451,Emergency,2023-03-20,Inconclusive,2171,78,1,25,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2172,2020-11-29,42689.62507377686,375,Emergency,2020-12-10,Abnormal,2172,26,3,20,,,,DISCHARGED -2173,2021-09-24,9328.425283767998,387,Emergency,2021-10-15,Abnormal,2173,173,4,22,,,,DISCHARGED -2174,2022-11-17,26071.391361872087,449,Urgent,2022-12-12,Inconclusive,2174,49,3,28,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2175,2022-05-30,48841.62507533279,108,Urgent,2022-06-19,Abnormal,2175,499,0,11,,,,DISCHARGED -2175,2020-11-20,34231.802301135336,270,Elective,2020-12-07,Normal,7474,198,3,27,,,,DISCHARGED -2176,2019-04-02,38039.931417765954,298,Emergency,2019-05-01,Abnormal,2176,386,4,28,,,,DISCHARGED -2177,2023-01-29,36420.171145492684,237,Urgent,2023-02-24,Inconclusive,2177,348,0,18,,,,DISCHARGED -2178,2020-10-14,33442.613173148435,139,Emergency,2020-11-08,Abnormal,2178,447,2,5,,,,DISCHARGED -2179,2020-01-07,37510.40832339441,495,Elective,2020-02-01,Inconclusive,2179,427,0,11,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2181,2020-01-05,3558.2116770570674,253,Emergency,2020-01-11,Abnormal,2181,180,1,23,,,,DISCHARGED -2182,2022-05-01,20375.112495147718,224,Urgent,2022-05-04,Abnormal,2182,23,0,12,,,,DISCHARGED -2183,2021-12-06,16435.53529602935,351,Emergency,2021-12-30,Abnormal,2183,315,2,7,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2183,2019-04-12,4497.485582304684,302,Emergency,2019-05-12,Inconclusive,6609,377,3,15,,,,DISCHARGED -2184,2021-09-01,19007.95482455334,336,Emergency,2021-09-26,Inconclusive,2184,386,0,1,,,,DISCHARGED -2184,2023-07-03,1604.5156094182737,217,Emergency,2023-08-01,Abnormal,5292,403,0,21,,,,DISCHARGED -2185,2023-03-16,21034.30127545525,254,Elective,,Abnormal,2185,45,0,6,,,,OPEN -2186,2021-03-04,6510.634653794687,367,Emergency,2021-03-25,Abnormal,2186,14,0,11,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2187,2021-09-07,21459.08895558849,348,Elective,2021-09-11,Abnormal,2187,152,2,6,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2188,2019-03-29,28419.730877250546,114,Urgent,2019-04-09,Inconclusive,2188,221,4,18,,,,DISCHARGED -2189,2020-05-28,39880.93402704448,498,Elective,2020-06-06,Abnormal,2189,205,4,13,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2190,2021-11-11,11147.440158012116,162,Elective,2021-12-04,Abnormal,2190,454,0,29,,,,DISCHARGED -2191,2022-07-27,6805.932821423738,199,Elective,2022-08-02,Abnormal,2191,272,2,8,,,,DISCHARGED -2192,2021-07-17,13055.20938644427,172,Urgent,2021-07-19,Inconclusive,2192,381,2,17,,,,DISCHARGED -2193,2022-04-14,29291.418771579654,234,Elective,2022-04-15,Inconclusive,2193,235,0,10,,,,DISCHARGED -2194,2020-10-21,8550.233798177182,188,Elective,2020-11-13,Normal,2194,339,1,15,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2195,2020-08-23,10829.294133240646,334,Emergency,2020-08-24,Inconclusive,2195,227,0,18,,,,DISCHARGED -2196,2023-02-10,13016.534179786677,272,Emergency,2023-03-11,Abnormal,2196,8,1,10,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2197,2020-04-29,48277.99264983504,463,Elective,2020-05-14,Abnormal,2197,165,0,17,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2198,2020-04-01,18012.555199870225,388,Emergency,2020-04-04,Abnormal,2198,431,1,10,,,,DISCHARGED -2199,2019-05-23,19935.255593786685,477,Urgent,2019-06-18,Abnormal,2199,443,1,24,,,,DISCHARGED -2200,2023-10-24,8622.922700028972,274,Emergency,2023-11-13,Normal,2200,318,0,3,,,,DISCHARGED -2201,2023-03-17,40845.32373768378,485,Elective,2023-04-03,Inconclusive,2201,213,1,17,,,,DISCHARGED -2202,2023-01-22,45676.41931605696,220,Urgent,2023-02-08,Inconclusive,2202,116,3,18,,,,DISCHARGED -2203,2022-02-27,45509.01703294312,177,Elective,2022-03-12,Abnormal,2203,385,4,12,,,,DISCHARGED -2204,2023-10-19,14182.60134285872,393,Urgent,,Normal,2204,343,2,3,,,,OPEN -2205,2021-03-11,31712.37366238892,290,Urgent,2021-04-07,Normal,2205,71,1,29,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2206,2022-12-31,5873.404176707509,406,Emergency,2023-01-05,Abnormal,2206,394,1,9,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2207,2020-04-16,41926.89350820833,122,Urgent,2020-05-08,Inconclusive,2207,63,2,28,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -2208,2023-10-25,28067.00809181435,227,Urgent,2023-11-02,Inconclusive,2208,204,1,21,,,,DISCHARGED -2209,2019-11-10,26891.8236745223,134,Elective,2019-11-19,Normal,2209,208,2,4,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -2210,2020-01-03,2618.0554336839377,499,Urgent,2020-01-11,Abnormal,2210,71,0,2,,,,DISCHARGED -2210,2019-02-17,13536.247320570566,401,Elective,2019-03-01,Abnormal,3817,276,3,15,,,,DISCHARGED -2210,2019-12-08,14748.686149267092,246,Elective,2019-12-31,Inconclusive,8639,273,3,25,,,,DISCHARGED -2211,2020-01-18,15533.986929155004,376,Emergency,2020-02-09,Normal,2211,477,4,7,,,,DISCHARGED -2212,2021-11-30,47487.60674557146,481,Emergency,2021-12-06,Normal,2212,319,1,23,,,,DISCHARGED -2213,2020-08-23,2232.198069361695,425,Emergency,2020-09-13,Abnormal,2213,337,4,6,,,,DISCHARGED -2214,2021-01-20,39010.29434319447,400,Elective,2021-02-18,Abnormal,2214,365,0,18,,,,DISCHARGED -2215,2023-07-23,35705.871387620224,305,Elective,2023-08-10,Normal,2215,494,3,13,,,,DISCHARGED -2216,2023-03-31,37633.68565942969,105,Urgent,2023-04-12,Abnormal,2216,94,0,14,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2217,2020-04-21,12504.283118633872,390,Urgent,2020-05-03,Normal,2217,165,0,16,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -2218,2021-03-19,22263.70051785285,192,Urgent,2021-03-23,Abnormal,2218,31,1,20,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2219,2018-12-05,19855.806653142357,338,Emergency,2018-12-29,Abnormal,2219,10,0,0,,,,DISCHARGED -2220,2021-02-06,49843.46711295076,240,Emergency,2021-03-03,Abnormal,2220,300,3,5,,,,DISCHARGED -2221,2018-12-27,39058.03104473268,386,Emergency,2019-01-09,Inconclusive,2221,216,4,26,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2222,2022-08-02,15477.941903278392,282,Elective,2022-08-06,Abnormal,2222,288,3,22,,,,DISCHARGED -2223,2023-05-12,29603.251983868628,455,Urgent,,Abnormal,2223,101,1,14,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,OPEN -2224,2020-11-30,46371.328836617104,123,Urgent,2020-12-16,Inconclusive,2224,424,3,11,,,,DISCHARGED -2224,2022-04-27,8335.993583094772,286,Urgent,2022-05-16,Inconclusive,9255,391,2,20,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -2225,2023-01-20,37770.92297524949,337,Emergency,,Normal,2225,266,4,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -2226,2019-10-16,49108.90302824396,257,Elective,2019-11-08,Inconclusive,2226,213,2,1,,,,DISCHARGED -2227,2021-01-17,36135.620638551576,112,Urgent,2021-02-09,Inconclusive,2227,178,2,4,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -2228,2021-11-27,21432.51922344282,180,Urgent,2021-12-15,Abnormal,2228,87,1,8,,,,DISCHARGED -2229,2023-07-08,43399.97889794341,129,Elective,2023-07-10,Normal,2229,40,0,19,,,,DISCHARGED -2230,2019-11-09,45798.93970582484,281,Urgent,2019-11-16,Normal,2230,400,2,13,,,,DISCHARGED -2231,2020-05-27,37530.24466016462,349,Urgent,2020-05-29,Abnormal,2231,75,3,17,,,,DISCHARGED -2232,2020-09-08,40272.61746946961,134,Elective,2020-10-03,Abnormal,2232,376,0,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -2233,2020-05-30,22963.611941278225,157,Emergency,2020-06-07,Inconclusive,2233,45,3,21,,,,DISCHARGED -2234,2022-08-12,6879.395005204989,447,Urgent,2022-08-16,Abnormal,2234,159,3,7,,,,DISCHARGED -2235,2021-08-10,16438.247326267134,188,Urgent,2021-09-03,Normal,2235,462,0,1,,,,DISCHARGED -2236,2021-06-10,48635.95469476706,184,Emergency,2021-06-15,Normal,2236,79,0,8,,,,DISCHARGED -2237,2022-04-11,32385.32845907817,207,Urgent,2022-04-16,Abnormal,2237,309,3,6,,,,DISCHARGED -2238,2019-12-13,30222.777507948547,269,Urgent,2019-12-27,Inconclusive,2238,85,1,29,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2239,2022-10-05,1004.4168971245352,102,Elective,2022-11-04,Abnormal,2239,91,4,28,,,,DISCHARGED -2240,2021-04-26,28086.62867948905,165,Emergency,2021-05-04,Normal,2240,147,4,17,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2241,2020-04-10,17634.373636304907,325,Elective,2020-04-14,Normal,2241,160,1,26,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2242,2020-02-21,10740.62405697596,490,Urgent,2020-02-28,Abnormal,2242,201,0,15,,,,DISCHARGED -2243,2022-04-05,26653.66414302477,175,Urgent,2022-04-07,Normal,2243,423,3,20,,,,DISCHARGED -2244,2021-04-22,14592.356305414123,316,Urgent,2021-05-20,Inconclusive,2244,415,4,4,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -2245,2022-12-27,18173.04510327892,245,Urgent,2023-01-24,Abnormal,2245,241,3,22,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -2245,2022-07-05,39230.21347524349,286,Urgent,2022-08-01,Inconclusive,5284,352,1,28,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2246,2019-12-19,46916.54683516452,477,Urgent,2019-12-21,Abnormal,2246,1,3,14,,,,DISCHARGED -2247,2023-08-18,10151.614679361466,240,Urgent,2023-08-20,Abnormal,2247,224,1,4,,,,DISCHARGED -2248,2021-11-30,13258.570331758508,348,Elective,2021-12-12,Normal,2248,288,0,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -2249,2021-06-19,4067.955799860332,390,Urgent,2021-06-30,Abnormal,2249,232,1,29,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2249,2023-04-08,16229.170609028886,320,Emergency,2023-04-28,Inconclusive,3379,460,1,21,,,,DISCHARGED -2249,2022-01-09,33857.486093274936,293,Urgent,2022-01-30,Abnormal,7263,413,4,13,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2250,2019-10-10,26557.291356562248,143,Urgent,2019-10-15,Inconclusive,2250,416,3,24,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -2251,2021-08-03,10088.441961099885,447,Urgent,2021-08-18,Inconclusive,2251,76,4,18,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2252,2021-09-19,49936.073748394425,423,Elective,2021-09-21,Abnormal,2252,115,2,2,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -2253,2021-12-29,13837.49574373598,300,Emergency,2022-01-11,Abnormal,2253,153,1,23,,,,DISCHARGED -2254,2021-12-23,36666.61381452589,210,Elective,2022-01-04,Abnormal,2254,405,2,9,,,,DISCHARGED -2255,2020-09-07,43299.943085823,499,Emergency,2020-09-18,Abnormal,2255,102,4,27,,,,DISCHARGED -2255,2021-11-16,13610.31855717903,415,Emergency,2021-11-30,Inconclusive,6292,193,3,5,,,,DISCHARGED -2256,2023-06-29,6207.834879564895,235,Elective,,Abnormal,2256,165,4,27,,,,OPEN -2257,2020-09-21,25083.79189395908,259,Urgent,2020-10-18,Inconclusive,2257,358,3,25,,,,DISCHARGED -2258,2021-08-12,27846.01598254566,477,Urgent,2021-08-15,Inconclusive,2258,89,3,2,,,,DISCHARGED -2259,2019-11-11,10204.894507932186,386,Emergency,2019-12-04,Normal,2259,173,0,1,,,,DISCHARGED -2259,2022-05-12,36353.37927751284,158,Elective,2022-06-02,Abnormal,7658,121,1,12,,,,DISCHARGED -2260,2020-04-12,21081.51233583161,422,Emergency,2020-04-30,Normal,2260,497,4,17,,,,DISCHARGED -2261,2019-07-07,3041.931672303549,427,Emergency,2019-08-04,Normal,2261,142,3,1,,,,DISCHARGED -2262,2019-05-25,44575.62574675339,390,Elective,2019-06-03,Normal,2262,481,4,14,,,,DISCHARGED -2263,2022-05-29,5738.5177622039255,197,Elective,2022-06-27,Abnormal,2263,105,4,4,,,,DISCHARGED -2264,2022-12-01,29155.229941151385,295,Elective,2022-12-23,Abnormal,2264,374,3,14,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2265,2020-09-30,14104.90520641113,246,Elective,2020-10-11,Inconclusive,2265,427,2,27,,,,DISCHARGED -2266,2023-04-06,13936.745716455896,182,Urgent,,Inconclusive,2266,304,1,20,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -2267,2019-11-09,36208.42347482683,311,Elective,2019-11-12,Normal,2267,359,1,16,,,,DISCHARGED -2268,2021-10-09,33695.97320850632,346,Urgent,2021-11-06,Normal,2268,458,0,1,,,,DISCHARGED -2269,2022-03-18,39605.76515552316,439,Urgent,2022-04-14,Normal,2269,316,0,17,,,,DISCHARGED -2270,2023-02-14,1663.0484002373282,197,Urgent,2023-03-07,Inconclusive,2270,450,0,14,,,,DISCHARGED -2271,2022-02-13,38618.586930833095,144,Elective,2022-03-09,Abnormal,2271,122,1,19,,,,DISCHARGED -2271,2023-04-22,36371.68331885953,333,Urgent,2023-04-25,Inconclusive,8982,389,2,22,,,,DISCHARGED -2272,2019-04-23,6345.96900233399,330,Urgent,2019-05-20,Normal,2272,8,1,2,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2273,2021-05-16,1469.3568232657483,262,Elective,2021-05-23,Abnormal,2273,261,1,4,,,,DISCHARGED -2274,2021-03-12,48786.20598923016,396,Emergency,2021-04-11,Inconclusive,2274,72,1,10,,,,DISCHARGED -2275,2023-01-28,32013.08394283032,347,Urgent,2023-02-09,Inconclusive,2275,358,1,8,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -2276,2022-11-22,33993.736166348615,466,Urgent,2022-12-06,Inconclusive,2276,222,2,4,,,,DISCHARGED -2276,2020-03-05,47211.79630226493,131,Urgent,2020-03-18,Inconclusive,6118,415,0,24,,,,DISCHARGED -2277,2021-01-01,19094.737388529287,365,Elective,2021-01-19,Abnormal,2277,40,4,0,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2278,2022-05-26,14345.93278636867,244,Elective,2022-06-03,Abnormal,2278,369,0,24,,,,DISCHARGED -2279,2020-08-30,2359.1499409367643,122,Emergency,2020-09-23,Inconclusive,2279,203,0,13,,,,DISCHARGED -2280,2022-08-05,36786.38483100933,329,Urgent,2022-08-21,Abnormal,2280,263,4,4,,,,DISCHARGED -2281,2023-01-16,6711.086768488117,448,Urgent,2023-02-11,Abnormal,2281,327,1,7,,,,DISCHARGED -2283,2021-11-21,2633.189003094448,160,Emergency,2021-12-02,Inconclusive,2283,177,2,20,,,,DISCHARGED -2284,2019-01-07,30208.612385383854,414,Emergency,2019-01-22,Normal,2284,347,2,13,,,,DISCHARGED -2285,2023-04-06,18223.34113885301,403,Elective,2023-04-22,Abnormal,2285,317,0,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2286,2020-11-22,16667.598315013645,386,Elective,2020-11-30,Inconclusive,2286,83,4,15,,,,DISCHARGED -2287,2023-08-01,3568.1713752587416,387,Elective,2023-08-03,Abnormal,2287,317,3,5,,,,DISCHARGED -2288,2019-04-24,39731.42706785454,239,Urgent,2019-05-10,Abnormal,2288,110,1,7,,,,DISCHARGED -2289,2022-05-21,20839.647840054804,255,Emergency,2022-06-18,Abnormal,2289,250,0,1,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2290,2022-02-01,19975.10973788638,169,Urgent,2022-02-20,Inconclusive,2290,382,2,18,,,,DISCHARGED -2291,2022-04-22,28882.73765923182,181,Emergency,2022-05-21,Inconclusive,2291,6,4,26,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -2292,2019-11-11,7373.567584956037,130,Urgent,2019-11-24,Normal,2292,458,4,8,,,,DISCHARGED -2293,2022-03-16,10959.395742733132,398,Urgent,2022-03-20,Normal,2293,83,0,4,,,,DISCHARGED -2294,2020-04-06,45917.33018818768,499,Urgent,2020-04-11,Inconclusive,2294,207,3,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -2295,2021-05-21,16075.748025604604,424,Emergency,2021-06-08,Abnormal,2295,387,2,24,,,,DISCHARGED -2296,2020-11-03,15263.9813639346,318,Elective,2020-11-27,Abnormal,2296,389,0,25,,,,DISCHARGED -2297,2023-01-25,10317.887835533937,365,Elective,,Inconclusive,2297,313,3,18,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",OPEN -2298,2022-04-27,16342.055683539633,165,Emergency,2022-05-08,Inconclusive,2298,21,4,29,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2299,2022-05-19,4712.685522762482,388,Emergency,2022-06-13,Inconclusive,2299,409,1,3,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2300,2020-05-16,43718.4297223795,219,Urgent,2020-05-28,Normal,2300,382,2,15,,,,DISCHARGED -2301,2019-02-16,25170.352557946007,228,Urgent,2019-03-11,Inconclusive,2301,2,2,15,,,,DISCHARGED -2302,2021-05-01,33119.394464649544,208,Elective,2021-05-29,Inconclusive,2302,126,3,15,,,,DISCHARGED -2303,2020-10-04,16200.410932547786,407,Elective,2020-10-10,Normal,2303,296,0,6,,,,DISCHARGED -2304,2021-08-10,25930.072373980896,490,Urgent,2021-08-30,Abnormal,2304,187,4,17,,,,DISCHARGED -2305,2023-07-06,2861.193169953277,367,Elective,2023-07-24,Abnormal,2305,361,3,23,,,,DISCHARGED -2306,2020-04-22,28932.177878259987,323,Urgent,2020-05-08,Normal,2306,13,1,20,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2307,2023-08-25,11428.0432828395,346,Urgent,2023-09-08,Inconclusive,2307,458,1,0,,,,DISCHARGED -2308,2022-07-06,16791.356543482056,316,Emergency,2022-07-11,Abnormal,2308,465,1,2,,,,DISCHARGED -2309,2022-12-23,30994.68289081718,396,Urgent,2023-01-16,Normal,2309,11,3,24,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2310,2021-04-30,44373.26861025433,427,Emergency,2021-05-10,Inconclusive,2310,86,4,20,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2311,2020-09-17,34201.51521616795,118,Emergency,2020-09-27,Normal,2311,11,2,7,,,,DISCHARGED -2312,2019-10-25,16806.53914284886,460,Emergency,2019-11-08,Abnormal,2312,396,0,0,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2313,2020-07-14,17930.808495119258,498,Emergency,2020-07-29,Abnormal,2313,24,2,29,,,,DISCHARGED -2314,2021-12-30,3884.099762499568,104,Urgent,2022-01-21,Inconclusive,2314,300,4,6,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2315,2021-09-08,46998.90423250482,321,Elective,2021-09-24,Abnormal,2315,242,2,6,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -2316,2023-05-11,48959.71386836236,405,Elective,,Inconclusive,2316,121,3,7,,,,OPEN -2317,2019-02-18,6572.955455675588,362,Emergency,2019-02-27,Inconclusive,2317,146,1,18,,,,DISCHARGED -2318,2020-11-11,18673.30199706926,281,Urgent,2020-11-24,Inconclusive,2318,54,4,16,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -2319,2022-07-11,35275.92374896492,140,Urgent,2022-07-17,Normal,2319,237,4,10,,,,DISCHARGED -2320,2023-06-15,1118.997432630481,283,Urgent,2023-06-24,Inconclusive,2320,355,2,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -2321,2021-08-26,28491.069181388608,143,Urgent,2021-09-04,Normal,2321,172,3,8,,,,DISCHARGED -2322,2020-10-11,41057.71919588235,374,Emergency,2020-11-03,Inconclusive,2322,391,2,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2323,2019-12-21,29357.987181561923,216,Elective,2020-01-14,Abnormal,2323,220,2,10,,,,DISCHARGED -2324,2021-08-05,11837.898342336484,396,Urgent,2021-08-17,Abnormal,2324,118,4,5,,,,DISCHARGED -2325,2018-11-15,12093.477203602828,383,Elective,2018-11-20,Abnormal,2325,308,2,8,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2327,2020-02-05,25694.422324704847,432,Emergency,2020-02-10,Inconclusive,2327,182,1,29,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -2328,2022-10-24,30641.502934203352,464,Emergency,2022-11-10,Normal,2328,287,2,17,,,,DISCHARGED -2328,2022-01-31,4355.584887515309,358,Urgent,2022-02-03,Abnormal,5179,306,1,19,,,,DISCHARGED -2328,2020-07-12,40922.66596426085,374,Emergency,2020-08-03,Abnormal,9889,299,4,1,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2329,2021-10-25,1150.0385412114915,210,Emergency,2021-10-31,Abnormal,2329,81,3,3,,,,DISCHARGED -2329,2020-06-19,43307.802870540574,270,Elective,2020-07-06,Inconclusive,7297,453,1,17,,,,DISCHARGED -2330,2023-03-15,47530.95681156473,409,Elective,2023-03-26,Abnormal,2330,401,3,27,,,,DISCHARGED -2331,2022-09-12,39608.70209810854,142,Urgent,2022-09-21,Abnormal,2331,210,3,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2332,2022-10-04,42851.17690394441,302,Emergency,2022-10-19,Inconclusive,2332,149,1,10,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -2333,2021-04-15,45730.30140913316,213,Urgent,2021-05-02,Normal,2333,36,4,2,,,,DISCHARGED -2334,2021-12-05,4571.611661079727,194,Urgent,2021-12-23,Inconclusive,2334,351,0,7,,,,DISCHARGED -2335,2019-10-09,25721.31443907016,476,Emergency,2019-10-30,Inconclusive,2335,311,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -2336,2020-09-09,30864.42954409565,307,Emergency,2020-10-03,Inconclusive,2336,360,3,19,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2336,2023-07-08,38285.36347317979,145,Emergency,2023-07-22,Abnormal,6027,58,4,20,,,,DISCHARGED -2337,2018-12-02,14701.08535879573,198,Elective,2018-12-21,Inconclusive,2337,130,4,21,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2338,2021-08-02,18208.46143394193,341,Elective,2021-08-13,Normal,2338,411,2,21,,,,DISCHARGED -2339,2020-10-14,43043.98520400591,429,Urgent,2020-10-26,Normal,2339,201,4,4,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2340,2023-05-17,11140.941341541358,424,Urgent,2023-05-24,Normal,2340,242,3,27,,,,DISCHARGED -2341,2019-02-15,5194.221904638795,218,Urgent,2019-02-22,Normal,2341,34,1,10,,,,DISCHARGED -2342,2022-07-25,45406.158712173776,474,Emergency,2022-08-04,Normal,2342,444,0,11,,,,DISCHARGED -2344,2019-07-22,43980.19100267912,261,Urgent,2019-07-25,Inconclusive,2344,92,2,21,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -2345,2021-07-31,49038.78501409282,101,Emergency,2021-08-19,Inconclusive,2345,437,1,8,,,,DISCHARGED -2346,2022-08-29,41605.84629859976,464,Urgent,2022-09-17,Normal,2346,446,0,20,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2347,2021-07-17,46472.464608285765,342,Emergency,2021-07-28,Abnormal,2347,206,0,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2348,2019-04-21,24875.20478551069,153,Emergency,2019-04-24,Inconclusive,2348,352,0,21,,,,DISCHARGED -2349,2022-10-08,40118.65938226198,266,Elective,2022-10-26,Abnormal,2349,390,1,19,,,,DISCHARGED -2350,2018-12-14,45298.38118329326,219,Emergency,2018-12-24,Normal,2350,331,2,28,,,,DISCHARGED -2351,2021-09-30,11573.046617163329,457,Elective,2021-10-27,Normal,2351,304,2,2,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2352,2019-04-06,9358.753378174602,292,Emergency,2019-04-14,Inconclusive,2352,349,0,12,,,,DISCHARGED -2353,2021-08-13,22397.464256220595,333,Emergency,2021-09-04,Inconclusive,2353,212,1,27,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -2354,2021-05-16,24258.90963660196,146,Elective,2021-05-27,Abnormal,2354,158,0,21,,,,DISCHARGED -2355,2018-12-08,23746.080450451056,386,Elective,2018-12-31,Abnormal,2355,441,4,10,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -2356,2023-05-12,26765.097634779537,210,Urgent,2023-05-20,Normal,2356,444,2,10,,,,DISCHARGED -2357,2020-07-12,38202.82923434137,390,Urgent,2020-08-08,Inconclusive,2357,23,3,20,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2358,2022-08-14,47777.21505946255,432,Emergency,2022-09-09,Normal,2358,403,0,19,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2359,2019-03-11,20929.38642144212,189,Emergency,2019-03-27,Inconclusive,2359,292,4,20,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2360,2022-04-27,46271.862132410766,331,Elective,2022-05-25,Normal,2360,3,2,6,,,,DISCHARGED -2361,2022-07-08,38515.42563814221,492,Urgent,2022-07-22,Inconclusive,2361,219,1,16,,,,DISCHARGED -2362,2019-12-15,35294.06997299388,435,Urgent,2019-12-23,Abnormal,2362,363,2,15,,,,DISCHARGED -2363,2021-10-10,14939.983172651551,124,Elective,2021-10-18,Inconclusive,2363,381,1,13,,,,DISCHARGED -2364,2019-07-20,26548.300531705896,346,Urgent,2019-08-15,Abnormal,2364,19,1,0,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2365,2019-11-05,33998.31629916556,150,Elective,2019-12-03,Inconclusive,2365,443,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2366,2022-04-18,17851.783001176973,495,Elective,2022-04-23,Abnormal,2366,151,0,12,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -2367,2022-08-30,31822.97412474739,373,Emergency,2022-09-09,Inconclusive,2367,49,2,0,,,,DISCHARGED -2368,2018-11-11,5650.422298570675,269,Emergency,2018-11-26,Inconclusive,2368,176,4,1,,,,DISCHARGED -2369,2020-10-13,44765.58716091066,115,Emergency,2020-10-24,Inconclusive,2369,434,2,8,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2370,2020-01-24,31154.085244403264,133,Emergency,2020-02-17,Inconclusive,2370,95,3,12,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -2371,2022-02-15,41189.99688014055,233,Elective,2022-02-20,Normal,2371,104,1,4,,,,DISCHARGED -2372,2022-06-12,24410.65050679472,172,Urgent,2022-06-16,Abnormal,2372,419,1,29,,,,DISCHARGED -2373,2019-04-28,4518.748954945522,286,Urgent,2019-05-25,Normal,2373,249,0,8,,,,DISCHARGED -2374,2020-10-14,2414.020915480637,218,Urgent,2020-10-20,Inconclusive,2374,116,4,12,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2375,2020-12-19,24941.410274328853,419,Urgent,2021-01-03,Abnormal,2375,353,0,4,,,,DISCHARGED -2376,2020-06-01,32562.70351950048,212,Emergency,2020-06-07,Normal,2376,227,3,14,,,,DISCHARGED -2377,2022-09-05,41347.98857123617,276,Urgent,2022-09-08,Inconclusive,2377,65,2,29,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -2378,2023-08-15,39553.32456079616,278,Elective,2023-08-25,Abnormal,2378,334,2,6,,,,DISCHARGED -2379,2022-07-18,19755.373031721934,402,Emergency,2022-07-29,Normal,2379,417,4,13,,,,DISCHARGED -2380,2020-05-02,37531.703847054814,183,Elective,2020-05-05,Inconclusive,2380,419,0,29,,,,DISCHARGED -2381,2021-07-05,19901.46012085634,154,Urgent,2021-08-01,Inconclusive,2381,261,0,15,,,,DISCHARGED -2381,2018-12-25,13286.217132280082,249,Elective,2019-01-22,Inconclusive,3726,294,3,5,,,,DISCHARGED -2381,2022-04-03,11936.684518157424,225,Elective,2022-04-17,Abnormal,9410,425,2,1,,,,DISCHARGED -2382,2019-12-12,15475.123417755798,317,Emergency,2019-12-17,Normal,2382,242,0,15,,,,DISCHARGED -2383,2021-05-23,4253.658485597198,230,Urgent,2021-06-12,Inconclusive,2383,370,4,18,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2384,2018-11-06,32160.31232827805,333,Elective,2018-11-21,Abnormal,2384,185,2,4,,,,DISCHARGED -2385,2021-12-20,30200.854989668474,171,Emergency,2022-01-06,Abnormal,2385,245,3,3,,,,DISCHARGED -2386,2020-08-06,43652.54938453201,322,Urgent,2020-08-29,Inconclusive,2386,124,4,13,,,,DISCHARGED -2387,2019-06-27,3695.774905599485,335,Urgent,2019-07-25,Abnormal,2387,267,1,26,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2388,2019-03-20,36441.792541175215,146,Emergency,2019-04-13,Normal,2388,130,3,5,,,,DISCHARGED -2389,2019-04-14,22599.918354897974,180,Emergency,2019-04-24,Abnormal,2389,236,4,7,,,,DISCHARGED -2390,2023-04-22,3841.4445514061263,265,Urgent,,Abnormal,2390,17,0,23,,,,OPEN -2391,2023-10-11,23239.465338603477,384,Elective,2023-10-24,Inconclusive,2391,39,1,2,,,,DISCHARGED -2392,2020-01-25,21155.17101002852,375,Emergency,2020-02-24,Inconclusive,2392,20,3,3,,,,DISCHARGED -2393,2022-06-30,28782.55631491791,237,Elective,2022-07-12,Normal,2393,398,0,0,,,,DISCHARGED -2394,2021-12-12,48724.403799461856,309,Elective,2021-12-25,Inconclusive,2394,224,1,1,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2395,2019-08-29,21231.60183244362,448,Emergency,2019-09-04,Normal,2395,354,2,12,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2396,2019-04-04,48265.43167528375,120,Urgent,2019-05-02,Abnormal,2396,281,0,8,,,,DISCHARGED -2397,2022-12-16,30971.332011789167,181,Emergency,2022-12-17,Abnormal,2397,7,4,11,,,,DISCHARGED -2398,2019-08-28,29508.544951269727,301,Elective,2019-09-13,Normal,2398,99,3,9,,,,DISCHARGED -2399,2021-04-03,35239.642723172175,139,Urgent,2021-04-09,Abnormal,2399,239,1,9,,,,DISCHARGED -2400,2023-08-16,18718.386094436544,175,Emergency,2023-09-02,Inconclusive,2400,477,0,17,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2400,2023-09-26,7060.340799098249,391,Urgent,2023-10-12,Inconclusive,3538,86,2,11,,,,DISCHARGED -2401,2022-03-14,5958.399674826673,329,Urgent,2022-03-26,Abnormal,2401,297,3,21,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2402,2020-10-23,26235.62790564147,348,Emergency,2020-11-13,Normal,2402,427,3,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2403,2022-01-22,15019.554181198337,431,Elective,2022-02-12,Normal,2403,13,0,15,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2404,2019-04-12,21708.336790396603,455,Emergency,2019-04-27,Abnormal,2404,333,2,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2405,2022-11-13,9746.567052411929,310,Emergency,2022-11-22,Abnormal,2405,1,1,5,,,,DISCHARGED -2406,2021-10-08,48205.951813282685,121,Elective,2021-10-25,Normal,2406,374,0,23,,,,DISCHARGED -2409,2022-12-27,31329.855277068917,155,Urgent,2023-01-17,Abnormal,2409,292,1,24,,,,DISCHARGED -2410,2021-08-04,47936.2800005293,395,Elective,2021-08-16,Abnormal,2410,324,3,23,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2411,2023-10-15,19260.66177930895,393,Elective,2023-10-22,Abnormal,2411,421,1,20,,,,DISCHARGED -2412,2022-07-10,47777.3761609721,185,Urgent,2022-07-14,Inconclusive,2412,492,2,23,,,,DISCHARGED -2413,2020-12-02,28971.34179109367,367,Emergency,2020-12-24,Normal,2413,40,4,9,,,,DISCHARGED -2414,2019-10-17,26390.525806142625,478,Elective,2019-11-13,Inconclusive,2414,317,2,14,,,,DISCHARGED -2415,2022-04-02,3907.408582108694,399,Elective,2022-04-28,Inconclusive,2415,315,1,25,,,,DISCHARGED -2416,2022-05-01,45860.2366883881,284,Urgent,2022-05-15,Normal,2416,380,0,8,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2417,2019-12-14,36706.498065552645,463,Emergency,2019-12-19,Abnormal,2417,110,3,29,,,,DISCHARGED -2418,2022-09-26,42697.14994896471,236,Elective,2022-10-05,Abnormal,2418,13,4,23,,,,DISCHARGED -2419,2020-02-23,40329.82331813814,189,Emergency,2020-03-01,Normal,2419,230,0,1,,,,DISCHARGED -2420,2021-11-07,19474.37857921707,275,Urgent,2021-12-06,Abnormal,2420,472,0,17,,,,DISCHARGED -2421,2022-06-16,41513.49610937837,259,Elective,2022-07-15,Normal,2421,83,2,11,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2421,2019-06-09,13969.259804359022,442,Emergency,2019-07-03,Normal,5518,129,1,2,,,,DISCHARGED -2422,2019-11-18,45186.29949207065,345,Emergency,2019-12-09,Inconclusive,2422,230,2,6,,,,DISCHARGED -2423,2022-10-13,41920.69500328894,369,Urgent,2022-11-07,Abnormal,2423,325,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2424,2019-06-07,8839.557139021788,257,Emergency,2019-06-09,Abnormal,2424,144,2,7,,,,DISCHARGED -2425,2018-11-21,45789.5706959931,123,Elective,2018-12-11,Abnormal,2425,378,0,24,,,,DISCHARGED -2426,2023-02-17,23437.707981805444,477,Elective,2023-03-12,Inconclusive,2426,344,3,5,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2427,2022-12-22,30037.19193716713,305,Emergency,2023-01-04,Inconclusive,2427,27,1,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -2428,2020-01-06,20629.109799307986,169,Emergency,2020-01-24,Normal,2428,65,4,13,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2429,2022-05-20,16590.439272803203,313,Urgent,2022-06-04,Abnormal,2429,162,4,15,,,,DISCHARGED -2430,2020-06-10,32071.67937736797,140,Elective,2020-07-02,Inconclusive,2430,228,0,27,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2431,2022-06-22,11013.209220994297,330,Emergency,2022-07-01,Inconclusive,2431,260,2,15,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2432,2019-03-18,16924.127913348588,205,Urgent,2019-03-24,Inconclusive,2432,448,2,3,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2433,2023-07-13,14742.926042628931,497,Elective,2023-07-28,Inconclusive,2433,423,0,28,,,,DISCHARGED -2434,2019-05-31,11245.848532158388,246,Elective,2019-06-19,Inconclusive,2434,459,4,5,,,,DISCHARGED -2434,2021-10-03,34128.92877588977,338,Emergency,2021-10-07,Inconclusive,3626,439,4,14,,,,DISCHARGED -2435,2019-06-18,5018.831061409541,356,Elective,2019-07-12,Inconclusive,2435,163,2,27,,,,DISCHARGED -2436,2019-09-26,2241.951751163587,178,Urgent,2019-10-08,Inconclusive,2436,300,1,21,,,,DISCHARGED -2437,2022-03-13,6371.920728262035,310,Urgent,2022-04-11,Normal,2437,406,3,7,,,,DISCHARGED -2438,2019-12-15,40145.24000138376,117,Emergency,2019-12-17,Normal,2438,302,1,0,,,,DISCHARGED -2439,2019-05-14,39839.63860765666,422,Emergency,2019-06-13,Abnormal,2439,286,4,12,,,,DISCHARGED -2440,2023-08-09,42673.708187137694,435,Elective,2023-09-07,Inconclusive,2440,394,1,26,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2441,2023-03-13,10830.14210525292,275,Elective,2023-04-08,Inconclusive,2441,9,3,17,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -2442,2019-02-12,21320.117258521143,165,Elective,2019-02-23,Normal,2442,194,1,17,,,,DISCHARGED -2443,2022-01-20,29603.05970719841,407,Elective,2022-02-06,Inconclusive,2443,117,1,12,,,,DISCHARGED -2444,2021-04-20,22130.223479035947,196,Elective,2021-05-06,Normal,2444,269,1,21,,,,DISCHARGED -2445,2022-06-24,20064.509542107084,174,Urgent,2022-07-19,Abnormal,2445,79,1,29,,,,DISCHARGED -2446,2019-07-07,7156.415792828478,485,Emergency,2019-07-24,Abnormal,2446,457,0,13,,,,DISCHARGED -2447,2022-10-06,5157.15398660283,256,Elective,2022-10-18,Inconclusive,2447,92,4,10,,,,DISCHARGED -2448,2021-03-31,5438.366580021159,258,Elective,2021-04-07,Abnormal,2448,265,3,6,,,,DISCHARGED -2449,2020-06-26,43897.651310667614,275,Urgent,2020-07-06,Abnormal,2449,331,4,17,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2450,2021-08-17,14013.744275075303,376,Urgent,2021-08-27,Abnormal,2450,349,0,20,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -2450,2019-04-22,16362.17600643445,360,Urgent,2019-05-14,Abnormal,9038,360,0,21,,,,DISCHARGED -2451,2020-09-17,39521.41561682892,327,Urgent,2020-10-16,Inconclusive,2451,256,0,3,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -2452,2022-01-10,3273.499068275321,385,Emergency,2022-02-07,Abnormal,2452,132,0,16,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2453,2023-01-02,28194.600073883343,333,Emergency,2023-01-09,Inconclusive,2453,275,1,18,,,,DISCHARGED -2454,2023-04-12,45984.47445143882,445,Emergency,,Inconclusive,2454,263,4,13,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",OPEN -2455,2019-03-06,5397.666347489107,374,Emergency,2019-03-28,Normal,2455,170,2,9,,,,DISCHARGED -2455,2021-04-06,35939.43169113827,467,Urgent,2021-04-30,Abnormal,9304,459,3,24,,,,DISCHARGED -2456,2021-07-17,6200.695529873992,458,Urgent,2021-08-07,Inconclusive,2456,0,0,28,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -2457,2019-09-08,16011.779350249855,120,Emergency,2019-09-17,Inconclusive,2457,312,4,5,,,,DISCHARGED -2458,2019-11-29,8161.201023922842,152,Urgent,2019-12-06,Inconclusive,2458,63,0,17,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -2459,2022-11-29,16188.837522892652,457,Urgent,2022-12-19,Inconclusive,2459,373,0,24,,,,DISCHARGED -2460,2022-08-20,11901.589746095648,276,Urgent,2022-09-15,Abnormal,2460,467,0,3,,,,DISCHARGED -2461,2021-06-20,15380.13437328461,419,Urgent,2021-06-28,Inconclusive,2461,283,0,10,,,,DISCHARGED -2461,2019-12-03,29806.891947953394,191,Urgent,2019-12-27,Normal,6354,120,0,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2462,2020-12-26,46700.03560980359,473,Elective,2021-01-07,Abnormal,2462,106,3,7,,,,DISCHARGED -2463,2022-04-29,37780.69359828156,259,Elective,2022-05-01,Abnormal,2463,420,4,9,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2464,2022-07-31,16219.584011911596,165,Urgent,2022-08-08,Inconclusive,2464,174,0,22,,,,DISCHARGED -2465,2022-11-18,8442.245213122707,221,Elective,2022-11-28,Normal,2465,484,0,27,,,,DISCHARGED -2466,2022-06-10,42220.478409769945,248,Urgent,2022-06-22,Inconclusive,2466,203,0,10,,,,DISCHARGED -2466,2021-11-22,18293.22504138837,311,Elective,2021-12-18,Inconclusive,5952,164,0,2,,,,DISCHARGED -2466,2023-09-03,22506.327469888354,153,Emergency,2023-09-16,Normal,7382,304,1,14,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2467,2019-05-02,27335.91992123,342,Elective,2019-05-25,Abnormal,2467,496,1,7,,,,DISCHARGED -2468,2020-12-23,2517.450463083744,379,Emergency,2021-01-21,Abnormal,2468,119,2,19,,,,DISCHARGED -2469,2019-01-11,45402.997497176286,341,Urgent,2019-01-20,Inconclusive,2469,43,0,17,,,,DISCHARGED -2470,2020-11-22,22476.741759452263,213,Urgent,2020-11-30,Inconclusive,2470,311,2,26,,,,DISCHARGED -2471,2019-12-24,22918.0911148914,475,Urgent,2020-01-19,Inconclusive,2471,155,3,20,,,,DISCHARGED -2472,2021-09-03,29395.418118566435,437,Emergency,2021-10-02,Inconclusive,2472,366,2,0,,,,DISCHARGED -2472,2022-11-04,13838.988236861156,158,Elective,2022-11-30,Abnormal,6303,206,4,28,,,,DISCHARGED -2473,2022-06-09,47399.457605142845,155,Emergency,2022-07-09,Normal,2473,389,1,23,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2474,2022-12-09,49003.46904928367,208,Urgent,2022-12-29,Abnormal,2474,107,1,29,,,,DISCHARGED -2475,2022-01-24,33718.96556538412,288,Elective,2022-02-19,Inconclusive,2475,250,0,7,,,,DISCHARGED -2476,2023-04-07,28229.15208168493,308,Elective,2023-05-05,Abnormal,2476,444,0,2,,,,DISCHARGED -2477,2019-03-09,24297.349844283555,389,Elective,2019-03-22,Abnormal,2477,403,3,0,,,,DISCHARGED -2478,2022-01-06,39336.78760601399,416,Elective,2022-01-31,Normal,2478,369,3,19,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -2479,2023-03-21,12470.10454188172,333,Elective,,Inconclusive,2479,333,4,24,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,OPEN -2480,2019-06-26,1333.1894640653377,493,Elective,2019-07-22,Normal,2480,129,0,15,,,,DISCHARGED -2481,2020-09-09,33872.49276820652,287,Emergency,2020-09-28,Abnormal,2481,456,0,8,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2482,2022-11-19,13891.42976370759,497,Emergency,2022-12-19,Inconclusive,2482,292,3,16,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2483,2018-11-09,38436.50156984787,186,Urgent,2018-12-02,Abnormal,2483,19,3,26,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2484,2020-10-21,34070.15288761023,208,Urgent,2020-11-01,Normal,2484,281,3,15,,,,DISCHARGED -2485,2019-09-02,1797.8955498038824,248,Urgent,2019-09-07,Normal,2485,284,1,22,,,,DISCHARGED -2485,2019-02-13,49611.00275801964,240,Elective,2019-03-09,Inconclusive,8116,0,2,5,,,,DISCHARGED -2486,2019-03-10,42331.91830144021,416,Urgent,2019-03-25,Abnormal,2486,118,2,29,,,,DISCHARGED -2487,2022-04-07,37053.19919361424,164,Emergency,2022-04-16,Inconclusive,2487,34,0,22,,,,DISCHARGED -2488,2021-08-07,36351.927384573646,183,Elective,2021-09-04,Inconclusive,2488,197,1,6,,,,DISCHARGED -2489,2019-10-04,16567.23352595263,141,Urgent,2019-10-20,Abnormal,2489,484,3,23,,,,DISCHARGED -2490,2022-06-03,30202.06210754691,312,Emergency,2022-06-30,Abnormal,2490,244,0,15,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2491,2023-10-12,33626.74015820449,207,Urgent,2023-11-07,Normal,2491,58,1,7,,,,DISCHARGED -2492,2019-06-05,3966.212163117587,433,Urgent,2019-06-24,Abnormal,2492,324,4,9,,,,DISCHARGED -2493,2022-01-30,5342.107255750262,376,Emergency,2022-02-25,Abnormal,2493,160,1,13,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2494,2022-07-25,36815.52831938813,401,Emergency,2022-08-23,Abnormal,2494,496,0,10,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -2495,2020-03-10,47964.57112290667,353,Elective,2020-03-23,Inconclusive,2495,178,2,1,,,,DISCHARGED -2496,2021-10-27,37411.45896100474,122,Urgent,2021-11-06,Normal,2496,205,3,11,,,,DISCHARGED -2497,2019-03-29,43465.7415969958,362,Elective,2019-04-10,Inconclusive,2497,11,4,27,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2498,2022-04-10,32981.51555712364,363,Urgent,2022-04-16,Normal,2498,489,1,27,,,,DISCHARGED -2499,2020-08-29,9245.538029929652,322,Elective,2020-09-16,Inconclusive,2499,275,0,19,,,,DISCHARGED -2500,2023-07-16,5105.853256042749,357,Emergency,2023-07-26,Abnormal,2500,180,0,19,,,,DISCHARGED -2501,2020-07-10,47869.53814099664,401,Urgent,2020-07-14,Inconclusive,2501,241,3,12,,,,DISCHARGED -2501,2022-04-17,9343.708181058417,470,Elective,2022-05-16,Normal,3213,215,0,14,,,,DISCHARGED -2501,2021-03-13,39161.047336248914,304,Elective,2021-03-27,Abnormal,4190,250,0,26,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2502,2019-08-26,16825.748562014633,124,Emergency,2019-09-22,Abnormal,2502,298,3,25,,,,DISCHARGED -2503,2021-10-01,10274.286916230649,276,Urgent,2021-10-18,Abnormal,2503,125,4,11,,,,DISCHARGED -2504,2018-11-25,17191.66553889664,376,Urgent,2018-11-29,Normal,2504,481,2,12,,,,DISCHARGED -2504,2023-05-15,8736.107586721815,370,Urgent,2023-05-19,Inconclusive,4554,216,2,7,,,,DISCHARGED -2504,2022-08-30,19213.05053111153,272,Elective,2022-09-24,Normal,7836,305,1,15,,,,DISCHARGED -2505,2020-11-01,45405.45615036273,417,Urgent,2020-11-25,Normal,2505,284,4,29,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -2506,2020-09-28,24065.96392060597,187,Urgent,2020-10-07,Abnormal,2506,184,1,28,,,,DISCHARGED -2507,2022-05-08,12117.904737790255,223,Urgent,2022-06-05,Abnormal,2507,38,2,28,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2508,2022-03-25,22918.081572843308,210,Urgent,2022-03-29,Abnormal,2508,222,3,2,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2509,2023-04-28,1280.5533033794738,453,Elective,2023-05-06,Normal,2509,183,0,27,,,,DISCHARGED -2510,2020-03-09,41518.73435076176,477,Elective,2020-03-25,Inconclusive,2510,494,2,28,,,,DISCHARGED -2511,2021-03-13,3184.197956562955,232,Emergency,2021-04-12,Abnormal,2511,426,4,12,,,,DISCHARGED -2512,2021-03-22,19444.70474129962,197,Emergency,2021-03-26,Inconclusive,2512,177,2,11,,,,DISCHARGED -2513,2020-10-09,19453.264438587303,122,Urgent,2020-10-20,Normal,2513,406,4,18,,,,DISCHARGED -2514,2023-01-18,47142.33250958913,111,Urgent,,Normal,2514,427,4,28,,,,OPEN -2515,2019-10-20,16045.514403996984,349,Urgent,2019-11-17,Abnormal,2515,293,4,1,,,,DISCHARGED -2516,2022-05-18,31303.77519176569,301,Emergency,2022-06-07,Inconclusive,2516,339,1,0,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2517,2021-08-14,13380.82012275722,276,Emergency,2021-08-20,Abnormal,2517,150,3,7,,,,DISCHARGED -2518,2020-05-29,46252.60201181317,298,Emergency,2020-06-13,Inconclusive,2518,383,2,29,,,,DISCHARGED -2519,2022-06-23,39677.64886553293,456,Elective,2022-07-20,Abnormal,2519,125,3,8,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2520,2019-12-02,35353.55407132734,285,Elective,2019-12-18,Abnormal,2520,300,0,24,,,,DISCHARGED -2521,2021-01-19,42439.58283142851,429,Elective,2021-01-29,Abnormal,2521,307,2,26,,,,DISCHARGED -2522,2021-12-04,19534.98898999367,189,Emergency,2021-12-21,Normal,2522,335,3,7,,,,DISCHARGED -2523,2019-03-23,19292.71224178668,436,Elective,2019-03-25,Inconclusive,2523,433,3,20,,,,DISCHARGED -2524,2020-02-27,40323.77260816338,229,Elective,2020-03-04,Inconclusive,2524,233,0,16,,,,DISCHARGED -2525,2021-09-27,37382.58099687849,405,Elective,2021-10-04,Normal,2525,379,4,8,,,,DISCHARGED -2526,2023-01-20,3943.2140265605167,370,Elective,2023-02-03,Abnormal,2526,374,2,5,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2526,2019-01-03,6196.06882368655,133,Elective,2019-02-01,Abnormal,4578,7,2,27,,,,DISCHARGED -2527,2020-07-29,46162.23254088883,452,Urgent,2020-08-18,Inconclusive,2527,497,0,14,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2528,2019-04-16,36618.12059934924,335,Urgent,2019-05-12,Abnormal,2528,340,4,22,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -2529,2020-02-14,35048.373020686005,109,Emergency,2020-03-08,Abnormal,2529,128,2,23,,,,DISCHARGED -2530,2022-05-22,2437.047667190419,233,Urgent,2022-05-29,Inconclusive,2530,263,2,12,,,,DISCHARGED -2531,2021-04-26,16773.726335059444,495,Elective,2021-05-09,Abnormal,2531,156,2,20,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -2532,2022-08-16,3750.387256178306,147,Elective,2022-08-21,Abnormal,2532,351,4,21,,,,DISCHARGED -2533,2021-11-09,33030.10172775421,128,Urgent,2021-12-04,Abnormal,2533,357,0,11,,,,DISCHARGED -2534,2021-12-12,7097.149276795404,277,Urgent,2021-12-16,Normal,2534,4,2,12,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -2535,2021-07-23,17078.678064416912,145,Emergency,2021-08-18,Normal,2535,494,3,6,,,,DISCHARGED -2536,2022-12-30,18488.790818903144,426,Urgent,2023-01-01,Normal,2536,85,4,22,,,,DISCHARGED -2536,2020-12-01,43694.59262070149,411,Emergency,2020-12-04,Normal,5247,174,1,17,,,,DISCHARGED -2537,2023-05-15,11996.354746497836,190,Elective,,Inconclusive,2537,289,0,13,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",OPEN -2539,2021-04-25,29311.23157184468,179,Urgent,2021-05-10,Abnormal,2539,192,3,10,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2540,2019-06-29,44225.21987041013,158,Elective,2019-07-19,Abnormal,2540,310,2,27,,,,DISCHARGED -2541,2020-02-14,8241.939392050404,290,Elective,2020-03-15,Inconclusive,2541,118,1,13,,,,DISCHARGED -2542,2020-02-21,47901.3316383337,389,Elective,2020-03-21,Inconclusive,2542,217,0,16,,,,DISCHARGED -2543,2023-05-05,23997.405126439808,127,Emergency,,Abnormal,2543,426,4,23,,,,OPEN -2544,2023-08-17,13121.031808802823,137,Emergency,2023-09-14,Inconclusive,2544,457,1,20,,,,DISCHARGED -2545,2022-04-18,16828.6060406219,152,Emergency,2022-05-05,Normal,2545,413,1,25,,,,DISCHARGED -2546,2018-11-16,34992.70272714538,365,Urgent,2018-11-24,Inconclusive,2546,113,3,1,,,,DISCHARGED -2547,2022-12-23,11818.71890906016,397,Emergency,2022-12-27,Abnormal,2547,465,0,18,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2548,2021-11-29,27985.709146391677,491,Urgent,2021-12-15,Abnormal,2548,144,3,15,,,,DISCHARGED -2549,2021-02-02,3487.9251836506346,136,Elective,2021-02-10,Abnormal,2549,25,3,21,,,,DISCHARGED -2551,2021-06-14,16729.618723782067,307,Urgent,2021-07-11,Abnormal,2551,135,2,9,,,,DISCHARGED -2551,2023-10-27,36780.69863519063,122,Emergency,,Inconclusive,4283,302,4,21,,,,OPEN -2552,2021-06-08,24137.80095281537,481,Elective,2021-07-01,Inconclusive,2552,231,1,7,,,,DISCHARGED -2552,2022-02-18,35069.38994550068,471,Urgent,2022-03-10,Normal,2917,368,0,20,,,,DISCHARGED -2552,2022-12-10,42792.80326171994,347,Elective,2023-01-07,Inconclusive,8069,75,4,4,,,,DISCHARGED -2553,2020-01-18,16508.91894696419,134,Urgent,2020-02-16,Abnormal,2553,474,4,6,,,,DISCHARGED -2554,2022-05-05,24310.931965028103,314,Elective,2022-05-09,Inconclusive,2554,327,0,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2555,2021-01-12,42424.75551118867,176,Urgent,2021-01-14,Normal,2555,344,4,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2556,2018-12-06,21512.8504555352,356,Emergency,2018-12-21,Normal,2556,301,2,15,,,,DISCHARGED -2557,2023-03-28,2325.240554341675,228,Urgent,2023-03-30,Abnormal,2557,451,4,29,,,,DISCHARGED -2558,2019-08-22,10898.879544198791,226,Elective,2019-09-09,Abnormal,2558,288,2,4,,,,DISCHARGED -2559,2019-04-22,29788.209360541117,280,Urgent,2019-05-16,Inconclusive,2559,0,1,15,,,,DISCHARGED -2559,2023-10-12,10950.748180557635,424,Elective,2023-10-17,Normal,4321,146,1,14,,,,DISCHARGED -2560,2019-12-05,10939.259060025885,142,Urgent,2019-12-09,Abnormal,2560,286,3,8,,,,DISCHARGED -2561,2023-10-20,5517.214581572903,129,Urgent,2023-10-22,Abnormal,2561,463,2,21,,,,DISCHARGED -2562,2021-09-15,22315.03437321993,294,Urgent,2021-10-05,Normal,2562,141,1,22,,,,DISCHARGED -2563,2023-02-27,8753.971870005033,272,Elective,,Inconclusive,2563,52,4,11,,,,OPEN -2564,2021-02-17,34523.12900685982,134,Urgent,2021-03-19,Inconclusive,2564,303,0,7,,,,DISCHARGED -2564,2018-10-30,42709.355599637136,204,Emergency,2018-11-22,Normal,5864,68,0,12,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -2565,2021-08-09,40510.29083835007,416,Urgent,2021-08-24,Abnormal,2565,360,2,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2566,2023-10-26,21561.346235408444,486,Urgent,,Normal,2566,89,3,13,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -2567,2022-04-09,18949.370091854224,212,Elective,2022-04-26,Normal,2567,445,4,15,,,,DISCHARGED -2568,2022-12-11,16753.26329814126,158,Elective,2022-12-31,Normal,2568,219,2,10,,,,DISCHARGED -2568,2019-10-06,45524.116371496086,282,Urgent,2019-10-09,Normal,7609,449,0,19,,,,DISCHARGED -2569,2021-01-05,27643.351260859155,366,Emergency,2021-02-03,Abnormal,2569,497,2,11,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2570,2022-10-10,37092.66802185113,113,Urgent,2022-10-31,Normal,2570,191,4,14,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2570,2021-04-05,17588.862554785428,416,Emergency,2021-04-08,Abnormal,4494,453,1,23,,,,DISCHARGED -2571,2020-03-26,19985.102277601043,466,Emergency,2020-04-05,Abnormal,2571,62,4,11,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2572,2023-08-02,24291.275911118257,354,Elective,2023-08-24,Normal,2572,72,1,25,,,,DISCHARGED -2573,2022-04-09,28287.58615407271,422,Elective,2022-04-21,Normal,2573,160,1,8,,,,DISCHARGED -2573,2020-06-23,42314.383839214206,139,Urgent,2020-07-21,Inconclusive,7761,168,1,0,,,,DISCHARGED -2574,2021-03-13,10535.29051168389,326,Emergency,2021-04-10,Abnormal,2574,88,2,2,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -2575,2019-12-31,22770.96299438292,181,Urgent,2020-01-05,Inconclusive,2575,175,0,11,,,,DISCHARGED -2575,2023-04-21,10428.656829988846,318,Urgent,2023-04-22,Inconclusive,9110,268,2,19,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -2576,2021-03-28,36414.60739840357,429,Elective,2021-04-12,Abnormal,2576,72,0,12,,,,DISCHARGED -2576,2022-09-06,25225.370249528787,339,Urgent,2022-09-12,Inconclusive,7951,244,4,22,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2577,2020-05-03,36337.22925933667,119,Elective,2020-05-25,Inconclusive,2577,76,3,5,,,,DISCHARGED -2578,2019-02-23,16890.898064171648,177,Elective,2019-03-05,Inconclusive,2578,158,4,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2579,2019-02-07,22940.532321347528,272,Urgent,2019-03-03,Normal,2579,488,2,9,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2580,2022-11-22,44172.58206463089,479,Elective,2022-12-12,Normal,2580,458,2,15,,,,DISCHARGED -2581,2020-01-14,34261.43004173457,170,Urgent,2020-02-06,Inconclusive,2581,323,0,26,,,,DISCHARGED -2582,2020-04-03,45874.633130404414,266,Urgent,2020-04-15,Abnormal,2582,97,2,0,,,,DISCHARGED -2583,2022-07-08,18203.36690870457,342,Emergency,2022-07-25,Abnormal,2583,380,1,15,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -2583,2023-06-29,33971.08328566391,403,Urgent,,Normal,3248,101,2,3,,,,OPEN -2583,2021-06-17,48520.13280392152,142,Elective,2021-07-01,Normal,6370,493,0,5,,,,DISCHARGED -2584,2020-04-15,2753.453007872876,371,Elective,2020-05-08,Abnormal,2584,131,0,18,,,,DISCHARGED -2585,2021-03-20,30290.43210670009,256,Emergency,2021-04-07,Inconclusive,2585,101,1,1,,,,DISCHARGED -2586,2019-12-23,12668.5311373092,452,Emergency,2019-12-26,Inconclusive,2586,18,0,17,,,,DISCHARGED -2587,2022-05-07,10269.930800726186,369,Elective,2022-05-26,Abnormal,2587,453,3,9,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -2588,2019-03-31,5449.098927619556,149,Urgent,2019-04-06,Inconclusive,2588,481,4,27,,,,DISCHARGED -2589,2022-09-13,23777.217496608027,376,Urgent,2022-09-16,Inconclusive,2589,81,2,27,,,,DISCHARGED -2590,2020-04-07,5205.633624565028,209,Emergency,2020-05-05,Normal,2590,396,3,3,,,,DISCHARGED -2591,2022-08-07,24656.194454012835,366,Urgent,2022-09-04,Normal,2591,488,2,28,,,,DISCHARGED -2592,2021-01-31,5124.0239662893255,166,Emergency,2021-02-27,Inconclusive,2592,278,3,0,,,,DISCHARGED -2593,2021-05-30,15802.581219986732,324,Elective,2021-06-01,Abnormal,2593,338,2,14,,,,DISCHARGED -2594,2019-04-14,20322.081075998063,314,Emergency,2019-05-13,Inconclusive,2594,364,1,9,,,,DISCHARGED -2595,2023-04-10,18404.55616353791,175,Urgent,2023-04-13,Inconclusive,2595,330,0,17,,,,DISCHARGED -2596,2019-01-16,27748.854813861133,174,Elective,2019-01-23,Normal,2596,128,0,15,,,,DISCHARGED -2597,2021-02-11,2128.746992472857,393,Urgent,2021-02-12,Abnormal,2597,343,1,12,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -2598,2019-06-14,1604.020084840759,450,Urgent,2019-07-01,Inconclusive,2598,309,3,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2599,2019-01-22,19175.262325931897,449,Elective,2019-02-20,Inconclusive,2599,454,4,14,,,,DISCHARGED -2601,2020-11-29,45875.76239815678,205,Emergency,2020-12-18,Abnormal,2601,88,3,1,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -2602,2023-09-17,29710.279562313823,438,Elective,2023-09-19,Normal,2602,212,0,19,,,,DISCHARGED -2604,2019-12-11,46757.77721032385,338,Elective,2019-12-30,Abnormal,2604,142,4,3,,,,DISCHARGED -2605,2020-12-30,17488.630668604463,447,Urgent,2021-01-15,Inconclusive,2605,64,2,0,,,,DISCHARGED -2606,2021-08-11,21378.161052862783,253,Emergency,2021-08-14,Abnormal,2606,75,4,6,,,,DISCHARGED -2607,2023-02-07,26156.21340416225,118,Urgent,2023-03-09,Inconclusive,2607,198,3,22,,,,DISCHARGED -2608,2021-06-06,41587.356487703895,159,Elective,2021-06-18,Normal,2608,142,1,25,,,,DISCHARGED -2609,2020-04-20,39700.12825686741,139,Emergency,2020-05-13,Inconclusive,2609,404,2,10,,,,DISCHARGED -2610,2020-03-17,21493.926930527858,461,Emergency,2020-03-27,Abnormal,2610,402,3,25,,,,DISCHARGED -2611,2019-06-05,31067.32279879445,256,Elective,2019-06-25,Abnormal,2611,315,2,9,,,,DISCHARGED -2611,2022-01-20,42627.36748949484,285,Emergency,2022-02-03,Inconclusive,7183,92,4,0,,,,DISCHARGED -2612,2020-05-07,31431.37795725211,229,Urgent,2020-05-14,Inconclusive,2612,472,0,10,,,,DISCHARGED -2613,2022-04-25,21130.38580866285,192,Elective,2022-05-13,Normal,2613,416,3,23,,,,DISCHARGED -2614,2022-01-20,46774.61327973702,276,Urgent,2022-02-10,Inconclusive,2614,304,1,9,,,,DISCHARGED -2615,2020-05-04,25326.805551241006,186,Emergency,2020-06-01,Inconclusive,2615,223,4,13,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2615,2022-07-15,24657.16436140522,228,Emergency,2022-08-01,Abnormal,9231,496,3,13,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2616,2021-05-25,16596.40959939637,473,Emergency,2021-06-15,Inconclusive,2616,290,1,6,,,,DISCHARGED -2617,2019-09-08,28388.89773724963,309,Urgent,2019-09-24,Inconclusive,2617,427,3,22,,,,DISCHARGED -2618,2023-10-26,45192.478435696845,177,Emergency,2023-11-24,Abnormal,2618,101,4,10,,,,DISCHARGED -2619,2018-12-11,16201.08187161045,259,Urgent,2018-12-14,Inconclusive,2619,473,3,21,,,,DISCHARGED -2620,2023-07-04,15586.469385382026,186,Urgent,,Abnormal,2620,266,2,27,,,,OPEN -2621,2021-04-20,16056.137654425404,316,Emergency,2021-05-08,Inconclusive,2621,354,4,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2622,2020-12-06,16966.697481629963,286,Emergency,2021-01-03,Normal,2622,455,3,26,,,,DISCHARGED -2623,2019-07-25,46543.059854375446,484,Emergency,2019-08-11,Abnormal,2623,109,0,23,,,,DISCHARGED -2624,2020-11-25,35825.549077410506,327,Elective,2020-12-18,Inconclusive,2624,461,3,1,,,,DISCHARGED -2625,2021-09-21,45997.69734643205,237,Urgent,2021-09-27,Abnormal,2625,329,2,6,,,,DISCHARGED -2626,2023-08-21,14412.417240606432,340,Elective,2023-09-18,Normal,2626,449,1,18,,,,DISCHARGED -2627,2020-04-04,34410.59339808295,347,Urgent,2020-04-21,Abnormal,2627,429,1,13,,,,DISCHARGED -2628,2019-08-23,31824.652031549685,290,Emergency,2019-09-01,Normal,2628,264,1,18,,,,DISCHARGED -2629,2022-03-27,32730.688123574422,362,Urgent,2022-04-02,Inconclusive,2629,2,0,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2630,2022-01-13,35907.47268697924,321,Urgent,2022-02-01,Normal,2630,84,2,6,,,,DISCHARGED -2631,2020-09-25,8968.205000066286,145,Emergency,2020-10-08,Inconclusive,2631,281,4,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -2632,2021-03-30,33589.54809361052,420,Elective,2021-04-07,Abnormal,2632,327,1,2,,,,DISCHARGED -2633,2019-06-07,40528.69758526562,336,Elective,2019-06-28,Abnormal,2633,303,2,14,,,,DISCHARGED -2635,2021-07-17,33646.086468719484,496,Emergency,2021-08-03,Abnormal,2635,449,3,4,,,,DISCHARGED -2636,2023-10-10,43858.15051704504,363,Urgent,2023-11-07,Abnormal,2636,453,0,7,,,,DISCHARGED -2637,2020-11-12,25148.143290112694,451,Urgent,2020-12-01,Abnormal,2637,411,2,13,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2638,2022-06-01,46143.49120340079,115,Urgent,2022-06-24,Normal,2638,116,2,28,,,,DISCHARGED -2639,2020-01-24,25816.652579251037,249,Urgent,2020-01-31,Normal,2639,220,4,3,,,,DISCHARGED -2640,2023-01-26,49627.900560233335,273,Elective,2023-02-08,Abnormal,2640,153,2,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2641,2023-01-29,27448.79884487662,228,Elective,2023-02-06,Normal,2641,152,4,6,,,,DISCHARGED -2642,2022-12-29,14624.18251822247,443,Urgent,2023-01-01,Inconclusive,2642,11,0,17,,,,DISCHARGED -2643,2019-06-02,31746.51382694793,496,Elective,2019-06-29,Inconclusive,2643,132,0,13,,,,DISCHARGED -2644,2019-09-29,45440.45113479933,326,Urgent,2019-10-25,Inconclusive,2644,481,3,7,,,,DISCHARGED -2645,2021-11-05,49595.45512501731,113,Urgent,2021-11-21,Inconclusive,2645,303,4,25,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2646,2023-09-09,38452.72163675825,220,Urgent,2023-09-24,Normal,2646,292,4,11,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2647,2021-09-05,9611.825597121388,173,Elective,2021-09-17,Normal,2647,462,1,9,,,,DISCHARGED -2648,2019-04-12,32849.11542128452,415,Urgent,2019-04-24,Abnormal,2648,299,1,13,,,,DISCHARGED -2649,2019-02-03,31484.94663382468,460,Emergency,2019-02-11,Abnormal,2649,227,3,8,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -2650,2019-05-28,44276.6527731187,449,Urgent,2019-06-11,Inconclusive,2650,270,0,5,,,,DISCHARGED -2651,2023-06-19,34589.838918051944,157,Emergency,2023-07-14,Normal,2651,42,1,29,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2652,2019-07-07,26250.001156473834,450,Elective,2019-07-22,Inconclusive,2652,431,2,4,,,,DISCHARGED -2653,2020-04-10,48554.75967562424,247,Urgent,2020-04-27,Abnormal,2653,342,0,0,,,,DISCHARGED -2654,2021-05-07,30495.81558397598,142,Urgent,2021-05-26,Inconclusive,2654,325,2,0,,,,DISCHARGED -2655,2022-04-11,19773.31086724356,162,Emergency,2022-04-26,Normal,2655,301,4,24,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2656,2022-06-04,49243.31736311424,155,Urgent,2022-06-25,Inconclusive,2656,497,0,29,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2657,2019-08-01,43853.46495822737,327,Urgent,2019-08-28,Normal,2657,363,3,19,,,,DISCHARGED -2658,2020-04-11,21565.64773420869,275,Elective,2020-04-19,Abnormal,2658,378,4,16,,,,DISCHARGED -2658,2020-12-17,44745.091652500014,491,Elective,2021-01-06,Normal,2814,426,4,10,,,,DISCHARGED -2660,2023-07-07,1224.7683293587252,171,Urgent,,Normal,2660,492,2,25,,,,OPEN -2661,2019-05-31,44698.51398555716,268,Urgent,2019-06-30,Inconclusive,2661,20,4,11,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2662,2020-09-28,3238.597219924224,237,Elective,2020-10-14,Inconclusive,2662,406,1,2,,,,DISCHARGED -2662,2020-12-06,14881.14401904717,235,Elective,2020-12-23,Normal,3178,106,0,5,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2663,2019-08-08,22812.18829110568,381,Emergency,2019-08-20,Inconclusive,2663,335,1,29,,,,DISCHARGED -2664,2022-10-05,40316.7266858093,265,Urgent,2022-10-07,Normal,2664,302,2,10,,,,DISCHARGED -2665,2022-12-29,11894.212185549626,488,Emergency,2022-12-31,Inconclusive,2665,116,2,28,,,,DISCHARGED -2666,2020-08-10,34615.82116266479,362,Emergency,2020-08-25,Normal,2666,123,0,12,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2666,2019-11-08,16623.73887826834,412,Emergency,2019-12-05,Inconclusive,4011,398,4,10,,,,DISCHARGED -2667,2019-01-24,36144.26068598602,391,Elective,2019-02-22,Normal,2667,280,3,7,,,,DISCHARGED -2668,2021-05-27,23415.35059970277,128,Urgent,2021-06-13,Inconclusive,2668,291,2,28,,,,DISCHARGED -2669,2020-04-14,1070.0152701252623,314,Elective,2020-04-27,Inconclusive,2669,202,0,9,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2670,2022-11-14,22466.57238432296,348,Elective,2022-12-02,Abnormal,2670,50,3,1,,,,DISCHARGED -2671,2020-11-26,6572.018221397711,350,Urgent,2020-12-18,Inconclusive,2671,270,4,23,,,,DISCHARGED -2672,2022-11-24,21391.50300648184,468,Elective,2022-12-20,Inconclusive,2672,323,2,13,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2673,2022-08-25,47684.128222771,486,Emergency,2022-09-06,Inconclusive,2673,276,0,28,,,,DISCHARGED -2674,2021-11-23,28475.719188407154,108,Elective,2021-12-23,Abnormal,2674,140,0,15,,,,DISCHARGED -2676,2019-02-08,47916.97137531408,386,Elective,2019-02-13,Normal,2676,469,0,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -2678,2020-07-07,9098.047006680728,132,Elective,2020-07-28,Normal,2678,274,2,10,,,,DISCHARGED -2679,2023-05-16,49886.80518133734,164,Elective,2023-06-08,Normal,2679,289,3,1,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -2680,2019-06-29,26016.39516799301,319,Elective,2019-07-11,Abnormal,2680,333,0,23,,,,DISCHARGED -2681,2021-08-04,20978.27301712258,156,Elective,2021-08-12,Normal,2681,380,4,22,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -2682,2019-09-24,3497.985735905508,239,Elective,2019-10-17,Inconclusive,2682,451,0,4,,,,DISCHARGED -2683,2021-11-28,9562.630856484042,146,Emergency,2021-12-15,Abnormal,2683,495,3,28,,,,DISCHARGED -2684,2020-04-28,48153.64845556705,266,Emergency,2020-05-22,Inconclusive,2684,372,2,15,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -2685,2023-05-10,37013.349524948026,212,Emergency,2023-05-15,Inconclusive,2685,51,0,15,,,,DISCHARGED -2686,2019-07-03,27567.010108749924,336,Urgent,2019-07-20,Normal,2686,493,0,25,,,,DISCHARGED -2687,2023-01-08,46810.65399466919,380,Emergency,,Normal,2687,26,4,1,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",OPEN -2687,2021-05-25,12396.767504893176,404,Elective,2021-06-17,Abnormal,8969,156,4,15,,,,DISCHARGED -2688,2021-09-14,19206.843543271243,192,Emergency,2021-09-29,Normal,2688,238,0,24,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2689,2019-01-29,2923.3523499111266,481,Emergency,2019-02-20,Normal,2689,155,0,4,,,,DISCHARGED -2690,2022-10-21,8223.075180072163,400,Elective,2022-11-06,Normal,2690,290,4,7,,,,DISCHARGED -2691,2023-05-29,7612.570071770008,400,Emergency,,Abnormal,2691,135,3,28,,,,OPEN -2692,2022-02-26,47341.359352970445,272,Elective,2022-03-13,Inconclusive,2692,143,1,19,,,,DISCHARGED -2693,2020-01-07,7379.19719874067,315,Emergency,2020-01-20,Abnormal,2693,105,1,13,,,,DISCHARGED -2694,2020-08-13,9273.07521282235,231,Elective,2020-08-22,Inconclusive,2694,419,0,24,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -2694,2021-06-06,25428.73608378493,208,Elective,2021-06-09,Abnormal,9791,157,4,9,,,,DISCHARGED -2695,2020-06-25,20768.155117512622,132,Elective,2020-07-14,Abnormal,2695,145,2,22,,,,DISCHARGED -2696,2022-02-14,48074.67424049616,347,Emergency,2022-02-26,Abnormal,2696,1,2,1,,,,DISCHARGED -2697,2019-11-30,39852.316817586485,485,Emergency,2019-12-24,Abnormal,2697,432,1,2,,,,DISCHARGED -2698,2021-03-18,46606.33580616222,307,Urgent,2021-03-27,Abnormal,2698,76,3,29,,,,DISCHARGED -2699,2021-07-05,48480.84076646032,477,Emergency,2021-07-27,Abnormal,2699,131,1,17,,,,DISCHARGED -2700,2020-08-07,41260.63255479157,278,Emergency,2020-08-10,Inconclusive,2700,89,0,20,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2701,2020-06-01,8830.276603596452,320,Emergency,2020-06-25,Inconclusive,2701,344,3,1,,,,DISCHARGED -2702,2020-12-07,29794.59655175787,428,Urgent,2021-01-06,Abnormal,2702,349,2,20,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2703,2021-03-07,10887.125155561322,207,Urgent,2021-03-10,Normal,2703,458,4,28,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2704,2021-04-21,35504.50843479947,122,Emergency,2021-04-24,Normal,2704,262,4,8,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -2705,2021-08-31,6505.01598313251,365,Elective,2021-09-17,Abnormal,2705,350,0,1,,,,DISCHARGED -2706,2020-08-30,15358.605407396972,221,Emergency,2020-09-21,Normal,2706,107,1,24,,,,DISCHARGED -2707,2019-01-21,31421.56568458885,246,Urgent,2019-01-23,Normal,2707,73,0,6,,,,DISCHARGED -2709,2022-01-27,6464.030538793739,381,Elective,2022-02-20,Normal,2709,38,4,6,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2710,2022-04-23,43791.44016415779,313,Emergency,2022-05-22,Normal,2710,396,2,13,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -2711,2020-08-12,9003.212102835145,261,Urgent,2020-09-01,Normal,2711,158,4,4,,,,DISCHARGED -2712,2022-02-20,12862.89614233099,235,Emergency,2022-03-01,Normal,2712,70,3,7,,,,DISCHARGED -2713,2021-02-24,31042.870445592696,189,Urgent,2021-03-06,Inconclusive,2713,446,4,22,,,,DISCHARGED -2715,2020-04-13,4189.618979519723,173,Elective,2020-04-27,Normal,2715,311,4,21,,,,DISCHARGED -2716,2021-08-01,30930.958246546103,357,Elective,2021-08-10,Normal,2716,240,3,17,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2717,2019-03-10,23862.62828645282,235,Urgent,2019-03-19,Normal,2717,425,1,5,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -2718,2021-10-20,31681.955706158325,373,Elective,2021-11-03,Abnormal,2718,444,4,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2719,2023-06-01,17362.370733930373,261,Urgent,2023-06-25,Inconclusive,2719,297,0,17,,,,DISCHARGED -2720,2020-11-19,26466.228350303747,250,Urgent,2020-11-20,Inconclusive,2720,439,4,16,,,,DISCHARGED -2721,2021-02-16,6621.786604561795,333,Urgent,2021-03-03,Normal,2721,35,0,8,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2722,2022-06-10,40376.64648190551,350,Elective,2022-06-30,Normal,2722,83,3,12,,,,DISCHARGED -2723,2019-11-06,29695.81444969184,303,Emergency,2019-11-09,Normal,2723,451,4,15,,,,DISCHARGED -2724,2021-11-23,43510.63384085477,316,Urgent,2021-12-16,Inconclusive,2724,373,3,20,,,,DISCHARGED -2725,2019-11-06,38103.27306468731,418,Elective,2019-11-29,Abnormal,2725,262,3,9,,,,DISCHARGED -2726,2019-01-02,26805.699317323106,216,Elective,2019-01-14,Normal,2726,309,1,9,,,,DISCHARGED -2727,2023-10-20,10296.634193472306,478,Emergency,2023-11-11,Abnormal,2727,384,4,3,,,,DISCHARGED -2728,2023-07-07,19683.04369786167,257,Elective,,Inconclusive,2728,171,0,11,,,,OPEN -2729,2023-02-02,35367.97350257922,397,Urgent,,Abnormal,2729,375,0,26,,,,OPEN -2730,2021-09-12,49780.12262476423,439,Urgent,2021-09-22,Abnormal,2730,172,4,7,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2731,2020-02-17,42426.78469449219,291,Emergency,2020-03-03,Abnormal,2731,361,1,14,,,,DISCHARGED -2732,2023-07-22,10813.7917472245,415,Emergency,2023-08-08,Abnormal,2732,46,1,20,,,,DISCHARGED -2732,2022-02-01,31465.622536521503,455,Elective,2022-02-09,Inconclusive,6929,378,1,29,,,,DISCHARGED -2733,2021-10-24,43621.17509150677,171,Urgent,2021-11-22,Abnormal,2733,140,0,22,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2734,2022-01-29,3710.695852169433,371,Emergency,2022-02-06,Inconclusive,2734,374,3,18,,,,DISCHARGED -2735,2022-07-31,45892.14449481834,174,Elective,2022-08-05,Inconclusive,2735,405,1,14,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2736,2019-12-21,45679.92740717956,417,Elective,2020-01-09,Inconclusive,2736,117,0,7,,,,DISCHARGED -2737,2020-03-07,14228.199580897486,425,Elective,2020-03-31,Normal,2737,276,0,7,,,,DISCHARGED -2738,2019-01-07,34535.89855179965,291,Emergency,2019-01-28,Normal,2738,213,3,18,,,,DISCHARGED -2739,2019-10-02,9049.02023730678,358,Emergency,2019-10-21,Abnormal,2739,219,4,8,,,,DISCHARGED -2739,2023-10-01,2528.15333252586,355,Urgent,,Normal,4513,392,4,29,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -2740,2021-06-15,16387.536557621414,414,Urgent,2021-06-28,Normal,2740,25,1,23,,,,DISCHARGED -2741,2020-05-10,46912.62153215373,348,Elective,2020-05-19,Inconclusive,2741,8,1,16,,,,DISCHARGED -2742,2022-04-27,15868.402899565615,443,Urgent,2022-05-14,Normal,2742,270,3,7,,,,DISCHARGED -2743,2019-02-13,5786.128457148991,224,Elective,2019-02-24,Normal,2743,9,1,11,,,,DISCHARGED -2744,2020-08-15,16583.476294370677,471,Emergency,2020-08-22,Abnormal,2744,471,3,26,,,,DISCHARGED -2745,2021-06-16,5959.017430660474,456,Elective,2021-07-09,Normal,2745,377,0,14,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2746,2019-12-09,7941.331812193567,259,Urgent,2019-12-21,Inconclusive,2746,120,1,3,,,,DISCHARGED -2747,2022-08-31,20841.542772663983,124,Elective,2022-09-28,Abnormal,2747,124,0,5,,,,DISCHARGED -2748,2022-09-22,39941.460868015085,242,Elective,2022-09-23,Inconclusive,2748,169,2,29,,,,DISCHARGED -2749,2021-07-13,2059.1168232024597,482,Emergency,2021-08-10,Normal,2749,71,3,28,,,,DISCHARGED -2750,2022-02-20,11561.76068996926,374,Elective,2022-02-25,Normal,2750,151,2,15,,,,DISCHARGED -2751,2019-04-12,37167.89174429348,416,Emergency,2019-05-11,Abnormal,2751,207,1,25,,,,DISCHARGED -2752,2023-07-31,30119.178552689034,148,Elective,,Abnormal,2752,48,0,24,,,,OPEN -2753,2022-01-20,31083.046691416675,303,Emergency,2022-02-09,Inconclusive,2753,153,1,4,,,,DISCHARGED -2754,2020-02-03,1476.3616714080213,148,Emergency,2020-02-13,Inconclusive,2754,346,2,22,,,,DISCHARGED -2755,2022-05-29,7394.22654244488,346,Elective,2022-06-24,Abnormal,2755,292,1,12,,,,DISCHARGED -2756,2021-10-05,15549.407079465778,455,Elective,2021-10-31,Normal,2756,67,4,14,,,,DISCHARGED -2757,2021-09-05,7304.65645638417,189,Emergency,2021-10-05,Abnormal,2757,49,2,16,,,,DISCHARGED -2758,2020-02-02,35252.70824952037,281,Urgent,2020-02-04,Inconclusive,2758,151,1,24,,,,DISCHARGED -2760,2020-03-05,19664.91316122281,293,Urgent,2020-03-14,Abnormal,2760,18,0,29,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2761,2022-03-06,15854.112781297526,278,Emergency,2022-03-08,Normal,2761,99,1,21,,,,DISCHARGED -2762,2022-12-03,2569.6717026285287,492,Urgent,2022-12-13,Inconclusive,2762,59,0,26,,,,DISCHARGED -2763,2020-02-15,38517.63643808982,278,Emergency,2020-02-16,Abnormal,2763,166,4,19,,,,DISCHARGED -2764,2023-09-28,35888.31813330963,263,Emergency,2023-10-14,Normal,2764,201,1,21,,,,DISCHARGED -2765,2021-03-13,29845.065139109603,238,Elective,2021-03-16,Normal,2765,344,4,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2766,2019-02-19,39747.6488084627,358,Elective,2019-03-16,Inconclusive,2766,145,2,18,,,,DISCHARGED -2767,2020-11-14,40682.36380424722,335,Urgent,2020-12-12,Abnormal,2767,402,0,6,,,,DISCHARGED -2768,2019-09-01,49691.66266097402,482,Urgent,2019-09-15,Abnormal,2768,163,2,2,,,,DISCHARGED -2769,2022-07-09,8317.638478918132,105,Elective,2022-08-07,Abnormal,2769,457,0,12,,,,DISCHARGED -2770,2021-10-07,26414.852104688904,448,Urgent,2021-10-12,Inconclusive,2770,480,4,13,,,,DISCHARGED -2771,2021-02-15,4316.535914594049,376,Emergency,2021-03-04,Inconclusive,2771,438,3,15,,,,DISCHARGED -2772,2020-09-15,40002.89123307032,209,Emergency,2020-09-25,Abnormal,2772,241,1,12,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -2773,2022-09-23,30430.46649593099,116,Elective,2022-10-07,Inconclusive,2773,68,4,1,,,,DISCHARGED -2774,2019-03-23,44200.79236780894,335,Elective,2019-03-25,Normal,2774,174,0,13,,,,DISCHARGED -2775,2021-05-06,43560.7834682722,216,Elective,2021-05-30,Abnormal,2775,48,0,19,,,,DISCHARGED -2776,2022-08-11,23042.080749293244,364,Elective,2022-08-25,Abnormal,2776,482,0,6,,,,DISCHARGED -2776,2022-03-07,16635.45001974,164,Elective,2022-04-04,Normal,7740,107,0,4,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -2777,2022-02-13,14199.986999695731,284,Elective,2022-02-20,Normal,2777,225,1,13,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -2777,2022-01-23,43538.824649631126,184,Emergency,2022-02-18,Normal,6722,160,2,8,,,,DISCHARGED -2778,2020-06-08,6529.781129391422,226,Elective,2020-06-11,Normal,2778,118,3,9,,,,DISCHARGED -2779,2018-11-24,19694.33458154058,432,Emergency,2018-12-04,Normal,2779,148,1,6,,,,DISCHARGED -2780,2020-02-15,17261.56173301002,486,Emergency,2020-03-16,Abnormal,2780,464,0,27,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2781,2019-02-11,39072.289987398166,163,Emergency,2019-03-07,Abnormal,2781,149,1,13,,,,DISCHARGED -2782,2023-08-29,13961.236827620032,374,Elective,,Abnormal,2782,431,4,24,,,,OPEN -2783,2020-08-03,33173.11688834193,382,Urgent,2020-08-23,Abnormal,2783,292,0,13,,,,DISCHARGED -2784,2021-04-24,25854.58908459076,391,Emergency,2021-05-01,Inconclusive,2784,142,3,24,,,,DISCHARGED -2785,2020-08-23,43728.109844877225,126,Urgent,2020-09-01,Normal,2785,418,0,27,,,,DISCHARGED -2785,2020-10-13,23761.98851861565,391,Urgent,2020-10-29,Normal,8058,475,3,1,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -2786,2023-09-24,10305.725457850498,287,Urgent,2023-10-10,Normal,2786,454,3,16,,,,DISCHARGED -2787,2019-05-10,36690.93535291785,312,Emergency,2019-06-07,Inconclusive,2787,159,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2788,2022-12-08,15969.053710605976,160,Emergency,2023-01-05,Inconclusive,2788,10,2,19,,,,DISCHARGED -2789,2019-05-03,26019.28631643501,387,Urgent,2019-06-02,Normal,2789,137,1,3,,,,DISCHARGED -2790,2020-04-26,26247.006868587407,210,Urgent,2020-05-13,Inconclusive,2790,456,1,12,,,,DISCHARGED -2791,2023-10-12,12711.117889562702,448,Urgent,,Abnormal,2791,77,3,17,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -2792,2022-04-03,30067.74773194783,290,Emergency,2022-05-03,Normal,2792,76,0,2,,,,DISCHARGED -2793,2021-10-04,25794.19511085218,269,Elective,2021-10-15,Normal,2793,440,4,18,,,,DISCHARGED -2794,2019-01-15,11369.271194317564,431,Elective,2019-01-30,Abnormal,2794,253,4,4,,,,DISCHARGED -2795,2019-03-30,3003.4182986089254,183,Emergency,2019-04-15,Abnormal,2795,408,0,0,,,,DISCHARGED -2796,2019-12-11,24389.03146697239,329,Urgent,2019-12-24,Abnormal,2796,257,0,8,,,,DISCHARGED -2797,2023-07-18,28482.889354541352,290,Elective,2023-07-25,Normal,2797,319,2,23,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -2797,2022-06-14,12709.40263523816,441,Emergency,2022-07-01,Abnormal,6783,290,4,7,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -2797,2022-07-25,48444.3272045554,134,Urgent,2022-08-05,Abnormal,8237,262,3,2,,,,DISCHARGED -2798,2020-02-13,31848.838525601222,116,Emergency,2020-03-08,Abnormal,2798,84,1,1,,,,DISCHARGED -2799,2020-11-07,17809.334490775673,277,Urgent,2020-11-14,Normal,2799,145,2,0,,,,DISCHARGED -2801,2019-08-06,2239.09193529874,113,Emergency,2019-08-23,Abnormal,2801,322,4,11,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -2802,2019-07-25,1331.5220834623442,175,Elective,2019-07-27,Normal,2802,41,0,21,,,,DISCHARGED -2803,2022-11-13,39527.42202089524,325,Elective,2022-12-08,Abnormal,2803,373,4,12,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2804,2021-01-20,29564.32586286136,258,Urgent,2021-02-05,Inconclusive,2804,124,3,9,,,,DISCHARGED -2805,2021-06-19,41313.905039015845,491,Urgent,2021-06-20,Abnormal,2805,166,2,16,,,,DISCHARGED -2806,2021-02-13,44595.20545361234,360,Urgent,2021-02-23,Inconclusive,2806,424,0,29,,,,DISCHARGED -2807,2022-09-15,11962.53733110749,227,Elective,2022-09-27,Abnormal,2807,240,3,10,,,,DISCHARGED -2807,2022-01-01,22893.468375730023,242,Urgent,2022-01-09,Normal,6004,458,1,4,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -2808,2020-08-25,25507.92250820054,307,Emergency,2020-09-14,Abnormal,2808,486,2,24,,,,DISCHARGED -2808,2020-07-15,18171.488930128588,274,Urgent,2020-08-09,Normal,8385,279,3,26,,,,DISCHARGED -2809,2019-04-06,14701.65029614148,317,Elective,2019-04-19,Inconclusive,2809,187,3,8,,,,DISCHARGED -2809,2018-12-18,49608.86185798793,166,Emergency,2018-12-29,Normal,7546,301,0,12,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2810,2019-10-30,9422.808753446085,335,Elective,2019-11-18,Normal,2810,18,1,27,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -2811,2019-05-16,2871.9966903723034,445,Emergency,2019-05-28,Abnormal,2811,67,3,19,,,,DISCHARGED -2812,2023-03-27,16047.100582941934,374,Urgent,2023-04-17,Abnormal,2812,217,2,22,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -2813,2022-08-07,3684.546962126398,231,Urgent,2022-09-02,Inconclusive,2813,101,3,29,,,,DISCHARGED -2815,2019-05-20,6412.9993936596375,110,Urgent,2019-05-29,Abnormal,2815,41,4,10,,,,DISCHARGED -2815,2020-11-20,49563.699054646335,408,Emergency,2020-11-30,Inconclusive,8111,287,2,22,,,,DISCHARGED -2817,2020-02-11,42324.90946281877,155,Emergency,2020-02-14,Inconclusive,2817,166,2,3,,,,DISCHARGED -2818,2023-04-23,29416.275726819906,127,Urgent,2023-05-18,Abnormal,2818,108,3,20,,,,DISCHARGED -2819,2020-08-10,2529.504829248252,217,Elective,2020-08-13,Inconclusive,2819,493,0,10,,,,DISCHARGED -2821,2022-05-18,47812.00267143285,417,Urgent,2022-06-04,Inconclusive,2821,35,2,8,,,,DISCHARGED -2822,2020-07-10,36023.36940852515,434,Emergency,2020-07-24,Normal,2822,231,4,6,,,,DISCHARGED -2823,2021-04-01,12010.602313406109,479,Urgent,2021-04-05,Abnormal,2823,228,0,15,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2824,2022-09-06,12791.400082799946,361,Elective,2022-10-03,Normal,2824,352,0,22,,,,DISCHARGED -2825,2021-07-16,7819.865130850051,487,Elective,2021-07-26,Normal,2825,163,0,25,,,,DISCHARGED -2826,2022-10-06,30578.1756242784,264,Urgent,2022-10-21,Normal,2826,386,2,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -2827,2020-08-14,27031.58900918547,336,Urgent,2020-09-01,Abnormal,2827,72,0,24,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2828,2019-10-25,26980.60512297705,486,Urgent,2019-10-30,Abnormal,2828,135,3,4,,,,DISCHARGED -2829,2021-05-16,48894.47263732788,304,Emergency,2021-06-08,Inconclusive,2829,352,0,5,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2830,2020-10-25,10515.801093991136,152,Urgent,2020-11-17,Abnormal,2830,378,4,18,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -2831,2019-11-21,9761.832762325304,120,Emergency,2019-11-29,Inconclusive,2831,69,1,0,,,,DISCHARGED -2832,2023-01-16,4528.491505428123,168,Emergency,,Inconclusive,2832,424,4,26,,,,OPEN -2833,2019-01-31,31242.871058442517,207,Emergency,2019-02-05,Inconclusive,2833,486,2,15,,,,DISCHARGED -2834,2022-03-01,46816.62105667426,351,Urgent,2022-03-10,Normal,2834,195,0,27,,,,DISCHARGED -2835,2018-12-26,26844.0449133044,353,Urgent,2019-01-21,Abnormal,2835,268,0,17,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2836,2023-01-04,21779.60320819814,189,Urgent,2023-02-03,Abnormal,2836,48,3,23,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -2836,2020-05-26,25212.627820308808,138,Urgent,2020-06-07,Abnormal,7298,315,0,12,,,,DISCHARGED -2837,2018-12-17,31856.87977887301,215,Elective,2019-01-01,Normal,2837,129,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -2837,2022-03-23,48018.19666102654,486,Elective,2022-04-17,Normal,3735,443,2,9,,,,DISCHARGED -2838,2020-02-27,7904.1010750952655,396,Emergency,2020-03-26,Normal,2838,4,1,6,,,,DISCHARGED -2839,2021-11-26,37003.44607163002,357,Elective,2021-12-02,Inconclusive,2839,427,0,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2840,2019-01-15,45649.76302093756,386,Emergency,2019-01-30,Inconclusive,2840,26,1,12,,,,DISCHARGED -2841,2021-12-26,12891.22129736089,471,Urgent,2022-01-01,Inconclusive,2841,159,0,21,,,,DISCHARGED -2842,2023-03-01,13578.711484300047,392,Elective,2023-03-23,Normal,2842,148,2,15,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -2843,2022-03-18,14030.76062849755,455,Urgent,2022-04-10,Inconclusive,2843,263,4,23,,,,DISCHARGED -2844,2020-09-24,21443.490898680808,311,Elective,2020-10-03,Inconclusive,2844,229,2,19,,,,DISCHARGED -2845,2020-04-27,12491.093676735409,132,Urgent,2020-05-24,Abnormal,2845,199,1,21,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2846,2019-12-10,8796.601557896774,186,Elective,2019-12-11,Abnormal,2846,49,0,13,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2847,2023-06-09,5464.209064769407,113,Elective,2023-06-28,Normal,2847,66,1,10,,,,DISCHARGED -2848,2023-01-04,6450.504929151317,318,Elective,2023-01-06,Abnormal,2848,299,4,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -2849,2019-05-19,15313.068184883476,172,Urgent,2019-06-04,Inconclusive,2849,380,2,22,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2850,2021-10-30,40143.082341842855,381,Emergency,2021-11-05,Abnormal,2850,57,1,1,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -2851,2019-09-26,32516.334385182075,200,Elective,2019-09-30,Normal,2851,258,1,27,,,,DISCHARGED -2852,2021-05-16,42803.889037352754,136,Emergency,2021-05-17,Inconclusive,2852,341,4,7,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -2853,2022-10-17,47108.90130063329,494,Elective,2022-11-04,Inconclusive,2853,325,0,12,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2854,2019-01-20,46799.777271650906,425,Elective,2019-02-04,Inconclusive,2854,129,1,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -2854,2023-03-18,36258.23395184613,145,Urgent,2023-03-28,Abnormal,6895,214,4,11,,,,DISCHARGED -2856,2022-03-30,12004.67721803905,337,Urgent,2022-04-27,Inconclusive,2856,171,0,27,,,,DISCHARGED -2857,2021-01-29,41988.94962128474,224,Emergency,2021-01-30,Inconclusive,2857,257,0,7,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2858,2023-08-17,22916.32407791065,493,Urgent,2023-08-31,Abnormal,2858,101,2,15,,,,DISCHARGED -2859,2020-01-23,19355.54173786482,320,Urgent,2020-02-19,Normal,2859,208,4,17,,,,DISCHARGED -2860,2018-12-17,33447.1399745024,201,Elective,2019-01-06,Abnormal,2860,290,0,18,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -2861,2020-11-28,8178.68622069898,449,Elective,2020-12-14,Inconclusive,2861,353,2,27,,,,DISCHARGED -2862,2023-03-02,46353.77276306514,370,Elective,2023-03-23,Normal,2862,470,3,3,,,,DISCHARGED -2862,2023-03-23,1730.330943334328,220,Emergency,,Normal,7777,285,4,27,,,,OPEN -2863,2019-05-27,45267.70619719879,205,Emergency,2019-06-10,Normal,2863,115,3,24,,,,DISCHARGED -2864,2022-05-21,27623.26231415674,180,Elective,2022-06-07,Abnormal,2864,263,0,27,,,,DISCHARGED -2865,2021-04-26,33550.5374843005,423,Urgent,2021-05-04,Abnormal,2865,149,4,11,,,,DISCHARGED -2866,2021-09-25,10251.625538213197,143,Urgent,2021-10-20,Abnormal,2866,299,2,15,,,,DISCHARGED -2866,2021-10-14,28735.13569911025,169,Urgent,2021-11-07,Normal,7036,441,0,20,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2867,2023-09-08,17475.31606063893,196,Emergency,,Inconclusive,2867,35,4,21,,,,OPEN -2868,2022-11-28,20877.763427436632,147,Emergency,2022-11-30,Inconclusive,2868,452,4,16,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2869,2021-06-08,38288.98917188614,305,Emergency,2021-06-25,Normal,2869,332,3,3,,,,DISCHARGED -2870,2021-11-07,24307.581437633224,105,Urgent,2021-11-11,Normal,2870,476,0,29,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -2870,2020-08-14,28949.749529813616,473,Urgent,2020-08-24,Abnormal,3691,286,2,19,,,,DISCHARGED -2871,2019-04-09,31396.319126919603,343,Emergency,2019-04-13,Abnormal,2871,302,2,25,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2871,2021-07-29,26083.01225033725,414,Urgent,2021-08-06,Normal,6428,310,0,23,,,,DISCHARGED -2872,2020-02-25,33519.303331810224,157,Elective,2020-03-10,Abnormal,2872,207,0,23,,,,DISCHARGED -2873,2021-11-09,16980.91034772018,477,Emergency,2021-11-25,Abnormal,2873,105,1,25,,,,DISCHARGED -2874,2021-06-22,23020.70294219813,209,Emergency,2021-07-15,Inconclusive,2874,445,3,21,,,,DISCHARGED -2875,2022-03-11,16484.54752529387,187,Emergency,2022-03-27,Normal,2875,157,0,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2876,2023-08-05,42466.16284400199,288,Emergency,2023-09-02,Inconclusive,2876,120,0,8,,,,DISCHARGED -2877,2019-07-16,21022.123524873357,292,Elective,2019-07-22,Abnormal,2877,54,1,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2878,2021-05-06,34518.74037637507,397,Urgent,2021-05-23,Inconclusive,2878,399,1,16,,,,DISCHARGED -2879,2022-07-02,38326.46457880896,404,Emergency,2022-07-28,Abnormal,2879,11,4,16,,,,DISCHARGED -2880,2022-10-05,40479.25278872582,275,Elective,2022-10-28,Inconclusive,2880,144,2,1,,,,DISCHARGED -2881,2021-01-12,39433.90039493899,340,Emergency,2021-01-30,Inconclusive,2881,399,3,1,,,,DISCHARGED -2883,2018-12-22,46572.24114445912,224,Emergency,2018-12-24,Normal,2883,395,4,20,,,,DISCHARGED -2884,2022-01-05,9230.463305023608,286,Elective,2022-01-31,Normal,2884,135,0,22,,,,DISCHARGED -2885,2023-10-04,4956.577671849287,458,Elective,2023-10-24,Inconclusive,2885,467,1,6,,,,DISCHARGED -2886,2023-10-11,8964.129621558914,413,Urgent,2023-11-07,Inconclusive,2886,2,2,3,,,,DISCHARGED -2887,2019-01-04,1651.9871330403969,117,Elective,2019-01-19,Abnormal,2887,143,4,12,,,,DISCHARGED -2888,2020-08-04,37704.52516635386,446,Emergency,2020-08-23,Abnormal,2888,29,2,19,,,,DISCHARGED -2889,2018-11-30,23606.61067088948,108,Urgent,2018-12-08,Abnormal,2889,236,1,29,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2890,2019-03-10,26377.985266195625,407,Urgent,2019-03-18,Inconclusive,2890,278,4,29,,,,DISCHARGED -2891,2021-03-12,3862.2393896543545,418,Urgent,2021-03-31,Normal,2891,347,4,10,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2892,2022-05-24,9936.92661889724,171,Urgent,2022-06-09,Abnormal,2892,114,2,25,,,,DISCHARGED -2893,2019-09-30,22875.68440432815,325,Elective,2019-10-05,Normal,2893,103,1,2,,,,DISCHARGED -2894,2019-09-16,8846.782103493011,430,Elective,2019-10-09,Abnormal,2894,117,0,26,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2895,2021-10-20,47936.01113456638,269,Elective,2021-11-02,Normal,2895,4,4,1,,,,DISCHARGED -2896,2020-08-21,49803.71473897572,118,Emergency,2020-09-17,Inconclusive,2896,467,0,15,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2897,2023-09-05,25927.49593880047,371,Urgent,2023-09-11,Normal,2897,359,1,2,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2898,2022-06-28,30370.135745196323,421,Urgent,2022-07-06,Inconclusive,2898,247,4,23,,,,DISCHARGED -2900,2022-01-20,14293.146317552424,413,Emergency,2022-02-03,Inconclusive,2900,363,4,14,,,,DISCHARGED -2901,2022-02-25,10191.002019557587,117,Urgent,2022-03-06,Normal,2901,320,0,16,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2902,2022-11-03,28165.372595723635,480,Urgent,2022-11-25,Abnormal,2902,120,3,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -2903,2020-01-02,27415.693357581746,364,Urgent,2020-02-01,Normal,2903,285,0,19,,,,DISCHARGED -2904,2023-06-13,18985.31012916977,254,Urgent,,Inconclusive,2904,148,0,6,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -2905,2022-01-13,40427.3807535942,314,Emergency,2022-01-27,Abnormal,2905,83,3,15,,,,DISCHARGED -2906,2022-06-02,31042.06296651532,252,Urgent,2022-06-29,Inconclusive,2906,453,1,4,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2907,2019-03-28,1308.8484077804392,346,Urgent,2019-04-05,Abnormal,2907,405,1,1,,,,DISCHARGED -2908,2019-09-10,37754.94853173979,414,Urgent,2019-09-14,Normal,2908,465,4,0,,,,DISCHARGED -2909,2019-07-29,49212.9812360171,308,Emergency,2019-08-24,Normal,2909,455,2,21,,,,DISCHARGED -2910,2020-09-09,7459.49323585117,237,Elective,2020-10-08,Normal,2910,230,2,28,,,,DISCHARGED -2911,2023-08-09,22211.107042908337,312,Elective,2023-09-04,Inconclusive,2911,287,4,12,,,,DISCHARGED -2911,2020-11-18,26458.58566962557,248,Urgent,2020-11-19,Inconclusive,3603,160,2,15,,,,DISCHARGED -2912,2019-09-24,37405.92287708711,247,Emergency,2019-10-09,Abnormal,2912,271,0,4,,,,DISCHARGED -2913,2023-03-04,9217.289527898129,265,Urgent,2023-03-10,Abnormal,2913,459,0,2,,,,DISCHARGED -2914,2020-01-12,20931.26587187037,470,Elective,2020-01-28,Normal,2914,37,3,26,,,,DISCHARGED -2915,2023-07-20,16352.643999845086,175,Urgent,2023-08-15,Normal,2915,499,3,26,,,,DISCHARGED -2916,2022-11-29,42773.88259138329,276,Elective,2022-12-03,Inconclusive,2916,225,4,14,,,,DISCHARGED -2918,2023-04-06,34428.87396129534,121,Emergency,2023-04-17,Normal,2918,141,4,15,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2919,2021-08-05,41111.35104079901,443,Urgent,2021-08-21,Abnormal,2919,291,4,10,,,,DISCHARGED -2920,2021-01-18,3645.997971831631,419,Elective,2021-02-06,Inconclusive,2920,480,0,24,,,,DISCHARGED -2921,2020-09-05,30118.142401618472,424,Elective,2020-09-13,Inconclusive,2921,150,2,18,,,,DISCHARGED -2922,2020-03-21,32531.454667145452,248,Elective,2020-04-13,Inconclusive,2922,113,4,17,,,,DISCHARGED -2923,2021-05-20,43649.23443786718,343,Urgent,2021-06-02,Inconclusive,2923,236,4,20,,,,DISCHARGED -2924,2022-02-08,4717.099042758425,126,Elective,2022-03-01,Abnormal,2924,65,0,8,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2925,2022-08-19,35633.76284338245,459,Emergency,2022-09-14,Inconclusive,2925,360,0,7,,,,DISCHARGED -2926,2020-10-29,49898.927542721096,190,Elective,2020-11-12,Normal,2926,340,0,21,,,,DISCHARGED -2927,2020-02-08,44388.46307394095,440,Elective,2020-02-21,Normal,2927,257,2,18,,,,DISCHARGED -2928,2023-04-09,24087.163418228494,372,Elective,,Normal,2928,474,4,21,,,,OPEN -2929,2023-09-20,46291.895571682464,455,Emergency,2023-10-06,Normal,2929,248,1,4,,,,DISCHARGED -2930,2023-01-04,39987.97357068673,266,Urgent,2023-01-26,Abnormal,2930,456,1,16,,,,DISCHARGED -2931,2022-01-14,7056.4164803428375,174,Elective,2022-01-24,Inconclusive,2931,448,4,4,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2932,2019-09-29,37980.817859882816,123,Urgent,2019-10-05,Abnormal,2932,330,4,13,,,,DISCHARGED -2933,2021-06-22,24710.2079826386,233,Urgent,2021-06-24,Inconclusive,2933,322,4,6,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2934,2020-01-27,29834.35443890922,410,Emergency,2020-02-13,Normal,2934,179,4,8,,,,DISCHARGED -2935,2021-10-05,25632.673267018392,289,Emergency,2021-10-24,Abnormal,2935,189,2,27,,,,DISCHARGED -2936,2022-04-27,13709.624590316684,462,Emergency,2022-05-18,Inconclusive,2936,406,1,16,,,,DISCHARGED -2937,2023-02-27,1736.4236432338753,102,Elective,2023-03-25,Inconclusive,2937,153,3,2,,,,DISCHARGED -2938,2023-01-28,11724.463049729951,257,Urgent,,Normal,2938,195,1,7,,,,OPEN -2939,2021-06-05,31809.720508298837,155,Elective,2021-07-04,Inconclusive,2939,465,1,21,,,,DISCHARGED -2940,2020-11-09,32858.73727013121,257,Emergency,2020-11-18,Abnormal,2940,310,0,12,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -2941,2022-09-13,15646.44029877776,113,Elective,2022-10-13,Abnormal,2941,261,4,15,,,,DISCHARGED -2942,2020-02-10,18139.93530962089,478,Elective,2020-02-15,Inconclusive,2942,418,4,20,,,,DISCHARGED -2943,2022-11-24,49921.37336494804,366,Urgent,2022-12-09,Abnormal,2943,405,4,28,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -2944,2022-07-11,41198.5514592896,291,Urgent,2022-08-10,Abnormal,2944,426,0,9,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2945,2023-07-12,32157.769307478244,278,Urgent,,Normal,2945,142,2,17,,,,OPEN -2946,2019-09-02,18442.60092107172,413,Urgent,2019-09-07,Abnormal,2946,341,2,2,,,,DISCHARGED -2947,2021-05-19,5045.668652016222,289,Emergency,2021-05-22,Normal,2947,315,3,11,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2948,2018-12-28,11531.518732078912,336,Urgent,2019-01-03,Inconclusive,2948,100,2,15,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -2949,2023-01-20,41496.96074658107,137,Elective,2023-01-28,Inconclusive,2949,243,2,17,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2950,2022-09-21,47814.20577733297,284,Urgent,2022-10-06,Inconclusive,2950,489,4,16,,,,DISCHARGED -2951,2021-07-09,12349.93659393792,163,Elective,2021-08-01,Inconclusive,2951,11,1,6,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2953,2020-02-03,4311.02370718698,446,Emergency,2020-02-23,Inconclusive,2953,238,2,29,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2954,2022-02-02,35829.37346763172,384,Elective,2022-03-03,Normal,2954,48,2,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -2956,2021-08-24,40283.898745716295,483,Urgent,2021-08-29,Inconclusive,2956,41,0,22,,,,DISCHARGED -2957,2023-10-08,28993.967763989214,130,Urgent,2023-10-20,Abnormal,2957,165,3,27,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2958,2023-07-20,35376.93073958734,254,Urgent,2023-08-13,Inconclusive,2958,81,0,22,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -2959,2020-07-12,25777.582555139605,156,Urgent,2020-07-26,Inconclusive,2959,428,4,7,,,,DISCHARGED -2960,2020-04-19,30331.860738152325,182,Emergency,2020-05-07,Inconclusive,2960,290,1,16,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -2961,2021-06-13,36154.28019266695,225,Emergency,2021-06-20,Normal,2961,157,3,20,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2962,2020-09-01,12324.92302640782,168,Elective,2020-09-11,Normal,2962,215,0,25,,,,DISCHARGED -2963,2023-07-09,22270.7659790254,205,Elective,2023-07-10,Normal,2963,489,2,24,,,,DISCHARGED -2964,2020-10-06,4034.03849953964,488,Emergency,2020-10-08,Inconclusive,2964,157,2,27,,,,DISCHARGED -2965,2020-07-01,25005.57209349229,500,Emergency,2020-07-14,Inconclusive,2965,461,3,26,,,,DISCHARGED -2966,2022-11-14,26837.265500636124,116,Urgent,2022-12-09,Inconclusive,2966,133,2,6,,,,DISCHARGED -2967,2019-09-30,42939.52240904879,384,Elective,2019-10-13,Normal,2967,66,0,0,,,,DISCHARGED -2968,2020-04-13,9293.50028217882,201,Emergency,2020-05-05,Inconclusive,2968,335,0,7,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2969,2023-04-15,14824.89980965191,198,Emergency,2023-05-01,Inconclusive,2969,6,2,18,,,,DISCHARGED -2970,2023-09-28,9202.248026537109,466,Emergency,,Normal,2970,435,2,28,,,,OPEN -2971,2022-03-30,7963.098011735559,260,Elective,2022-04-27,Abnormal,2971,13,4,19,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2972,2019-10-03,8768.254699110723,247,Urgent,2019-10-17,Abnormal,2972,72,1,19,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -2973,2023-08-20,33484.65552824067,161,Urgent,,Normal,2973,398,3,9,,,,OPEN -2974,2019-10-23,44519.63025972372,212,Emergency,2019-10-24,Inconclusive,2974,404,0,29,,,,DISCHARGED -2975,2021-02-16,16290.493087858751,296,Urgent,2021-03-12,Abnormal,2975,162,3,11,,,,DISCHARGED -2976,2023-03-14,26604.24696035863,254,Urgent,,Normal,2976,65,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -2977,2022-11-09,44649.87567768599,309,Emergency,2022-11-17,Abnormal,2977,346,0,0,,,,DISCHARGED -2978,2020-10-07,39165.70608710915,185,Urgent,2020-10-12,Normal,2978,129,4,23,,,,DISCHARGED -2978,2020-05-07,28674.763844915786,297,Emergency,2020-05-21,Abnormal,5194,418,4,24,,,,DISCHARGED -2979,2022-04-18,46915.7452305632,294,Emergency,2022-04-26,Inconclusive,2979,465,2,24,,,,DISCHARGED -2980,2023-06-25,33605.78593977403,318,Urgent,,Abnormal,2980,205,3,20,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,OPEN -2981,2019-04-20,2486.420508579542,165,Emergency,2019-05-09,Inconclusive,2981,275,3,3,,,,DISCHARGED -2982,2020-10-27,4568.766167655131,494,Elective,2020-10-28,Normal,2982,465,2,3,,,,DISCHARGED -2983,2020-03-19,17559.644860598404,115,Urgent,2020-04-17,Normal,2983,255,3,8,,,,DISCHARGED -2984,2021-01-26,15883.043617516954,402,Urgent,2021-02-04,Inconclusive,2984,265,2,14,,,,DISCHARGED -2985,2019-10-28,18688.239896867817,476,Urgent,2019-11-05,Inconclusive,2985,24,0,23,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2986,2020-05-03,28184.960626964414,340,Elective,2020-05-13,Normal,2986,449,4,25,,,,DISCHARGED -2988,2023-08-23,34730.83651230212,176,Urgent,2023-09-04,Inconclusive,2988,280,4,14,,,,DISCHARGED -2989,2019-06-10,15386.09958245291,345,Emergency,2019-07-09,Inconclusive,2989,252,3,25,,,,DISCHARGED -2990,2020-01-23,31729.848348469197,393,Emergency,2020-02-07,Inconclusive,2990,309,1,27,,,,DISCHARGED -2991,2022-11-09,19160.38465223552,219,Urgent,2022-11-16,Inconclusive,2991,288,4,6,,,,DISCHARGED -2993,2021-01-31,21350.88825421756,324,Urgent,2021-02-22,Normal,2993,163,2,11,,,,DISCHARGED -2994,2019-04-04,44719.9041719709,416,Urgent,2019-04-25,Normal,2994,94,1,2,,,,DISCHARGED -2995,2022-12-14,31666.544633220117,441,Elective,2022-12-17,Normal,2995,269,1,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2996,2022-08-29,23486.27533506861,157,Emergency,2022-09-05,Abnormal,2996,320,4,8,,,,DISCHARGED -2997,2021-05-26,10983.650789386096,168,Emergency,2021-05-31,Inconclusive,2997,109,4,13,,,,DISCHARGED -2998,2023-05-08,29367.17656921782,118,Urgent,2023-06-03,Abnormal,2998,335,4,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2999,2021-05-12,43876.917738175616,381,Urgent,2021-05-26,Abnormal,2999,309,2,23,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3000,2019-06-09,24158.600282604948,404,Urgent,2019-06-17,Normal,3000,237,1,27,,,,DISCHARGED -3001,2020-07-09,41430.01352558279,168,Elective,2020-07-14,Normal,3001,380,3,11,,,,DISCHARGED -3002,2023-10-17,41937.62699737799,196,Emergency,2023-11-02,Normal,3002,435,2,0,,,,DISCHARGED -3003,2020-03-25,48989.22046630025,376,Urgent,2020-04-24,Inconclusive,3003,386,0,18,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -3004,2020-06-19,19040.481555131708,294,Elective,2020-07-12,Normal,3004,482,4,29,,,,DISCHARGED -3005,2020-02-18,36042.70485117828,474,Emergency,2020-03-07,Abnormal,3005,424,1,15,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3006,2023-08-20,34550.43838235001,469,Urgent,2023-08-29,Inconclusive,3006,389,2,11,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -3007,2022-09-21,4330.41714647144,473,Elective,2022-09-29,Abnormal,3007,24,0,9,,,,DISCHARGED -3008,2020-05-16,29209.807921145988,396,Elective,2020-05-30,Inconclusive,3008,140,2,1,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -3009,2020-08-03,2612.544949852821,229,Elective,2020-08-31,Abnormal,3009,116,2,17,,,,DISCHARGED -3010,2022-08-10,44846.01372505414,415,Elective,2022-09-07,Normal,3010,481,3,12,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -3013,2022-04-01,39846.67451964181,406,Urgent,2022-04-28,Inconclusive,3013,391,3,28,,,,DISCHARGED -3014,2019-08-01,9644.697645505625,368,Urgent,2019-08-14,Inconclusive,3014,404,2,23,,,,DISCHARGED -3015,2021-06-21,45919.72391326319,312,Elective,2021-07-06,Normal,3015,481,0,5,,,,DISCHARGED -3016,2020-03-04,13974.701100337184,358,Emergency,2020-03-29,Normal,3016,451,1,11,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -3017,2022-07-23,22654.54406538556,114,Elective,2022-08-16,Inconclusive,3017,24,1,27,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3018,2023-07-13,43873.6342400572,427,Elective,2023-07-28,Abnormal,3018,78,4,27,,,,DISCHARGED -3019,2023-01-18,44179.0017280507,198,Emergency,2023-01-22,Normal,3019,67,4,28,,,,DISCHARGED -3020,2020-06-25,24124.109892544548,176,Emergency,2020-07-21,Abnormal,3020,172,1,21,,,,DISCHARGED -3021,2020-01-07,1082.4447136181125,351,Elective,2020-02-06,Normal,3021,443,2,3,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3022,2020-12-22,22529.01843543141,139,Elective,2021-01-02,Inconclusive,3022,11,2,0,,,,DISCHARGED -3023,2023-09-25,19570.61366262392,106,Elective,2023-10-03,Inconclusive,3023,287,3,10,,,,DISCHARGED -3024,2022-02-05,10302.962830167777,469,Elective,2022-02-09,Inconclusive,3024,127,3,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3025,2021-06-15,38761.28250167328,478,Elective,2021-07-06,Inconclusive,3025,95,4,7,,,,DISCHARGED -3026,2022-03-07,14069.63712363104,138,Elective,2022-03-15,Abnormal,3026,91,1,1,,,,DISCHARGED -3027,2021-08-26,46055.67211962495,104,Elective,2021-09-04,Abnormal,3027,140,2,1,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3028,2023-03-27,12520.853260333426,472,Emergency,2023-04-26,Normal,3028,30,1,15,,,,DISCHARGED -3029,2020-12-24,31329.92940572952,405,Elective,2020-12-31,Normal,3029,333,0,0,,,,DISCHARGED -3030,2022-04-21,26946.720983773488,101,Emergency,2022-04-30,Abnormal,3030,19,1,3,,,,DISCHARGED -3031,2022-10-05,22196.970495364298,328,Emergency,2022-10-24,Inconclusive,3031,145,0,5,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -3033,2022-06-16,15531.123788191884,372,Urgent,2022-06-26,Normal,3033,476,3,29,,,,DISCHARGED -3034,2019-06-22,17636.398985765925,401,Elective,2019-07-14,Abnormal,3034,315,3,20,,,,DISCHARGED -3035,2020-01-11,45829.667726548585,424,Elective,2020-01-14,Abnormal,3035,446,4,19,,,,DISCHARGED -3036,2019-12-29,47631.02169520548,214,Elective,2020-01-03,Abnormal,3036,389,1,13,,,,DISCHARGED -3037,2020-02-19,37304.68656576952,193,Urgent,2020-03-01,Normal,3037,159,1,19,,,,DISCHARGED -3038,2019-04-13,33885.89268271875,436,Urgent,2019-05-02,Inconclusive,3038,348,0,25,,,,DISCHARGED -3039,2018-12-30,4516.035128277084,300,Emergency,2019-01-13,Abnormal,3039,42,3,14,,,,DISCHARGED -3040,2020-02-02,12227.695798175866,295,Urgent,2020-02-09,Normal,3040,253,0,6,,,,DISCHARGED -3041,2022-01-09,37183.292628563,362,Urgent,2022-02-05,Abnormal,3041,129,3,6,,,,DISCHARGED -3042,2023-07-15,18471.86869157152,411,Emergency,,Inconclusive,3042,59,0,17,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -3043,2021-07-13,45434.588371381615,230,Urgent,2021-08-05,Abnormal,3043,150,3,28,,,,DISCHARGED -3044,2022-11-23,48422.8873974993,210,Elective,2022-12-09,Inconclusive,3044,466,0,22,,,,DISCHARGED -3045,2022-09-29,27796.288193939152,191,Emergency,2022-10-23,Normal,3045,286,3,1,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -3046,2018-12-08,36491.20134196766,484,Elective,2019-01-05,Abnormal,3046,498,0,19,,,,DISCHARGED -3047,2019-06-03,36331.01260718015,396,Elective,2019-06-24,Inconclusive,3047,4,1,14,,,,DISCHARGED -3048,2019-10-31,19345.15411864992,470,Elective,2019-11-07,Abnormal,3048,466,4,0,,,,DISCHARGED -3049,2020-07-04,44240.44402929015,415,Emergency,2020-07-12,Normal,3049,417,0,20,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3050,2020-06-18,9501.933275648213,362,Emergency,2020-06-30,Inconclusive,3050,265,4,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -3051,2021-01-15,44132.58850675531,499,Elective,2021-01-21,Inconclusive,3051,344,1,19,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -3053,2022-07-19,27202.773196443453,366,Urgent,2022-07-27,Inconclusive,3053,129,1,28,,,,DISCHARGED -3054,2022-10-14,34218.87772413768,389,Elective,2022-10-29,Abnormal,3054,381,3,24,,,,DISCHARGED -3055,2020-10-07,21169.287555743744,273,Elective,2020-10-19,Inconclusive,3055,266,4,12,,,,DISCHARGED -3056,2023-04-24,45608.98980092845,197,Emergency,,Inconclusive,3056,177,2,11,,,,OPEN -3057,2022-05-25,39677.55395831862,391,Emergency,2022-05-27,Abnormal,3057,252,3,23,,,,DISCHARGED -3058,2020-06-07,30081.117853501204,305,Urgent,2020-06-22,Abnormal,3058,414,4,21,,,,DISCHARGED -3059,2021-10-31,4512.905076618146,393,Elective,2021-11-22,Abnormal,3059,55,0,14,,,,DISCHARGED -3060,2022-05-26,6118.350474381018,479,Emergency,2022-05-30,Inconclusive,3060,462,0,23,,,,DISCHARGED -3061,2020-08-06,25464.236363753706,207,Urgent,2020-08-07,Inconclusive,3061,456,1,4,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -3061,2021-12-10,35260.80851419215,354,Emergency,2021-12-24,Abnormal,6215,470,2,6,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -3062,2022-01-05,16702.28967673392,157,Urgent,2022-01-12,Abnormal,3062,82,0,7,,,,DISCHARGED -3063,2019-06-17,6110.906995852158,126,Elective,2019-07-05,Abnormal,3063,392,4,22,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3064,2020-05-21,49699.92253455233,360,Emergency,2020-06-15,Abnormal,3064,98,4,13,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3065,2023-07-20,49487.502458254734,319,Urgent,,Inconclusive,3065,148,0,3,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",OPEN -3066,2018-11-25,47765.64859521717,214,Elective,2018-11-26,Normal,3066,328,4,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -3066,2023-02-18,35560.58259917567,415,Elective,2023-03-16,Abnormal,7147,155,4,28,,,,DISCHARGED -3067,2019-08-29,15080.873436235446,238,Emergency,2019-08-30,Inconclusive,3067,189,1,13,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3068,2020-02-18,7144.92593178088,487,Urgent,2020-03-02,Normal,3068,493,2,9,,,,DISCHARGED -3069,2020-04-25,24602.97015105977,417,Urgent,2020-05-01,Normal,3069,370,1,21,,,,DISCHARGED -3070,2020-07-14,44042.33711524014,422,Elective,2020-07-22,Abnormal,3070,262,2,29,,,,DISCHARGED -3071,2021-08-18,10108.849771821002,457,Emergency,2021-08-23,Normal,3071,79,4,29,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -3072,2021-06-16,8961.954526506668,405,Elective,2021-07-09,Normal,3072,399,2,27,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3073,2020-04-25,46125.00841454958,493,Elective,2020-05-03,Inconclusive,3073,251,4,15,,,,DISCHARGED -3074,2022-01-22,27785.76388876017,428,Emergency,2022-02-08,Normal,3074,96,4,10,,,,DISCHARGED -3075,2022-01-20,42826.25894958083,117,Emergency,2022-02-16,Inconclusive,3075,259,1,21,,,,DISCHARGED -3076,2021-11-21,25079.72068040528,292,Urgent,2021-12-14,Abnormal,3076,259,1,28,,,,DISCHARGED -3077,2020-03-30,4298.073633218277,282,Elective,2020-04-16,Abnormal,3077,102,3,24,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -3078,2020-02-02,13673.859270371644,258,Emergency,2020-02-24,Abnormal,3078,39,0,25,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -3079,2023-04-04,1993.936016917022,479,Elective,2023-04-07,Inconclusive,3079,272,3,13,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -3080,2023-07-26,17599.515910295057,295,Elective,,Abnormal,3080,100,3,13,,,,OPEN -3081,2018-11-11,19391.59385320598,283,Emergency,2018-11-25,Normal,3081,358,2,1,,,,DISCHARGED -3082,2019-05-12,48441.32562710593,187,Emergency,2019-05-15,Inconclusive,3082,379,4,21,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3083,2022-08-06,29576.501329415467,197,Elective,2022-08-17,Abnormal,3083,307,4,12,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3085,2020-10-19,27346.34215391318,480,Urgent,2020-11-01,Abnormal,3085,220,4,2,,,,DISCHARGED -3086,2021-04-13,28656.611074002816,145,Urgent,2021-05-08,Abnormal,3086,307,0,29,,,,DISCHARGED -3088,2022-05-29,21414.90214783391,268,Elective,2022-06-21,Inconclusive,3088,419,2,17,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3089,2022-08-29,13205.213429925288,333,Urgent,2022-09-15,Inconclusive,3089,123,2,21,,,,DISCHARGED -3090,2020-12-20,8325.723314836521,459,Elective,2021-01-17,Inconclusive,3090,421,4,3,,,,DISCHARGED -3091,2022-09-21,23471.083129657563,371,Urgent,2022-09-25,Inconclusive,3091,230,3,20,,,,DISCHARGED -3092,2021-11-23,1845.2985382286452,126,Urgent,2021-11-25,Inconclusive,3092,177,0,20,,,,DISCHARGED -3093,2020-07-17,29164.569730894804,366,Urgent,2020-08-08,Abnormal,3093,62,3,18,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3094,2022-06-16,20038.57798367889,113,Elective,2022-06-19,Inconclusive,3094,484,1,15,,,,DISCHARGED -3095,2023-05-29,14920.932452963854,392,Emergency,2023-06-17,Inconclusive,3095,115,2,27,,,,DISCHARGED -3096,2023-02-08,5984.385715350033,477,Emergency,2023-02-26,Inconclusive,3096,190,2,3,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3097,2020-06-30,29685.348383780743,323,Elective,2020-07-26,Normal,3097,61,3,18,,,,DISCHARGED -3098,2020-07-27,13691.821196220128,206,Emergency,2020-08-06,Abnormal,3098,255,0,22,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3099,2023-07-13,16539.28341079875,138,Emergency,,Inconclusive,3099,482,2,14,,,,OPEN -3100,2019-05-20,3856.792000521451,390,Elective,2019-06-08,Abnormal,3100,6,3,0,,,,DISCHARGED -3101,2019-06-23,36110.69377074615,467,Elective,2019-07-20,Inconclusive,3101,154,0,15,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3102,2022-04-25,44180.09037128022,162,Elective,2022-05-02,Abnormal,3102,91,3,14,,,,DISCHARGED -3103,2020-07-30,44710.80778346803,274,Elective,2020-08-14,Inconclusive,3103,469,0,15,,,,DISCHARGED -3104,2021-06-15,45880.3180357337,148,Urgent,2021-07-09,Abnormal,3104,13,4,21,,,,DISCHARGED -3105,2019-08-31,26831.020331981643,286,Emergency,2019-09-12,Abnormal,3105,454,0,19,,,,DISCHARGED -3106,2019-09-03,2789.481060551187,110,Emergency,2019-09-08,Normal,3106,228,1,0,,,,DISCHARGED -3107,2020-05-14,12366.0143402873,253,Urgent,2020-05-30,Inconclusive,3107,85,4,16,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -3108,2023-07-30,29111.15311139416,246,Emergency,,Abnormal,3108,132,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -3109,2022-09-29,48112.9633141049,181,Elective,2022-10-19,Inconclusive,3109,182,4,29,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3110,2022-04-21,16107.21239207795,368,Elective,2022-05-17,Normal,3110,385,4,4,,,,DISCHARGED -3111,2021-03-26,31361.213328673588,195,Urgent,2021-04-22,Normal,3111,61,3,25,,,,DISCHARGED -3112,2020-06-24,11629.933807666624,212,Urgent,2020-07-21,Abnormal,3112,218,3,6,,,,DISCHARGED -3113,2019-08-05,25529.91324398358,475,Emergency,2019-08-28,Normal,3113,404,1,12,,,,DISCHARGED -3114,2022-03-17,41845.22454136264,423,Emergency,2022-03-26,Inconclusive,3114,245,3,11,,,,DISCHARGED -3115,2020-01-31,25843.909186557117,461,Urgent,2020-02-28,Abnormal,3115,229,2,3,,,,DISCHARGED -3115,2023-08-08,11839.734122631631,405,Elective,2023-09-03,Inconclusive,6537,78,2,29,,,,DISCHARGED -3116,2020-08-20,47546.80790379924,186,Urgent,2020-09-08,Abnormal,3116,148,1,24,,,,DISCHARGED -3117,2022-07-31,10689.521617328051,477,Urgent,2022-08-20,Inconclusive,3117,137,0,3,,,,DISCHARGED -3117,2022-01-03,25063.63101822934,438,Urgent,2022-01-09,Abnormal,5631,470,0,22,,,,DISCHARGED -3118,2019-07-04,5130.335389680576,467,Urgent,2019-07-18,Abnormal,3118,313,2,20,,,,DISCHARGED -3119,2020-05-29,25785.726314569,372,Urgent,2020-06-10,Inconclusive,3119,375,3,20,,,,DISCHARGED -3120,2023-07-03,49628.88362865496,149,Urgent,2023-07-09,Abnormal,3120,422,1,5,,,,DISCHARGED -3121,2019-05-19,10892.781978501498,254,Elective,2019-05-24,Normal,3121,388,0,23,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3122,2022-08-20,26507.87267420748,380,Emergency,2022-09-08,Abnormal,3122,64,0,14,,,,DISCHARGED -3122,2020-05-29,13026.56587594048,153,Elective,2020-06-27,Abnormal,5697,12,4,20,,,,DISCHARGED -3123,2019-10-28,4573.196281198502,234,Urgent,2019-11-24,Abnormal,3123,212,2,18,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -3124,2020-12-27,4567.635908501887,368,Urgent,2021-01-15,Normal,3124,473,3,5,,,,DISCHARGED -3125,2021-08-27,40970.2729576162,222,Urgent,2021-09-02,Normal,3125,241,1,29,,,,DISCHARGED -3126,2020-09-04,7792.578091689375,213,Emergency,2020-10-04,Normal,3126,492,0,11,,,,DISCHARGED -3127,2022-08-16,16305.762604435338,126,Emergency,2022-09-01,Inconclusive,3127,212,4,13,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3127,2022-08-04,44611.57088068633,359,Elective,2022-08-18,Abnormal,8196,180,2,17,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3128,2021-04-14,42606.41874967905,211,Emergency,2021-05-07,Inconclusive,3128,337,2,27,,,,DISCHARGED -3129,2020-06-24,46299.93837972343,320,Urgent,2020-07-21,Normal,3129,484,1,11,,,,DISCHARGED -3130,2022-10-07,22181.86539051473,301,Emergency,2022-10-30,Inconclusive,3130,172,0,23,,,,DISCHARGED -3131,2021-03-04,5276.057261871656,273,Elective,2021-03-25,Abnormal,3131,159,1,23,,,,DISCHARGED -3132,2019-11-29,14243.290672853327,303,Urgent,2019-12-18,Abnormal,3132,163,1,14,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3133,2021-06-22,45178.1949095743,365,Emergency,2021-07-12,Abnormal,3133,464,4,18,,,,DISCHARGED -3134,2021-03-28,28686.230988315205,198,Urgent,2021-04-04,Normal,3134,482,2,27,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3135,2021-04-06,23421.713367282933,296,Emergency,2021-04-12,Inconclusive,3135,496,3,7,,,,DISCHARGED -3136,2022-02-17,29503.44306549181,464,Elective,2022-02-28,Normal,3136,187,2,8,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3137,2021-10-16,13752.620285817738,298,Emergency,2021-11-11,Normal,3137,394,2,4,,,,DISCHARGED -3138,2020-09-17,12739.68886760918,482,Emergency,2020-09-26,Abnormal,3138,190,4,4,,,,DISCHARGED -3139,2022-05-09,25736.399042273544,143,Urgent,2022-06-02,Abnormal,3139,404,3,5,,,,DISCHARGED -3140,2021-11-04,20882.082372825043,110,Emergency,2021-11-26,Abnormal,3140,307,0,22,,,,DISCHARGED -3141,2023-08-10,24060.264332494145,361,Elective,,Abnormal,3141,255,3,2,,,,OPEN -3142,2020-04-19,11853.8753671024,144,Elective,2020-05-11,Abnormal,3142,182,0,4,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3143,2022-06-04,23286.747277142727,406,Emergency,2022-07-01,Abnormal,3143,116,3,0,,,,DISCHARGED -3145,2018-12-28,5301.168668052529,171,Emergency,2019-01-03,Abnormal,3145,281,1,10,,,,DISCHARGED -3146,2023-04-19,23855.890616892284,411,Emergency,2023-04-20,Abnormal,3146,195,3,25,,,,DISCHARGED -3147,2021-11-09,1009.4173268954232,491,Emergency,2021-11-15,Inconclusive,3147,33,4,20,,,,DISCHARGED -3148,2020-01-19,44533.03057844677,483,Urgent,2020-01-27,Normal,3148,51,0,19,,,,DISCHARGED -3149,2021-08-01,46283.58411492249,222,Urgent,2021-08-26,Abnormal,3149,111,2,0,,,,DISCHARGED -3150,2019-09-08,41482.51699787514,396,Emergency,2019-09-20,Inconclusive,3150,251,4,6,,,,DISCHARGED -3150,2022-04-17,42275.26743533238,240,Emergency,2022-05-08,Inconclusive,4264,81,0,14,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3151,2019-03-22,1585.7864332148283,223,Emergency,2019-04-16,Inconclusive,3151,231,0,16,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3152,2023-05-12,33544.429034004934,367,Elective,,Inconclusive,3152,226,2,28,,,,OPEN -3153,2021-06-02,28085.320523934377,387,Elective,2021-06-30,Normal,3153,232,1,7,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -3154,2023-06-23,33608.9744079182,387,Urgent,2023-07-19,Inconclusive,3154,220,4,29,,,,DISCHARGED -3155,2022-09-12,35522.495882133655,137,Elective,2022-10-09,Abnormal,3155,435,2,25,,,,DISCHARGED -3156,2021-07-02,44403.42406457306,226,Elective,2021-07-09,Abnormal,3156,412,2,27,,,,DISCHARGED -3156,2020-02-09,25327.09454938707,291,Elective,2020-02-18,Abnormal,7355,421,1,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3157,2022-10-30,19755.718355065816,254,Urgent,2022-11-26,Normal,3157,41,4,25,,,,DISCHARGED -3158,2019-02-04,2251.8982149833737,161,Emergency,2019-02-28,Normal,3158,20,2,12,,,,DISCHARGED -3159,2019-12-28,23482.818142155356,303,Emergency,2020-01-13,Inconclusive,3159,41,1,11,,,,DISCHARGED -3160,2020-07-26,5590.18573143374,121,Urgent,2020-08-03,Normal,3160,396,4,4,,,,DISCHARGED -3161,2020-05-22,42187.77989543769,328,Urgent,2020-06-10,Inconclusive,3161,112,3,12,,,,DISCHARGED -3162,2022-03-15,27887.520458215902,344,Urgent,2022-03-23,Normal,3162,104,0,5,,,,DISCHARGED -3163,2021-10-01,38020.68946207476,149,Elective,2021-10-04,Abnormal,3163,191,1,24,,,,DISCHARGED -3164,2020-01-13,33155.968159504744,166,Emergency,2020-01-28,Inconclusive,3164,16,0,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3165,2021-07-22,21152.556780714945,127,Elective,2021-08-01,Inconclusive,3165,119,3,29,,,,DISCHARGED -3166,2022-06-17,15797.127295506469,425,Emergency,2022-07-14,Inconclusive,3166,392,2,22,,,,DISCHARGED -3167,2021-04-15,23710.315085067414,418,Urgent,2021-04-27,Abnormal,3167,424,2,21,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3168,2021-04-17,25405.87141325083,349,Emergency,2021-05-04,Inconclusive,3168,128,4,20,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3169,2021-10-27,37885.40544481771,127,Emergency,2021-10-30,Inconclusive,3169,129,1,21,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -3170,2021-02-21,20725.284591065363,318,Elective,2021-03-07,Normal,3170,59,1,29,,,,DISCHARGED -3171,2022-01-01,22564.109614313336,403,Elective,2022-01-30,Normal,3171,47,4,10,,,,DISCHARGED -3172,2022-04-19,25217.78973513061,249,Urgent,2022-04-26,Abnormal,3172,28,0,3,,,,DISCHARGED -3174,2020-10-25,37797.67662244145,294,Elective,2020-11-08,Abnormal,3174,96,2,0,,,,DISCHARGED -3175,2021-11-29,41498.664297844734,171,Urgent,2021-12-06,Normal,3175,9,2,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3176,2021-02-19,35573.40891708377,356,Emergency,2021-03-01,Normal,3176,241,1,11,,,,DISCHARGED -3177,2019-07-15,30491.81722319993,113,Elective,2019-07-18,Inconclusive,3177,313,1,8,,,,DISCHARGED -3179,2020-08-26,29165.42831875853,171,Emergency,2020-09-12,Inconclusive,3179,443,4,10,,,,DISCHARGED -3180,2021-05-18,6779.595114468269,153,Elective,2021-06-09,Abnormal,3180,231,3,4,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3180,2023-06-22,8424.652221687034,239,Elective,,Abnormal,8996,276,0,23,,,,OPEN -3181,2022-03-06,10850.253817216151,261,Elective,2022-03-11,Abnormal,3181,283,3,6,,,,DISCHARGED -3182,2023-08-15,1046.9851593479789,167,Elective,2023-09-08,Normal,3182,202,3,7,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -3183,2020-07-05,15894.033974104748,114,Elective,2020-07-12,Normal,3183,246,1,0,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -3184,2020-11-08,20823.484544963747,254,Emergency,2020-12-02,Abnormal,3184,289,1,24,,,,DISCHARGED -3185,2019-11-19,13886.451403327366,344,Emergency,2019-12-04,Inconclusive,3185,263,1,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3186,2019-02-12,15710.353829840358,323,Urgent,2019-02-17,Normal,3186,442,3,2,,,,DISCHARGED -3187,2023-03-01,25961.30488418477,304,Elective,2023-03-17,Normal,3187,213,0,7,,,,DISCHARGED -3190,2020-04-30,44374.042747785854,113,Elective,2020-05-14,Normal,3190,199,1,27,,,,DISCHARGED -3191,2021-12-12,46664.288490969615,449,Elective,2021-12-26,Inconclusive,3191,432,2,10,,,,DISCHARGED -3192,2021-11-25,33266.7641262159,314,Elective,2021-12-13,Inconclusive,3192,78,0,0,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3193,2022-02-04,35328.78298808477,499,Elective,2022-02-08,Abnormal,3193,400,2,13,,,,DISCHARGED -3194,2020-04-13,30730.496854594345,341,Elective,2020-04-20,Abnormal,3194,443,0,0,,,,DISCHARGED -3195,2020-01-31,25308.38693229544,328,Emergency,2020-02-19,Abnormal,3195,342,1,5,,,,DISCHARGED -3196,2021-06-06,44957.68027934134,151,Emergency,2021-06-12,Normal,3196,343,4,20,,,,DISCHARGED -3197,2021-02-27,16486.72498509192,434,Elective,2021-03-26,Normal,3197,172,1,26,,,,DISCHARGED -3198,2022-01-06,17433.850826831138,496,Urgent,2022-01-31,Abnormal,3198,466,3,5,,,,DISCHARGED -3198,2019-01-06,48070.958802193374,486,Elective,2019-02-03,Inconclusive,4446,68,3,2,,,,DISCHARGED -3199,2020-03-16,42008.85626598571,391,Urgent,2020-04-02,Normal,3199,415,0,9,,,,DISCHARGED -3200,2018-12-25,41116.124766563495,411,Urgent,2019-01-11,Abnormal,3200,427,3,11,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3201,2022-06-12,39261.89574248604,326,Urgent,2022-07-12,Abnormal,3201,448,1,9,,,,DISCHARGED -3202,2021-06-26,17045.90059379294,440,Emergency,2021-07-25,Inconclusive,3202,86,2,21,,,,DISCHARGED -3203,2019-12-18,26799.03530934963,483,Elective,2020-01-12,Abnormal,3203,100,1,1,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -3203,2021-05-06,37784.22859772242,454,Elective,2021-05-15,Inconclusive,4905,7,0,23,,,,DISCHARGED -3204,2019-02-01,38038.8666966434,189,Urgent,2019-03-03,Inconclusive,3204,332,3,27,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3205,2020-02-11,35813.47918792423,159,Urgent,2020-02-26,Abnormal,3205,199,2,21,,,,DISCHARGED -3206,2020-03-06,31964.450065561323,414,Urgent,2020-03-08,Normal,3206,86,4,12,,,,DISCHARGED -3207,2022-10-01,31003.156018446414,185,Elective,2022-10-26,Inconclusive,3207,42,2,15,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3208,2022-08-31,21846.13325548399,148,Elective,2022-09-12,Normal,3208,384,2,12,,,,DISCHARGED -3209,2022-02-17,6872.285240259911,148,Urgent,2022-02-22,Inconclusive,3209,108,1,3,,,,DISCHARGED -3210,2018-12-20,21143.94367655722,148,Elective,2019-01-07,Inconclusive,3210,434,4,3,,,,DISCHARGED -3211,2023-10-29,38696.62195728593,416,Urgent,2023-11-21,Inconclusive,3211,407,0,29,,,,DISCHARGED -3211,2023-09-14,17635.30737141264,218,Emergency,,Abnormal,3904,482,0,10,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",OPEN -3212,2022-12-08,7524.227987602171,357,Urgent,2022-12-20,Abnormal,3212,151,2,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -3214,2019-06-26,31390.23324087279,277,Emergency,2019-06-28,Abnormal,3214,16,2,13,,,,DISCHARGED -3215,2022-08-18,29963.78499238094,189,Elective,2022-09-14,Normal,3215,132,3,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -3216,2021-06-26,29618.637058229506,481,Elective,2021-07-02,Inconclusive,3216,147,4,26,,,,DISCHARGED -3217,2023-10-12,8176.785845277339,351,Urgent,,Abnormal,3217,276,2,18,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -3218,2020-01-27,7643.983675466972,296,Urgent,2020-02-16,Abnormal,3218,231,3,21,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -3219,2020-12-28,26920.753145962422,387,Emergency,2021-01-05,Inconclusive,3219,313,4,24,,,,DISCHARGED -3220,2019-05-13,25826.76970732778,447,Elective,2019-06-03,Abnormal,3220,414,0,0,,,,DISCHARGED -3221,2019-11-21,37934.43767465431,398,Urgent,2019-11-29,Inconclusive,3221,365,3,4,,,,DISCHARGED -3222,2021-10-23,45608.85733652583,398,Emergency,2021-11-16,Normal,3222,227,4,16,,,,DISCHARGED -3223,2023-03-28,35336.88433296851,149,Emergency,2023-04-09,Inconclusive,3223,138,3,0,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3224,2022-05-30,27739.05806271692,446,Elective,2022-06-14,Abnormal,3224,435,2,18,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3225,2019-04-10,19356.0784987492,477,Emergency,2019-04-19,Inconclusive,3225,398,1,18,,,,DISCHARGED -3226,2020-12-22,1612.237218417031,176,Emergency,2021-01-12,Abnormal,3226,210,0,3,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -3227,2021-05-11,31903.5209190799,252,Urgent,2021-05-12,Abnormal,3227,390,2,18,,,,DISCHARGED -3228,2020-07-15,32396.286501804367,349,Elective,2020-08-11,Normal,3228,498,2,5,,,,DISCHARGED -3229,2020-11-26,3778.593154268119,480,Emergency,2020-12-02,Normal,3229,27,4,27,,,,DISCHARGED -3230,2023-07-03,20754.467414027484,295,Emergency,2023-07-30,Inconclusive,3230,50,3,14,,,,DISCHARGED -3231,2023-04-13,10043.651437862873,300,Elective,2023-04-29,Inconclusive,3231,490,0,3,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -3232,2022-03-25,27280.358469317664,422,Elective,2022-04-10,Abnormal,3232,441,2,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -3233,2021-04-16,27017.947867812283,158,Emergency,2021-05-14,Abnormal,3233,260,4,0,,,,DISCHARGED -3234,2023-06-04,26858.572337353293,276,Emergency,2023-06-25,Normal,3234,260,0,23,,,,DISCHARGED -3235,2020-05-12,1145.877640832507,150,Elective,2020-06-07,Inconclusive,3235,349,3,26,,,,DISCHARGED -3236,2019-11-27,23692.49057682341,367,Emergency,2019-12-23,Abnormal,3236,351,2,16,,,,DISCHARGED -3237,2020-01-24,16780.44610672707,243,Urgent,2020-02-07,Abnormal,3237,7,2,10,,,,DISCHARGED -3238,2022-05-28,43362.9686184271,261,Elective,2022-06-25,Abnormal,3238,319,2,16,,,,DISCHARGED -3239,2020-06-05,16281.956722566789,466,Emergency,2020-06-11,Normal,3239,137,0,22,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3240,2021-09-01,5788.0848081727545,441,Urgent,2021-09-25,Inconclusive,3240,37,0,0,,,,DISCHARGED -3241,2020-08-14,37410.32687199458,344,Urgent,2020-09-13,Inconclusive,3241,110,0,8,,,,DISCHARGED -3242,2021-03-14,35885.29313317176,437,Urgent,2021-04-03,Inconclusive,3242,479,0,13,,,,DISCHARGED -3243,2021-02-07,44840.63064748123,132,Elective,2021-02-19,Abnormal,3243,367,4,14,,,,DISCHARGED -3244,2021-03-17,21860.39386882744,271,Urgent,2021-04-14,Normal,3244,219,1,23,,,,DISCHARGED -3245,2023-04-18,28780.04652388887,429,Urgent,2023-04-22,Abnormal,3245,336,4,28,,,,DISCHARGED -3246,2021-12-31,16558.886768473873,360,Emergency,2022-01-08,Abnormal,3246,222,2,0,,,,DISCHARGED -3246,2022-04-25,24218.861075714183,297,Emergency,2022-05-06,Inconclusive,4428,135,4,1,,,,DISCHARGED -3247,2020-02-24,28045.761477925036,469,Emergency,2020-03-16,Normal,3247,255,3,17,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3249,2020-05-27,35716.00264524215,264,Emergency,2020-05-30,Inconclusive,3249,359,0,17,,,,DISCHARGED -3249,2022-03-30,15872.81414829999,286,Emergency,2022-04-03,Abnormal,9986,408,3,5,,,,DISCHARGED -3250,2020-06-26,10997.706493275358,386,Elective,2020-07-15,Abnormal,3250,328,3,19,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3251,2022-02-13,22619.041333271965,412,Emergency,2022-03-07,Abnormal,3251,449,2,7,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -3251,2019-02-28,40432.98923209701,179,Elective,2019-03-18,Normal,4470,462,0,0,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3252,2021-11-13,34738.4757393712,423,Emergency,2021-11-19,Inconclusive,3252,433,3,14,,,,DISCHARGED -3253,2019-05-12,23249.14331882182,332,Elective,2019-05-14,Inconclusive,3253,450,2,9,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3254,2020-04-01,21484.342749153264,150,Urgent,2020-04-20,Inconclusive,3254,48,0,29,,,,DISCHARGED -3255,2023-05-11,1933.5109491668584,426,Emergency,2023-05-15,Inconclusive,3255,291,1,3,,,,DISCHARGED -3256,2020-11-05,49985.97306779267,483,Elective,2020-11-12,Inconclusive,3256,381,2,9,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -3257,2022-11-12,21746.883196345665,367,Elective,2022-11-18,Normal,3257,323,4,10,,,,DISCHARGED -3258,2019-03-20,36072.20748168289,367,Urgent,2019-04-09,Inconclusive,3258,77,0,4,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3259,2022-09-03,37707.33098213853,413,Urgent,2022-09-09,Inconclusive,3259,104,3,8,,,,DISCHARGED -3260,2022-07-10,44380.9080284068,424,Urgent,2022-07-24,Abnormal,3260,168,3,4,,,,DISCHARGED -3261,2019-05-20,9321.657575635762,432,Emergency,2019-06-18,Normal,3261,216,4,28,,,,DISCHARGED -3262,2021-05-16,21978.42205595812,286,Emergency,2021-05-19,Inconclusive,3262,377,4,10,,,,DISCHARGED -3263,2020-06-29,41468.7173083189,233,Emergency,2020-07-09,Normal,3263,118,3,2,,,,DISCHARGED -3264,2019-03-05,47271.72979486815,293,Elective,2019-04-02,Normal,3264,189,0,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3265,2023-08-28,34564.10549295208,387,Urgent,2023-09-08,Abnormal,3265,254,2,3,,,,DISCHARGED -3266,2021-09-06,38613.98698003616,118,Elective,2021-09-15,Inconclusive,3266,369,4,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3266,2019-01-01,49957.99759953944,292,Emergency,2019-01-29,Inconclusive,4110,265,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -3267,2020-03-25,49511.294019079454,121,Elective,2020-03-31,Abnormal,3267,148,4,0,,,,DISCHARGED -3268,2021-09-26,47982.06903606661,259,Elective,2021-10-10,Inconclusive,3268,163,1,26,,,,DISCHARGED -3269,2023-09-12,18943.14387104386,307,Urgent,2023-09-19,Inconclusive,3269,139,0,5,,,,DISCHARGED -3270,2020-10-12,46362.20083499501,175,Urgent,2020-10-23,Abnormal,3270,346,0,7,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -3271,2019-05-21,12712.308484659714,383,Emergency,2019-06-19,Abnormal,3271,487,0,16,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3272,2022-03-25,49209.09795215244,380,Urgent,2022-04-02,Abnormal,3272,257,0,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -3273,2023-08-31,11349.820789752775,241,Emergency,2023-09-17,Normal,3273,373,0,6,,,,DISCHARGED -3274,2020-07-30,2852.6131636677305,388,Elective,2020-08-04,Inconclusive,3274,268,3,0,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -3275,2022-04-17,44888.79634589333,359,Elective,2022-04-26,Normal,3275,180,4,8,,,,DISCHARGED -3276,2019-08-17,24595.38528026276,371,Urgent,2019-08-24,Abnormal,3276,159,3,10,,,,DISCHARGED -3277,2023-10-14,22153.715664931697,244,Emergency,,Inconclusive,3277,350,1,18,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -3278,2022-03-10,37936.93276154094,288,Emergency,2022-03-11,Normal,3278,399,2,1,,,,DISCHARGED -3279,2021-05-31,36579.24363429243,367,Urgent,2021-06-30,Normal,3279,287,4,22,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -3280,2023-01-16,15313.4778265791,486,Elective,2023-02-05,Normal,3280,287,1,10,,,,DISCHARGED -3280,2022-01-08,2380.100783268822,470,Emergency,2022-02-05,Abnormal,6742,379,3,2,,,,DISCHARGED -3281,2019-01-16,30202.861642866203,257,Elective,2019-02-14,Abnormal,3281,225,2,16,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -3282,2022-05-02,24806.442863916604,376,Urgent,2022-05-20,Inconclusive,3282,10,1,9,,,,DISCHARGED -3283,2020-06-27,27613.975868401776,387,Elective,2020-07-19,Normal,3283,9,2,28,,,,DISCHARGED -3284,2022-12-08,22323.95941982574,416,Emergency,2022-12-10,Normal,3284,270,1,2,,,,DISCHARGED -3284,2019-07-14,20926.057966476288,341,Urgent,2019-08-06,Abnormal,8218,272,3,21,,,,DISCHARGED -3285,2019-04-12,22487.78681810708,337,Elective,2019-05-10,Abnormal,3285,423,2,2,,,,DISCHARGED -3286,2019-03-16,42479.67310893866,220,Elective,2019-04-06,Normal,3286,401,1,20,,,,DISCHARGED -3287,2018-11-22,26035.83638245789,481,Urgent,2018-12-02,Normal,3287,182,3,24,,,,DISCHARGED -3288,2023-05-27,18632.7174024214,321,Emergency,,Normal,3288,456,4,6,,,,OPEN -3289,2021-01-22,35234.444848625804,128,Emergency,2021-02-10,Normal,3289,152,3,1,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3290,2022-04-14,39291.231857185056,189,Urgent,2022-05-02,Inconclusive,3290,487,3,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3291,2018-12-21,47546.91601522359,453,Emergency,2019-01-05,Normal,3291,314,4,6,,,,DISCHARGED -3292,2022-10-14,48871.14301327921,101,Elective,2022-11-11,Normal,3292,333,3,19,,,,DISCHARGED -3295,2019-12-20,33491.07965974133,403,Elective,2020-01-09,Inconclusive,3295,123,4,10,,,,DISCHARGED -3296,2019-04-20,46585.34261721746,275,Emergency,2019-04-27,Abnormal,3296,472,4,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3297,2020-05-30,32681.48042414797,344,Elective,2020-06-04,Abnormal,3297,113,4,5,,,,DISCHARGED -3298,2021-04-22,4337.817550636108,346,Emergency,2021-05-06,Abnormal,3298,277,1,22,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3299,2022-05-21,27076.130766129187,264,Urgent,2022-06-18,Inconclusive,3299,499,2,3,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3300,2023-03-18,18821.827901947134,370,Urgent,2023-04-03,Abnormal,3300,413,1,18,,,,DISCHARGED -3301,2023-09-24,28122.19239722501,197,Emergency,2023-10-06,Abnormal,3301,467,4,27,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3302,2019-07-04,20925.57709484806,298,Urgent,2019-07-24,Abnormal,3302,212,2,20,,,,DISCHARGED -3303,2019-10-25,1227.6039151182374,190,Emergency,2019-11-05,Abnormal,3303,171,2,18,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3304,2021-02-10,31720.515822983893,272,Emergency,2021-02-21,Inconclusive,3304,287,4,13,,,,DISCHARGED -3305,2022-11-26,44452.49446864677,124,Urgent,2022-12-12,Abnormal,3305,434,2,2,,,,DISCHARGED -3306,2022-02-27,30133.778539861065,312,Urgent,2022-03-10,Abnormal,3306,173,2,3,,,,DISCHARGED -3307,2018-11-18,4607.047668176925,445,Emergency,2018-12-09,Inconclusive,3307,112,1,7,,,,DISCHARGED -3308,2019-04-27,28162.53906005136,419,Emergency,2019-05-02,Inconclusive,3308,375,2,17,,,,DISCHARGED -3309,2023-03-20,46240.92065486389,114,Urgent,,Inconclusive,3309,404,4,3,,,,OPEN -3310,2019-02-10,41960.70599802526,109,Emergency,2019-02-21,Inconclusive,3310,482,0,10,,,,DISCHARGED -3311,2019-08-25,4289.620748686794,377,Urgent,2019-09-22,Abnormal,3311,121,0,15,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3312,2020-06-15,30497.66708151659,183,Elective,2020-07-09,Abnormal,3312,31,0,2,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -3313,2022-01-13,33755.70476370381,107,Urgent,2022-01-25,Inconclusive,3313,221,4,6,,,,DISCHARGED -3314,2022-07-04,7834.138644823199,238,Elective,2022-07-30,Abnormal,3314,118,0,1,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3316,2020-06-23,19678.71421028297,149,Urgent,2020-07-11,Inconclusive,3316,38,1,0,,,,DISCHARGED -3317,2020-02-14,26120.29932490252,313,Urgent,2020-03-06,Inconclusive,3317,496,4,25,,,,DISCHARGED -3318,2020-10-28,23939.362734829123,457,Elective,2020-11-05,Inconclusive,3318,267,4,0,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -3319,2020-10-01,8916.915981115784,131,Elective,2020-10-07,Inconclusive,3319,232,4,5,,,,DISCHARGED -3319,2020-06-24,2575.063002420585,376,Emergency,2020-07-09,Inconclusive,9437,430,2,18,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3320,2023-01-11,13483.062064452874,114,Urgent,2023-02-05,Abnormal,3320,17,2,6,,,,DISCHARGED -3321,2022-09-06,19626.485714965373,443,Urgent,2022-09-30,Normal,3321,148,2,23,,,,DISCHARGED -3322,2023-06-22,33908.994881456034,180,Emergency,2023-07-06,Abnormal,3322,396,3,4,,,,DISCHARGED -3323,2021-04-07,14498.121478433712,463,Urgent,2021-05-05,Inconclusive,3323,148,1,20,,,,DISCHARGED -3324,2020-08-10,33009.32817895975,111,Emergency,2020-09-07,Normal,3324,125,4,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -3325,2020-10-14,13229.084373129046,107,Urgent,2020-10-18,Normal,3325,391,4,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3326,2021-02-11,43771.48296945317,379,Urgent,2021-02-17,Normal,3326,301,2,23,,,,DISCHARGED -3327,2022-07-17,26068.122441270298,407,Elective,2022-07-27,Normal,3327,359,4,25,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3328,2021-03-04,32462.985066348632,355,Emergency,2021-03-10,Abnormal,3328,237,4,12,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3329,2021-01-09,17961.348523114542,311,Urgent,2021-01-21,Inconclusive,3329,134,0,0,,,,DISCHARGED -3330,2020-03-07,2249.4609234150203,358,Emergency,2020-04-03,Inconclusive,3330,150,4,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3330,2022-01-22,12229.38466040464,239,Emergency,2022-02-18,Abnormal,9068,235,3,8,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -3331,2019-04-06,10805.149953848457,330,Urgent,2019-04-24,Abnormal,3331,223,2,16,,,,DISCHARGED -3332,2020-12-25,20494.196815928663,145,Urgent,2021-01-05,Inconclusive,3332,202,1,0,,,,DISCHARGED -3333,2020-07-16,37737.13121588702,203,Urgent,2020-07-24,Inconclusive,3333,255,1,0,,,,DISCHARGED -3334,2022-01-18,39381.22252563776,109,Emergency,2022-02-14,Normal,3334,85,0,6,,,,DISCHARGED -3335,2019-06-23,47682.625945160245,116,Elective,2019-07-02,Inconclusive,3335,149,1,3,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -3336,2020-02-02,31911.055694805946,363,Urgent,2020-02-11,Inconclusive,3336,234,1,27,,,,DISCHARGED -3337,2020-07-10,29472.41757198453,272,Urgent,2020-07-11,Normal,3337,344,2,22,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -3338,2020-09-03,5864.301727790382,172,Emergency,2020-09-16,Abnormal,3338,21,2,20,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3339,2022-10-03,10410.225886704982,412,Emergency,2022-10-08,Abnormal,3339,347,3,11,,,,DISCHARGED -3340,2022-10-27,24366.91470782687,331,Urgent,2022-11-08,Inconclusive,3340,284,0,15,,,,DISCHARGED -3341,2019-02-27,49347.616196905896,295,Urgent,2019-03-27,Normal,3341,268,1,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3342,2021-09-15,30127.933209010487,130,Emergency,2021-09-28,Inconclusive,3342,465,3,22,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3343,2023-09-13,30418.75143235032,353,Emergency,2023-09-17,Abnormal,3343,257,0,9,,,,DISCHARGED -3344,2019-03-23,4754.908285145275,121,Elective,2019-04-13,Normal,3344,28,1,13,,,,DISCHARGED -3346,2019-04-20,16965.886405992394,248,Emergency,2019-04-24,Inconclusive,3346,212,1,6,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -3347,2022-06-07,16259.79909830879,356,Urgent,2022-07-06,Normal,3347,462,2,3,,,,DISCHARGED -3348,2020-10-21,30799.23484824942,436,Elective,2020-10-25,Abnormal,3348,435,4,1,,,,DISCHARGED -3349,2021-10-18,13437.253293594791,420,Elective,2021-10-22,Normal,3349,282,0,23,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3350,2021-06-19,34172.76394831471,473,Elective,2021-07-05,Inconclusive,3350,49,1,17,,,,DISCHARGED -3351,2020-05-10,31681.84172558551,294,Elective,2020-05-20,Inconclusive,3351,94,0,15,,,,DISCHARGED -3352,2019-04-20,33151.89825973076,374,Emergency,2019-05-03,Abnormal,3352,462,3,8,,,,DISCHARGED -3353,2022-10-27,20578.953671631123,420,Urgent,2022-10-29,Inconclusive,3353,498,3,4,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3354,2020-11-22,11929.801861130089,252,Emergency,2020-12-04,Inconclusive,3354,406,4,8,,,,DISCHARGED -3355,2020-05-23,5271.6898727734,284,Urgent,2020-06-13,Normal,3355,87,1,24,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3355,2019-02-25,3618.873750814807,459,Emergency,2019-03-01,Abnormal,7613,43,2,29,,,,DISCHARGED -3356,2022-01-13,46601.3223375237,174,Emergency,2022-01-28,Abnormal,3356,460,1,7,,,,DISCHARGED -3357,2021-10-26,45501.135081265245,273,Emergency,2021-11-09,Abnormal,3357,277,0,23,,,,DISCHARGED -3358,2019-03-22,45556.40566105657,159,Emergency,2019-03-30,Inconclusive,3358,170,3,19,,,,DISCHARGED -3358,2021-06-17,20322.99962739144,228,Elective,2021-07-02,Normal,7950,420,0,15,,,,DISCHARGED -3359,2020-09-06,15614.23985479929,308,Emergency,2020-09-12,Normal,3359,188,4,29,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -3360,2021-06-14,44504.92691274109,269,Elective,2021-06-15,Normal,3360,352,3,19,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -3361,2020-07-14,4903.778959452355,488,Urgent,2020-08-01,Inconclusive,3361,183,2,29,,,,DISCHARGED -3362,2022-01-25,11024.277548579958,302,Elective,2022-02-05,Abnormal,3362,2,3,17,,,,DISCHARGED -3363,2019-09-07,25348.498391827416,188,Urgent,2019-09-26,Inconclusive,3363,190,1,3,,,,DISCHARGED -3364,2020-04-03,37499.03246019616,260,Elective,2020-04-11,Inconclusive,3364,117,1,15,,,,DISCHARGED -3365,2023-02-26,3683.327487350728,378,Urgent,,Abnormal,3365,18,3,3,,,,OPEN -3366,2020-06-12,11405.333373376972,468,Emergency,2020-07-09,Abnormal,3366,22,4,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -3368,2023-05-10,6385.646035112982,278,Emergency,,Inconclusive,3368,412,1,2,,,,OPEN -3369,2021-05-01,41165.99414208907,280,Urgent,2021-05-28,Normal,3369,29,1,17,,,,DISCHARGED -3370,2021-01-04,1346.9296207404268,253,Urgent,2021-01-29,Inconclusive,3370,294,2,14,,,,DISCHARGED -3371,2020-04-25,12971.732636648836,300,Elective,2020-05-21,Inconclusive,3371,107,3,7,,,,DISCHARGED -3372,2021-11-02,40362.818512292906,399,Urgent,2021-11-16,Normal,3372,366,1,17,,,,DISCHARGED -3373,2022-04-21,4827.084342925591,371,Urgent,2022-04-23,Inconclusive,3373,280,4,23,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -3374,2022-03-21,26535.500058773512,191,Elective,2022-03-28,Abnormal,3374,127,0,22,,,,DISCHARGED -3375,2021-05-26,2215.2984504560272,169,Emergency,2021-06-12,Abnormal,3375,228,3,2,,,,DISCHARGED -3376,2022-05-24,18219.253441754143,270,Emergency,2022-06-17,Normal,3376,110,2,5,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3377,2020-01-27,17174.92757903986,215,Urgent,2020-02-03,Abnormal,3377,135,1,21,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -3378,2022-02-21,29519.277261243755,343,Elective,2022-03-22,Inconclusive,3378,361,4,25,,,,DISCHARGED -3380,2020-08-24,38418.635192447255,430,Urgent,2020-08-29,Normal,3380,185,3,29,,,,DISCHARGED -3381,2019-07-31,18476.21528771605,205,Emergency,2019-08-22,Inconclusive,3381,143,4,20,,,,DISCHARGED -3382,2022-09-24,17248.00592975247,499,Urgent,2022-10-17,Normal,3382,71,4,28,,,,DISCHARGED -3383,2019-07-17,20851.89997296965,391,Elective,2019-07-25,Normal,3383,128,2,23,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3383,2020-04-10,4936.911423895342,452,Emergency,2020-04-22,Normal,7093,363,3,14,,,,DISCHARGED -3384,2019-11-25,40278.11343001168,205,Elective,2019-12-02,Abnormal,3384,260,1,26,,,,DISCHARGED -3385,2021-01-30,41052.037806294815,300,Urgent,2021-02-22,Inconclusive,3385,2,2,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -3386,2018-12-13,34011.70946146866,331,Elective,2019-01-02,Abnormal,3386,448,1,4,,,,DISCHARGED -3387,2019-05-06,17217.398862575814,134,Urgent,2019-06-04,Inconclusive,3387,387,0,6,,,,DISCHARGED -3388,2021-09-25,10331.947838351234,344,Emergency,2021-09-29,Inconclusive,3388,103,4,21,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -3389,2023-07-15,8019.14606215162,175,Urgent,,Inconclusive,3389,482,0,26,,,,OPEN -3390,2022-03-14,16852.487836405468,149,Urgent,2022-03-17,Abnormal,3390,223,4,14,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -3391,2022-02-24,15064.14030760482,278,Elective,2022-03-09,Normal,3391,319,2,6,,,,DISCHARGED -3392,2023-07-09,16996.192397843213,411,Emergency,2023-07-31,Inconclusive,3392,361,1,12,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -3393,2020-09-19,36409.72082430181,216,Urgent,2020-09-21,Inconclusive,3393,353,1,24,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3394,2021-11-28,33388.11618449382,138,Elective,2021-12-27,Abnormal,3394,490,2,2,,,,DISCHARGED -3395,2021-04-10,45614.48039475993,390,Urgent,2021-05-07,Normal,3395,472,3,25,,,,DISCHARGED -3395,2022-04-16,23141.40317446856,319,Emergency,2022-04-27,Abnormal,7470,9,0,22,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3397,2019-10-08,46948.22518324076,167,Emergency,2019-10-12,Inconclusive,3397,404,0,12,,,,DISCHARGED -3398,2022-11-22,2017.8978177102272,278,Emergency,2022-12-11,Normal,3398,383,1,25,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3399,2022-05-11,4019.06892792972,298,Elective,2022-06-04,Abnormal,3399,301,1,2,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3400,2022-05-31,8840.70046360333,344,Elective,2022-06-21,Abnormal,3400,230,1,28,,,,DISCHARGED -3401,2020-01-17,43882.82254266742,483,Urgent,2020-02-13,Inconclusive,3401,218,2,1,,,,DISCHARGED -3402,2019-03-24,20021.302087784225,432,Elective,2019-04-20,Normal,3402,410,3,27,,,,DISCHARGED -3403,2020-05-15,35072.498577446066,295,Elective,2020-06-03,Abnormal,3403,65,0,22,,,,DISCHARGED -3404,2020-12-15,23197.90607450162,183,Urgent,2021-01-12,Abnormal,3404,424,4,3,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3405,2020-12-20,15482.1718780235,252,Urgent,2020-12-22,Abnormal,3405,111,2,16,,,,DISCHARGED -3406,2019-03-18,1952.487604996448,231,Urgent,2019-03-30,Inconclusive,3406,12,0,5,,,,DISCHARGED -3407,2022-10-11,39019.48505366825,106,Emergency,2022-11-01,Abnormal,3407,392,3,10,,,,DISCHARGED -3408,2020-03-19,46709.076193386536,189,Emergency,2020-04-08,Abnormal,3408,499,2,5,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3409,2022-01-30,44204.36114992489,147,Elective,2022-01-31,Inconclusive,3409,419,0,21,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -3409,2020-09-22,34982.69465838882,263,Urgent,2020-10-17,Normal,7576,85,2,1,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3410,2022-10-30,32854.79718764628,313,Elective,2022-11-07,Inconclusive,3410,233,0,16,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -3411,2021-10-09,2048.205472466396,296,Elective,2021-10-13,Inconclusive,3411,89,0,2,,,,DISCHARGED -3412,2023-10-17,22962.31849695047,101,Elective,2023-10-27,Abnormal,3412,313,3,11,,,,DISCHARGED -3413,2022-11-26,5963.308402943647,348,Emergency,2022-12-26,Normal,3413,53,4,13,,,,DISCHARGED -3414,2021-03-12,25369.69510495335,183,Urgent,2021-03-31,Abnormal,3414,11,3,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3414,2019-01-29,8296.299322392893,308,Urgent,2019-02-04,Normal,9992,208,0,21,,,,DISCHARGED -3415,2019-11-15,2371.278983582703,279,Emergency,2019-11-22,Normal,3415,461,2,28,,,,DISCHARGED -3416,2019-03-14,15863.133289090902,274,Urgent,2019-03-29,Inconclusive,3416,13,3,27,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3416,2018-11-24,11617.56767336844,426,Emergency,2018-11-25,Abnormal,4162,120,4,21,,,,DISCHARGED -3417,2019-05-14,6252.471533099777,239,Emergency,2019-05-25,Normal,3417,417,0,28,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3418,2021-12-29,2507.6013532535844,489,Emergency,2022-01-18,Normal,3418,436,3,4,,,,DISCHARGED -3419,2019-02-28,43455.8076439202,118,Urgent,2019-03-24,Abnormal,3419,376,3,9,,,,DISCHARGED -3420,2022-06-26,17890.770585794602,128,Emergency,2022-06-27,Normal,3420,19,3,9,,,,DISCHARGED -3421,2023-04-09,39676.38444899642,350,Elective,2023-04-30,Abnormal,3421,74,3,20,,,,DISCHARGED -3422,2020-02-25,45324.349638153406,251,Elective,2020-03-11,Normal,3422,399,2,8,,,,DISCHARGED -3423,2022-08-15,38251.78008022902,122,Emergency,2022-09-07,Normal,3423,242,4,29,,,,DISCHARGED -3424,2019-12-08,26962.288220535254,323,Emergency,2019-12-15,Inconclusive,3424,222,4,20,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -3426,2020-01-31,19925.44145566827,432,Elective,2020-03-01,Normal,3426,69,0,12,,,,DISCHARGED -3427,2023-04-04,12532.312544371944,210,Elective,2023-04-05,Normal,3427,311,1,9,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3428,2019-01-11,3411.6073048931976,476,Urgent,2019-01-29,Inconclusive,3428,210,2,5,,,,DISCHARGED -3429,2023-08-20,36237.93656006117,179,Emergency,2023-08-21,Inconclusive,3429,100,0,10,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3430,2023-03-27,20416.742967794256,236,Urgent,2023-04-04,Abnormal,3430,185,0,3,,,,DISCHARGED -3432,2019-05-09,12704.57810572576,325,Emergency,2019-05-28,Abnormal,3432,131,3,25,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3433,2022-10-27,14186.494485330904,140,Emergency,2022-11-20,Inconclusive,3433,110,1,13,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3434,2020-10-29,23041.23875125717,287,Elective,2020-11-17,Normal,3434,380,1,29,,,,DISCHARGED -3435,2020-06-18,12257.282496483933,143,Elective,2020-06-24,Inconclusive,3435,131,2,16,,,,DISCHARGED -3436,2019-11-23,33724.93638261652,290,Emergency,2019-11-25,Abnormal,3436,19,1,19,,,,DISCHARGED -3437,2021-04-13,36207.40850740152,458,Elective,2021-04-27,Normal,3437,393,0,1,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -3438,2020-04-27,1540.8688562790214,408,Emergency,2020-05-21,Normal,3438,23,1,9,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3439,2020-01-06,3278.53845376364,117,Elective,2020-01-19,Inconclusive,3439,226,1,2,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3440,2023-07-04,1892.9675834340032,137,Emergency,2023-07-14,Normal,3440,153,4,6,,,,DISCHARGED -3441,2021-04-01,7051.331643394086,213,Emergency,2021-04-26,Abnormal,3441,292,0,6,,,,DISCHARGED -3442,2022-03-20,42573.01719112629,110,Urgent,2022-04-01,Normal,3442,229,1,0,,,,DISCHARGED -3443,2021-12-12,12656.469603455684,351,Elective,2021-12-19,Inconclusive,3443,468,1,7,,,,DISCHARGED -3444,2023-04-22,40753.34130488418,498,Elective,2023-05-10,Abnormal,3444,309,3,22,,,,DISCHARGED -3445,2023-05-12,38405.2173961076,386,Urgent,2023-06-08,Inconclusive,3445,487,1,0,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3446,2020-05-25,48338.53312087533,435,Elective,2020-06-21,Inconclusive,3446,358,1,7,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3447,2023-04-12,12863.313947483624,191,Urgent,2023-05-12,Abnormal,3447,404,4,13,,,,DISCHARGED -3448,2023-08-04,19322.99752144369,107,Urgent,2023-08-25,Normal,3448,201,0,13,,,,DISCHARGED -3449,2022-01-15,22293.33879360042,121,Urgent,2022-01-17,Abnormal,3449,37,2,1,,,,DISCHARGED -3450,2021-11-12,6340.089525400204,137,Emergency,2021-11-27,Normal,3450,429,0,7,,,,DISCHARGED -3451,2022-09-02,38190.55689690292,245,Urgent,2022-09-17,Abnormal,3451,259,3,18,,,,DISCHARGED -3452,2021-06-02,25682.71965319057,349,Emergency,2021-06-21,Abnormal,3452,187,0,9,,,,DISCHARGED -3453,2022-11-05,12905.961480710326,343,Emergency,2022-11-18,Normal,3453,56,1,6,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3454,2020-08-05,21495.44109921497,457,Elective,2020-08-18,Abnormal,3454,428,3,12,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3455,2019-03-01,6791.321000931511,187,Emergency,2019-03-09,Inconclusive,3455,19,0,21,,,,DISCHARGED -3456,2021-08-18,40407.452604081256,195,Elective,2021-08-23,Abnormal,3456,272,3,20,,,,DISCHARGED -3457,2022-09-10,16994.270191740652,176,Elective,2022-09-25,Inconclusive,3457,118,2,14,,,,DISCHARGED -3458,2023-02-28,45600.41159706999,171,Elective,2023-03-13,Abnormal,3458,70,0,10,,,,DISCHARGED -3459,2020-03-21,44953.29392391745,122,Emergency,2020-04-18,Normal,3459,3,1,25,,,,DISCHARGED -3460,2021-11-21,48000.46141702045,330,Elective,2021-12-05,Normal,3460,220,3,13,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -3461,2019-12-07,17213.31777812114,157,Elective,2019-12-21,Abnormal,3461,13,4,10,,,,DISCHARGED -3462,2019-06-21,48620.84366402592,143,Urgent,2019-06-28,Normal,3462,2,3,1,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3463,2020-08-14,8983.024205208314,158,Elective,2020-09-09,Normal,3463,215,4,1,,,,DISCHARGED -3464,2019-01-05,4312.460671897877,249,Elective,2019-01-25,Normal,3464,228,1,28,,,,DISCHARGED -3465,2022-01-24,44456.83018969525,406,Urgent,2022-02-05,Abnormal,3465,335,2,11,,,,DISCHARGED -3466,2022-01-22,45537.48490740536,268,Emergency,2022-01-29,Inconclusive,3466,185,4,14,,,,DISCHARGED -3467,2019-12-24,28045.685027115527,380,Elective,2020-01-01,Normal,3467,54,2,16,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3468,2022-12-06,48965.44033912504,424,Emergency,2022-12-27,Abnormal,3468,499,3,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3468,2022-09-22,45282.578642005086,345,Elective,2022-10-18,Abnormal,8263,387,1,24,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3469,2023-06-19,16609.248047843543,250,Emergency,2023-07-10,Inconclusive,3469,375,4,15,,,,DISCHARGED -3470,2019-11-09,3466.2389970598965,208,Emergency,2019-11-23,Normal,3470,253,3,26,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3471,2023-07-04,39862.53294477552,140,Elective,2023-07-31,Abnormal,3471,23,0,7,,,,DISCHARGED -3471,2021-11-08,36016.93835115629,271,Emergency,2021-11-15,Abnormal,6471,161,3,23,,,,DISCHARGED -3472,2021-05-02,4318.317110530047,214,Elective,2021-05-08,Normal,3472,157,2,16,,,,DISCHARGED -3473,2022-07-11,18531.628836860244,439,Emergency,2022-07-31,Inconclusive,3473,81,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3474,2022-12-18,33647.69029715338,244,Emergency,2022-12-27,Normal,3474,402,1,11,,,,DISCHARGED -3475,2022-11-28,7421.325596695157,306,Emergency,2022-12-06,Normal,3475,158,3,5,,,,DISCHARGED -3476,2020-07-26,45884.75906894886,451,Elective,2020-08-04,Normal,3476,187,0,17,,,,DISCHARGED -3477,2023-06-05,47369.37054758819,437,Urgent,2023-06-20,Abnormal,3477,59,2,25,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3478,2019-12-06,37405.16096157677,304,Elective,2019-12-25,Abnormal,3478,402,3,4,,,,DISCHARGED -3479,2021-10-17,16461.50097427297,184,Emergency,2021-11-05,Abnormal,3479,304,3,5,,,,DISCHARGED -3480,2023-08-17,2872.402642953097,320,Elective,,Abnormal,3480,318,1,8,,,,OPEN -3481,2020-04-05,3685.2613476564784,137,Urgent,2020-05-04,Abnormal,3481,365,2,14,,,,DISCHARGED -3482,2020-10-08,45207.42448593232,125,Urgent,2020-10-31,Abnormal,3482,210,0,9,,,,DISCHARGED -3483,2019-07-01,8647.898158600005,440,Urgent,2019-07-16,Abnormal,3483,405,1,16,,,,DISCHARGED -3484,2021-09-02,44153.05782471874,144,Urgent,2021-09-19,Inconclusive,3484,151,3,28,,,,DISCHARGED -3485,2023-10-03,21461.827861342743,441,Urgent,2023-10-22,Inconclusive,3485,108,1,25,,,,DISCHARGED -3486,2020-06-26,33792.83444231801,461,Elective,2020-07-17,Abnormal,3486,75,1,18,,,,DISCHARGED -3487,2020-11-15,22146.75564628472,455,Urgent,2020-12-14,Normal,3487,29,4,11,,,,DISCHARGED -3488,2020-08-10,46251.85938662369,308,Elective,2020-08-28,Inconclusive,3488,313,1,8,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3488,2019-02-16,32384.872703688827,207,Urgent,2019-03-10,Abnormal,4823,485,1,14,,,,DISCHARGED -3488,2022-10-02,32383.990986224228,253,Urgent,2022-10-13,Abnormal,9441,116,2,13,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -3489,2022-10-12,38641.88825874116,184,Elective,2022-10-18,Inconclusive,3489,414,1,0,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -3491,2021-02-25,47440.45326018285,194,Elective,2021-03-01,Abnormal,3491,355,0,16,,,,DISCHARGED -3492,2023-02-17,11064.879265311978,288,Emergency,2023-02-26,Normal,3492,191,3,0,,,,DISCHARGED -3493,2019-06-20,15456.260560579503,415,Urgent,2019-06-26,Inconclusive,3493,18,2,22,,,,DISCHARGED -3494,2019-09-25,16987.9481370126,228,Emergency,2019-10-13,Abnormal,3494,431,1,28,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -3495,2021-05-07,1964.9738235696973,447,Elective,2021-05-17,Abnormal,3495,172,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3496,2019-07-21,6208.836738717939,153,Emergency,2019-08-11,Abnormal,3496,227,3,21,,,,DISCHARGED -3497,2021-04-22,8234.952950200266,250,Elective,2021-05-02,Abnormal,3497,349,2,12,,,,DISCHARGED -3498,2019-10-15,30923.227607662287,198,Urgent,2019-10-17,Inconclusive,3498,182,0,29,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -3499,2020-02-14,42963.60781314,288,Emergency,2020-02-19,Normal,3499,112,1,7,,,,DISCHARGED -3500,2023-05-01,47964.40311180116,187,Emergency,2023-05-31,Inconclusive,3500,182,4,29,,,,DISCHARGED -3501,2023-09-25,15366.651157325045,181,Urgent,2023-10-10,Normal,3501,480,4,12,,,,DISCHARGED -3502,2020-08-22,42723.21750785108,337,Emergency,2020-09-12,Abnormal,3502,145,2,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3503,2021-02-08,49465.38272475298,129,Urgent,2021-02-15,Abnormal,3503,318,0,1,,,,DISCHARGED -3504,2019-06-06,40406.55901017414,176,Urgent,2019-06-20,Normal,3504,115,3,12,,,,DISCHARGED -3505,2022-11-08,36124.6820091871,180,Elective,2022-11-29,Inconclusive,3505,112,0,17,,,,DISCHARGED -3506,2022-04-12,5927.019173671457,305,Urgent,2022-05-06,Normal,3506,250,4,2,,,,DISCHARGED -3507,2022-09-27,26198.091414724346,392,Urgent,2022-10-23,Inconclusive,3507,475,2,12,,,,DISCHARGED -3508,2020-05-22,34068.993110813586,481,Elective,2020-06-11,Abnormal,3508,250,1,18,,,,DISCHARGED -3510,2023-07-12,45555.50174333505,139,Elective,2023-07-31,Normal,3510,302,0,12,,,,DISCHARGED -3511,2021-12-11,18236.79555799032,486,Elective,2021-12-22,Inconclusive,3511,458,4,18,,,,DISCHARGED -3512,2022-04-26,33878.94618435066,293,Elective,2022-04-29,Inconclusive,3512,312,3,3,,,,DISCHARGED -3513,2018-11-14,42623.23472613382,470,Emergency,2018-11-27,Inconclusive,3513,117,2,18,,,,DISCHARGED -3514,2020-05-31,25186.273311781075,402,Emergency,2020-06-15,Abnormal,3514,300,1,17,,,,DISCHARGED -3515,2023-09-13,35769.71902637293,236,Urgent,2023-09-17,Inconclusive,3515,160,0,24,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3516,2022-06-05,37697.42533212277,403,Elective,2022-06-11,Abnormal,3516,400,3,5,,,,DISCHARGED -3517,2022-01-31,37643.03307451826,434,Emergency,2022-02-06,Abnormal,3517,197,1,18,,,,DISCHARGED -3518,2022-06-04,29042.530038262743,474,Emergency,2022-06-19,Inconclusive,3518,259,4,24,,,,DISCHARGED -3519,2022-05-04,3128.2539583617645,253,Urgent,2022-05-27,Inconclusive,3519,147,4,3,,,,DISCHARGED -3520,2022-08-25,31375.76984447867,187,Emergency,2022-09-08,Normal,3520,239,3,3,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3521,2022-02-25,9809.568704338291,203,Elective,2022-03-19,Abnormal,3521,46,4,23,,,,DISCHARGED -3521,2020-01-15,45705.0048854744,427,Urgent,2020-01-18,Normal,6314,474,2,6,,,,DISCHARGED -3522,2023-06-09,16671.761552956243,388,Urgent,,Inconclusive,3522,398,3,6,,,,OPEN -3523,2019-01-16,48557.8285341362,300,Elective,2019-02-04,Normal,3523,197,4,25,,,,DISCHARGED -3524,2023-01-11,43105.77056999524,487,Urgent,2023-02-10,Inconclusive,3524,46,0,22,,,,DISCHARGED -3525,2020-03-15,9174.942347838409,192,Urgent,2020-03-21,Inconclusive,3525,77,4,25,,,,DISCHARGED -3526,2020-05-16,49974.299137554735,242,Emergency,2020-05-31,Abnormal,3526,123,2,15,,,,DISCHARGED -3526,2020-04-25,34797.94280096645,163,Urgent,2020-05-18,Normal,5180,74,1,26,,,,DISCHARGED -3526,2019-11-20,3647.307571615069,126,Elective,2019-11-24,Normal,5816,358,1,15,,,,DISCHARGED -3527,2018-11-05,39038.117416557325,457,Emergency,2018-12-01,Inconclusive,3527,136,4,4,,,,DISCHARGED -3528,2022-04-14,41469.76986812502,175,Elective,2022-05-14,Inconclusive,3528,89,1,14,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3529,2019-08-26,24303.14270286408,230,Urgent,2019-09-14,Abnormal,3529,399,4,22,,,,DISCHARGED -3530,2022-12-12,4894.981267722751,248,Emergency,2022-12-31,Abnormal,3530,324,2,3,,,,DISCHARGED -3531,2019-03-03,39766.9734847552,199,Emergency,2019-03-15,Abnormal,3531,499,1,23,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -3532,2023-03-29,46676.762079426415,478,Emergency,2023-03-31,Abnormal,3532,60,0,24,,,,DISCHARGED -3533,2021-01-08,2831.828522572272,444,Elective,2021-01-29,Normal,3533,137,4,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3534,2023-05-23,43521.32098509593,478,Elective,2023-06-14,Inconclusive,3534,49,1,27,,,,DISCHARGED -3535,2019-12-08,43988.41844501854,116,Emergency,2019-12-09,Abnormal,3535,258,2,18,,,,DISCHARGED -3536,2019-08-27,36127.85670703623,469,Elective,2019-09-16,Abnormal,3536,460,2,6,,,,DISCHARGED -3537,2022-06-24,26907.89229657558,404,Emergency,2022-07-01,Abnormal,3537,106,0,11,,,,DISCHARGED -3539,2022-04-10,31724.515745364377,398,Emergency,2022-05-08,Abnormal,3539,112,2,25,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3540,2023-03-24,15248.657109002545,402,Urgent,,Inconclusive,3540,349,2,8,,,,OPEN -3541,2019-05-17,16846.000777644713,117,Emergency,2019-06-01,Normal,3541,253,1,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3542,2019-03-30,18033.26011150181,370,Elective,2019-04-29,Abnormal,3542,117,4,1,,,,DISCHARGED -3543,2019-01-21,22137.160284523925,261,Urgent,2019-01-24,Normal,3543,492,3,15,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -3544,2019-10-17,20617.00381790932,186,Elective,2019-10-22,Inconclusive,3544,197,2,6,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2022-06-07,10059.578575601596,324,Urgent,2022-06-10,Inconclusive,4325,336,2,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2020-01-17,48496.52879693761,495,Elective,2020-02-05,Abnormal,8414,364,3,17,,,,DISCHARGED -3545,2022-05-11,23006.526347620696,448,Emergency,2022-05-29,Normal,3545,50,2,6,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -3546,2022-12-20,48437.439353530426,467,Elective,2023-01-17,Normal,3546,244,1,0,,,,DISCHARGED -3547,2023-05-07,3688.081496148474,412,Emergency,2023-06-02,Normal,3547,402,1,2,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3548,2021-01-03,4737.999900057215,438,Emergency,2021-01-26,Abnormal,3548,425,3,20,,,,DISCHARGED -3549,2023-06-16,18929.74353020977,322,Emergency,,Inconclusive,3549,34,2,29,,,,OPEN -3550,2022-08-30,43981.50118091351,397,Emergency,2022-09-29,Normal,3550,301,2,27,,,,DISCHARGED -3551,2023-01-22,13439.264949183447,188,Elective,2023-02-15,Normal,3551,409,4,29,,,,DISCHARGED -3552,2019-04-09,41807.36790346709,120,Emergency,2019-05-05,Abnormal,3552,498,2,10,,,,DISCHARGED -3553,2020-08-18,14611.617113662098,463,Urgent,2020-08-22,Normal,3553,68,1,21,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3554,2022-12-03,11478.24721975272,431,Urgent,2022-12-05,Normal,3554,348,0,14,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3555,2021-01-27,25030.24456864383,183,Elective,2021-02-04,Inconclusive,3555,319,0,28,,,,DISCHARGED -3556,2022-12-22,46638.90926530671,243,Urgent,2023-01-12,Abnormal,3556,420,0,24,,,,DISCHARGED -3557,2019-09-12,17021.60895848836,400,Urgent,2019-09-30,Abnormal,3557,467,0,24,,,,DISCHARGED -3558,2021-01-12,16472.8733946559,383,Elective,2021-02-06,Abnormal,3558,48,2,2,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -3559,2023-03-25,12467.091334868228,226,Urgent,2023-04-13,Inconclusive,3559,404,2,29,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -3560,2019-07-05,38813.44871418475,142,Emergency,2019-07-16,Abnormal,3560,73,4,23,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -3561,2022-05-31,26238.375909206112,399,Urgent,2022-06-17,Inconclusive,3561,191,2,12,,,,DISCHARGED -3561,2021-05-15,10865.8979402336,117,Elective,2021-06-07,Normal,8820,260,0,3,,,,DISCHARGED -3562,2021-10-16,11702.51920815186,300,Urgent,2021-10-17,Normal,3562,355,3,22,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3563,2021-12-22,49024.22632757895,366,Emergency,2022-01-19,Normal,3563,69,3,21,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3564,2021-07-22,16843.434202147546,214,Elective,2021-07-31,Normal,3564,89,1,7,,,,DISCHARGED -3565,2019-12-07,38672.562432232095,448,Urgent,2020-01-02,Inconclusive,3565,259,1,21,,,,DISCHARGED -3566,2019-06-12,26200.652879000478,327,Elective,2019-06-19,Inconclusive,3566,125,2,3,,,,DISCHARGED -3567,2019-01-28,44654.47525364047,476,Elective,2019-02-26,Inconclusive,3567,230,3,17,,,,DISCHARGED -3568,2021-03-20,41244.88823450371,216,Elective,2021-04-03,Inconclusive,3568,294,0,6,,,,DISCHARGED -3569,2020-06-05,27654.52250853423,393,Urgent,2020-06-29,Abnormal,3569,497,0,10,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3570,2022-01-08,31172.57314163279,206,Elective,2022-01-15,Abnormal,3570,418,0,28,,,,DISCHARGED -3571,2021-02-27,16533.66010441121,395,Elective,2021-03-13,Inconclusive,3571,128,2,26,,,,DISCHARGED -3572,2018-12-06,9754.8346528051,339,Urgent,2018-12-15,Abnormal,3572,279,2,3,,,,DISCHARGED -3573,2021-06-01,31966.842021193883,171,Urgent,2021-06-11,Abnormal,3573,312,4,12,,,,DISCHARGED -3574,2020-05-21,47424.384505529306,106,Emergency,2020-05-25,Abnormal,3574,99,0,8,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3575,2019-07-23,18437.656681041568,177,Emergency,2019-08-14,Abnormal,3575,325,0,8,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3575,2022-08-02,31786.830979384533,289,Emergency,2022-08-06,Abnormal,4981,296,2,22,,,,DISCHARGED -3576,2021-07-07,29029.241237755134,285,Urgent,2021-07-25,Abnormal,3576,181,2,20,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3577,2019-11-25,5810.421999423628,116,Emergency,2019-12-09,Normal,3577,173,4,18,,,,DISCHARGED -3578,2022-05-16,21610.42198655564,204,Elective,2022-06-09,Inconclusive,3578,315,4,2,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3579,2020-12-31,39954.816368857,325,Elective,2021-01-16,Inconclusive,3579,363,1,24,,,,DISCHARGED -3582,2019-03-15,18151.000540565357,277,Elective,2019-03-27,Inconclusive,3582,187,3,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3582,2019-06-26,48433.8872092603,127,Elective,2019-07-19,Inconclusive,5221,56,0,11,,,,DISCHARGED -3582,2020-08-31,20450.730076552587,413,Elective,2020-09-20,Abnormal,5843,30,0,28,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -3582,2019-06-24,45163.33424177905,313,Elective,2019-06-30,Normal,5883,83,4,10,,,,DISCHARGED -3583,2020-06-19,25351.138805376617,143,Elective,2020-07-11,Normal,3583,151,4,19,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -3584,2020-03-21,10943.537229306772,315,Urgent,2020-04-10,Normal,3584,472,1,10,,,,DISCHARGED -3585,2020-04-12,29767.171907101078,435,Urgent,2020-05-03,Normal,3585,35,3,16,,,,DISCHARGED -3586,2023-05-09,20816.500880877276,467,Emergency,2023-05-23,Abnormal,3586,212,1,28,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3587,2019-03-24,42939.09014040129,160,Elective,2019-04-14,Normal,3587,413,3,25,,,,DISCHARGED -3588,2022-06-12,47751.17216037415,381,Urgent,2022-06-18,Inconclusive,3588,407,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3589,2022-04-27,45057.40233207381,382,Emergency,2022-05-11,Inconclusive,3589,363,1,13,,,,DISCHARGED -3590,2020-02-26,31080.992541012845,427,Urgent,2020-03-04,Normal,3590,105,4,15,,,,DISCHARGED -3591,2022-08-20,42322.95596482799,480,Elective,2022-09-08,Abnormal,3591,413,1,23,,,,DISCHARGED -3592,2022-09-15,26464.70766579044,240,Emergency,2022-10-04,Abnormal,3592,341,1,9,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -3593,2020-02-06,26954.72378444534,257,Urgent,2020-02-22,Abnormal,3593,219,0,3,,,,DISCHARGED -3594,2021-05-01,48106.17358851362,240,Urgent,2021-05-04,Abnormal,3594,390,4,9,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -3594,2022-05-13,10905.07365742909,214,Emergency,2022-06-07,Inconclusive,6913,162,4,25,,,,DISCHARGED -3595,2019-01-17,37386.1582373208,232,Emergency,2019-01-27,Normal,3595,438,2,19,,,,DISCHARGED -3596,2023-04-02,4306.629039810507,122,Emergency,,Inconclusive,3596,219,2,28,,,,OPEN -3597,2021-03-23,6397.66260157022,454,Elective,2021-03-28,Abnormal,3597,269,2,11,,,,DISCHARGED -3598,2018-12-06,28675.8283254028,428,Emergency,2018-12-24,Inconclusive,3598,119,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3599,2020-06-17,24502.7322182767,178,Urgent,2020-07-13,Abnormal,3599,393,1,8,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -3600,2020-06-03,13292.984535340844,271,Urgent,2020-06-17,Abnormal,3600,335,4,14,,,,DISCHARGED -3601,2019-12-24,22581.1348260488,428,Emergency,2019-12-26,Inconclusive,3601,399,4,8,,,,DISCHARGED -3602,2020-09-19,21683.89031339856,379,Urgent,2020-10-14,Inconclusive,3602,181,1,6,,,,DISCHARGED -3604,2022-08-27,39385.627287534415,359,Emergency,2022-09-02,Normal,3604,478,4,25,,,,DISCHARGED -3604,2022-04-05,21164.260608267494,209,Urgent,2022-04-29,Normal,8064,105,1,23,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3605,2021-01-02,34170.639978306506,400,Emergency,2021-01-15,Normal,3605,216,0,11,,,,DISCHARGED -3606,2019-08-26,23384.291416228607,425,Emergency,2019-09-02,Abnormal,3606,204,0,27,,,,DISCHARGED -3607,2020-12-15,37237.97587655118,395,Emergency,2021-01-06,Abnormal,3607,69,0,19,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3608,2021-07-08,27334.93648018413,137,Urgent,2021-07-14,Inconclusive,3608,43,1,23,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3609,2022-07-27,36350.83744328773,309,Urgent,2022-08-05,Abnormal,3609,328,1,13,,,,DISCHARGED -3610,2021-06-01,2877.780596408522,209,Elective,2021-06-09,Normal,3610,300,3,21,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -3610,2021-05-01,5196.805678236538,142,Emergency,2021-05-22,Inconclusive,8172,227,4,15,,,,DISCHARGED -3611,2021-10-14,48485.96340678633,281,Urgent,2021-10-24,Inconclusive,3611,183,4,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -3612,2022-12-29,41474.44307763255,223,Emergency,2022-12-31,Abnormal,3612,106,3,18,,,,DISCHARGED -3613,2021-08-19,8468.747008955077,488,Elective,2021-09-12,Abnormal,3613,83,3,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3614,2020-06-04,46585.258245597535,399,Emergency,2020-06-25,Abnormal,3614,337,0,2,,,,DISCHARGED -3615,2021-03-15,44975.82267585032,163,Elective,2021-03-18,Abnormal,3615,249,3,10,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3616,2020-07-18,39978.79724456784,340,Urgent,2020-08-06,Abnormal,3616,362,1,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -3618,2019-12-10,30901.09555661645,346,Urgent,2019-12-26,Normal,3618,440,2,20,,,,DISCHARGED -3619,2022-08-24,4635.669269285174,206,Urgent,2022-09-05,Normal,3619,20,1,19,,,,DISCHARGED -3620,2021-03-23,39882.64681703877,226,Emergency,2021-04-10,Inconclusive,3620,195,3,18,,,,DISCHARGED -3621,2021-08-31,6655.465654622017,142,Elective,2021-09-19,Inconclusive,3621,177,4,7,,,,DISCHARGED -3622,2019-08-04,25370.651820923376,448,Urgent,2019-08-24,Abnormal,3622,416,1,19,,,,DISCHARGED -3623,2022-01-20,7464.786260035436,381,Emergency,2022-02-19,Inconclusive,3623,474,4,7,,,,DISCHARGED -3623,2019-12-25,40676.69588495758,436,Urgent,2020-01-19,Abnormal,7430,6,1,25,,,,DISCHARGED -3624,2021-06-04,45504.47563851878,389,Urgent,2021-06-16,Normal,3624,69,4,2,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3625,2020-03-03,14253.111480418904,132,Elective,2020-03-29,Normal,3625,126,1,9,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3627,2023-09-09,15229.714747678629,452,Elective,,Normal,3627,398,4,12,,,,OPEN -3628,2021-03-09,2696.036119046068,258,Elective,2021-03-14,Inconclusive,3628,465,2,8,,,,DISCHARGED -3629,2020-04-13,26425.002887696883,172,Emergency,2020-05-09,Abnormal,3629,159,0,5,,,,DISCHARGED -3630,2023-02-22,38674.49962150651,213,Urgent,2023-03-23,Abnormal,3630,247,1,14,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -3631,2019-07-28,40064.44455685532,408,Urgent,2019-08-09,Inconclusive,3631,202,2,15,,,,DISCHARGED -3632,2021-04-08,42002.00297038644,120,Elective,2021-04-26,Normal,3632,147,0,4,,,,DISCHARGED -3633,2023-06-10,42964.595890674114,353,Emergency,2023-07-06,Abnormal,3633,471,1,20,,,,DISCHARGED -3634,2019-04-29,9398.58770810248,388,Urgent,2019-05-16,Normal,3634,142,2,12,,,,DISCHARGED -3634,2021-10-04,28643.930677392425,391,Urgent,2021-10-12,Inconclusive,3846,431,2,18,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -3635,2021-05-04,32240.336506516443,134,Urgent,2021-05-20,Inconclusive,3635,198,2,1,,,,DISCHARGED -3636,2020-02-17,5531.909466901662,463,Elective,2020-02-18,Inconclusive,3636,404,3,5,,,,DISCHARGED -3637,2019-07-04,13381.613495107267,153,Urgent,2019-08-03,Normal,3637,425,4,26,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3637,2019-04-28,40812.91890669756,184,Elective,2019-05-08,Inconclusive,9019,153,0,0,,,,DISCHARGED -3638,2020-09-23,4352.404190201662,401,Emergency,2020-10-17,Inconclusive,3638,491,4,14,,,,DISCHARGED -3639,2019-08-11,35150.24595386399,465,Emergency,2019-09-08,Inconclusive,3639,375,4,14,,,,DISCHARGED -3640,2019-10-16,17819.83777541087,155,Elective,2019-11-05,Abnormal,3640,383,4,13,,,,DISCHARGED -3641,2021-08-12,9395.590260263296,304,Urgent,2021-08-30,Inconclusive,3641,141,2,6,,,,DISCHARGED -3642,2023-07-05,46937.57000594674,370,Urgent,2023-07-10,Abnormal,3642,312,4,4,,,,DISCHARGED -3643,2023-09-22,23591.71924017739,252,Urgent,2023-10-20,Normal,3643,164,3,19,,,,DISCHARGED -3644,2021-07-16,29144.393550358716,372,Elective,2021-07-21,Normal,3644,313,1,24,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3645,2019-05-18,41451.66478006305,120,Urgent,2019-05-26,Normal,3645,20,2,25,,,,DISCHARGED -3646,2019-09-25,36373.11894420004,467,Urgent,2019-09-30,Normal,3646,81,0,15,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3647,2018-12-15,9406.323686261296,477,Elective,2019-01-09,Inconclusive,3647,68,1,16,,,,DISCHARGED -3648,2019-07-09,5480.758178570149,317,Emergency,2019-08-01,Inconclusive,3648,130,1,10,,,,DISCHARGED -3649,2021-02-23,22995.757564881515,310,Emergency,2021-03-19,Inconclusive,3649,86,1,14,,,,DISCHARGED -3650,2019-12-27,25089.83557550444,258,Urgent,2019-12-28,Inconclusive,3650,217,4,19,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3651,2019-01-24,43736.34065963515,360,Emergency,2019-02-08,Abnormal,3651,420,4,15,,,,DISCHARGED -3652,2019-08-02,40039.25600004329,168,Emergency,2019-08-10,Normal,3652,471,2,2,,,,DISCHARGED -3653,2019-11-25,6387.663608833473,267,Elective,2019-12-17,Inconclusive,3653,304,4,5,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3654,2019-12-06,41919.70806784564,142,Elective,2020-01-03,Inconclusive,3654,402,4,20,,,,DISCHARGED -3655,2023-02-03,31347.129050444884,444,Elective,,Inconclusive,3655,370,4,22,,,,OPEN -3656,2023-08-15,30012.56367775242,266,Urgent,2023-08-20,Abnormal,3656,344,2,12,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -3657,2019-02-23,49269.73366913681,445,Elective,2019-03-03,Inconclusive,3657,340,2,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3658,2021-04-22,8219.293262399719,385,Urgent,2021-05-16,Normal,3658,383,3,28,,,,DISCHARGED -3659,2022-06-14,18557.6677105462,432,Emergency,2022-06-29,Normal,3659,395,3,20,,,,DISCHARGED -3660,2023-02-17,36902.6337952106,358,Urgent,,Inconclusive,3660,444,3,13,,,,OPEN -3661,2021-10-23,20514.57636390076,419,Elective,2021-11-14,Normal,3661,424,3,1,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3662,2021-04-02,13919.318618726771,156,Emergency,2021-04-26,Abnormal,3662,160,1,1,,,,DISCHARGED -3663,2022-06-02,38603.55496230807,447,Emergency,2022-06-09,Abnormal,3663,177,1,26,,,,DISCHARGED -3664,2019-09-05,16903.942433850985,235,Urgent,2019-09-24,Normal,3664,116,3,14,,,,DISCHARGED -3665,2020-05-26,32987.16245169197,252,Emergency,2020-05-28,Normal,3665,195,3,26,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -3666,2023-01-24,40042.31376239035,249,Elective,2023-01-31,Inconclusive,3666,382,0,17,,,,DISCHARGED -3667,2021-07-09,24344.154000241604,470,Emergency,2021-08-08,Normal,3667,489,1,8,,,,DISCHARGED -3668,2022-08-29,7600.312671515739,499,Emergency,2022-09-04,Normal,3668,326,0,25,,,,DISCHARGED -3669,2019-01-24,29233.17368302868,400,Urgent,2019-02-01,Normal,3669,85,0,2,,,,DISCHARGED -3670,2022-10-05,3585.581082815545,489,Urgent,2022-10-15,Abnormal,3670,288,4,3,,,,DISCHARGED -3671,2019-05-19,32639.793950269468,136,Urgent,2019-06-05,Abnormal,3671,80,2,14,,,,DISCHARGED -3672,2022-03-19,12015.298795465156,103,Emergency,2022-04-14,Inconclusive,3672,151,1,4,,,,DISCHARGED -3673,2021-04-27,47332.68930916563,429,Emergency,2021-05-09,Normal,3673,60,3,29,,,,DISCHARGED -3674,2019-08-22,11264.907628983943,445,Emergency,2019-08-30,Normal,3674,60,3,19,,,,DISCHARGED -3675,2021-03-24,42865.4841964693,368,Emergency,2021-04-02,Normal,3675,353,2,19,,,,DISCHARGED -3675,2022-04-05,27910.712959002896,159,Emergency,2022-04-30,Normal,7913,27,1,4,,,,DISCHARGED -3676,2021-02-28,47684.404072998215,423,Elective,2021-03-20,Abnormal,3676,441,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3677,2019-09-08,2352.4826369607663,427,Emergency,2019-10-01,Normal,3677,42,3,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3678,2022-06-14,3676.900636894232,319,Urgent,2022-06-20,Inconclusive,3678,168,4,24,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -3679,2021-09-14,20284.00396846153,151,Elective,2021-10-04,Normal,3679,422,0,11,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3680,2020-05-08,36298.56025786638,412,Elective,2020-05-09,Inconclusive,3680,85,3,24,,,,DISCHARGED -3681,2023-10-15,36077.19710920713,352,Emergency,,Inconclusive,3681,176,1,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -3682,2021-08-07,13726.94017754931,261,Emergency,2021-08-13,Abnormal,3682,16,2,13,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3683,2019-02-17,19101.841049086677,307,Elective,2019-03-05,Normal,3683,97,4,21,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -3684,2019-09-14,20273.501201656258,278,Urgent,2019-10-14,Normal,3684,453,1,10,,,,DISCHARGED -3685,2022-09-16,29823.99297084404,277,Urgent,2022-10-06,Abnormal,3685,493,4,27,,,,DISCHARGED -3687,2022-04-04,1364.5716811116522,200,Urgent,2022-04-28,Normal,3687,197,0,29,,,,DISCHARGED -3688,2019-09-22,39407.640546151015,218,Elective,2019-10-13,Abnormal,3688,97,3,18,,,,DISCHARGED -3689,2019-12-05,3247.419389761777,118,Emergency,2019-12-16,Abnormal,3689,64,1,5,,,,DISCHARGED -3690,2020-08-28,26722.714872875986,283,Elective,2020-09-11,Inconclusive,3690,329,2,9,,,,DISCHARGED -3692,2022-01-24,10536.350519619164,167,Elective,2022-02-20,Abnormal,3692,340,0,19,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3693,2019-08-31,18249.705388971248,324,Urgent,2019-09-09,Inconclusive,3693,4,0,2,,,,DISCHARGED -3694,2020-08-19,14469.471240696908,174,Emergency,2020-08-29,Normal,3694,1,4,21,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3695,2019-07-27,20720.5895982287,440,Emergency,2019-08-10,Inconclusive,3695,21,0,14,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -3696,2018-12-30,37200.57738765615,328,Elective,2019-01-22,Inconclusive,3696,111,1,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -3697,2023-02-01,2118.381299669269,206,Emergency,,Normal,3697,56,4,21,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -3698,2019-11-14,44520.32784556401,380,Emergency,2019-11-15,Normal,3698,65,0,1,,,,DISCHARGED -3699,2023-01-28,8237.045124834967,338,Elective,2023-02-16,Normal,3699,329,2,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -3700,2020-01-29,43819.674146926016,500,Elective,2020-02-02,Normal,3700,97,1,23,,,,DISCHARGED -3701,2021-09-18,24190.989723260704,457,Elective,2021-09-28,Inconclusive,3701,143,2,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3702,2020-03-08,45620.66848026368,413,Elective,2020-03-24,Abnormal,3702,367,2,16,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3703,2022-04-08,24109.484049974093,326,Elective,2022-04-23,Abnormal,3703,434,4,27,,,,DISCHARGED -3704,2022-04-09,23633.249252123085,406,Urgent,2022-05-06,Abnormal,3704,124,3,17,,,,DISCHARGED -3706,2019-06-05,34186.162772907745,426,Urgent,2019-06-07,Normal,3706,166,4,3,,,,DISCHARGED -3706,2021-10-18,43861.885641574576,273,Urgent,2021-11-07,Normal,7670,85,1,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3707,2019-04-26,13456.890613960884,329,Elective,2019-05-21,Normal,3707,75,1,8,,,,DISCHARGED -3709,2021-10-06,19764.340240436464,457,Elective,2021-10-18,Normal,3709,343,4,9,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -3710,2019-11-27,48388.57212827295,341,Emergency,2019-12-24,Inconclusive,3710,494,3,20,,,,DISCHARGED -3711,2019-10-15,41821.3759585212,436,Emergency,2019-11-06,Inconclusive,3711,423,4,25,,,,DISCHARGED -3712,2019-05-28,37461.06447775906,121,Elective,2019-06-11,Normal,3712,293,1,1,,,,DISCHARGED -3713,2020-03-28,32875.58182712499,194,Emergency,2020-04-02,Inconclusive,3713,443,3,28,,,,DISCHARGED -3714,2019-04-14,9192.346557921228,184,Urgent,2019-05-11,Normal,3714,58,1,10,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -3715,2022-02-10,17485.035584738052,214,Elective,2022-02-18,Normal,3715,137,3,10,,,,DISCHARGED -3716,2021-06-15,7618.214262172099,420,Urgent,2021-06-25,Abnormal,3716,98,3,10,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3717,2023-03-31,20189.610707746247,216,Emergency,,Abnormal,3717,191,4,0,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",OPEN -3718,2018-11-21,42988.61829370994,362,Elective,2018-12-02,Inconclusive,3718,242,4,25,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -3719,2023-07-31,26094.662876983173,174,Elective,2023-08-19,Inconclusive,3719,318,4,13,,,,DISCHARGED -3720,2020-01-25,48620.87137998923,269,Elective,2020-02-18,Normal,3720,48,3,28,,,,DISCHARGED -3721,2020-12-18,12994.39988524533,126,Emergency,2021-01-16,Normal,3721,447,3,29,,,,DISCHARGED -3722,2021-12-15,24360.072780161485,469,Elective,2021-12-27,Inconclusive,3722,31,1,0,,,,DISCHARGED -3723,2023-07-09,7551.620992670825,296,Urgent,2023-07-19,Inconclusive,3723,390,2,20,,,,DISCHARGED -3724,2021-08-08,27947.61014587241,282,Urgent,2021-09-07,Inconclusive,3724,276,4,29,,,,DISCHARGED -3725,2021-04-10,16486.59371419758,223,Elective,2021-04-24,Normal,3725,19,1,22,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -3728,2020-07-31,34066.56979142001,268,Elective,2020-08-21,Inconclusive,3728,153,1,24,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3729,2022-02-12,47986.36698510451,139,Urgent,2022-02-15,Abnormal,3729,382,0,8,,,,DISCHARGED -3730,2021-08-31,39765.85762580165,341,Emergency,2021-09-23,Normal,3730,67,4,23,,,,DISCHARGED -3731,2019-05-26,9849.160982146752,186,Emergency,2019-06-14,Normal,3731,365,1,0,,,,DISCHARGED -3732,2021-07-09,40403.42003986442,173,Elective,2021-08-02,Abnormal,3732,371,0,20,,,,DISCHARGED -3733,2020-12-20,2546.932617228155,381,Elective,2021-01-08,Abnormal,3733,213,4,21,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -3734,2019-06-28,17930.74301947572,351,Urgent,2019-07-13,Abnormal,3734,142,3,21,,,,DISCHARGED -3736,2021-03-17,30598.090202147952,297,Emergency,2021-03-18,Inconclusive,3736,375,0,3,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -3737,2019-10-05,31291.05724793579,293,Urgent,2019-10-15,Abnormal,3737,231,3,0,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -3738,2022-05-11,45032.651270918046,238,Emergency,2022-06-01,Inconclusive,3738,212,2,18,,,,DISCHARGED -3739,2019-11-07,10039.270787156658,408,Urgent,2019-11-16,Abnormal,3739,78,2,9,,,,DISCHARGED -3740,2019-07-22,45641.16862808066,487,Urgent,2019-08-07,Inconclusive,3740,213,2,14,,,,DISCHARGED -3741,2021-06-24,38779.47429220685,135,Elective,2021-07-09,Normal,3741,115,2,19,,,,DISCHARGED -3742,2023-07-25,28609.525757792777,473,Elective,2023-08-06,Normal,3742,91,1,3,,,,DISCHARGED -3743,2022-09-21,28685.286106351337,332,Emergency,2022-10-11,Abnormal,3743,269,2,28,,,,DISCHARGED -3744,2022-01-04,13729.78334595889,164,Emergency,2022-02-03,Abnormal,3744,410,1,19,,,,DISCHARGED -3745,2023-07-21,11029.20457269175,289,Urgent,2023-07-23,Abnormal,3745,380,1,13,,,,DISCHARGED -3746,2023-03-30,19987.389381447418,295,Emergency,2023-04-22,Normal,3746,488,4,4,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -3747,2023-04-11,43076.57638376048,486,Elective,,Normal,3747,167,1,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,OPEN -3748,2021-06-07,11950.514468022331,254,Emergency,2021-07-03,Inconclusive,3748,57,1,14,,,,DISCHARGED -3749,2023-02-16,3648.805225942074,221,Elective,2023-03-13,Normal,3749,283,2,14,,,,DISCHARGED -3750,2021-03-11,19545.43598263267,226,Urgent,2021-03-23,Normal,3750,25,1,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3751,2022-10-25,2883.139293946161,341,Emergency,2022-11-15,Abnormal,3751,368,3,24,,,,DISCHARGED -3752,2020-02-15,43190.82672278742,372,Urgent,2020-03-06,Abnormal,3752,446,2,15,,,,DISCHARGED -3752,2021-02-24,33332.57038511126,174,Emergency,2021-03-18,Abnormal,6670,65,0,15,,,,DISCHARGED -3754,2022-07-04,14451.502055847855,424,Elective,2022-07-20,Normal,3754,408,2,3,,,,DISCHARGED -3755,2020-06-02,30625.696879389976,269,Urgent,2020-06-28,Inconclusive,3755,247,1,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3756,2021-06-08,13270.054338771151,187,Urgent,2021-07-07,Abnormal,3756,253,3,8,,,,DISCHARGED -3757,2022-11-22,4015.9983328764247,110,Emergency,2022-12-13,Normal,3757,386,2,0,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -3758,2022-08-12,46207.52890671006,401,Elective,2022-08-26,Inconclusive,3758,455,3,4,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3759,2021-07-21,20064.97994975416,279,Elective,2021-08-14,Abnormal,3759,43,0,8,,,,DISCHARGED -3760,2019-08-29,36029.194506450105,280,Elective,2019-08-31,Abnormal,3760,96,0,19,,,,DISCHARGED -3761,2021-02-28,17681.28905928407,411,Urgent,2021-03-02,Normal,3761,41,4,4,,,,DISCHARGED -3762,2019-09-09,18521.023687414927,318,Emergency,2019-09-19,Abnormal,3762,499,4,3,,,,DISCHARGED -3763,2021-04-07,32760.415635628426,156,Elective,2021-05-01,Abnormal,3763,226,2,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -3764,2021-12-28,33493.280093722366,316,Urgent,2022-01-22,Inconclusive,3764,261,4,15,,,,DISCHARGED -3765,2020-05-31,26876.23582038916,142,Emergency,2020-06-06,Inconclusive,3765,166,3,1,,,,DISCHARGED -3766,2019-06-05,7359.4980384759965,384,Elective,2019-06-16,Abnormal,3766,435,4,25,,,,DISCHARGED -3767,2018-11-05,27338.71694132319,479,Emergency,2018-11-17,Abnormal,3767,278,3,15,,,,DISCHARGED -3768,2021-03-10,29405.133882222635,316,Emergency,2021-03-23,Abnormal,3768,88,4,17,,,,DISCHARGED -3769,2020-11-11,1443.2385392245096,198,Elective,2020-11-17,Inconclusive,3769,378,4,1,,,,DISCHARGED -3770,2021-10-04,1582.646636467121,149,Urgent,2021-10-29,Inconclusive,3770,177,4,15,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3771,2021-08-15,31110.7441071293,220,Urgent,2021-08-28,Inconclusive,3771,426,1,28,,,,DISCHARGED -3772,2019-07-18,29279.01250687594,399,Elective,2019-07-25,Abnormal,3772,402,1,0,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3774,2021-07-29,30771.525024828767,468,Emergency,2021-08-26,Inconclusive,3774,196,4,15,,,,DISCHARGED -3775,2021-01-22,4391.112816775143,490,Emergency,2021-02-11,Abnormal,3775,306,3,2,,,,DISCHARGED -3776,2021-11-09,12557.45767860984,184,Urgent,2021-11-27,Abnormal,3776,266,2,14,,,,DISCHARGED -3777,2021-09-10,30764.87769385657,301,Urgent,2021-09-23,Inconclusive,3777,267,0,29,,,,DISCHARGED -3778,2022-05-19,37728.5103548652,195,Elective,2022-06-12,Normal,3778,73,1,10,,,,DISCHARGED -3779,2021-09-11,11989.52689952245,332,Elective,2021-10-06,Normal,3779,7,4,9,,,,DISCHARGED -3780,2022-03-26,37037.09203725311,473,Urgent,2022-04-20,Normal,3780,407,0,16,,,,DISCHARGED -3781,2021-01-04,40519.76355665847,439,Elective,2021-01-29,Inconclusive,3781,475,1,3,,,,DISCHARGED -3783,2021-05-11,32335.756396716923,281,Emergency,2021-05-27,Abnormal,3783,296,2,16,,,,DISCHARGED -3783,2021-05-03,48176.45015169483,231,Emergency,2021-05-20,Normal,5603,163,3,3,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -3784,2020-06-12,24271.006037696457,276,Emergency,2020-06-27,Normal,3784,484,4,18,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3785,2019-05-26,45696.46066901234,229,Elective,2019-06-16,Abnormal,3785,84,2,24,,,,DISCHARGED -3786,2022-11-19,17640.46252248001,186,Urgent,2022-12-19,Inconclusive,3786,71,1,0,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3787,2019-03-27,42090.003019604446,123,Emergency,2019-04-03,Abnormal,3787,54,4,13,,,,DISCHARGED -3788,2020-08-31,19157.25147990573,456,Emergency,2020-09-08,Normal,3788,392,0,23,,,,DISCHARGED -3789,2021-09-30,39606.49750413241,410,Emergency,2021-10-29,Normal,3789,46,3,10,,,,DISCHARGED -3790,2020-06-26,17341.405257150178,154,Elective,2020-07-14,Normal,3790,398,1,24,,,,DISCHARGED -3791,2019-02-21,29117.225716495417,458,Elective,2019-03-08,Normal,3791,431,3,27,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -3792,2021-07-26,19434.23320910334,332,Emergency,2021-08-08,Abnormal,3792,237,4,6,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3793,2021-10-06,34445.9279143732,289,Emergency,2021-10-13,Inconclusive,3793,103,2,16,,,,DISCHARGED -3793,2023-07-07,37343.45840925794,299,Urgent,2023-07-19,Inconclusive,7187,209,3,3,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -3794,2021-12-17,34320.124884804536,381,Urgent,2022-01-13,Inconclusive,3794,41,0,9,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -3794,2020-02-16,40461.419915621766,346,Urgent,2020-02-24,Abnormal,7324,315,1,16,,,,DISCHARGED -3795,2019-09-13,36778.05910739757,115,Elective,2019-09-18,Inconclusive,3795,467,0,3,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3796,2019-03-12,24744.46648116006,119,Urgent,2019-03-23,Inconclusive,3796,453,3,18,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3797,2020-01-06,31400.00736467841,280,Elective,2020-01-28,Abnormal,3797,267,2,17,,,,DISCHARGED -3798,2022-02-17,3586.0660086947446,119,Elective,2022-03-03,Inconclusive,3798,385,2,16,,,,DISCHARGED -3799,2018-12-25,23250.103519663804,355,Emergency,2018-12-30,Abnormal,3799,262,0,5,,,,DISCHARGED -3800,2022-01-27,46771.38930461338,337,Elective,2022-02-08,Inconclusive,3800,335,4,27,,,,DISCHARGED -3801,2019-09-23,35881.34631982985,115,Emergency,2019-10-05,Abnormal,3801,386,4,6,,,,DISCHARGED -3802,2021-06-05,12242.10650075162,368,Elective,2021-06-16,Abnormal,3802,364,2,5,,,,DISCHARGED -3803,2019-09-03,30434.517428940737,380,Elective,2019-10-03,Normal,3803,258,0,24,,,,DISCHARGED -3804,2021-02-01,35023.37598373739,393,Emergency,2021-02-08,Normal,3804,282,0,11,,,,DISCHARGED -3805,2019-05-03,32034.29704627976,211,Elective,2019-05-27,Abnormal,3805,113,0,8,,,,DISCHARGED -3806,2020-05-13,2949.166173937724,339,Urgent,2020-05-24,Inconclusive,3806,362,3,17,,,,DISCHARGED -3807,2019-09-14,32510.06595042784,263,Elective,2019-10-10,Normal,3807,39,4,1,,,,DISCHARGED -3808,2019-01-23,41577.16528605794,197,Urgent,2019-02-12,Inconclusive,3808,485,4,24,,,,DISCHARGED -3809,2022-11-27,34196.512641192494,399,Emergency,2022-12-01,Inconclusive,3809,416,3,16,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3810,2020-11-28,44770.31633837437,357,Emergency,2020-12-02,Abnormal,3810,219,1,20,,,,DISCHARGED -3811,2021-06-26,30832.841350529477,145,Elective,2021-07-07,Inconclusive,3811,128,3,0,,,,DISCHARGED -3812,2020-05-30,27847.14467180365,119,Emergency,2020-06-05,Abnormal,3812,7,0,22,,,,DISCHARGED -3813,2022-09-25,42210.12831584641,289,Urgent,2022-10-21,Normal,3813,100,3,8,,,,DISCHARGED -3814,2022-06-04,23911.048795803003,185,Emergency,2022-06-07,Normal,3814,415,0,5,,,,DISCHARGED -3815,2023-01-04,7872.13733520285,207,Elective,,Abnormal,3815,379,2,29,,,,OPEN -3816,2019-10-01,20738.33653120527,192,Emergency,2019-10-12,Inconclusive,3816,175,0,1,,,,DISCHARGED -3818,2022-06-23,18933.83020252073,412,Emergency,2022-07-14,Normal,3818,106,4,5,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3819,2022-09-02,2470.51101845269,390,Emergency,2022-09-11,Inconclusive,3819,100,3,8,,,,DISCHARGED -3820,2023-10-28,42183.6638644879,482,Urgent,,Inconclusive,3820,259,0,2,,,,OPEN -3821,2022-03-01,19428.56091892978,163,Elective,2022-03-08,Inconclusive,3821,477,1,15,,,,DISCHARGED -3822,2023-02-10,26911.52130540193,271,Emergency,2023-03-10,Normal,3822,453,2,24,,,,DISCHARGED -3823,2021-12-11,16286.162383424242,145,Elective,2022-01-06,Normal,3823,365,1,23,,,,DISCHARGED -3824,2020-01-14,23605.84871063761,296,Urgent,2020-01-31,Normal,3824,245,1,14,,,,DISCHARGED -3824,2021-04-08,41423.10765100516,466,Emergency,2021-05-03,Normal,7371,274,1,28,,,,DISCHARGED -3825,2020-09-08,41495.97114396475,358,Emergency,2020-09-11,Inconclusive,3825,31,2,11,,,,DISCHARGED -3826,2021-05-19,47658.04612178131,238,Emergency,2021-06-11,Inconclusive,3826,136,2,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3827,2023-03-10,20510.58310956463,397,Elective,2023-03-30,Abnormal,3827,11,2,7,,,,DISCHARGED -3828,2020-04-16,2656.778684233969,167,Urgent,2020-04-21,Normal,3828,394,2,25,,,,DISCHARGED -3829,2021-12-03,19365.24368621488,367,Emergency,2021-12-21,Inconclusive,3829,301,1,5,,,,DISCHARGED -3830,2019-02-21,41041.84884139222,432,Emergency,2019-02-25,Abnormal,3830,374,4,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -3831,2022-10-16,48642.77474602781,319,Urgent,2022-10-31,Inconclusive,3831,15,4,22,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3832,2023-07-24,45316.81843052264,230,Elective,2023-08-22,Abnormal,3832,128,2,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -3833,2023-07-03,8514.766709092019,455,Emergency,2023-07-28,Abnormal,3833,62,3,26,,,,DISCHARGED -3834,2023-05-25,25048.930069642534,271,Elective,2023-05-28,Inconclusive,3834,108,0,9,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -3835,2020-08-20,13481.72373755531,452,Elective,2020-08-28,Abnormal,3835,374,3,13,,,,DISCHARGED -3836,2020-06-27,12323.67397719975,267,Urgent,2020-07-09,Abnormal,3836,20,3,20,,,,DISCHARGED -3837,2021-07-31,47557.24329848317,455,Elective,2021-08-04,Inconclusive,3837,157,3,23,,,,DISCHARGED -3838,2023-04-30,42343.40934392996,378,Emergency,2023-05-26,Normal,3838,268,4,14,,,,DISCHARGED -3839,2019-09-09,24384.258244676992,332,Elective,2019-09-11,Abnormal,3839,161,0,6,,,,DISCHARGED -3840,2022-03-08,17499.031216129893,230,Urgent,2022-03-22,Abnormal,3840,259,3,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -3841,2023-04-05,18375.03080246838,175,Elective,2023-04-08,Abnormal,3841,411,2,7,,,,DISCHARGED -3842,2022-11-03,33529.966100828,172,Elective,2022-11-20,Abnormal,3842,101,4,9,,,,DISCHARGED -3843,2020-04-26,49614.102577248654,159,Elective,2020-05-23,Abnormal,3843,222,2,18,,,,DISCHARGED -3844,2023-03-04,27226.03442573905,194,Urgent,2023-03-05,Inconclusive,3844,58,2,18,,,,DISCHARGED -3845,2019-10-07,42866.05731102149,414,Emergency,2019-11-02,Abnormal,3845,246,3,1,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -3847,2021-10-14,17788.830863157677,151,Emergency,2021-11-01,Inconclusive,3847,127,2,14,,,,DISCHARGED -3848,2023-10-17,2785.6951543200403,319,Emergency,2023-11-11,Normal,3848,282,0,0,,,,DISCHARGED -3848,2022-08-21,42765.92579730368,190,Emergency,2022-09-06,Inconclusive,8538,324,2,9,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -3848,2019-08-10,9100.369929764409,358,Elective,2019-08-18,Normal,8942,24,3,5,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3849,2023-05-25,8628.143559606928,342,Urgent,2023-06-11,Inconclusive,3849,130,2,21,,,,DISCHARGED -3850,2020-05-24,35979.679725886126,416,Elective,2020-06-10,Abnormal,3850,352,4,12,,,,DISCHARGED -3851,2021-09-05,34936.95850435869,381,Emergency,2021-09-28,Abnormal,3851,195,4,9,,,,DISCHARGED -3852,2022-01-17,19319.40761289952,132,Elective,2022-01-22,Abnormal,3852,280,4,11,,,,DISCHARGED -3853,2018-11-14,29101.685021880672,377,Emergency,2018-11-26,Normal,3853,403,1,23,,,,DISCHARGED -3854,2022-06-04,18057.88879497113,284,Urgent,2022-06-08,Normal,3854,417,4,29,,,,DISCHARGED -3854,2020-05-08,25213.05845341943,313,Elective,2020-05-20,Inconclusive,6636,153,4,5,,,,DISCHARGED -3855,2022-09-14,3296.148245456768,110,Urgent,2022-09-24,Abnormal,3855,381,1,5,,,,DISCHARGED -3856,2023-07-02,26158.336217848813,425,Elective,,Normal,3856,132,4,0,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -3857,2020-12-07,28463.74647710118,342,Emergency,2020-12-08,Normal,3857,226,3,11,,,,DISCHARGED -3858,2022-03-03,40459.06481552834,251,Emergency,2022-03-16,Inconclusive,3858,188,4,22,,,,DISCHARGED -3859,2020-06-23,41009.649545467306,103,Elective,2020-07-15,Abnormal,3859,475,4,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3860,2021-12-24,42734.6695732195,179,Elective,2022-01-04,Inconclusive,3860,476,1,9,,,,DISCHARGED -3861,2023-08-10,46990.22262081697,472,Elective,,Abnormal,3861,264,3,24,,,,OPEN -3862,2019-01-10,33165.530515743245,214,Emergency,2019-01-18,Inconclusive,3862,371,2,13,,,,DISCHARGED -3863,2020-01-22,33115.52334657452,224,Urgent,2020-01-24,Abnormal,3863,485,0,14,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -3864,2021-03-10,29131.68791184076,343,Urgent,2021-03-25,Abnormal,3864,433,3,27,,,,DISCHARGED -3865,2020-10-04,31113.976983774814,480,Elective,2020-10-06,Normal,3865,133,2,22,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3867,2021-07-05,2060.5697049083537,266,Elective,2021-07-09,Abnormal,3867,210,3,23,,,,DISCHARGED -3868,2022-09-16,1953.4352258480728,395,Elective,2022-09-26,Normal,3868,59,2,3,,,,DISCHARGED -3869,2018-12-24,16225.101066585195,247,Urgent,2019-01-13,Normal,3869,427,2,24,,,,DISCHARGED -3870,2020-07-31,47886.1686090532,442,Emergency,2020-08-28,Inconclusive,3870,376,3,29,,,,DISCHARGED -3871,2021-02-25,10719.81835782693,128,Urgent,2021-03-12,Abnormal,3871,394,1,0,,,,DISCHARGED -3872,2021-02-17,5969.409197997437,324,Urgent,2021-02-27,Inconclusive,3872,449,3,7,,,,DISCHARGED -3873,2022-06-14,48521.18885872096,137,Emergency,2022-06-21,Normal,3873,430,3,2,,,,DISCHARGED -3874,2023-07-06,9053.578891464997,283,Emergency,2023-07-17,Inconclusive,3874,363,2,13,,,,DISCHARGED -3875,2020-06-24,23000.698126196985,225,Elective,2020-06-30,Normal,3875,363,0,16,,,,DISCHARGED -3876,2022-02-21,45763.56584901265,417,Urgent,2022-02-27,Inconclusive,3876,456,2,1,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -3877,2021-09-05,3975.289322624032,444,Emergency,2021-10-04,Abnormal,3877,212,4,14,,,,DISCHARGED -3878,2019-09-05,33453.73402484878,244,Emergency,2019-09-15,Inconclusive,3878,215,3,5,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -3879,2023-04-16,36102.38687809192,178,Elective,2023-04-19,Abnormal,3879,225,3,4,,,,DISCHARGED -3880,2021-04-10,16027.801413802095,230,Urgent,2021-04-14,Normal,3880,469,1,13,,,,DISCHARGED -3881,2020-11-02,16862.783661251284,455,Urgent,2020-11-12,Inconclusive,3881,130,2,18,,,,DISCHARGED -3883,2019-09-17,7338.191705441037,409,Urgent,2019-10-07,Abnormal,3883,75,1,8,,,,DISCHARGED -3884,2019-02-01,22297.61619329017,412,Elective,2019-02-24,Normal,3884,475,3,7,,,,DISCHARGED -3885,2021-09-04,41484.95102317372,294,Urgent,2021-09-19,Normal,3885,285,2,28,,,,DISCHARGED -3885,2022-09-16,41574.91651255788,449,Emergency,2022-09-20,Inconclusive,7538,473,2,2,,,,DISCHARGED -3885,2021-07-16,34547.08330500104,291,Urgent,2021-08-09,Abnormal,9377,495,4,17,,,,DISCHARGED -3886,2020-11-07,16822.46724129276,455,Emergency,2020-11-17,Abnormal,3886,276,4,7,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -3887,2020-01-05,31622.310763011203,481,Elective,2020-01-24,Abnormal,3887,155,0,15,,,,DISCHARGED -3888,2023-04-04,5762.325282999796,416,Elective,2023-04-25,Inconclusive,3888,247,4,29,,,,DISCHARGED -3889,2022-12-24,28077.12145305293,188,Urgent,2023-01-13,Inconclusive,3889,217,2,14,,,,DISCHARGED -3890,2021-06-14,25257.30991148984,128,Urgent,2021-06-19,Abnormal,3890,189,4,20,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3891,2019-06-06,47385.322965355095,228,Urgent,2019-06-17,Normal,3891,416,0,14,,,,DISCHARGED -3892,2019-08-20,16320.884790906048,280,Elective,2019-08-29,Inconclusive,3892,468,3,15,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -3893,2022-09-21,45863.75604600143,173,Emergency,2022-10-08,Inconclusive,3893,162,4,24,,,,DISCHARGED -3894,2021-03-16,37749.471513937046,331,Urgent,2021-03-28,Abnormal,3894,179,2,0,,,,DISCHARGED -3895,2019-02-07,11022.559727378686,426,Elective,2019-03-09,Abnormal,3895,33,3,9,,,,DISCHARGED -3896,2022-07-08,12152.146932430454,358,Emergency,2022-07-09,Normal,3896,40,2,18,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -3897,2021-01-16,38950.91725817293,178,Emergency,2021-02-12,Inconclusive,3897,306,3,4,,,,DISCHARGED -3898,2019-08-17,47949.87225993205,283,Emergency,2019-08-28,Normal,3898,430,2,17,,,,DISCHARGED -3898,2021-07-19,48896.33851533526,307,Elective,2021-07-24,Normal,5589,337,4,2,,,,DISCHARGED -3899,2020-07-23,38367.37068285416,296,Elective,2020-08-18,Inconclusive,3899,313,4,3,,,,DISCHARGED -3900,2022-04-05,28856.342554984614,376,Elective,2022-04-13,Inconclusive,3900,74,0,3,,,,DISCHARGED -3901,2021-04-24,46246.54888675951,265,Elective,2021-05-14,Abnormal,3901,440,3,10,,,,DISCHARGED -3902,2021-09-05,19613.175375617677,126,Urgent,2021-09-07,Normal,3902,278,0,8,,,,DISCHARGED -3903,2020-12-19,10498.185708038814,198,Urgent,2021-01-10,Abnormal,3903,175,1,0,,,,DISCHARGED -3905,2021-12-16,49424.27606338589,257,Emergency,2022-01-03,Normal,3905,383,4,27,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3906,2022-07-24,40691.44930979552,301,Emergency,2022-08-03,Abnormal,3906,149,3,24,,,,DISCHARGED -3907,2022-01-11,40662.870750776594,171,Urgent,2022-02-03,Abnormal,3907,272,0,15,,,,DISCHARGED -3908,2022-11-16,24441.31222258786,190,Emergency,2022-11-25,Abnormal,3908,324,0,8,,,,DISCHARGED -3909,2020-07-04,2812.9371336123704,451,Urgent,2020-07-18,Normal,3909,107,1,10,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -3910,2020-09-16,48581.32765762233,298,Elective,2020-09-27,Normal,3910,138,0,5,,,,DISCHARGED -3911,2023-06-17,43012.321931867766,196,Emergency,2023-07-11,Normal,3911,349,2,26,,,,DISCHARGED -3912,2019-08-11,34927.292262715266,400,Emergency,2019-08-26,Normal,3912,270,4,16,,,,DISCHARGED -3913,2021-11-06,25205.90275882803,225,Elective,2021-11-29,Normal,3913,346,0,26,,,,DISCHARGED -3914,2018-11-17,44218.85259201622,360,Emergency,2018-11-26,Normal,3914,418,0,28,,,,DISCHARGED -3915,2021-05-01,37230.96337400267,461,Urgent,2021-05-19,Inconclusive,3915,288,1,11,,,,DISCHARGED -3916,2022-05-11,14604.734731105513,158,Emergency,2022-05-17,Inconclusive,3916,211,2,21,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3917,2023-05-26,20713.6089265693,229,Urgent,2023-06-22,Normal,3917,380,0,7,,,,DISCHARGED -3918,2020-11-29,16471.421879970505,247,Urgent,2020-12-06,Normal,3918,271,4,15,,,,DISCHARGED -3919,2021-03-08,20854.947763964446,188,Emergency,2021-03-12,Abnormal,3919,417,4,4,,,,DISCHARGED -3920,2023-09-11,16607.916771683027,334,Urgent,2023-09-25,Abnormal,3920,65,0,20,,,,DISCHARGED -3920,2020-02-29,37070.95171970333,240,Emergency,2020-03-24,Normal,4575,482,2,0,,,,DISCHARGED -3921,2021-09-11,10987.393642437022,230,Emergency,2021-10-07,Abnormal,3921,423,4,16,,,,DISCHARGED -3922,2023-04-18,13904.256189617916,231,Emergency,2023-04-25,Inconclusive,3922,247,4,23,,,,DISCHARGED -3923,2022-07-09,41692.765692667526,116,Emergency,2022-07-29,Normal,3923,155,2,28,,,,DISCHARGED -3924,2020-03-22,25629.26656235793,470,Urgent,2020-04-02,Normal,3924,46,2,20,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -3925,2019-10-06,42342.61365184021,102,Urgent,2019-10-16,Abnormal,3925,422,0,7,,,,DISCHARGED -3926,2021-02-22,26274.55996553366,146,Urgent,2021-03-07,Normal,3926,453,3,9,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -3927,2019-11-03,35930.4049082831,164,Urgent,2019-12-01,Inconclusive,3927,200,1,17,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3928,2018-11-09,15868.935575970592,371,Elective,2018-11-22,Abnormal,3928,147,3,14,,,,DISCHARGED -3929,2021-05-31,3123.5975787042385,110,Emergency,2021-06-01,Normal,3929,123,3,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -3930,2020-09-07,9458.371255314618,201,Emergency,2020-09-12,Normal,3930,0,4,12,,,,DISCHARGED -3931,2023-04-22,4898.573239908914,454,Elective,,Normal,3931,455,2,26,,,,OPEN -3932,2023-05-09,24864.15380923731,287,Emergency,2023-05-25,Abnormal,3932,246,4,29,,,,DISCHARGED -3933,2021-07-07,8880.922382263609,196,Emergency,2021-07-27,Abnormal,3933,342,1,9,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3934,2022-10-18,7886.421979673938,358,Urgent,2022-10-27,Normal,3934,127,0,8,,,,DISCHARGED -3935,2023-06-14,34064.7398130964,399,Urgent,2023-07-07,Normal,3935,190,1,12,,,,DISCHARGED -3936,2020-09-24,38512.410603371536,296,Urgent,2020-10-02,Inconclusive,3936,66,4,2,,,,DISCHARGED -3937,2022-01-13,24972.559178678657,215,Emergency,2022-02-09,Normal,3937,3,4,21,,,,DISCHARGED -3938,2022-07-01,17322.72371013842,179,Urgent,2022-07-27,Normal,3938,441,4,26,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -3939,2022-04-20,33118.04473716077,133,Urgent,2022-05-09,Inconclusive,3939,408,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3940,2022-10-01,27654.432430874196,103,Elective,2022-10-12,Normal,3940,302,3,2,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3941,2021-11-27,4923.217315082435,473,Urgent,2021-12-09,Inconclusive,3941,293,0,0,,,,DISCHARGED -3942,2019-12-20,25521.45012697777,111,Elective,2019-12-26,Abnormal,3942,142,3,1,,,,DISCHARGED -3942,2022-10-22,40924.39213939114,142,Elective,2022-11-16,Abnormal,9294,190,4,10,,,,DISCHARGED -3943,2022-10-11,38096.41083445257,148,Emergency,2022-10-28,Normal,3943,20,2,13,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -3943,2020-01-05,26108.379155993392,130,Elective,2020-01-11,Normal,6108,226,3,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -3943,2019-03-20,37366.26162436063,434,Urgent,2019-04-05,Normal,8952,312,4,6,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -3944,2019-12-07,18417.029590283502,244,Elective,2019-12-21,Inconclusive,3944,116,4,22,,,,DISCHARGED -3944,2020-05-10,21621.86107192283,105,Urgent,2020-06-03,Normal,4783,436,0,27,,,,DISCHARGED -3945,2019-10-17,23985.737303950205,272,Elective,2019-11-15,Inconclusive,3945,301,1,0,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3946,2022-09-09,45229.44408146091,112,Emergency,2022-09-24,Inconclusive,3946,499,3,25,,,,DISCHARGED -3947,2020-10-12,24672.040279688063,335,Elective,2020-10-21,Inconclusive,3947,141,3,6,,,,DISCHARGED -3948,2023-05-06,9695.250708617095,344,Elective,2023-05-22,Normal,3948,483,3,14,,,,DISCHARGED -3949,2018-11-06,33515.25914114255,420,Emergency,2018-11-17,Normal,3949,459,4,25,,,,DISCHARGED -3950,2021-11-07,9078.333262934184,273,Emergency,2021-11-13,Inconclusive,3950,400,0,10,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3951,2020-08-20,48580.4746802228,224,Emergency,2020-09-07,Inconclusive,3951,38,4,5,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3952,2023-04-23,37778.66596853734,343,Emergency,,Abnormal,3952,392,4,26,,,,OPEN -3953,2021-05-26,7144.127417872438,138,Urgent,2021-06-15,Abnormal,3953,354,2,21,,,,DISCHARGED -3954,2019-08-14,12519.272605837436,488,Emergency,2019-09-05,Inconclusive,3954,251,0,6,,,,DISCHARGED -3955,2022-09-19,33332.135010162885,137,Emergency,2022-10-14,Normal,3955,332,3,6,,,,DISCHARGED -3956,2020-05-06,12644.305637054504,296,Elective,2020-06-05,Inconclusive,3956,206,1,0,,,,DISCHARGED -3957,2023-07-26,44684.55787544052,207,Urgent,2023-08-02,Abnormal,3957,209,3,9,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3958,2022-11-27,35361.25890753226,259,Emergency,2022-12-09,Normal,3958,114,4,20,,,,DISCHARGED -3959,2021-02-04,41672.53599427157,416,Elective,2021-02-15,Inconclusive,3959,224,0,14,,,,DISCHARGED -3960,2021-08-03,1991.4269568056736,357,Urgent,2021-08-25,Normal,3960,133,0,29,,,,DISCHARGED -3961,2020-06-30,17969.189515420894,284,Urgent,2020-07-30,Inconclusive,3961,250,0,29,,,,DISCHARGED -3961,2018-11-14,29891.60304369176,133,Emergency,2018-12-01,Abnormal,7785,218,2,7,,,,DISCHARGED -3962,2020-07-21,5413.134696851237,102,Emergency,2020-08-03,Inconclusive,3962,406,3,23,,,,DISCHARGED -3962,2020-02-21,19911.42557495919,328,Emergency,2020-02-23,Inconclusive,9611,442,2,18,,,,DISCHARGED -3963,2021-01-04,30201.931133778864,333,Urgent,2021-01-14,Abnormal,3963,90,1,2,,,,DISCHARGED -3964,2021-09-09,23928.441096353883,314,Elective,2021-09-25,Inconclusive,3964,353,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -3965,2022-05-10,18051.707230751606,370,Urgent,2022-05-17,Inconclusive,3965,375,2,14,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3966,2020-04-12,32554.534309900697,170,Emergency,2020-04-25,Inconclusive,3966,45,2,3,,,,DISCHARGED -3967,2021-09-15,29105.91528606373,141,Emergency,2021-10-01,Normal,3967,37,4,5,,,,DISCHARGED -3968,2022-10-20,47263.46953850678,111,Emergency,2022-11-10,Inconclusive,3968,141,0,24,,,,DISCHARGED -3969,2021-01-09,7512.029457322245,331,Emergency,2021-01-15,Abnormal,3969,99,4,9,,,,DISCHARGED -3970,2020-09-05,7771.840103114891,135,Emergency,2020-09-06,Abnormal,3970,327,3,17,,,,DISCHARGED -3971,2019-12-16,18140.723328276483,417,Elective,2019-12-26,Abnormal,3971,189,4,15,,,,DISCHARGED -3972,2022-10-04,21694.207782507357,139,Elective,2022-10-12,Abnormal,3972,34,0,17,,,,DISCHARGED -3973,2023-01-01,20753.005717656008,189,Urgent,2023-01-25,Abnormal,3973,146,4,5,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -3974,2023-09-20,41130.34042727387,212,Urgent,,Inconclusive,3974,29,2,18,,,,OPEN -3975,2023-08-18,48860.7183867527,472,Emergency,,Normal,3975,333,1,16,,,,OPEN -3976,2020-11-19,18608.673624256196,488,Elective,2020-12-02,Normal,3976,83,2,17,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3976,2019-05-17,30381.033311219573,300,Elective,2019-05-30,Abnormal,8305,368,1,29,,,,DISCHARGED -3977,2020-01-30,40964.695314443285,316,Elective,2020-02-04,Inconclusive,3977,280,4,12,,,,DISCHARGED -3978,2020-12-17,6556.955215421849,154,Urgent,2021-01-15,Abnormal,3978,423,3,6,,,,DISCHARGED -3979,2020-04-19,7636.3299607928675,443,Emergency,2020-04-23,Normal,3979,343,4,19,,,,DISCHARGED -3980,2021-06-16,14947.12417803082,155,Urgent,2021-06-18,Normal,3980,269,0,11,,,,DISCHARGED -3981,2019-01-19,18042.64116237524,293,Elective,2019-02-08,Abnormal,3981,153,4,1,,,,DISCHARGED -3982,2020-10-04,48299.50046438851,388,Urgent,2020-10-13,Normal,3982,101,1,26,,,,DISCHARGED -3983,2021-03-10,47254.47584945281,310,Elective,2021-03-15,Abnormal,3983,214,2,11,,,,DISCHARGED -3984,2020-03-31,5017.569822536991,351,Urgent,2020-04-16,Abnormal,3984,149,3,11,,,,DISCHARGED -3984,2020-08-21,34963.99295073078,162,Emergency,2020-08-31,Normal,4800,431,4,23,,,,DISCHARGED -3985,2022-06-10,17433.181940432543,467,Elective,2022-06-20,Abnormal,3985,82,4,3,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -3986,2022-05-17,34511.355377776534,176,Elective,2022-05-20,Normal,3986,109,2,3,,,,DISCHARGED -3987,2020-04-04,8200.83480217131,184,Emergency,2020-04-18,Abnormal,3987,434,3,17,,,,DISCHARGED -3988,2021-06-05,19924.38066917568,495,Elective,2021-06-16,Abnormal,3988,386,4,15,,,,DISCHARGED -3989,2021-03-01,49812.58754352534,297,Urgent,2021-03-06,Normal,3989,425,4,13,,,,DISCHARGED -3990,2019-06-16,23444.59945535656,119,Urgent,2019-06-24,Inconclusive,3990,274,1,16,,,,DISCHARGED -3991,2020-04-19,12067.769777771766,271,Elective,2020-05-05,Abnormal,3991,200,1,16,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3992,2020-12-18,44827.12636240335,437,Urgent,2021-01-04,Normal,3992,283,0,2,,,,DISCHARGED -3993,2020-02-17,39754.20605040342,499,Emergency,2020-03-13,Abnormal,3993,467,2,5,,,,DISCHARGED -3994,2020-01-09,14520.267900345236,137,Elective,2020-02-02,Inconclusive,3994,172,3,22,,,,DISCHARGED -3995,2019-02-20,22144.314826164707,354,Elective,2019-02-25,Abnormal,3995,326,4,12,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3996,2022-12-07,21146.308661946216,484,Elective,2022-12-11,Abnormal,3996,205,4,8,,,,DISCHARGED -3998,2021-10-25,32112.73918241049,465,Urgent,2021-11-17,Normal,3998,62,0,20,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3999,2022-10-28,9609.214124199108,296,Emergency,2022-11-16,Abnormal,3999,72,4,8,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4000,2023-01-09,12652.310545058128,147,Elective,,Normal,4000,250,2,7,,,,OPEN -4001,2022-11-28,19411.487289512515,428,Urgent,2022-12-25,Abnormal,4001,123,0,16,,,,DISCHARGED -4002,2022-05-15,33825.35307615227,110,Elective,2022-06-01,Abnormal,4002,374,2,15,,,,DISCHARGED -4003,2023-08-02,35068.646606772454,145,Elective,2023-08-23,Abnormal,4003,120,0,15,,,,DISCHARGED -4004,2021-02-14,21291.259735417338,170,Elective,2021-03-13,Abnormal,4004,274,4,26,,,,DISCHARGED -4005,2020-05-23,49900.08351099672,381,Elective,2020-05-24,Inconclusive,4005,430,0,27,,,,DISCHARGED -4006,2020-12-28,8357.522966165114,382,Emergency,2021-01-10,Abnormal,4006,499,1,18,,,,DISCHARGED -4007,2019-03-15,40074.146366518806,253,Emergency,2019-04-07,Normal,4007,397,3,23,,,,DISCHARGED -4008,2023-09-15,10614.992438402242,253,Urgent,2023-09-28,Abnormal,4008,119,4,15,,,,DISCHARGED -4009,2022-02-05,33360.97569754692,416,Urgent,2022-03-06,Normal,4009,421,3,24,,,,DISCHARGED -4010,2019-05-03,15576.106585887708,316,Elective,2019-05-18,Abnormal,4010,436,4,13,,,,DISCHARGED -4012,2020-02-29,41337.62843125778,244,Elective,2020-03-03,Normal,4012,316,3,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4013,2021-07-13,20246.20232371428,335,Emergency,2021-07-18,Abnormal,4013,163,1,13,,,,DISCHARGED -4014,2021-06-14,36197.38262596049,199,Urgent,2021-07-04,Normal,4014,423,3,13,,,,DISCHARGED -4015,2020-03-31,46376.842085179895,135,Elective,2020-04-23,Abnormal,4015,464,0,13,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4016,2019-03-27,44143.93245166343,462,Elective,2019-04-25,Abnormal,4016,285,3,11,,,,DISCHARGED -4017,2020-02-11,29842.205512743705,198,Elective,2020-02-12,Abnormal,4017,264,4,5,,,,DISCHARGED -4018,2020-12-12,48566.61033860887,351,Elective,2021-01-07,Normal,4018,319,2,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4019,2021-11-05,47286.30961643738,242,Emergency,2021-12-04,Abnormal,4019,160,3,12,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -4020,2019-03-31,10918.82339082959,252,Urgent,2019-04-07,Normal,4020,375,3,15,,,,DISCHARGED -4021,2021-10-08,38278.33553192345,102,Elective,2021-10-21,Normal,4021,307,3,8,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -4022,2021-05-24,30986.08126798341,125,Elective,2021-05-29,Abnormal,4022,88,4,1,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4023,2019-02-23,16279.178560670272,446,Urgent,2019-02-24,Normal,4023,141,3,21,,,,DISCHARGED -4024,2019-07-12,12262.22205058744,363,Emergency,2019-07-20,Normal,4024,202,4,26,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4025,2022-05-24,31059.223068350944,158,Elective,2022-06-01,Inconclusive,4025,308,4,28,,,,DISCHARGED -4026,2020-06-28,37309.69758057914,494,Elective,2020-07-08,Abnormal,4026,226,2,2,,,,DISCHARGED -4027,2020-11-22,28915.93576194849,230,Emergency,2020-11-26,Abnormal,4027,488,0,9,,,,DISCHARGED -4028,2019-10-15,8904.32972556465,436,Emergency,2019-11-02,Normal,4028,442,4,19,,,,DISCHARGED -4029,2019-11-02,40430.05128268872,227,Elective,2019-11-05,Normal,4029,333,1,1,,,,DISCHARGED -4030,2022-06-25,39810.83693746627,200,Urgent,2022-07-16,Inconclusive,4030,221,3,26,,,,DISCHARGED -4031,2021-02-05,14995.154060260846,151,Urgent,2021-02-21,Normal,4031,40,1,23,,,,DISCHARGED -4032,2020-06-27,32380.07272129643,228,Urgent,2020-07-12,Normal,4032,195,3,9,,,,DISCHARGED -4033,2023-06-23,13576.802988935126,450,Elective,2023-06-28,Inconclusive,4033,67,2,7,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -4034,2021-06-19,10029.231901138082,340,Emergency,2021-07-13,Abnormal,4034,475,4,16,,,,DISCHARGED -4035,2021-08-04,47621.64433017772,213,Emergency,2021-08-18,Normal,4035,263,0,25,,,,DISCHARGED -4036,2021-01-06,2300.5260238295764,115,Emergency,2021-01-21,Inconclusive,4036,1,4,21,,,,DISCHARGED -4037,2019-12-25,46470.42030442321,386,Urgent,2019-12-26,Abnormal,4037,360,3,0,,,,DISCHARGED -4038,2020-03-05,16686.80059995276,379,Elective,2020-03-06,Inconclusive,4038,124,0,5,,,,DISCHARGED -4039,2019-05-24,4205.945833565284,417,Emergency,2019-06-13,Normal,4039,109,4,6,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -4040,2020-03-11,47665.212945095096,119,Elective,2020-04-02,Inconclusive,4040,85,0,14,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4041,2021-11-21,20385.93961071164,228,Elective,2021-12-19,Normal,4041,424,3,17,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4042,2023-10-09,19397.09973625408,175,Elective,,Normal,4042,119,2,8,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -4043,2023-08-05,8002.138123438562,285,Emergency,2023-08-25,Normal,4043,126,2,7,,,,DISCHARGED -4043,2023-10-25,28540.132776710318,156,Emergency,2023-11-23,Normal,9248,254,4,24,,,,DISCHARGED -4044,2019-03-11,23316.601149183854,147,Elective,2019-03-19,Abnormal,4044,182,1,9,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4045,2023-07-23,14719.36836320746,309,Elective,2023-08-10,Abnormal,4045,15,3,28,,,,DISCHARGED -4046,2021-06-08,17739.127786418325,190,Urgent,2021-07-04,Normal,4046,476,4,3,,,,DISCHARGED -4047,2020-05-07,9077.402085137284,478,Urgent,2020-05-08,Normal,4047,61,4,19,,,,DISCHARGED -4047,2021-06-24,20712.705756785224,408,Elective,2021-06-29,Abnormal,4288,368,2,27,,,,DISCHARGED -4047,2019-06-14,23365.268348783364,247,Elective,2019-07-12,Abnormal,5222,431,0,7,,,,DISCHARGED -4048,2021-03-19,37566.39943995905,182,Elective,2021-04-10,Inconclusive,4048,157,3,0,,,,DISCHARGED -4049,2022-03-01,17200.96966789083,476,Emergency,2022-03-11,Abnormal,4049,267,0,7,,,,DISCHARGED -4050,2021-08-31,11638.74678141634,255,Elective,2021-09-30,Inconclusive,4050,34,3,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -4051,2021-03-11,6479.735809319888,437,Urgent,2021-03-23,Inconclusive,4051,266,1,11,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4052,2019-12-27,27862.38920578344,383,Elective,2019-12-28,Normal,4052,63,2,22,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4053,2021-05-01,24378.80672034411,457,Urgent,2021-05-21,Abnormal,4053,493,1,24,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -4054,2023-08-07,49558.22013617202,428,Emergency,,Inconclusive,4054,49,4,14,,,,OPEN -4055,2019-04-18,12557.286967519134,280,Elective,2019-04-30,Normal,4055,468,2,12,,,,DISCHARGED -4056,2019-05-02,33441.48765104907,137,Urgent,2019-05-31,Normal,4056,254,4,15,,,,DISCHARGED -4057,2018-12-18,39737.89778415201,104,Urgent,2019-01-03,Abnormal,4057,148,1,25,,,,DISCHARGED -4058,2023-04-24,14228.5820984642,119,Elective,2023-04-29,Normal,4058,324,3,22,,,,DISCHARGED -4059,2020-05-11,18139.456499238557,339,Emergency,2020-05-29,Abnormal,4059,303,4,17,,,,DISCHARGED -4060,2021-12-21,24983.96382578792,292,Emergency,2022-01-11,Abnormal,4060,275,0,0,,,,DISCHARGED -4060,2019-11-06,30701.586578725437,333,Emergency,2019-11-20,Abnormal,4456,356,3,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4061,2020-03-01,33433.44272903414,240,Elective,2020-03-17,Inconclusive,4061,450,3,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4063,2022-07-26,42488.15302488745,170,Urgent,2022-08-08,Normal,4063,171,1,22,,,,DISCHARGED -4064,2019-07-17,19133.17951146756,116,Emergency,2019-07-21,Normal,4064,416,1,4,,,,DISCHARGED -4065,2020-08-26,48443.03345050882,147,Urgent,2020-08-29,Normal,4065,200,2,19,,,,DISCHARGED -4066,2019-09-21,36154.46007041329,124,Emergency,2019-09-28,Inconclusive,4066,444,2,20,,,,DISCHARGED -4067,2021-04-16,36723.890483774754,368,Elective,2021-05-16,Normal,4067,392,0,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4068,2022-06-08,32863.89504872498,354,Elective,2022-06-29,Abnormal,4068,323,3,25,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -4069,2023-09-11,28695.033474055363,459,Emergency,,Normal,4069,34,0,5,,,,OPEN -4070,2022-05-12,15146.13753998245,466,Emergency,2022-05-24,Inconclusive,4070,464,0,11,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -4071,2022-05-17,45894.05972194325,106,Urgent,2022-06-01,Normal,4071,481,1,9,,,,DISCHARGED -4072,2018-11-22,23456.59186796261,442,Elective,2018-12-04,Inconclusive,4072,215,0,21,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4073,2020-05-07,44371.59879829837,468,Emergency,2020-06-02,Inconclusive,4073,479,0,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4074,2020-07-18,22463.355656768304,327,Urgent,2020-08-09,Inconclusive,4074,64,4,1,,,,DISCHARGED -4075,2020-03-19,10962.949478521576,435,Urgent,2020-03-27,Inconclusive,4075,7,2,18,,,,DISCHARGED -4076,2019-12-11,39580.196471736,144,Emergency,2019-12-24,Inconclusive,4076,300,2,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4077,2022-12-23,7007.829557357024,454,Elective,2023-01-01,Normal,4077,342,3,5,,,,DISCHARGED -4078,2023-02-16,9855.46439707228,196,Urgent,2023-02-27,Normal,4078,430,2,27,,,,DISCHARGED -4079,2019-09-11,21906.41697547982,134,Emergency,2019-09-16,Abnormal,4079,423,3,27,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4080,2019-05-15,20062.542398273865,152,Urgent,2019-05-18,Abnormal,4080,331,4,26,,,,DISCHARGED -4081,2023-04-12,10827.92831263798,404,Emergency,,Normal,4081,437,2,12,,,,OPEN -4082,2020-10-15,42304.02618149485,273,Emergency,2020-10-16,Inconclusive,4082,75,4,8,,,,DISCHARGED -4083,2019-06-27,12747.70699129026,239,Elective,2019-07-04,Abnormal,4083,173,2,11,,,,DISCHARGED -4084,2021-07-13,6426.727048325362,137,Urgent,2021-07-31,Normal,4084,46,2,17,,,,DISCHARGED -4085,2023-04-18,34388.5865262107,295,Emergency,,Normal,4085,14,4,7,,,,OPEN -4086,2020-04-13,18527.51955670068,487,Urgent,2020-04-14,Abnormal,4086,360,0,24,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4087,2019-12-25,29415.57396556698,298,Elective,2020-01-05,Normal,4087,146,0,17,,,,DISCHARGED -4088,2022-06-05,22825.3529388502,486,Urgent,2022-06-19,Normal,4088,25,0,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4089,2020-11-01,37128.811796391245,334,Elective,2020-11-17,Normal,4089,307,0,22,,,,DISCHARGED -4091,2022-02-08,26910.252701682504,380,Emergency,2022-02-22,Abnormal,4091,92,2,24,,,,DISCHARGED -4092,2019-12-28,34031.516229777975,123,Urgent,2020-01-06,Inconclusive,4092,405,1,21,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4093,2020-06-11,49637.53010510683,359,Elective,2020-06-13,Inconclusive,4093,231,4,1,,,,DISCHARGED -4094,2020-08-10,38145.1571943148,193,Urgent,2020-08-26,Abnormal,4094,20,1,7,,,,DISCHARGED -4095,2019-01-27,37630.01096501882,348,Emergency,2019-02-13,Abnormal,4095,306,1,9,,,,DISCHARGED -4096,2019-12-15,15250.360627030066,347,Elective,2020-01-03,Inconclusive,4096,37,3,8,,,,DISCHARGED -4096,2020-05-06,18994.00515974204,454,Urgent,2020-05-24,Normal,5015,275,0,27,,,,DISCHARGED -4096,2019-01-16,40822.80022225712,168,Elective,2019-01-20,Normal,7224,156,2,23,,,,DISCHARGED -4096,2022-10-08,11752.769050731538,381,Emergency,2022-11-04,Normal,7642,178,0,17,,,,DISCHARGED -4096,2019-11-06,36453.74324006667,140,Elective,2019-11-23,Normal,9174,131,0,7,,,,DISCHARGED -4096,2021-10-23,36394.58271488938,369,Urgent,2021-11-06,Abnormal,9421,310,1,18,,,,DISCHARGED -4097,2021-07-28,39041.34527018336,181,Elective,2021-08-05,Normal,4097,454,3,2,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4098,2021-11-28,2838.7381404898906,194,Emergency,2021-12-24,Inconclusive,4098,347,0,8,,,,DISCHARGED -4100,2019-07-21,11230.782947959842,240,Urgent,2019-08-20,Abnormal,4100,27,4,12,,,,DISCHARGED -4101,2022-10-06,28880.89852983083,224,Urgent,2022-10-19,Inconclusive,4101,259,4,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -4103,2020-07-23,13018.565183607856,332,Elective,2020-07-29,Normal,4103,405,0,24,,,,DISCHARGED -4104,2019-07-01,39601.683662314295,291,Urgent,2019-07-20,Normal,4104,75,1,19,,,,DISCHARGED -4105,2019-04-12,31913.265604153305,353,Urgent,2019-05-03,Abnormal,4105,428,1,11,,,,DISCHARGED -4106,2020-11-07,25200.47533747384,395,Emergency,2020-11-26,Inconclusive,4106,66,2,29,,,,DISCHARGED -4106,2021-02-11,42610.13407567181,128,Emergency,2021-02-27,Inconclusive,6640,341,3,22,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -4107,2023-09-07,46028.22671121138,153,Elective,2023-09-21,Inconclusive,4107,491,1,12,,,,DISCHARGED -4108,2021-05-29,3852.7388595096168,490,Urgent,2021-06-14,Abnormal,4108,193,2,7,,,,DISCHARGED -4109,2021-09-03,28102.63109552809,146,Urgent,2021-09-21,Abnormal,4109,471,4,14,,,,DISCHARGED -4111,2021-04-10,17019.112718489836,475,Emergency,2021-05-08,Inconclusive,4111,161,4,28,,,,DISCHARGED -4112,2023-07-19,10240.036551625411,288,Emergency,2023-08-04,Inconclusive,4112,346,4,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4113,2019-05-22,47374.6213192287,347,Elective,2019-06-09,Inconclusive,4113,438,0,20,,,,DISCHARGED -4114,2021-09-25,20829.347631650067,426,Elective,2021-10-01,Abnormal,4114,360,3,12,,,,DISCHARGED -4115,2020-02-23,17600.75197620571,194,Emergency,2020-03-07,Abnormal,4115,256,2,16,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -4116,2022-11-09,33887.57196309414,173,Elective,2022-11-11,Inconclusive,4116,71,3,14,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4117,2020-11-09,45298.7887266391,163,Elective,2020-11-11,Normal,4117,86,0,24,,,,DISCHARGED -4118,2020-01-18,22877.89039151832,331,Elective,2020-02-10,Abnormal,4118,421,2,21,,,,DISCHARGED -4119,2019-11-30,49541.26218720334,320,Emergency,2019-12-19,Normal,4119,261,2,18,,,,DISCHARGED -4120,2021-09-04,2606.946706386134,487,Emergency,2021-09-18,Normal,4120,213,1,2,,,,DISCHARGED -4121,2020-04-30,37474.1198542464,196,Urgent,2020-05-09,Normal,4121,152,3,13,,,,DISCHARGED -4122,2022-09-10,33819.5964827501,103,Emergency,2022-09-20,Normal,4122,209,3,29,,,,DISCHARGED -4123,2020-03-24,6020.961656975189,196,Urgent,2020-04-16,Abnormal,4123,400,1,9,,,,DISCHARGED -4124,2019-12-05,27975.521783425225,473,Emergency,2019-12-10,Normal,4124,60,4,16,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4125,2021-04-25,27417.46363334177,500,Emergency,2021-05-11,Normal,4125,267,0,28,,,,DISCHARGED -4126,2022-02-09,28291.41257908482,356,Urgent,2022-02-23,Abnormal,4126,261,3,7,,,,DISCHARGED -4127,2019-07-25,10726.848194099884,173,Elective,2019-08-02,Normal,4127,217,1,17,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -4128,2023-04-05,9047.33170807136,157,Elective,2023-04-22,Inconclusive,4128,282,2,11,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4129,2020-11-29,7773.859400105024,229,Urgent,2020-12-04,Normal,4129,135,1,16,,,,DISCHARGED -4130,2023-05-17,11423.648805123405,451,Emergency,2023-06-03,Inconclusive,4130,466,4,22,,,,DISCHARGED -4131,2020-12-18,19715.406694945024,311,Emergency,2021-01-15,Normal,4131,379,0,29,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -4132,2020-04-14,42817.98659283683,495,Emergency,2020-04-29,Inconclusive,4132,361,4,10,,,,DISCHARGED -4133,2023-05-30,2709.9609103645807,484,Urgent,,Normal,4133,448,2,8,,,,OPEN -4134,2023-07-03,25694.665941571697,479,Elective,2023-07-06,Abnormal,4134,440,2,21,,,,DISCHARGED -4135,2020-08-01,3409.95773502086,481,Elective,2020-08-02,Inconclusive,4135,92,2,23,,,,DISCHARGED -4136,2022-05-11,34498.23081364619,490,Emergency,2022-06-04,Abnormal,4136,108,2,23,,,,DISCHARGED -4137,2019-05-06,20840.734472914643,322,Emergency,2019-05-26,Inconclusive,4137,240,1,24,,,,DISCHARGED -4138,2023-08-09,11054.174225788036,192,Elective,2023-09-07,Normal,4138,354,2,22,,,,DISCHARGED -4139,2020-06-22,20459.422587502395,434,Emergency,2020-07-11,Normal,4139,423,2,24,,,,DISCHARGED -4140,2021-05-22,42666.33676754862,382,Urgent,2021-06-18,Normal,4140,141,1,14,,,,DISCHARGED -4140,2020-03-24,13891.21952687642,413,Urgent,2020-03-30,Abnormal,8178,290,2,8,,,,DISCHARGED -4141,2020-04-23,12688.552560151287,347,Urgent,2020-05-07,Abnormal,4141,431,4,11,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -4142,2020-02-24,5467.289870399782,307,Urgent,2020-03-19,Abnormal,4142,236,4,10,,,,DISCHARGED -4143,2020-01-17,9696.363757831856,340,Urgent,2020-01-26,Abnormal,4143,339,3,16,,,,DISCHARGED -4144,2020-11-06,6927.757695783708,144,Urgent,2020-11-11,Abnormal,4144,311,4,5,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4145,2020-02-07,24507.184570606343,207,Emergency,2020-02-23,Normal,4145,176,0,27,,,,DISCHARGED -4146,2019-11-27,11110.92373649657,269,Emergency,2019-12-24,Normal,4146,140,0,7,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4147,2023-10-12,16014.08438886543,335,Urgent,,Abnormal,4147,188,0,9,,,,OPEN -4148,2023-09-08,19854.614302207403,403,Urgent,,Normal,4148,485,1,24,,,,OPEN -4149,2021-04-19,32513.21250441573,227,Emergency,2021-05-08,Inconclusive,4149,48,4,14,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4150,2023-02-15,12412.328263418,218,Elective,,Normal,4150,301,0,3,,,,OPEN -4152,2023-03-22,13284.131104189444,495,Urgent,2023-04-03,Abnormal,4152,368,3,28,,,,DISCHARGED -4153,2022-09-29,26326.22675426569,292,Elective,2022-10-12,Normal,4153,189,1,17,,,,DISCHARGED -4154,2021-02-13,38815.74753016842,335,Urgent,2021-02-19,Abnormal,4154,135,3,10,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4155,2022-11-11,13435.46733692268,164,Elective,2022-11-30,Abnormal,4155,42,4,8,,,,DISCHARGED -4156,2023-01-05,5408.813173132597,211,Emergency,2023-01-15,Normal,4156,403,2,8,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -4157,2021-08-30,24248.120835209123,183,Emergency,2021-09-13,Normal,4157,379,3,27,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -4158,2019-02-15,10741.948269625194,111,Elective,2019-03-10,Normal,4158,352,2,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4159,2019-09-06,48267.54113058011,159,Elective,2019-09-16,Abnormal,4159,89,1,2,,,,DISCHARGED -4160,2023-08-14,11408.92504805721,462,Elective,2023-08-15,Normal,4160,294,3,20,,,,DISCHARGED -4161,2020-05-13,8518.438727599812,125,Urgent,2020-05-23,Inconclusive,4161,340,3,17,,,,DISCHARGED -4163,2022-11-02,25341.57320306952,422,Elective,2022-11-26,Normal,4163,244,1,13,,,,DISCHARGED -4164,2023-06-10,8033.232106130741,478,Emergency,2023-06-12,Inconclusive,4164,432,1,2,,,,DISCHARGED -4165,2023-04-09,17082.08452190309,433,Elective,2023-05-09,Inconclusive,4165,191,0,16,,,,DISCHARGED -4166,2023-07-23,13893.03688162979,209,Emergency,2023-07-25,Inconclusive,4166,317,4,3,,,,DISCHARGED -4167,2021-01-20,41435.46186095396,338,Emergency,2021-02-16,Normal,4167,105,3,20,,,,DISCHARGED -4168,2020-03-11,1889.902251341207,201,Elective,2020-03-27,Inconclusive,4168,362,3,27,,,,DISCHARGED -4169,2020-11-11,16503.40778622603,481,Elective,2020-11-26,Abnormal,4169,309,1,17,,,,DISCHARGED -4170,2020-04-24,11934.967575832885,485,Emergency,2020-05-23,Abnormal,4170,381,1,14,,,,DISCHARGED -4170,2019-11-13,8641.322454204947,208,Elective,2019-11-25,Normal,6547,232,4,18,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -4171,2019-02-17,19736.44593693479,453,Urgent,2019-03-07,Abnormal,4171,264,1,27,,,,DISCHARGED -4172,2023-04-15,6043.624369368916,353,Emergency,,Normal,4172,343,2,21,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",OPEN -4173,2023-06-16,39194.574296567545,230,Emergency,2023-07-09,Inconclusive,4173,36,2,5,,,,DISCHARGED -4174,2020-09-26,7774.660716325249,443,Elective,2020-10-10,Abnormal,4174,304,2,14,,,,DISCHARGED -4175,2021-07-28,43891.04796805266,327,Elective,2021-08-05,Normal,4175,40,2,6,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4176,2020-11-25,38394.49310078789,173,Emergency,2020-12-04,Abnormal,4176,16,4,11,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4178,2021-12-08,20925.31398262782,241,Urgent,2021-12-23,Normal,4178,343,3,15,,,,DISCHARGED -4179,2020-03-14,33725.423848761,245,Emergency,2020-04-06,Normal,4179,276,2,8,,,,DISCHARGED -4180,2023-10-06,18907.536139235868,431,Urgent,2023-10-20,Normal,4180,306,1,19,,,,DISCHARGED -4181,2022-03-01,2116.3988482035093,184,Urgent,2022-03-29,Inconclusive,4181,58,2,4,,,,DISCHARGED -4182,2019-04-22,18113.33214667707,430,Urgent,2019-05-22,Normal,4182,422,4,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4183,2023-02-13,45214.53837734277,217,Elective,2023-02-22,Normal,4183,182,1,1,,,,DISCHARGED -4184,2019-10-14,42907.15413187941,456,Urgent,2019-10-28,Normal,4184,40,2,21,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4185,2023-09-13,13061.333957705656,214,Urgent,2023-09-15,Inconclusive,4185,38,3,15,,,,DISCHARGED -4186,2020-12-26,3015.216939353546,210,Urgent,2021-01-21,Abnormal,4186,396,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4187,2019-09-01,23921.01034024139,169,Emergency,2019-10-01,Inconclusive,4187,191,1,4,,,,DISCHARGED -4188,2019-01-13,30414.60712677158,455,Emergency,2019-01-19,Normal,4188,266,3,6,,,,DISCHARGED -4189,2020-01-23,39602.84827514187,109,Urgent,2020-01-24,Normal,4189,493,1,5,,,,DISCHARGED -4191,2022-12-15,32598.82400481638,354,Elective,2023-01-03,Abnormal,4191,146,2,23,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4192,2019-08-29,30156.348034764087,227,Emergency,2019-09-21,Inconclusive,4192,394,1,21,,,,DISCHARGED -4193,2021-01-07,23854.14631105632,429,Urgent,2021-02-01,Inconclusive,4193,332,2,9,,,,DISCHARGED -4194,2021-08-28,38625.77818906482,140,Urgent,2021-09-06,Abnormal,4194,126,3,13,,,,DISCHARGED -4195,2019-10-02,1764.863462629149,454,Emergency,2019-10-05,Abnormal,4195,45,0,7,,,,DISCHARGED -4196,2023-09-11,31067.7180990336,348,Elective,2023-09-28,Normal,4196,44,3,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4197,2021-02-03,33218.58771433514,449,Elective,2021-02-08,Normal,4197,0,2,13,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4197,2020-06-27,29417.398705733616,213,Urgent,2020-06-30,Normal,5722,167,4,13,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4198,2020-03-12,17827.595602552363,139,Emergency,2020-03-30,Abnormal,4198,107,3,19,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -4199,2021-11-25,9561.515191899114,163,Emergency,2021-12-09,Abnormal,4199,18,4,27,,,,DISCHARGED -4200,2020-04-01,6671.005508948585,152,Elective,2020-04-13,Normal,4200,331,4,22,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -4201,2021-01-08,24049.0574839086,325,Elective,2021-01-20,Inconclusive,4201,71,2,2,,,,DISCHARGED -4202,2021-02-04,48662.23534288198,461,Elective,2021-03-01,Inconclusive,4202,455,2,0,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4203,2020-06-16,12129.44563679042,223,Elective,2020-07-08,Inconclusive,4203,444,0,28,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4204,2022-02-03,45369.87620295928,444,Elective,2022-02-11,Abnormal,4204,108,1,8,,,,DISCHARGED -4205,2023-05-07,40623.16375343149,332,Elective,2023-05-09,Inconclusive,4205,267,3,8,,,,DISCHARGED -4206,2021-12-05,3324.1593975395585,482,Elective,2021-12-30,Inconclusive,4206,444,2,21,,,,DISCHARGED -4207,2023-10-08,36093.007916267954,498,Elective,2023-11-05,Inconclusive,4207,239,3,1,,,,DISCHARGED -4208,2023-09-12,29891.026074010013,314,Urgent,2023-09-17,Abnormal,4208,416,4,15,,,,DISCHARGED -4209,2019-12-25,10188.956545312967,282,Emergency,2020-01-14,Inconclusive,4209,300,1,7,,,,DISCHARGED -4210,2023-09-03,14061.754453888338,312,Urgent,2023-09-14,Inconclusive,4210,89,0,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4211,2022-04-01,13812.252706354642,245,Elective,2022-04-04,Inconclusive,4211,102,3,5,,,,DISCHARGED -4212,2020-09-02,39957.56215054793,476,Urgent,2020-09-10,Abnormal,4212,475,1,22,,,,DISCHARGED -4213,2021-12-22,4337.045304985074,235,Emergency,2022-01-19,Abnormal,4213,249,0,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4214,2018-11-06,7848.908820179961,248,Elective,2018-11-20,Abnormal,4214,452,3,0,,,,DISCHARGED -4215,2019-05-15,17633.66545757288,366,Elective,2019-05-16,Inconclusive,4215,7,1,18,,,,DISCHARGED -4216,2023-04-22,16283.563895438963,493,Elective,2023-05-12,Inconclusive,4216,152,2,14,,,,DISCHARGED -4217,2023-03-09,40376.16831506106,126,Emergency,2023-03-16,Normal,4217,346,3,0,,,,DISCHARGED -4219,2020-08-23,27453.98398460514,381,Urgent,2020-09-18,Abnormal,4219,173,1,9,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4220,2021-02-27,48849.72530535368,258,Elective,2021-03-06,Normal,4220,342,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4221,2023-08-29,38012.36490229927,396,Elective,2023-09-23,Inconclusive,4221,157,1,27,,,,DISCHARGED -4222,2021-11-22,28482.813658792653,255,Urgent,2021-12-18,Normal,4222,492,2,11,,,,DISCHARGED -4223,2022-11-29,3085.5512769146485,432,Urgent,2022-12-25,Abnormal,4223,430,3,10,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4224,2018-12-26,16006.593417939845,264,Elective,2019-01-02,Inconclusive,4224,214,3,28,,,,DISCHARGED -4225,2020-10-24,48111.15565368656,409,Emergency,2020-10-26,Inconclusive,4225,176,3,16,,,,DISCHARGED -4226,2019-06-26,22277.94392314609,223,Elective,2019-07-11,Abnormal,4226,174,2,3,,,,DISCHARGED -4227,2019-01-28,20368.021744003658,478,Emergency,2019-02-23,Inconclusive,4227,339,0,28,,,,DISCHARGED -4228,2021-08-02,20535.716775870736,369,Emergency,2021-08-19,Normal,4228,337,3,22,,,,DISCHARGED -4229,2020-03-07,1429.3033157779878,348,Elective,2020-03-10,Abnormal,4229,145,0,6,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4230,2019-02-05,16495.703175412338,272,Elective,2019-02-19,Normal,4230,449,1,11,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4231,2018-11-13,17283.05696012245,349,Urgent,2018-11-16,Inconclusive,4231,323,0,12,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4232,2022-02-21,7938.83847891943,345,Emergency,2022-03-15,Abnormal,4232,477,0,4,,,,DISCHARGED -4233,2022-08-11,46805.39220178419,253,Emergency,2022-09-01,Inconclusive,4233,160,3,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4234,2020-02-07,33338.424280797895,293,Elective,2020-03-04,Abnormal,4234,126,4,5,,,,DISCHARGED -4234,2021-04-29,36424.72235649513,370,Emergency,2021-05-28,Normal,7864,419,4,1,,,,DISCHARGED -4236,2019-08-05,12869.063402261929,225,Emergency,2019-08-09,Inconclusive,4236,81,2,20,,,,DISCHARGED -4237,2019-10-07,28142.69064301834,168,Elective,2019-11-01,Inconclusive,4237,484,2,6,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4238,2023-01-21,17005.199605852467,126,Urgent,,Abnormal,4238,146,4,13,,,,OPEN -4239,2019-03-02,6249.442146504827,126,Urgent,2019-03-15,Abnormal,4239,238,1,24,,,,DISCHARGED -4239,2019-12-07,21265.605131959997,490,Elective,2019-12-09,Inconclusive,5657,411,3,21,,,,DISCHARGED -4241,2021-01-28,11607.140164525068,333,Elective,2021-02-05,Inconclusive,4241,423,3,27,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4242,2023-02-25,28720.3545377116,233,Urgent,,Abnormal,4242,83,1,13,,,,OPEN -4243,2020-05-15,49655.9317155011,305,Urgent,2020-06-04,Abnormal,4243,112,1,9,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4244,2019-01-20,44569.38342637937,469,Emergency,2019-01-23,Normal,4244,224,4,3,,,,DISCHARGED -4245,2020-03-18,45966.53531391583,354,Elective,2020-03-22,Inconclusive,4245,331,2,2,,,,DISCHARGED -4245,2023-02-21,14786.153449769276,405,Elective,2023-03-22,Abnormal,5303,377,1,24,,,,DISCHARGED -4246,2023-08-13,35351.77628597784,161,Emergency,,Inconclusive,4246,242,2,22,,,,OPEN -4247,2020-12-11,16460.812363312594,426,Elective,2020-12-24,Inconclusive,4247,142,0,26,,,,DISCHARGED -4248,2021-09-29,7589.864460170565,385,Urgent,2021-10-13,Inconclusive,4248,40,3,13,,,,DISCHARGED -4249,2022-02-16,44294.30015962839,172,Emergency,2022-02-27,Abnormal,4249,422,4,28,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4250,2019-08-27,39377.32723358132,209,Elective,2019-09-11,Abnormal,4250,257,3,5,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4251,2022-11-17,36286.17521435992,111,Urgent,2022-12-15,Inconclusive,4251,446,4,22,,,,DISCHARGED -4252,2022-02-23,49295.455401304025,334,Elective,2022-03-13,Normal,4252,284,0,14,,,,DISCHARGED -4253,2021-03-01,7558.735303959764,333,Urgent,2021-03-02,Normal,4253,104,3,7,,,,DISCHARGED -4254,2023-10-25,44338.57425382923,406,Elective,2023-10-28,Abnormal,4254,201,0,4,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4255,2021-04-06,36199.54049238472,261,Emergency,2021-04-24,Normal,4255,449,4,2,,,,DISCHARGED -4256,2020-07-24,49102.979010545336,329,Urgent,2020-08-21,Abnormal,4256,306,1,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -4257,2020-08-12,19649.11069750562,444,Elective,2020-08-15,Abnormal,4257,330,3,12,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4258,2023-07-11,29017.347818936272,371,Elective,2023-07-27,Inconclusive,4258,460,0,1,,,,DISCHARGED -4259,2022-10-17,27669.868084675,313,Urgent,2022-11-06,Normal,4259,265,3,23,,,,DISCHARGED -4260,2023-01-08,4396.562975337329,437,Elective,,Abnormal,4260,397,3,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,OPEN -4261,2023-07-22,13483.899807955184,399,Emergency,2023-07-26,Inconclusive,4261,209,3,11,,,,DISCHARGED -4262,2019-01-03,46112.01413816182,373,Elective,2019-01-31,Inconclusive,4262,50,2,7,,,,DISCHARGED -4263,2020-03-28,17701.123806696913,138,Urgent,2020-03-29,Abnormal,4263,117,0,18,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -4265,2020-10-08,6664.460693355432,280,Emergency,2020-10-13,Inconclusive,4265,200,0,8,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -4266,2021-08-26,32577.037184008965,413,Emergency,2021-09-17,Abnormal,4266,376,3,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4267,2022-04-17,23788.720496469603,365,Emergency,2022-05-06,Inconclusive,4267,38,1,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4268,2023-05-17,8879.807144515904,368,Elective,,Inconclusive,4268,27,3,27,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",OPEN -4269,2020-01-19,40675.03565064048,112,Emergency,2020-01-26,Normal,4269,258,2,26,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4270,2019-08-16,47200.32603530504,469,Emergency,2019-09-06,Normal,4270,83,4,17,,,,DISCHARGED -4271,2020-02-21,15157.013579451886,313,Elective,2020-02-28,Inconclusive,4271,453,2,9,,,,DISCHARGED -4271,2021-08-30,26263.057532551607,289,Emergency,2021-09-02,Abnormal,7294,154,1,8,,,,DISCHARGED -4271,2019-12-11,6053.051017209744,441,Emergency,2019-12-20,Abnormal,8894,116,3,5,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4272,2022-09-13,37726.75060416127,172,Emergency,2022-09-19,Abnormal,4272,1,0,0,,,,DISCHARGED -4273,2021-11-25,45281.60813325514,153,Urgent,2021-12-12,Normal,4273,92,3,4,,,,DISCHARGED -4274,2021-09-28,24532.457808837284,101,Urgent,2021-10-17,Normal,4274,165,1,9,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4275,2022-02-18,23186.36113064121,476,Urgent,2022-03-14,Normal,4275,386,0,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4276,2021-11-24,27803.00246757089,494,Elective,2021-12-19,Inconclusive,4276,399,2,12,,,,DISCHARGED -4277,2019-04-20,7445.620745064397,368,Elective,2019-05-01,Abnormal,4277,349,4,21,,,,DISCHARGED -4278,2022-11-25,40406.67079273432,482,Urgent,2022-12-11,Normal,4278,295,4,22,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4279,2022-10-23,45960.250694101785,438,Urgent,2022-10-28,Normal,4279,257,3,3,,,,DISCHARGED -4280,2021-07-23,18633.16661493362,212,Urgent,2021-08-20,Inconclusive,4280,80,2,0,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -4281,2020-09-02,4419.6471405296,257,Elective,2020-10-01,Normal,4281,424,1,20,,,,DISCHARGED -4282,2021-08-21,39548.83309112183,311,Emergency,2021-09-14,Abnormal,4282,267,4,1,,,,DISCHARGED -4284,2022-09-27,20378.908689461037,261,Elective,2022-10-18,Normal,4284,418,2,23,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4285,2022-06-27,39942.2752405833,294,Urgent,2022-07-09,Inconclusive,4285,234,3,3,,,,DISCHARGED -4286,2020-02-26,18332.10657982058,461,Elective,2020-02-27,Inconclusive,4286,320,0,16,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4287,2020-07-27,43411.73070622255,227,Emergency,2020-08-01,Normal,4287,310,3,9,,,,DISCHARGED -4289,2020-03-15,13787.360482399412,129,Urgent,2020-04-05,Abnormal,4289,300,3,22,,,,DISCHARGED -4290,2021-01-19,15579.51796045255,135,Urgent,2021-01-27,Normal,4290,462,2,11,,,,DISCHARGED -4291,2021-02-24,7076.582553180162,224,Elective,2021-03-14,Inconclusive,4291,473,4,26,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4292,2023-08-22,9224.665872229143,465,Urgent,,Inconclusive,4292,356,2,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -4293,2020-01-18,46114.60624027525,458,Emergency,2020-02-07,Abnormal,4293,212,0,2,,,,DISCHARGED -4294,2020-10-29,29585.63582417888,296,Urgent,2020-11-27,Normal,4294,61,2,13,,,,DISCHARGED -4295,2022-12-29,18833.014884445416,149,Elective,2023-01-22,Inconclusive,4295,48,1,24,,,,DISCHARGED -4296,2022-05-16,37297.56080033533,284,Urgent,2022-06-03,Inconclusive,4296,126,3,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4297,2018-11-06,19626.666631094115,472,Elective,2018-11-21,Normal,4297,222,4,12,,,,DISCHARGED -4298,2022-05-06,13172.556554209346,321,Emergency,2022-06-04,Normal,4298,408,0,8,,,,DISCHARGED -4299,2020-05-13,39312.833900095146,427,Elective,2020-05-22,Normal,4299,278,3,1,,,,DISCHARGED -4300,2023-10-15,9414.77969470494,457,Urgent,2023-10-27,Abnormal,4300,407,2,18,,,,DISCHARGED -4301,2021-01-29,14628.001672455644,257,Urgent,2021-02-08,Abnormal,4301,293,1,15,,,,DISCHARGED -4302,2019-01-25,15029.464580050986,429,Elective,2019-02-21,Abnormal,4302,283,2,10,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4303,2022-12-27,34591.15341918473,227,Emergency,2023-01-17,Abnormal,4303,276,3,11,,,,DISCHARGED -4304,2019-07-20,10751.473347234029,468,Urgent,2019-08-18,Normal,4304,437,0,24,,,,DISCHARGED -4305,2021-09-08,17181.38350425435,130,Urgent,2021-09-12,Abnormal,4305,106,4,0,,,,DISCHARGED -4306,2023-06-14,28145.03076741111,417,Elective,2023-07-10,Normal,4306,145,3,1,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -4306,2018-12-27,5194.196043207984,198,Emergency,2018-12-28,Inconclusive,4923,419,0,15,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -4307,2021-07-29,47519.43087997428,418,Emergency,2021-08-26,Inconclusive,4307,98,3,26,,,,DISCHARGED -4308,2021-04-02,13744.73295863892,256,Emergency,2021-05-02,Inconclusive,4308,428,1,1,,,,DISCHARGED -4309,2021-01-04,27139.248220751764,485,Emergency,2021-02-02,Inconclusive,4309,374,2,25,,,,DISCHARGED -4310,2021-03-30,2044.8980004535192,316,Emergency,2021-04-26,Normal,4310,72,4,29,,,,DISCHARGED -4311,2023-09-19,28550.98213225394,291,Urgent,2023-09-26,Abnormal,4311,436,0,18,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4312,2018-10-31,19060.231546826177,171,Urgent,2018-11-25,Normal,4312,485,4,9,,,,DISCHARGED -4313,2019-11-10,5217.456626395087,423,Urgent,2019-11-24,Abnormal,4313,121,4,18,,,,DISCHARGED -4314,2023-06-28,45819.599782120815,336,Urgent,2023-07-12,Inconclusive,4314,29,4,9,,,,DISCHARGED -4315,2022-11-05,35623.831857974896,109,Elective,2022-11-24,Normal,4315,187,0,15,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4315,2019-01-12,41896.47962512455,214,Urgent,2019-01-25,Normal,5847,363,0,12,,,,DISCHARGED -4316,2019-07-08,42543.032870346855,304,Urgent,2019-07-10,Inconclusive,4316,353,4,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4317,2023-01-27,41805.65731337217,193,Elective,2023-02-10,Inconclusive,4317,287,2,17,,,,DISCHARGED -4318,2023-10-04,22672.384309398414,133,Emergency,2023-10-06,Abnormal,4318,450,3,23,,,,DISCHARGED -4319,2019-07-15,35317.50619164461,202,Emergency,2019-08-14,Inconclusive,4319,194,4,7,,,,DISCHARGED -4320,2019-06-14,46725.74676311306,337,Emergency,2019-06-27,Inconclusive,4320,155,1,23,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4322,2019-03-25,12622.150489818056,496,Elective,2019-04-18,Abnormal,4322,171,4,17,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4323,2022-10-16,15420.94026749384,367,Urgent,2022-10-19,Abnormal,4323,334,0,12,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4324,2020-02-12,32142.454113230124,370,Urgent,2020-02-29,Inconclusive,4324,40,3,24,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -4326,2021-10-25,47805.81638332805,237,Urgent,2021-10-31,Abnormal,4326,62,1,26,,,,DISCHARGED -4327,2022-07-31,1488.1260929277728,231,Urgent,2022-08-25,Abnormal,4327,22,3,6,,,,DISCHARGED -4328,2023-09-23,22987.560737312077,279,Urgent,2023-09-24,Normal,4328,359,3,27,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -4329,2022-01-23,35108.85858291569,431,Elective,2022-02-11,Abnormal,4329,74,1,20,,,,DISCHARGED -4330,2019-06-06,36701.09053736355,250,Emergency,2019-06-22,Abnormal,4330,47,4,22,,,,DISCHARGED -4331,2020-07-11,5038.133607353281,270,Emergency,2020-07-30,Normal,4331,159,4,23,,,,DISCHARGED -4332,2021-04-03,18929.11346697998,273,Elective,2021-04-28,Abnormal,4332,312,4,24,,,,DISCHARGED -4333,2019-06-20,7089.745283781853,140,Urgent,2019-07-07,Abnormal,4333,117,2,17,,,,DISCHARGED -4334,2021-02-18,42634.99764480624,163,Urgent,2021-03-07,Normal,4334,99,4,5,,,,DISCHARGED -4335,2020-08-02,43083.914313453,472,Urgent,2020-08-08,Inconclusive,4335,379,1,8,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4336,2023-04-07,22950.528255265766,190,Elective,,Abnormal,4336,416,2,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -4337,2023-09-21,32433.36470246996,289,Urgent,2023-10-14,Normal,4337,407,4,5,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4338,2019-01-06,12708.04569673043,210,Urgent,2019-01-30,Normal,4338,166,2,17,,,,DISCHARGED -4339,2021-10-19,35708.18007719289,263,Urgent,2021-11-15,Abnormal,4339,289,1,16,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -4340,2020-11-27,39551.35023961004,115,Urgent,2020-11-29,Normal,4340,439,4,11,,,,DISCHARGED -4341,2019-06-20,22267.580836393427,295,Emergency,2019-07-16,Abnormal,4341,155,0,2,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4342,2021-11-13,25610.641822608864,189,Urgent,2021-12-07,Abnormal,4342,420,1,26,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4343,2021-06-19,25161.09221380417,467,Urgent,2021-07-18,Normal,4343,6,3,4,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4344,2023-06-02,7242.527715213313,289,Urgent,2023-06-12,Normal,4344,195,3,6,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4345,2019-02-08,47705.1670284061,265,Elective,2019-03-01,Abnormal,4345,420,1,9,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -4346,2021-01-21,29231.557651026604,119,Elective,2021-02-05,Normal,4346,55,3,9,,,,DISCHARGED -4346,2023-01-16,37265.96712700602,399,Elective,2023-02-10,Abnormal,6063,320,1,18,,,,DISCHARGED -4347,2021-02-10,35832.3273784627,411,Urgent,2021-03-12,Inconclusive,4347,192,0,24,,,,DISCHARGED -4348,2020-10-13,30277.40585901309,321,Emergency,2020-11-09,Inconclusive,4348,46,1,25,,,,DISCHARGED -4349,2022-10-15,22026.30786674351,382,Urgent,2022-11-04,Inconclusive,4349,147,4,27,,,,DISCHARGED -4350,2021-05-02,1731.5255035080518,130,Emergency,2021-05-21,Inconclusive,4350,274,4,3,,,,DISCHARGED -4351,2021-12-01,20356.31133973265,399,Elective,2021-12-14,Normal,4351,156,2,9,,,,DISCHARGED -4352,2022-03-18,27688.42981583521,156,Urgent,2022-04-14,Inconclusive,4352,201,3,17,,,,DISCHARGED -4353,2021-08-20,7329.299437156995,197,Elective,2021-09-10,Normal,4353,443,3,2,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,DISCHARGED -4353,2023-05-21,9672.394449011888,287,Elective,,Inconclusive,7923,401,1,20,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,OPEN -4354,2020-05-09,31550.677475915312,218,Elective,2020-05-21,Inconclusive,4354,475,3,2,,,,DISCHARGED -4354,2020-11-14,20604.733184173358,310,Urgent,2020-11-15,Normal,6816,418,4,4,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4355,2021-10-22,5415.651952770905,162,Elective,2021-11-17,Inconclusive,4355,426,0,15,,,,DISCHARGED -4356,2023-05-05,25894.759750815545,339,Emergency,,Abnormal,4356,494,1,19,,,,OPEN -4357,2023-02-15,19349.60945862319,364,Emergency,2023-03-12,Inconclusive,4357,478,3,12,,,,DISCHARGED -4358,2021-06-01,30465.331300052203,189,Emergency,2021-06-06,Normal,4358,474,4,10,,,,DISCHARGED -4359,2022-12-07,24921.537784504195,396,Elective,2022-12-25,Normal,4359,125,2,25,,,,DISCHARGED -4360,2021-06-03,8447.95452753493,169,Emergency,2021-06-19,Abnormal,4360,394,3,12,,,,DISCHARGED -4361,2023-01-11,1832.0151060544997,227,Emergency,2023-02-07,Inconclusive,4361,304,0,18,,,,DISCHARGED -4362,2022-08-21,23456.38304679709,297,Emergency,2022-09-01,Inconclusive,4362,368,0,27,,,,DISCHARGED -4363,2019-06-05,27265.8109882696,220,Urgent,2019-06-09,Inconclusive,4363,293,3,5,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4364,2020-07-09,29378.974907449112,297,Urgent,2020-08-07,Inconclusive,4364,63,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4365,2019-04-15,19995.01990750893,341,Emergency,2019-04-25,Abnormal,4365,324,4,12,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -4366,2020-06-20,25200.217214218264,268,Emergency,2020-06-24,Normal,4366,391,3,27,,,,DISCHARGED -4367,2019-06-27,5100.061769330424,376,Emergency,2019-07-18,Normal,4367,417,2,3,,,,DISCHARGED -4368,2022-05-13,23953.529215111303,328,Urgent,2022-06-03,Inconclusive,4368,175,4,24,,,,DISCHARGED -4369,2023-05-20,17503.608156803177,167,Emergency,2023-05-22,Abnormal,4369,115,1,21,,,,DISCHARGED -4370,2023-10-07,17919.965440810436,444,Emergency,2023-10-26,Inconclusive,4370,439,2,4,,,,DISCHARGED -4371,2020-04-05,9973.81025986173,106,Emergency,2020-04-24,Inconclusive,4371,203,4,18,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4372,2022-05-08,46506.66343698101,326,Emergency,2022-06-04,Inconclusive,4372,485,4,4,,,,DISCHARGED -4373,2022-02-27,38062.53382935073,479,Urgent,2022-03-08,Abnormal,4373,320,0,20,,,,DISCHARGED -4374,2019-09-14,11005.824428448836,243,Elective,2019-10-03,Inconclusive,4374,30,4,13,,,,DISCHARGED -4375,2022-11-19,8813.62907307536,450,Elective,2022-12-17,Abnormal,4375,387,2,27,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -4376,2022-12-14,6256.260024722372,227,Elective,2022-12-24,Abnormal,4376,112,3,27,,,,DISCHARGED -4377,2020-11-10,20755.424386043025,226,Emergency,2020-11-27,Abnormal,4377,364,2,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -4378,2023-06-26,44702.2294255068,117,Emergency,2023-07-22,Normal,4378,433,1,11,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -4379,2019-09-28,3523.108424161931,329,Elective,2019-10-03,Abnormal,4379,324,4,5,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4380,2021-08-11,30950.932798176626,410,Emergency,2021-08-20,Inconclusive,4380,413,4,18,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4381,2023-03-13,7627.089773741499,378,Urgent,2023-03-26,Inconclusive,4381,375,4,9,,,,DISCHARGED -4382,2021-11-05,14334.332944057904,433,Urgent,2021-11-12,Abnormal,4382,343,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -4382,2020-02-28,19852.09443330943,157,Elective,2020-03-21,Abnormal,5783,442,0,22,,,,DISCHARGED -4383,2021-07-08,45030.67622566485,391,Urgent,2021-07-09,Inconclusive,4383,66,0,22,,,,DISCHARGED -4384,2020-05-13,20030.9052267636,458,Emergency,2020-05-24,Normal,4384,74,3,27,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4385,2019-02-03,36698.79270164852,124,Urgent,2019-02-04,Inconclusive,4385,44,4,15,,,,DISCHARGED -4386,2019-05-13,6225.450437333625,340,Urgent,2019-06-01,Inconclusive,4386,259,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4387,2021-09-29,21060.9831600596,118,Emergency,2021-10-27,Normal,4387,153,3,8,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4388,2019-03-16,27800.773986255903,196,Urgent,2019-03-23,Abnormal,4388,154,4,27,,,,DISCHARGED -4388,2021-09-01,18232.71602861017,370,Elective,2021-09-07,Inconclusive,5713,429,0,17,,,,DISCHARGED -4389,2020-10-28,3539.9385841968674,478,Urgent,2020-11-16,Abnormal,4389,362,1,28,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4390,2021-04-27,10168.200329414873,118,Emergency,2021-05-04,Abnormal,4390,447,3,16,,,,DISCHARGED -4391,2021-03-22,31116.497540167296,165,Emergency,2021-04-03,Inconclusive,4391,474,1,14,,,,DISCHARGED -4391,2022-02-07,7804.669689924318,437,Elective,2022-03-09,Abnormal,5651,233,4,18,,,,DISCHARGED -4392,2020-02-11,41806.082572882086,398,Urgent,2020-02-25,Inconclusive,4392,50,2,6,,,,DISCHARGED -4393,2019-03-22,5204.054151529353,284,Urgent,2019-04-03,Abnormal,4393,305,1,24,,,,DISCHARGED -4394,2020-12-25,7195.877918443856,227,Emergency,2021-01-09,Normal,4394,261,1,17,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4395,2020-03-01,27861.542729318564,376,Urgent,2020-03-10,Abnormal,4395,314,0,5,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4396,2020-06-26,46345.30326940602,325,Urgent,2020-07-15,Abnormal,4396,124,4,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -4397,2019-12-15,4995.137208069622,392,Emergency,2019-12-31,Abnormal,4397,398,1,20,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4398,2021-01-27,42761.45755100102,433,Urgent,2021-02-19,Inconclusive,4398,244,4,11,,,,DISCHARGED -4399,2023-07-18,15393.627634448116,342,Emergency,,Abnormal,4399,29,0,24,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4401,2023-08-13,23931.377859476062,140,Emergency,2023-08-28,Normal,4401,425,4,2,,,,DISCHARGED -4402,2023-01-16,12743.477429714816,279,Urgent,2023-01-25,Normal,4402,484,0,0,,,,DISCHARGED -4403,2019-04-20,6971.796379841849,382,Urgent,2019-05-06,Normal,4403,121,0,4,,,,DISCHARGED -4404,2019-05-04,30514.77427930134,346,Elective,2019-05-09,Normal,4404,124,3,0,,,,DISCHARGED -4405,2022-12-29,33237.41370971693,282,Urgent,2023-01-11,Normal,4405,36,4,7,,,,DISCHARGED -4406,2022-03-14,7545.227841574843,104,Urgent,2022-03-18,Normal,4406,169,2,6,,,,DISCHARGED -4407,2023-01-14,8818.30529042214,466,Emergency,,Abnormal,4407,123,3,14,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",OPEN -4408,2023-05-19,13431.83118808665,369,Emergency,2023-06-01,Normal,4408,356,0,10,,,,DISCHARGED -4409,2022-12-21,16265.026219937852,256,Emergency,2023-01-10,Inconclusive,4409,34,2,17,,,,DISCHARGED -4410,2019-03-10,31379.52894496659,264,Elective,2019-04-03,Normal,4410,86,1,13,,,,DISCHARGED -4411,2020-06-04,31392.95177820389,248,Elective,2020-06-16,Normal,4411,133,1,26,,,,DISCHARGED -4412,2020-06-02,18926.59341089205,323,Urgent,2020-06-16,Abnormal,4412,195,3,8,,,,DISCHARGED -4413,2019-11-07,20200.02710137315,405,Elective,2019-11-12,Inconclusive,4413,273,2,4,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4414,2022-01-10,47747.30883557917,264,Elective,2022-02-07,Normal,4414,200,4,22,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4415,2021-04-04,31646.14112892792,189,Elective,2021-04-21,Abnormal,4415,368,2,3,,,,DISCHARGED -4416,2022-03-24,10267.73744733062,498,Emergency,2022-04-18,Inconclusive,4416,284,3,11,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4417,2023-09-01,34611.02570513875,110,Urgent,2023-09-23,Normal,4417,76,4,28,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4418,2022-10-15,31143.273416157677,392,Urgent,2022-11-03,Inconclusive,4418,58,4,0,,,,DISCHARGED -4419,2020-10-16,5096.993248083081,488,Elective,2020-10-28,Normal,4419,430,1,29,,,,DISCHARGED -4420,2022-03-27,15450.181899934913,384,Emergency,2022-04-09,Abnormal,4420,125,2,23,,,,DISCHARGED -4421,2022-09-27,27125.115103301843,251,Urgent,2022-10-05,Normal,4421,499,4,12,,,,DISCHARGED -4422,2022-05-03,12413.624375217842,246,Emergency,2022-05-08,Normal,4422,400,3,0,,,,DISCHARGED -4422,2019-12-19,7490.139532125952,480,Elective,2019-12-29,Normal,9163,108,1,2,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -4423,2020-07-27,6626.495446958939,334,Emergency,2020-08-09,Normal,4423,223,4,21,,,,DISCHARGED -4424,2020-09-27,21923.915119217207,162,Elective,2020-10-19,Normal,4424,495,2,7,,,,DISCHARGED -4425,2019-07-28,48575.77056413398,140,Elective,2019-08-12,Inconclusive,4425,277,1,23,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4426,2019-09-05,49208.375751772895,182,Urgent,2019-10-04,Abnormal,4426,67,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4427,2021-04-03,15918.3717316954,232,Urgent,2021-05-03,Inconclusive,4427,68,2,24,,,,DISCHARGED -4429,2020-07-19,31828.35309782192,195,Emergency,2020-08-12,Normal,4429,164,2,15,,,,DISCHARGED -4430,2020-09-29,37712.09461833694,166,Emergency,2020-10-19,Abnormal,4430,488,1,19,,,,DISCHARGED -4431,2020-09-13,35700.222086352056,231,Elective,2020-09-14,Inconclusive,4431,304,4,19,,,,DISCHARGED -4432,2019-12-19,8354.797981984048,210,Elective,2020-01-09,Normal,4432,396,0,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4432,2020-04-19,9772.324284965773,316,Urgent,2020-05-05,Inconclusive,7598,161,4,15,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4433,2019-08-24,7467.614580793222,218,Elective,2019-08-29,Abnormal,4433,364,1,1,,,,DISCHARGED -4433,2022-07-10,26636.972886879517,478,Emergency,2022-07-27,Abnormal,4543,341,0,16,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4433,2020-02-16,3365.150668858322,271,Urgent,2020-02-17,Inconclusive,4770,308,0,9,,,,DISCHARGED -4434,2021-02-22,24925.824078379228,210,Urgent,2021-02-28,Inconclusive,4434,378,0,6,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -4435,2020-06-18,13435.59008309526,300,Urgent,2020-07-03,Normal,4435,342,3,26,,,,DISCHARGED -4436,2019-11-18,15350.200623017585,231,Emergency,2019-12-08,Inconclusive,4436,434,1,9,,,,DISCHARGED -4437,2019-05-07,6371.663537289802,338,Elective,2019-05-26,Normal,4437,386,3,18,,,,DISCHARGED -4438,2022-03-08,4200.251623354856,230,Emergency,2022-03-12,Abnormal,4438,41,0,19,,,,DISCHARGED -4439,2019-10-03,23765.677780833164,322,Emergency,2019-10-28,Abnormal,4439,353,3,26,,,,DISCHARGED -4440,2018-12-04,19142.010715290427,342,Urgent,2018-12-14,Normal,4440,415,3,8,,,,DISCHARGED -4441,2019-10-25,37057.66135441675,267,Emergency,2019-11-14,Normal,4441,108,1,21,,,,DISCHARGED -4442,2021-04-22,38614.42894243093,467,Elective,2021-04-24,Normal,4442,50,2,29,,,,DISCHARGED -4443,2020-05-07,33709.32427903023,465,Emergency,2020-06-03,Abnormal,4443,249,3,16,,,,DISCHARGED -4444,2020-05-13,17498.810293214898,495,Emergency,2020-06-01,Inconclusive,4444,496,3,8,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4444,2021-07-23,33142.01664289726,313,Elective,2021-08-09,Inconclusive,6456,340,0,8,,,,DISCHARGED -4445,2022-06-16,20368.297749051817,326,Elective,2022-07-02,Abnormal,4445,429,0,4,,,,DISCHARGED -4447,2021-04-17,47107.54885259315,276,Emergency,2021-05-13,Abnormal,4447,382,0,23,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4448,2021-01-05,42190.66732224067,407,Urgent,2021-01-22,Abnormal,4448,491,4,6,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -4449,2019-03-18,25954.48507862245,283,Elective,2019-04-06,Normal,4449,20,3,10,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4450,2019-05-28,12239.862943311624,334,Elective,2019-06-09,Abnormal,4450,299,0,7,,,,DISCHARGED -4451,2023-02-15,47837.6734548495,234,Elective,,Normal,4451,138,1,24,,,,OPEN -4452,2022-08-31,2499.408861073847,348,Elective,2022-09-11,Normal,4452,358,4,13,,,,DISCHARGED -4453,2021-12-23,1127.8006675541212,132,Urgent,2022-01-10,Normal,4453,323,2,1,,,,DISCHARGED -4454,2021-10-31,2857.308207950002,436,Emergency,2021-11-20,Inconclusive,4454,498,3,9,,,,DISCHARGED -4455,2021-05-05,4222.299420689984,438,Emergency,2021-05-07,Abnormal,4455,384,3,20,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -4457,2020-06-19,49275.4942371825,268,Urgent,2020-07-13,Normal,4457,91,1,23,,,,DISCHARGED -4458,2023-08-07,29031.596113350173,496,Emergency,2023-08-23,Inconclusive,4458,446,2,15,,,,DISCHARGED -4459,2019-09-22,12963.365015682575,491,Elective,2019-10-06,Normal,4459,279,2,15,,,,DISCHARGED -4460,2023-10-17,14573.728385426337,456,Emergency,2023-11-16,Normal,4460,124,4,18,,,,DISCHARGED -4461,2022-03-17,12980.334123141804,139,Elective,2022-03-29,Normal,4461,482,3,26,,,,DISCHARGED -4462,2022-08-11,22670.96598164515,301,Elective,2022-09-06,Normal,4462,396,0,10,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4463,2018-11-17,45191.27941701784,469,Elective,2018-11-23,Normal,4463,110,1,5,,,,DISCHARGED -4464,2022-12-01,23039.507799399216,226,Emergency,2022-12-05,Inconclusive,4464,353,1,5,,,,DISCHARGED -4465,2018-12-09,47003.79011452799,395,Emergency,2018-12-22,Inconclusive,4465,138,1,6,,,,DISCHARGED -4466,2023-01-14,33307.0498865359,406,Urgent,2023-02-02,Inconclusive,4466,483,1,15,,,,DISCHARGED -4467,2019-01-12,44092.48303031251,478,Elective,2019-01-16,Abnormal,4467,434,0,12,,,,DISCHARGED -4468,2023-04-16,2591.7081686510664,188,Emergency,2023-05-13,Normal,4468,272,0,26,,,,DISCHARGED -4469,2023-02-04,35263.9176631998,460,Elective,,Abnormal,4469,98,4,2,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",OPEN -4471,2019-05-15,23882.725270582763,420,Urgent,2019-05-21,Normal,4471,251,3,23,,,,DISCHARGED -4472,2021-03-11,17207.253555634008,224,Elective,2021-03-20,Inconclusive,4472,337,0,23,,,,DISCHARGED -4473,2021-07-26,21499.069492487324,229,Emergency,2021-08-23,Normal,4473,103,4,8,,,,DISCHARGED -4474,2022-10-13,10991.026864154508,221,Urgent,2022-10-20,Inconclusive,4474,213,2,23,,,,DISCHARGED -4475,2022-05-02,18263.87344831174,243,Elective,2022-05-10,Normal,4475,248,3,2,,,,DISCHARGED -4476,2020-04-14,33083.66725122396,389,Elective,2020-05-03,Inconclusive,4476,151,0,5,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -4477,2019-06-28,9721.912877616378,352,Urgent,2019-07-26,Abnormal,4477,249,2,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4478,2018-12-27,8762.367761079327,244,Urgent,2019-01-24,Normal,4478,274,4,16,,,,DISCHARGED -4479,2023-10-20,23226.34846264999,496,Urgent,,Abnormal,4479,164,0,2,,,,OPEN -4480,2021-01-30,2977.07436432303,421,Elective,2021-02-11,Normal,4480,486,0,1,,,,DISCHARGED -4481,2021-08-15,4251.696251632491,373,Elective,2021-08-28,Abnormal,4481,340,2,11,,,,DISCHARGED -4481,2020-07-28,40170.823711453966,191,Elective,2020-08-09,Normal,6185,7,0,23,,,,DISCHARGED -4482,2021-03-15,36111.82991398725,283,Emergency,2021-03-18,Inconclusive,4482,283,1,5,,,,DISCHARGED -4483,2019-01-02,49125.20266615342,261,Urgent,2019-01-17,Abnormal,4483,4,0,9,,,,DISCHARGED -4484,2021-04-26,41540.56126317295,186,Elective,2021-05-03,Normal,4484,144,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4485,2023-04-01,44846.63056158742,193,Urgent,2023-04-20,Normal,4485,100,2,15,,,,DISCHARGED -4486,2019-07-08,43779.49013669462,255,Emergency,2019-07-11,Inconclusive,4486,163,3,26,,,,DISCHARGED -4487,2022-12-10,18805.682518713733,437,Elective,2022-12-23,Normal,4487,373,4,15,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4488,2023-03-11,33522.73368620645,285,Urgent,2023-03-24,Abnormal,4488,146,3,23,,,,DISCHARGED -4489,2020-09-28,37348.94716171345,327,Urgent,2020-10-18,Inconclusive,4489,63,1,17,,,,DISCHARGED -4490,2021-02-16,17761.66757898211,468,Emergency,2021-03-04,Abnormal,4490,90,1,26,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4490,2019-10-03,18075.23603612658,136,Urgent,2019-10-13,Abnormal,6112,116,3,21,,,,DISCHARGED -4491,2022-06-29,16714.53183436588,171,Emergency,2022-07-27,Normal,4491,353,4,22,,,,DISCHARGED -4492,2019-12-26,29556.96238052217,263,Elective,2020-01-16,Inconclusive,4492,266,0,23,,,,DISCHARGED -4493,2020-12-23,42296.03842471463,471,Urgent,2021-01-22,Inconclusive,4493,309,1,8,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -4493,2020-10-05,3983.852296893284,196,Elective,2020-10-15,Normal,8340,172,3,20,,,,DISCHARGED -4495,2021-02-08,18685.722484901584,426,Elective,2021-02-09,Abnormal,4495,46,3,26,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -4496,2023-07-27,7987.055974098221,224,Emergency,2023-08-16,Abnormal,4496,139,3,18,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -4497,2021-09-27,1517.374190621968,474,Elective,2021-10-20,Abnormal,4497,245,0,1,,,,DISCHARGED -4498,2022-05-27,28545.476437413592,376,Elective,2022-06-09,Normal,4498,148,2,23,,,,DISCHARGED -4499,2020-06-22,17382.217278808675,167,Emergency,2020-07-21,Normal,4499,245,4,0,,,,DISCHARGED -4500,2020-01-03,4407.307351655626,107,Urgent,2020-01-18,Inconclusive,4500,394,2,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4501,2023-05-13,17419.282793158593,459,Elective,,Normal,4501,486,4,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",OPEN -4502,2022-12-19,8873.290554311148,426,Emergency,2023-01-07,Inconclusive,4502,475,4,21,,,,DISCHARGED -4503,2021-06-09,32046.057457555293,274,Elective,2021-06-13,Abnormal,4503,4,3,17,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4504,2020-05-24,3165.2182556421058,242,Urgent,2020-06-10,Inconclusive,4504,464,1,2,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4505,2020-05-27,8570.828456565887,141,Urgent,2020-06-21,Abnormal,4505,183,3,23,,,,DISCHARGED -4506,2018-12-02,4389.044718202802,241,Urgent,2018-12-09,Normal,4506,19,0,0,,,,DISCHARGED -4507,2020-05-19,9542.995188583096,190,Emergency,2020-06-02,Abnormal,4507,424,4,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4508,2019-09-12,37292.07364445765,425,Elective,2019-10-04,Abnormal,4508,45,1,18,,,,DISCHARGED -4509,2021-05-31,49810.97484127671,297,Elective,2021-06-18,Normal,4509,11,4,21,,,,DISCHARGED -4510,2022-01-24,48768.012589720696,313,Emergency,2022-02-11,Normal,4510,69,4,18,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -4511,2019-10-24,7618.909224262197,232,Elective,2019-11-01,Normal,4511,16,3,10,,,,DISCHARGED -4512,2021-02-11,30669.09883679151,178,Urgent,2021-02-14,Normal,4512,370,1,26,,,,DISCHARGED -4514,2022-12-02,9741.612926671376,348,Emergency,2022-12-14,Normal,4514,146,1,7,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4515,2020-12-25,31725.73633768527,375,Elective,2021-01-16,Inconclusive,4515,153,4,4,,,,DISCHARGED -4516,2019-09-22,33729.92040345424,243,Urgent,2019-10-22,Abnormal,4516,303,1,19,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -4517,2020-12-16,34247.59069887079,328,Emergency,2020-12-24,Inconclusive,4517,107,1,8,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -4518,2022-01-26,44519.8023165431,498,Urgent,2022-02-18,Abnormal,4518,235,3,14,,,,DISCHARGED -4518,2019-01-10,49473.95228056956,126,Emergency,2019-01-28,Normal,6440,307,2,20,,,,DISCHARGED -4519,2020-03-30,48259.75280582012,256,Elective,2020-04-06,Normal,4519,351,0,27,,,,DISCHARGED -4520,2020-11-16,29937.092507237143,475,Urgent,2020-11-23,Normal,4520,69,2,13,,,,DISCHARGED -4521,2020-09-17,25425.653864545395,262,Emergency,2020-10-05,Abnormal,4521,182,1,3,,,,DISCHARGED -4522,2022-06-04,33255.92060113499,257,Elective,2022-06-13,Abnormal,4522,249,4,23,,,,DISCHARGED -4523,2023-10-04,20107.701604169528,428,Emergency,,Inconclusive,4523,227,0,23,,,,OPEN -4524,2022-12-06,26234.578358737912,132,Elective,2022-12-30,Normal,4524,101,0,7,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4525,2022-04-06,29879.330033826845,102,Elective,2022-05-02,Normal,4525,74,4,19,,,,DISCHARGED -4526,2019-07-19,5356.255236997056,361,Urgent,2019-08-08,Normal,4526,416,0,28,,,,DISCHARGED -4526,2020-10-27,47216.045086621605,129,Emergency,2020-11-03,Inconclusive,9806,445,4,16,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4527,2019-08-29,37616.93573000845,213,Urgent,2019-09-26,Abnormal,4527,215,0,1,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -4528,2022-12-18,10047.22220693118,384,Elective,2022-12-30,Abnormal,4528,406,2,19,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4529,2022-02-16,25160.410306873688,210,Urgent,2022-03-01,Abnormal,4529,398,0,15,,,,DISCHARGED -4530,2022-06-27,34229.89909452161,186,Urgent,2022-07-13,Abnormal,4530,410,3,9,,,,DISCHARGED -4531,2023-08-21,2883.572594191613,203,Elective,2023-09-17,Normal,4531,202,4,1,,,,DISCHARGED -4532,2019-01-21,7475.236164237298,436,Emergency,2019-02-12,Inconclusive,4532,191,0,10,,,,DISCHARGED -4533,2020-10-26,12125.448819720452,332,Urgent,2020-10-27,Inconclusive,4533,248,4,9,,,,DISCHARGED -4535,2022-02-18,22855.262757371554,394,Elective,2022-02-28,Normal,4535,498,3,29,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4536,2021-08-13,10481.377326245043,498,Elective,2021-09-11,Abnormal,4536,241,0,29,,,,DISCHARGED -4537,2019-10-18,20901.927061815142,210,Emergency,2019-11-13,Abnormal,4537,464,0,18,,,,DISCHARGED -4537,2020-05-13,46951.83901810505,137,Emergency,2020-06-01,Inconclusive,4642,178,3,24,,,,DISCHARGED -4537,2023-10-23,43617.18143865926,469,Elective,2023-11-06,Abnormal,6273,436,3,24,,,,DISCHARGED -4538,2022-11-23,29054.21275907943,436,Urgent,2022-12-18,Abnormal,4538,461,3,13,,,,DISCHARGED -4539,2020-10-15,15746.240941215614,411,Emergency,2020-11-04,Normal,4539,218,4,10,,,,DISCHARGED -4540,2020-10-13,36227.96541973062,277,Emergency,2020-10-23,Normal,4540,81,3,8,,,,DISCHARGED -4541,2021-07-04,47105.87551738357,275,Urgent,2021-07-21,Abnormal,4541,91,4,6,,,,DISCHARGED -4542,2021-05-02,17131.71267959819,165,Emergency,2021-05-17,Abnormal,4542,434,2,14,,,,DISCHARGED -4544,2023-08-22,10783.038409454231,326,Urgent,2023-08-29,Normal,4544,174,0,19,,,,DISCHARGED -4545,2021-08-27,43386.57664992245,195,Emergency,2021-09-04,Abnormal,4545,238,0,16,,,,DISCHARGED -4546,2021-02-25,4123.760053774291,277,Emergency,2021-02-27,Abnormal,4546,259,1,2,,,,DISCHARGED -4547,2021-09-14,13245.662353684767,235,Emergency,2021-10-04,Inconclusive,4547,390,2,14,,,,DISCHARGED -4548,2021-10-22,11976.516434679506,454,Emergency,2021-11-02,Abnormal,4548,364,3,13,,,,DISCHARGED -4549,2019-06-25,35546.882709673904,364,Urgent,2019-07-20,Abnormal,4549,162,3,7,,,,DISCHARGED -4550,2020-05-12,2074.0273259648347,212,Urgent,2020-05-28,Abnormal,4550,47,2,3,,,,DISCHARGED -4551,2019-09-29,35167.30933193421,500,Urgent,2019-10-03,Normal,4551,328,3,25,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4552,2020-07-29,49509.152180348654,327,Urgent,2020-08-20,Abnormal,4552,327,1,9,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4553,2019-03-09,24886.950573386453,476,Urgent,2019-03-11,Abnormal,4553,115,4,1,,,,DISCHARGED -4555,2020-02-12,40850.90196457679,402,Urgent,2020-02-15,Inconclusive,4555,428,0,13,,,,DISCHARGED -4556,2019-05-24,17119.74349325446,304,Elective,2019-06-07,Abnormal,4556,336,2,7,,,,DISCHARGED -4557,2020-11-19,43543.8502818424,466,Elective,2020-11-29,Inconclusive,4557,336,0,22,,,,DISCHARGED -4558,2019-03-05,40920.74277308268,328,Elective,2019-03-16,Inconclusive,4558,368,4,26,,,,DISCHARGED -4559,2021-04-26,11052.423071444444,157,Elective,2021-05-24,Abnormal,4559,224,2,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -4560,2019-12-29,28184.129261670747,176,Elective,2020-01-13,Abnormal,4560,351,4,24,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4561,2021-10-19,42878.86184837214,118,Urgent,2021-11-08,Normal,4561,327,3,17,,,,DISCHARGED -4562,2019-09-10,15671.288421498482,143,Urgent,2019-10-03,Inconclusive,4562,146,3,14,,,,DISCHARGED -4563,2020-09-15,32300.56039866222,413,Elective,2020-09-17,Inconclusive,4563,62,3,4,,,,DISCHARGED -4564,2023-02-24,16959.56491618068,346,Elective,2023-03-17,Abnormal,4564,293,4,21,,,,DISCHARGED -4565,2020-11-09,3466.915756725062,245,Urgent,2020-11-16,Normal,4565,322,4,12,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -4566,2020-09-03,38719.1525572021,187,Emergency,2020-09-07,Abnormal,4566,442,4,17,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2021-06-08,3194.218070064404,459,Elective,2021-07-07,Inconclusive,4567,324,0,1,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2022-12-02,26943.713030411025,404,Urgent,2022-12-13,Abnormal,4975,12,4,12,,,,DISCHARGED -4567,2019-06-26,4216.037126327004,404,Emergency,2019-07-20,Normal,5266,430,3,29,,,,DISCHARGED -4568,2021-11-23,9726.264978540356,463,Emergency,2021-12-11,Normal,4568,493,1,13,,,,DISCHARGED -4569,2019-08-02,48242.5473545515,198,Elective,2019-08-29,Normal,4569,188,4,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4570,2019-07-18,8637.789364548236,250,Emergency,2019-07-22,Inconclusive,4570,286,1,29,,,,DISCHARGED -4571,2021-09-27,15513.271166735283,247,Urgent,2021-10-24,Normal,4571,207,3,3,,,,DISCHARGED -4572,2023-06-14,6033.70063734597,235,Urgent,2023-06-30,Abnormal,4572,113,4,14,,,,DISCHARGED -4573,2023-04-10,14499.431904675448,297,Emergency,2023-04-30,Normal,4573,479,0,7,,,,DISCHARGED -4573,2022-10-06,27367.82222400113,121,Emergency,2022-10-19,Abnormal,8786,21,0,14,,,,DISCHARGED -4574,2023-07-30,21893.431554867693,312,Elective,2023-08-15,Inconclusive,4574,348,1,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4576,2022-08-21,6467.661812370537,223,Emergency,2022-09-04,Inconclusive,4576,213,0,28,,,,DISCHARGED -4577,2021-03-02,2723.2795083136016,152,Urgent,2021-03-15,Abnormal,4577,170,0,26,,,,DISCHARGED -4579,2023-05-30,24065.78149745237,171,Urgent,2023-06-22,Inconclusive,4579,322,0,20,,,,DISCHARGED -4580,2022-04-09,41998.08667359672,204,Urgent,2022-04-11,Normal,4580,53,3,8,,,,DISCHARGED -4581,2018-11-16,32850.871461053015,490,Elective,2018-12-14,Abnormal,4581,393,0,19,,,,DISCHARGED -4581,2023-01-18,32458.96718542279,210,Urgent,,Abnormal,6020,297,2,2,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -4582,2021-06-04,5773.63087809166,310,Emergency,2021-06-15,Normal,4582,319,4,25,,,,DISCHARGED -4583,2021-11-23,10310.471678156457,328,Emergency,2021-12-23,Normal,4583,125,0,14,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4584,2019-05-03,1445.718720752216,255,Urgent,2019-05-25,Abnormal,4584,276,0,23,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4585,2023-05-23,8940.967815226999,373,Urgent,2023-06-20,Normal,4585,463,0,16,,,,DISCHARGED -4586,2019-08-04,2651.698614970652,289,Elective,2019-08-28,Inconclusive,4586,203,2,24,,,,DISCHARGED -4587,2019-09-26,18752.729203038256,468,Urgent,2019-10-19,Inconclusive,4587,193,0,15,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -4588,2021-07-28,37900.29716889033,414,Elective,2021-08-22,Normal,4588,168,0,3,,,,DISCHARGED -4589,2021-11-23,16703.431059432303,237,Urgent,2021-12-01,Inconclusive,4589,151,4,10,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4590,2022-08-24,4074.530633213811,251,Elective,2022-09-05,Normal,4590,34,2,24,,,,DISCHARGED -4591,2021-05-07,14629.79665001082,438,Urgent,2021-06-02,Inconclusive,4591,183,2,7,,,,DISCHARGED -4592,2022-12-04,10078.8283919974,252,Urgent,2022-12-27,Abnormal,4592,285,0,2,,,,DISCHARGED -4594,2022-05-26,23659.45858434306,195,Urgent,2022-06-16,Inconclusive,4594,56,2,18,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4594,2023-08-09,3201.843306864934,246,Emergency,2023-09-06,Normal,7025,221,1,13,,,,DISCHARGED -4595,2022-12-24,48807.37969798211,472,Emergency,2023-01-17,Normal,4595,302,2,8,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4596,2023-06-09,18765.57283251435,298,Urgent,2023-06-25,Inconclusive,4596,162,2,2,,,,DISCHARGED -4597,2023-05-11,25496.85632147278,272,Urgent,2023-05-19,Normal,4597,18,2,3,,,,DISCHARGED -4598,2022-05-01,19455.796449161637,327,Emergency,2022-05-07,Abnormal,4598,369,3,24,,,,DISCHARGED -4599,2019-11-02,42025.19541210112,269,Elective,2019-11-04,Normal,4599,263,3,27,,,,DISCHARGED -4600,2018-11-01,7137.817190758252,412,Emergency,2018-11-23,Normal,4600,281,3,3,,,,DISCHARGED -4601,2022-09-07,7302.4921125496,348,Emergency,2022-09-13,Normal,4601,112,2,10,,,,DISCHARGED -4602,2022-02-23,11186.601370981183,156,Emergency,2022-03-14,Inconclusive,4602,487,1,18,,,,DISCHARGED -4603,2019-10-05,48372.165825946926,371,Elective,2019-10-16,Inconclusive,4603,326,2,29,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -4604,2022-03-08,34701.34962056766,383,Elective,2022-04-01,Normal,4604,29,0,15,,,,DISCHARGED -4605,2020-10-17,1334.709205265342,334,Emergency,2020-10-19,Abnormal,4605,134,1,22,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4606,2023-08-13,12757.647684774678,282,Emergency,,Inconclusive,4606,66,3,21,,,,OPEN -4607,2021-07-20,12143.670786515182,134,Emergency,2021-08-16,Normal,4607,64,4,16,,,,DISCHARGED -4608,2020-05-19,47700.41315513925,275,Urgent,2020-05-31,Inconclusive,4608,291,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4609,2021-09-11,30929.573359795668,330,Elective,2021-10-03,Abnormal,4609,24,3,9,,,,DISCHARGED -4610,2022-07-11,30345.85897579822,322,Urgent,2022-07-27,Abnormal,4610,36,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -4611,2019-06-09,25727.852473488365,400,Urgent,2019-06-13,Normal,4611,0,1,16,,,,DISCHARGED -4612,2022-09-23,41476.37571714626,362,Urgent,2022-10-01,Abnormal,4612,398,2,15,,,,DISCHARGED -4613,2021-01-28,13038.2775339914,163,Urgent,2021-02-03,Inconclusive,4613,36,0,19,,,,DISCHARGED -4614,2019-04-05,30945.93132521213,474,Urgent,2019-04-06,Inconclusive,4614,140,4,21,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4615,2020-04-02,16573.279708302958,264,Emergency,2020-04-29,Inconclusive,4615,231,3,5,,,,DISCHARGED -4616,2020-01-17,30056.57252159981,182,Urgent,2020-02-13,Inconclusive,4616,135,1,6,,,,DISCHARGED -4617,2021-08-07,27679.145318382773,402,Emergency,2021-09-06,Inconclusive,4617,388,4,13,,,,DISCHARGED -4618,2021-08-02,46659.14394422412,200,Emergency,2021-08-27,Abnormal,4618,187,1,10,,,,DISCHARGED -4621,2020-08-03,40844.65779378396,156,Urgent,2020-08-08,Abnormal,4621,127,0,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4622,2023-03-07,9666.179054711774,189,Emergency,,Inconclusive,4622,200,4,13,,,,OPEN -4623,2021-05-19,37919.6305570231,289,Urgent,2021-06-14,Normal,4623,126,3,4,,,,DISCHARGED -4624,2022-11-17,18423.26862196146,120,Urgent,2022-12-05,Abnormal,4624,256,1,4,,,,DISCHARGED -4625,2020-10-18,21304.665630269945,186,Elective,2020-10-27,Inconclusive,4625,163,0,19,,,,DISCHARGED -4626,2022-03-04,43898.80373892993,310,Urgent,2022-03-16,Inconclusive,4626,34,4,21,,,,DISCHARGED -4627,2023-10-10,5123.249749925363,314,Emergency,2023-10-14,Normal,4627,193,1,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4628,2020-01-19,34950.55993122609,289,Urgent,2020-02-17,Normal,4628,190,1,25,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4629,2023-07-12,28906.59267243324,203,Urgent,2023-07-21,Normal,4629,103,3,14,,,,DISCHARGED -4630,2022-07-07,17438.857822071066,269,Emergency,2022-07-23,Abnormal,4630,22,0,25,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -4631,2020-04-12,36836.99374898194,430,Emergency,2020-05-11,Inconclusive,4631,264,2,0,,,,DISCHARGED -4631,2020-08-16,23161.26533076815,106,Elective,2020-09-10,Abnormal,7427,289,1,24,,,,DISCHARGED -4631,2021-02-18,38819.70570248209,195,Elective,2021-03-03,Normal,7980,429,4,29,,,,DISCHARGED -4632,2022-03-20,49904.30211773508,397,Emergency,2022-03-29,Abnormal,4632,461,3,23,,,,DISCHARGED -4634,2018-11-15,35429.717862718855,256,Urgent,2018-12-11,Inconclusive,4634,383,3,22,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -4635,2021-03-04,7804.657858949919,311,Urgent,2021-03-29,Inconclusive,4635,259,1,8,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4636,2022-01-18,11521.48994486875,392,Elective,2022-01-31,Abnormal,4636,413,1,2,,,,DISCHARGED -4637,2021-06-25,43475.25332634104,466,Emergency,2021-07-17,Normal,4637,478,1,25,,,,DISCHARGED -4638,2023-03-24,49617.33159628476,367,Emergency,2023-04-04,Normal,4638,357,2,3,,,,DISCHARGED -4639,2019-08-28,5659.610293308324,181,Elective,2019-09-15,Inconclusive,4639,74,1,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4640,2021-11-19,17699.441632819613,469,Urgent,2021-11-22,Inconclusive,4640,354,0,6,,,,DISCHARGED -4643,2019-06-28,3537.1717401424075,155,Elective,2019-07-23,Abnormal,4643,71,4,21,,,,DISCHARGED -4644,2019-11-03,16825.634974977576,209,Emergency,2019-11-05,Inconclusive,4644,258,1,13,,,,DISCHARGED -4645,2022-06-21,32537.4287165864,370,Urgent,2022-07-04,Normal,4645,397,2,15,,,,DISCHARGED -4646,2021-06-30,25782.10950789528,105,Emergency,2021-07-06,Normal,4646,187,4,28,,,,DISCHARGED -4647,2020-01-26,47296.57689584642,305,Urgent,2020-02-21,Normal,4647,460,3,17,,,,DISCHARGED -4648,2022-06-16,4662.781475982576,129,Emergency,2022-06-26,Inconclusive,4648,172,1,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4649,2020-11-29,32637.180215150143,342,Emergency,2020-12-15,Normal,4649,479,4,15,,,,DISCHARGED -4649,2023-01-19,11618.098216284956,389,Urgent,2023-02-04,Normal,8074,289,3,1,,,,DISCHARGED -4650,2021-03-14,9187.83151388066,328,Urgent,2021-03-27,Abnormal,4650,44,2,9,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4651,2023-07-08,24436.414224647047,158,Urgent,,Normal,4651,60,0,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,OPEN -4651,2020-07-25,42784.6371812812,105,Elective,2020-08-08,Normal,8460,82,1,24,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4652,2022-11-06,47753.55098965471,236,Urgent,2022-11-21,Inconclusive,4652,122,0,26,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4653,2019-08-31,47257.01418015723,383,Urgent,2019-09-03,Abnormal,4653,357,2,14,,,,DISCHARGED -4654,2019-09-02,11559.82913580272,308,Emergency,2019-09-29,Normal,4654,15,4,27,,,,DISCHARGED -4655,2023-06-02,10921.936250411662,271,Urgent,2023-06-25,Inconclusive,4655,65,4,8,,,,DISCHARGED -4656,2019-04-22,49371.11063644354,279,Emergency,2019-05-13,Abnormal,4656,423,2,6,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4657,2019-04-23,41378.99118358502,172,Urgent,2019-05-11,Abnormal,4657,144,2,26,,,,DISCHARGED -4658,2021-12-25,30814.771544605635,229,Emergency,2021-12-28,Inconclusive,4658,374,1,23,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4659,2023-08-09,20200.325741384582,372,Emergency,,Inconclusive,4659,161,3,15,,,,OPEN -4660,2021-12-12,28247.76366107429,259,Urgent,2022-01-11,Normal,4660,233,0,25,,,,DISCHARGED -4660,2021-09-23,25337.18163832452,487,Urgent,2021-10-08,Normal,6737,379,0,2,,,,DISCHARGED -4661,2021-08-28,7639.263400500502,484,Emergency,2021-09-02,Normal,4661,143,4,16,,,,DISCHARGED -4662,2019-05-17,44385.98984681504,204,Emergency,2019-06-03,Abnormal,4662,357,4,22,,,,DISCHARGED -4663,2020-03-26,36169.46030924257,458,Emergency,2020-04-08,Inconclusive,4663,187,1,7,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4664,2022-12-31,22166.08306722026,430,Elective,2023-01-22,Normal,4664,321,2,1,,,,DISCHARGED -4665,2019-06-05,35802.00968811138,297,Emergency,2019-06-20,Normal,4665,449,0,24,,,,DISCHARGED -4666,2022-09-15,39564.57254804425,448,Elective,2022-10-07,Normal,4666,473,1,19,,,,DISCHARGED -4667,2019-09-26,16811.78896700462,460,Elective,2019-10-03,Normal,4667,12,4,25,,,,DISCHARGED -4668,2019-05-30,28363.972721781876,150,Elective,2019-06-24,Normal,4668,183,4,26,,,,DISCHARGED -4669,2020-06-29,13175.119191550191,498,Elective,2020-07-18,Inconclusive,4669,110,0,24,,,,DISCHARGED -4670,2021-08-05,45009.82730646055,189,Emergency,2021-08-30,Normal,4670,414,4,28,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4671,2020-12-21,41990.89215226928,167,Elective,2020-12-30,Abnormal,4671,289,4,2,,,,DISCHARGED -4672,2019-02-24,5637.003897501025,489,Elective,2019-03-14,Abnormal,4672,294,3,7,,,,DISCHARGED -4673,2020-04-28,39683.6893314112,205,Emergency,2020-04-30,Normal,4673,450,2,26,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4674,2021-06-09,24953.946760308914,280,Emergency,2021-07-02,Abnormal,4674,391,4,1,,,,DISCHARGED -4675,2022-05-26,41327.23543960617,142,Elective,2022-06-13,Abnormal,4675,214,3,29,,,,DISCHARGED -4676,2022-08-07,39834.47810092232,453,Urgent,2022-08-17,Inconclusive,4676,461,1,18,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -4677,2021-09-24,16922.56018127191,449,Urgent,2021-10-08,Abnormal,4677,119,4,16,,,,DISCHARGED -4678,2021-12-04,39412.03459377831,322,Emergency,2021-12-12,Abnormal,4678,381,1,4,,,,DISCHARGED -4679,2021-02-16,13016.442139499672,400,Emergency,2021-03-14,Abnormal,4679,54,4,19,,,,DISCHARGED -4680,2022-03-08,45766.414017043695,407,Emergency,2022-03-27,Inconclusive,4680,26,0,28,,,,DISCHARGED -4681,2022-01-15,25077.376678113123,326,Urgent,2022-01-29,Abnormal,4681,117,3,16,,,,DISCHARGED -4682,2021-10-07,47636.28559466362,202,Emergency,2021-10-25,Inconclusive,4682,220,3,9,,,,DISCHARGED -4683,2021-01-01,18432.876727121245,176,Emergency,2021-01-14,Abnormal,4683,230,0,8,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -4684,2022-02-23,5634.310680561106,466,Emergency,2022-03-18,Normal,4684,52,2,21,,,,DISCHARGED -4684,2019-08-29,17633.0035236912,280,Elective,2019-09-05,Abnormal,5394,294,3,5,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4685,2023-04-25,38177.66775302585,234,Urgent,,Inconclusive,4685,320,1,29,,,,OPEN -4686,2019-04-17,33147.491058059175,225,Elective,2019-04-23,Abnormal,4686,400,3,10,,,,DISCHARGED -4687,2021-09-24,25440.050094145416,277,Urgent,2021-10-09,Normal,4687,232,2,1,,,,DISCHARGED -4688,2019-02-23,2414.73010370114,269,Elective,2019-03-01,Inconclusive,4688,157,1,29,,,,DISCHARGED -4689,2019-07-27,1540.1176829849103,477,Elective,2019-08-10,Inconclusive,4689,436,1,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -4690,2023-10-24,6962.845620282616,268,Urgent,,Abnormal,4690,268,0,11,,,,OPEN -4691,2023-02-26,2015.235510470128,365,Elective,2023-03-08,Normal,4691,20,4,11,,,,DISCHARGED -4692,2019-05-21,31672.04821522471,496,Elective,2019-06-05,Abnormal,4692,402,0,15,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -4693,2021-08-07,48792.40088076773,424,Urgent,2021-09-04,Abnormal,4693,52,4,24,,,,DISCHARGED -4694,2022-08-26,8409.785304892099,159,Emergency,2022-09-02,Abnormal,4694,274,0,21,,,,DISCHARGED -4695,2021-10-26,8107.326054864383,355,Emergency,2021-11-13,Normal,4695,312,4,26,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4696,2022-03-16,2597.5973278827487,308,Emergency,2022-03-25,Abnormal,4696,280,3,23,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4697,2022-09-21,39104.022858925,459,Elective,2022-09-24,Inconclusive,4697,213,1,11,,,,DISCHARGED -4698,2019-08-13,1686.2686002061505,196,Emergency,2019-08-31,Inconclusive,4698,30,4,20,,,,DISCHARGED -4699,2020-04-17,7821.637990236603,174,Elective,2020-05-17,Normal,4699,336,3,17,,,,DISCHARGED -4700,2021-12-14,33502.48987666388,443,Urgent,2021-12-30,Abnormal,4700,182,2,12,,,,DISCHARGED -4701,2020-06-20,13618.06611060776,108,Emergency,2020-06-28,Abnormal,4701,22,0,14,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -4702,2022-02-26,14993.879703714232,387,Emergency,2022-03-14,Normal,4702,31,2,15,,,,DISCHARGED -4703,2020-12-21,27013.5403910531,179,Urgent,2020-12-30,Normal,4703,445,3,3,,,,DISCHARGED -4704,2021-08-26,14477.948650955806,482,Urgent,2021-09-16,Normal,4704,73,2,11,,,,DISCHARGED -4705,2020-10-12,19715.529011833605,475,Elective,2020-11-06,Inconclusive,4705,9,2,16,,,,DISCHARGED -4706,2023-09-26,24951.85781654897,225,Emergency,2023-09-29,Normal,4706,483,3,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -4707,2022-10-10,7293.440324716771,315,Elective,2022-11-08,Normal,4707,455,1,21,,,,DISCHARGED -4708,2018-11-04,1804.172102920116,495,Emergency,2018-11-17,Abnormal,4708,53,4,17,,,,DISCHARGED -4709,2020-05-04,38761.27428012262,301,Emergency,2020-05-27,Normal,4709,51,0,21,,,,DISCHARGED -4709,2020-11-29,49879.16016117147,195,Elective,2020-12-19,Inconclusive,8635,147,4,15,,,,DISCHARGED -4710,2020-04-14,1689.7548227412244,459,Elective,2020-04-17,Normal,4710,159,0,0,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4711,2023-02-05,14797.02160386041,417,Emergency,,Inconclusive,4711,369,4,26,,,,OPEN -4712,2023-03-26,19846.88442861877,272,Emergency,2023-04-15,Abnormal,4712,13,2,9,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -4713,2023-10-06,6764.544369113139,287,Emergency,2023-11-02,Inconclusive,4713,177,1,18,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4714,2020-09-28,18227.293650768508,254,Elective,2020-10-08,Inconclusive,4714,411,2,15,,,,DISCHARGED -4715,2021-10-25,16766.54955323652,463,Emergency,2021-10-26,Normal,4715,365,1,13,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4716,2022-12-13,29675.609272065525,372,Elective,2022-12-29,Normal,4716,499,3,24,,,,DISCHARGED -4717,2020-05-22,7793.002873684877,376,Elective,2020-06-13,Inconclusive,4717,52,0,1,,,,DISCHARGED -4718,2021-10-30,38247.4159056947,361,Urgent,2021-11-28,Normal,4718,407,0,23,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4719,2023-06-14,27378.9578121444,460,Emergency,2023-07-13,Normal,4719,334,3,5,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4720,2021-04-17,46730.34125546061,116,Emergency,2021-05-11,Inconclusive,4720,21,4,27,,,,DISCHARGED -4721,2019-11-01,45004.48681959341,444,Urgent,2019-12-01,Abnormal,4721,29,3,21,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4722,2020-07-07,30613.02617983961,467,Elective,2020-07-28,Inconclusive,4722,190,3,22,,,,DISCHARGED -4723,2018-12-03,20028.446642966417,286,Elective,2018-12-08,Inconclusive,4723,259,1,4,,,,DISCHARGED -4724,2022-08-29,42037.04981711227,368,Emergency,2022-09-09,Normal,4724,204,3,11,,,,DISCHARGED -4725,2020-07-23,9908.6020742283,255,Urgent,2020-08-07,Abnormal,4725,58,0,26,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4726,2022-08-23,44563.627251092,269,Emergency,2022-09-10,Normal,4726,470,2,3,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4727,2020-12-15,11323.672172216708,298,Elective,2021-01-01,Inconclusive,4727,263,1,21,,,,DISCHARGED -4728,2020-06-01,10655.365011588974,494,Emergency,2020-07-01,Inconclusive,4728,465,1,23,,,,DISCHARGED -4729,2019-10-04,20605.67950681002,467,Elective,2019-10-20,Normal,4729,11,4,3,,,,DISCHARGED -4730,2021-04-03,23637.097520143077,385,Urgent,2021-04-16,Abnormal,4730,118,2,4,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -4732,2019-05-28,26461.828113819425,412,Urgent,2019-06-24,Inconclusive,4732,414,1,6,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -4733,2019-10-11,35351.57932895399,204,Emergency,2019-11-05,Inconclusive,4733,461,3,5,,,,DISCHARGED -4734,2022-05-07,32989.73376325554,374,Emergency,2022-05-25,Inconclusive,4734,289,1,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -4735,2019-07-08,11319.770913922222,384,Elective,2019-07-15,Abnormal,4735,337,1,3,,,,DISCHARGED -4736,2023-08-08,18502.49832323408,216,Emergency,,Inconclusive,4736,247,1,12,,,,OPEN -4737,2019-06-20,44832.04245526608,261,Urgent,2019-06-25,Abnormal,4737,353,4,3,,,,DISCHARGED -4738,2019-01-14,39685.20660483933,480,Elective,2019-02-07,Inconclusive,4738,126,1,9,,,,DISCHARGED -4739,2021-12-01,17474.83557494979,207,Emergency,2021-12-07,Abnormal,4739,74,1,19,,,,DISCHARGED -4740,2020-11-04,19906.010323095503,271,Urgent,2020-11-19,Abnormal,4740,360,4,0,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4740,2020-12-13,4096.629047291421,180,Elective,2021-01-11,Inconclusive,8731,203,2,20,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -4741,2022-11-26,23218.789385593624,203,Elective,2022-12-04,Abnormal,4741,48,0,7,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4742,2020-09-04,37015.54834820456,223,Urgent,2020-09-30,Inconclusive,4742,78,4,6,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4743,2020-08-20,9119.90203126037,331,Urgent,2020-09-15,Inconclusive,4743,440,4,4,,,,DISCHARGED -4744,2023-10-20,24682.994113681263,428,Urgent,2023-11-15,Normal,4744,478,1,2,,,,DISCHARGED -4745,2020-09-10,3286.3346975183435,414,Urgent,2020-09-16,Inconclusive,4745,240,1,14,,,,DISCHARGED -4746,2021-08-24,23611.844534264183,418,Elective,2021-09-15,Normal,4746,348,0,26,,,,DISCHARGED -4747,2022-03-02,25464.037106023203,400,Elective,2022-03-19,Inconclusive,4747,153,1,16,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -4748,2022-10-15,31296.703135548185,294,Elective,2022-10-31,Abnormal,4748,273,3,28,,,,DISCHARGED -4749,2020-06-01,31185.679947556677,129,Elective,2020-06-11,Inconclusive,4749,95,1,22,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -4750,2022-09-02,32276.816892239385,442,Urgent,2022-09-12,Abnormal,4750,213,1,12,,,,DISCHARGED -4750,2020-08-20,40701.854828414376,311,Urgent,2020-09-02,Inconclusive,8446,293,3,14,,,,DISCHARGED -4751,2020-03-11,22182.21224393951,150,Urgent,2020-03-28,Abnormal,4751,208,0,26,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4752,2023-05-22,47724.93879815555,386,Emergency,,Abnormal,4752,342,3,18,,,,OPEN -4753,2019-09-28,42167.3511310083,170,Emergency,2019-10-21,Normal,4753,87,4,19,,,,DISCHARGED -4754,2022-07-18,27315.231240339,387,Emergency,2022-08-17,Abnormal,4754,305,3,13,,,,DISCHARGED -4755,2020-07-02,25976.634369136154,387,Elective,2020-07-19,Inconclusive,4755,263,2,20,,,,DISCHARGED -4756,2022-06-05,2116.091188013396,457,Elective,2022-06-21,Abnormal,4756,424,4,12,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4756,2022-08-24,29093.420600003414,341,Urgent,2022-09-17,Abnormal,6487,389,1,11,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4757,2021-10-23,21919.31731410046,273,Emergency,2021-10-27,Abnormal,4757,324,4,23,,,,DISCHARGED -4758,2021-04-23,20225.089529440644,484,Elective,2021-05-13,Abnormal,4758,427,0,28,,,,DISCHARGED -4759,2022-12-05,41479.29402464011,249,Urgent,2022-12-19,Abnormal,4759,376,0,22,,,,DISCHARGED -4760,2020-07-15,26310.427113690665,451,Urgent,2020-08-06,Inconclusive,4760,319,3,8,,,,DISCHARGED -4761,2021-01-27,25081.58343532231,208,Urgent,2021-02-08,Inconclusive,4761,156,4,26,,,,DISCHARGED -4762,2022-12-20,47834.18677622168,145,Emergency,2023-01-09,Inconclusive,4762,155,1,2,,,,DISCHARGED -4763,2020-11-10,11178.773991453592,377,Elective,2020-12-04,Inconclusive,4763,138,0,29,,,,DISCHARGED -4764,2019-09-24,43304.70205858663,180,Urgent,2019-10-03,Normal,4764,120,1,10,,,,DISCHARGED -4765,2021-12-26,15964.414399431033,228,Urgent,2022-01-14,Inconclusive,4765,64,2,9,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4766,2018-11-17,27390.08492584137,206,Urgent,2018-12-14,Inconclusive,4766,106,0,0,,,,DISCHARGED -4767,2020-09-10,44044.29623223332,313,Urgent,2020-09-12,Normal,4767,146,3,16,,,,DISCHARGED -4768,2019-09-15,45434.06100711771,171,Urgent,2019-10-13,Normal,4768,136,2,27,,,,DISCHARGED -4769,2019-04-22,35483.873350234964,180,Urgent,2019-04-30,Normal,4769,410,4,25,,,,DISCHARGED -4771,2022-12-19,49006.69594076405,362,Emergency,2023-01-04,Abnormal,4771,161,1,12,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -4772,2022-01-27,2093.8076498385026,447,Emergency,2022-01-28,Abnormal,4772,427,0,13,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4773,2022-01-17,19905.621794415827,441,Emergency,2022-02-14,Inconclusive,4773,451,2,0,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -4773,2020-03-17,37655.16972012383,426,Elective,2020-03-23,Normal,6133,99,2,1,,,,DISCHARGED -4774,2020-09-24,10192.137999418475,470,Urgent,2020-10-13,Normal,4774,337,0,1,,,,DISCHARGED -4775,2019-04-18,34661.37458413516,426,Urgent,2019-04-29,Normal,4775,398,4,6,,,,DISCHARGED -4776,2021-05-30,41089.46410527412,294,Emergency,2021-05-31,Normal,4776,306,4,8,,,,DISCHARGED -4777,2022-06-03,27960.56040290013,477,Urgent,2022-06-18,Inconclusive,4777,140,3,23,,,,DISCHARGED -4778,2019-07-02,1557.3152618268664,217,Elective,2019-07-18,Normal,4778,82,4,3,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4779,2019-10-07,39180.892217324574,470,Urgent,2019-10-20,Inconclusive,4779,176,3,1,,,,DISCHARGED -4780,2020-03-11,44513.842221769424,418,Elective,2020-04-02,Inconclusive,4780,197,2,18,,,,DISCHARGED -4781,2021-10-25,45976.46747093785,338,Emergency,2021-11-21,Abnormal,4781,111,0,25,,,,DISCHARGED -4782,2022-04-14,27186.476813354027,129,Emergency,2022-04-15,Abnormal,4782,55,4,4,,,,DISCHARGED -4784,2020-09-25,46843.73058440118,361,Emergency,2020-10-12,Abnormal,4784,459,3,8,,,,DISCHARGED -4784,2019-07-21,19620.89873063805,133,Elective,2019-08-02,Abnormal,5035,178,2,23,,,,DISCHARGED -4785,2020-08-31,25869.380774231748,244,Emergency,2020-09-05,Normal,4785,420,4,12,,,,DISCHARGED -4786,2020-07-30,34438.91277560099,473,Elective,2020-08-08,Normal,4786,400,1,11,,,,DISCHARGED -4787,2021-10-09,19516.86377852661,131,Emergency,2021-11-04,Abnormal,4787,185,2,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -4788,2021-07-15,35666.449166363185,331,Elective,2021-07-17,Inconclusive,4788,470,4,18,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4789,2022-07-11,1779.160238503723,261,Elective,2022-07-27,Inconclusive,4789,217,2,8,,,,DISCHARGED -4790,2023-04-07,10111.66374508153,340,Urgent,2023-05-03,Abnormal,4790,412,0,9,,,,DISCHARGED -4791,2019-01-24,26674.827831697945,240,Emergency,2019-01-31,Normal,4791,416,0,18,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4792,2022-04-26,26972.049246065337,208,Emergency,2022-05-03,Normal,4792,315,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4792,2023-03-21,13376.613686181898,152,Elective,2023-04-09,Abnormal,7792,474,1,11,,,,DISCHARGED -4792,2020-05-15,22423.161182527616,194,Urgent,2020-05-18,Abnormal,9563,216,0,13,,,,DISCHARGED -4793,2019-09-25,21922.487713310165,135,Urgent,2019-10-05,Inconclusive,4793,119,1,7,,,,DISCHARGED -4794,2019-06-20,25873.92778320435,167,Elective,2019-06-21,Inconclusive,4794,438,0,15,,,,DISCHARGED -4795,2023-08-07,15761.487287695303,463,Emergency,2023-09-01,Normal,4795,393,2,16,,,,DISCHARGED -4796,2023-03-27,35809.342286597835,314,Urgent,2023-04-02,Normal,4796,174,4,19,,,,DISCHARGED -4797,2021-06-29,33733.77515850902,187,Emergency,2021-07-23,Abnormal,4797,22,4,3,,,,DISCHARGED -4798,2019-04-06,26865.104573499037,244,Urgent,2019-04-20,Inconclusive,4798,212,0,5,,,,DISCHARGED -4799,2020-08-18,22566.61369546223,135,Urgent,2020-09-10,Inconclusive,4799,404,4,11,,,,DISCHARGED -4801,2023-03-10,40527.49820073167,166,Emergency,2023-04-07,Abnormal,4801,234,0,27,,,,DISCHARGED -4803,2018-11-25,13677.830944029707,130,Elective,2018-12-11,Normal,4803,12,0,17,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -4804,2019-03-18,12400.812484534872,285,Urgent,2019-04-17,Normal,4804,100,3,6,,,,DISCHARGED -4805,2020-04-30,47757.8458020492,163,Urgent,2020-05-06,Normal,4805,416,3,4,,,,DISCHARGED -4806,2023-08-12,43022.08212283255,459,Urgent,2023-08-24,Abnormal,4806,23,3,9,,,,DISCHARGED -4807,2023-07-29,38674.47530620711,107,Elective,,Abnormal,4807,363,1,5,,,,OPEN -4808,2019-03-04,19345.554359882168,260,Emergency,2019-03-13,Abnormal,4808,10,3,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4809,2019-01-27,33040.93247294721,357,Urgent,2019-02-21,Inconclusive,4809,272,0,13,,,,DISCHARGED -4810,2022-10-09,46113.48098183696,368,Urgent,2022-10-31,Inconclusive,4810,451,2,5,,,,DISCHARGED -4811,2020-10-01,3478.906633093555,318,Elective,2020-10-24,Inconclusive,4811,430,3,29,,,,DISCHARGED -4812,2022-11-02,20463.94854145021,314,Elective,2022-11-05,Abnormal,4812,280,3,13,,,,DISCHARGED -4813,2022-02-09,22394.238647800263,395,Urgent,2022-02-18,Inconclusive,4813,93,2,11,,,,DISCHARGED -4814,2018-12-30,5888.467016121172,386,Elective,2019-01-22,Normal,4814,200,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4815,2022-08-09,46989.40170652176,367,Elective,2022-08-10,Normal,4815,20,1,26,,,,DISCHARGED -4816,2019-12-24,4152.095149606723,289,Urgent,2020-01-16,Inconclusive,4816,339,3,21,,,,DISCHARGED -4817,2020-07-07,28665.647255116924,430,Urgent,2020-07-25,Normal,4817,466,2,25,,,,DISCHARGED -4818,2019-01-07,25236.048908682795,442,Elective,2019-01-18,Abnormal,4818,210,0,11,,,,DISCHARGED -4819,2020-11-10,33090.97809474547,422,Emergency,2020-12-05,Normal,4819,139,4,7,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4820,2021-05-02,12735.568352562894,309,Elective,2021-05-25,Normal,4820,292,1,9,,,,DISCHARGED -4821,2021-01-08,41788.352522771376,160,Urgent,2021-01-21,Inconclusive,4821,297,2,15,,,,DISCHARGED -4822,2023-03-29,12598.404354914288,294,Elective,2023-04-28,Abnormal,4822,400,2,19,,,,DISCHARGED -4824,2019-08-23,9945.889157529677,362,Urgent,2019-08-24,Normal,4824,100,2,25,,,,DISCHARGED -4825,2020-10-26,42289.798280673225,394,Emergency,2020-10-27,Inconclusive,4825,303,3,7,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4826,2022-02-27,48619.51732595202,404,Elective,2022-03-29,Inconclusive,4826,358,4,8,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -4826,2023-03-06,31849.15327022313,370,Urgent,,Normal,8929,27,1,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4827,2021-10-15,43234.33453168871,485,Elective,2021-10-18,Inconclusive,4827,40,0,28,,,,DISCHARGED -4828,2020-06-05,34244.52016086891,434,Urgent,2020-06-12,Normal,4828,354,0,19,,,,DISCHARGED -4829,2021-06-10,37401.626755722034,136,Elective,2021-06-19,Abnormal,4829,302,4,16,,,,DISCHARGED -4829,2019-11-13,4954.618897728081,490,Elective,2019-11-26,Normal,5036,495,2,18,,,,DISCHARGED -4830,2023-10-15,29413.65792502641,447,Urgent,2023-10-16,Normal,4830,145,2,16,,,,DISCHARGED -4831,2019-08-21,27982.12330019868,145,Elective,2019-09-08,Inconclusive,4831,255,2,6,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4832,2021-08-25,23300.429682599923,127,Urgent,2021-09-04,Abnormal,4832,461,2,27,,,,DISCHARGED -4833,2021-06-09,33151.458775961975,418,Urgent,2021-06-21,Normal,4833,226,2,0,,,,DISCHARGED -4834,2020-03-26,7324.03524919629,287,Urgent,2020-03-30,Normal,4834,235,4,26,,,,DISCHARGED -4835,2021-11-12,45373.29538102361,161,Elective,2021-12-10,Abnormal,4835,360,3,19,,,,DISCHARGED -4835,2023-04-05,31266.00192033575,482,Elective,2023-04-20,Normal,7176,379,1,28,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -4836,2020-03-31,40882.135306674034,389,Elective,2020-04-08,Abnormal,4836,454,2,13,,,,DISCHARGED -4837,2023-06-19,41174.49109557084,221,Emergency,,Inconclusive,4837,488,3,16,,,,OPEN -4838,2023-04-30,15612.435738264876,382,Emergency,2023-05-26,Inconclusive,4838,12,0,12,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4839,2021-09-02,29197.806089453534,104,Emergency,2021-09-22,Abnormal,4839,209,4,28,,,,DISCHARGED -4840,2018-11-17,21279.43206267736,300,Urgent,2018-12-09,Normal,4840,228,3,1,,,,DISCHARGED -4841,2021-06-05,47128.48339729499,490,Urgent,2021-06-23,Inconclusive,4841,396,2,26,,,,DISCHARGED -4842,2019-02-18,26252.66577629445,347,Emergency,2019-03-20,Normal,4842,99,2,13,,,,DISCHARGED -4843,2021-06-29,22607.468261507453,196,Elective,2021-07-15,Normal,4843,30,2,0,,,,DISCHARGED -4844,2020-06-29,21148.669896257405,468,Emergency,2020-07-11,Normal,4844,385,3,28,,,,DISCHARGED -4845,2020-06-20,31015.753704444083,479,Emergency,2020-06-29,Abnormal,4845,15,2,4,,,,DISCHARGED -4845,2019-02-13,22549.92608985113,285,Emergency,2019-03-07,Abnormal,7365,136,3,6,,,,DISCHARGED -4846,2022-10-20,28403.851169762514,477,Elective,2022-11-18,Abnormal,4846,328,2,18,,,,DISCHARGED -4847,2019-05-28,32819.85383874983,318,Urgent,2019-06-08,Inconclusive,4847,165,0,13,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4848,2020-01-02,24866.61486577673,459,Emergency,2020-01-05,Normal,4848,458,0,23,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -4849,2021-01-12,28418.366539545976,413,Elective,2021-01-22,Normal,4849,309,1,13,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4850,2019-11-09,14109.793077967,413,Urgent,2019-11-10,Abnormal,4850,439,2,14,,,,DISCHARGED -4851,2022-07-27,4022.4510227645073,220,Urgent,2022-08-17,Inconclusive,4851,469,2,4,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -4852,2022-08-18,13225.683949517475,284,Elective,2022-09-09,Abnormal,4852,480,3,4,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -4853,2021-05-16,25024.587087543347,441,Emergency,2021-05-28,Normal,4853,99,3,28,,,,DISCHARGED -4854,2022-10-01,45498.59510544675,298,Emergency,2022-10-04,Inconclusive,4854,108,2,20,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4855,2021-08-03,21839.95351682588,457,Emergency,2021-08-30,Inconclusive,4855,342,1,23,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4856,2021-09-10,37720.03904281403,324,Elective,2021-10-04,Inconclusive,4856,172,2,1,,,,DISCHARGED -4857,2019-09-14,40872.55506911912,289,Urgent,2019-09-17,Normal,4857,236,3,17,,,,DISCHARGED -4858,2022-12-04,43940.51461084982,209,Urgent,2022-12-08,Normal,4858,161,2,29,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -4859,2022-04-13,48871.042180125696,227,Elective,2022-05-13,Normal,4859,392,3,27,,,,DISCHARGED -4859,2021-11-24,30865.459556694383,415,Emergency,2021-11-26,Abnormal,6465,215,2,23,,,,DISCHARGED -4860,2019-10-06,10619.168166424171,366,Emergency,2019-10-28,Normal,4860,263,4,8,,,,DISCHARGED -4861,2019-10-27,44866.70337557101,218,Emergency,2019-11-05,Normal,4861,262,3,26,,,,DISCHARGED -4862,2022-02-18,31066.96820943338,380,Emergency,2022-02-23,Inconclusive,4862,291,1,27,,,,DISCHARGED -4863,2020-10-14,44117.74185126629,319,Urgent,2020-11-06,Normal,4863,273,4,9,,,,DISCHARGED -4864,2021-12-21,43446.600083663936,438,Urgent,2022-01-15,Abnormal,4864,2,2,25,,,,DISCHARGED -4865,2023-03-09,31836.191541290664,396,Emergency,2023-03-19,Normal,4865,27,3,17,,,,DISCHARGED -4867,2022-10-03,9614.51344548472,435,Emergency,2022-10-22,Normal,4867,325,4,3,,,,DISCHARGED -4868,2021-05-29,2519.905837138157,213,Emergency,2021-06-07,Normal,4868,491,1,7,,,,DISCHARGED -4869,2021-03-31,10659.831948440284,284,Elective,2021-04-16,Inconclusive,4869,427,3,17,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4870,2020-11-21,14185.518865034472,144,Elective,2020-11-28,Abnormal,4870,148,4,19,,,,DISCHARGED -4871,2018-11-17,11555.286129522212,270,Urgent,2018-11-18,Normal,4871,27,4,25,,,,DISCHARGED -4872,2022-08-18,13069.286920754535,335,Urgent,2022-08-25,Normal,4872,487,4,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4873,2023-07-15,11942.10935942674,152,Urgent,2023-08-06,Inconclusive,4873,309,0,28,,,,DISCHARGED -4874,2021-12-14,44753.36868255281,377,Urgent,2021-12-30,Inconclusive,4874,437,2,16,,,,DISCHARGED -4877,2021-02-19,41398.42442888867,174,Emergency,2021-02-23,Abnormal,4877,64,3,15,,,,DISCHARGED -4878,2021-03-21,47817.8793199252,351,Emergency,2021-04-04,Normal,4878,355,3,17,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4880,2020-02-16,22369.625033472166,338,Elective,2020-02-23,Inconclusive,4880,20,3,6,,,,DISCHARGED -4881,2023-02-20,38099.99751747658,208,Urgent,,Normal,4881,251,4,0,,,,OPEN -4882,2023-05-12,47555.486730632285,285,Elective,2023-06-03,Abnormal,4882,234,2,27,,,,DISCHARGED -4883,2019-08-02,17320.901468003278,105,Emergency,2019-09-01,Inconclusive,4883,226,1,0,,,,DISCHARGED -4884,2019-03-26,5708.789191517905,358,Urgent,2019-03-31,Normal,4884,12,3,17,,,,DISCHARGED -4885,2022-12-04,29577.70551981613,287,Emergency,2022-12-25,Inconclusive,4885,312,2,3,,,,DISCHARGED -4886,2020-07-31,45217.52216269627,136,Emergency,2020-08-03,Abnormal,4886,48,2,22,,,,DISCHARGED -4887,2020-08-18,42901.78164618097,270,Emergency,2020-08-29,Abnormal,4887,117,0,19,,,,DISCHARGED -4888,2019-09-06,24358.674061723177,471,Urgent,2019-09-17,Abnormal,4888,53,3,20,,,,DISCHARGED -4889,2019-06-06,1227.13959619763,480,Emergency,2019-06-29,Inconclusive,4889,137,4,19,,,,DISCHARGED -4890,2019-08-23,37787.36243561913,130,Urgent,2019-08-30,Abnormal,4890,52,2,3,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4891,2023-01-12,15591.874971373953,147,Elective,2023-02-07,Normal,4891,43,2,24,,,,DISCHARGED -4892,2020-06-24,14433.02107087807,129,Emergency,2020-07-11,Inconclusive,4892,302,1,5,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -4893,2021-07-02,40076.01069041334,327,Elective,2021-07-14,Abnormal,4893,52,0,27,,,,DISCHARGED -4894,2022-04-11,20342.05896119933,181,Urgent,2022-05-08,Inconclusive,4894,73,2,2,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4895,2023-02-04,49818.51011964355,122,Elective,2023-02-25,Inconclusive,4895,45,2,5,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4896,2018-11-13,22621.535633779225,199,Elective,2018-12-03,Abnormal,4896,12,4,12,,,,DISCHARGED -4897,2020-12-23,27022.14084097524,224,Elective,2020-12-27,Abnormal,4897,164,4,22,,,,DISCHARGED -4898,2021-01-27,27022.65514317058,211,Urgent,2021-02-21,Inconclusive,4898,101,1,6,,,,DISCHARGED -4899,2022-01-06,4405.6917928768,309,Emergency,2022-01-23,Inconclusive,4899,279,1,23,,,,DISCHARGED -4900,2022-10-27,25933.979740503222,194,Urgent,2022-11-12,Abnormal,4900,257,1,28,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4901,2021-11-25,46596.68488234969,165,Urgent,2021-11-28,Inconclusive,4901,469,4,3,,,,DISCHARGED -4902,2018-12-20,31840.875123241007,421,Elective,2019-01-16,Abnormal,4902,336,4,0,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -4903,2019-12-01,31228.268799177007,296,Emergency,2019-12-24,Normal,4903,355,0,5,,,,DISCHARGED -4904,2020-02-25,5236.78445418161,227,Elective,2020-03-09,Normal,4904,397,3,23,,,,DISCHARGED -4906,2022-05-01,26683.8602337913,285,Urgent,2022-05-08,Abnormal,4906,137,3,4,,,,DISCHARGED -4907,2022-09-24,45697.99216232685,378,Emergency,2022-10-20,Inconclusive,4907,162,0,12,,,,DISCHARGED -4908,2019-06-02,48466.94634194745,285,Elective,2019-06-18,Abnormal,4908,408,3,18,,,,DISCHARGED -4909,2022-02-01,8670.193873797494,350,Urgent,2022-02-04,Inconclusive,4909,386,4,3,,,,DISCHARGED -4910,2022-08-28,12191.928817599186,232,Elective,2022-09-22,Inconclusive,4910,110,3,23,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4911,2019-02-27,16141.025412767209,217,Emergency,2019-03-19,Inconclusive,4911,101,4,5,,,,DISCHARGED -4912,2020-05-22,34278.701843560855,434,Emergency,2020-05-23,Abnormal,4912,16,0,12,,,,DISCHARGED -4913,2023-07-15,10041.180942865416,108,Emergency,2023-08-02,Inconclusive,4913,267,1,28,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -4914,2022-05-31,31371.611851722693,361,Urgent,2022-06-23,Abnormal,4914,181,0,4,,,,DISCHARGED -4914,2021-12-14,48138.74552906896,151,Urgent,2021-12-16,Abnormal,7965,371,3,12,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4915,2021-05-24,13124.011818759369,350,Elective,2021-06-17,Abnormal,4915,23,4,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4916,2023-03-09,22673.333511871744,305,Urgent,2023-03-27,Normal,4916,28,3,9,,,,DISCHARGED -4917,2022-01-18,7512.45820506544,392,Emergency,2022-01-20,Normal,4917,170,3,2,,,,DISCHARGED -4918,2021-01-17,40708.82990050067,409,Urgent,2021-01-25,Inconclusive,4918,408,1,22,,,,DISCHARGED -4919,2022-09-17,9471.006301546213,123,Emergency,2022-10-14,Inconclusive,4919,227,3,24,,,,DISCHARGED -4919,2020-10-27,4091.411031022009,108,Elective,2020-11-03,Abnormal,9434,377,1,26,,,,DISCHARGED -4920,2019-12-15,6410.857645006327,337,Emergency,2020-01-13,Abnormal,4920,187,4,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4921,2023-07-19,41402.163548771445,275,Elective,,Inconclusive,4921,345,4,26,,,,OPEN -4922,2022-04-20,36671.00153478959,339,Urgent,2022-05-19,Normal,4922,229,1,11,,,,DISCHARGED -4924,2023-06-29,40337.83430026875,473,Elective,2023-07-05,Inconclusive,4924,320,0,3,,,,DISCHARGED -4925,2022-03-19,29672.12818118183,484,Urgent,2022-04-04,Abnormal,4925,339,4,9,,,,DISCHARGED -4926,2022-10-04,15882.368972394224,124,Elective,2022-10-19,Abnormal,4926,118,0,25,,,,DISCHARGED -4927,2019-03-11,28228.36014032913,498,Emergency,2019-03-24,Normal,4927,155,4,2,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4928,2023-07-10,22476.35308058807,255,Emergency,2023-07-17,Inconclusive,4928,271,4,16,,,,DISCHARGED -4929,2019-07-14,37116.79843394613,104,Elective,2019-07-16,Abnormal,4929,174,2,8,,,,DISCHARGED -4930,2021-09-28,42578.46161360296,438,Urgent,2021-10-15,Normal,4930,464,3,28,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4931,2021-12-05,15192.388100936909,180,Urgent,2021-12-14,Inconclusive,4931,103,3,0,,,,DISCHARGED -4932,2019-11-12,19179.1252763317,214,Emergency,2019-11-26,Inconclusive,4932,91,0,17,,,,DISCHARGED -4933,2019-05-13,39274.51661982424,444,Urgent,2019-05-27,Abnormal,4933,185,3,8,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -4934,2021-09-17,31955.17073343913,121,Urgent,2021-09-19,Inconclusive,4934,459,0,20,,,,DISCHARGED -4935,2022-06-04,12841.909713862437,325,Emergency,2022-06-27,Inconclusive,4935,282,4,19,,,,DISCHARGED -4937,2021-08-11,27768.093538270583,156,Emergency,2021-08-12,Inconclusive,4937,180,2,24,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -4938,2021-10-30,19462.600549146508,334,Emergency,2021-11-04,Normal,4938,169,2,8,,,,DISCHARGED -4938,2020-03-27,21447.9084530032,363,Elective,2020-04-19,Normal,8564,186,4,1,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4939,2019-01-21,45151.2657971579,338,Urgent,2019-01-26,Normal,4939,174,1,18,,,,DISCHARGED -4940,2022-10-25,44454.41031486951,103,Urgent,2022-10-31,Abnormal,4940,221,1,27,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4941,2022-10-30,18262.839840388307,334,Emergency,2022-11-23,Abnormal,4941,232,3,15,,,,DISCHARGED -4942,2020-11-30,17599.750940552694,465,Emergency,2020-12-29,Normal,4942,161,0,2,,,,DISCHARGED -4943,2019-07-04,1470.2176834182706,499,Elective,2019-07-25,Normal,4943,420,2,15,,,,DISCHARGED -4944,2022-06-22,44631.17217248483,241,Urgent,2022-07-11,Abnormal,4944,133,3,20,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4945,2020-04-10,38458.02515621536,394,Elective,2020-04-29,Inconclusive,4945,390,4,12,,,,DISCHARGED -4946,2019-05-06,4397.847075197464,101,Elective,2019-05-28,Normal,4946,479,2,2,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -4947,2020-05-03,34695.128406575284,398,Emergency,2020-05-11,Abnormal,4947,223,0,9,,,,DISCHARGED -4948,2021-09-20,46749.14450753164,234,Urgent,2021-10-04,Inconclusive,4948,152,0,21,,,,DISCHARGED -4949,2020-10-16,40734.688773186674,251,Elective,2020-11-09,Normal,4949,32,1,17,,,,DISCHARGED -4950,2018-11-25,17926.82924262679,142,Elective,2018-12-19,Normal,4950,54,3,5,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -4951,2019-09-12,24949.029982356627,117,Emergency,2019-09-20,Abnormal,4951,441,4,5,,,,DISCHARGED -4952,2023-05-21,30402.67689242605,178,Elective,2023-06-17,Abnormal,4952,6,2,17,,,,DISCHARGED -4953,2020-12-15,33782.6341457172,392,Emergency,2020-12-28,Inconclusive,4953,243,0,5,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -4954,2019-06-22,20465.56884411539,244,Emergency,2019-07-21,Inconclusive,4954,312,2,5,,,,DISCHARGED -4955,2021-08-13,18260.24322967225,130,Elective,2021-09-06,Normal,4955,125,4,21,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -4956,2020-07-12,29504.03590108354,102,Urgent,2020-07-29,Abnormal,4956,11,2,27,,,,DISCHARGED -4957,2020-12-13,20687.874353132564,484,Urgent,2021-01-02,Inconclusive,4957,15,3,12,,,,DISCHARGED -4958,2020-08-10,7967.565101081946,150,Emergency,2020-09-04,Inconclusive,4958,207,1,13,,,,DISCHARGED -4959,2022-08-12,5394.704790248515,410,Elective,2022-08-17,Inconclusive,4959,42,2,20,,,,DISCHARGED -4960,2021-06-29,26671.536560227323,211,Elective,2021-07-02,Inconclusive,4960,372,1,6,,,,DISCHARGED -4962,2022-10-07,4119.267682480317,361,Elective,2022-10-22,Abnormal,4962,483,4,12,,,,DISCHARGED -4963,2021-02-04,40034.05485430158,319,Elective,2021-02-24,Abnormal,4963,460,1,14,,,,DISCHARGED -4964,2021-06-26,32113.887689498133,194,Urgent,2021-07-17,Inconclusive,4964,134,2,11,,,,DISCHARGED -4965,2019-05-12,41801.07980803264,222,Urgent,2019-05-25,Inconclusive,4965,227,2,20,,,,DISCHARGED -4966,2022-08-14,40021.185090564366,280,Emergency,2022-08-22,Normal,4966,110,0,26,,,,DISCHARGED -4967,2023-02-25,39413.12988483545,133,Elective,2023-03-15,Normal,4967,306,2,0,,,,DISCHARGED -4968,2020-06-22,25806.525809774623,447,Urgent,2020-06-29,Abnormal,4968,456,1,27,,,,DISCHARGED -4969,2019-02-08,9984.830480600744,274,Elective,2019-03-05,Abnormal,4969,159,0,24,,,,DISCHARGED -4970,2022-09-21,24706.978084829265,409,Elective,2022-09-26,Inconclusive,4970,330,2,2,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -4971,2020-02-16,9807.40915875448,427,Emergency,2020-02-19,Abnormal,4971,263,2,17,,,,DISCHARGED -4972,2023-03-08,1389.9574172841417,444,Elective,2023-04-05,Abnormal,4972,224,4,25,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4973,2023-05-25,42320.03290103717,241,Emergency,2023-06-01,Normal,4973,470,0,21,,,,DISCHARGED -4974,2019-09-14,29999.16925914993,445,Elective,2019-09-16,Normal,4974,216,4,7,,,,DISCHARGED -4976,2020-02-18,31495.293151648715,455,Urgent,2020-02-26,Abnormal,4976,455,4,1,,,,DISCHARGED -4977,2021-08-02,12425.802418256682,230,Urgent,2021-08-13,Inconclusive,4977,44,4,3,,,,DISCHARGED -4978,2020-04-21,32335.01107537987,290,Urgent,2020-05-14,Abnormal,4978,213,3,17,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4979,2019-07-26,12341.457336988917,132,Elective,2019-08-03,Inconclusive,4979,58,4,27,,,,DISCHARGED -4980,2019-12-28,46166.876044974655,342,Emergency,2020-01-10,Abnormal,4980,131,1,27,,,,DISCHARGED -4983,2023-03-30,22326.324817573524,334,Urgent,,Inconclusive,4983,103,2,24,,,,OPEN -4984,2021-12-28,38261.23038469653,414,Elective,2021-12-30,Normal,4984,194,3,25,,,,DISCHARGED -4985,2022-03-03,27026.1587317018,204,Elective,2022-03-31,Abnormal,4985,412,4,12,,,,DISCHARGED -4986,2020-04-04,30400.641931183494,489,Emergency,2020-04-29,Normal,4986,488,2,14,,,,DISCHARGED -4987,2020-02-05,46008.78300649781,491,Urgent,2020-02-23,Abnormal,4987,156,0,1,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4987,2023-04-04,4429.249919480615,312,Urgent,,Normal,6452,97,0,9,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",OPEN -4988,2020-08-12,11448.019524081265,433,Emergency,2020-09-08,Inconclusive,4988,225,2,1,,,,DISCHARGED -4989,2022-10-13,8739.297294275606,250,Elective,2022-11-09,Inconclusive,4989,411,1,29,,,,DISCHARGED -4990,2022-05-26,41834.21999433544,422,Urgent,2022-06-24,Abnormal,4990,204,2,28,,,,DISCHARGED -4991,2020-04-29,6475.012752915402,492,Elective,2020-05-27,Normal,4991,78,2,20,,,,DISCHARGED -4992,2020-11-23,33278.11896769793,152,Emergency,2020-12-20,Normal,4992,123,3,11,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4994,2021-01-27,17068.19276490547,356,Urgent,2021-02-15,Abnormal,4994,470,0,4,,,,DISCHARGED -4995,2021-12-24,42258.43182597493,343,Urgent,2022-01-18,Inconclusive,4995,427,0,11,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4996,2020-04-05,31009.72570005881,426,Elective,2020-04-15,Inconclusive,4996,217,4,22,,,,DISCHARGED -4997,2023-10-27,45390.9158754624,119,Elective,2023-11-24,Inconclusive,4997,3,2,0,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -4998,2021-11-07,2799.105152247894,173,Elective,2021-11-14,Normal,4998,89,2,27,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4999,2020-05-21,45768.48780730679,492,Elective,2020-05-27,Normal,4999,103,1,1,,,,DISCHARGED -5000,2021-02-27,27840.11569568721,204,Elective,2021-03-24,Normal,5000,392,0,26,,,,DISCHARGED -5001,2021-11-07,45101.040563096685,232,Urgent,2021-11-27,Abnormal,5001,118,1,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5002,2022-04-13,41318.283566753606,290,Urgent,2022-05-02,Abnormal,5002,132,3,26,,,,DISCHARGED -5003,2018-12-18,49422.38164695408,118,Urgent,2019-01-01,Normal,5003,311,4,21,,,,DISCHARGED -5004,2023-08-27,19238.819247691645,367,Urgent,2023-09-11,Normal,5004,95,1,1,,,,DISCHARGED -5005,2019-08-28,32325.18666744932,438,Emergency,2019-09-25,Inconclusive,5005,467,0,15,,,,DISCHARGED -5006,2023-01-06,45780.3645125108,372,Elective,2023-01-23,Normal,5006,433,3,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5007,2021-08-02,48554.41951566858,493,Urgent,2021-08-17,Inconclusive,5007,330,2,25,,,,DISCHARGED -5008,2020-01-11,1827.0934676753616,157,Elective,2020-01-31,Abnormal,5008,142,3,15,,,,DISCHARGED -5009,2023-08-24,6658.184833149132,426,Urgent,2023-09-15,Normal,5009,287,1,5,,,,DISCHARGED -5010,2023-04-30,2344.6959967171133,156,Emergency,2023-05-26,Abnormal,5010,27,0,12,,,,DISCHARGED -5011,2022-10-03,40303.68903222805,411,Urgent,2022-10-07,Normal,5011,277,1,11,,,,DISCHARGED -5012,2020-06-16,32497.72493616383,389,Emergency,2020-07-07,Abnormal,5012,232,2,22,,,,DISCHARGED -5013,2023-08-22,40252.728996203645,221,Elective,2023-09-15,Normal,5013,16,2,9,,,,DISCHARGED -5014,2023-07-17,48634.596153236285,340,Urgent,2023-07-22,Abnormal,5014,58,0,4,,,,DISCHARGED -5016,2021-11-02,31428.76939117009,476,Emergency,2021-11-14,Inconclusive,5016,89,4,7,,,,DISCHARGED -5018,2023-08-03,26450.41573977773,234,Emergency,2023-08-31,Abnormal,5018,491,3,5,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -5019,2023-04-17,19755.464369027926,319,Emergency,2023-05-17,Inconclusive,5019,198,3,4,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5020,2019-06-04,32898.675566542304,358,Urgent,2019-06-25,Normal,5020,361,2,19,,,,DISCHARGED -5022,2021-02-12,37912.48196944748,144,Urgent,2021-02-24,Abnormal,5022,440,1,21,,,,DISCHARGED -5023,2022-09-03,23658.07090227202,469,Emergency,2022-09-18,Abnormal,5023,25,1,5,,,,DISCHARGED -5024,2019-04-21,9848.800176294424,436,Urgent,2019-05-05,Abnormal,5024,24,4,21,,,,DISCHARGED -5025,2019-04-18,6481.013932257771,347,Emergency,2019-05-10,Abnormal,5025,393,1,16,,,,DISCHARGED -5026,2019-01-08,15900.203074249472,206,Elective,2019-02-04,Abnormal,5026,300,3,5,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5028,2019-12-20,25043.463075238924,476,Elective,2019-12-27,Inconclusive,5028,338,1,16,,,,DISCHARGED -5028,2019-09-10,39014.16006592387,283,Urgent,2019-09-25,Abnormal,6087,266,4,4,,,,DISCHARGED -5029,2022-01-29,23249.348656701943,371,Elective,2022-02-27,Abnormal,5029,460,3,22,,,,DISCHARGED -5030,2021-05-23,4432.619265757337,376,Urgent,2021-05-25,Inconclusive,5030,180,1,16,,,,DISCHARGED -5031,2023-09-01,16215.409459467704,264,Emergency,,Inconclusive,5031,455,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -5032,2022-04-14,36235.8313895375,119,Emergency,2022-05-05,Inconclusive,5032,359,2,16,,,,DISCHARGED -5033,2022-02-14,37061.37443528362,428,Emergency,2022-03-11,Abnormal,5033,67,2,28,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -5034,2019-08-05,13730.803000400696,372,Urgent,2019-08-21,Inconclusive,5034,494,2,12,,,,DISCHARGED -5037,2021-02-18,46722.35618237897,227,Elective,2021-03-10,Abnormal,5037,350,1,21,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5038,2020-03-29,35777.79012758474,407,Urgent,2020-04-02,Inconclusive,5038,411,4,6,,,,DISCHARGED -5039,2019-07-04,6098.670135229599,111,Emergency,2019-07-15,Inconclusive,5039,458,3,21,,,,DISCHARGED -5040,2022-03-18,15439.168072385057,271,Emergency,2022-04-05,Normal,5040,490,0,20,,,,DISCHARGED -5041,2021-04-01,26640.91665173258,481,Urgent,2021-04-09,Inconclusive,5041,320,2,5,,,,DISCHARGED -5042,2023-04-18,20813.306560139998,146,Elective,2023-04-25,Abnormal,5042,48,2,28,,,,DISCHARGED -5043,2019-06-09,40757.3551857576,235,Urgent,2019-07-05,Inconclusive,5043,174,0,13,,,,DISCHARGED -5044,2020-02-04,17321.140036717312,251,Emergency,2020-02-23,Inconclusive,5044,51,0,15,,,,DISCHARGED -5045,2021-03-02,16378.781678607344,240,Emergency,2021-03-24,Abnormal,5045,101,1,2,,,,DISCHARGED -5046,2019-11-25,43590.07167383812,242,Elective,2019-12-19,Abnormal,5046,215,3,8,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5047,2019-07-31,43062.1083929731,353,Emergency,2019-08-21,Abnormal,5047,437,2,14,,,,DISCHARGED -5048,2023-06-28,49667.36702889071,173,Emergency,2023-07-19,Normal,5048,187,4,20,,,,DISCHARGED -5049,2022-04-28,8651.44419487702,482,Emergency,2022-04-29,Abnormal,5049,56,1,17,,,,DISCHARGED -5050,2021-10-19,24653.17843045977,473,Urgent,2021-10-22,Abnormal,5050,46,1,29,,,,DISCHARGED -5051,2021-12-03,14532.24324716304,318,Emergency,2021-12-31,Abnormal,5051,158,4,29,,,,DISCHARGED -5051,2021-09-03,19543.338862425404,392,Elective,2021-09-12,Inconclusive,9567,488,4,27,,,,DISCHARGED -5052,2020-07-02,35209.37418975663,281,Urgent,2020-07-14,Inconclusive,5052,173,4,9,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5053,2022-03-03,11716.8938024626,489,Elective,2022-03-24,Normal,5053,241,0,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -5054,2022-12-08,29907.82524173962,270,Emergency,2022-12-11,Abnormal,5054,281,2,22,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5055,2021-09-20,36691.33524644881,270,Urgent,2021-10-15,Normal,5055,240,0,2,,,,DISCHARGED -5056,2019-04-14,46421.53823861062,302,Elective,2019-04-28,Inconclusive,5056,369,2,0,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5057,2023-08-27,38177.68248968008,143,Elective,,Inconclusive,5057,4,0,2,,,,OPEN -5058,2022-08-21,36926.365646650935,419,Emergency,2022-09-19,Inconclusive,5058,83,3,24,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5059,2019-04-07,8347.554655944987,195,Urgent,2019-04-26,Inconclusive,5059,307,2,4,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5060,2019-05-15,8805.07043002689,372,Elective,2019-06-01,Abnormal,5060,360,1,6,,,,DISCHARGED -5061,2022-03-26,34517.935654574845,164,Elective,2022-04-21,Normal,5061,458,2,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5062,2021-01-22,25501.58685798513,418,Elective,2021-01-23,Inconclusive,5062,247,2,3,,,,DISCHARGED -5063,2023-02-20,49773.16757337185,195,Elective,2023-03-03,Abnormal,5063,53,2,16,,,,DISCHARGED -5064,2021-08-07,21077.736822304803,241,Urgent,2021-08-28,Normal,5064,160,3,2,,,,DISCHARGED -5065,2023-07-16,9929.621567079314,227,Emergency,2023-08-06,Normal,5065,433,0,22,,,,DISCHARGED -5065,2021-07-26,44181.52901909563,408,Emergency,2021-08-13,Inconclusive,5232,421,1,3,,,,DISCHARGED -5066,2022-01-01,5357.480502278246,220,Urgent,2022-01-14,Normal,5066,410,0,1,,,,DISCHARGED -5067,2019-01-22,8400.693581613523,369,Elective,2019-02-06,Normal,5067,225,0,13,,,,DISCHARGED -5068,2020-02-05,1547.43596985545,192,Urgent,2020-02-26,Normal,5068,14,4,4,,,,DISCHARGED -5069,2019-12-22,14675.698065375498,255,Emergency,2019-12-24,Inconclusive,5069,223,3,20,,,,DISCHARGED -5070,2023-02-07,31911.16659650923,329,Elective,2023-03-01,Inconclusive,5070,60,4,1,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -5071,2021-03-21,34979.90735804192,177,Urgent,2021-03-25,Normal,5071,121,3,14,,,,DISCHARGED -5071,2022-04-25,16457.331396161262,324,Emergency,2022-04-26,Inconclusive,7779,276,0,10,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5072,2019-07-29,43930.40305430638,183,Urgent,2019-08-07,Inconclusive,5072,45,0,21,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -5073,2022-02-09,18749.017023701683,312,Emergency,2022-02-17,Abnormal,5073,452,3,9,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5074,2023-06-14,48981.86363204137,102,Urgent,2023-06-16,Normal,5074,389,0,19,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5075,2021-08-24,38789.5203521596,154,Emergency,2021-09-03,Normal,5075,293,0,29,,,,DISCHARGED -5076,2022-04-03,5046.104099369172,297,Emergency,2022-04-24,Normal,5076,61,1,0,,,,DISCHARGED -5077,2020-05-03,36609.05501416365,304,Urgent,2020-05-15,Abnormal,5077,85,4,18,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5078,2019-08-03,22194.24856586507,384,Emergency,2019-08-24,Normal,5078,445,4,13,,,,DISCHARGED -5079,2020-05-14,9943.541969518485,176,Emergency,2020-06-08,Normal,5079,209,4,24,,,,DISCHARGED -5079,2023-06-27,33985.19506309106,173,Emergency,2023-07-04,Inconclusive,8063,77,2,25,,,,DISCHARGED -5080,2023-06-08,15957.61024078509,318,Urgent,,Normal,5080,201,1,22,,,,OPEN -5081,2023-02-02,47477.69218200944,169,Emergency,2023-02-23,Normal,5081,301,4,28,,,,DISCHARGED -5082,2023-06-03,38778.715143378366,135,Emergency,2023-06-06,Normal,5082,396,4,21,,,,DISCHARGED -5083,2022-01-01,29847.57604500654,182,Emergency,2022-01-11,Abnormal,5083,222,1,13,,,,DISCHARGED -5084,2022-03-04,34998.579654995534,391,Emergency,2022-04-01,Abnormal,5084,221,0,0,,,,DISCHARGED -5085,2020-11-12,27481.08429671334,496,Emergency,2020-11-22,Inconclusive,5085,2,4,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5086,2023-08-31,25488.5545187998,439,Urgent,2023-09-28,Abnormal,5086,477,0,28,,,,DISCHARGED -5087,2020-01-30,10942.63642788955,460,Emergency,2020-02-23,Normal,5087,5,4,8,,,,DISCHARGED -5088,2020-07-27,2173.0143073560757,394,Urgent,2020-08-19,Normal,5088,92,3,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -5089,2022-09-14,17914.79923597715,393,Elective,2022-10-03,Abnormal,5089,7,2,13,,,,DISCHARGED -5090,2020-05-12,47551.64257521588,450,Elective,2020-05-19,Normal,5090,427,4,12,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -5091,2021-12-08,14287.817991049107,311,Emergency,2022-01-04,Abnormal,5091,492,3,12,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5092,2020-04-07,38135.39035605555,358,Urgent,2020-04-29,Abnormal,5092,234,1,5,,,,DISCHARGED -5093,2021-07-12,6379.431468206156,227,Emergency,2021-08-04,Abnormal,5093,107,3,6,,,,DISCHARGED -5094,2020-02-22,5690.434388051457,256,Emergency,2020-03-23,Normal,5094,160,1,1,,,,DISCHARGED -5095,2020-12-04,7397.102105046514,257,Urgent,2020-12-15,Abnormal,5095,208,4,25,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -5096,2022-03-10,39303.05191863163,127,Urgent,2022-03-28,Abnormal,5096,239,1,7,,,,DISCHARGED -5097,2021-04-02,44220.670477086685,255,Urgent,2021-05-01,Abnormal,5097,330,3,23,,,,DISCHARGED -5097,2022-06-14,1586.6443087453392,265,Elective,2022-07-12,Inconclusive,9507,332,2,5,,,,DISCHARGED -5098,2022-04-17,7889.07978197884,120,Emergency,2022-04-24,Inconclusive,5098,49,0,24,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5099,2020-11-05,35659.62034519237,470,Emergency,2020-11-14,Abnormal,5099,10,0,2,,,,DISCHARGED -5100,2021-09-29,22479.162705327715,209,Urgent,2021-10-21,Normal,5100,350,2,17,,,,DISCHARGED -5101,2022-06-04,32815.29997796043,209,Emergency,2022-06-21,Abnormal,5101,155,0,17,,,,DISCHARGED -5102,2022-06-23,29329.13332650798,376,Elective,2022-07-22,Normal,5102,491,4,21,,,,DISCHARGED -5103,2022-05-28,41247.83920941289,420,Elective,2022-06-10,Inconclusive,5103,69,4,22,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5104,2020-03-02,14684.637807789368,131,Elective,2020-03-18,Abnormal,5104,168,3,5,,,,DISCHARGED -5105,2021-04-13,32750.13637163835,256,Emergency,2021-05-01,Normal,5105,271,3,10,,,,DISCHARGED -5106,2023-01-23,2348.075702915341,264,Elective,,Normal,5106,67,1,2,,,,OPEN -5107,2021-12-06,2501.326828908028,110,Urgent,2022-01-03,Abnormal,5107,354,3,15,,,,DISCHARGED -5108,2021-05-01,36833.41412767465,387,Urgent,2021-05-28,Abnormal,5108,251,4,4,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5109,2019-06-12,3501.2265960132518,281,Emergency,2019-06-19,Inconclusive,5109,47,3,23,,,,DISCHARGED -5110,2021-11-07,18809.576224856806,231,Elective,2021-12-03,Abnormal,5110,183,0,21,,,,DISCHARGED -5111,2022-09-23,34902.5596901161,192,Emergency,2022-10-18,Normal,5111,319,1,1,,,,DISCHARGED -5112,2023-05-05,5279.053806338706,241,Urgent,2023-05-08,Abnormal,5112,186,1,14,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5113,2019-12-30,22266.724771904683,351,Urgent,2020-01-04,Inconclusive,5113,89,4,15,,,,DISCHARGED -5114,2022-09-24,22638.04524794325,148,Elective,2022-10-03,Normal,5114,445,3,6,,,,DISCHARGED -5115,2022-03-28,22186.365924970083,483,Urgent,2022-04-26,Abnormal,5115,331,0,15,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -5116,2022-07-22,38097.37219821762,238,Elective,2022-08-17,Inconclusive,5116,138,3,23,,,,DISCHARGED -5117,2019-03-18,17218.957061815156,314,Elective,2019-03-22,Normal,5117,356,2,3,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -5118,2021-08-02,17817.20960979308,337,Emergency,2021-08-26,Abnormal,5118,88,3,27,,,,DISCHARGED -5119,2021-01-19,2191.062771318586,488,Elective,2021-02-02,Inconclusive,5119,273,4,15,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5120,2019-12-24,45561.65116025382,461,Elective,2020-01-13,Normal,5120,18,3,16,,,,DISCHARGED -5121,2022-02-06,39230.97300259444,316,Elective,2022-03-03,Abnormal,5121,470,1,1,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5122,2020-09-17,12606.224904969233,153,Elective,2020-10-05,Inconclusive,5122,310,0,15,,,,DISCHARGED -5123,2019-04-27,5147.784802637132,160,Urgent,2019-05-13,Normal,5123,357,4,3,,,,DISCHARGED -5124,2022-02-13,32504.536911314022,434,Urgent,2022-03-14,Abnormal,5124,373,2,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -5125,2023-06-25,30588.68330087086,217,Elective,2023-07-04,Normal,5125,465,0,17,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -5126,2020-07-09,28479.198753920235,354,Urgent,2020-08-07,Inconclusive,5126,153,0,5,,,,DISCHARGED -5126,2023-10-09,12379.134624294014,380,Urgent,,Normal,9993,389,1,17,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,OPEN -5127,2023-07-22,13650.43845961381,245,Emergency,2023-08-05,Abnormal,5127,259,1,27,,,,DISCHARGED -5128,2019-05-27,1259.7194959308604,163,Emergency,2019-06-21,Normal,5128,107,1,6,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -5129,2021-07-22,7922.259374639687,371,Elective,2021-07-28,Abnormal,5129,370,4,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5130,2023-02-03,22474.64327157401,119,Urgent,,Abnormal,5130,284,3,18,,,,OPEN -5132,2023-08-23,49757.18985756018,223,Urgent,2023-08-24,Normal,5132,58,0,8,,,,DISCHARGED -5134,2021-12-13,26996.77570777713,364,Emergency,2021-12-30,Normal,5134,124,3,28,,,,DISCHARGED -5135,2020-01-25,28027.16780207578,408,Urgent,2020-02-16,Normal,5135,353,3,3,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5136,2019-12-28,28590.61771260386,151,Urgent,2020-01-16,Normal,5136,272,1,13,,,,DISCHARGED -5137,2023-05-20,26210.540675083856,193,Emergency,2023-06-05,Normal,5137,106,3,4,,,,DISCHARGED -5138,2022-11-06,1450.6409243881474,472,Emergency,2022-11-29,Abnormal,5138,298,0,24,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5139,2019-04-03,25719.2087967364,390,Elective,2019-04-19,Normal,5139,244,0,6,,,,DISCHARGED -5140,2023-10-09,19637.997960753062,142,Emergency,,Normal,5140,335,2,7,,,,OPEN -5141,2019-05-18,15964.45356667402,107,Urgent,2019-06-12,Abnormal,5141,449,4,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5142,2023-06-01,11720.311114443684,285,Emergency,2023-06-19,Abnormal,5142,417,3,26,,,,DISCHARGED -5143,2019-12-01,15550.561758010905,424,Urgent,2019-12-05,Normal,5143,246,4,18,,,,DISCHARGED -5144,2022-02-24,28278.66995987896,483,Urgent,2022-03-26,Inconclusive,5144,7,4,26,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -5145,2019-09-04,3546.9628249270777,150,Urgent,2019-09-27,Normal,5145,140,4,10,,,,DISCHARGED -5146,2019-12-26,18130.193051042563,469,Urgent,2020-01-21,Normal,5146,361,4,19,,,,DISCHARGED -5147,2019-03-05,12313.0155937923,273,Urgent,2019-03-07,Inconclusive,5147,7,0,22,,,,DISCHARGED -5148,2022-01-11,37655.765650130736,176,Emergency,2022-01-14,Abnormal,5148,477,3,3,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -5149,2021-06-30,10735.966504179169,327,Elective,2021-07-05,Normal,5149,351,2,17,,,,DISCHARGED -5150,2019-01-21,1272.0514204487647,234,Urgent,2019-01-28,Normal,5150,483,4,13,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -5151,2019-07-15,31483.55808887903,117,Emergency,2019-08-09,Abnormal,5151,494,2,25,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5153,2023-06-21,36262.05016221882,269,Urgent,2023-07-15,Inconclusive,5153,93,0,5,,,,DISCHARGED -5154,2019-05-04,28483.47475783277,424,Elective,2019-05-08,Inconclusive,5154,320,0,24,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5155,2020-02-02,46501.41107778,266,Elective,2020-02-23,Inconclusive,5155,426,1,15,,,,DISCHARGED -5156,2023-01-15,1981.0896297497384,279,Elective,2023-02-12,Inconclusive,5156,38,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5157,2020-12-26,30424.24670835349,163,Elective,2020-12-27,Normal,5157,80,1,0,,,,DISCHARGED -5158,2020-05-04,41821.08228991133,243,Urgent,2020-05-29,Inconclusive,5158,186,2,7,,,,DISCHARGED -5160,2023-09-02,40563.460539870015,133,Elective,2023-09-15,Inconclusive,5160,83,3,0,,,,DISCHARGED -5160,2021-04-21,20748.42806274156,235,Urgent,2021-05-02,Inconclusive,6161,87,1,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -5161,2018-11-28,49028.35142291023,227,Elective,2018-12-01,Normal,5161,241,0,18,,,,DISCHARGED -5161,2023-03-19,24200.289586990104,401,Elective,2023-03-22,Normal,7429,341,4,20,,,,DISCHARGED -5162,2020-08-14,32124.16588443249,115,Urgent,2020-09-10,Inconclusive,5162,92,2,28,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5163,2022-12-01,14576.052719707131,442,Emergency,2022-12-22,Abnormal,5163,85,0,27,,,,DISCHARGED -5164,2022-04-09,10645.37550774106,199,Emergency,2022-04-23,Abnormal,5164,43,3,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -5165,2023-08-13,35750.63106481579,160,Elective,,Inconclusive,5165,136,4,26,,,,OPEN -5166,2022-05-01,37856.31886153119,486,Emergency,2022-05-07,Normal,5166,420,3,9,,,,DISCHARGED -5168,2022-05-14,28673.253814415508,131,Elective,2022-06-02,Abnormal,5168,73,3,17,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -5170,2023-02-20,36704.28690427285,371,Urgent,,Abnormal,5170,35,4,11,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -5171,2023-03-23,15910.791599315406,451,Urgent,2023-04-02,Abnormal,5171,100,4,27,,,,DISCHARGED -5172,2023-02-15,32946.37386702329,173,Urgent,2023-03-02,Normal,5172,475,3,16,,,,DISCHARGED -5173,2021-09-27,9281.857561464249,159,Elective,2021-10-18,Inconclusive,5173,155,2,0,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -5174,2023-02-07,36496.49084044139,181,Emergency,2023-02-09,Inconclusive,5174,425,4,7,,,,DISCHARGED -5175,2021-12-16,22699.119822200057,183,Urgent,2022-01-10,Abnormal,5175,254,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5176,2020-03-23,25268.53697640309,401,Elective,2020-03-31,Inconclusive,5176,170,1,25,,,,DISCHARGED -5177,2019-02-08,47097.50897390788,117,Urgent,2019-02-15,Normal,5177,468,2,9,,,,DISCHARGED -5178,2023-01-17,47403.274614423295,333,Emergency,,Normal,5178,215,4,17,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",OPEN -5181,2023-06-02,29197.717478553037,331,Emergency,2023-06-13,Abnormal,5181,169,4,28,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5181,2023-03-11,26808.23001967882,422,Urgent,,Abnormal,7476,251,2,8,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -5182,2023-07-10,14897.824044181014,329,Elective,,Abnormal,5182,359,1,24,,,,OPEN -5183,2022-01-18,29778.3100976944,170,Emergency,2022-02-13,Normal,5183,321,3,1,,,,DISCHARGED -5184,2022-04-17,12652.7367568972,263,Emergency,2022-05-09,Abnormal,5184,54,0,2,,,,DISCHARGED -5185,2022-02-17,48514.63488666102,175,Emergency,2022-03-07,Inconclusive,5185,455,4,1,,,,DISCHARGED -5186,2023-09-18,1172.659953875504,379,Elective,2023-10-16,Inconclusive,5186,431,1,5,,,,DISCHARGED -5187,2019-10-11,26449.156255032744,151,Emergency,2019-10-17,Abnormal,5187,90,0,22,,,,DISCHARGED -5188,2023-02-07,9413.999977684554,186,Urgent,,Abnormal,5188,277,2,11,,,,OPEN -5189,2022-02-18,18386.73821567868,254,Emergency,2022-02-26,Inconclusive,5189,100,4,21,,,,DISCHARGED -5190,2018-12-07,39661.33407160865,364,Elective,2018-12-31,Inconclusive,5190,154,3,18,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -5191,2021-11-11,44866.916638648734,101,Elective,2021-11-26,Abnormal,5191,376,2,27,,,,DISCHARGED -5192,2021-09-27,34945.33717731973,290,Urgent,2021-10-22,Inconclusive,5192,348,4,14,,,,DISCHARGED -5195,2021-08-15,6116.923875134586,343,Elective,2021-08-25,Inconclusive,5195,450,1,18,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5196,2019-03-13,23142.126357517936,411,Urgent,2019-03-28,Abnormal,5196,363,0,11,,,,DISCHARGED -5197,2023-01-31,18687.903357694744,458,Emergency,2023-02-13,Normal,5197,140,0,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5198,2022-04-29,32627.342223406,335,Elective,2022-05-06,Abnormal,5198,172,4,15,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5199,2019-09-25,1926.6662530599983,449,Urgent,2019-10-24,Normal,5199,9,2,1,,,,DISCHARGED -5200,2020-05-05,9907.394047069422,446,Urgent,2020-05-17,Inconclusive,5200,227,3,10,,,,DISCHARGED -5201,2021-09-06,29473.003230377253,295,Elective,2021-09-12,Normal,5201,264,1,11,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -5202,2022-08-21,48716.023366180765,399,Emergency,2022-09-13,Abnormal,5202,437,4,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5203,2021-07-24,7038.8277432283,304,Emergency,2021-08-04,Normal,5203,247,1,26,,,,DISCHARGED -5204,2023-06-04,22876.63714225199,126,Emergency,2023-06-29,Normal,5204,246,0,26,,,,DISCHARGED -5205,2023-07-25,15114.21953923833,443,Urgent,2023-08-03,Abnormal,5205,154,3,23,,,,DISCHARGED -5206,2019-09-18,25492.354986840543,458,Emergency,2019-09-25,Normal,5206,33,1,5,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -5207,2021-11-23,19623.135690572144,344,Urgent,2021-12-22,Inconclusive,5207,498,4,24,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5207,2023-03-17,40257.55988229859,220,Urgent,2023-04-11,Inconclusive,7625,128,3,10,,,,DISCHARGED -5208,2022-06-16,26244.70606168459,372,Urgent,2022-06-28,Normal,5208,159,2,20,,,,DISCHARGED -5209,2021-08-08,26250.09268002844,397,Emergency,2021-09-05,Abnormal,5209,88,4,9,,,,DISCHARGED -5210,2023-02-14,9363.156577558748,379,Urgent,,Inconclusive,5210,92,1,3,,,,OPEN -5211,2019-02-18,47696.27664125714,243,Emergency,2019-03-18,Abnormal,5211,326,3,8,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -5212,2021-09-02,24843.09902959749,493,Emergency,2021-09-25,Normal,5212,240,4,11,,,,DISCHARGED -5213,2023-05-19,27233.90963192384,487,Urgent,,Inconclusive,5213,322,3,9,,,,OPEN -5214,2020-08-06,39186.46235653345,105,Elective,2020-08-10,Inconclusive,5214,467,3,26,,,,DISCHARGED -5215,2022-02-12,35023.68912553508,396,Urgent,2022-02-22,Abnormal,5215,403,3,13,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5217,2023-09-30,25258.915221257168,203,Urgent,2023-10-14,Normal,5217,116,1,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5218,2019-08-09,12620.191027203891,498,Emergency,2019-08-31,Normal,5218,93,4,0,,,,DISCHARGED -5219,2021-11-29,46691.96896180026,135,Emergency,2021-12-05,Abnormal,5219,162,0,4,,,,DISCHARGED -5220,2019-12-22,18212.235553405266,150,Elective,2020-01-16,Abnormal,5220,98,0,15,,,,DISCHARGED -5223,2020-04-23,1703.5574370888792,313,Emergency,2020-05-20,Abnormal,5223,112,1,4,,,,DISCHARGED -5224,2020-11-18,43955.43534389099,412,Emergency,2020-12-11,Abnormal,5224,358,1,4,,,,DISCHARGED -5225,2020-07-28,40749.89977643832,449,Emergency,2020-08-16,Abnormal,5225,90,3,28,,,,DISCHARGED -5226,2020-06-11,46801.18080261245,133,Urgent,2020-06-21,Abnormal,5226,345,4,17,,,,DISCHARGED -5227,2018-12-28,16591.810883957984,389,Urgent,2019-01-14,Normal,5227,205,4,28,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5228,2023-02-04,39914.34095318098,128,Urgent,2023-02-16,Inconclusive,5228,16,2,5,,,,DISCHARGED -5229,2020-07-30,33977.2254630983,397,Emergency,2020-08-18,Abnormal,5229,273,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5230,2021-03-08,29265.9523186035,474,Urgent,2021-03-11,Abnormal,5230,172,0,17,,,,DISCHARGED -5231,2022-06-14,22219.37329418572,453,Urgent,2022-07-01,Normal,5231,115,2,27,,,,DISCHARGED -5233,2021-11-17,24876.76609000926,138,Emergency,2021-11-21,Inconclusive,5233,348,2,9,,,,DISCHARGED -5234,2023-08-29,43069.08045232865,250,Elective,2023-08-30,Normal,5234,467,0,14,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5235,2019-08-24,20063.468608215764,288,Elective,2019-09-14,Abnormal,5235,180,0,29,,,,DISCHARGED -5236,2022-10-17,12071.366195923749,161,Elective,2022-11-09,Inconclusive,5236,90,2,23,,,,DISCHARGED -5237,2019-10-25,2751.955990536877,347,Emergency,2019-10-26,Abnormal,5237,81,4,21,,,,DISCHARGED -5237,2019-12-29,37020.925858857256,379,Urgent,2020-01-13,Normal,9632,323,2,10,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5238,2022-09-26,18538.95006147664,495,Urgent,2022-09-28,Abnormal,5238,448,3,25,,,,DISCHARGED -5239,2019-03-24,48708.8706878804,293,Urgent,2019-03-27,Inconclusive,5239,113,3,27,,,,DISCHARGED -5240,2019-06-17,41039.152467523294,145,Elective,2019-07-04,Inconclusive,5240,256,3,26,,,,DISCHARGED -5240,2023-05-13,39858.605919572365,243,Urgent,2023-05-28,Normal,7432,57,1,18,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5241,2022-06-27,2907.0567740026404,311,Emergency,2022-07-16,Inconclusive,5241,153,3,24,,,,DISCHARGED -5242,2020-08-17,46424.14934130371,270,Urgent,2020-09-10,Inconclusive,5242,364,4,12,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5243,2021-06-01,12021.925633727167,307,Urgent,2021-06-12,Abnormal,5243,403,1,26,,,,DISCHARGED -5244,2020-09-17,18219.643450890868,195,Emergency,2020-10-13,Inconclusive,5244,115,1,26,,,,DISCHARGED -5245,2023-09-23,44044.824301646346,500,Urgent,2023-10-02,Inconclusive,5245,342,3,29,,,,DISCHARGED -5246,2019-10-30,32393.922225869275,360,Urgent,2019-11-01,Abnormal,5246,265,2,19,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -5248,2020-11-20,38192.24708130329,444,Elective,2020-12-05,Normal,5248,314,0,2,,,,DISCHARGED -5248,2021-01-23,9054.056612162198,294,Emergency,2021-02-06,Inconclusive,7009,202,2,15,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5249,2019-04-29,31138.531570528456,246,Emergency,2019-05-28,Abnormal,5249,40,2,6,,,,DISCHARGED -5250,2022-12-09,9837.2564619063,294,Urgent,2022-12-20,Inconclusive,5250,104,1,11,,,,DISCHARGED -5251,2022-06-26,6243.818912741213,121,Elective,2022-06-28,Inconclusive,5251,388,1,28,,,,DISCHARGED -5252,2019-05-29,46435.406990034,105,Elective,2019-06-23,Normal,5252,377,1,14,,,,DISCHARGED -5253,2020-12-07,33714.713895835084,364,Elective,2020-12-28,Normal,5253,192,4,29,,,,DISCHARGED -5254,2021-03-19,47482.47335979292,211,Urgent,2021-03-27,Inconclusive,5254,400,4,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5255,2020-08-18,11390.808640513238,125,Urgent,2020-09-13,Normal,5255,277,0,22,,,,DISCHARGED -5256,2022-02-27,47406.65124654162,430,Urgent,2022-03-26,Normal,5256,353,1,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5257,2022-02-18,12123.022948194506,303,Urgent,2022-03-15,Abnormal,5257,236,3,0,,,,DISCHARGED -5258,2019-05-28,18156.354363072747,141,Elective,2019-06-04,Abnormal,5258,424,1,28,,,,DISCHARGED -5259,2021-02-21,44991.86684195481,468,Elective,2021-03-23,Normal,5259,220,4,20,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5260,2019-01-01,45770.0297892668,351,Urgent,2019-01-05,Inconclusive,5260,67,1,29,,,,DISCHARGED -5261,2022-08-24,49661.2470973855,261,Urgent,2022-09-05,Abnormal,5261,196,4,7,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5262,2021-03-25,16060.585663211245,359,Emergency,2021-04-07,Abnormal,5262,255,1,13,,,,DISCHARGED -5262,2019-06-16,22790.376840207064,239,Elective,2019-06-24,Inconclusive,7483,138,3,9,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5262,2023-10-05,8887.988126145556,210,Elective,2023-10-26,Abnormal,8475,311,0,26,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5263,2023-10-08,29618.68695088728,245,Elective,,Abnormal,5263,434,3,18,,,,OPEN -5264,2020-03-27,23040.68279097219,394,Urgent,2020-04-23,Abnormal,5264,148,4,7,,,,DISCHARGED -5265,2020-12-03,33400.77395852582,485,Urgent,2020-12-14,Abnormal,5265,98,2,18,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5267,2023-06-25,23191.437316779917,122,Elective,2023-06-29,Normal,5267,75,3,3,,,,DISCHARGED -5268,2023-09-29,27808.686260342136,238,Emergency,2023-10-04,Normal,5268,281,1,9,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5269,2020-02-01,18406.510117157035,438,Elective,2020-02-23,Normal,5269,370,0,22,,,,DISCHARGED -5270,2022-10-26,20152.934724714687,164,Emergency,2022-11-16,Inconclusive,5270,402,1,2,,,,DISCHARGED -5271,2021-03-10,35336.54685593156,477,Urgent,2021-03-14,Inconclusive,5271,108,1,3,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -5272,2019-01-05,45189.24584398605,441,Emergency,2019-01-14,Abnormal,5272,187,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5272,2022-11-06,32596.969893982976,237,Emergency,2022-11-26,Normal,8528,198,0,23,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -5273,2020-09-27,23387.498167739595,250,Elective,2020-10-10,Normal,5273,302,2,3,,,,DISCHARGED -5274,2019-10-29,48599.59229382341,187,Elective,2019-11-01,Normal,5274,326,1,24,,,,DISCHARGED -5275,2021-12-26,43801.88454043095,342,Elective,2021-12-30,Abnormal,5275,153,0,19,,,,DISCHARGED -5276,2023-09-21,11292.690655192097,441,Elective,2023-09-23,Abnormal,5276,39,2,28,,,,DISCHARGED -5277,2022-01-22,47708.84509469196,488,Emergency,2022-02-12,Abnormal,5277,132,1,29,,,,DISCHARGED -5278,2022-08-02,46405.609088226425,363,Emergency,2022-08-04,Normal,5278,404,0,19,,,,DISCHARGED -5279,2022-03-01,9302.207797850466,436,Elective,2022-03-20,Abnormal,5279,461,3,12,,,,DISCHARGED -5280,2020-01-23,18990.308273929,273,Emergency,2020-02-20,Normal,5280,131,1,20,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -5281,2018-12-25,5040.738326886707,446,Elective,2019-01-15,Inconclusive,5281,278,1,16,,,,DISCHARGED -5282,2020-03-15,17791.94959070682,201,Emergency,2020-03-19,Normal,5282,361,0,22,,,,DISCHARGED -5282,2021-04-17,20514.67691999995,351,Urgent,2021-04-20,Normal,7842,83,1,24,,,,DISCHARGED -5283,2020-01-07,33940.6495390121,142,Elective,2020-01-26,Normal,5283,398,2,15,,,,DISCHARGED -5285,2022-06-20,41984.88583170091,445,Elective,2022-07-08,Inconclusive,5285,241,1,27,,,,DISCHARGED -5286,2021-11-29,13923.722207965006,120,Urgent,2021-12-26,Inconclusive,5286,115,4,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5287,2023-01-17,30927.596774208425,380,Urgent,2023-02-03,Inconclusive,5287,108,2,16,,,,DISCHARGED -5288,2022-09-06,45332.9114383018,191,Elective,2022-09-30,Abnormal,5288,220,0,5,,,,DISCHARGED -5289,2023-06-03,7280.258731348832,121,Urgent,2023-06-09,Abnormal,5289,391,2,2,,,,DISCHARGED -5290,2020-04-07,44665.58346299991,269,Elective,2020-04-30,Abnormal,5290,40,4,19,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -5291,2023-04-22,6943.602234449973,190,Elective,2023-04-23,Inconclusive,5291,367,4,23,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -5291,2021-07-16,6743.587021111983,350,Elective,2021-08-15,Inconclusive,7038,146,1,3,,,,DISCHARGED -5293,2021-11-28,34290.81106653555,171,Emergency,2021-12-01,Normal,5293,111,1,7,,,,DISCHARGED -5294,2019-11-27,21269.961761348197,456,Elective,2019-12-23,Abnormal,5294,102,3,19,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -5295,2020-09-18,2426.6177893942768,364,Emergency,2020-09-23,Inconclusive,5295,45,2,8,,,,DISCHARGED -5296,2019-02-17,7271.705234775733,232,Emergency,2019-03-08,Inconclusive,5296,411,3,21,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5297,2019-11-28,6147.781585691975,354,Emergency,2019-12-26,Normal,5297,493,4,0,,,,DISCHARGED -5298,2022-10-21,38505.2933934196,185,Emergency,2022-11-03,Inconclusive,5298,474,1,12,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5299,2023-08-30,22940.65966947428,447,Elective,2023-09-24,Normal,5299,323,1,25,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -5300,2021-12-26,38652.44784415607,499,Emergency,2022-01-09,Normal,5300,377,1,1,,,,DISCHARGED -5301,2022-02-14,16975.993989791416,115,Elective,2022-02-20,Abnormal,5301,270,0,22,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5302,2023-03-18,5953.958899304417,446,Emergency,2023-03-29,Abnormal,5302,482,4,9,,,,DISCHARGED -5304,2023-04-03,41490.31352502009,425,Emergency,2023-04-19,Inconclusive,5304,420,1,22,,,,DISCHARGED -5305,2023-02-25,46001.29489302763,198,Emergency,2023-02-28,Abnormal,5305,384,4,18,,,,DISCHARGED -5306,2020-04-07,48407.9927355567,372,Urgent,2020-05-05,Abnormal,5306,194,1,16,,,,DISCHARGED -5307,2021-02-27,35159.076689868154,346,Urgent,2021-03-29,Inconclusive,5307,366,2,23,,,,DISCHARGED -5308,2023-10-17,46425.52394262858,474,Urgent,2023-10-18,Inconclusive,5308,279,4,12,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -5310,2020-10-26,10101.14795685093,396,Emergency,2020-11-15,Abnormal,5310,282,3,28,,,,DISCHARGED -5311,2020-08-18,19911.481805316693,154,Elective,2020-09-01,Inconclusive,5311,39,0,25,,,,DISCHARGED -5312,2020-04-03,31421.33605830356,435,Emergency,2020-04-10,Abnormal,5312,446,3,13,,,,DISCHARGED -5312,2021-01-13,10332.537182502045,136,Urgent,2021-01-27,Abnormal,6223,188,4,26,,,,DISCHARGED -5313,2022-11-20,6538.339832777338,109,Elective,2022-11-21,Normal,5313,163,1,10,,,,DISCHARGED -5314,2023-01-13,10528.691860138466,118,Emergency,,Inconclusive,5314,481,4,9,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",OPEN -5316,2019-05-19,37788.61108637827,224,Elective,2019-06-18,Abnormal,5316,476,0,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5317,2019-01-15,36269.15234978935,173,Urgent,2019-01-29,Normal,5317,23,4,9,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5318,2020-08-14,26857.80751957179,281,Elective,2020-09-03,Inconclusive,5318,23,1,23,,,,DISCHARGED -5319,2019-03-23,1750.4645692866843,197,Urgent,2019-04-12,Abnormal,5319,489,3,0,,,,DISCHARGED -5320,2023-09-13,28410.20032258373,314,Elective,2023-09-26,Abnormal,5320,3,2,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5321,2022-06-30,49874.62222518887,303,Urgent,2022-07-03,Normal,5321,322,3,2,,,,DISCHARGED -5322,2019-08-28,15207.704125165776,196,Elective,2019-09-06,Normal,5322,289,1,12,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5323,2022-11-14,21106.1622177802,455,Emergency,2022-12-07,Inconclusive,5323,440,1,1,,,,DISCHARGED -5324,2022-11-19,33294.20730722521,495,Emergency,2022-12-18,Inconclusive,5324,432,0,16,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -5325,2018-11-01,42411.20965936169,145,Emergency,2018-11-12,Normal,5325,470,4,20,,,,DISCHARGED -5326,2022-03-20,42758.97959650399,496,Urgent,2022-03-25,Normal,5326,180,4,2,,,,DISCHARGED -5327,2022-09-14,4645.351762174405,374,Elective,2022-09-29,Normal,5327,247,3,25,,,,DISCHARGED -5328,2021-04-19,35589.818019400314,241,Elective,2021-05-06,Inconclusive,5328,115,2,14,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5329,2023-10-17,40837.9125009489,150,Emergency,2023-11-13,Normal,5329,278,2,7,,,,DISCHARGED -5330,2021-11-24,15988.948357667903,388,Elective,2021-12-12,Abnormal,5330,364,0,5,,,,DISCHARGED -5331,2020-07-24,32447.69749887272,229,Urgent,2020-08-11,Abnormal,5331,68,1,25,,,,DISCHARGED -5332,2019-01-06,48068.42743358444,125,Emergency,2019-01-07,Normal,5332,350,0,29,,,,DISCHARGED -5333,2023-03-04,33527.72606393148,123,Urgent,2023-03-23,Inconclusive,5333,253,4,8,,,,DISCHARGED -5334,2022-12-29,8464.131385097815,497,Elective,2023-01-20,Inconclusive,5334,180,1,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5335,2022-03-14,29553.755389591177,321,Elective,2022-04-08,Normal,5335,317,0,10,,,,DISCHARGED -5336,2023-07-01,22080.99390125088,156,Urgent,2023-07-18,Normal,5336,168,3,21,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -5337,2023-08-06,37565.73816624861,310,Urgent,2023-08-28,Abnormal,5337,312,4,1,,,,DISCHARGED -5338,2019-07-31,24789.88105489378,275,Elective,2019-08-02,Abnormal,5338,248,2,8,,,,DISCHARGED -5339,2019-07-16,37165.99926019338,344,Emergency,2019-07-29,Abnormal,5339,187,0,17,,,,DISCHARGED -5340,2021-07-16,38047.23617445312,477,Emergency,2021-08-10,Inconclusive,5340,53,4,18,,,,DISCHARGED -5341,2019-12-24,1422.3067701407497,296,Elective,2020-01-03,Abnormal,5341,325,4,21,,,,DISCHARGED -5341,2020-07-21,40613.17537109844,194,Emergency,2020-08-19,Normal,7715,356,2,17,,,,DISCHARGED -5342,2021-04-28,2530.743028796275,338,Emergency,2021-05-04,Normal,5342,312,2,4,,,,DISCHARGED -5343,2020-07-12,39465.43991927848,477,Elective,2020-08-05,Inconclusive,5343,137,2,17,,,,DISCHARGED -5344,2021-04-13,16696.69493599367,383,Urgent,2021-04-23,Normal,5344,167,0,11,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5345,2023-01-15,8392.045632088782,113,Emergency,,Inconclusive,5345,390,2,3,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",OPEN -5346,2018-12-27,44835.551923487765,329,Elective,2019-01-07,Normal,5346,102,3,14,,,,DISCHARGED -5347,2022-07-15,41152.08651687772,116,Elective,2022-07-31,Abnormal,5347,421,4,10,,,,DISCHARGED -5348,2023-03-25,10938.3560169617,401,Emergency,,Inconclusive,5348,84,2,26,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,OPEN -5349,2020-11-04,39163.2761091567,388,Emergency,2020-11-08,Abnormal,5349,316,4,18,,,,DISCHARGED -5349,2022-10-07,28911.8217100814,422,Elective,2022-10-13,Normal,5967,211,1,4,,,,DISCHARGED -5350,2019-09-11,18429.65766887912,258,Emergency,2019-09-26,Abnormal,5350,2,1,5,,,,DISCHARGED -5351,2020-03-20,2321.0371386477877,341,Urgent,2020-04-14,Abnormal,5351,383,2,12,,,,DISCHARGED -5352,2022-11-10,27995.572777828173,283,Elective,2022-11-13,Normal,5352,178,4,22,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5352,2023-01-07,41047.74921477449,221,Elective,,Abnormal,7452,341,1,9,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5353,2022-07-28,24095.36526351721,344,Emergency,2022-08-18,Abnormal,5353,302,2,23,,,,DISCHARGED -5354,2020-05-19,49700.98120803751,133,Emergency,2020-05-29,Abnormal,5354,451,4,24,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5354,2023-10-23,22074.39268761999,222,Urgent,2023-11-12,Abnormal,7569,475,2,13,,,,DISCHARGED -5355,2019-07-09,13411.08305129469,349,Elective,2019-08-05,Normal,5355,331,4,3,,,,DISCHARGED -5356,2023-02-19,6639.058142140622,234,Urgent,,Normal,5356,37,1,19,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",OPEN -5357,2020-08-21,39291.57930780216,459,Emergency,2020-09-10,Inconclusive,5357,498,2,22,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -5357,2022-03-11,14624.447761972537,319,Elective,2022-04-02,Normal,8312,419,1,11,,,,DISCHARGED -5358,2022-02-27,17227.234822947503,256,Urgent,2022-03-08,Inconclusive,5358,238,2,14,,,,DISCHARGED -5359,2022-10-08,30539.400149840912,422,Emergency,2022-11-06,Normal,5359,168,0,25,,,,DISCHARGED -5360,2021-08-17,4170.371037880999,195,Urgent,2021-09-09,Inconclusive,5360,452,1,9,,,,DISCHARGED -5361,2023-09-27,9047.530841846115,157,Elective,2023-10-14,Normal,5361,396,1,10,,,,DISCHARGED -5362,2023-06-19,45809.65808749955,464,Elective,2023-07-10,Inconclusive,5362,342,3,8,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5363,2022-03-04,39428.53026744075,443,Urgent,2022-03-05,Abnormal,5363,313,1,10,,,,DISCHARGED -5364,2019-12-15,30263.184287280103,477,Urgent,2019-12-24,Inconclusive,5364,305,4,1,,,,DISCHARGED -5365,2023-09-16,28010.774778172246,203,Urgent,2023-10-11,Inconclusive,5365,29,2,12,,,,DISCHARGED -5365,2021-03-19,18843.142998483618,232,Elective,2021-03-21,Abnormal,8497,189,0,26,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5366,2022-11-21,1080.8669526267531,302,Elective,2022-11-23,Inconclusive,5366,356,4,21,,,,DISCHARGED -5367,2020-04-30,42836.19925513295,500,Elective,2020-05-10,Inconclusive,5367,24,4,25,,,,DISCHARGED -5368,2023-01-23,30861.70453786641,380,Urgent,2023-02-18,Normal,5368,111,4,25,,,,DISCHARGED -5369,2020-04-15,26804.80874203124,148,Elective,2020-05-10,Inconclusive,5369,410,4,7,,,,DISCHARGED -5370,2022-09-22,46032.57922096606,357,Emergency,2022-09-28,Normal,5370,434,0,28,,,,DISCHARGED -5371,2019-03-26,43214.8507055202,328,Emergency,2019-04-13,Normal,5371,205,3,20,,,,DISCHARGED -5372,2021-08-22,35865.4012798763,363,Urgent,2021-09-15,Normal,5372,184,1,20,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5373,2019-03-16,42233.967419656736,400,Elective,2019-04-01,Inconclusive,5373,381,4,7,,,,DISCHARGED -5374,2023-08-05,37953.00141973952,305,Urgent,,Normal,5374,495,1,0,,,,OPEN -5375,2022-01-21,42059.84507440352,216,Urgent,2022-02-09,Normal,5375,378,1,5,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -5376,2021-11-06,24684.18458097732,188,Elective,2021-11-15,Normal,5376,46,4,25,,,,DISCHARGED -5377,2022-05-19,13827.517439138348,195,Emergency,2022-05-23,Inconclusive,5377,373,3,12,,,,DISCHARGED -5378,2020-01-09,38452.14533880384,166,Urgent,2020-02-07,Abnormal,5378,227,1,8,,,,DISCHARGED -5379,2021-11-03,48785.143226280336,122,Emergency,2021-11-15,Inconclusive,5379,38,2,27,,,,DISCHARGED -5380,2019-11-06,9820.269855080442,300,Elective,2019-12-01,Normal,5380,15,1,5,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -5381,2022-09-07,32236.78326851948,242,Emergency,2022-09-28,Abnormal,5381,21,4,14,,,,DISCHARGED -5382,2019-11-09,42383.36091951493,190,Urgent,2019-11-21,Normal,5382,212,0,22,,,,DISCHARGED -5383,2021-01-19,24411.6592538423,165,Urgent,2021-02-02,Inconclusive,5383,309,1,15,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -5383,2023-10-11,13178.685214354206,486,Urgent,,Normal,5834,148,3,3,,,,OPEN -5384,2019-12-02,43428.36202951809,425,Emergency,2019-12-09,Abnormal,5384,455,2,27,,,,DISCHARGED -5385,2021-09-14,35476.09677467794,302,Emergency,2021-09-15,Abnormal,5385,240,2,25,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -5386,2020-08-24,16287.82264090078,423,Elective,2020-09-14,Normal,5386,271,0,16,,,,DISCHARGED -5387,2018-11-16,9545.64603043312,230,Urgent,2018-12-10,Abnormal,5387,58,0,8,,,,DISCHARGED -5388,2023-03-16,49250.1054529776,480,Emergency,2023-04-12,Inconclusive,5388,286,1,11,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5389,2020-12-22,36824.12385592929,141,Emergency,2020-12-26,Inconclusive,5389,425,4,21,,,,DISCHARGED -5390,2023-10-14,38851.27355297423,134,Emergency,2023-10-29,Inconclusive,5390,201,3,18,,,,DISCHARGED -5391,2018-12-21,27369.153397422564,197,Urgent,2019-01-20,Abnormal,5391,31,2,19,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5392,2020-02-10,7140.297578535327,211,Emergency,2020-02-11,Normal,5392,442,0,25,,,,DISCHARGED -5395,2019-12-07,22359.40877319428,439,Urgent,2019-12-26,Normal,5395,161,3,11,,,,DISCHARGED -5396,2022-04-05,34853.81702775787,204,Urgent,2022-04-17,Normal,5396,254,4,21,,,,DISCHARGED -5397,2021-02-27,5429.632982750025,118,Emergency,2021-03-29,Normal,5397,253,2,5,,,,DISCHARGED -5398,2021-07-21,38730.71082495431,330,Elective,2021-07-27,Normal,5398,8,2,11,,,,DISCHARGED -5399,2021-09-01,3237.2037960223056,427,Elective,2021-09-07,Normal,5399,464,4,8,,,,DISCHARGED -5400,2023-05-28,3062.780223094609,417,Emergency,,Inconclusive,5400,138,2,19,,,,OPEN -5401,2020-06-07,40806.31699083983,315,Urgent,2020-07-01,Inconclusive,5401,479,4,4,,,,DISCHARGED -5402,2019-10-02,38807.55158630943,284,Emergency,2019-10-29,Abnormal,5402,9,2,20,,,,DISCHARGED -5403,2020-07-14,36160.41237376924,297,Emergency,2020-08-04,Inconclusive,5403,213,1,2,,,,DISCHARGED -5404,2019-12-23,49932.9018159729,139,Elective,2020-01-16,Abnormal,5404,272,4,1,,,,DISCHARGED -5405,2020-10-07,23052.528213908503,126,Emergency,2020-10-17,Inconclusive,5405,323,3,7,,,,DISCHARGED -5406,2020-11-27,21193.1273674194,466,Emergency,2020-12-12,Abnormal,5406,47,1,9,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5407,2022-10-03,16674.88160857864,458,Elective,2022-10-16,Normal,5407,435,3,14,,,,DISCHARGED -5408,2020-05-30,5445.315077691656,331,Urgent,2020-06-16,Abnormal,5408,110,2,8,,,,DISCHARGED -5409,2023-08-01,2991.585877151348,297,Emergency,2023-08-20,Abnormal,5409,152,3,9,,,,DISCHARGED -5410,2022-02-28,27735.17374627667,397,Urgent,2022-03-21,Normal,5410,122,1,10,,,,DISCHARGED -5411,2019-12-16,5538.860169765128,431,Emergency,2019-12-19,Normal,5411,404,4,28,,,,DISCHARGED -5412,2021-01-24,40778.51024034466,420,Elective,2021-02-13,Inconclusive,5412,356,0,8,,,,DISCHARGED -5413,2022-03-06,45552.59617365875,284,Urgent,2022-03-13,Normal,5413,101,3,13,,,,DISCHARGED -5415,2019-03-16,37061.43491338366,357,Urgent,2019-04-09,Abnormal,5415,240,0,4,,,,DISCHARGED -5416,2020-12-28,28846.661833847807,278,Emergency,2021-01-14,Abnormal,5416,320,3,26,,,,DISCHARGED -5416,2020-06-26,27278.165514539785,488,Urgent,2020-06-27,Abnormal,9175,190,3,8,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5417,2018-11-28,14594.566067869942,137,Elective,2018-12-14,Abnormal,5417,216,4,3,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5418,2023-08-14,22296.73953689249,470,Emergency,,Normal,5418,50,2,1,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5419,2018-11-27,10023.970303055092,407,Urgent,2018-12-18,Abnormal,5419,291,1,18,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -5420,2022-10-03,29208.66801834079,244,Urgent,2022-10-29,Normal,5420,80,1,0,,,,DISCHARGED -5421,2021-04-06,36935.61043704975,176,Elective,2021-04-12,Inconclusive,5421,488,1,20,,,,DISCHARGED -5422,2019-10-21,13495.099745750576,199,Emergency,2019-11-07,Abnormal,5422,382,2,0,,,,DISCHARGED -5423,2020-10-26,1791.3037254107592,169,Urgent,2020-10-31,Abnormal,5423,87,0,11,,,,DISCHARGED -5424,2019-04-26,39884.67218928435,294,Urgent,2019-05-22,Normal,5424,193,1,10,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5426,2022-01-20,16277.077550480746,107,Urgent,2022-02-01,Abnormal,5426,103,0,0,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -5427,2022-11-02,31236.902863500552,257,Emergency,2022-11-04,Normal,5427,270,2,13,,,,DISCHARGED -5428,2019-02-06,5493.691696701916,457,Emergency,2019-02-14,Inconclusive,5428,95,2,26,,,,DISCHARGED -5429,2022-07-27,24513.15489993489,329,Elective,2022-08-20,Abnormal,5429,422,4,10,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -5430,2021-12-13,1764.4822924212513,124,Emergency,2021-12-27,Inconclusive,5430,378,1,28,,,,DISCHARGED -5431,2022-07-18,5752.507708254177,255,Urgent,2022-07-24,Abnormal,5431,197,4,6,,,,DISCHARGED -5432,2022-04-16,46865.626212657815,441,Elective,2022-05-15,Inconclusive,5432,0,1,1,,,,DISCHARGED -5433,2023-07-21,24518.20993969547,191,Emergency,2023-07-31,Abnormal,5433,494,2,14,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -5434,2022-11-05,13191.363987295816,316,Emergency,2022-11-26,Inconclusive,5434,406,2,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5435,2023-09-08,16738.006507391347,434,Emergency,,Normal,5435,377,3,21,,,,OPEN -5436,2021-02-17,22500.804527599492,367,Emergency,2021-03-14,Abnormal,5436,166,3,19,,,,DISCHARGED -5437,2023-03-27,26561.15042423582,305,Urgent,,Inconclusive,5437,125,2,24,,,,OPEN -5438,2019-01-04,16990.727072996044,134,Urgent,2019-01-12,Inconclusive,5438,312,2,14,,,,DISCHARGED -5439,2023-03-11,43497.94261493842,197,Urgent,,Normal,5439,80,0,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",OPEN -5440,2021-07-11,42186.70287432094,214,Elective,2021-08-06,Normal,5440,417,0,7,,,,DISCHARGED -5440,2019-07-30,31513.06488585425,295,Elective,2019-08-23,Normal,8413,250,4,28,,,,DISCHARGED -5441,2023-07-23,48974.16779572172,217,Elective,,Inconclusive,5441,168,3,9,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,OPEN -5442,2020-07-07,45776.19121582433,362,Elective,2020-07-21,Abnormal,5442,476,3,18,,,,DISCHARGED -5443,2021-04-03,48754.54852661361,357,Urgent,2021-04-28,Normal,5443,72,2,2,,,,DISCHARGED -5444,2021-11-17,49677.361740915374,227,Urgent,2021-12-02,Inconclusive,5444,140,2,19,,,,DISCHARGED -5446,2022-05-24,41944.96990492281,433,Elective,2022-06-14,Inconclusive,5446,69,4,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -5447,2021-02-02,25322.96010050705,354,Elective,2021-02-10,Inconclusive,5447,261,3,8,,,,DISCHARGED -5448,2021-09-28,34638.29465458193,219,Urgent,2021-10-03,Inconclusive,5448,339,0,8,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -5449,2021-05-05,49634.14975559975,471,Emergency,2021-05-20,Abnormal,5449,307,1,20,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5450,2019-05-17,27559.73375065933,151,Elective,2019-06-10,Abnormal,5450,244,4,27,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5451,2023-05-22,49681.632573105744,122,Urgent,2023-05-31,Inconclusive,5451,2,1,24,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5452,2019-02-25,39404.23567524226,204,Urgent,2019-03-09,Abnormal,5452,336,0,5,,,,DISCHARGED -5453,2019-11-25,14114.391134339276,327,Elective,2019-12-21,Inconclusive,5453,62,0,7,,,,DISCHARGED -5454,2020-03-31,48197.48511573792,354,Urgent,2020-04-21,Abnormal,5454,48,1,10,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -5455,2018-11-24,20635.83232207457,358,Urgent,2018-11-26,Normal,5455,75,4,7,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5456,2023-10-14,15011.811970797087,285,Emergency,2023-11-10,Abnormal,5456,367,1,11,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5457,2019-03-12,40490.06178194295,137,Emergency,2019-04-04,Inconclusive,5457,174,4,9,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -5458,2023-09-14,48296.69098795672,215,Elective,2023-09-26,Inconclusive,5458,108,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5459,2019-01-25,11435.536672536811,311,Emergency,2019-02-08,Normal,5459,182,2,3,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5460,2021-05-09,41209.828504691,245,Elective,2021-05-24,Inconclusive,5460,191,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5461,2022-01-09,19716.05716892109,123,Emergency,2022-01-30,Inconclusive,5461,64,3,19,,,,DISCHARGED -5462,2022-04-16,6280.45456453877,454,Emergency,2022-04-17,Normal,5462,336,0,5,,,,DISCHARGED -5463,2019-05-27,19455.289654116084,180,Urgent,2019-06-25,Abnormal,5463,450,2,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5464,2022-05-23,42544.932608938056,155,Elective,2022-06-03,Normal,5464,473,3,8,,,,DISCHARGED -5465,2019-10-03,26853.596179774904,419,Emergency,2019-10-31,Inconclusive,5465,270,4,22,,,,DISCHARGED -5466,2023-02-18,1752.278905377956,309,Elective,2023-03-13,Inconclusive,5466,99,4,4,,,,DISCHARGED -5467,2022-04-22,32598.26667597038,286,Urgent,2022-04-26,Abnormal,5467,31,1,20,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -5469,2019-10-25,40038.40258360773,116,Elective,2019-10-28,Normal,5469,351,1,23,,,,DISCHARGED -5470,2019-09-26,49317.80454141078,465,Elective,2019-09-28,Abnormal,5470,127,4,5,,,,DISCHARGED -5472,2023-01-16,23887.20644644489,432,Urgent,,Abnormal,5472,451,4,16,,,,OPEN -5473,2023-05-06,18095.28928942116,290,Emergency,,Abnormal,5473,401,1,16,,,,OPEN -5474,2020-03-21,47696.71156865114,358,Urgent,2020-04-17,Abnormal,5474,368,3,24,,,,DISCHARGED -5475,2021-07-26,25437.52023244568,238,Elective,2021-08-23,Normal,5475,338,0,23,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5476,2023-05-16,45112.76363156635,237,Urgent,2023-05-18,Inconclusive,5476,42,1,21,,,,DISCHARGED -5476,2021-01-07,28209.277420581533,333,Emergency,2021-02-06,Abnormal,7281,371,3,12,,,,DISCHARGED -5477,2022-10-01,47868.67773014483,226,Urgent,2022-10-08,Abnormal,5477,418,3,16,,,,DISCHARGED -5478,2020-03-29,4017.326220379593,304,Urgent,2020-04-02,Normal,5478,487,3,13,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -5479,2019-10-16,13827.383117892345,258,Urgent,2019-10-25,Normal,5479,77,2,1,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5480,2018-12-05,43790.45894859171,345,Urgent,2019-01-04,Abnormal,5480,313,2,25,,,,DISCHARGED -5481,2018-12-24,20507.74368592553,286,Urgent,2019-01-12,Inconclusive,5481,288,3,18,,,,DISCHARGED -5481,2019-01-10,27550.76728405913,373,Urgent,2019-01-22,Abnormal,9623,269,4,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -5482,2021-12-27,7843.595497328682,109,Emergency,2022-01-08,Normal,5482,161,2,27,,,,DISCHARGED -5483,2019-10-26,17841.742606173466,495,Elective,2019-11-13,Inconclusive,5483,188,1,2,,,,DISCHARGED -5484,2020-07-08,29167.34119712129,466,Emergency,2020-07-14,Inconclusive,5484,246,2,1,,,,DISCHARGED -5485,2021-02-07,33775.446353892046,209,Emergency,2021-02-16,Inconclusive,5485,387,4,27,,,,DISCHARGED -5486,2020-10-11,32706.281202055,325,Emergency,2020-10-30,Inconclusive,5486,215,0,1,,,,DISCHARGED -5487,2022-10-12,17257.5074224556,254,Emergency,2022-11-04,Inconclusive,5487,314,2,21,,,,DISCHARGED -5488,2021-03-10,9281.810846090568,327,Urgent,2021-03-21,Inconclusive,5488,412,3,6,,,,DISCHARGED -5489,2021-12-21,30107.17524570852,412,Urgent,2022-01-04,Abnormal,5489,338,3,3,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5490,2021-11-04,15596.575378101004,118,Emergency,2021-12-03,Normal,5490,389,3,16,,,,DISCHARGED -5491,2020-10-14,40532.34825106549,435,Emergency,2020-11-04,Normal,5491,376,0,5,,,,DISCHARGED -5492,2020-02-09,9251.907942613594,474,Emergency,2020-02-14,Normal,5492,480,4,6,,,,DISCHARGED -5493,2022-08-18,14673.780086112352,315,Emergency,2022-09-03,Normal,5493,432,1,19,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -5494,2022-09-09,5829.162439815217,125,Emergency,2022-10-03,Inconclusive,5494,167,4,5,,,,DISCHARGED -5495,2021-12-28,1171.4206586373248,354,Emergency,2022-01-08,Abnormal,5495,338,0,8,,,,DISCHARGED -5496,2020-03-06,6379.529525027945,266,Urgent,2020-03-07,Abnormal,5496,192,3,19,,,,DISCHARGED -5497,2023-09-14,13971.4243152323,498,Urgent,,Inconclusive,5497,452,4,27,,,,OPEN -5498,2020-06-08,20097.20931310368,146,Urgent,2020-06-24,Inconclusive,5498,282,1,29,,,,DISCHARGED -5499,2021-02-09,18985.709716127338,291,Elective,2021-02-23,Inconclusive,5499,335,3,25,,,,DISCHARGED -5500,2019-04-26,25853.24710900689,314,Urgent,2019-05-22,Abnormal,5500,389,1,3,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -5501,2023-01-14,9451.878754301972,252,Emergency,2023-02-08,Inconclusive,5501,487,2,25,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5502,2023-03-09,33844.07352681068,144,Urgent,,Normal,5502,12,1,27,,,,OPEN -5503,2021-02-27,8870.420105055236,136,Emergency,2021-02-28,Inconclusive,5503,239,3,4,,,,DISCHARGED -5504,2019-07-10,27241.209026550157,298,Emergency,2019-07-17,Inconclusive,5504,319,2,18,,,,DISCHARGED -5505,2019-01-10,27481.173241159617,152,Urgent,2019-01-12,Inconclusive,5505,445,3,9,,,,DISCHARGED -5506,2023-06-20,11801.951974206746,265,Elective,2023-07-06,Normal,5506,482,3,17,,,,DISCHARGED -5507,2021-02-24,43392.61962127786,267,Urgent,2021-03-09,Inconclusive,5507,146,2,14,,,,DISCHARGED -5508,2023-01-21,1848.5187892732315,407,Emergency,2023-02-20,Normal,5508,203,1,24,,,,DISCHARGED -5509,2019-06-22,10083.532618668076,440,Urgent,2019-07-08,Normal,5509,79,0,28,,,,DISCHARGED -5510,2021-02-02,1317.0555110624366,248,Urgent,2021-02-19,Abnormal,5510,378,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5511,2019-06-16,17853.73322610585,485,Emergency,2019-07-05,Inconclusive,5511,42,0,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -5512,2020-06-18,1090.4798751265444,274,Elective,2020-06-26,Abnormal,5512,457,0,4,,,,DISCHARGED -5513,2020-06-02,9870.166225123636,253,Emergency,2020-06-26,Inconclusive,5513,88,4,7,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5514,2022-08-26,1565.318159720578,228,Emergency,2022-08-29,Inconclusive,5514,147,0,21,,,,DISCHARGED -5515,2020-01-08,23444.41579454259,485,Emergency,2020-01-09,Normal,5515,94,2,21,,,,DISCHARGED -5516,2023-10-25,22192.03635583758,187,Elective,2023-10-26,Inconclusive,5516,451,0,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5517,2020-03-05,11915.283048303389,449,Emergency,2020-03-22,Normal,5517,427,3,19,,,,DISCHARGED -5520,2019-12-03,43119.38515863943,278,Urgent,2020-01-02,Inconclusive,5520,150,0,14,,,,DISCHARGED -5521,2023-07-12,20330.53178539943,195,Urgent,2023-07-15,Abnormal,5521,1,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -5522,2021-10-02,19406.62775687958,158,Urgent,2021-10-18,Abnormal,5522,375,2,18,,,,DISCHARGED -5523,2022-07-01,19313.957475013107,393,Emergency,2022-07-27,Inconclusive,5523,21,2,28,,,,DISCHARGED -5524,2020-03-24,12165.82119856502,296,Urgent,2020-04-03,Abnormal,5524,370,4,12,,,,DISCHARGED -5525,2023-01-17,37595.19110595963,151,Elective,2023-01-22,Inconclusive,5525,312,3,25,,,,DISCHARGED -5526,2022-10-14,15730.48708492797,486,Emergency,2022-10-18,Inconclusive,5526,484,2,27,,,,DISCHARGED -5527,2023-03-27,44514.06142166318,130,Urgent,2023-03-31,Normal,5527,327,1,26,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -5528,2020-03-22,38101.05263674001,104,Emergency,2020-04-14,Abnormal,5528,6,0,21,,,,DISCHARGED -5529,2022-06-21,17925.32225291541,384,Urgent,2022-07-17,Inconclusive,5529,205,2,20,,,,DISCHARGED -5530,2023-07-31,42151.09026458504,394,Urgent,2023-08-30,Normal,5530,439,1,9,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -5531,2020-07-09,26631.683125464417,243,Emergency,2020-07-10,Abnormal,5531,374,0,16,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -5532,2020-01-22,42214.17530048848,167,Elective,2020-02-18,Normal,5532,450,4,4,,,,DISCHARGED -5533,2020-11-17,5771.419236935768,102,Urgent,2020-11-26,Abnormal,5533,113,2,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5534,2021-05-18,11918.006576010368,490,Emergency,2021-05-28,Inconclusive,5534,271,2,16,,,,DISCHARGED -5535,2019-03-11,49438.0076061757,347,Emergency,2019-03-28,Abnormal,5535,82,1,3,,,,DISCHARGED -5536,2020-02-28,24878.26484293333,340,Urgent,2020-03-25,Inconclusive,5536,178,3,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5537,2022-04-15,30505.306210412044,498,Urgent,2022-04-18,Normal,5537,209,4,6,,,,DISCHARGED -5538,2020-07-01,36568.46414381794,168,Elective,2020-07-31,Abnormal,5538,499,3,24,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5539,2020-02-09,49909.18220645191,341,Elective,2020-03-02,Normal,5539,463,2,4,,,,DISCHARGED -5539,2019-11-25,23006.61167380606,250,Elective,2019-12-17,Abnormal,6981,327,3,7,,,,DISCHARGED -5540,2019-01-16,5077.590508859319,153,Elective,2019-01-29,Abnormal,5540,123,0,7,,,,DISCHARGED -5541,2022-10-22,5331.683334057343,283,Urgent,2022-11-12,Normal,5541,480,4,10,,,,DISCHARGED -5542,2022-01-17,18550.21627748104,353,Elective,2022-01-27,Normal,5542,112,3,8,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5543,2021-02-22,3428.931836088073,247,Emergency,2021-03-06,Abnormal,5543,11,0,18,,,,DISCHARGED -5544,2020-12-08,20096.283126410373,200,Urgent,2020-12-16,Abnormal,5544,125,1,18,,,,DISCHARGED -5546,2020-12-18,38710.7696472897,304,Emergency,2021-01-08,Inconclusive,5546,52,3,8,,,,DISCHARGED -5547,2018-12-05,7064.179237757457,418,Elective,2018-12-23,Inconclusive,5547,330,4,22,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5548,2022-11-14,23219.054089596983,308,Emergency,2022-12-14,Abnormal,5548,388,0,19,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5549,2021-03-19,38848.09466883852,238,Emergency,2021-04-07,Normal,5549,282,3,16,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -5550,2020-01-22,16387.39328439017,433,Urgent,2020-02-15,Abnormal,5550,139,1,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5551,2019-06-08,6515.100206365886,309,Urgent,2019-06-23,Abnormal,5551,400,3,6,,,,DISCHARGED -5552,2019-08-17,16645.647468518873,365,Emergency,2019-09-08,Inconclusive,5552,389,0,25,,,,DISCHARGED -5554,2021-03-31,33023.83276802979,463,Emergency,2021-04-02,Normal,5554,96,3,21,,,,DISCHARGED -5555,2020-12-05,24465.45861240059,489,Emergency,2020-12-22,Inconclusive,5555,4,4,2,,,,DISCHARGED -5556,2022-05-02,32860.62483981741,112,Urgent,2022-05-21,Normal,5556,56,2,29,,,,DISCHARGED -5557,2023-08-09,13981.360950147007,162,Elective,,Abnormal,5557,411,0,20,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -5558,2021-05-15,9995.572768966307,171,Emergency,2021-06-13,Inconclusive,5558,333,0,18,,,,DISCHARGED -5559,2021-07-09,4789.085848439766,366,Elective,2021-07-14,Normal,5559,68,0,7,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5560,2018-11-14,2510.8946413030926,192,Urgent,2018-11-22,Inconclusive,5560,117,0,4,,,,DISCHARGED -5561,2021-01-06,14355.618596031883,252,Emergency,2021-01-18,Normal,5561,375,3,25,,,,DISCHARGED -5562,2023-10-14,23527.84194061165,139,Elective,2023-10-26,Normal,5562,58,4,25,,,,DISCHARGED -5564,2020-01-15,29906.40318346309,375,Elective,2020-01-31,Normal,5564,32,1,5,,,,DISCHARGED -5567,2023-01-12,40213.047287467205,237,Emergency,,Inconclusive,5567,317,4,1,,,,OPEN -5568,2020-10-20,45927.48416195112,195,Elective,2020-10-27,Abnormal,5568,49,0,23,,,,DISCHARGED -5569,2023-07-17,44689.23117222465,346,Emergency,2023-08-15,Inconclusive,5569,367,3,24,,,,DISCHARGED -5570,2023-04-20,15917.577082387976,355,Emergency,2023-04-25,Abnormal,5570,488,3,18,,,,DISCHARGED -5571,2019-06-20,1488.2328137328843,405,Emergency,2019-07-10,Abnormal,5571,18,0,12,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -5572,2022-02-22,37711.81670605661,191,Emergency,2022-03-03,Abnormal,5572,213,3,5,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -5573,2022-06-30,34654.84177432377,476,Elective,2022-07-24,Normal,5573,196,0,5,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5574,2022-12-19,36354.02930778381,319,Urgent,2022-12-28,Abnormal,5574,378,4,1,,,,DISCHARGED -5575,2020-08-18,15438.610912911528,277,Elective,2020-08-31,Normal,5575,449,2,25,,,,DISCHARGED -5576,2020-03-18,34330.79074201225,380,Urgent,2020-04-02,Normal,5576,477,3,23,,,,DISCHARGED -5577,2022-12-01,9220.16754797901,116,Urgent,2022-12-07,Normal,5577,46,0,4,,,,DISCHARGED -5578,2020-05-20,44923.25744086493,438,Elective,2020-06-10,Inconclusive,5578,166,0,10,,,,DISCHARGED -5579,2020-11-07,22068.640535493523,213,Urgent,2020-12-06,Abnormal,5579,451,3,10,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5580,2022-10-25,42799.59918412646,289,Emergency,2022-10-31,Abnormal,5580,288,1,23,,,,DISCHARGED -5581,2021-08-03,47395.17921545352,143,Urgent,2021-08-22,Abnormal,5581,140,0,13,,,,DISCHARGED -5582,2023-01-15,39764.117164923344,309,Urgent,2023-01-22,Abnormal,5582,83,3,12,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5583,2021-12-31,49220.553079794336,367,Elective,2022-01-10,Normal,5583,181,0,29,,,,DISCHARGED -5584,2022-07-04,43274.20650763516,374,Urgent,2022-07-09,Normal,5584,390,1,7,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5586,2021-08-24,43446.94664550018,340,Urgent,2021-09-21,Inconclusive,5586,78,2,14,,,,DISCHARGED -5587,2019-04-17,14655.18387092568,399,Urgent,2019-04-22,Normal,5587,214,1,11,,,,DISCHARGED -5588,2020-10-22,9434.675755998407,397,Emergency,2020-11-20,Inconclusive,5588,13,4,2,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5590,2022-04-07,40815.12039678574,433,Elective,2022-04-10,Abnormal,5590,214,3,20,,,,DISCHARGED -5592,2021-02-20,24531.27398924686,184,Elective,2021-03-12,Abnormal,5592,402,1,22,,,,DISCHARGED -5593,2020-01-15,30795.47031065481,191,Emergency,2020-02-12,Abnormal,5593,127,2,4,,,,DISCHARGED -5594,2021-10-09,13207.348028691957,324,Emergency,2021-10-31,Normal,5594,309,0,5,,,,DISCHARGED -5595,2020-10-09,8040.212832703101,470,Emergency,2020-10-25,Normal,5595,476,3,1,,,,DISCHARGED -5596,2021-07-02,4161.722926333099,446,Emergency,2021-07-06,Normal,5596,247,1,7,,,,DISCHARGED -5597,2020-01-22,20070.28090316163,313,Urgent,2020-02-09,Abnormal,5597,403,2,4,,,,DISCHARGED -5598,2021-08-30,13139.890419137198,137,Emergency,2021-09-27,Normal,5598,28,1,21,,,,DISCHARGED -5600,2019-08-08,4162.362805840682,349,Emergency,2019-09-04,Normal,5600,279,4,16,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5601,2020-10-22,36661.40216194962,381,Emergency,2020-11-12,Abnormal,5601,337,3,25,,,,DISCHARGED -5602,2018-11-27,23045.374639854595,352,Elective,2018-12-10,Abnormal,5602,318,0,1,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5604,2023-10-24,3210.616254246515,214,Emergency,2023-11-04,Abnormal,5604,201,2,10,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -5605,2021-12-20,7461.403668350002,346,Emergency,2021-12-23,Abnormal,5605,360,1,3,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5606,2022-02-09,5270.709086060577,363,Urgent,2022-02-16,Inconclusive,5606,56,3,10,,,,DISCHARGED -5607,2020-04-12,7487.829803795133,269,Urgent,2020-05-06,Abnormal,5607,391,1,8,,,,DISCHARGED -5608,2019-01-02,36325.2152786961,258,Emergency,2019-01-21,Abnormal,5608,217,3,5,,,,DISCHARGED -5609,2018-12-09,22732.71868779149,156,Elective,2019-01-08,Abnormal,5609,61,4,23,,,,DISCHARGED -5610,2020-11-26,35233.89064235108,390,Urgent,2020-12-13,Abnormal,5610,156,1,1,,,,DISCHARGED -5611,2019-06-30,19740.5756484834,316,Emergency,2019-07-02,Normal,5611,201,4,25,,,,DISCHARGED -5612,2023-02-08,20388.025680574097,155,Emergency,2023-03-05,Inconclusive,5612,16,2,14,,,,DISCHARGED -5613,2020-12-15,46015.86130437745,472,Elective,2021-01-06,Normal,5613,321,4,4,,,,DISCHARGED -5614,2020-06-18,7884.663378720075,407,Elective,2020-06-29,Inconclusive,5614,5,3,27,,,,DISCHARGED -5615,2023-04-25,27739.58011355435,374,Elective,2023-05-11,Abnormal,5615,57,2,11,,,,DISCHARGED -5616,2019-05-16,44362.92171141461,167,Elective,2019-05-18,Normal,5616,324,1,12,,,,DISCHARGED -5617,2023-05-17,2821.05523952982,229,Emergency,2023-06-15,Inconclusive,5617,411,1,16,,,,DISCHARGED -5618,2022-08-06,48676.14664262107,480,Elective,2022-08-23,Normal,5618,317,3,3,,,,DISCHARGED -5619,2021-09-04,27585.57269442252,448,Emergency,2021-09-11,Inconclusive,5619,168,0,9,,,,DISCHARGED -5620,2023-03-18,27874.35597098301,359,Elective,2023-04-06,Inconclusive,5620,452,0,0,,,,DISCHARGED -5621,2020-04-24,11002.91140641999,385,Emergency,2020-05-09,Inconclusive,5621,81,1,10,,,,DISCHARGED -5622,2021-01-23,45881.272449917866,226,Emergency,2021-02-10,Abnormal,5622,473,3,15,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -5623,2021-11-15,25853.706752899558,487,Emergency,2021-11-30,Normal,5623,467,0,10,,,,DISCHARGED -5624,2021-10-06,48665.55069627846,401,Emergency,2021-11-03,Abnormal,5624,424,4,8,,,,DISCHARGED -5625,2023-10-05,42186.368950674754,258,Emergency,2023-10-23,Normal,5625,432,1,1,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5626,2020-08-04,31737.40129078574,122,Elective,2020-08-10,Abnormal,5626,218,4,6,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5627,2020-04-07,15823.579218098175,317,Urgent,2020-04-20,Normal,5627,176,3,18,,,,DISCHARGED -5628,2023-05-09,28350.11369627051,149,Emergency,2023-05-14,Normal,5628,203,4,29,,,,DISCHARGED -5629,2021-12-31,21264.44562119641,212,Emergency,2022-01-23,Inconclusive,5629,70,0,17,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -5630,2021-07-13,4300.140475867282,190,Urgent,2021-08-03,Inconclusive,5630,386,0,28,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5632,2019-04-19,42177.74827463338,235,Elective,2019-05-02,Normal,5632,265,2,19,,,,DISCHARGED -5633,2022-10-27,48154.36869166793,476,Elective,2022-11-24,Normal,5633,97,1,6,,,,DISCHARGED -5634,2022-02-23,23546.824236261076,165,Elective,2022-03-01,Abnormal,5634,344,3,22,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -5635,2023-02-04,3827.47615749252,303,Emergency,2023-03-03,Inconclusive,5635,290,1,8,,,,DISCHARGED -5636,2023-07-28,46966.75584267557,331,Urgent,,Inconclusive,5636,207,4,11,,,,OPEN -5637,2019-03-25,49423.49523302996,184,Emergency,2019-04-15,Abnormal,5637,1,3,28,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5638,2019-02-09,8357.29228941246,175,Emergency,2019-02-13,Abnormal,5638,123,3,2,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5639,2022-12-08,6158.640815770521,226,Emergency,2023-01-05,Normal,5639,279,0,22,,,,DISCHARGED -5640,2022-06-26,35905.18892706407,441,Urgent,2022-07-26,Normal,5640,73,4,21,,,,DISCHARGED -5641,2021-01-14,28555.815041452966,316,Elective,2021-01-26,Normal,5641,165,0,25,,,,DISCHARGED -5642,2023-01-06,15258.262477474316,167,Emergency,2023-01-09,Abnormal,5642,21,0,15,,,,DISCHARGED -5643,2019-12-31,6602.251287758873,372,Urgent,2020-01-24,Abnormal,5643,153,2,6,,,,DISCHARGED -5644,2019-06-06,43419.95581722009,316,Emergency,2019-06-07,Inconclusive,5644,426,0,22,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5645,2021-02-09,47211.49182779642,211,Urgent,2021-02-18,Normal,5645,438,1,25,,,,DISCHARGED -5647,2023-08-12,36132.48816773328,253,Urgent,2023-08-15,Inconclusive,5647,294,3,4,,,,DISCHARGED -5648,2023-01-17,11398.30961281586,220,Emergency,,Normal,5648,218,0,24,,,,OPEN -5649,2022-01-03,48089.11756732609,312,Elective,2022-01-16,Inconclusive,5649,156,1,22,,,,DISCHARGED -5650,2020-08-03,2947.8440318769035,228,Urgent,2020-08-27,Normal,5650,494,4,6,,,,DISCHARGED -5652,2021-11-20,26213.02241810872,489,Urgent,2021-12-17,Normal,5652,229,3,27,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -5653,2020-09-02,5323.758450915077,192,Elective,2020-09-26,Abnormal,5653,19,4,29,,,,DISCHARGED -5654,2023-10-25,34345.81066804729,193,Emergency,,Abnormal,5654,474,1,18,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5655,2022-09-20,25252.626807088083,492,Emergency,2022-10-03,Normal,5655,40,4,16,,,,DISCHARGED -5656,2020-05-27,4615.153353499796,492,Elective,2020-06-22,Inconclusive,5656,437,4,15,,,,DISCHARGED -5659,2023-04-02,8927.207797682033,252,Emergency,2023-04-26,Inconclusive,5659,147,4,29,,,,DISCHARGED -5660,2020-07-13,37583.68177193296,221,Urgent,2020-08-01,Inconclusive,5660,107,0,29,,,,DISCHARGED -5661,2019-07-31,30478.781418852614,476,Urgent,2019-08-18,Normal,5661,402,0,20,,,,DISCHARGED -5662,2023-01-13,4184.293920628197,271,Emergency,,Inconclusive,5662,83,0,23,,,,OPEN -5663,2019-10-24,4130.883390064402,227,Emergency,2019-11-02,Abnormal,5663,482,3,20,,,,DISCHARGED -5663,2020-02-01,34177.07794912983,282,Elective,2020-02-26,Inconclusive,9286,366,1,25,,,,DISCHARGED -5664,2019-07-26,26743.861006390787,247,Urgent,2019-07-28,Normal,5664,321,0,18,,,,DISCHARGED -5665,2022-02-06,9840.83120603295,128,Emergency,2022-02-09,Inconclusive,5665,413,4,24,,,,DISCHARGED -5667,2022-05-27,12251.998892896703,119,Elective,2022-06-18,Abnormal,5667,308,4,17,,,,DISCHARGED -5668,2020-05-06,15197.400021202966,113,Urgent,2020-05-18,Abnormal,5668,289,4,18,,,,DISCHARGED -5668,2019-11-25,5316.358466500731,463,Emergency,2019-12-25,Inconclusive,6242,405,4,27,,,,DISCHARGED -5668,2021-07-18,22756.839328326983,426,Urgent,2021-08-03,Inconclusive,7157,322,2,3,,,,DISCHARGED -5668,2018-11-05,10591.224896961778,489,Urgent,2018-11-06,Abnormal,8212,133,3,25,,,,DISCHARGED -5668,2019-10-26,28633.40747210143,188,Emergency,2019-10-28,Inconclusive,8627,206,1,0,,,,DISCHARGED -5668,2023-07-10,5866.170886251431,376,Urgent,,Normal,9748,282,1,26,,,,OPEN -5668,2023-06-01,41866.85304340323,319,Emergency,2023-06-26,Inconclusive,9804,265,0,3,,,,DISCHARGED -5669,2023-01-06,8763.035858471427,112,Elective,2023-01-08,Normal,5669,72,2,3,,,,DISCHARGED -5670,2020-10-27,15695.611575715258,307,Emergency,2020-11-14,Inconclusive,5670,480,1,8,,,,DISCHARGED -5671,2021-09-07,36737.00274310557,140,Urgent,2021-09-28,Inconclusive,5671,351,3,7,,,,DISCHARGED -5672,2021-02-11,27633.871154691664,442,Emergency,2021-02-23,Inconclusive,5672,47,4,1,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5673,2021-03-23,14923.44447975883,217,Urgent,2021-03-27,Inconclusive,5673,325,0,28,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5674,2023-07-01,14987.01155571157,369,Emergency,,Normal,5674,232,3,22,,,,OPEN -5675,2021-04-02,49678.36460338836,375,Emergency,2021-04-12,Abnormal,5675,442,1,5,,,,DISCHARGED -5675,2020-01-09,49541.88121075537,301,Urgent,2020-01-17,Inconclusive,7180,99,2,22,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -5676,2020-05-09,13871.759919105569,338,Urgent,2020-05-21,Abnormal,5676,58,0,10,,,,DISCHARGED -5677,2021-06-24,4315.537178870989,499,Emergency,2021-07-22,Inconclusive,5677,257,1,3,,,,DISCHARGED -5678,2018-12-06,44749.88722852461,152,Emergency,2018-12-22,Normal,5678,412,0,29,,,,DISCHARGED -5679,2022-01-18,4608.005854627593,174,Urgent,2022-02-11,Inconclusive,5679,451,1,13,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5680,2022-07-15,2406.8229283273627,334,Emergency,2022-07-25,Abnormal,5680,64,4,20,,,,DISCHARGED -5681,2021-12-25,10018.58276582826,105,Urgent,2021-12-28,Abnormal,5681,82,2,21,,,,DISCHARGED -5682,2019-11-10,47696.63249222352,366,Elective,2019-11-16,Inconclusive,5682,153,4,8,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -5683,2022-04-28,3055.7876552651387,273,Urgent,2022-05-17,Normal,5683,472,1,1,,,,DISCHARGED -5683,2022-06-20,33799.18645994579,494,Elective,2022-07-17,Abnormal,9417,265,3,26,,,,DISCHARGED -5684,2019-04-25,8512.098413981746,361,Emergency,2019-05-02,Normal,5684,308,4,24,,,,DISCHARGED -5685,2021-03-12,27327.57372010893,456,Urgent,2021-04-11,Normal,5685,78,3,25,,,,DISCHARGED -5686,2021-11-17,29510.074555864503,234,Emergency,2021-12-01,Normal,5686,314,1,0,,,,DISCHARGED -5687,2022-03-11,21010.370082254976,405,Emergency,2022-03-17,Normal,5687,149,2,3,,,,DISCHARGED -5688,2019-06-18,12758.226521406705,480,Emergency,2019-06-23,Normal,5688,434,3,11,,,,DISCHARGED -5689,2019-07-28,21172.06906887447,167,Urgent,2019-08-03,Inconclusive,5689,47,1,4,,,,DISCHARGED -5689,2021-06-22,40355.01784982245,370,Emergency,2021-07-10,Normal,7125,404,3,8,,,,DISCHARGED -5690,2021-09-24,30360.96204616538,314,Urgent,2021-09-25,Normal,5690,378,4,21,,,,DISCHARGED -5691,2022-02-01,37549.91348785777,237,Elective,2022-02-23,Normal,5691,247,1,3,,,,DISCHARGED -5692,2020-11-22,42775.47614220724,398,Emergency,2020-12-05,Normal,5692,277,4,15,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -5693,2019-11-18,17838.96637972813,326,Emergency,2019-12-13,Abnormal,5693,355,0,1,,,,DISCHARGED -5694,2022-03-03,13559.55845615191,270,Emergency,2022-03-18,Normal,5694,97,1,15,,,,DISCHARGED -5695,2019-10-22,34461.72131606651,210,Urgent,2019-11-09,Normal,5695,413,3,15,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5696,2023-05-12,47400.4582329689,358,Emergency,,Abnormal,5696,24,0,20,,,,OPEN -5698,2023-01-26,33094.70879573377,299,Urgent,2023-02-13,Normal,5698,492,4,23,,,,DISCHARGED -5699,2020-03-20,16573.236706481475,117,Urgent,2020-04-07,Normal,5699,283,4,23,,,,DISCHARGED -5700,2023-08-11,38498.71041560747,376,Urgent,2023-08-21,Inconclusive,5700,448,3,21,,,,DISCHARGED -5701,2023-08-18,44787.0651182221,406,Emergency,2023-08-28,Normal,5701,368,0,10,,,,DISCHARGED -5702,2020-08-26,37341.84121302799,482,Elective,2020-09-05,Inconclusive,5702,300,2,0,,,,DISCHARGED -5703,2022-06-04,13858.04865939046,238,Elective,2022-06-28,Normal,5703,67,3,14,,,,DISCHARGED -5704,2019-08-30,36131.43860743503,291,Elective,2019-09-10,Inconclusive,5704,6,4,23,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5705,2023-01-02,41861.69128051537,168,Urgent,2023-01-09,Abnormal,5705,304,1,3,,,,DISCHARGED -5706,2022-04-11,5930.110389450016,148,Emergency,2022-05-09,Inconclusive,5706,136,0,29,,,,DISCHARGED -5707,2019-09-22,4840.492342113495,388,Elective,2019-10-03,Abnormal,5707,163,2,17,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5708,2021-07-28,1827.4294799765569,379,Urgent,2021-08-21,Abnormal,5708,82,1,16,,,,DISCHARGED -5709,2022-08-29,48399.47492514278,292,Elective,2022-09-13,Normal,5709,384,0,6,,,,DISCHARGED -5710,2022-09-09,44965.81453031131,170,Urgent,2022-10-09,Inconclusive,5710,137,3,17,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -5711,2021-08-29,46584.580898071865,471,Elective,2021-09-27,Normal,5711,419,3,12,,,,DISCHARGED -5712,2022-06-08,48297.63335716982,243,Emergency,2022-06-14,Inconclusive,5712,72,0,19,,,,DISCHARGED -5714,2023-05-11,5136.397471761879,151,Urgent,2023-06-08,Abnormal,5714,236,2,19,,,,DISCHARGED -5715,2022-07-30,16331.063193536294,263,Emergency,2022-08-01,Inconclusive,5715,45,0,28,,,,DISCHARGED -5716,2020-09-17,16503.62973886917,299,Emergency,2020-09-22,Inconclusive,5716,105,1,9,,,,DISCHARGED -5717,2022-07-08,20522.829017123157,489,Urgent,2022-07-09,Inconclusive,5717,415,1,0,,,,DISCHARGED -5718,2021-08-12,14164.096932117964,462,Emergency,2021-08-30,Abnormal,5718,287,3,1,,,,DISCHARGED -5719,2023-09-17,5370.047013167488,174,Urgent,,Inconclusive,5719,261,0,16,,,,OPEN -5720,2019-01-06,28846.91754780325,342,Elective,2019-02-01,Inconclusive,5720,175,3,21,,,,DISCHARGED -5721,2020-09-26,47367.3561497254,485,Elective,2020-10-08,Abnormal,5721,165,2,28,,,,DISCHARGED -5723,2021-05-13,48557.01602548985,447,Elective,2021-05-21,Abnormal,5723,144,1,2,,,,DISCHARGED -5724,2021-10-24,19061.18429876577,491,Urgent,2021-11-13,Inconclusive,5724,329,4,16,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -5725,2019-07-28,22114.08045284868,370,Urgent,2019-08-13,Normal,5725,369,4,11,,,,DISCHARGED -5726,2019-03-09,24600.56607334664,151,Elective,2019-04-02,Abnormal,5726,282,0,23,,,,DISCHARGED -5727,2022-05-04,39101.73884494055,219,Elective,2022-06-01,Inconclusive,5727,53,0,29,,,,DISCHARGED -5728,2019-10-07,11481.075740603388,216,Urgent,2019-11-02,Inconclusive,5728,177,4,11,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5729,2019-01-13,33421.42863810723,463,Elective,2019-02-12,Normal,5729,418,0,29,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5730,2020-05-21,32683.2699086164,331,Elective,2020-06-20,Normal,5730,243,1,19,,,,DISCHARGED -5731,2023-03-27,42156.565468306886,375,Emergency,,Abnormal,5731,340,2,9,,,,OPEN -5731,2019-12-24,15914.248316226916,298,Emergency,2020-01-05,Normal,9021,126,2,6,,,,DISCHARGED -5731,2019-04-04,4639.5292352227225,127,Elective,2019-04-26,Abnormal,9370,408,3,9,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5731,2019-02-01,35425.886041243466,133,Emergency,2019-02-24,Normal,9895,411,1,17,,,,DISCHARGED -5732,2020-03-13,27194.710328396024,170,Emergency,2020-04-03,Inconclusive,5732,366,0,21,,,,DISCHARGED -5733,2023-01-03,23157.190000952392,134,Elective,2023-01-22,Abnormal,5733,270,0,5,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5734,2019-01-23,37299.71682528774,255,Emergency,2019-01-26,Inconclusive,5734,131,3,6,,,,DISCHARGED -5735,2022-03-26,15571.276439596191,146,Elective,2022-04-05,Normal,5735,92,3,27,,,,DISCHARGED -5736,2020-11-27,43616.74802278546,330,Emergency,2020-12-18,Inconclusive,5736,378,0,16,,,,DISCHARGED -5737,2022-12-16,49867.725384729696,431,Elective,2023-01-10,Inconclusive,5737,72,0,29,,,,DISCHARGED -5738,2019-06-04,25729.725925231505,339,Emergency,2019-06-30,Abnormal,5738,410,1,11,,,,DISCHARGED -5738,2021-05-15,16743.45490083031,221,Urgent,2021-05-29,Abnormal,7106,409,3,16,,,,DISCHARGED -5739,2022-09-17,20584.482012440338,475,Urgent,2022-10-08,Abnormal,5739,402,1,17,,,,DISCHARGED -5740,2022-06-09,48478.61993394317,433,Urgent,2022-06-14,Inconclusive,5740,247,0,13,,,,DISCHARGED -5741,2023-08-20,14300.264899069169,357,Emergency,2023-09-01,Inconclusive,5741,347,4,10,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -5742,2023-10-30,12727.74271497461,232,Emergency,2023-10-31,Abnormal,5742,272,4,1,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5743,2020-09-12,34819.71541971613,441,Emergency,2020-09-18,Inconclusive,5743,42,0,20,,,,DISCHARGED -5744,2023-08-21,17102.994488013057,245,Elective,,Inconclusive,5744,376,3,0,,,,OPEN -5745,2019-01-21,26675.96281068601,376,Emergency,2019-02-11,Normal,5745,40,4,10,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5746,2022-03-20,17266.817313593703,150,Urgent,2022-04-19,Normal,5746,169,3,1,,,,DISCHARGED -5747,2021-03-23,7852.092398446937,390,Elective,2021-03-26,Normal,5747,433,4,15,,,,DISCHARGED -5748,2018-12-21,22030.02937109001,208,Elective,2019-01-10,Normal,5748,211,3,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5749,2023-09-06,31149.52596576533,352,Urgent,,Abnormal,5749,492,4,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,OPEN -5750,2020-02-25,28148.24210457216,143,Emergency,2020-03-13,Normal,5750,167,3,19,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -5751,2022-12-25,41879.28204647698,366,Urgent,2022-12-31,Abnormal,5751,38,1,0,,,,DISCHARGED -5752,2019-06-03,18338.40500413429,212,Urgent,2019-06-22,Normal,5752,368,3,20,,,,DISCHARGED -5753,2021-08-22,35009.883490712666,409,Elective,2021-09-08,Inconclusive,5753,244,1,19,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5754,2023-10-12,16597.119745348034,253,Emergency,2023-10-31,Abnormal,5754,150,1,7,,,,DISCHARGED -5755,2023-04-21,49184.02876672157,466,Urgent,2023-05-10,Abnormal,5755,110,0,18,,,,DISCHARGED -5756,2022-07-08,37180.4313427351,339,Emergency,2022-07-09,Inconclusive,5756,479,1,25,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5757,2019-03-15,7087.373851232525,467,Emergency,2019-04-08,Normal,5757,435,2,0,,,,DISCHARGED -5758,2022-06-28,15995.36089902244,434,Emergency,2022-07-16,Inconclusive,5758,46,1,29,,,,DISCHARGED -5759,2020-11-09,40950.12132059218,118,Elective,2020-11-15,Inconclusive,5759,62,3,28,,,,DISCHARGED -5760,2020-09-02,41684.39817453037,241,Urgent,2020-09-12,Inconclusive,5760,224,1,25,,,,DISCHARGED -5761,2020-01-21,10899.542055880904,412,Elective,2020-01-29,Inconclusive,5761,365,3,4,,,,DISCHARGED -5762,2023-06-02,17289.84023678791,187,Urgent,,Normal,5762,68,3,29,,,,OPEN -5763,2019-04-14,33675.89134708535,422,Emergency,2019-05-05,Inconclusive,5763,298,2,0,,,,DISCHARGED -5764,2020-11-14,45548.51267032782,386,Emergency,2020-11-30,Inconclusive,5764,431,1,10,,,,DISCHARGED -5765,2023-08-26,39463.93182443523,186,Elective,2023-09-17,Normal,5765,289,1,20,,,,DISCHARGED -5766,2022-09-18,11269.907149120894,110,Elective,2022-09-24,Abnormal,5766,295,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5768,2023-02-09,43248.94433700831,108,Elective,,Normal,5768,202,4,4,,,,OPEN -5769,2019-10-31,18496.24237792658,194,Emergency,2019-11-28,Inconclusive,5769,60,0,1,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5770,2021-08-25,18541.16726544233,108,Elective,2021-08-27,Inconclusive,5770,433,3,12,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5772,2019-01-07,1669.043673886163,341,Elective,2019-02-04,Normal,5772,450,2,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -5773,2022-07-24,28661.7431811927,484,Elective,2022-08-06,Normal,5773,317,4,25,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5774,2022-12-18,26959.180753281984,376,Urgent,2022-12-25,Inconclusive,5774,313,1,24,,,,DISCHARGED -5775,2023-03-24,43552.75800014094,430,Urgent,2023-04-07,Normal,5775,160,0,11,,,,DISCHARGED -5776,2019-12-29,32019.79811285136,185,Elective,2020-01-10,Normal,5776,330,2,13,,,,DISCHARGED -5777,2022-01-03,48948.33346927594,403,Urgent,2022-01-14,Inconclusive,5777,15,1,4,,,,DISCHARGED -5778,2019-11-07,21988.6038189477,276,Emergency,2019-11-22,Normal,5778,337,1,26,,,,DISCHARGED -5779,2022-02-08,43160.54187875836,351,Urgent,2022-02-22,Normal,5779,93,3,23,,,,DISCHARGED -5780,2019-06-02,23048.547981640208,123,Urgent,2019-06-25,Normal,5780,303,3,9,,,,DISCHARGED -5781,2022-01-25,13801.225579838456,245,Emergency,2022-02-11,Normal,5781,137,4,19,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -5781,2019-03-01,1836.1561521746696,423,Urgent,2019-03-19,Normal,5960,337,4,1,,,,DISCHARGED -5782,2020-04-17,16258.18443999315,137,Emergency,2020-04-28,Inconclusive,5782,37,1,3,,,,DISCHARGED -5784,2023-09-15,4333.481416092538,286,Emergency,2023-09-19,Abnormal,5784,126,1,11,,,,DISCHARGED -5785,2023-01-14,10906.847568652323,433,Elective,2023-01-26,Normal,5785,274,4,10,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5786,2022-06-10,30886.826337844217,357,Elective,2022-07-02,Abnormal,5786,163,4,3,,,,DISCHARGED -5787,2021-03-17,44016.25337996813,368,Elective,2021-04-16,Normal,5787,442,1,10,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -5788,2018-12-22,47262.23550757792,188,Emergency,2019-01-02,Normal,5788,318,2,8,,,,DISCHARGED -5789,2020-04-08,19820.57848891653,393,Elective,2020-04-23,Abnormal,5789,76,1,9,,,,DISCHARGED -5790,2021-04-25,42914.2329374088,215,Urgent,2021-05-10,Abnormal,5790,173,2,26,,,,DISCHARGED -5791,2023-02-14,28901.18562768552,209,Emergency,2023-03-04,Abnormal,5791,386,2,5,,,,DISCHARGED -5792,2022-10-13,8845.568430814148,277,Urgent,2022-10-29,Abnormal,5792,457,1,14,,,,DISCHARGED -5793,2019-07-29,21599.183580621844,337,Emergency,2019-08-25,Inconclusive,5793,357,0,9,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -5794,2022-09-28,19912.007190439665,410,Elective,2022-10-26,Normal,5794,320,4,21,,,,DISCHARGED -5795,2020-12-01,45172.92417242992,357,Elective,2020-12-14,Abnormal,5795,375,3,20,,,,DISCHARGED -5796,2022-10-03,46194.69075171524,342,Urgent,2022-10-20,Abnormal,5796,90,1,5,,,,DISCHARGED -5797,2021-10-13,44560.56556772887,236,Urgent,2021-10-19,Abnormal,5797,237,2,0,,,,DISCHARGED -5798,2020-03-20,22729.197925047607,111,Emergency,2020-03-21,Inconclusive,5798,263,1,28,,,,DISCHARGED -5799,2023-02-13,29150.76872397366,199,Emergency,,Inconclusive,5799,178,4,20,,,,OPEN -5800,2020-01-20,17479.52945715791,109,Urgent,2020-02-02,Normal,5800,493,2,27,,,,DISCHARGED -5801,2021-08-18,20701.614613882208,124,Elective,2021-09-03,Normal,5801,489,3,21,,,,DISCHARGED -5802,2022-02-09,47339.85597283217,399,Emergency,2022-03-05,Inconclusive,5802,208,3,23,,,,DISCHARGED -5803,2019-08-07,45345.552231960144,175,Urgent,2019-08-25,Inconclusive,5803,72,3,19,,,,DISCHARGED -5804,2022-02-25,23026.72608087841,423,Emergency,2022-03-12,Normal,5804,389,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5805,2023-04-05,32135.579670758147,294,Urgent,,Normal,5805,106,2,20,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",OPEN -5806,2023-08-29,45500.46917087554,274,Urgent,,Normal,5806,344,2,3,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,OPEN -5807,2023-10-14,21874.444050306425,401,Emergency,,Inconclusive,5807,294,0,22,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",OPEN -5808,2022-04-13,49461.82935192647,133,Elective,2022-04-17,Inconclusive,5808,368,2,25,,,,DISCHARGED -5809,2019-05-08,14622.61692455964,213,Urgent,2019-05-15,Abnormal,5809,443,0,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -5810,2021-01-16,41563.12844469934,396,Emergency,2021-01-29,Normal,5810,283,1,13,,,,DISCHARGED -5811,2022-12-23,6112.92786961727,452,Emergency,2023-01-17,Inconclusive,5811,352,4,19,,,,DISCHARGED -5812,2019-08-14,30093.07734515799,408,Emergency,2019-08-27,Inconclusive,5812,181,3,21,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5813,2019-12-30,17640.524951930267,182,Emergency,2020-01-10,Normal,5813,36,0,28,,,,DISCHARGED -5813,2019-12-23,24046.4840152496,221,Elective,2020-01-20,Abnormal,9546,136,0,19,,,,DISCHARGED -5813,2022-03-22,39389.91754865901,466,Elective,2022-03-25,Inconclusive,9606,337,0,27,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -5814,2022-03-05,20567.98716184872,354,Elective,2022-03-26,Inconclusive,5814,55,1,7,,,,DISCHARGED -5815,2023-01-01,11276.382204336329,404,Elective,2023-01-08,Abnormal,5815,186,0,10,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5817,2022-10-12,23693.54529595784,136,Urgent,2022-10-24,Normal,5817,340,4,14,,,,DISCHARGED -5818,2023-10-14,14988.35038672491,246,Urgent,,Normal,5818,257,4,18,,,,OPEN -5819,2022-01-05,24565.706568687936,343,Elective,2022-02-04,Inconclusive,5819,444,3,7,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5820,2021-07-16,23997.705239597235,197,Elective,2021-08-06,Normal,5820,57,1,12,,,,DISCHARGED -5821,2023-05-28,42406.43853907525,256,Urgent,2023-05-30,Inconclusive,5821,362,4,17,,,,DISCHARGED -5822,2023-07-29,10670.187689967408,241,Emergency,2023-08-17,Abnormal,5822,122,2,21,,,,DISCHARGED -5823,2021-10-13,35101.878563323065,362,Urgent,2021-10-24,Inconclusive,5823,187,2,23,,,,DISCHARGED -5824,2023-07-20,45576.31435997374,174,Elective,2023-07-29,Inconclusive,5824,229,2,16,,,,DISCHARGED -5825,2023-01-28,19029.32154932333,348,Emergency,2023-02-07,Normal,5825,167,0,5,,,,DISCHARGED -5826,2022-07-21,36199.433172516416,201,Elective,2022-08-12,Normal,5826,419,0,24,,,,DISCHARGED -5827,2021-04-20,11921.672978391598,472,Emergency,2021-04-29,Abnormal,5827,113,2,14,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5828,2020-08-21,45547.95078050395,369,Elective,2020-08-31,Abnormal,5828,251,3,12,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -5829,2023-04-30,13478.190700482011,407,Urgent,,Abnormal,5829,106,3,25,,,,OPEN -5830,2021-12-27,24698.614404109256,410,Emergency,2022-01-22,Abnormal,5830,36,0,25,,,,DISCHARGED -5831,2018-11-28,43224.333545599846,437,Urgent,2018-12-26,Normal,5831,334,2,17,,,,DISCHARGED -5832,2022-07-22,46937.14038463809,167,Elective,2022-08-07,Normal,5832,91,3,10,,,,DISCHARGED -5833,2022-06-26,38345.28775896247,239,Elective,2022-06-30,Inconclusive,5833,17,0,12,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5835,2019-02-14,41935.419689399416,127,Urgent,2019-02-15,Normal,5835,353,2,0,,,,DISCHARGED -5836,2020-03-30,22530.169639872976,277,Emergency,2020-03-31,Inconclusive,5836,62,1,17,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5838,2020-01-03,4280.940044330634,206,Elective,2020-01-05,Normal,5838,149,2,4,,,,DISCHARGED -5839,2019-02-16,3783.910700582603,204,Urgent,2019-03-12,Normal,5839,138,2,5,,,,DISCHARGED -5840,2019-06-30,25294.405537941053,372,Emergency,2019-07-09,Abnormal,5840,185,4,0,,,,DISCHARGED -5842,2023-06-17,6183.514532732913,154,Emergency,,Abnormal,5842,184,4,6,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5844,2020-12-22,40093.084438571605,439,Urgent,2020-12-30,Abnormal,5844,204,1,26,,,,DISCHARGED -5845,2021-10-31,37497.77577624628,137,Urgent,2021-11-01,Inconclusive,5845,259,1,3,,,,DISCHARGED -5846,2022-09-17,14907.71956604352,328,Urgent,2022-09-24,Abnormal,5846,213,2,8,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -5849,2023-08-05,14673.462505964046,338,Elective,2023-08-13,Normal,5849,255,3,14,,,,DISCHARGED -5850,2019-08-28,3943.8805216772025,429,Emergency,2019-09-21,Normal,5850,134,1,5,,,,DISCHARGED -5851,2021-02-07,12521.845758159638,324,Urgent,2021-03-05,Abnormal,5851,60,2,24,,,,DISCHARGED -5852,2022-07-19,36083.19334909812,183,Emergency,2022-07-27,Abnormal,5852,362,0,16,,,,DISCHARGED -5853,2020-11-09,47055.45338132002,267,Urgent,2020-11-11,Normal,5853,309,4,19,,,,DISCHARGED -5854,2019-04-12,46377.806199025865,128,Elective,2019-04-28,Inconclusive,5854,87,3,17,,,,DISCHARGED -5855,2023-02-28,10562.514249173571,374,Urgent,2023-03-09,Normal,5855,323,2,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5856,2020-11-08,27586.898410261107,282,Emergency,2020-11-18,Normal,5856,475,0,3,,,,DISCHARGED -5857,2019-04-18,25312.26601218233,319,Elective,2019-05-17,Abnormal,5857,206,4,8,,,,DISCHARGED -5858,2022-12-08,11701.21626092594,192,Urgent,2023-01-03,Abnormal,5858,128,0,13,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -5859,2020-01-16,24169.977115139394,268,Elective,2020-02-05,Normal,5859,310,2,2,,,,DISCHARGED -5860,2022-10-13,5524.870740298888,174,Urgent,2022-11-01,Inconclusive,5860,2,1,0,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -5861,2022-08-01,4596.182829135514,374,Emergency,2022-08-09,Normal,5861,461,4,26,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -5863,2020-08-07,19663.114019123248,352,Elective,2020-08-22,Normal,5863,421,0,28,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -5865,2020-05-30,9318.907695455531,337,Emergency,2020-06-29,Normal,5865,241,1,10,,,,DISCHARGED -5866,2020-11-24,2641.4682385551496,351,Elective,2020-12-03,Normal,5866,120,3,0,,,,DISCHARGED -5867,2020-07-25,42287.61877335708,354,Emergency,2020-08-15,Abnormal,5867,384,2,11,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5868,2022-11-27,4496.148198774687,263,Urgent,2022-12-18,Normal,5868,101,2,24,,,,DISCHARGED -5869,2023-08-15,20852.540602137957,177,Urgent,2023-09-03,Normal,5869,37,4,8,,,,DISCHARGED -5869,2021-11-11,49476.7762061845,125,Urgent,2021-12-09,Abnormal,7544,340,0,4,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5870,2021-07-24,44651.93803562648,288,Elective,2021-08-13,Abnormal,5870,495,3,14,,,,DISCHARGED -5871,2020-07-21,26437.35836345445,136,Emergency,2020-08-08,Abnormal,5871,412,4,17,,,,DISCHARGED -5872,2020-12-24,18509.19644282935,222,Elective,2021-01-19,Abnormal,5872,132,4,8,,,,DISCHARGED -5873,2020-04-29,17594.434358445425,217,Urgent,2020-05-13,Inconclusive,5873,496,0,12,,,,DISCHARGED -5874,2019-04-07,15083.367820053334,491,Elective,2019-04-25,Inconclusive,5874,201,3,27,,,,DISCHARGED -5875,2021-04-10,26555.03714641204,192,Urgent,2021-04-15,Inconclusive,5875,347,0,12,,,,DISCHARGED -5876,2022-07-20,41357.24721302806,317,Emergency,2022-07-24,Abnormal,5876,20,2,23,,,,DISCHARGED -5877,2022-11-27,48381.62277487587,261,Elective,2022-12-25,Abnormal,5877,241,1,12,,,,DISCHARGED -5878,2023-10-26,39030.95085035015,349,Emergency,2023-11-04,Abnormal,5878,454,2,26,,,,DISCHARGED -5879,2019-12-02,26175.500439449104,425,Urgent,2019-12-12,Normal,5879,450,2,9,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -5880,2019-07-15,45227.78675798777,461,Emergency,2019-07-24,Abnormal,5880,108,4,9,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5881,2019-05-24,14423.58591974906,444,Elective,2019-06-18,Inconclusive,5881,302,2,21,,,,DISCHARGED -5882,2021-08-22,14930.015371629688,285,Emergency,2021-09-10,Abnormal,5882,83,3,6,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5884,2020-04-02,27047.85334383124,478,Urgent,2020-04-27,Inconclusive,5884,82,2,27,,,,DISCHARGED -5884,2019-06-30,30541.94990992974,138,Elective,2019-07-19,Inconclusive,7357,290,3,21,,,,DISCHARGED -5885,2023-03-02,24745.31389445365,495,Elective,,Normal,5885,451,0,4,,,,OPEN -5886,2020-07-06,13697.626454384575,113,Urgent,2020-08-01,Inconclusive,5886,68,4,19,,,,DISCHARGED -5887,2020-01-19,12601.533998081111,253,Emergency,2020-01-26,Abnormal,5887,128,3,6,,,,DISCHARGED -5887,2019-10-04,43030.53040830031,315,Urgent,2019-10-26,Inconclusive,6791,195,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5888,2019-08-01,18604.774225196896,371,Elective,2019-08-16,Inconclusive,5888,139,4,9,,,,DISCHARGED -5889,2020-06-17,42567.65533963311,293,Elective,2020-06-26,Inconclusive,5889,443,4,9,,,,DISCHARGED -5890,2023-05-29,38698.63254075844,143,Urgent,,Abnormal,5890,282,3,25,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -5891,2019-05-29,20091.351550050844,307,Urgent,2019-06-18,Inconclusive,5891,311,3,24,,,,DISCHARGED -5892,2021-10-28,40760.73241559383,307,Urgent,2021-11-12,Normal,5892,233,1,20,,,,DISCHARGED -5893,2021-08-02,24227.710939507822,394,Urgent,2021-08-19,Abnormal,5893,22,1,23,,,,DISCHARGED -5894,2020-11-02,5184.26988275542,414,Emergency,2020-11-20,Inconclusive,5894,152,4,27,,,,DISCHARGED -5895,2020-11-13,26915.193720158022,264,Urgent,2020-11-22,Normal,5895,276,1,12,,,,DISCHARGED -5896,2021-02-12,25215.012082755613,287,Urgent,2021-02-19,Abnormal,5896,60,2,14,,,,DISCHARGED -5897,2022-02-01,40903.985001991736,117,Emergency,2022-02-20,Abnormal,5897,318,0,27,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5898,2023-07-20,10116.998687717954,360,Emergency,,Abnormal,5898,377,4,27,,,,OPEN -5899,2020-07-10,16520.17027369717,391,Urgent,2020-07-17,Inconclusive,5899,51,0,5,,,,DISCHARGED -5900,2021-09-01,13536.916359878898,433,Emergency,2021-09-28,Inconclusive,5900,343,1,19,,,,DISCHARGED -5901,2020-08-14,23747.3833736443,424,Urgent,2020-08-17,Normal,5901,152,3,11,,,,DISCHARGED -5902,2020-11-27,22777.106392274614,477,Elective,2020-12-06,Normal,5902,236,4,18,,,,DISCHARGED -5903,2022-06-17,44082.366821003845,283,Elective,2022-07-07,Abnormal,5903,310,1,10,,,,DISCHARGED -5904,2021-12-19,12864.08301627652,325,Emergency,2021-12-30,Inconclusive,5904,301,2,5,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5905,2020-10-01,4746.56507262613,272,Emergency,2020-10-27,Inconclusive,5905,31,4,0,,,,DISCHARGED -5906,2021-08-07,37033.24584064084,312,Emergency,2021-08-28,Abnormal,5906,54,4,1,,,,DISCHARGED -5907,2020-02-19,48134.5593524709,304,Emergency,2020-03-20,Inconclusive,5907,351,3,22,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5908,2021-11-20,33099.51949697282,192,Elective,2021-12-20,Abnormal,5908,388,4,14,,,,DISCHARGED -5909,2023-08-30,30381.932790744137,195,Emergency,2023-09-11,Inconclusive,5909,35,3,3,,,,DISCHARGED -5910,2021-08-20,1599.6406981832902,389,Emergency,2021-08-24,Abnormal,5910,109,1,4,,,,DISCHARGED -5912,2019-11-23,24120.36757728615,196,Urgent,2019-12-01,Inconclusive,5912,489,2,14,,,,DISCHARGED -5913,2021-03-07,31298.845062980872,470,Elective,2021-04-06,Abnormal,5913,176,2,10,,,,DISCHARGED -5914,2023-05-01,3046.2018080691214,445,Emergency,2023-05-11,Abnormal,5914,361,4,9,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5915,2019-07-29,29813.539843456914,398,Elective,2019-08-13,Inconclusive,5915,313,4,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5916,2023-06-08,1616.9848923851412,424,Elective,,Abnormal,5916,294,1,1,,,,OPEN -5917,2021-12-06,25466.29126774474,387,Urgent,2021-12-15,Inconclusive,5917,335,3,19,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5918,2023-03-09,8911.507385719433,297,Elective,2023-03-28,Inconclusive,5918,96,2,23,,,,DISCHARGED -5919,2022-10-29,17659.82367043863,224,Emergency,2022-11-13,Inconclusive,5919,368,3,9,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -5920,2021-03-02,14332.36930516454,477,Emergency,2021-03-09,Abnormal,5920,212,1,19,,,,DISCHARGED -5921,2020-02-28,2789.1665426747923,269,Elective,2020-03-23,Abnormal,5921,316,2,29,,,,DISCHARGED -5922,2020-07-09,34704.978609524376,298,Urgent,2020-08-04,Abnormal,5922,136,2,2,,,,DISCHARGED -5923,2020-04-15,21558.994471884736,224,Urgent,2020-04-23,Inconclusive,5923,5,0,18,,,,DISCHARGED -5924,2023-08-26,26353.909437573453,446,Urgent,2023-09-21,Abnormal,5924,498,1,27,,,,DISCHARGED -5925,2020-11-16,9323.997217684306,118,Urgent,2020-12-10,Abnormal,5925,108,1,4,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5926,2019-12-14,37726.861035896494,185,Urgent,2020-01-10,Abnormal,5926,34,0,2,,,,DISCHARGED -5927,2019-10-18,34550.637098272855,368,Emergency,2019-10-20,Inconclusive,5927,38,3,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -5927,2021-12-29,16725.837700073927,447,Urgent,2022-01-20,Inconclusive,7802,149,0,4,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -5928,2022-05-11,6883.393394351776,333,Urgent,2022-05-17,Normal,5928,424,1,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -5929,2022-07-14,29159.34683613849,236,Emergency,2022-08-12,Normal,5929,117,3,29,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5930,2019-12-12,38022.55063014108,151,Emergency,2019-12-25,Normal,5930,260,2,11,,,,DISCHARGED -5931,2022-03-05,5045.807324305403,448,Urgent,2022-03-30,Inconclusive,5931,425,0,13,,,,DISCHARGED -5932,2020-01-13,5348.600174186669,125,Urgent,2020-01-29,Normal,5932,86,3,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5932,2020-12-24,36755.73641227056,343,Emergency,2021-01-22,Inconclusive,8829,464,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -5933,2021-04-02,18630.635202957503,384,Emergency,2021-04-24,Inconclusive,5933,75,3,7,,,,DISCHARGED -5933,2019-12-04,49409.7805414722,163,Emergency,2019-12-16,Inconclusive,9536,470,0,4,,,,DISCHARGED -5933,2023-04-21,49650.67288247996,150,Elective,2023-04-28,Normal,9891,463,2,7,,,,DISCHARGED -5934,2019-10-29,33835.720618442225,391,Urgent,2019-11-27,Inconclusive,5934,450,3,11,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5935,2022-05-08,16364.573734359798,158,Emergency,2022-05-20,Inconclusive,5935,413,0,14,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5936,2021-12-26,30085.556286655632,290,Urgent,2022-01-22,Inconclusive,5936,312,1,18,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -5937,2019-11-13,25762.858429483906,452,Emergency,2019-12-08,Inconclusive,5937,382,0,15,,,,DISCHARGED -5938,2022-02-08,28856.907094593997,436,Urgent,2022-02-17,Inconclusive,5938,213,0,13,,,,DISCHARGED -5939,2023-05-24,15372.317018843729,122,Elective,2023-05-26,Normal,5939,456,0,27,,,,DISCHARGED -5940,2020-07-09,39055.73775733056,394,Urgent,2020-07-23,Inconclusive,5940,284,3,6,,,,DISCHARGED -5941,2022-08-18,38069.75859176764,468,Emergency,2022-09-03,Inconclusive,5941,238,0,7,,,,DISCHARGED -5942,2023-03-11,45066.43568848367,449,Emergency,2023-03-28,Normal,5942,164,1,6,,,,DISCHARGED -5943,2021-12-22,35020.15685212769,435,Urgent,2022-01-16,Normal,5943,86,3,29,,,,DISCHARGED -5944,2019-07-02,32334.684722851747,136,Elective,2019-07-07,Normal,5944,140,1,17,,,,DISCHARGED -5945,2020-11-30,1042.981212355571,102,Urgent,2020-12-26,Inconclusive,5945,159,4,23,,,,DISCHARGED -5946,2022-02-13,27593.328512873995,204,Urgent,2022-02-23,Abnormal,5946,45,0,5,,,,DISCHARGED -5947,2019-12-07,19293.973354512163,127,Elective,2019-12-20,Abnormal,5947,371,3,25,,,,DISCHARGED -5948,2019-06-16,16901.43929972915,357,Elective,2019-07-06,Inconclusive,5948,494,3,18,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5949,2020-02-25,45417.712717121576,472,Elective,2020-03-09,Inconclusive,5949,111,0,3,,,,DISCHARGED -5950,2019-11-26,6381.992359118826,466,Urgent,2019-12-16,Abnormal,5950,406,2,22,,,,DISCHARGED -5951,2022-03-29,11004.423519309175,179,Emergency,2022-04-21,Inconclusive,5951,44,2,2,,,,DISCHARGED -5953,2019-10-18,8827.474941055696,378,Emergency,2019-11-10,Abnormal,5953,400,1,16,,,,DISCHARGED -5954,2023-03-16,8197.310249862994,471,Emergency,,Inconclusive,5954,246,0,21,,,,OPEN -5955,2020-09-06,34692.24222109207,173,Elective,2020-09-20,Inconclusive,5955,103,0,18,,,,DISCHARGED -5956,2018-11-11,26697.065206145307,390,Elective,2018-11-25,Abnormal,5956,84,4,26,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5957,2023-05-27,45591.89590686971,402,Emergency,2023-06-06,Inconclusive,5957,449,2,14,,,,DISCHARGED -5958,2022-01-03,38391.95584028942,268,Elective,2022-01-14,Normal,5958,484,2,25,,,,DISCHARGED -5959,2021-08-17,35814.73793055562,406,Elective,2021-09-06,Inconclusive,5959,133,0,5,,,,DISCHARGED -5962,2021-08-03,28971.754639264727,458,Elective,2021-08-17,Abnormal,5962,107,1,25,,,,DISCHARGED -5963,2019-02-28,35042.64468480079,149,Urgent,2019-03-11,Inconclusive,5963,17,0,11,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5964,2019-02-08,3286.8941288521664,139,Elective,2019-02-25,Normal,5964,93,1,18,,,,DISCHARGED -5965,2020-03-25,18853.52222401811,301,Emergency,2020-03-27,Inconclusive,5965,149,2,5,,,,DISCHARGED -5966,2019-10-22,32732.29254942737,146,Urgent,2019-11-13,Inconclusive,5966,245,4,10,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -5968,2023-05-25,22396.040457132563,105,Urgent,2023-06-11,Inconclusive,5968,288,3,19,,,,DISCHARGED -5969,2019-05-08,17280.236696628497,137,Urgent,2019-06-06,Abnormal,5969,413,2,28,,,,DISCHARGED -5970,2020-11-20,19730.65884625985,412,Emergency,2020-12-16,Abnormal,5970,208,1,19,,,,DISCHARGED -5971,2022-10-09,8368.835120707154,198,Emergency,2022-11-02,Inconclusive,5971,125,0,9,,,,DISCHARGED -5972,2023-07-10,8242.52621734721,448,Elective,2023-07-20,Abnormal,5972,234,2,25,,,,DISCHARGED -5974,2021-06-28,19631.170045271152,204,Elective,2021-07-15,Inconclusive,5974,415,4,15,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5975,2021-09-15,32089.786437380837,198,Elective,2021-09-16,Inconclusive,5975,425,1,26,,,,DISCHARGED -5976,2023-08-15,33534.24993420143,268,Elective,,Abnormal,5976,498,0,17,,,,OPEN -5977,2019-01-20,19420.951218525413,347,Elective,2019-02-15,Inconclusive,5977,461,3,13,,,,DISCHARGED -5978,2023-10-27,5483.5834146452735,395,Elective,2023-11-13,Normal,5978,121,1,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -5979,2019-09-08,1378.0009880748469,357,Emergency,2019-09-12,Normal,5979,137,0,26,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5980,2020-07-20,47834.50429510904,140,Elective,2020-08-19,Inconclusive,5980,494,3,11,,,,DISCHARGED -5981,2020-12-25,38503.31776706349,473,Urgent,2021-01-16,Normal,5981,114,0,19,,,,DISCHARGED -5982,2020-02-08,27728.566349198416,131,Urgent,2020-03-02,Abnormal,5982,419,3,26,,,,DISCHARGED -5983,2021-11-10,23559.849018799887,434,Emergency,2021-12-05,Abnormal,5983,161,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5984,2018-11-27,40804.66997411865,491,Emergency,2018-12-07,Abnormal,5984,200,3,20,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5985,2019-02-27,19203.629366162186,425,Urgent,2019-03-03,Normal,5985,233,0,7,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5986,2021-03-29,2717.8722357047604,473,Urgent,2021-04-13,Normal,5986,27,3,6,,,,DISCHARGED -5987,2023-08-09,17192.194092857884,478,Elective,,Abnormal,5987,10,1,25,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -5988,2023-10-04,14240.566572024592,259,Emergency,2023-10-10,Abnormal,5988,205,4,8,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5989,2022-05-24,16919.668953165707,377,Urgent,2022-06-11,Normal,5989,166,4,23,,,,DISCHARGED -5990,2019-10-26,31999.41875042375,196,Elective,2019-11-18,Abnormal,5990,246,3,24,,,,DISCHARGED -5991,2023-05-22,17251.998279581625,235,Emergency,2023-06-02,Normal,5991,46,4,16,,,,DISCHARGED -5991,2021-03-07,36914.84156071174,156,Emergency,2021-03-16,Inconclusive,9941,245,4,9,,,,DISCHARGED -5992,2021-01-08,3158.645462369566,152,Elective,2021-02-05,Inconclusive,5992,126,3,28,,,,DISCHARGED -5993,2019-08-08,23549.33909470684,219,Urgent,2019-08-31,Normal,5993,146,3,27,,,,DISCHARGED -5994,2021-10-11,2730.3191046085376,358,Urgent,2021-10-20,Normal,5994,117,1,2,,,,DISCHARGED -5995,2019-11-18,34860.843935419194,124,Emergency,2019-12-07,Abnormal,5995,398,2,20,,,,DISCHARGED -5996,2023-03-24,18220.601556604877,158,Urgent,2023-04-19,Abnormal,5996,381,0,24,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5997,2020-10-05,4750.89250702743,488,Urgent,2020-10-09,Inconclusive,5997,411,3,7,,,,DISCHARGED -5998,2020-11-30,15193.157340484317,434,Urgent,2020-12-29,Abnormal,5998,151,3,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5999,2019-06-09,42827.800252361805,402,Urgent,2019-06-27,Normal,5999,71,4,25,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -6000,2021-09-29,8970.000970695644,341,Urgent,2021-10-20,Inconclusive,6000,362,1,6,,,,DISCHARGED -6001,2022-08-09,9178.571798450394,256,Urgent,2022-08-15,Inconclusive,6001,136,4,15,,,,DISCHARGED -6002,2021-06-05,39902.55629115633,439,Urgent,2021-06-13,Inconclusive,6002,174,3,17,,,,DISCHARGED -6003,2019-03-04,12326.946459144618,122,Urgent,2019-03-07,Abnormal,6003,288,3,10,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -6005,2021-12-27,32335.889608311336,441,Emergency,2021-12-30,Abnormal,6005,445,4,5,,,,DISCHARGED -6006,2019-05-04,38983.39690377517,333,Elective,2019-05-22,Normal,6006,480,3,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6007,2023-03-15,4063.8833852474127,332,Emergency,2023-04-11,Abnormal,6007,18,2,20,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6008,2023-03-31,38975.40778060391,330,Emergency,2023-04-26,Normal,6008,194,0,13,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -6009,2023-08-23,4841.951551202654,297,Emergency,,Normal,6009,329,0,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -6010,2019-12-28,12909.297654361064,497,Urgent,2020-01-26,Normal,6010,423,0,12,,,,DISCHARGED -6011,2022-10-18,11518.852840732232,126,Elective,2022-10-31,Normal,6011,174,2,3,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6012,2021-10-20,45883.1796256381,405,Emergency,2021-11-01,Normal,6012,489,3,19,,,,DISCHARGED -6013,2020-06-19,16271.135835494846,298,Elective,2020-07-07,Abnormal,6013,448,4,19,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6014,2021-07-11,30466.692416681926,199,Elective,2021-07-28,Abnormal,6014,412,1,10,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -6015,2022-12-15,40309.36476932533,497,Elective,2022-12-26,Abnormal,6015,433,3,17,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -6016,2019-07-23,46805.42101295896,320,Emergency,2019-08-01,Inconclusive,6016,353,2,0,,,,DISCHARGED -6017,2022-02-20,3122.8045831751483,157,Elective,2022-03-03,Normal,6017,498,2,11,,,,DISCHARGED -6018,2023-01-30,32480.98615115175,397,Emergency,2023-02-10,Inconclusive,6018,140,0,17,,,,DISCHARGED -6019,2020-02-15,7713.898731274019,386,Emergency,2020-03-11,Abnormal,6019,245,3,6,,,,DISCHARGED -6021,2020-12-28,18415.405268949155,291,Elective,2021-01-07,Normal,6021,384,0,11,,,,DISCHARGED -6022,2019-04-14,22582.50171640081,368,Emergency,2019-04-17,Abnormal,6022,417,1,0,,,,DISCHARGED -6023,2019-10-13,26601.66365413308,371,Emergency,2019-11-02,Inconclusive,6023,92,0,21,,,,DISCHARGED -6024,2019-11-19,17143.945818964472,248,Emergency,2019-12-19,Normal,6024,431,1,3,,,,DISCHARGED -6025,2019-11-27,40637.7551932998,462,Elective,2019-12-01,Abnormal,6025,238,2,17,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -6026,2020-11-07,10875.096411080644,179,Urgent,2020-12-07,Abnormal,6026,204,0,14,,,,DISCHARGED -6028,2021-07-03,34014.79330689237,336,Emergency,2021-07-23,Abnormal,6028,47,0,2,,,,DISCHARGED -6029,2020-03-10,11916.903792412591,290,Urgent,2020-03-28,Inconclusive,6029,432,4,6,,,,DISCHARGED -6030,2023-01-05,30098.8873996369,273,Urgent,,Inconclusive,6030,244,2,5,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -6031,2019-11-03,11948.577113346237,354,Elective,2019-11-25,Inconclusive,6031,319,4,14,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6032,2023-03-09,26311.893968034638,283,Emergency,2023-03-19,Inconclusive,6032,316,1,14,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6033,2021-07-12,39130.03021153598,129,Elective,2021-08-01,Inconclusive,6033,412,1,5,,,,DISCHARGED -6034,2021-03-30,37463.34843224498,257,Urgent,2021-04-19,Normal,6034,294,2,7,,,,DISCHARGED -6035,2020-09-01,26252.970872754715,418,Emergency,2020-09-13,Normal,6035,127,1,7,,,,DISCHARGED -6035,2023-05-12,40441.96846952715,398,Urgent,2023-06-10,Normal,8329,343,2,21,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6036,2022-12-27,30853.352675023158,473,Urgent,2023-01-14,Abnormal,6036,281,1,0,,,,DISCHARGED -6037,2021-08-04,5077.834231965651,467,Elective,2021-08-27,Normal,6037,16,3,25,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -6038,2021-08-14,16659.706480507328,229,Emergency,2021-08-31,Abnormal,6038,70,0,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6039,2021-01-01,41398.91611388431,174,Urgent,2021-01-08,Inconclusive,6039,268,3,22,,,,DISCHARGED -6040,2023-04-17,28575.28418993742,215,Urgent,2023-04-18,Inconclusive,6040,324,2,23,,,,DISCHARGED -6041,2020-01-23,6944.7937028222,270,Emergency,2020-01-30,Normal,6041,281,2,20,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -6042,2020-11-10,48719.067467088,107,Urgent,2020-11-21,Inconclusive,6042,304,3,12,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6043,2021-06-24,4743.406570779665,417,Elective,2021-07-19,Inconclusive,6043,450,0,10,,,,DISCHARGED -6044,2019-10-21,26260.260751180136,333,Emergency,2019-11-16,Inconclusive,6044,6,0,3,,,,DISCHARGED -6045,2018-12-20,35330.79661087953,115,Urgent,2019-01-12,Abnormal,6045,313,4,6,,,,DISCHARGED -6046,2023-06-04,45646.94909067201,284,Urgent,2023-07-01,Inconclusive,6046,304,1,27,,,,DISCHARGED -6047,2020-02-07,24195.672795413982,155,Urgent,2020-03-04,Abnormal,6047,102,4,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -6048,2019-04-20,2041.8407667831616,495,Elective,2019-05-04,Abnormal,6048,308,0,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6049,2020-07-06,18679.07314822452,304,Emergency,2020-08-01,Abnormal,6049,192,3,12,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -6050,2022-10-29,30157.72372364938,116,Emergency,2022-11-16,Inconclusive,6050,240,1,21,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6050,2019-01-28,13225.16638451972,388,Urgent,2019-01-31,Abnormal,9869,61,3,11,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6052,2023-09-21,14627.995930200696,456,Urgent,2023-10-14,Inconclusive,6052,16,4,15,,,,DISCHARGED -6054,2022-03-28,10507.017825167057,130,Elective,2022-04-05,Inconclusive,6054,170,2,5,,,,DISCHARGED -6055,2022-08-07,2463.14168145493,201,Emergency,2022-08-28,Inconclusive,6055,24,3,13,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -6056,2023-09-15,43185.80145305649,405,Urgent,2023-09-17,Abnormal,6056,250,4,18,,,,DISCHARGED -6057,2019-04-06,6164.281923358486,369,Urgent,2019-05-06,Abnormal,6057,252,4,15,,,,DISCHARGED -6058,2022-04-26,19755.828880095723,449,Emergency,2022-05-01,Inconclusive,6058,386,4,26,,,,DISCHARGED -6059,2023-04-26,11287.34822284043,193,Emergency,2023-05-03,Normal,6059,206,2,25,,,,DISCHARGED -6060,2023-07-16,41603.29720625691,128,Elective,2023-07-22,Abnormal,6060,28,2,3,,,,DISCHARGED -6061,2022-10-24,38771.33562715259,372,Emergency,2022-11-03,Normal,6061,116,2,4,,,,DISCHARGED -6062,2023-07-24,41639.38493575151,327,Emergency,,Normal,6062,490,1,8,,,,OPEN -6064,2021-08-20,23563.15377954031,460,Emergency,2021-08-22,Abnormal,6064,415,2,23,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6066,2020-05-07,40656.39305192237,443,Urgent,2020-06-04,Abnormal,6066,281,2,2,,,,DISCHARGED -6067,2023-02-08,2030.966735933411,332,Urgent,2023-02-27,Abnormal,6067,379,2,21,,,,DISCHARGED -6068,2022-04-24,26736.9586944542,311,Urgent,2022-05-01,Abnormal,6068,143,3,9,,,,DISCHARGED -6069,2021-10-12,22484.01475668203,192,Urgent,2021-10-14,Inconclusive,6069,24,2,16,,,,DISCHARGED -6070,2019-02-03,2924.4589772935738,136,Emergency,2019-03-03,Inconclusive,6070,309,1,18,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6071,2022-03-31,42022.98956330117,255,Elective,2022-04-24,Inconclusive,6071,155,4,9,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6072,2021-01-07,19167.498606804467,242,Emergency,2021-01-25,Inconclusive,6072,72,3,29,,,,DISCHARGED -6073,2020-01-03,5580.290521121448,294,Emergency,2020-01-16,Inconclusive,6073,119,0,11,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6074,2023-08-03,2233.535350550429,154,Elective,2023-08-05,Normal,6074,311,2,22,,,,DISCHARGED -6075,2022-07-15,8720.357123981528,113,Emergency,2022-07-26,Abnormal,6075,320,4,6,,,,DISCHARGED -6076,2021-07-19,33733.967410745856,118,Urgent,2021-08-06,Abnormal,6076,92,4,17,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6077,2019-04-10,1352.748184486318,292,Urgent,2019-04-29,Inconclusive,6077,85,3,18,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6078,2020-08-24,21068.61727695532,125,Urgent,2020-09-05,Inconclusive,6078,335,0,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6079,2020-03-10,24310.254854187137,253,Elective,2020-04-05,Normal,6079,424,1,6,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -6080,2023-09-28,48710.62955931463,252,Emergency,,Inconclusive,6080,498,4,11,,,,OPEN -6081,2023-06-06,44697.33903475581,394,Elective,2023-06-21,Inconclusive,6081,363,4,21,,,,DISCHARGED -6082,2021-09-08,23616.02657226192,362,Urgent,2021-10-05,Abnormal,6082,434,4,28,,,,DISCHARGED -6083,2020-12-05,49878.9353502313,372,Urgent,2020-12-16,Abnormal,6083,117,4,6,,,,DISCHARGED -6084,2023-08-23,13072.08448257353,457,Elective,,Abnormal,6084,232,3,9,,,,OPEN -6085,2022-03-30,20737.036019191804,257,Urgent,2022-04-01,Abnormal,6085,198,0,24,,,,DISCHARGED -6086,2023-05-19,23105.22652158953,175,Elective,,Normal,6086,205,4,23,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6088,2021-01-26,17924.86023202854,335,Urgent,2021-02-25,Abnormal,6088,412,1,21,,,,DISCHARGED -6089,2019-10-24,18986.331968908245,204,Elective,2019-11-12,Inconclusive,6089,338,1,27,,,,DISCHARGED -6090,2021-01-02,16088.741924449598,135,Emergency,2021-01-26,Normal,6090,146,2,29,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6091,2021-02-03,5328.157487747513,339,Emergency,2021-03-03,Normal,6091,449,4,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6092,2021-11-18,4700.233026777709,122,Emergency,2021-11-28,Abnormal,6092,424,4,29,,,,DISCHARGED -6092,2021-10-21,40988.0344817342,454,Emergency,2021-11-04,Abnormal,6229,428,4,28,,,,DISCHARGED -6094,2021-02-27,46048.32020973106,131,Emergency,2021-03-23,Inconclusive,6094,270,4,9,,,,DISCHARGED -6095,2023-10-15,32903.22340985037,218,Elective,,Normal,6095,386,4,24,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",OPEN -6096,2019-04-04,33093.62417270338,124,Elective,2019-04-12,Inconclusive,6096,138,1,22,,,,DISCHARGED -6097,2020-10-19,19491.183352645603,170,Elective,2020-11-13,Abnormal,6097,180,0,4,,,,DISCHARGED -6098,2019-12-20,29138.81085988837,381,Emergency,2020-01-12,Inconclusive,6098,429,0,17,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -6099,2020-11-20,30090.863834624757,300,Elective,2020-12-02,Abnormal,6099,29,2,8,,,,DISCHARGED -6100,2019-03-18,18959.98701506969,156,Elective,2019-04-10,Inconclusive,6100,56,1,29,,,,DISCHARGED -6101,2023-01-30,23990.622338011097,311,Urgent,2023-02-08,Inconclusive,6101,231,4,15,,,,DISCHARGED -6102,2020-05-11,43662.89790791856,392,Emergency,2020-05-14,Abnormal,6102,145,0,6,,,,DISCHARGED -6103,2023-03-27,46090.69068944869,209,Urgent,2023-04-08,Normal,6103,434,3,24,,,,DISCHARGED -6104,2019-06-08,25403.45810365432,355,Urgent,2019-06-22,Abnormal,6104,383,3,26,,,,DISCHARGED -6105,2022-05-18,31581.714460647403,272,Emergency,2022-05-29,Abnormal,6105,47,3,24,,,,DISCHARGED -6106,2020-03-01,7419.347580921149,363,Elective,2020-03-03,Abnormal,6106,193,4,9,,,,DISCHARGED -6107,2019-09-02,4614.902595872119,361,Elective,2019-09-19,Normal,6107,223,4,4,,,,DISCHARGED -6109,2019-02-12,33777.330221004624,134,Urgent,2019-02-18,Inconclusive,6109,135,2,6,,,,DISCHARGED -6110,2019-09-29,42185.132971129264,137,Urgent,2019-10-24,Abnormal,6110,21,2,4,,,,DISCHARGED -6111,2020-08-18,13242.13439218701,372,Urgent,2020-09-15,Inconclusive,6111,5,2,14,,,,DISCHARGED -6113,2020-04-18,6738.384979570603,228,Elective,2020-05-18,Normal,6113,203,3,18,,,,DISCHARGED -6114,2020-08-23,48041.631844691816,461,Emergency,2020-09-16,Normal,6114,238,4,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6115,2022-09-05,15597.066771348253,364,Emergency,2022-10-01,Abnormal,6115,184,3,7,,,,DISCHARGED -6116,2022-09-30,47408.38777573841,329,Emergency,2022-10-23,Inconclusive,6116,359,2,23,,,,DISCHARGED -6117,2021-01-03,38794.58253617705,171,Elective,2021-01-28,Inconclusive,6117,291,4,8,,,,DISCHARGED -6119,2021-11-22,25348.705935905477,387,Emergency,2021-11-28,Normal,6119,334,1,10,,,,DISCHARGED -6120,2022-12-25,30636.084006927314,172,Elective,2023-01-20,Abnormal,6120,219,0,29,,,,DISCHARGED -6121,2021-08-03,22734.996414702007,445,Elective,2021-08-28,Normal,6121,115,0,27,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6122,2019-04-22,12400.895813112746,305,Urgent,2019-05-03,Normal,6122,312,2,21,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -6123,2020-05-30,21607.412165770384,428,Elective,2020-06-09,Normal,6123,48,3,1,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -6124,2019-12-11,41365.11781177608,484,Emergency,2019-12-31,Abnormal,6124,172,1,2,,,,DISCHARGED -6125,2021-06-24,20237.99408860453,262,Emergency,2021-07-01,Abnormal,6125,81,4,12,,,,DISCHARGED -6126,2023-05-16,16612.66607880724,353,Urgent,2023-06-03,Inconclusive,6126,321,3,10,,,,DISCHARGED -6127,2020-09-23,24098.63452986885,370,Urgent,2020-09-24,Inconclusive,6127,332,2,27,,,,DISCHARGED -6128,2023-09-13,29522.72367952392,127,Elective,,Inconclusive,6128,44,3,9,,,,OPEN -6129,2023-01-09,26396.06833246261,239,Urgent,2023-01-16,Normal,6129,334,2,26,,,,DISCHARGED -6130,2020-12-05,49344.59478878936,497,Elective,2021-01-04,Normal,6130,19,0,14,,,,DISCHARGED -6131,2023-07-27,18467.279290178358,285,Elective,2023-08-13,Inconclusive,6131,447,0,5,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6132,2019-04-07,27120.45220405838,364,Urgent,2019-05-02,Normal,6132,220,3,0,,,,DISCHARGED -6134,2019-11-28,37522.17784066239,443,Emergency,2019-12-15,Abnormal,6134,122,1,13,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -6135,2019-09-13,14360.82204091002,460,Urgent,2019-10-09,Normal,6135,233,4,17,,,,DISCHARGED -6136,2022-12-19,9726.594527822092,389,Elective,2023-01-14,Normal,6136,220,2,23,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6137,2021-01-21,9747.804400753566,286,Emergency,2021-02-01,Abnormal,6137,322,4,10,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -6138,2020-06-29,27700.638424488272,338,Elective,2020-07-23,Inconclusive,6138,338,0,7,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6139,2022-10-23,41069.41904162929,492,Urgent,2022-10-24,Abnormal,6139,2,1,21,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -6140,2021-07-13,12683.164387118475,474,Elective,2021-07-18,Abnormal,6140,181,1,2,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6141,2021-11-08,29309.57990292996,241,Emergency,2021-11-20,Abnormal,6141,205,4,13,,,,DISCHARGED -6141,2021-12-28,46535.200937036905,179,Emergency,2022-01-21,Normal,8167,319,0,1,,,,DISCHARGED -6142,2023-02-07,46224.79873010241,428,Elective,2023-02-19,Abnormal,6142,39,4,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6143,2019-02-04,43005.31830628686,489,Urgent,2019-03-04,Abnormal,6143,58,3,15,,,,DISCHARGED -6144,2019-12-10,45432.314592298375,154,Emergency,2019-12-31,Normal,6144,438,1,5,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6145,2020-04-16,9206.554307583525,398,Elective,2020-05-14,Normal,6145,61,1,0,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6146,2021-03-09,1475.7982615717308,370,Urgent,2021-03-19,Normal,6146,131,3,13,,,,DISCHARGED -6147,2021-09-05,32580.594671794504,346,Elective,2021-09-20,Abnormal,6147,59,0,9,,,,DISCHARGED -6148,2023-01-19,3230.9943158924525,312,Emergency,2023-01-22,Abnormal,6148,371,1,5,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6149,2022-02-21,38489.52841896299,345,Emergency,2022-03-12,Normal,6149,330,2,8,,,,DISCHARGED -6150,2022-11-28,47409.08953668171,302,Elective,2022-12-14,Normal,6150,121,2,6,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6151,2019-02-08,40827.013852454285,105,Urgent,2019-03-04,Normal,6151,478,0,24,,,,DISCHARGED -6152,2020-05-30,48451.38635989904,321,Elective,2020-06-26,Normal,6152,106,3,1,,,,DISCHARGED -6153,2018-12-12,42280.6133158642,381,Urgent,2019-01-07,Inconclusive,6153,95,4,10,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -6154,2020-10-20,10226.80854218207,299,Emergency,2020-10-26,Normal,6154,346,0,13,,,,DISCHARGED -6155,2020-05-07,22673.15885681665,171,Emergency,2020-05-26,Abnormal,6155,413,4,4,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -6156,2022-06-22,11482.053745428118,184,Elective,2022-07-07,Inconclusive,6156,234,0,8,,,,DISCHARGED -6157,2022-04-22,1991.9333147612751,433,Emergency,2022-05-08,Abnormal,6157,385,2,6,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -6158,2020-01-04,16936.338873847635,105,Emergency,2020-01-09,Inconclusive,6158,61,3,24,,,,DISCHARGED -6159,2023-09-24,16149.444371628577,360,Emergency,2023-10-03,Inconclusive,6159,255,2,13,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6160,2018-11-07,45140.73659282821,115,Elective,2018-11-17,Inconclusive,6160,48,3,26,,,,DISCHARGED -6162,2023-06-30,9900.17189749598,405,Elective,,Abnormal,6162,392,4,15,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6163,2020-10-20,47672.93154582539,124,Emergency,2020-11-17,Abnormal,6163,347,0,21,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6163,2022-10-02,37777.1552910288,496,Urgent,2022-10-31,Abnormal,8467,158,1,15,,,,DISCHARGED -6164,2022-09-12,6867.424515252065,323,Urgent,2022-10-10,Inconclusive,6164,123,1,6,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6165,2020-03-13,41498.11685589601,170,Urgent,2020-04-05,Abnormal,6165,481,3,9,,,,DISCHARGED -6166,2023-08-29,29470.6915412482,311,Emergency,2023-09-07,Inconclusive,6166,316,3,20,,,,DISCHARGED -6166,2021-06-04,31606.94697114073,263,Elective,2021-06-09,Normal,8793,206,2,5,,,,DISCHARGED -6167,2020-12-23,31959.387841430336,467,Urgent,2021-01-11,Abnormal,6167,47,1,16,,,,DISCHARGED -6168,2019-05-11,29217.23145986397,327,Urgent,2019-05-30,Inconclusive,6168,408,2,0,,,,DISCHARGED -6169,2019-01-28,20606.38435239024,195,Urgent,2019-02-06,Normal,6169,419,4,1,,,,DISCHARGED -6170,2022-09-23,41288.83756871875,437,Elective,2022-10-18,Normal,6170,135,1,26,,,,DISCHARGED -6171,2022-11-17,39817.60065185772,151,Urgent,2022-12-13,Abnormal,6171,200,4,13,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6172,2023-02-08,37345.41597518384,424,Elective,,Normal,6172,249,0,3,,,,OPEN -6173,2019-05-07,35929.09159349071,401,Emergency,2019-05-18,Inconclusive,6173,313,2,26,,,,DISCHARGED -6174,2020-12-20,4130.869339113963,340,Elective,2020-12-22,Normal,6174,356,3,8,,,,DISCHARGED -6175,2022-11-12,43926.65010139064,362,Elective,2022-12-04,Abnormal,6175,367,1,22,,,,DISCHARGED -6176,2020-05-18,32066.684256183773,201,Urgent,2020-06-14,Abnormal,6176,428,2,5,,,,DISCHARGED -6177,2020-05-15,38598.317047569966,407,Elective,2020-06-04,Normal,6177,317,3,16,,,,DISCHARGED -6178,2021-01-19,28572.96281598436,421,Urgent,2021-02-02,Normal,6178,294,0,20,,,,DISCHARGED -6179,2019-05-25,49865.84795118959,374,Emergency,2019-06-11,Abnormal,6179,479,1,10,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6181,2023-06-02,6816.642650056341,474,Elective,,Abnormal,6181,313,4,27,,,,OPEN -6182,2023-01-28,45961.12615610182,230,Elective,2023-02-05,Normal,6182,499,0,28,,,,DISCHARGED -6183,2018-12-03,4438.311336000047,388,Urgent,2018-12-04,Abnormal,6183,208,3,3,,,,DISCHARGED -6184,2022-09-21,42537.9020492107,210,Urgent,2022-10-12,Normal,6184,354,1,20,,,,DISCHARGED -6186,2022-01-26,3025.1800943642866,204,Urgent,2022-02-06,Abnormal,6186,484,1,26,,,,DISCHARGED -6187,2019-01-25,14295.44972275746,120,Urgent,2019-02-23,Inconclusive,6187,210,0,8,,,,DISCHARGED -6188,2020-01-14,5530.92629333341,241,Emergency,2020-02-10,Normal,6188,191,1,27,,,,DISCHARGED -6189,2021-09-11,47706.668252865085,230,Urgent,2021-09-18,Normal,6189,43,3,15,,,,DISCHARGED -6190,2019-11-07,39312.99811347667,468,Emergency,2019-11-12,Inconclusive,6190,28,0,2,,,,DISCHARGED -6191,2022-11-24,24275.67187138074,230,Emergency,2022-11-25,Normal,6191,58,4,3,,,,DISCHARGED -6192,2021-04-22,16114.569059248815,148,Urgent,2021-05-04,Normal,6192,70,0,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6193,2023-09-08,46556.27087797975,377,Elective,2023-09-09,Inconclusive,6193,91,0,2,,,,DISCHARGED -6194,2019-03-30,19341.673083933863,136,Urgent,2019-04-18,Inconclusive,6194,264,4,12,,,,DISCHARGED -6195,2019-01-18,28003.823887023857,117,Elective,2019-02-01,Abnormal,6195,382,3,18,,,,DISCHARGED -6196,2020-04-05,7686.553156068053,471,Emergency,2020-04-26,Inconclusive,6196,219,2,28,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -6197,2020-12-04,3843.528519592905,301,Emergency,2020-12-19,Inconclusive,6197,389,2,24,,,,DISCHARGED -6198,2021-04-12,32540.751352168507,491,Emergency,2021-05-11,Abnormal,6198,412,4,20,,,,DISCHARGED -6199,2023-07-10,20400.88808716771,206,Urgent,,Normal,6199,441,3,25,,,,OPEN -6200,2019-04-02,15813.10138707612,115,Emergency,2019-04-03,Inconclusive,6200,400,1,0,,,,DISCHARGED -6201,2021-04-21,14468.251353635906,349,Urgent,2021-05-21,Inconclusive,6201,399,4,22,,,,DISCHARGED -6202,2020-03-18,3748.3979325421537,172,Emergency,2020-04-09,Inconclusive,6202,214,2,22,,,,DISCHARGED -6203,2023-09-14,41219.50185701669,475,Urgent,2023-09-23,Inconclusive,6203,478,3,5,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -6203,2022-01-27,18281.015579073784,398,Emergency,2022-02-12,Abnormal,9463,386,0,21,,,,DISCHARGED -6205,2022-08-02,45354.2360103459,384,Elective,2022-08-13,Abnormal,6205,276,3,2,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -6206,2020-12-31,47063.29800131448,242,Emergency,2021-01-04,Abnormal,6206,63,3,2,,,,DISCHARGED -6207,2022-05-11,30068.87039543928,398,Urgent,2022-06-01,Inconclusive,6207,345,2,15,,,,DISCHARGED -6208,2020-03-02,35938.589967743064,362,Emergency,2020-03-23,Normal,6208,291,2,9,,,,DISCHARGED -6209,2019-10-26,15628.513922041211,427,Emergency,2019-10-28,Abnormal,6209,489,1,26,,,,DISCHARGED -6210,2019-11-30,38592.307992839706,106,Elective,2019-12-17,Inconclusive,6210,484,1,24,,,,DISCHARGED -6211,2019-02-16,43923.63012934363,208,Emergency,2019-03-12,Abnormal,6211,244,4,16,,,,DISCHARGED -6212,2020-11-06,45168.47816621722,206,Emergency,2020-11-28,Inconclusive,6212,469,0,6,,,,DISCHARGED -6212,2021-10-16,27931.43539338077,365,Urgent,2021-11-05,Inconclusive,9795,61,1,12,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6213,2020-03-02,26307.045823635894,200,Emergency,2020-03-16,Normal,6213,425,2,27,,,,DISCHARGED -6214,2021-12-20,14634.65959231155,257,Emergency,2022-01-12,Normal,6214,331,3,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6216,2022-02-07,37809.57489814309,250,Elective,2022-02-10,Normal,6216,169,4,9,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6217,2022-04-11,10941.548876368746,371,Urgent,2022-05-10,Inconclusive,6217,444,1,6,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -6218,2022-07-22,31459.12163046863,343,Elective,2022-08-04,Inconclusive,6218,268,3,23,,,,DISCHARGED -6219,2021-09-17,39896.15769803589,103,Elective,2021-10-13,Abnormal,6219,266,3,5,,,,DISCHARGED -6220,2022-05-22,1971.4650255665088,391,Urgent,2022-06-03,Abnormal,6220,53,1,23,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -6220,2022-12-31,36233.91324124278,386,Urgent,2023-01-04,Inconclusive,8653,15,0,0,,,,DISCHARGED -6221,2022-06-20,4493.970986534578,372,Emergency,2022-07-04,Normal,6221,7,0,16,,,,DISCHARGED -6222,2023-09-12,24413.27693643391,116,Urgent,,Abnormal,6222,103,4,24,,,,OPEN -6224,2020-06-11,38555.43104984762,225,Emergency,2020-06-18,Inconclusive,6224,58,0,11,,,,DISCHARGED -6225,2021-11-02,5567.633006001641,285,Urgent,2021-11-30,Inconclusive,6225,312,4,3,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -6226,2022-06-17,34566.9163623865,379,Elective,2022-07-06,Normal,6226,39,2,2,,,,DISCHARGED -6227,2019-09-17,46762.663205146586,239,Emergency,2019-10-10,Abnormal,6227,236,1,5,,,,DISCHARGED -6228,2022-04-14,17834.520252656082,115,Emergency,2022-05-12,Inconclusive,6228,442,3,25,,,,DISCHARGED -6230,2022-03-07,22171.132302551843,159,Emergency,2022-03-18,Inconclusive,6230,385,4,27,,,,DISCHARGED -6231,2020-12-08,26973.663555245108,458,Emergency,2020-12-15,Normal,6231,93,0,15,,,,DISCHARGED -6232,2023-10-25,17744.66305742216,409,Urgent,,Normal,6232,221,4,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",OPEN -6233,2023-09-08,44596.761025798325,135,Urgent,2023-10-05,Normal,6233,203,4,27,,,,DISCHARGED -6234,2022-03-13,15326.408580092371,461,Emergency,2022-03-19,Normal,6234,137,0,8,,,,DISCHARGED -6235,2021-04-11,26475.71665810182,425,Elective,2021-04-25,Inconclusive,6235,299,0,25,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -6236,2022-02-26,27056.74753592466,433,Elective,2022-03-01,Inconclusive,6236,394,1,10,,,,DISCHARGED -6237,2021-03-18,32784.45831993211,345,Urgent,2021-03-30,Inconclusive,6237,206,3,19,,,,DISCHARGED -6238,2020-12-21,45169.53202050832,308,Elective,2020-12-27,Inconclusive,6238,335,1,24,,,,DISCHARGED -6239,2022-04-20,42941.10175938614,437,Urgent,2022-04-21,Abnormal,6239,80,1,20,,,,DISCHARGED -6240,2019-09-03,34701.48887810339,291,Urgent,2019-09-26,Inconclusive,6240,217,0,12,,,,DISCHARGED -6241,2018-12-21,29685.08165495313,142,Urgent,2019-01-13,Normal,6241,1,0,22,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -6243,2023-02-07,48491.90699632781,154,Emergency,2023-02-09,Abnormal,6243,177,3,18,,,,DISCHARGED -6244,2023-09-25,2277.420196350031,133,Emergency,2023-10-11,Normal,6244,395,4,2,,,,DISCHARGED -6245,2021-08-12,42965.05116296528,394,Urgent,2021-08-16,Inconclusive,6245,370,1,11,,,,DISCHARGED -6246,2023-05-15,23028.25910827863,164,Urgent,2023-05-21,Normal,6246,345,3,18,,,,DISCHARGED -6247,2019-04-05,36311.61092148439,339,Urgent,2019-04-08,Inconclusive,6247,278,1,7,,,,DISCHARGED -6248,2023-08-30,20601.65926495438,444,Elective,2023-09-03,Normal,6248,145,4,13,,,,DISCHARGED -6249,2022-09-15,3192.161002612057,271,Elective,2022-10-05,Normal,6249,317,1,21,,,,DISCHARGED -6250,2022-10-23,25115.70049534741,308,Urgent,2022-11-13,Inconclusive,6250,223,2,8,,,,DISCHARGED -6251,2020-11-17,12218.129444457458,178,Urgent,2020-11-22,Abnormal,6251,368,3,24,,,,DISCHARGED -6252,2020-07-27,48228.96275138811,134,Elective,2020-08-09,Inconclusive,6252,383,0,23,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -6253,2019-03-06,17612.027669269068,311,Emergency,2019-03-15,Normal,6253,61,1,16,,,,DISCHARGED -6254,2021-02-24,19050.665929734118,127,Emergency,2021-03-20,Normal,6254,293,3,5,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6255,2019-04-18,9276.528131390927,261,Elective,2019-05-01,Normal,6255,238,3,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6256,2021-05-07,45414.6653474973,399,Urgent,2021-05-21,Abnormal,6256,194,1,3,,,,DISCHARGED -6257,2022-04-05,9523.460119166888,196,Urgent,2022-04-26,Inconclusive,6257,165,0,18,,,,DISCHARGED -6257,2020-05-29,49701.59285074048,253,Emergency,2020-06-08,Inconclusive,7398,450,0,11,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -6258,2023-09-28,46526.23601867224,275,Urgent,2023-10-09,Normal,6258,221,1,24,,,,DISCHARGED -6259,2021-04-30,18976.970844728214,106,Elective,2021-05-05,Normal,6259,60,3,1,,,,DISCHARGED -6260,2023-09-30,3954.394087385822,463,Urgent,2023-10-09,Abnormal,6260,128,0,16,,,,DISCHARGED -6261,2023-04-25,34819.58352622761,413,Urgent,2023-05-07,Abnormal,6261,477,1,29,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -6262,2021-06-27,17191.55707452727,405,Emergency,2021-07-23,Normal,6262,172,1,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6263,2021-06-03,26726.34781120176,327,Emergency,2021-06-26,Abnormal,6263,479,1,9,,,,DISCHARGED -6264,2019-08-04,33869.326218005765,293,Elective,2019-08-10,Normal,6264,155,3,2,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6265,2020-01-27,21208.935034574213,206,Elective,2020-01-30,Abnormal,6265,404,0,28,,,,DISCHARGED -6266,2023-07-02,36516.50454511538,421,Emergency,2023-08-01,Normal,6266,377,3,19,,,,DISCHARGED -6267,2023-02-07,48298.857995849066,355,Urgent,2023-02-28,Inconclusive,6267,109,2,3,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -6268,2023-05-04,12192.828410927816,289,Urgent,,Abnormal,6268,268,0,21,,,,OPEN -6269,2022-06-11,37733.93980784244,149,Urgent,2022-06-13,Normal,6269,410,3,0,,,,DISCHARGED -6270,2022-04-19,20169.98065941197,118,Emergency,2022-04-28,Normal,6270,355,0,0,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -6271,2019-02-17,15602.99780012213,491,Urgent,2019-03-12,Normal,6271,390,2,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -6272,2021-12-29,45543.98397755877,257,Emergency,2022-01-15,Normal,6272,277,4,3,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -6272,2019-10-21,45322.87491249462,281,Urgent,2019-11-04,Normal,6410,73,1,22,,,,DISCHARGED -6272,2019-10-28,37743.61604907189,119,Elective,2019-10-31,Normal,8134,486,3,21,,,,DISCHARGED -6274,2021-10-08,29890.736589541262,229,Elective,2021-10-23,Abnormal,6274,436,2,14,,,,DISCHARGED -6275,2023-10-03,32740.92574514204,101,Urgent,,Inconclusive,6275,462,2,26,,,,OPEN -6276,2021-11-06,9484.561597344376,347,Emergency,2021-11-28,Normal,6276,206,0,24,,,,DISCHARGED -6277,2019-07-24,22156.731990339817,310,Emergency,2019-08-14,Inconclusive,6277,387,0,22,,,,DISCHARGED -6278,2022-10-01,28087.173240632677,299,Elective,2022-10-13,Inconclusive,6278,479,1,27,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6279,2020-02-27,45459.75564855291,485,Emergency,2020-03-25,Abnormal,6279,278,0,20,,,,DISCHARGED -6280,2020-08-27,36501.97002806507,266,Urgent,2020-09-26,Normal,6280,374,3,21,,,,DISCHARGED -6281,2019-12-02,44773.1925129568,387,Elective,2019-12-12,Inconclusive,6281,325,3,9,,,,DISCHARGED -6282,2020-12-28,20597.331221718778,367,Elective,2021-01-18,Abnormal,6282,471,3,24,,,,DISCHARGED -6283,2022-12-22,2776.647406669794,191,Elective,2023-01-04,Normal,6283,339,4,16,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6284,2020-01-30,31062.37992543368,411,Emergency,2020-02-19,Inconclusive,6284,356,3,26,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6285,2022-10-30,12958.944116433528,359,Elective,2022-11-10,Abnormal,6285,339,0,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6286,2023-02-17,3645.142655875792,153,Urgent,2023-02-28,Abnormal,6286,203,0,21,,,,DISCHARGED -6287,2019-07-29,16284.262915163392,141,Elective,2019-08-02,Inconclusive,6287,160,3,11,,,,DISCHARGED -6288,2021-06-26,22298.239377625505,468,Emergency,2021-07-13,Abnormal,6288,27,2,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6289,2022-07-07,28223.966176477672,348,Urgent,2022-08-04,Inconclusive,6289,391,2,11,,,,DISCHARGED -6290,2019-12-02,31647.802050439448,304,Emergency,2019-12-17,Inconclusive,6290,256,2,15,,,,DISCHARGED -6291,2021-06-14,41419.76228132893,306,Urgent,2021-06-21,Abnormal,6291,164,1,4,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6293,2023-08-30,21395.64828735212,147,Emergency,2023-09-08,Normal,6293,62,4,28,,,,DISCHARGED -6294,2021-04-28,8381.671707759755,258,Elective,2021-05-16,Abnormal,6294,21,3,15,,,,DISCHARGED -6295,2020-08-24,48376.088832993766,188,Urgent,2020-09-06,Normal,6295,69,1,16,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6297,2022-05-06,32522.499149935287,158,Urgent,2022-05-23,Inconclusive,6297,380,2,22,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6298,2021-05-11,36131.75386382159,378,Urgent,2021-06-02,Normal,6298,404,3,28,,,,DISCHARGED -6299,2019-05-01,24676.176838998825,283,Urgent,2019-05-21,Inconclusive,6299,95,1,14,,,,DISCHARGED -6300,2023-06-11,15525.91164448756,332,Emergency,2023-06-30,Normal,6300,162,0,12,,,,DISCHARGED -6301,2020-03-22,46494.09289928049,144,Urgent,2020-04-18,Inconclusive,6301,78,2,7,,,,DISCHARGED -6302,2021-05-04,49516.31337760794,480,Urgent,2021-05-20,Abnormal,6302,4,1,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -6305,2021-01-13,5805.097992573134,304,Emergency,2021-01-27,Inconclusive,6305,315,0,20,,,,DISCHARGED -6306,2020-05-19,47227.26072631823,240,Emergency,2020-06-12,Abnormal,6306,119,2,1,,,,DISCHARGED -6307,2021-07-23,29810.43532804897,278,Emergency,2021-08-05,Inconclusive,6307,301,4,7,,,,DISCHARGED -6308,2022-11-06,45805.19650123357,384,Emergency,2022-11-11,Inconclusive,6308,177,2,9,,,,DISCHARGED -6309,2023-04-25,4912.829136820908,173,Emergency,,Abnormal,6309,175,4,6,,,,OPEN -6310,2021-03-01,23544.864488158502,258,Elective,2021-03-21,Abnormal,6310,389,4,9,,,,DISCHARGED -6311,2019-09-06,35386.11067234685,320,Urgent,2019-09-28,Abnormal,6311,216,4,24,,,,DISCHARGED -6312,2022-06-16,32418.295874994077,426,Emergency,2022-07-06,Normal,6312,55,3,3,,,,DISCHARGED -6312,2023-09-06,14276.47340348072,270,Urgent,2023-10-05,Abnormal,8640,365,3,10,,,,DISCHARGED -6312,2020-05-11,4780.693192207359,382,Elective,2020-05-25,Normal,9877,186,4,8,,,,DISCHARGED -6313,2022-04-05,24822.26794898652,172,Elective,2022-04-09,Normal,6313,231,0,3,,,,DISCHARGED -6315,2021-07-13,31622.653332477646,261,Urgent,2021-08-02,Normal,6315,254,4,2,,,,DISCHARGED -6316,2021-11-07,2614.092123383107,466,Elective,2021-12-02,Inconclusive,6316,412,1,10,,,,DISCHARGED -6317,2020-06-15,9161.065246397118,301,Elective,2020-06-17,Inconclusive,6317,454,4,2,,,,DISCHARGED -6318,2022-02-14,38806.59439247778,418,Emergency,2022-02-28,Inconclusive,6318,103,3,25,,,,DISCHARGED -6319,2020-03-14,15810.726796890822,472,Urgent,2020-03-15,Inconclusive,6319,76,3,17,,,,DISCHARGED -6320,2022-10-02,23174.406843495814,379,Urgent,2022-10-09,Inconclusive,6320,229,1,25,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -6321,2023-07-10,9400.965253547003,254,Elective,,Normal,6321,401,1,18,,,,OPEN -6322,2019-12-26,27310.46112970099,350,Urgent,2020-01-11,Normal,6322,257,2,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -6323,2023-05-01,46468.10833232258,489,Elective,,Inconclusive,6323,263,0,23,,,,OPEN -6324,2021-11-23,41023.47493868809,332,Urgent,2021-12-02,Abnormal,6324,330,0,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6325,2019-01-22,12006.459507091142,134,Urgent,2019-02-21,Normal,6325,480,0,23,,,,DISCHARGED -6326,2019-10-08,28571.455096843823,193,Elective,2019-10-24,Abnormal,6326,181,3,1,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6327,2022-08-01,14259.08139952214,286,Elective,2022-08-24,Inconclusive,6327,380,0,26,,,,DISCHARGED -6328,2020-12-23,5120.1787819202045,373,Emergency,2020-12-24,Inconclusive,6328,255,2,1,,,,DISCHARGED -6329,2023-02-21,35926.11979016372,168,Urgent,,Abnormal,6329,37,2,1,,,,OPEN -6330,2022-10-26,43874.28249272077,274,Emergency,2022-11-23,Inconclusive,6330,175,0,9,,,,DISCHARGED -6331,2020-09-08,19404.20463056126,313,Urgent,2020-09-13,Normal,6331,26,1,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -6332,2021-08-18,2502.917758197785,421,Elective,2021-08-22,Abnormal,6332,275,2,14,,,,DISCHARGED -6333,2022-04-04,27641.238520391715,336,Elective,2022-04-06,Normal,6333,139,1,21,,,,DISCHARGED -6334,2019-03-16,4143.797079417624,338,Urgent,2019-03-29,Normal,6334,298,3,11,,,,DISCHARGED -6335,2022-03-05,18604.25210957644,110,Emergency,2022-03-13,Normal,6335,444,2,10,,,,DISCHARGED -6336,2023-02-14,28854.67467505926,220,Elective,2023-02-21,Normal,6336,286,1,16,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6337,2020-07-07,32002.503192300108,187,Elective,2020-07-24,Normal,6337,90,0,17,,,,DISCHARGED -6338,2018-11-07,17020.934264470074,162,Elective,2018-11-22,Abnormal,6338,479,3,13,,,,DISCHARGED -6339,2023-02-13,17258.576991761205,337,Emergency,2023-03-12,Inconclusive,6339,60,4,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6340,2019-05-19,44564.50016325569,367,Urgent,2019-06-16,Abnormal,6340,457,4,14,,,,DISCHARGED -6341,2023-08-21,5937.25609150677,228,Elective,,Abnormal,6341,450,0,11,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",OPEN -6342,2023-05-31,10525.809317349374,294,Emergency,2023-06-04,Inconclusive,6342,364,3,26,,,,DISCHARGED -6343,2019-02-07,28091.394862690144,316,Elective,2019-02-10,Inconclusive,6343,346,3,15,,,,DISCHARGED -6344,2020-09-13,2510.0327631516425,425,Elective,2020-09-24,Inconclusive,6344,162,3,22,,,,DISCHARGED -6345,2021-03-03,39829.48079846791,159,Elective,2021-03-20,Inconclusive,6345,350,3,5,,,,DISCHARGED -6346,2020-04-01,38746.34539557557,451,Emergency,2020-04-07,Abnormal,6346,142,4,1,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -6347,2022-01-23,38386.73077117908,468,Elective,2022-02-12,Inconclusive,6347,399,1,1,,,,DISCHARGED -6348,2022-07-23,36389.81872389086,389,Elective,2022-08-01,Normal,6348,252,3,15,,,,DISCHARGED -6349,2019-10-07,11491.29578256735,296,Elective,2019-10-10,Normal,6349,268,1,1,,,,DISCHARGED -6350,2019-04-08,45686.56916405727,498,Emergency,2019-04-29,Abnormal,6350,368,3,7,,,,DISCHARGED -6351,2022-06-08,26968.69450468538,362,Elective,2022-06-09,Abnormal,6351,290,2,29,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6352,2023-10-23,19726.62638984905,179,Emergency,2023-11-15,Abnormal,6352,499,2,6,,,,DISCHARGED -6353,2020-11-19,20914.506348441475,469,Emergency,2020-12-03,Abnormal,6353,458,2,0,,,,DISCHARGED -6355,2019-02-23,44355.73182946607,450,Urgent,2019-03-05,Inconclusive,6355,186,3,3,,,,DISCHARGED -6356,2021-06-11,9269.023067480211,382,Emergency,2021-06-22,Normal,6356,404,1,10,,,,DISCHARGED -6357,2019-04-05,36299.56357949784,129,Elective,2019-04-19,Inconclusive,6357,498,4,19,,,,DISCHARGED -6358,2019-10-01,9842.50863259775,285,Elective,2019-10-24,Inconclusive,6358,437,0,6,,,,DISCHARGED -6359,2021-09-26,40872.67431546992,114,Urgent,2021-10-22,Abnormal,6359,458,4,17,,,,DISCHARGED -6360,2020-04-29,44105.38470748311,247,Emergency,2020-05-01,Inconclusive,6360,413,3,3,,,,DISCHARGED -6361,2021-10-06,35919.16141725073,157,Emergency,2021-11-01,Abnormal,6361,303,2,16,,,,DISCHARGED -6362,2021-11-18,38080.06489172251,455,Urgent,2021-12-16,Abnormal,6362,290,2,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -6363,2019-01-01,11434.768359367456,172,Urgent,2019-01-15,Normal,6363,85,1,28,,,,DISCHARGED -6364,2019-03-11,3416.0378503970755,222,Urgent,2019-03-12,Inconclusive,6364,165,3,10,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6365,2022-12-21,20250.068156215777,203,Emergency,2023-01-18,Normal,6365,414,4,10,,,,DISCHARGED -6366,2019-01-19,45362.20148536764,490,Emergency,2019-02-15,Inconclusive,6366,461,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6367,2019-11-30,8603.052351088463,310,Emergency,2019-12-25,Normal,6367,407,3,10,,,,DISCHARGED -6368,2022-06-30,20822.617860667076,153,Urgent,2022-07-11,Inconclusive,6368,113,2,14,,,,DISCHARGED -6369,2021-10-22,43297.7336529021,486,Emergency,2021-11-13,Abnormal,6369,432,4,13,,,,DISCHARGED -6371,2020-05-28,14843.51530137342,406,Emergency,2020-06-17,Normal,6371,479,0,16,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6372,2022-05-17,41742.22724248023,208,Elective,2022-05-26,Inconclusive,6372,355,2,1,,,,DISCHARGED -6373,2019-06-30,45112.52317188774,455,Urgent,2019-07-04,Abnormal,6373,415,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -6374,2021-06-15,24606.99943039784,478,Emergency,2021-06-21,Inconclusive,6374,182,1,15,,,,DISCHARGED -6375,2023-03-09,20791.154851465977,351,Urgent,2023-03-21,Normal,6375,206,2,11,,,,DISCHARGED -6376,2022-02-07,10724.782890796803,145,Urgent,2022-02-24,Inconclusive,6376,255,1,9,,,,DISCHARGED -6377,2022-04-13,19498.54255164778,382,Emergency,2022-05-09,Abnormal,6377,234,2,27,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6378,2020-04-27,33024.65602517636,163,Urgent,2020-05-24,Normal,6378,441,3,15,,,,DISCHARGED -6379,2021-12-12,35356.44393007982,455,Emergency,2021-12-22,Normal,6379,354,4,2,,,,DISCHARGED -6380,2021-07-21,16323.827520557152,125,Urgent,2021-08-14,Inconclusive,6380,2,1,7,,,,DISCHARGED -6381,2020-06-02,29827.156976012637,140,Urgent,2020-06-18,Normal,6381,207,2,26,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6382,2023-01-17,38079.7486759851,485,Elective,,Abnormal,6382,196,1,21,,,,OPEN -6383,2022-10-16,3252.623825548033,145,Urgent,2022-10-20,Inconclusive,6383,340,2,21,,,,DISCHARGED -6384,2020-10-23,12857.850428642969,190,Urgent,2020-11-12,Inconclusive,6384,124,2,24,,,,DISCHARGED -6385,2023-06-15,6253.512305256351,143,Urgent,,Inconclusive,6385,137,0,23,,,,OPEN -6386,2019-05-25,3278.1754712039424,396,Emergency,2019-05-29,Normal,6386,338,0,1,,,,DISCHARGED -6387,2022-11-23,48530.12420514535,447,Elective,2022-12-09,Abnormal,6387,24,0,21,,,,DISCHARGED -6388,2021-02-02,26731.538959177946,415,Elective,2021-02-18,Normal,6388,67,1,0,,,,DISCHARGED -6389,2023-10-28,34562.79529663183,309,Urgent,2023-11-16,Abnormal,6389,60,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -6390,2020-09-14,44486.43401762952,319,Urgent,2020-09-16,Abnormal,6390,28,2,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6391,2020-06-09,23579.69137565181,458,Elective,2020-06-19,Abnormal,6391,382,4,24,,,,DISCHARGED -6392,2019-11-06,10445.980492927923,227,Emergency,2019-12-06,Normal,6392,18,0,3,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -6393,2023-05-22,38173.9257316802,154,Elective,,Abnormal,6393,170,1,3,,,,OPEN -6394,2019-08-10,8227.714523297263,416,Urgent,2019-08-26,Inconclusive,6394,449,1,8,,,,DISCHARGED -6395,2021-04-14,26158.396838799526,261,Urgent,2021-05-03,Normal,6395,73,1,2,,,,DISCHARGED -6396,2022-11-12,17939.54109740164,131,Elective,2022-11-17,Normal,6396,60,4,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -6397,2022-01-31,1428.6194928533328,461,Urgent,2022-02-14,Abnormal,6397,426,4,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6398,2022-03-03,15312.402684283905,476,Urgent,2022-04-02,Normal,6398,152,0,21,,,,DISCHARGED -6399,2021-12-12,15611.025760339273,196,Urgent,2022-01-07,Abnormal,6399,275,4,18,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -6400,2023-09-23,44862.82867055065,469,Urgent,,Abnormal,6400,47,0,0,,,,OPEN -6401,2021-02-09,1510.0174542278176,307,Elective,2021-03-11,Abnormal,6401,210,4,9,,,,DISCHARGED -6402,2023-08-02,21607.16446733318,291,Urgent,2023-08-21,Abnormal,6402,342,4,21,,,,DISCHARGED -6403,2022-04-08,24256.84641421933,450,Urgent,2022-04-12,Abnormal,6403,407,4,29,,,,DISCHARGED -6405,2019-02-26,36020.02597604894,409,Elective,2019-03-24,Normal,6405,138,0,11,,,,DISCHARGED -6406,2020-01-02,1297.1265139423306,146,Urgent,2020-01-05,Abnormal,6406,109,2,9,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6408,2022-11-26,27520.734687519034,463,Emergency,2022-12-19,Abnormal,6408,481,0,1,,,,DISCHARGED -6409,2020-11-18,7483.788011774308,105,Elective,2020-12-10,Inconclusive,6409,182,2,15,,,,DISCHARGED -6411,2019-11-09,38310.284764213386,386,Emergency,2019-12-04,Abnormal,6411,27,1,7,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6412,2023-06-20,7840.692750012547,469,Urgent,2023-06-26,Inconclusive,6412,196,1,13,,,,DISCHARGED -6413,2019-09-27,14474.870506402229,167,Emergency,2019-10-22,Normal,6413,190,0,28,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6414,2023-04-14,38216.70514985092,455,Emergency,,Inconclusive,6414,314,2,14,,,,OPEN -6415,2021-07-28,8691.640039626809,444,Elective,2021-08-03,Normal,6415,388,2,15,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -6416,2021-03-19,27298.734315302598,405,Elective,2021-03-22,Inconclusive,6416,50,2,10,,,,DISCHARGED -6417,2023-04-06,19972.80664006177,155,Emergency,2023-04-23,Normal,6417,148,1,11,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -6418,2023-10-25,31820.2795035068,432,Elective,2023-11-12,Inconclusive,6418,267,0,1,,,,DISCHARGED -6419,2022-12-12,33315.480493456016,135,Emergency,2022-12-29,Normal,6419,49,3,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6420,2019-01-25,27180.243589882703,138,Urgent,2019-02-20,Abnormal,6420,387,2,29,,,,DISCHARGED -6421,2023-09-13,43932.49307678761,488,Elective,2023-10-02,Abnormal,6421,245,2,2,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6422,2022-06-05,2996.658611545702,118,Urgent,2022-07-01,Normal,6422,112,3,8,,,,DISCHARGED -6423,2022-12-21,15072.294837733678,141,Elective,2022-12-24,Normal,6423,169,0,17,,,,DISCHARGED -6424,2020-04-07,26504.173734799824,229,Urgent,2020-04-20,Abnormal,6424,467,2,18,,,,DISCHARGED -6425,2021-06-16,18483.959711816584,391,Urgent,2021-07-10,Inconclusive,6425,165,0,6,,,,DISCHARGED -6427,2020-03-08,38533.4245579365,193,Emergency,2020-03-15,Inconclusive,6427,408,2,3,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -6429,2022-01-20,11329.43673130454,294,Urgent,2022-02-18,Abnormal,6429,13,4,5,,,,DISCHARGED -6430,2020-09-01,12463.992586612105,294,Emergency,2020-09-27,Normal,6430,202,2,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6431,2023-08-23,23275.6840946182,315,Urgent,2023-09-01,Inconclusive,6431,287,4,0,,,,DISCHARGED -6432,2021-09-30,24158.106073829145,179,Urgent,2021-10-29,Normal,6432,394,0,15,,,,DISCHARGED -6433,2021-02-09,30852.388454299653,205,Elective,2021-03-01,Inconclusive,6433,188,2,10,,,,DISCHARGED -6434,2021-02-13,2742.3709276833183,392,Emergency,2021-02-20,Abnormal,6434,401,1,21,,,,DISCHARGED -6435,2019-09-18,22138.94999962974,331,Emergency,2019-10-12,Abnormal,6435,154,1,3,,,,DISCHARGED -6435,2022-09-16,18765.389652883478,297,Urgent,2022-09-21,Abnormal,8955,54,3,17,,,,DISCHARGED -6437,2023-10-18,7874.9356277291645,152,Emergency,2023-10-31,Inconclusive,6437,181,1,22,,,,DISCHARGED -6438,2023-01-31,23288.320481482748,457,Urgent,2023-02-28,Inconclusive,6438,209,4,25,,,,DISCHARGED -6439,2020-10-29,22853.24411337351,165,Elective,2020-11-18,Normal,6439,375,1,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -6441,2021-02-07,17611.629241012157,329,Emergency,2021-03-09,Normal,6441,470,1,27,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6442,2022-05-24,43578.58892589563,406,Emergency,2022-06-07,Abnormal,6442,74,1,28,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -6443,2023-08-14,20109.16897740629,374,Urgent,2023-08-22,Abnormal,6443,276,2,4,,,,DISCHARGED -6444,2022-11-01,35808.94134798303,297,Emergency,2022-11-15,Inconclusive,6444,427,3,21,,,,DISCHARGED -6445,2022-12-28,48027.55601450049,216,Emergency,2023-01-15,Normal,6445,132,0,5,,,,DISCHARGED -6446,2023-03-25,35084.300305117344,244,Emergency,2023-04-01,Normal,6446,342,3,29,,,,DISCHARGED -6447,2019-07-26,26015.539765533045,167,Emergency,2019-08-17,Inconclusive,6447,424,4,24,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -6448,2019-04-22,19784.20559356157,103,Emergency,2019-05-09,Abnormal,6448,58,2,27,,,,DISCHARGED -6449,2022-10-06,13249.652206260307,142,Urgent,2022-10-22,Inconclusive,6449,344,2,1,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -6450,2019-03-15,18715.415491806765,385,Emergency,2019-04-13,Abnormal,6450,488,1,11,,,,DISCHARGED -6451,2021-07-19,18925.55700290145,229,Emergency,2021-07-26,Normal,6451,181,1,21,,,,DISCHARGED -6453,2021-04-30,28807.28176484504,294,Elective,2021-05-19,Inconclusive,6453,457,4,8,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6454,2020-09-24,35173.555002044486,342,Emergency,2020-10-08,Inconclusive,6454,405,2,27,,,,DISCHARGED -6455,2021-06-02,19340.95334968545,102,Emergency,2021-06-26,Normal,6455,338,0,19,,,,DISCHARGED -6457,2022-04-23,4103.562709052907,360,Urgent,2022-05-16,Abnormal,6457,320,3,28,,,,DISCHARGED -6458,2022-10-31,44885.7231746151,482,Elective,2022-11-05,Inconclusive,6458,63,2,11,,,,DISCHARGED -6459,2020-05-19,40659.61807959143,316,Elective,2020-06-12,Inconclusive,6459,326,0,28,,,,DISCHARGED -6460,2018-12-04,37677.354071304646,313,Urgent,2018-12-19,Abnormal,6460,259,0,12,,,,DISCHARGED -6461,2020-05-22,12218.485583623378,434,Emergency,2020-06-11,Abnormal,6461,192,3,26,,,,DISCHARGED -6462,2022-06-14,25092.920106769976,382,Urgent,2022-07-13,Abnormal,6462,142,0,21,,,,DISCHARGED -6463,2021-03-03,46927.26166401963,429,Emergency,2021-03-28,Abnormal,6463,103,4,22,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6464,2022-06-04,24069.892535706607,356,Urgent,2022-06-25,Inconclusive,6464,459,0,16,,,,DISCHARGED -6466,2022-07-18,9408.97569855612,399,Emergency,2022-08-15,Normal,6466,405,4,4,,,,DISCHARGED -6467,2020-07-31,3830.439965553167,272,Elective,2020-08-01,Abnormal,6467,213,0,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6468,2022-09-23,12110.253455149204,169,Elective,2022-10-14,Normal,6468,241,1,12,,,,DISCHARGED -6468,2020-09-11,30889.02978054228,193,Emergency,2020-10-05,Abnormal,9824,430,0,28,,,,DISCHARGED -6469,2020-07-12,8455.933132181595,326,Emergency,2020-08-02,Normal,6469,208,4,12,,,,DISCHARGED -6470,2022-05-21,2110.3311710334483,191,Emergency,2022-06-01,Inconclusive,6470,92,0,9,,,,DISCHARGED -6472,2023-05-25,46797.90447911199,427,Emergency,,Abnormal,6472,429,0,14,,,,OPEN -6473,2020-01-01,10176.238289943954,460,Emergency,2020-01-15,Inconclusive,6473,141,0,14,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6474,2022-07-01,38896.73676388027,214,Elective,2022-07-04,Normal,6474,433,4,17,,,,DISCHARGED -6474,2019-04-27,29534.06437873794,450,Urgent,2019-05-03,Abnormal,9954,403,0,17,,,,DISCHARGED -6475,2022-05-07,47186.643012484645,144,Urgent,2022-05-17,Normal,6475,433,3,1,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6476,2020-11-28,18711.57437451129,157,Urgent,2020-12-24,Abnormal,6476,111,3,22,,,,DISCHARGED -6477,2019-05-03,26091.750109589066,305,Urgent,2019-05-11,Normal,6477,416,4,10,,,,DISCHARGED -6478,2020-05-12,19318.13874997756,379,Elective,2020-05-13,Inconclusive,6478,374,1,12,,,,DISCHARGED -6479,2022-02-11,48137.36153400999,427,Elective,2022-02-17,Inconclusive,6479,58,3,10,,,,DISCHARGED -6480,2020-05-25,30617.517995217724,135,Emergency,2020-06-17,Inconclusive,6480,42,2,3,,,,DISCHARGED -6481,2021-11-17,35403.3079465154,219,Urgent,2021-12-07,Normal,6481,206,3,14,,,,DISCHARGED -6482,2020-04-28,35502.10023303405,281,Urgent,2020-05-04,Inconclusive,6482,267,2,21,,,,DISCHARGED -6483,2022-11-05,39426.65592253163,248,Elective,2022-12-04,Normal,6483,295,4,22,,,,DISCHARGED -6484,2023-10-14,48160.80364209265,416,Elective,2023-10-25,Inconclusive,6484,117,1,24,,,,DISCHARGED -6485,2022-01-02,10467.718585228504,168,Elective,2022-01-04,Normal,6485,19,2,10,,,,DISCHARGED -6486,2021-09-16,26818.31334499874,411,Urgent,2021-10-11,Inconclusive,6486,221,2,17,,,,DISCHARGED -6488,2020-08-23,31316.02989557156,347,Emergency,2020-09-19,Abnormal,6488,165,3,15,,,,DISCHARGED -6489,2019-02-17,18109.812067873427,319,Emergency,2019-03-19,Normal,6489,130,2,9,,,,DISCHARGED -6490,2021-02-22,27058.63201980125,268,Elective,2021-03-23,Normal,6490,155,4,11,,,,DISCHARGED -6491,2021-09-09,2225.498606371526,295,Emergency,2021-10-07,Inconclusive,6491,183,4,12,,,,DISCHARGED -6492,2020-10-29,40221.425409786985,102,Elective,2020-11-09,Abnormal,6492,89,4,8,,,,DISCHARGED -6493,2019-10-21,39686.40942163981,498,Elective,2019-11-01,Inconclusive,6493,93,3,26,,,,DISCHARGED -6494,2021-06-26,11379.973646328,364,Urgent,2021-07-11,Inconclusive,6494,12,1,20,,,,DISCHARGED -6496,2023-06-28,18933.876349247857,370,Emergency,,Normal,6496,460,3,12,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6497,2020-12-03,27990.04934907472,234,Urgent,2021-01-01,Inconclusive,6497,321,4,5,,,,DISCHARGED -6498,2023-02-10,11303.720672191046,219,Emergency,2023-02-25,Normal,6498,292,3,5,,,,DISCHARGED -6499,2022-12-05,22796.47098961584,358,Elective,2022-12-20,Abnormal,6499,432,4,10,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -6500,2022-09-02,47947.42754337616,320,Elective,2022-09-22,Abnormal,6500,229,0,18,,,,DISCHARGED -6501,2019-04-25,11531.45029232743,336,Urgent,2019-05-17,Normal,6501,321,0,26,,,,DISCHARGED -6502,2019-04-05,1639.9367572640513,329,Emergency,2019-04-15,Inconclusive,6502,291,2,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6503,2022-11-11,45157.04114735989,434,Elective,2022-12-01,Normal,6503,437,1,9,,,,DISCHARGED -6504,2021-12-01,17821.32053835732,156,Urgent,2021-12-18,Abnormal,6504,25,0,22,,,,DISCHARGED -6505,2019-10-07,6449.3025579987625,425,Elective,2019-10-25,Inconclusive,6505,74,4,14,,,,DISCHARGED -6506,2020-09-01,11651.878079559883,195,Emergency,2020-09-19,Normal,6506,455,3,12,,,,DISCHARGED -6507,2021-11-17,13293.229207479431,303,Urgent,2021-11-27,Abnormal,6507,363,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -6508,2022-05-05,43593.777029287325,320,Emergency,2022-05-08,Abnormal,6508,423,2,7,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -6510,2022-01-24,48828.09919031179,130,Elective,2022-02-11,Abnormal,6510,298,3,4,,,,DISCHARGED -6511,2023-10-30,25084.610651048384,152,Emergency,,Inconclusive,6511,149,0,1,,,,OPEN -6512,2023-02-11,31598.67402435054,387,Urgent,2023-03-10,Normal,6512,147,3,15,,,,DISCHARGED -6513,2023-10-22,10105.207379691195,111,Elective,2023-11-03,Abnormal,6513,7,0,12,,,,DISCHARGED -6514,2019-03-28,36974.12370398772,460,Urgent,2019-04-22,Inconclusive,6514,28,0,18,,,,DISCHARGED -6515,2019-05-17,23841.53465453391,495,Urgent,2019-06-13,Normal,6515,295,1,8,,,,DISCHARGED -6516,2021-07-03,44109.01857303184,146,Elective,2021-07-19,Inconclusive,6516,473,2,14,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6517,2018-12-24,13700.531651410329,140,Emergency,2019-01-01,Inconclusive,6517,413,4,5,,,,DISCHARGED -6518,2021-05-26,43995.63273430472,369,Elective,2021-06-01,Abnormal,6518,208,0,7,,,,DISCHARGED -6519,2020-10-08,24881.750842571968,483,Elective,2020-10-11,Abnormal,6519,127,2,23,,,,DISCHARGED -6520,2021-12-02,12510.723860368304,432,Urgent,2021-12-17,Normal,6520,339,4,13,,,,DISCHARGED -6521,2022-05-15,2511.467092047872,107,Elective,2022-06-09,Abnormal,6521,115,3,4,,,,DISCHARGED -6522,2023-03-03,47032.53132076731,325,Elective,2023-03-23,Abnormal,6522,438,2,16,,,,DISCHARGED -6523,2021-06-05,29136.69213992961,426,Urgent,2021-06-18,Abnormal,6523,143,2,21,,,,DISCHARGED -6523,2021-06-22,5629.6077747215895,102,Urgent,2021-06-27,Abnormal,8107,429,2,6,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -6524,2021-09-03,28480.05216557829,358,Urgent,2021-09-10,Inconclusive,6524,317,3,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -6525,2022-10-03,36820.65106609598,428,Emergency,2022-10-06,Normal,6525,234,3,15,,,,DISCHARGED -6526,2019-04-30,20525.26239410496,140,Emergency,2019-05-21,Abnormal,6526,6,2,17,,,,DISCHARGED -6527,2020-11-18,19110.81383010283,249,Elective,2020-11-19,Abnormal,6527,463,1,27,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6528,2018-12-06,10181.973029741674,412,Emergency,2018-12-30,Abnormal,6528,44,0,12,,,,DISCHARGED -6529,2023-01-08,31391.37446400957,206,Emergency,2023-01-16,Normal,6529,442,3,17,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -6530,2021-05-06,34021.0400547744,408,Elective,2021-06-05,Normal,6530,238,1,9,,,,DISCHARGED -6531,2023-07-01,42927.232323350894,402,Elective,2023-07-06,Normal,6531,439,3,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6532,2023-07-04,6688.166188336051,246,Emergency,2023-07-23,Inconclusive,6532,431,2,20,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6533,2019-05-14,36683.82144295969,449,Elective,2019-05-19,Inconclusive,6533,154,1,17,,,,DISCHARGED -6534,2023-10-02,30658.94501948577,216,Urgent,,Normal,6534,180,4,18,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,OPEN -6535,2022-05-24,10851.179695773326,406,Emergency,2022-06-05,Inconclusive,6535,214,0,1,,,,DISCHARGED -6536,2020-08-24,38388.72381185949,226,Urgent,2020-09-12,Normal,6536,87,0,26,,,,DISCHARGED -6538,2022-12-29,10879.11401335479,260,Emergency,2023-01-27,Normal,6538,255,3,3,,,,DISCHARGED -6539,2020-04-22,34534.28629193115,458,Elective,2020-05-11,Inconclusive,6539,72,0,10,,,,DISCHARGED -6540,2022-02-23,25263.584712358992,237,Urgent,2022-03-20,Inconclusive,6540,418,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6541,2021-07-03,46148.41610851614,242,Emergency,2021-07-23,Normal,6541,178,1,8,,,,DISCHARGED -6542,2019-08-15,34926.432703066894,316,Emergency,2019-09-10,Normal,6542,211,1,9,,,,DISCHARGED -6543,2022-06-23,23549.199777734368,111,Elective,2022-07-02,Normal,6543,292,2,27,,,,DISCHARGED -6544,2021-01-13,45069.391862605095,265,Elective,2021-02-05,Inconclusive,6544,233,1,1,,,,DISCHARGED -6545,2019-10-03,34945.287741910404,423,Urgent,2019-10-29,Abnormal,6545,464,3,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6546,2021-02-25,17333.432585199174,312,Urgent,2021-03-21,Normal,6546,238,4,14,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6548,2022-06-01,11958.833783556503,161,Emergency,2022-06-26,Normal,6548,222,2,26,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6549,2022-09-01,26167.673580693387,307,Urgent,2022-09-22,Abnormal,6549,118,3,29,,,,DISCHARGED -6550,2023-06-11,8573.572947078203,478,Elective,,Normal,6550,312,3,18,,,,OPEN -6551,2020-11-07,5293.745359537666,257,Elective,2020-11-24,Abnormal,6551,263,3,9,,,,DISCHARGED -6552,2023-10-15,40239.94509618528,329,Elective,2023-10-19,Abnormal,6552,206,0,23,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -6553,2021-11-28,28684.25135348031,210,Elective,2021-12-21,Normal,6553,94,3,19,,,,DISCHARGED -6554,2019-08-23,17657.416351515432,311,Elective,2019-08-30,Normal,6554,372,0,13,,,,DISCHARGED -6555,2019-06-14,14003.265128834311,284,Elective,2019-06-17,Normal,6555,221,1,3,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -6556,2021-01-26,38851.55395328927,333,Emergency,2021-02-06,Inconclusive,6556,365,0,24,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6557,2023-10-18,28410.24745176708,469,Elective,2023-10-24,Normal,6557,275,3,10,,,,DISCHARGED -6558,2022-12-07,48207.54706603848,450,Elective,2022-12-16,Inconclusive,6558,379,4,2,,,,DISCHARGED -6559,2020-10-26,36269.68762402382,126,Urgent,2020-11-21,Normal,6559,230,4,22,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -6560,2018-12-24,35229.37872668747,289,Emergency,2019-01-12,Inconclusive,6560,308,1,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -6561,2021-05-11,43796.59703445785,346,Urgent,2021-05-30,Normal,6561,118,3,6,,,,DISCHARGED -6562,2020-08-28,35400.33811486774,267,Urgent,2020-09-25,Inconclusive,6562,267,0,25,,,,DISCHARGED -6563,2021-11-17,9127.477608107109,240,Urgent,2021-11-27,Inconclusive,6563,432,4,10,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6564,2022-08-30,20564.355730617037,188,Elective,2022-09-07,Normal,6564,272,2,17,,,,DISCHARGED -6565,2019-11-25,2819.2696253223567,243,Emergency,2019-12-06,Normal,6565,63,3,27,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -6566,2019-06-23,14904.474279957903,214,Emergency,2019-07-20,Abnormal,6566,297,3,13,,,,DISCHARGED -6567,2019-08-29,5425.935372465265,331,Emergency,2019-08-30,Normal,6567,349,2,13,,,,DISCHARGED -6568,2021-07-03,45776.51509565352,420,Urgent,2021-07-07,Inconclusive,6568,412,4,5,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -6569,2020-12-18,27689.944263444944,281,Elective,2021-01-13,Inconclusive,6569,402,2,28,,,,DISCHARGED -6570,2023-02-21,14851.789382675071,471,Urgent,2023-03-17,Abnormal,6570,493,1,8,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6571,2019-08-01,31233.542046345,334,Elective,2019-08-17,Abnormal,6571,10,0,21,,,,DISCHARGED -6572,2021-10-17,9428.84136505866,460,Emergency,2021-11-01,Normal,6572,97,0,2,,,,DISCHARGED -6573,2022-08-13,5185.303973295573,401,Emergency,2022-09-06,Inconclusive,6573,433,4,16,,,,DISCHARGED -6574,2022-10-08,21430.717821295453,181,Elective,2022-10-22,Inconclusive,6574,70,2,27,,,,DISCHARGED -6575,2023-07-28,28255.311069061085,428,Urgent,2023-08-22,Normal,6575,363,3,11,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -6576,2021-01-30,30713.20589605569,227,Emergency,2021-02-16,Inconclusive,6576,57,3,3,,,,DISCHARGED -6577,2019-09-01,22984.49013461101,265,Elective,2019-09-19,Abnormal,6577,289,3,19,,,,DISCHARGED -6578,2020-08-14,45844.47258661566,236,Urgent,2020-08-21,Abnormal,6578,250,1,15,,,,DISCHARGED -6579,2020-04-05,11153.824718376234,347,Emergency,2020-04-15,Abnormal,6579,275,1,28,,,,DISCHARGED -6580,2019-04-14,29264.84724292384,252,Elective,2019-04-30,Abnormal,6580,49,3,23,,,,DISCHARGED -6581,2021-08-17,33337.25114824751,461,Elective,2021-09-09,Abnormal,6581,357,4,9,,,,DISCHARGED -6582,2023-02-23,43489.81540707157,249,Urgent,2023-03-25,Normal,6582,215,1,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6583,2023-10-12,14445.168188533233,168,Urgent,2023-10-18,Inconclusive,6583,393,1,29,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -6585,2021-10-10,25256.85518795779,212,Urgent,2021-10-26,Inconclusive,6585,415,0,28,,,,DISCHARGED -6586,2020-08-19,47175.7431904998,445,Urgent,2020-08-23,Inconclusive,6586,51,0,6,,,,DISCHARGED -6587,2021-04-23,39416.18648829994,227,Emergency,2021-05-10,Normal,6587,270,4,9,,,,DISCHARGED -6588,2019-10-04,42051.586444843146,386,Urgent,2019-10-11,Abnormal,6588,484,1,6,,,,DISCHARGED -6588,2021-08-08,11306.885137040565,337,Elective,2021-08-21,Normal,8715,83,1,22,,,,DISCHARGED -6589,2018-12-11,12727.895202263906,374,Urgent,2019-01-01,Abnormal,6589,386,2,27,,,,DISCHARGED -6590,2020-10-26,34022.298168073205,329,Urgent,2020-11-23,Inconclusive,6590,292,4,17,,,,DISCHARGED -6591,2021-02-23,44957.289633932174,169,Elective,2021-03-19,Abnormal,6591,125,4,8,,,,DISCHARGED -6592,2020-03-17,43048.163649792135,208,Elective,2020-04-12,Inconclusive,6592,295,2,21,,,,DISCHARGED -6593,2019-02-13,26576.76628783185,414,Urgent,2019-03-10,Abnormal,6593,71,2,17,,,,DISCHARGED -6594,2020-06-04,9152.50786332433,241,Elective,2020-06-06,Inconclusive,6594,295,0,16,,,,DISCHARGED -6594,2023-05-16,20103.47591684117,155,Urgent,2023-05-20,Inconclusive,9326,235,4,10,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -6595,2023-10-09,24937.61996852029,274,Emergency,,Inconclusive,6595,55,4,0,,,,OPEN -6596,2020-10-17,29039.929192462605,237,Emergency,2020-11-02,Abnormal,6596,406,2,16,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6597,2022-08-17,11023.592023568868,349,Emergency,2022-08-21,Normal,6597,359,3,3,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6598,2023-06-14,10703.41961658105,362,Elective,,Abnormal,6598,394,3,3,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -6599,2022-07-03,16106.94367703098,268,Urgent,2022-08-02,Inconclusive,6599,109,0,13,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -6600,2018-12-26,2024.8128271470955,173,Emergency,2019-01-21,Normal,6600,191,3,27,,,,DISCHARGED -6601,2021-09-27,29203.22330675468,319,Urgent,2021-10-05,Abnormal,6601,391,3,8,,,,DISCHARGED -6601,2021-09-25,36358.13618181468,466,Elective,2021-10-03,Abnormal,7028,92,3,12,,,,DISCHARGED -6602,2022-09-11,16970.758233044584,253,Urgent,2022-09-24,Abnormal,6602,349,1,27,,,,DISCHARGED -6603,2023-05-02,30199.60841912832,212,Urgent,2023-05-13,Normal,6603,55,0,27,,,,DISCHARGED -6604,2023-08-21,16609.266625408978,386,Urgent,2023-08-22,Inconclusive,6604,59,2,15,,,,DISCHARGED -6606,2020-12-05,29735.58711549783,386,Elective,2020-12-21,Abnormal,6606,137,3,0,,,,DISCHARGED -6607,2023-05-15,46846.27531714412,211,Elective,2023-06-05,Normal,6607,38,1,2,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -6608,2019-10-03,8185.924507537746,351,Elective,2019-10-14,Inconclusive,6608,27,3,18,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -6610,2023-06-04,41800.11373715216,494,Emergency,2023-06-09,Abnormal,6610,48,1,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -6611,2019-04-01,15583.457574642316,499,Urgent,2019-04-15,Normal,6611,419,0,17,,,,DISCHARGED -6612,2020-08-30,12432.654015868047,355,Emergency,2020-08-31,Normal,6612,124,3,5,,,,DISCHARGED -6613,2019-04-16,31646.438830694795,241,Emergency,2019-05-06,Abnormal,6613,12,1,26,,,,DISCHARGED -6614,2020-11-18,26371.461895141678,224,Emergency,2020-12-11,Normal,6614,479,4,19,,,,DISCHARGED -6615,2022-02-10,35122.17191646656,333,Elective,2022-02-14,Normal,6615,35,4,28,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -6617,2022-06-26,5934.634779140558,137,Urgent,2022-06-28,Normal,6617,100,1,25,,,,DISCHARGED -6618,2021-08-26,32974.01568924844,101,Emergency,2021-08-30,Normal,6618,281,3,5,,,,DISCHARGED -6619,2021-12-08,47678.16360697733,476,Emergency,2021-12-28,Inconclusive,6619,85,3,28,,,,DISCHARGED -6620,2022-10-18,42140.96938429981,458,Urgent,2022-11-03,Normal,6620,3,0,4,,,,DISCHARGED -6621,2019-07-29,19324.83321065109,482,Emergency,2019-07-30,Abnormal,6621,222,0,11,,,,DISCHARGED -6622,2020-06-04,26232.216458243856,337,Emergency,2020-06-07,Normal,6622,337,2,8,,,,DISCHARGED -6623,2021-07-17,7069.395437945416,376,Elective,2021-08-07,Normal,6623,447,0,8,,,,DISCHARGED -6624,2021-10-24,17316.980219845973,407,Emergency,2021-11-14,Inconclusive,6624,165,3,16,,,,DISCHARGED -6625,2023-02-16,37631.73449268179,260,Urgent,,Abnormal,6625,382,2,18,,,,OPEN -6626,2021-10-23,43604.154287424295,460,Elective,2021-11-12,Normal,6626,343,0,16,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -6627,2022-11-17,8836.849299455425,138,Emergency,2022-12-15,Inconclusive,6627,382,1,21,,,,DISCHARGED -6628,2022-03-13,12194.934656706071,353,Urgent,2022-03-27,Normal,6628,375,4,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6629,2023-08-10,4261.993956501122,156,Emergency,,Normal,6629,470,0,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -6630,2020-12-07,18610.67393743832,181,Emergency,2020-12-19,Normal,6630,277,0,2,,,,DISCHARGED -6631,2022-03-30,2279.8670176115047,127,Emergency,2022-04-20,Normal,6631,129,1,13,,,,DISCHARGED -6632,2023-03-25,42120.73020131739,300,Elective,2023-04-22,Inconclusive,6632,30,3,16,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6633,2021-01-23,7877.192497358189,431,Elective,2021-02-02,Normal,6633,374,1,21,,,,DISCHARGED -6634,2020-11-16,10441.187850098246,434,Emergency,2020-11-18,Abnormal,6634,10,0,15,,,,DISCHARGED -6635,2021-06-18,23211.02340624118,442,Urgent,2021-07-14,Abnormal,6635,475,3,20,,,,DISCHARGED -6637,2023-04-30,31989.563754005798,269,Elective,,Normal,6637,301,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",OPEN -6638,2020-01-30,12737.149025052233,439,Elective,2020-02-15,Abnormal,6638,95,0,27,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6639,2023-02-21,12709.075514934071,431,Emergency,2023-03-05,Normal,6639,189,1,23,,,,DISCHARGED -6641,2020-04-27,37549.255820193415,285,Emergency,2020-05-26,Inconclusive,6641,452,2,29,,,,DISCHARGED -6642,2023-01-16,43857.57648295956,492,Urgent,,Inconclusive,6642,191,4,1,,,,OPEN -6643,2022-05-17,5453.882929190576,128,Urgent,2022-06-09,Abnormal,6643,485,2,7,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6644,2022-12-19,48050.609947525205,217,Emergency,2023-01-13,Inconclusive,6644,265,1,11,,,,DISCHARGED -6645,2018-11-19,27229.912943286738,301,Urgent,2018-11-25,Normal,6645,423,2,20,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -6646,2020-06-19,24487.848455260464,459,Emergency,2020-07-03,Normal,6646,127,1,15,,,,DISCHARGED -6647,2023-09-16,21571.40538230428,334,Urgent,2023-10-15,Abnormal,6647,237,0,7,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -6648,2022-12-29,17542.226992311284,400,Urgent,2023-01-27,Abnormal,6648,407,3,27,,,,DISCHARGED -6649,2022-11-09,31234.537627924605,194,Urgent,2022-11-30,Abnormal,6649,354,4,15,,,,DISCHARGED -6650,2019-08-18,16001.884800259271,361,Urgent,2019-08-31,Inconclusive,6650,427,3,9,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -6651,2019-04-12,34983.98196849732,380,Urgent,2019-05-05,Inconclusive,6651,111,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6652,2021-07-04,21317.912733759804,419,Emergency,2021-07-23,Abnormal,6652,315,3,14,,,,DISCHARGED -6653,2021-12-04,19905.46212920566,453,Urgent,2021-12-30,Abnormal,6653,445,1,3,,,,DISCHARGED -6654,2019-07-28,45148.610409885136,468,Elective,2019-07-30,Inconclusive,6654,342,1,25,,,,DISCHARGED -6655,2020-08-14,39915.43238922771,182,Emergency,2020-09-02,Inconclusive,6655,144,4,14,,,,DISCHARGED -6656,2022-09-10,39731.59519659988,279,Urgent,2022-10-01,Abnormal,6656,64,1,3,,,,DISCHARGED -6657,2021-10-17,34316.53293777999,304,Emergency,2021-10-21,Inconclusive,6657,246,1,29,,,,DISCHARGED -6658,2020-08-03,36587.26130657394,398,Urgent,2020-08-07,Abnormal,6658,222,1,10,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -6659,2023-07-27,29100.86060251551,138,Elective,,Normal,6659,478,1,5,,,,OPEN -6660,2020-05-29,20062.201482819277,239,Urgent,2020-06-28,Abnormal,6660,489,0,3,,,,DISCHARGED -6661,2019-08-13,8849.129967443303,300,Elective,2019-08-20,Inconclusive,6661,312,4,8,,,,DISCHARGED -6662,2021-04-22,41734.13586213612,122,Emergency,2021-05-19,Inconclusive,6662,438,1,8,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -6664,2019-07-25,26645.33840257226,265,Elective,2019-07-30,Normal,6664,105,4,2,,,,DISCHARGED -6665,2021-08-22,45729.3716678944,411,Elective,2021-09-05,Inconclusive,6665,180,2,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6666,2021-08-11,20760.247031449388,232,Urgent,2021-08-16,Inconclusive,6666,183,0,27,,,,DISCHARGED -6667,2018-12-17,43425.79603214072,489,Urgent,2018-12-30,Inconclusive,6667,225,1,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -6668,2021-10-30,8091.971315786723,439,Elective,2021-11-22,Normal,6668,264,0,14,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6669,2020-01-13,48390.96913421875,491,Elective,2020-01-25,Normal,6669,277,0,27,,,,DISCHARGED -6669,2021-10-23,11525.16141640984,248,Elective,2021-11-15,Inconclusive,7172,396,2,8,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -6669,2020-05-03,13788.72195528592,219,Elective,2020-06-01,Abnormal,9911,88,4,1,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6671,2021-05-18,31590.4900008648,344,Urgent,2021-06-05,Inconclusive,6671,175,0,2,,,,DISCHARGED -6672,2022-08-05,9203.703947789943,165,Urgent,2022-08-31,Inconclusive,6672,17,3,25,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -6673,2022-11-30,17473.093354464032,282,Emergency,2022-12-04,Normal,6673,370,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6674,2020-08-07,31116.180508175567,429,Urgent,2020-08-14,Normal,6674,459,3,11,,,,DISCHARGED -6675,2021-11-15,30692.210433559954,136,Urgent,2021-11-27,Abnormal,6675,423,2,15,,,,DISCHARGED -6676,2023-06-14,4888.096416293663,262,Elective,2023-07-06,Abnormal,6676,400,3,4,,,,DISCHARGED -6677,2023-06-14,13566.573581326702,230,Elective,2023-06-20,Inconclusive,6677,398,3,9,,,,DISCHARGED -6678,2021-11-06,9812.976468835102,279,Emergency,2021-11-16,Normal,6678,105,0,27,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -6679,2022-02-24,42041.831748304,451,Urgent,2022-03-21,Inconclusive,6679,270,0,14,,,,DISCHARGED -6680,2019-04-15,17845.61428582277,289,Elective,2019-05-02,Abnormal,6680,462,2,13,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6681,2020-06-19,6607.440035325331,451,Urgent,2020-07-17,Inconclusive,6681,318,4,13,,,,DISCHARGED -6681,2019-03-04,36616.3341896765,286,Emergency,2019-03-09,Normal,7087,166,0,22,,,,DISCHARGED -6682,2022-10-05,46307.90735658391,449,Emergency,2022-10-11,Abnormal,6682,12,0,12,,,,DISCHARGED -6683,2020-03-09,14997.264071857058,471,Elective,2020-03-17,Inconclusive,6683,336,1,15,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6684,2020-06-16,34922.53068334383,262,Emergency,2020-07-08,Normal,6684,31,0,29,,,,DISCHARGED -6685,2022-03-15,41051.61438023765,198,Urgent,2022-03-16,Abnormal,6685,392,4,7,,,,DISCHARGED -6686,2019-08-23,27317.565132086816,144,Emergency,2019-09-16,Normal,6686,39,1,7,,,,DISCHARGED -6687,2023-06-26,39942.01391426238,142,Urgent,2023-06-27,Normal,6687,147,3,29,,,,DISCHARGED -6688,2020-11-20,34388.85149958681,233,Urgent,2020-11-22,Abnormal,6688,217,3,16,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -6689,2021-07-22,43552.257548488335,292,Elective,2021-08-03,Inconclusive,6689,218,1,29,,,,DISCHARGED -6690,2021-09-06,12929.735904777008,321,Elective,2021-09-29,Inconclusive,6690,468,1,16,,,,DISCHARGED -6691,2020-10-19,12102.912631949252,445,Urgent,2020-10-30,Normal,6691,81,1,2,,,,DISCHARGED -6692,2019-11-03,26162.20324817585,203,Emergency,2019-11-09,Inconclusive,6692,332,2,0,,,,DISCHARGED -6693,2019-08-31,25558.31376305041,395,Emergency,2019-09-19,Normal,6693,207,4,16,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -6694,2021-09-09,21775.055716108727,275,Emergency,2021-09-10,Abnormal,6694,200,4,25,,,,DISCHARGED -6695,2021-12-08,10833.651985964583,117,Elective,2022-01-05,Abnormal,6695,446,3,23,,,,DISCHARGED -6696,2021-06-09,31895.507606318053,333,Urgent,2021-06-24,Inconclusive,6696,331,3,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -6697,2020-08-19,38136.54060508222,218,Elective,2020-08-25,Abnormal,6697,427,3,16,,,,DISCHARGED -6698,2020-03-09,2809.921442528688,256,Emergency,2020-03-31,Abnormal,6698,37,0,24,,,,DISCHARGED -6699,2021-12-27,2894.396184118178,483,Emergency,2022-01-20,Abnormal,6699,210,3,1,,,,DISCHARGED -6701,2019-03-18,39136.08803197802,470,Elective,2019-03-21,Abnormal,6701,443,1,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6702,2021-10-02,31687.996097646643,161,Elective,2021-10-04,Inconclusive,6702,326,3,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6703,2019-06-06,31589.81782293324,164,Urgent,2019-06-29,Inconclusive,6703,248,1,6,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -6704,2023-01-20,24604.88403923852,336,Elective,,Abnormal,6704,226,2,24,,,,OPEN -6705,2022-01-24,35481.76144805839,224,Emergency,2022-02-11,Normal,6705,47,0,18,,,,DISCHARGED -6706,2019-12-24,7251.787459353241,192,Elective,2020-01-11,Inconclusive,6706,17,0,0,,,,DISCHARGED -6707,2020-08-23,16860.15690378194,314,Emergency,2020-08-26,Inconclusive,6707,399,4,16,,,,DISCHARGED -6708,2019-07-12,40137.37554459394,131,Urgent,2019-07-26,Inconclusive,6708,438,2,26,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -6709,2020-02-15,36228.6105527836,108,Elective,2020-03-08,Abnormal,6709,294,1,9,,,,DISCHARGED -6709,2023-04-20,26036.911033581742,474,Emergency,2023-05-04,Inconclusive,8514,195,2,5,,,,DISCHARGED -6710,2019-01-11,22235.937443538674,326,Elective,2019-01-31,Normal,6710,186,0,6,,,,DISCHARGED -6711,2021-01-07,10686.772413413302,185,Urgent,2021-01-08,Abnormal,6711,344,1,24,,,,DISCHARGED -6712,2022-12-15,26243.822918569495,237,Urgent,2022-12-17,Abnormal,6712,223,2,5,,,,DISCHARGED -6713,2023-10-15,41129.046340795176,377,Emergency,2023-11-13,Abnormal,6713,317,0,4,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -6714,2021-11-06,10895.017983367385,410,Emergency,2021-11-11,Normal,6714,487,1,29,,,,DISCHARGED -6715,2020-03-13,36417.10103071475,183,Urgent,2020-03-31,Normal,6715,396,1,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6715,2021-02-15,23966.741174988038,477,Emergency,2021-02-23,Abnormal,9853,364,0,17,,,,DISCHARGED -6716,2020-05-13,13242.635557259016,139,Emergency,2020-05-20,Abnormal,6716,336,1,23,,,,DISCHARGED -6716,2021-10-16,17953.42610025,402,Urgent,2021-11-03,Inconclusive,9539,496,0,16,,,,DISCHARGED -6717,2022-09-04,5530.717638599587,461,Emergency,2022-09-10,Normal,6717,228,3,23,,,,DISCHARGED -6718,2022-09-14,14219.481427041805,393,Emergency,2022-10-09,Normal,6718,389,3,26,,,,DISCHARGED -6719,2020-08-09,47827.56024301192,429,Emergency,2020-08-15,Inconclusive,6719,466,1,25,,,,DISCHARGED -6720,2023-05-13,10898.556311882634,407,Emergency,2023-06-03,Abnormal,6720,76,1,26,,,,DISCHARGED -6721,2018-11-19,18076.80553372419,269,Urgent,2018-12-01,Inconclusive,6721,187,0,22,,,,DISCHARGED -6723,2019-06-11,11503.186814887396,368,Urgent,2019-07-04,Abnormal,6723,345,1,6,,,,DISCHARGED -6724,2021-12-22,29304.21466771696,437,Urgent,2022-01-10,Abnormal,6724,269,4,20,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6725,2020-07-07,9396.348495937347,135,Urgent,2020-07-10,Inconclusive,6725,94,3,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -6726,2019-09-05,21974.747036402245,474,Urgent,2019-09-09,Inconclusive,6726,309,1,6,,,,DISCHARGED -6727,2020-08-16,17547.719595956114,268,Emergency,2020-08-24,Inconclusive,6727,131,1,22,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -6728,2019-03-10,39080.0862725537,111,Elective,2019-03-21,Normal,6728,38,2,6,,,,DISCHARGED -6729,2022-03-03,25854.2731122455,161,Emergency,2022-03-18,Inconclusive,6729,71,1,15,,,,DISCHARGED -6730,2019-06-16,48074.11973742916,233,Elective,2019-07-03,Inconclusive,6730,280,4,11,,,,DISCHARGED -6731,2021-04-12,38189.75473668005,145,Emergency,2021-04-29,Normal,6731,332,3,14,,,,DISCHARGED -6732,2022-02-26,5338.401611256891,407,Elective,2022-03-25,Inconclusive,6732,159,2,14,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6733,2021-07-08,17663.70429305998,355,Elective,2021-07-22,Inconclusive,6733,186,0,10,,,,DISCHARGED -6734,2021-01-25,21538.449231231123,376,Urgent,2021-02-24,Inconclusive,6734,485,0,1,,,,DISCHARGED -6735,2019-02-11,30998.720689258167,151,Urgent,2019-02-20,Abnormal,6735,190,3,2,,,,DISCHARGED -6736,2020-04-22,37652.05616652651,499,Urgent,2020-05-17,Normal,6736,421,0,18,,,,DISCHARGED -6738,2021-06-24,41225.23507086748,249,Emergency,2021-06-26,Abnormal,6738,119,4,19,,,,DISCHARGED -6739,2020-05-25,35733.14794121401,175,Emergency,2020-06-02,Normal,6739,219,1,27,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6740,2022-10-21,26383.9861687766,139,Urgent,2022-11-14,Normal,6740,52,3,24,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -6741,2022-10-07,32760.62008856683,214,Emergency,2022-10-18,Normal,6741,221,2,25,,,,DISCHARGED -6743,2022-05-30,19702.908359676472,117,Emergency,2022-06-01,Inconclusive,6743,450,1,14,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -6744,2022-04-16,3958.287461418514,389,Elective,2022-05-05,Abnormal,6744,411,0,15,,,,DISCHARGED -6745,2022-12-26,23387.18652094939,389,Emergency,2023-01-14,Abnormal,6745,130,0,0,,,,DISCHARGED -6745,2020-11-23,38807.74978960813,348,Emergency,2020-12-02,Abnormal,9541,236,2,14,,,,DISCHARGED -6746,2020-01-28,1665.8450468960314,158,Urgent,2020-02-15,Abnormal,6746,245,4,11,,,,DISCHARGED -6747,2021-05-20,6281.270091872381,127,Elective,2021-05-26,Inconclusive,6747,225,2,6,,,,DISCHARGED -6748,2021-11-26,10801.52640736577,140,Emergency,2021-11-29,Abnormal,6748,207,3,6,,,,DISCHARGED -6749,2021-03-03,23153.23633536031,254,Urgent,2021-03-23,Inconclusive,6749,405,2,10,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6750,2022-06-14,13167.279299986343,465,Urgent,2022-06-21,Normal,6750,95,0,19,,,,DISCHARGED -6752,2020-04-04,42927.09861722169,134,Emergency,2020-04-29,Abnormal,6752,421,4,28,,,,DISCHARGED -6753,2020-10-16,47127.78976187629,111,Elective,2020-11-01,Abnormal,6753,199,4,10,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6754,2020-10-11,5688.87599328374,359,Emergency,2020-10-18,Normal,6754,246,2,16,,,,DISCHARGED -6755,2022-01-01,21681.11327240588,119,Elective,2022-01-20,Abnormal,6755,71,3,2,,,,DISCHARGED -6756,2018-12-07,5067.668484927059,180,Elective,2018-12-27,Inconclusive,6756,317,0,15,,,,DISCHARGED -6758,2020-08-09,34412.56846460215,491,Urgent,2020-08-18,Normal,6758,184,1,4,,,,DISCHARGED -6759,2020-09-13,39798.2634460689,219,Emergency,2020-09-15,Inconclusive,6759,5,4,27,,,,DISCHARGED -6760,2019-03-02,46762.11167563197,115,Emergency,2019-03-14,Normal,6760,205,2,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -6761,2020-11-10,15084.550448952972,301,Emergency,2020-12-08,Normal,6761,31,3,22,,,,DISCHARGED -6762,2023-02-12,32089.721345788374,384,Urgent,,Abnormal,6762,98,3,29,,,,OPEN -6763,2019-03-15,16579.85894640888,263,Urgent,2019-03-28,Abnormal,6763,393,0,25,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -6763,2019-10-25,18993.746786159045,126,Emergency,2019-11-22,Abnormal,9572,386,4,25,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6764,2023-03-11,4082.719248015938,377,Emergency,2023-04-06,Abnormal,6764,255,0,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6764,2022-01-22,39712.48183752979,370,Urgent,2022-02-10,Inconclusive,8254,186,1,27,,,,DISCHARGED -6765,2022-11-09,9972.098326065843,483,Emergency,2022-11-13,Abnormal,6765,75,1,9,,,,DISCHARGED -6766,2021-05-08,22033.469341008127,277,Elective,2021-05-30,Normal,6766,176,1,4,,,,DISCHARGED -6767,2020-12-18,29978.472948887087,430,Urgent,2020-12-26,Inconclusive,6767,314,3,14,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -6768,2021-05-21,8885.902239498577,193,Elective,2021-06-07,Abnormal,6768,286,4,11,,,,DISCHARGED -6769,2020-04-28,18888.90688612863,249,Elective,2020-04-30,Inconclusive,6769,348,0,9,,,,DISCHARGED -6770,2023-01-19,8307.850650717448,187,Emergency,2023-02-16,Normal,6770,254,0,21,,,,DISCHARGED -6771,2022-10-04,49891.4023850776,498,Emergency,2022-11-03,Normal,6771,324,1,16,,,,DISCHARGED -6772,2021-04-08,28388.19549054882,247,Urgent,2021-04-21,Normal,6772,189,4,19,,,,DISCHARGED -6774,2020-08-01,42260.23384085925,111,Urgent,2020-08-15,Inconclusive,6774,307,4,19,,,,DISCHARGED -6774,2019-01-15,37917.90879953535,413,Emergency,2019-01-21,Normal,6829,344,2,10,,,,DISCHARGED -6776,2019-05-17,23091.707904819024,453,Emergency,2019-06-08,Abnormal,6776,126,4,7,,,,DISCHARGED -6777,2023-08-08,23423.81058518871,423,Emergency,2023-08-10,Normal,6777,424,4,14,,,,DISCHARGED -6778,2020-06-15,29638.165586676943,200,Urgent,2020-07-10,Abnormal,6778,286,0,1,,,,DISCHARGED -6779,2021-03-04,3611.919798361324,289,Urgent,2021-03-21,Abnormal,6779,253,4,16,,,,DISCHARGED -6780,2021-12-18,36805.26902320039,358,Emergency,2022-01-06,Normal,6780,212,4,22,,,,DISCHARGED -6781,2021-02-23,27536.81055158076,191,Emergency,2021-03-16,Inconclusive,6781,249,0,5,,,,DISCHARGED -6782,2022-02-20,13848.023110436465,179,Urgent,2022-02-25,Inconclusive,6782,83,4,20,,,,DISCHARGED -6784,2022-03-17,49283.835528546144,193,Urgent,2022-04-10,Normal,6784,486,0,27,,,,DISCHARGED -6785,2019-12-28,21661.62726686921,394,Elective,2020-01-13,Normal,6785,382,2,12,,,,DISCHARGED -6786,2021-08-06,37768.322790260034,339,Elective,2021-08-21,Inconclusive,6786,405,3,28,,,,DISCHARGED -6787,2019-02-16,36635.16527108637,376,Urgent,2019-02-27,Normal,6787,387,0,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -6788,2022-03-01,1265.5501148893609,169,Emergency,2022-03-22,Normal,6788,12,0,7,,,,DISCHARGED -6788,2020-09-15,5808.278937785468,360,Urgent,2020-10-08,Abnormal,9675,44,4,10,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -6789,2022-06-14,25986.222968787864,424,Urgent,2022-06-15,Inconclusive,6789,126,0,14,,,,DISCHARGED -6790,2021-02-16,11138.59870069578,300,Emergency,2021-03-14,Inconclusive,6790,425,1,12,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6792,2020-12-11,10724.794197778696,193,Urgent,2020-12-19,Normal,6792,113,1,17,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -6793,2022-10-05,6034.367887122445,106,Emergency,2022-10-07,Inconclusive,6793,432,2,17,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -6794,2021-08-12,34688.95857647393,214,Emergency,2021-09-10,Abnormal,6794,275,0,24,,,,DISCHARGED -6795,2021-12-08,47172.02721470661,468,Urgent,2021-12-16,Abnormal,6795,499,4,16,,,,DISCHARGED -6796,2019-08-20,15793.149417861488,448,Elective,2019-09-16,Abnormal,6796,204,4,21,,,,DISCHARGED -6797,2021-07-17,23228.220638015995,338,Urgent,2021-08-09,Normal,6797,336,3,12,,,,DISCHARGED -6798,2021-04-21,15489.840599610798,240,Emergency,2021-05-16,Inconclusive,6798,437,2,28,,,,DISCHARGED -6799,2019-10-05,23851.84821955305,488,Elective,2019-10-18,Abnormal,6799,419,4,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6800,2022-06-28,49134.45183489225,305,Emergency,2022-07-21,Abnormal,6800,480,3,28,,,,DISCHARGED -6801,2020-04-03,20640.491350576103,450,Emergency,2020-04-25,Normal,6801,384,4,20,,,,DISCHARGED -6802,2022-09-23,26922.832193811475,451,Urgent,2022-10-11,Inconclusive,6802,398,3,23,,,,DISCHARGED -6803,2019-06-24,9557.985592313362,347,Emergency,2019-07-13,Normal,6803,460,1,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -6804,2021-09-14,33731.49187331864,444,Urgent,2021-09-28,Inconclusive,6804,272,1,28,,,,DISCHARGED -6805,2019-05-18,5905.255937904605,105,Elective,2019-06-14,Normal,6805,407,4,11,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6806,2021-06-12,37833.68041213759,468,Emergency,2021-07-04,Abnormal,6806,57,2,3,,,,DISCHARGED -6807,2021-04-11,37240.11656114114,133,Urgent,2021-04-20,Normal,6807,327,0,23,,,,DISCHARGED -6808,2023-09-30,19847.893217887427,364,Elective,2023-10-21,Inconclusive,6808,497,2,26,,,,DISCHARGED -6809,2019-06-25,41278.45968872735,278,Urgent,2019-07-19,Normal,6809,218,2,26,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6810,2023-10-15,11490.13540107364,290,Urgent,,Normal,6810,108,0,25,,,,OPEN -6811,2023-09-01,40621.44835822586,242,Emergency,,Abnormal,6811,278,1,10,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -6812,2023-03-15,8875.007087375528,444,Urgent,2023-04-09,Abnormal,6812,173,1,13,,,,DISCHARGED -6813,2023-10-23,38274.79803427497,425,Urgent,2023-11-05,Inconclusive,6813,327,0,17,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -6814,2023-10-04,49554.98005095694,450,Urgent,,Abnormal,6814,263,3,6,,,,OPEN -6815,2021-11-02,46067.11710227902,496,Emergency,2021-12-02,Abnormal,6815,314,2,4,,,,DISCHARGED -6817,2020-06-13,12098.951932052512,399,Urgent,2020-07-08,Normal,6817,473,4,15,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -6818,2023-08-13,3273.3393055642578,444,Elective,2023-09-06,Abnormal,6818,110,1,10,,,,DISCHARGED -6819,2022-10-01,25248.056598320552,388,Elective,2022-10-30,Inconclusive,6819,186,4,21,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6820,2019-05-27,27535.76280641123,425,Urgent,2019-06-10,Inconclusive,6820,268,0,2,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -6821,2019-08-06,33352.49130228466,277,Emergency,2019-08-09,Normal,6821,422,4,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6822,2023-10-20,46919.172747968114,443,Elective,2023-10-27,Abnormal,6822,228,4,10,,,,DISCHARGED -6823,2020-03-25,49332.83843060683,456,Urgent,2020-03-27,Normal,6823,496,2,9,,,,DISCHARGED -6824,2023-06-29,31941.383308484303,353,Emergency,2023-07-28,Normal,6824,155,0,22,,,,DISCHARGED -6825,2020-01-22,39259.94568729573,456,Elective,2020-01-31,Abnormal,6825,472,4,22,,,,DISCHARGED -6826,2021-10-31,42923.98717991964,337,Elective,2021-11-28,Abnormal,6826,188,1,1,,,,DISCHARGED -6827,2023-08-16,22258.13357326732,281,Emergency,,Inconclusive,6827,271,0,15,,,,OPEN -6828,2022-12-18,39894.473851939285,215,Emergency,2023-01-06,Inconclusive,6828,374,1,16,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6830,2022-02-23,36561.052219648,296,Urgent,2022-03-02,Inconclusive,6830,1,3,9,,,,DISCHARGED -6831,2019-08-21,3709.635192406705,469,Elective,2019-09-11,Abnormal,6831,245,4,17,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6832,2021-03-21,44195.71446070025,153,Elective,2021-03-22,Abnormal,6832,209,0,11,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -6833,2019-10-28,3871.021510012909,442,Emergency,2019-11-02,Normal,6833,400,1,7,,,,DISCHARGED -6834,2018-12-13,15330.377847638065,495,Elective,2019-01-07,Inconclusive,6834,285,4,26,,,,DISCHARGED -6835,2022-05-14,3542.558009010238,450,Elective,2022-05-30,Normal,6835,358,2,25,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6836,2020-09-03,11639.12315736314,457,Urgent,2020-09-25,Normal,6836,12,1,2,,,,DISCHARGED -6836,2021-06-12,30105.37812991968,192,Elective,2021-06-26,Inconclusive,9689,95,1,26,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -6837,2020-06-17,12222.118534809171,305,Emergency,2020-07-13,Inconclusive,6837,497,3,19,,,,DISCHARGED -6838,2023-06-28,34796.30106044404,497,Emergency,,Normal,6838,220,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",OPEN -6839,2021-12-15,38823.5029365312,115,Elective,2021-12-17,Abnormal,6839,237,3,2,,,,DISCHARGED -6839,2019-06-29,13336.24486339428,466,Emergency,2019-07-04,Normal,9640,93,2,5,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6840,2021-04-11,3927.2914703935953,226,Elective,2021-04-21,Inconclusive,6840,337,1,1,,,,DISCHARGED -6841,2022-03-19,19799.89570417404,486,Elective,2022-04-18,Normal,6841,268,3,2,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6842,2022-11-08,20543.31824474834,361,Emergency,2022-11-13,Inconclusive,6842,170,4,16,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6843,2023-09-19,43066.20041767901,419,Elective,,Abnormal,6843,468,2,8,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6844,2021-02-04,15886.513701909227,485,Emergency,2021-03-03,Normal,6844,93,1,3,,,,DISCHARGED -6845,2021-08-25,24478.59005983633,443,Urgent,2021-08-30,Normal,6845,148,0,21,,,,DISCHARGED -6846,2020-06-21,31928.77706783889,254,Elective,2020-07-03,Inconclusive,6846,111,2,22,,,,DISCHARGED -6847,2019-12-29,40522.767502145696,493,Emergency,2020-01-09,Abnormal,6847,54,2,1,,,,DISCHARGED -6848,2023-05-01,40028.13037664336,180,Elective,2023-05-11,Abnormal,6848,336,4,23,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6849,2020-11-26,11106.76612539273,218,Urgent,2020-12-13,Inconclusive,6849,423,2,27,,,,DISCHARGED -6850,2019-07-01,41841.76114562413,257,Urgent,2019-07-13,Normal,6850,466,2,8,,,,DISCHARGED -6851,2019-12-15,49608.493204814935,460,Emergency,2020-01-14,Abnormal,6851,115,4,13,,,,DISCHARGED -6852,2019-10-12,38258.90955394836,153,Elective,2019-10-24,Normal,6852,142,4,25,,,,DISCHARGED -6853,2023-02-26,14062.51605492558,339,Emergency,2023-03-20,Normal,6853,200,3,10,,,,DISCHARGED -6854,2022-01-29,30532.64595498513,332,Emergency,2022-02-20,Inconclusive,6854,179,1,1,,,,DISCHARGED -6855,2021-03-05,29017.230643956736,356,Emergency,2021-03-08,Normal,6855,201,1,20,,,,DISCHARGED -6856,2020-06-17,41121.71152928503,366,Elective,2020-06-27,Inconclusive,6856,363,3,1,,,,DISCHARGED -6857,2021-06-21,18036.6056891088,324,Urgent,2021-07-18,Inconclusive,6857,478,1,26,,,,DISCHARGED -6858,2019-10-11,30917.45181530212,109,Urgent,2019-10-15,Normal,6858,52,2,4,,,,DISCHARGED -6860,2021-10-17,2586.4473596958296,388,Urgent,2021-10-25,Abnormal,6860,470,3,6,,,,DISCHARGED -6861,2021-12-19,36048.72835013831,174,Urgent,2021-12-25,Abnormal,6861,383,3,21,,,,DISCHARGED -6862,2020-02-25,37635.6190387398,359,Urgent,2020-03-13,Normal,6862,179,1,3,,,,DISCHARGED -6863,2022-01-07,48346.26011856065,171,Emergency,2022-01-30,Inconclusive,6863,413,0,13,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -6864,2019-08-28,12912.292134373329,140,Elective,2019-08-29,Inconclusive,6864,416,1,1,,,,DISCHARGED -6865,2022-08-03,26982.51766238641,114,Urgent,2022-08-17,Inconclusive,6865,312,0,22,,,,DISCHARGED -6866,2020-03-10,7404.2028717968515,209,Emergency,2020-04-01,Abnormal,6866,307,3,11,,,,DISCHARGED -6867,2022-04-07,47069.83926797268,183,Urgent,2022-04-09,Abnormal,6867,136,0,9,,,,DISCHARGED -6868,2020-11-10,36057.88192007509,439,Urgent,2020-11-12,Normal,6868,181,2,24,,,,DISCHARGED -6869,2020-07-21,18013.974861642266,441,Urgent,2020-08-03,Normal,6869,366,4,0,,,,DISCHARGED -6870,2019-07-06,21666.55289525704,336,Emergency,2019-07-27,Inconclusive,6870,0,0,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6872,2022-12-14,20504.421867831286,195,Emergency,2023-01-06,Inconclusive,6872,43,4,22,,,,DISCHARGED -6873,2021-10-06,24400.941979654413,209,Elective,2021-11-04,Inconclusive,6873,226,2,15,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6874,2021-08-23,32721.63505836967,384,Emergency,2021-09-04,Normal,6874,330,4,14,,,,DISCHARGED -6874,2020-02-21,18055.322911241845,217,Urgent,2020-03-21,Abnormal,9000,97,2,13,,,,DISCHARGED -6875,2021-10-02,3678.787753757528,457,Elective,2021-10-10,Inconclusive,6875,207,4,8,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6876,2020-12-21,49656.78745179476,466,Urgent,2020-12-29,Inconclusive,6876,264,4,28,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6877,2021-04-12,17809.273882068108,137,Elective,2021-04-14,Inconclusive,6877,287,1,20,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6878,2023-08-19,5220.074018843153,285,Emergency,,Abnormal,6878,270,0,22,,,,OPEN -6879,2021-08-29,17367.006768132334,465,Emergency,2021-09-13,Normal,6879,139,4,14,,,,DISCHARGED -6880,2019-06-01,8344.872038158588,459,Elective,2019-06-04,Inconclusive,6880,480,3,25,,,,DISCHARGED -6881,2020-12-16,24081.170221704542,109,Elective,2020-12-23,Normal,6881,236,1,6,,,,DISCHARGED -6882,2022-09-24,41512.65687507838,479,Urgent,2022-10-14,Abnormal,6882,461,0,3,,,,DISCHARGED -6883,2022-01-29,34585.77783088951,363,Emergency,2022-02-23,Abnormal,6883,440,1,20,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6884,2018-12-19,36179.82211297054,141,Elective,2018-12-20,Inconclusive,6884,391,0,17,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -6885,2019-02-01,42060.54190245227,396,Emergency,2019-02-18,Inconclusive,6885,71,2,7,,,,DISCHARGED -6886,2022-02-23,22670.597120583967,393,Emergency,2022-03-09,Normal,6886,154,4,11,,,,DISCHARGED -6887,2023-05-26,41243.18009707191,235,Urgent,2023-05-29,Abnormal,6887,189,3,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6888,2022-01-04,28760.72377634086,401,Urgent,2022-01-31,Normal,6888,267,1,14,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -6889,2023-09-12,30672.66870908002,189,Emergency,2023-10-07,Normal,6889,320,1,16,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -6890,2023-05-27,32553.66667017798,336,Urgent,2023-06-18,Inconclusive,6890,106,1,1,,,,DISCHARGED -6891,2018-12-18,40040.86636058092,151,Emergency,2019-01-09,Normal,6891,231,1,11,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6892,2022-09-13,49199.74601371455,493,Elective,2022-09-14,Abnormal,6892,41,4,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6893,2019-01-29,21122.759451362013,342,Emergency,2019-01-31,Normal,6893,189,0,6,,,,DISCHARGED -6894,2019-05-29,23954.88018096705,245,Emergency,2019-05-30,Normal,6894,370,4,5,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6896,2021-12-31,27010.57413095525,114,Elective,2022-01-06,Abnormal,6896,138,2,13,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6897,2021-07-31,21582.63099122441,181,Emergency,2021-08-23,Abnormal,6897,102,4,22,,,,DISCHARGED -6898,2023-09-15,39004.398259655536,176,Emergency,2023-09-26,Abnormal,6898,170,4,26,,,,DISCHARGED -6899,2021-07-05,9784.253420517382,272,Emergency,2021-07-21,Normal,6899,350,2,4,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6900,2020-08-26,2190.613269353852,122,Elective,2020-09-20,Abnormal,6900,272,4,29,,,,DISCHARGED -6901,2023-04-23,20189.35857799911,468,Emergency,,Abnormal,6901,480,0,3,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,OPEN -6902,2021-12-23,49721.48933520515,341,Elective,2021-12-26,Inconclusive,6902,415,3,14,,,,DISCHARGED -6903,2023-05-24,47989.83459902162,358,Emergency,,Inconclusive,6903,220,2,6,,,,OPEN -6904,2019-07-15,9719.042869549468,112,Emergency,2019-08-01,Abnormal,6904,212,1,2,,,,DISCHARGED -6905,2021-03-20,24455.72398371465,115,Urgent,2021-03-25,Normal,6905,340,0,12,,,,DISCHARGED -6906,2022-01-13,29148.62010659719,242,Elective,2022-02-02,Inconclusive,6906,423,3,9,,,,DISCHARGED -6907,2019-11-13,33035.04051135661,389,Emergency,2019-12-01,Abnormal,6907,406,0,22,,,,DISCHARGED -6908,2021-02-07,21704.12367705071,177,Urgent,2021-02-21,Normal,6908,55,0,1,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6909,2018-12-16,4681.999280526896,203,Urgent,2019-01-11,Normal,6909,389,1,11,,,,DISCHARGED -6910,2021-04-02,13881.042211211625,360,Urgent,2021-04-20,Normal,6910,341,3,27,,,,DISCHARGED -6911,2021-07-21,25721.757753734502,229,Elective,2021-07-27,Abnormal,6911,433,0,23,,,,DISCHARGED -6912,2023-06-13,33362.80820852976,406,Urgent,2023-07-12,Abnormal,6912,101,1,27,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -6914,2022-08-03,48316.58750800679,250,Emergency,2022-08-27,Abnormal,6914,420,2,21,,,,DISCHARGED -6915,2019-07-09,18873.33861875201,104,Urgent,2019-08-02,Abnormal,6915,492,1,11,,,,DISCHARGED -6916,2019-02-14,29983.666771928347,374,Urgent,2019-03-13,Normal,6916,191,4,18,,,,DISCHARGED -6917,2023-02-23,12571.879872742453,211,Emergency,,Abnormal,6917,498,1,18,,,,OPEN -6918,2022-01-03,16599.28789167924,276,Elective,2022-01-18,Normal,6918,309,1,20,,,,DISCHARGED -6919,2020-07-30,24125.69050911835,476,Emergency,2020-08-21,Abnormal,6919,199,1,2,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6920,2022-09-09,2976.7440454205766,441,Urgent,2022-09-16,Abnormal,6920,232,0,5,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -6921,2020-12-07,37146.98486188007,375,Urgent,2020-12-25,Abnormal,6921,432,3,1,,,,DISCHARGED -6922,2022-08-27,5883.158390461255,220,Elective,2022-09-21,Normal,6922,226,1,23,,,,DISCHARGED -6923,2020-04-24,13016.178264976284,426,Elective,2020-05-19,Normal,6923,370,1,12,,,,DISCHARGED -6924,2022-07-19,4587.07832525065,264,Elective,2022-07-29,Inconclusive,6924,138,4,26,,,,DISCHARGED -6925,2022-11-15,28751.31529811376,109,Elective,2022-12-14,Inconclusive,6925,343,4,27,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6926,2019-05-14,38287.62735509396,476,Elective,2019-06-09,Abnormal,6926,304,2,26,,,,DISCHARGED -6927,2022-12-29,1844.6653963004087,329,Urgent,2023-01-14,Normal,6927,148,2,8,,,,DISCHARGED -6928,2019-12-11,21422.786020571628,317,Emergency,2019-12-12,Inconclusive,6928,114,4,12,,,,DISCHARGED -6930,2018-12-03,43026.43138295912,386,Urgent,2018-12-12,Normal,6930,449,3,22,,,,DISCHARGED -6931,2022-08-30,44251.29820347973,311,Elective,2022-09-10,Normal,6931,62,2,13,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6931,2019-08-27,19912.78488841649,421,Urgent,2019-09-20,Abnormal,9596,103,3,18,,,,DISCHARGED -6932,2021-05-13,1271.4330373254052,499,Urgent,2021-06-05,Abnormal,6932,338,4,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6933,2019-07-10,41964.94123413667,447,Elective,2019-08-01,Normal,6933,358,2,13,,,,DISCHARGED -6934,2022-07-31,42928.0748197408,244,Emergency,2022-08-28,Normal,6934,155,1,15,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6935,2019-03-31,20407.00690319005,396,Emergency,2019-04-10,Normal,6935,272,4,9,,,,DISCHARGED -6936,2022-04-27,13158.124974652472,166,Urgent,2022-05-26,Abnormal,6936,5,2,19,,,,DISCHARGED -6937,2023-08-06,3106.0434201333437,105,Urgent,2023-08-31,Normal,6937,146,3,15,,,,DISCHARGED -6938,2019-09-19,49874.35205172004,207,Elective,2019-09-27,Abnormal,6938,183,3,27,,,,DISCHARGED -6939,2019-12-10,34435.00715638833,284,Emergency,2020-01-06,Inconclusive,6939,485,2,25,,,,DISCHARGED -6940,2021-12-08,41974.30956664626,495,Elective,2021-12-15,Abnormal,6940,27,3,1,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -6941,2020-08-29,5840.761894779029,319,Urgent,2020-09-27,Normal,6941,449,2,24,,,,DISCHARGED -6942,2022-04-05,18828.985033991587,174,Elective,2022-04-15,Abnormal,6942,37,2,15,,,,DISCHARGED -6943,2021-04-04,29021.530383541096,345,Emergency,2021-04-09,Inconclusive,6943,118,3,13,,,,DISCHARGED -6944,2020-09-19,36569.7359015632,415,Elective,2020-09-25,Normal,6944,292,0,20,,,,DISCHARGED -6945,2019-05-29,7212.095181705559,193,Urgent,2019-06-24,Inconclusive,6945,370,1,27,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -6946,2020-10-29,45125.53092988562,126,Elective,2020-11-07,Inconclusive,6946,243,4,17,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6947,2019-11-01,22205.908443391763,244,Emergency,2019-12-01,Inconclusive,6947,67,1,25,,,,DISCHARGED -6948,2019-01-17,9751.256054537394,312,Elective,2019-01-29,Abnormal,6948,213,4,5,,,,DISCHARGED -6949,2022-06-15,14540.995424455135,123,Urgent,2022-06-21,Normal,6949,217,4,6,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6950,2019-12-18,9393.384143227926,369,Urgent,2020-01-11,Normal,6950,176,1,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -6951,2021-05-25,17385.6942661642,247,Emergency,2021-06-06,Inconclusive,6951,298,2,1,,,,DISCHARGED -6952,2022-04-27,23191.49097221982,288,Urgent,2022-04-28,Normal,6952,163,3,14,,,,DISCHARGED -6953,2021-08-21,8757.444361387468,340,Emergency,2021-09-03,Abnormal,6953,57,0,16,,,,DISCHARGED -6954,2021-04-23,15119.263594399192,249,Elective,2021-05-06,Abnormal,6954,268,0,12,,,,DISCHARGED -6955,2020-03-24,33098.47806222107,200,Emergency,2020-04-17,Abnormal,6955,307,0,6,,,,DISCHARGED -6956,2020-06-30,28202.02463123516,392,Emergency,2020-07-20,Inconclusive,6956,57,1,0,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -6957,2022-07-01,3921.269858654899,153,Elective,2022-07-09,Normal,6957,287,1,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6958,2021-04-12,5743.795054067121,366,Urgent,2021-04-26,Inconclusive,6958,464,2,19,,,,DISCHARGED -6959,2020-03-01,31230.146441875662,114,Urgent,2020-03-08,Normal,6959,104,0,17,,,,DISCHARGED -6960,2018-11-19,44594.51048092537,444,Urgent,2018-11-26,Abnormal,6960,227,2,6,,,,DISCHARGED -6961,2019-03-15,18717.30553192645,379,Emergency,2019-04-13,Normal,6961,246,0,20,,,,DISCHARGED -6962,2023-02-24,29969.31082460949,287,Emergency,2023-03-23,Normal,6962,187,1,16,,,,DISCHARGED -6963,2023-07-21,15527.34878869212,370,Emergency,2023-07-31,Normal,6963,493,3,27,,,,DISCHARGED -6964,2023-08-18,7614.503507240185,237,Elective,,Abnormal,6964,82,3,11,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",OPEN -6965,2019-01-30,35830.872708983195,441,Urgent,2019-02-02,Normal,6965,185,3,15,,,,DISCHARGED -6966,2021-03-04,3323.1493877491453,337,Emergency,2021-03-27,Inconclusive,6966,251,3,23,,,,DISCHARGED -6967,2019-01-20,19165.95622356114,411,Elective,2019-02-17,Inconclusive,6967,354,4,9,,,,DISCHARGED -6968,2023-02-19,36922.40795023482,318,Urgent,2023-02-26,Normal,6968,237,0,22,,,,DISCHARGED -6969,2023-03-30,42953.35070067596,311,Emergency,2023-04-28,Normal,6969,359,3,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -6970,2020-09-26,24628.638701085616,370,Urgent,2020-10-09,Inconclusive,6970,183,4,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -6971,2021-02-09,39147.73981123817,415,Elective,2021-02-23,Abnormal,6971,283,4,17,,,,DISCHARGED -6972,2021-12-08,3683.299679083855,370,Elective,2021-12-25,Abnormal,6972,384,4,14,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6973,2019-02-07,17029.84381319199,118,Urgent,2019-03-07,Abnormal,6973,425,2,22,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -6974,2020-08-08,32544.248420748994,448,Elective,2020-08-29,Normal,6974,209,2,10,,,,DISCHARGED -6975,2023-07-13,37186.17202104556,295,Urgent,,Inconclusive,6975,303,4,17,,,,OPEN -6976,2021-11-24,20785.120348210043,383,Urgent,2021-11-29,Abnormal,6976,295,3,5,,,,DISCHARGED -6977,2020-06-22,23191.696371418355,355,Emergency,2020-07-07,Inconclusive,6977,96,0,0,,,,DISCHARGED -6978,2022-05-28,6420.664097170925,147,Emergency,2022-06-22,Normal,6978,446,1,29,,,,DISCHARGED -6979,2021-07-16,21924.850084613707,388,Elective,2021-07-17,Normal,6979,459,2,22,,,,DISCHARGED -6980,2020-04-14,45594.05190315254,267,Elective,2020-04-23,Inconclusive,6980,455,3,6,,,,DISCHARGED -6982,2023-01-10,8996.36230333845,500,Elective,,Abnormal,6982,471,3,11,,,,OPEN -6983,2020-01-12,38772.294762515696,307,Urgent,2020-01-14,Normal,6983,207,1,19,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -6984,2019-02-19,36334.49165561649,245,Urgent,2019-03-14,Abnormal,6984,369,1,3,,,,DISCHARGED -6985,2020-09-08,18805.210172743948,434,Elective,2020-09-23,Normal,6985,387,3,9,,,,DISCHARGED -6986,2021-11-21,10578.934274622165,300,Emergency,2021-12-13,Inconclusive,6986,421,1,20,,,,DISCHARGED -6987,2019-12-11,43181.07556432056,379,Elective,2020-01-09,Abnormal,6987,491,3,1,,,,DISCHARGED -6988,2021-07-11,18815.487208475053,142,Urgent,2021-07-25,Inconclusive,6988,410,1,8,,,,DISCHARGED -6989,2020-07-02,44200.98515737494,342,Emergency,2020-07-17,Abnormal,6989,136,1,9,,,,DISCHARGED -6991,2022-10-10,32421.41053753488,409,Emergency,2022-10-28,Normal,6991,366,3,19,,,,DISCHARGED -6992,2022-06-26,44340.91194664272,345,Emergency,2022-07-21,Abnormal,6992,399,4,10,,,,DISCHARGED -6993,2023-02-13,28947.395382327337,183,Urgent,2023-03-08,Normal,6993,183,3,24,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6994,2023-05-26,12658.82425861454,491,Emergency,,Normal,6994,75,0,13,,,,OPEN -6995,2023-05-30,30566.481418628096,131,Emergency,,Abnormal,6995,286,1,2,,,,OPEN -6996,2019-04-19,23115.99583049012,358,Emergency,2019-04-21,Normal,6996,471,2,24,,,,DISCHARGED -6997,2022-07-18,37754.68036336889,433,Elective,2022-08-09,Abnormal,6997,374,1,0,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6998,2019-03-10,33048.60738867,108,Emergency,2019-03-18,Inconclusive,6998,141,0,6,,,,DISCHARGED -6999,2021-12-05,28066.850326825373,469,Emergency,2021-12-17,Inconclusive,6999,236,2,3,,,,DISCHARGED -7000,2019-12-03,28022.077120481412,318,Urgent,2019-12-04,Normal,7000,24,2,6,,,,DISCHARGED -7001,2019-12-14,43643.2185991089,276,Elective,2020-01-07,Abnormal,7001,289,3,15,,,,DISCHARGED -7002,2019-03-06,10165.625602412832,312,Emergency,2019-03-14,Normal,7002,66,4,29,,,,DISCHARGED -7003,2021-05-24,17775.0711507952,215,Urgent,2021-05-28,Inconclusive,7003,249,3,9,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7004,2021-08-08,16789.876984746872,497,Elective,2021-08-29,Normal,7004,407,2,14,,,,DISCHARGED -7005,2021-07-21,1624.3416946945954,393,Emergency,2021-08-13,Normal,7005,117,2,15,,,,DISCHARGED -7006,2021-07-16,19111.079143988805,346,Elective,2021-08-13,Normal,7006,489,4,5,,,,DISCHARGED -7007,2022-10-23,44348.96664206508,469,Urgent,2022-11-08,Normal,7007,72,1,3,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7008,2020-12-04,4852.941455185139,221,Urgent,2020-12-19,Normal,7008,281,4,3,,,,DISCHARGED -7010,2021-05-08,2988.082316116417,314,Emergency,2021-05-25,Abnormal,7010,403,3,23,,,,DISCHARGED -7011,2019-07-22,6285.273179005883,235,Emergency,2019-07-26,Abnormal,7011,447,1,22,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -7012,2019-10-05,49835.01817990041,308,Elective,2019-10-29,Inconclusive,7012,359,3,3,,,,DISCHARGED -7013,2018-12-30,45617.60148270567,112,Urgent,2019-01-19,Inconclusive,7013,9,4,26,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -7014,2021-02-10,12472.3016246608,378,Emergency,2021-02-22,Inconclusive,7014,210,1,21,,,,DISCHARGED -7015,2020-05-23,1558.0693002955077,181,Emergency,2020-06-07,Abnormal,7015,322,4,21,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -7016,2020-12-22,46231.33327074372,417,Urgent,2021-01-16,Abnormal,7016,151,0,16,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7017,2021-05-30,47302.27132981174,170,Urgent,2021-06-16,Abnormal,7017,4,2,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7018,2019-02-11,7021.633557241288,285,Emergency,2019-02-15,Normal,7018,194,1,1,,,,DISCHARGED -7019,2020-08-18,42079.942863036194,262,Urgent,2020-09-10,Abnormal,7019,441,2,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -7020,2022-05-02,46151.28129108493,496,Elective,2022-05-06,Normal,7020,282,0,5,,,,DISCHARGED -7021,2019-07-07,15754.20285448002,498,Urgent,2019-07-15,Inconclusive,7021,463,1,21,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7022,2022-07-02,19690.996407116847,468,Emergency,2022-08-01,Normal,7022,112,2,0,,,,DISCHARGED -7024,2022-06-16,8347.455292656887,142,Emergency,2022-06-17,Inconclusive,7024,270,2,7,,,,DISCHARGED -7026,2022-06-19,9643.520510261009,360,Emergency,2022-07-19,Abnormal,7026,162,1,17,,,,DISCHARGED -7029,2022-12-28,10720.533851319837,462,Urgent,2023-01-25,Abnormal,7029,459,2,28,,,,DISCHARGED -7030,2023-05-17,47674.5582439801,217,Emergency,,Inconclusive,7030,104,2,20,,,,OPEN -7031,2021-05-13,45319.94992170451,495,Urgent,2021-06-12,Inconclusive,7031,180,1,3,,,,DISCHARGED -7032,2020-12-16,32129.827083327928,240,Urgent,2021-01-09,Inconclusive,7032,43,2,4,,,,DISCHARGED -7033,2020-05-25,36862.2259661634,197,Emergency,2020-06-01,Abnormal,7033,281,2,4,,,,DISCHARGED -7034,2019-03-20,7669.027644818167,147,Elective,2019-03-28,Normal,7034,174,3,14,,,,DISCHARGED -7035,2020-10-08,33384.89314404058,387,Urgent,2020-11-07,Normal,7035,161,3,9,,,,DISCHARGED -7037,2020-05-10,18452.33495118273,163,Emergency,2020-05-16,Normal,7037,470,0,7,,,,DISCHARGED -7039,2020-09-19,14971.788759435414,343,Urgent,2020-10-18,Abnormal,7039,350,3,25,,,,DISCHARGED -7040,2019-10-15,11246.221282683617,165,Elective,2019-10-27,Abnormal,7040,433,3,6,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7041,2020-04-21,22038.87416508738,111,Urgent,2020-05-06,Normal,7041,339,0,11,,,,DISCHARGED -7042,2020-01-25,42622.75933691992,386,Emergency,2020-02-23,Normal,7042,139,2,29,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7043,2020-05-27,30196.03671471688,284,Urgent,2020-06-02,Abnormal,7043,470,2,24,,,,DISCHARGED -7044,2020-06-19,48617.47109802048,123,Elective,2020-06-29,Abnormal,7044,131,3,27,,,,DISCHARGED -7045,2022-04-03,13603.833695843485,435,Emergency,2022-04-07,Inconclusive,7045,86,0,10,,,,DISCHARGED -7046,2023-09-05,18391.8996685034,359,Emergency,,Abnormal,7046,175,2,12,,,,OPEN -7047,2022-03-15,22561.42873182083,295,Emergency,2022-04-02,Abnormal,7047,182,4,14,,,,DISCHARGED -7048,2021-11-10,29605.13648065304,367,Emergency,2021-12-07,Abnormal,7048,367,1,16,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7049,2020-05-07,7113.477012233674,213,Emergency,2020-05-09,Inconclusive,7049,128,1,21,,,,DISCHARGED -7050,2022-02-06,35665.405572029216,312,Elective,2022-02-18,Normal,7050,245,1,21,,,,DISCHARGED -7051,2023-07-31,33372.17197336503,193,Urgent,2023-08-16,Abnormal,7051,88,3,17,,,,DISCHARGED -7052,2020-12-21,5996.388238063388,214,Urgent,2021-01-14,Abnormal,7052,65,1,26,,,,DISCHARGED -7053,2023-04-25,24753.04718018185,165,Emergency,2023-05-05,Normal,7053,157,1,7,,,,DISCHARGED -7054,2021-09-09,1491.4259908042727,367,Elective,2021-09-17,Normal,7054,386,4,5,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7055,2019-10-20,48967.70097634383,172,Emergency,2019-11-09,Normal,7055,377,2,10,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7056,2023-08-22,34855.1856269224,346,Urgent,2023-08-31,Abnormal,7056,148,4,28,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7057,2020-07-23,45884.35251757271,421,Emergency,2020-08-15,Abnormal,7057,472,3,25,,,,DISCHARGED -7058,2019-03-29,26745.25370544875,453,Emergency,2019-04-26,Inconclusive,7058,339,1,8,,,,DISCHARGED -7059,2019-04-03,16295.959803509952,289,Urgent,2019-05-02,Normal,7059,432,2,25,,,,DISCHARGED -7060,2023-09-17,16287.97853596497,327,Emergency,,Abnormal,7060,115,1,4,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",OPEN -7061,2021-05-06,40684.505484486064,422,Elective,2021-05-19,Normal,7061,213,1,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7062,2020-03-08,6401.271009325388,407,Elective,2020-03-18,Inconclusive,7062,468,3,21,,,,DISCHARGED -7063,2021-08-13,43195.045179384346,302,Elective,2021-08-24,Abnormal,7063,445,1,26,,,,DISCHARGED -7064,2021-11-14,49848.9617670132,309,Emergency,2021-12-11,Normal,7064,480,0,14,,,,DISCHARGED -7065,2023-06-10,46654.15202107294,446,Urgent,2023-07-04,Normal,7065,371,2,20,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -7066,2018-12-11,29205.63931245221,491,Elective,2019-01-08,Inconclusive,7066,293,2,21,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7067,2021-12-19,10894.031638453083,273,Elective,2022-01-11,Abnormal,7067,252,0,3,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -7068,2019-10-25,22476.138091971294,315,Urgent,2019-11-04,Normal,7068,142,3,18,,,,DISCHARGED -7069,2021-11-21,17028.19333414566,411,Emergency,2021-12-11,Inconclusive,7069,249,1,12,,,,DISCHARGED -7070,2021-07-20,26803.9697993017,209,Urgent,2021-08-01,Inconclusive,7070,365,1,0,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -7071,2021-01-04,13211.982394459112,202,Urgent,2021-01-17,Normal,7071,435,2,0,,,,DISCHARGED -7072,2020-03-31,5873.908262540625,196,Emergency,2020-04-19,Abnormal,7072,462,3,21,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7073,2019-12-02,41263.20100000215,315,Urgent,2019-12-13,Inconclusive,7073,301,3,13,,,,DISCHARGED -7074,2023-07-20,14079.82477736208,284,Elective,2023-08-19,Inconclusive,7074,24,3,8,,,,DISCHARGED -7075,2022-08-19,28151.67210628584,500,Urgent,2022-09-06,Normal,7075,276,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -7076,2022-03-08,27494.7333131783,346,Urgent,2022-03-30,Inconclusive,7076,471,3,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7078,2019-02-27,42467.90159877492,182,Elective,2019-03-13,Inconclusive,7078,376,0,17,,,,DISCHARGED -7080,2022-09-20,26519.79531729132,337,Emergency,2022-09-24,Normal,7080,377,4,8,,,,DISCHARGED -7081,2019-03-24,36848.88222905856,107,Elective,2019-03-27,Inconclusive,7081,388,3,7,,,,DISCHARGED -7082,2022-08-07,12291.30093234208,135,Urgent,2022-08-14,Inconclusive,7082,69,4,29,,,,DISCHARGED -7084,2020-04-03,16618.638782435875,441,Urgent,2020-04-05,Normal,7084,112,1,13,,,,DISCHARGED -7085,2020-08-01,4503.271013887793,300,Elective,2020-08-29,Inconclusive,7085,362,3,27,,,,DISCHARGED -7085,2022-12-07,29736.060639802552,398,Emergency,2022-12-15,Normal,9890,111,2,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7086,2022-06-20,37102.007021229234,213,Elective,2022-06-27,Inconclusive,7086,363,1,19,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7088,2020-09-06,32013.8829280533,195,Urgent,2020-10-01,Inconclusive,7088,302,0,24,,,,DISCHARGED -7089,2019-03-26,2127.590487194777,428,Elective,2019-03-28,Inconclusive,7089,470,0,1,,,,DISCHARGED -7090,2019-06-24,17646.1661251343,404,Emergency,2019-07-18,Abnormal,7090,451,4,28,,,,DISCHARGED -7091,2021-07-21,10529.911922347848,113,Emergency,2021-08-19,Inconclusive,7091,90,4,0,,,,DISCHARGED -7092,2019-08-07,39057.424257618935,174,Elective,2019-08-20,Abnormal,7092,17,2,12,,,,DISCHARGED -7094,2023-01-20,20155.521024480197,418,Urgent,,Inconclusive,7094,148,2,24,,,,OPEN -7094,2023-07-11,27529.97440820637,112,Elective,2023-08-03,Normal,8912,475,0,9,,,,DISCHARGED -7096,2020-02-09,20800.256005646625,360,Elective,2020-02-18,Normal,7096,226,3,7,,,,DISCHARGED -7097,2022-08-05,18062.793452994247,157,Urgent,2022-09-01,Normal,7097,213,0,6,,,,DISCHARGED -7098,2022-05-07,46529.20099626824,108,Urgent,2022-05-11,Abnormal,7098,359,0,29,,,,DISCHARGED -7099,2021-12-04,4227.275781451428,476,Emergency,2021-12-24,Inconclusive,7099,150,2,28,,,,DISCHARGED -7100,2018-12-12,26322.58090495932,450,Elective,2019-01-01,Inconclusive,7100,191,4,23,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7101,2019-07-12,21030.4321002445,327,Urgent,2019-07-15,Abnormal,7101,450,2,11,,,,DISCHARGED -7102,2020-01-03,17199.672597827237,409,Emergency,2020-01-09,Abnormal,7102,39,2,16,,,,DISCHARGED -7103,2021-06-19,39373.42563456408,301,Urgent,2021-06-28,Inconclusive,7103,241,2,29,,,,DISCHARGED -7104,2019-11-02,1237.2508300624338,314,Elective,2019-11-05,Inconclusive,7104,137,0,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -7105,2022-11-17,25787.91272472085,185,Emergency,2022-11-18,Inconclusive,7105,344,3,11,,,,DISCHARGED -7107,2021-07-19,49792.10009117197,290,Emergency,2021-07-22,Inconclusive,7107,179,0,15,,,,DISCHARGED -7108,2020-10-25,29953.76922076988,491,Emergency,2020-11-04,Normal,7108,496,1,9,,,,DISCHARGED -7109,2021-12-01,8162.559699233293,103,Elective,2021-12-31,Inconclusive,7109,199,2,26,,,,DISCHARGED -7110,2019-02-09,5074.770052671522,436,Elective,2019-02-11,Normal,7110,202,2,24,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7111,2020-04-20,41555.73679216185,487,Urgent,2020-04-28,Inconclusive,7111,60,1,11,,,,DISCHARGED -7112,2020-05-05,18822.1132164572,345,Emergency,2020-05-22,Normal,7112,191,2,10,,,,DISCHARGED -7113,2021-03-25,6397.180958100335,204,Elective,2021-04-22,Abnormal,7113,4,2,24,,,,DISCHARGED -7114,2022-06-10,23959.67721020742,491,Elective,2022-07-08,Abnormal,7114,377,2,28,,,,DISCHARGED -7115,2023-03-29,3212.321099081732,164,Urgent,2023-04-19,Inconclusive,7115,236,1,13,,,,DISCHARGED -7116,2021-08-21,7027.1252073885225,272,Emergency,2021-09-02,Abnormal,7116,180,0,21,,,,DISCHARGED -7117,2022-07-27,46468.92284464366,102,Elective,2022-08-14,Abnormal,7117,310,2,19,,,,DISCHARGED -7118,2022-09-28,8030.721529139739,326,Emergency,2022-10-04,Normal,7118,36,3,12,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7119,2022-11-03,33903.101708471964,256,Urgent,2022-11-13,Abnormal,7119,55,1,1,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7121,2020-05-24,25369.4763721589,485,Urgent,2020-06-23,Abnormal,7121,442,4,26,,,,DISCHARGED -7122,2019-03-23,26680.700177879346,214,Urgent,2019-03-28,Inconclusive,7122,236,1,19,,,,DISCHARGED -7123,2021-12-24,47144.95223130249,263,Urgent,2022-01-08,Inconclusive,7123,357,0,6,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7126,2023-03-19,1301.15435196795,180,Urgent,2023-03-29,Normal,7126,348,1,0,,,,DISCHARGED -7127,2020-10-30,10931.312349866865,436,Urgent,2020-11-04,Abnormal,7127,196,4,29,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -7128,2020-06-16,24919.838175483044,140,Emergency,2020-06-19,Normal,7128,72,3,24,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7128,2019-10-02,5439.113225786939,359,Urgent,2019-10-25,Abnormal,9900,58,4,2,,,,DISCHARGED -7129,2020-04-24,37830.23901868565,363,Elective,2020-05-03,Abnormal,7129,239,1,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -7130,2019-06-23,32203.170676483947,346,Emergency,2019-07-22,Normal,7130,1,4,28,,,,DISCHARGED -7131,2020-04-11,49537.836556769806,138,Urgent,2020-05-08,Abnormal,7131,448,1,19,,,,DISCHARGED -7132,2022-04-11,29141.438216020822,468,Elective,2022-04-16,Abnormal,7132,359,3,11,,,,DISCHARGED -7133,2019-12-26,30800.192578808164,463,Elective,2020-01-02,Inconclusive,7133,187,3,4,,,,DISCHARGED -7134,2020-08-30,16819.99792549633,454,Emergency,2020-09-18,Abnormal,7134,306,0,11,,,,DISCHARGED -7135,2019-11-03,21590.05968050994,381,Emergency,2019-11-22,Abnormal,7135,29,3,28,,,,DISCHARGED -7136,2019-11-28,35944.56290912836,236,Emergency,2019-12-14,Abnormal,7136,266,2,2,,,,DISCHARGED -7137,2019-12-17,39493.38238438234,103,Emergency,2019-12-31,Normal,7137,475,4,19,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7138,2020-06-12,17801.78962708057,344,Urgent,2020-07-06,Abnormal,7138,107,4,4,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7139,2021-09-11,6445.675572263648,450,Elective,2021-10-07,Abnormal,7139,331,1,27,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7140,2022-12-12,13669.66304710929,371,Elective,2022-12-24,Abnormal,7140,422,3,0,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7141,2019-03-30,20378.114327795065,284,Emergency,2019-04-25,Normal,7141,89,0,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7142,2021-01-21,26212.49513013249,372,Urgent,2021-01-23,Normal,7142,204,0,29,,,,DISCHARGED -7143,2019-05-15,41024.26391659207,145,Urgent,2019-06-02,Normal,7143,378,0,8,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7144,2019-12-22,26606.99648348217,392,Emergency,2019-12-25,Inconclusive,7144,455,2,9,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7145,2020-04-01,3436.1046141771485,249,Elective,2020-04-23,Normal,7145,446,3,28,,,,DISCHARGED -7146,2019-05-06,24191.54111516324,327,Urgent,2019-05-28,Inconclusive,7146,447,0,9,,,,DISCHARGED -7148,2019-11-02,27172.657012505337,382,Elective,2019-11-03,Abnormal,7148,444,2,12,,,,DISCHARGED -7149,2023-05-31,3163.0661839396794,336,Emergency,2023-06-22,Inconclusive,7149,380,4,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7150,2020-05-03,39057.94301172147,377,Emergency,2020-05-28,Inconclusive,7150,437,1,29,,,,DISCHARGED -7151,2019-05-16,37045.16506376791,492,Urgent,2019-05-28,Abnormal,7151,219,3,19,,,,DISCHARGED -7152,2023-05-08,5848.965302685062,192,Urgent,,Abnormal,7152,377,3,28,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7153,2022-12-13,4629.222019886309,432,Emergency,2022-12-14,Inconclusive,7153,93,4,24,,,,DISCHARGED -7154,2022-05-16,48471.478861202006,188,Emergency,2022-06-13,Normal,7154,456,3,3,,,,DISCHARGED -7155,2021-12-15,45259.33023102657,159,Emergency,2022-01-08,Abnormal,7155,102,3,13,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7156,2021-11-12,10463.716893575824,237,Emergency,2021-11-28,Inconclusive,7156,222,3,16,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7158,2019-02-18,41840.74498856691,417,Elective,2019-03-01,Normal,7158,185,3,27,,,,DISCHARGED -7159,2021-06-20,38745.06802313855,123,Elective,2021-07-11,Abnormal,7159,468,2,4,,,,DISCHARGED -7160,2022-05-20,7485.053731149499,106,Urgent,2022-05-21,Abnormal,7160,183,2,12,,,,DISCHARGED -7161,2019-08-30,15066.522876957524,324,Emergency,2019-09-17,Inconclusive,7161,494,1,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7162,2020-05-17,30216.501164675457,367,Urgent,2020-06-08,Normal,7162,161,3,2,,,,DISCHARGED -7163,2022-09-18,49223.7153460014,492,Urgent,2022-10-03,Inconclusive,7163,246,4,4,,,,DISCHARGED -7164,2020-12-09,27313.93170070976,313,Urgent,2021-01-06,Normal,7164,30,0,15,,,,DISCHARGED -7165,2020-11-28,49391.72658539869,134,Emergency,2020-12-18,Inconclusive,7165,51,1,18,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -7166,2019-09-01,47697.669841166986,395,Urgent,2019-09-03,Abnormal,7166,344,0,27,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7167,2023-05-13,10469.871969881302,263,Emergency,2023-05-26,Inconclusive,7167,75,0,18,,,,DISCHARGED -7168,2021-01-17,44585.56577915259,492,Emergency,2021-02-13,Abnormal,7168,384,3,16,,,,DISCHARGED -7169,2021-01-03,26520.658624456268,123,Urgent,2021-01-16,Inconclusive,7169,438,4,17,,,,DISCHARGED -7170,2020-02-26,2825.3267360231384,117,Emergency,2020-03-21,Normal,7170,277,0,17,,,,DISCHARGED -7171,2019-10-01,12749.560176320609,253,Urgent,2019-10-20,Abnormal,7171,39,0,24,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7174,2019-10-14,27127.680595704023,174,Emergency,2019-10-25,Normal,7174,100,1,22,,,,DISCHARGED -7175,2020-03-19,38256.61327356869,162,Emergency,2020-04-16,Abnormal,7175,110,4,7,,,,DISCHARGED -7177,2022-02-02,12144.03854480725,186,Emergency,2022-02-15,Abnormal,7177,384,4,17,,,,DISCHARGED -7178,2020-06-27,31870.24892567946,170,Elective,2020-07-02,Inconclusive,7178,320,0,8,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -7179,2021-09-16,4282.856565371199,377,Urgent,2021-10-03,Normal,7179,248,4,28,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -7181,2020-01-22,34828.25978986324,447,Elective,2020-02-02,Normal,7181,190,1,18,,,,DISCHARGED -7182,2022-08-18,47643.04762356633,173,Elective,2022-08-27,Abnormal,7182,489,1,9,,,,DISCHARGED -7184,2023-01-08,33668.23258294844,466,Elective,2023-01-11,Abnormal,7184,181,1,28,,,,DISCHARGED -7185,2021-02-23,16501.498554667844,164,Urgent,2021-02-24,Normal,7185,425,3,1,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -7186,2021-07-14,3974.976004387348,399,Urgent,2021-08-05,Inconclusive,7186,404,0,27,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7188,2021-05-06,4444.410933750696,113,Elective,2021-05-31,Abnormal,7188,334,4,16,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -7189,2023-02-26,10039.133779796635,346,Elective,,Inconclusive,7189,208,1,24,,,,OPEN -7190,2019-08-20,4962.356680587922,169,Urgent,2019-08-21,Inconclusive,7190,21,0,23,,,,DISCHARGED -7191,2022-06-19,36124.95387827857,296,Emergency,2022-07-07,Normal,7191,165,0,12,,,,DISCHARGED -7192,2023-06-19,44109.41425193822,241,Urgent,2023-06-24,Normal,7192,98,3,27,,,,DISCHARGED -7193,2022-09-18,22094.33486443696,417,Emergency,2022-10-15,Abnormal,7193,492,4,10,,,,DISCHARGED -7194,2022-01-26,38505.34801080887,448,Elective,2022-02-22,Inconclusive,7194,207,4,15,,,,DISCHARGED -7195,2019-04-02,13972.993115925368,319,Elective,2019-04-04,Inconclusive,7195,7,1,19,,,,DISCHARGED -7196,2019-08-07,15667.02336453579,468,Elective,2019-08-25,Normal,7196,189,1,6,,,,DISCHARGED -7197,2021-08-09,14857.686632671244,360,Elective,2021-08-24,Inconclusive,7197,174,0,27,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7198,2020-06-02,47898.271328171206,398,Emergency,2020-06-28,Inconclusive,7198,272,4,29,,,,DISCHARGED -7199,2022-07-10,42074.9730337654,381,Elective,2022-07-20,Normal,7199,16,4,2,,,,DISCHARGED -7200,2022-03-23,24717.073126320494,153,Elective,2022-04-14,Normal,7200,89,1,15,,,,DISCHARGED -7201,2022-12-02,44468.0410282488,347,Emergency,2022-12-05,Inconclusive,7201,140,2,18,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7202,2019-07-06,10169.326700314938,438,Urgent,2019-08-03,Normal,7202,144,0,19,,,,DISCHARGED -7203,2019-06-07,9763.372377286158,311,Emergency,2019-06-29,Abnormal,7203,165,4,15,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -7204,2023-07-29,26487.21994075691,296,Emergency,,Inconclusive,7204,336,3,1,,,,OPEN -7205,2020-06-04,42271.12073781485,246,Elective,2020-06-10,Inconclusive,7205,495,3,13,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -7206,2023-08-31,4514.147149922848,323,Emergency,,Abnormal,7206,77,2,25,,,,OPEN -7207,2022-10-02,11918.240761657962,204,Elective,2022-10-21,Abnormal,7207,428,1,19,,,,DISCHARGED -7208,2023-02-18,21410.521559982142,416,Elective,,Normal,7208,261,1,9,,,,OPEN -7209,2021-05-18,20804.63486730664,465,Elective,2021-06-04,Normal,7209,162,1,18,,,,DISCHARGED -7209,2019-07-04,7128.807212460624,376,Elective,2019-07-31,Abnormal,8621,365,3,23,,,,DISCHARGED -7210,2021-08-04,29332.316922106555,133,Urgent,2021-08-30,Normal,7210,13,1,10,,,,DISCHARGED -7211,2020-04-28,42247.97895693903,470,Urgent,2020-05-01,Normal,7211,238,3,17,,,,DISCHARGED -7212,2022-06-26,35048.57201279444,295,Elective,2022-07-20,Normal,7212,71,2,10,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7213,2019-01-22,26001.18565758748,180,Emergency,2019-01-27,Inconclusive,7213,444,0,8,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7214,2021-01-01,45137.95602534278,421,Elective,2021-01-02,Normal,7214,142,4,18,,,,DISCHARGED -7215,2023-10-17,33281.04736978501,130,Elective,2023-11-06,Inconclusive,7215,309,2,19,,,,DISCHARGED -7216,2020-02-04,12208.788597447134,401,Urgent,2020-02-10,Abnormal,7216,282,3,28,,,,DISCHARGED -7217,2022-07-13,42823.30654603339,412,Emergency,2022-07-20,Normal,7217,268,2,9,,,,DISCHARGED -7218,2019-03-01,21049.944131522625,233,Urgent,2019-03-04,Inconclusive,7218,240,4,29,,,,DISCHARGED -7219,2019-09-15,20614.66156413718,449,Emergency,2019-09-19,Abnormal,7219,414,0,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7220,2021-05-27,36922.01627674975,374,Urgent,2021-06-07,Inconclusive,7220,244,4,2,,,,DISCHARGED -7221,2020-12-01,25220.527285467928,260,Emergency,2020-12-10,Abnormal,7221,162,3,2,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -7222,2020-09-23,12138.41263571739,442,Urgent,2020-10-21,Normal,7222,59,4,23,,,,DISCHARGED -7223,2020-12-16,37569.61885467492,331,Urgent,2020-12-30,Abnormal,7223,5,2,7,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7225,2020-04-14,1283.5444729060396,349,Elective,2020-04-29,Abnormal,7225,196,1,28,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7226,2021-04-23,37096.01575440009,368,Emergency,2021-05-14,Normal,7226,469,2,28,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7227,2021-12-10,15391.661939336847,257,Urgent,2021-12-22,Abnormal,7227,57,3,5,,,,DISCHARGED -7228,2022-01-03,49502.1458422292,132,Emergency,2022-01-07,Abnormal,7228,304,0,19,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7228,2020-08-27,4134.078433260449,250,Emergency,2020-09-04,Abnormal,9274,406,4,0,,,,DISCHARGED -7229,2019-02-21,5053.98258298866,353,Emergency,2019-02-23,Inconclusive,7229,216,0,19,,,,DISCHARGED -7230,2020-03-04,25806.752119469355,138,Urgent,2020-03-07,Inconclusive,7230,417,3,23,,,,DISCHARGED -7231,2019-12-20,40948.33559829411,136,Elective,2019-12-30,Abnormal,7231,25,4,5,,,,DISCHARGED -7232,2019-01-07,6738.405125048368,474,Emergency,2019-02-02,Inconclusive,7232,302,2,1,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7233,2023-01-06,9689.8474944542,180,Elective,,Normal,7233,4,2,18,,,,OPEN -7234,2019-10-20,13885.287958494991,195,Urgent,2019-10-28,Normal,7234,473,3,27,,,,DISCHARGED -7235,2022-03-31,26868.503297706848,178,Emergency,2022-04-27,Normal,7235,19,4,6,,,,DISCHARGED -7236,2022-03-14,3178.5010606660694,338,Urgent,2022-04-05,Abnormal,7236,389,2,10,,,,DISCHARGED -7237,2021-06-23,43164.09378001368,325,Elective,2021-06-24,Abnormal,7237,197,3,10,,,,DISCHARGED -7238,2023-01-27,44030.329838229896,431,Urgent,,Normal,7238,58,3,3,,,,OPEN -7239,2023-09-17,26117.363659353778,249,Elective,2023-09-22,Abnormal,7239,447,0,19,,,,DISCHARGED -7240,2022-07-20,46649.60136533374,278,Urgent,2022-07-24,Inconclusive,7240,241,2,15,,,,DISCHARGED -7241,2019-01-18,12897.903898812683,324,Urgent,2019-02-15,Inconclusive,7241,145,4,4,,,,DISCHARGED -7243,2023-01-30,25857.685344121022,423,Urgent,,Inconclusive,7243,387,2,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,OPEN -7245,2020-07-29,24315.43491074983,297,Emergency,2020-08-24,Abnormal,7245,272,2,29,,,,DISCHARGED -7246,2020-06-26,32389.55044573958,188,Elective,2020-07-24,Abnormal,7246,248,2,29,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7247,2019-01-27,8586.671063246058,349,Emergency,2019-02-03,Inconclusive,7247,13,3,6,,,,DISCHARGED -7248,2021-06-17,19769.610089432168,275,Urgent,2021-06-23,Normal,7248,461,1,24,,,,DISCHARGED -7249,2022-02-17,8736.076592500785,199,Emergency,2022-03-08,Normal,7249,12,1,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -7250,2019-06-14,28951.027499187792,425,Elective,2019-06-26,Inconclusive,7250,390,0,14,,,,DISCHARGED -7251,2019-11-17,34543.67024655781,418,Elective,2019-11-23,Inconclusive,7251,383,2,4,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7252,2021-02-22,21708.910422007106,443,Elective,2021-03-23,Normal,7252,43,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7253,2021-04-10,46787.03583825796,299,Emergency,2021-05-10,Abnormal,7253,374,0,19,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -7254,2021-10-12,22060.566690528813,340,Urgent,2021-11-06,Abnormal,7254,398,3,21,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -7255,2019-07-13,29668.322448802643,452,Elective,2019-08-09,Normal,7255,18,2,21,,,,DISCHARGED -7256,2019-02-13,9353.51604502461,403,Emergency,2019-02-27,Abnormal,7256,62,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7257,2019-02-24,2698.259802818861,347,Elective,2019-03-06,Inconclusive,7257,490,3,25,,,,DISCHARGED -7258,2021-07-21,42360.522869150656,195,Emergency,2021-08-07,Inconclusive,7258,238,0,28,,,,DISCHARGED -7259,2021-09-15,2347.02709898368,269,Urgent,2021-09-24,Abnormal,7259,491,3,20,,,,DISCHARGED -7260,2022-01-29,36290.32306418081,250,Emergency,2022-02-22,Abnormal,7260,418,4,4,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -7261,2019-06-08,49225.37669705644,270,Urgent,2019-06-14,Normal,7261,336,3,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7262,2023-01-06,23892.430872093057,114,Emergency,2023-01-26,Normal,7262,418,0,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7264,2021-06-08,31615.33489890834,177,Emergency,2021-06-18,Inconclusive,7264,402,4,5,,,,DISCHARGED -7265,2021-02-24,22979.49545104826,186,Elective,2021-03-11,Abnormal,7265,403,4,2,,,,DISCHARGED -7266,2020-03-31,26053.96631110648,330,Emergency,2020-04-14,Abnormal,7266,99,3,5,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7267,2019-10-07,18645.61401817668,367,Emergency,2019-11-04,Abnormal,7267,162,4,7,,,,DISCHARGED -7268,2022-11-05,43028.00994174671,396,Elective,2022-11-07,Inconclusive,7268,415,3,27,,,,DISCHARGED -7269,2020-04-09,11125.417695661792,142,Urgent,2020-04-12,Abnormal,7269,121,2,5,,,,DISCHARGED -7270,2022-02-08,1614.535068761606,387,Elective,2022-02-21,Normal,7270,431,4,15,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7271,2021-09-05,45856.61103778065,148,Elective,2021-09-22,Inconclusive,7271,43,3,27,,,,DISCHARGED -7271,2020-10-13,20789.28877956234,127,Emergency,2020-11-04,Inconclusive,8141,359,2,15,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7271,2023-04-10,6532.309644695497,255,Emergency,2023-05-02,Normal,9988,407,4,26,,,,DISCHARGED -7272,2020-04-16,3344.3776578108336,375,Elective,2020-05-11,Normal,7272,316,2,20,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -7273,2019-04-21,6678.583545364742,175,Elective,2019-05-07,Abnormal,7273,380,4,2,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7273,2022-04-12,5312.1736173784575,104,Emergency,2022-05-02,Inconclusive,9112,144,0,16,,,,DISCHARGED -7274,2021-11-16,26186.030421242183,308,Elective,2021-12-09,Abnormal,7274,326,0,20,,,,DISCHARGED -7275,2021-05-29,3638.808622041157,164,Urgent,2021-06-28,Normal,7275,362,3,5,,,,DISCHARGED -7276,2020-10-19,26768.41041403627,310,Urgent,2020-11-06,Inconclusive,7276,49,1,29,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7277,2019-12-10,21858.98134712455,233,Emergency,2019-12-28,Normal,7277,64,0,5,,,,DISCHARGED -7278,2020-01-25,44079.34545470767,500,Emergency,2020-02-06,Abnormal,7278,354,1,29,,,,DISCHARGED -7279,2020-03-05,37902.61440369776,460,Urgent,2020-03-17,Normal,7279,287,2,21,,,,DISCHARGED -7280,2022-02-17,14376.30531003069,361,Urgent,2022-03-02,Normal,7280,163,2,18,,,,DISCHARGED -7282,2019-03-25,21932.92672110809,130,Urgent,2019-04-13,Normal,7282,140,1,19,,,,DISCHARGED -7283,2019-09-03,7729.990420936987,492,Urgent,2019-09-20,Normal,7283,453,3,14,,,,DISCHARGED -7284,2021-05-06,30688.05626736491,130,Emergency,2021-05-12,Normal,7284,313,4,18,,,,DISCHARGED -7285,2022-10-05,37629.88975010929,242,Emergency,2022-10-06,Abnormal,7285,127,1,1,,,,DISCHARGED -7286,2020-06-17,29645.86632358496,288,Elective,2020-06-26,Normal,7286,397,1,7,,,,DISCHARGED -7287,2018-11-18,6384.259683165454,360,Elective,2018-11-24,Abnormal,7287,420,1,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7288,2021-08-25,47198.38305434755,175,Urgent,2021-09-20,Abnormal,7288,367,1,26,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7289,2019-01-17,49947.56281494798,154,Emergency,2019-01-19,Inconclusive,7289,462,1,7,,,,DISCHARGED -7290,2019-09-28,39386.44181941064,201,Emergency,2019-10-17,Inconclusive,7290,238,3,12,,,,DISCHARGED -7291,2020-09-13,8545.402217475505,405,Elective,2020-09-18,Abnormal,7291,323,0,21,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7292,2018-12-08,40512.7870171696,210,Elective,2018-12-17,Normal,7292,295,4,26,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7293,2023-05-30,17310.070131499404,443,Elective,,Normal,7293,186,0,14,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",OPEN -7295,2022-08-05,15723.29263320653,170,Emergency,2022-08-10,Abnormal,7295,207,1,11,,,,DISCHARGED -7296,2020-10-25,24172.795837042133,216,Urgent,2020-11-20,Abnormal,7296,219,0,14,,,,DISCHARGED -7299,2021-01-31,15212.07391488521,196,Urgent,2021-02-26,Abnormal,7299,399,3,13,,,,DISCHARGED -7300,2021-04-25,42072.98675596639,350,Elective,2021-05-04,Inconclusive,7300,189,2,6,,,,DISCHARGED -7301,2020-10-27,48132.21867296519,250,Urgent,2020-11-04,Abnormal,7301,387,0,16,,,,DISCHARGED -7302,2023-08-07,17611.99713891229,489,Urgent,2023-08-16,Inconclusive,7302,428,4,25,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7303,2022-01-03,31445.17404752583,124,Elective,2022-01-31,Normal,7303,345,3,4,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7304,2021-04-21,20736.505722524777,120,Emergency,2021-04-27,Abnormal,7304,283,2,19,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7306,2020-11-07,11395.142928508438,239,Elective,2020-11-13,Abnormal,7306,351,3,9,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7307,2021-01-31,1244.000621332449,245,Emergency,2021-02-01,Normal,7307,236,1,18,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -7308,2022-04-22,23118.67859885996,210,Elective,2022-05-14,Inconclusive,7308,193,2,17,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7309,2019-05-14,9063.481874101006,251,Emergency,2019-06-07,Abnormal,7309,286,4,29,,,,DISCHARGED -7310,2021-05-11,4802.670310740336,127,Urgent,2021-05-27,Normal,7310,258,2,29,,,,DISCHARGED -7310,2023-04-30,5651.250351468582,440,Urgent,,Abnormal,8233,245,4,24,,,,OPEN -7311,2020-10-16,31265.88194378888,403,Urgent,2020-11-12,Inconclusive,7311,135,1,23,,,,DISCHARGED -7312,2021-11-08,43564.12658775894,467,Emergency,2021-12-02,Inconclusive,7312,279,4,9,,,,DISCHARGED -7313,2022-02-11,23892.08658065549,494,Emergency,2022-03-03,Abnormal,7313,270,3,1,,,,DISCHARGED -7314,2023-08-23,9874.148894248528,471,Elective,,Abnormal,7314,170,0,5,,,,OPEN -7315,2019-02-25,32789.184430280424,206,Elective,2019-03-04,Abnormal,7315,158,3,2,,,,DISCHARGED -7316,2020-02-17,37844.0472769887,120,Emergency,2020-02-28,Inconclusive,7316,200,3,18,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -7317,2019-05-13,9682.843417848137,153,Emergency,2019-06-09,Abnormal,7317,486,2,4,,,,DISCHARGED -7319,2021-07-03,44920.11240746373,224,Elective,2021-07-12,Inconclusive,7319,44,1,6,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -7320,2019-04-30,21661.837660256755,200,Urgent,2019-05-10,Inconclusive,7320,449,0,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7321,2023-07-07,36770.67829171979,284,Elective,,Normal,7321,263,4,26,,,,OPEN -7322,2020-06-27,49159.46187513699,261,Urgent,2020-06-28,Inconclusive,7322,70,2,9,,,,DISCHARGED -7323,2019-07-27,49368.23485879436,106,Elective,2019-08-17,Normal,7323,363,1,0,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7325,2019-01-05,10532.648283416613,149,Urgent,2019-02-03,Inconclusive,7325,370,0,10,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7326,2022-08-21,49475.70018441851,164,Urgent,2022-09-17,Normal,7326,102,3,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7327,2021-06-24,15786.091589801425,429,Emergency,2021-07-06,Normal,7327,489,1,6,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7328,2020-05-23,10265.07339387778,255,Emergency,2020-06-06,Normal,7328,124,1,5,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7329,2019-10-10,7716.662985024071,430,Emergency,2019-11-06,Normal,7329,312,1,5,,,,DISCHARGED -7330,2019-09-26,41522.30587888796,409,Urgent,2019-10-23,Normal,7330,463,3,12,,,,DISCHARGED -7331,2021-09-07,2625.98297351886,358,Urgent,2021-10-01,Abnormal,7331,482,4,15,,,,DISCHARGED -7332,2022-01-17,2003.7692479004927,406,Emergency,2022-02-10,Inconclusive,7332,285,2,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7333,2021-11-11,37045.19275152549,365,Elective,2021-12-01,Abnormal,7333,457,4,1,,,,DISCHARGED -7334,2022-06-21,38950.76353434449,150,Urgent,2022-07-20,Inconclusive,7334,229,0,18,,,,DISCHARGED -7335,2019-08-15,49877.69565091977,371,Urgent,2019-09-14,Normal,7335,145,2,18,,,,DISCHARGED -7336,2020-07-09,41024.06595877488,240,Emergency,2020-07-28,Inconclusive,7336,369,0,28,,,,DISCHARGED -7337,2020-04-02,47172.93316534732,368,Emergency,2020-05-02,Abnormal,7337,196,3,18,,,,DISCHARGED -7338,2023-05-21,22384.474105809688,401,Elective,2023-05-28,Abnormal,7338,372,4,17,,,,DISCHARGED -7339,2022-03-16,19451.27909273757,174,Urgent,2022-04-08,Inconclusive,7339,220,1,24,,,,DISCHARGED -7340,2022-09-18,4564.584714342207,498,Elective,2022-10-04,Normal,7340,422,2,5,,,,DISCHARGED -7341,2023-06-18,37777.25843683521,492,Emergency,2023-07-05,Normal,7341,59,1,1,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7342,2023-05-05,33814.08289483565,493,Elective,,Inconclusive,7342,97,0,18,,,,OPEN -7343,2019-04-29,11887.257112353243,315,Urgent,2019-05-14,Normal,7343,170,1,25,,,,DISCHARGED -7344,2019-08-11,31322.55260039573,172,Elective,2019-09-10,Abnormal,7344,381,1,5,,,,DISCHARGED -7345,2019-10-13,7718.712938027591,481,Emergency,2019-10-26,Normal,7345,172,3,19,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7346,2023-03-15,14369.191173870406,266,Urgent,2023-04-08,Inconclusive,7346,150,3,22,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7347,2019-06-17,35507.67243678987,354,Elective,2019-07-08,Normal,7347,452,4,21,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7348,2021-06-03,22688.84301631749,134,Elective,2021-06-21,Inconclusive,7348,349,0,14,,,,DISCHARGED -7349,2023-09-06,16606.961278887073,294,Urgent,,Normal,7349,389,3,5,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,OPEN -7350,2023-03-16,39959.04942750109,303,Emergency,,Inconclusive,7350,439,3,27,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",OPEN -7351,2022-09-22,9509.387200503164,428,Urgent,2022-10-11,Normal,7351,121,4,2,,,,DISCHARGED -7352,2019-10-03,46028.18327459657,323,Emergency,2019-10-18,Normal,7352,493,2,10,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -7353,2019-02-14,33481.51754841848,103,Elective,2019-03-02,Inconclusive,7353,107,4,7,,,,DISCHARGED -7354,2018-11-30,3593.6346439365584,181,Elective,2018-12-30,Abnormal,7354,3,1,24,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7356,2019-10-23,6104.171480807141,360,Emergency,2019-10-26,Inconclusive,7356,92,1,21,,,,DISCHARGED -7358,2018-11-26,26420.97513218171,289,Emergency,2018-12-26,Inconclusive,7358,406,3,17,,,,DISCHARGED -7359,2020-02-17,47498.09660959636,336,Elective,2020-02-29,Inconclusive,7359,5,3,16,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -7360,2020-09-21,3102.520177151073,459,Urgent,2020-10-01,Inconclusive,7360,287,4,18,,,,DISCHARGED -7360,2019-06-09,46415.71303815014,424,Urgent,2019-07-08,Normal,7753,105,4,18,,,,DISCHARGED -7361,2021-05-26,17511.354247874424,305,Elective,2021-06-12,Normal,7361,145,0,23,,,,DISCHARGED -7362,2023-03-21,46186.136418578615,333,Urgent,2023-04-05,Inconclusive,7362,270,1,20,,,,DISCHARGED -7363,2019-12-30,1281.1282780073082,137,Urgent,2019-12-31,Abnormal,7363,423,4,16,,,,DISCHARGED -7364,2022-05-27,27140.922228342904,377,Emergency,2022-06-15,Normal,7364,377,2,26,,,,DISCHARGED -7366,2019-08-16,36218.09921416106,464,Emergency,2019-09-02,Inconclusive,7366,95,0,3,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7367,2018-12-30,15629.941586556652,485,Urgent,2019-01-18,Abnormal,7367,456,4,6,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7368,2019-08-23,35986.93140715571,456,Urgent,2019-09-14,Normal,7368,228,3,4,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7369,2020-03-27,7446.201272026424,484,Urgent,2020-04-02,Inconclusive,7369,201,4,25,,,,DISCHARGED -7370,2018-11-09,27918.96096064302,429,Elective,2018-12-05,Inconclusive,7370,211,3,28,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -7372,2020-03-14,10658.782196833989,113,Elective,2020-03-15,Abnormal,7372,5,3,15,,,,DISCHARGED -7373,2022-09-02,30745.753575815357,101,Elective,2022-09-28,Normal,7373,111,1,5,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7374,2022-04-25,1360.8912942231163,370,Emergency,2022-05-08,Normal,7374,375,1,13,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7375,2019-01-28,11994.264546742726,290,Elective,2019-01-29,Normal,7375,378,4,25,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7376,2021-11-25,47045.40079051405,411,Elective,2021-12-18,Inconclusive,7376,446,4,19,,,,DISCHARGED -7377,2020-07-12,48533.40150312601,132,Urgent,2020-08-07,Normal,7377,322,2,1,,,,DISCHARGED -7378,2019-12-04,1478.3481195815905,169,Emergency,2019-12-23,Abnormal,7378,105,0,24,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7379,2021-03-31,39856.71432033812,283,Urgent,2021-04-11,Inconclusive,7379,138,0,17,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7380,2019-11-03,29125.793415575383,366,Emergency,2019-11-14,Normal,7380,298,4,17,,,,DISCHARGED -7381,2019-08-06,20359.875578127005,145,Elective,2019-08-18,Normal,7381,400,1,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7383,2021-10-24,32394.229845199243,281,Elective,2021-11-08,Abnormal,7383,95,2,27,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -7384,2022-08-01,20850.358986226045,406,Urgent,2022-08-26,Inconclusive,7384,387,0,17,,,,DISCHARGED -7385,2021-07-13,34077.92896248795,192,Urgent,2021-07-31,Abnormal,7385,446,4,16,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7386,2023-10-28,6769.277346453472,386,Elective,2023-11-20,Normal,7386,451,1,12,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7387,2021-06-28,43101.60586486373,467,Urgent,2021-07-07,Inconclusive,7387,336,1,27,,,,DISCHARGED -7387,2023-05-13,20321.829790717133,296,Urgent,2023-05-20,Inconclusive,9202,296,1,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7388,2020-08-01,16976.601102467925,412,Emergency,2020-08-07,Normal,7388,466,3,2,,,,DISCHARGED -7389,2021-02-23,41175.74948770679,365,Elective,2021-03-12,Inconclusive,7389,388,1,21,,,,DISCHARGED -7390,2018-11-12,33056.898305941606,196,Elective,2018-11-22,Abnormal,7390,415,4,6,,,,DISCHARGED -7391,2023-02-14,49929.7987260518,455,Emergency,2023-02-16,Abnormal,7391,213,2,0,,,,DISCHARGED -7392,2020-06-26,46139.925387324336,198,Urgent,2020-07-23,Inconclusive,7392,453,4,29,,,,DISCHARGED -7392,2023-01-05,21212.336237180574,302,Urgent,2023-02-02,Inconclusive,8419,290,1,4,,,,DISCHARGED -7393,2022-02-15,47034.01300356706,220,Urgent,2022-02-19,Inconclusive,7393,21,2,20,,,,DISCHARGED -7394,2020-05-10,17150.848338674838,387,Urgent,2020-05-22,Normal,7394,192,0,0,,,,DISCHARGED -7395,2020-04-01,37087.95395226936,473,Elective,2020-04-05,Normal,7395,467,0,3,,,,DISCHARGED -7396,2023-02-10,5824.262451376051,480,Elective,2023-02-18,Abnormal,7396,149,4,25,,,,DISCHARGED -7397,2022-08-06,41554.904721816936,137,Emergency,2022-08-18,Inconclusive,7397,367,2,0,,,,DISCHARGED -7399,2021-03-16,17560.42889417878,475,Urgent,2021-03-31,Normal,7399,246,4,12,,,,DISCHARGED -7400,2022-12-07,44516.817607446654,209,Emergency,2022-12-08,Abnormal,7400,266,2,13,,,,DISCHARGED -7401,2021-11-13,1704.6336100252934,351,Emergency,2021-12-09,Inconclusive,7401,460,2,14,,,,DISCHARGED -7402,2020-12-18,47112.7380335924,248,Urgent,2020-12-20,Inconclusive,7402,250,4,16,,,,DISCHARGED -7403,2020-03-03,8371.273328608018,143,Urgent,2020-03-30,Normal,7403,489,2,11,,,,DISCHARGED -7403,2021-04-06,48301.590278803895,310,Urgent,2021-04-24,Abnormal,8841,2,1,6,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7404,2021-10-23,41803.3731700074,309,Elective,2021-11-19,Inconclusive,7404,392,2,22,,,,DISCHARGED -7405,2022-07-25,38942.65729693895,282,Elective,2022-08-11,Abnormal,7405,315,2,18,,,,DISCHARGED -7406,2019-07-02,10814.04280236292,163,Emergency,2019-07-22,Inconclusive,7406,75,4,22,,,,DISCHARGED -7407,2022-10-02,25069.46781391736,469,Emergency,2022-10-04,Normal,7407,86,0,2,,,,DISCHARGED -7408,2020-10-19,11012.49986288973,268,Emergency,2020-10-25,Normal,7408,269,3,17,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -7409,2022-12-01,24903.290377906564,414,Emergency,2022-12-05,Inconclusive,7409,224,2,25,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7410,2023-05-05,17224.410183747044,392,Elective,2023-05-23,Abnormal,7410,17,3,3,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -7411,2022-01-23,17133.008343237874,335,Elective,2022-02-16,Abnormal,7411,112,2,29,,,,DISCHARGED -7412,2019-11-07,33610.743194768555,251,Elective,2019-11-22,Inconclusive,7412,250,4,25,,,,DISCHARGED -7413,2020-06-23,23716.67081110378,140,Emergency,2020-07-17,Abnormal,7413,232,4,2,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -7414,2019-01-30,1590.4097463553687,460,Elective,2019-02-21,Normal,7414,328,2,11,,,,DISCHARGED -7415,2020-11-23,35326.6337948422,319,Urgent,2020-11-30,Normal,7415,278,4,22,,,,DISCHARGED -7416,2021-08-19,24711.070112272955,236,Urgent,2021-09-11,Abnormal,7416,201,4,27,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7417,2020-09-29,21571.727016175897,438,Emergency,2020-10-04,Inconclusive,7417,82,2,11,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7418,2022-06-21,48977.79264938505,165,Emergency,2022-07-12,Inconclusive,7418,124,0,16,,,,DISCHARGED -7419,2018-11-26,7661.288741484641,162,Urgent,2018-12-25,Inconclusive,7419,174,2,5,,,,DISCHARGED -7420,2021-03-30,13728.703049715024,475,Emergency,2021-04-27,Normal,7420,68,0,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7421,2021-12-12,38569.21220081457,321,Emergency,2021-12-28,Abnormal,7421,46,4,29,,,,DISCHARGED -7422,2021-04-15,37643.026077415954,271,Elective,2021-05-03,Inconclusive,7422,371,0,1,,,,DISCHARGED -7423,2022-08-03,40430.56959668833,208,Emergency,2022-08-25,Normal,7423,255,4,7,,,,DISCHARGED -7424,2019-04-20,11032.645604499015,347,Emergency,2019-05-15,Abnormal,7424,214,0,13,,,,DISCHARGED -7425,2021-07-13,11564.3115220851,144,Emergency,2021-08-05,Inconclusive,7425,29,0,4,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -7426,2020-01-23,30073.195135329923,150,Elective,2020-01-31,Abnormal,7426,280,2,2,,,,DISCHARGED -7428,2019-10-13,13539.668728509292,341,Emergency,2019-11-10,Inconclusive,7428,411,0,9,,,,DISCHARGED -7431,2021-09-09,43519.631793763176,136,Elective,2021-09-12,Inconclusive,7431,481,4,6,,,,DISCHARGED -7433,2019-07-16,3801.112621764575,370,Urgent,2019-08-01,Inconclusive,7433,236,2,29,,,,DISCHARGED -7434,2019-12-31,30055.591726123723,185,Urgent,2020-01-13,Normal,7434,247,0,10,,,,DISCHARGED -7435,2019-04-10,28586.20731398601,262,Emergency,2019-04-29,Abnormal,7435,367,2,14,,,,DISCHARGED -7436,2022-09-07,7221.674070155697,366,Elective,2022-09-13,Normal,7436,494,3,1,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -7437,2021-05-26,45141.18176872801,101,Elective,2021-06-11,Inconclusive,7437,24,2,4,,,,DISCHARGED -7438,2023-06-14,44677.05926055205,425,Emergency,,Inconclusive,7438,73,3,10,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,OPEN -7439,2021-11-25,40219.24804402496,412,Emergency,2021-12-03,Abnormal,7439,205,3,7,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7440,2020-05-15,26287.501879486583,472,Emergency,2020-05-17,Normal,7440,489,2,12,,,,DISCHARGED -7441,2022-03-06,5948.4688287366425,237,Emergency,2022-03-27,Normal,7441,493,4,10,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -7442,2020-01-21,6777.181085690823,418,Urgent,2020-01-24,Normal,7442,313,4,16,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7443,2019-07-23,49324.72797131844,337,Emergency,2019-07-30,Normal,7443,93,4,14,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -7444,2019-01-13,45192.28021610689,113,Urgent,2019-02-05,Abnormal,7444,374,1,0,,,,DISCHARGED -7445,2019-07-09,22615.639542517845,133,Emergency,2019-07-17,Abnormal,7445,126,3,18,,,,DISCHARGED -7446,2019-10-07,49570.40702682619,413,Emergency,2019-10-16,Inconclusive,7446,424,2,15,,,,DISCHARGED -7447,2019-08-16,49954.968325041846,455,Emergency,2019-09-03,Abnormal,7447,24,4,18,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -7448,2020-04-17,8385.546001166742,361,Urgent,2020-05-11,Normal,7448,333,4,12,,,,DISCHARGED -7449,2021-06-16,32650.07223619745,224,Urgent,2021-06-22,Abnormal,7449,354,2,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7450,2023-09-11,47133.1123765677,361,Urgent,2023-09-18,Normal,7450,115,3,21,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7453,2023-03-03,48131.91947237794,361,Urgent,2023-03-22,Abnormal,7453,47,2,22,,,,DISCHARGED -7454,2022-11-08,32964.75562550961,172,Elective,2022-11-24,Inconclusive,7454,225,1,3,,,,DISCHARGED -7457,2020-11-09,7759.353096552857,312,Urgent,2020-11-27,Inconclusive,7457,265,1,10,,,,DISCHARGED -7458,2020-10-31,5979.757451023036,476,Emergency,2020-11-18,Abnormal,7458,98,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -7459,2020-02-10,25406.23372868209,178,Elective,2020-02-24,Abnormal,7459,458,3,17,,,,DISCHARGED -7460,2020-07-16,34681.09203646238,360,Urgent,2020-07-17,Abnormal,7460,10,4,9,,,,DISCHARGED -7461,2022-12-12,13730.432920688105,180,Urgent,2022-12-16,Normal,7461,84,1,16,,,,DISCHARGED -7462,2023-09-20,29315.82149081989,138,Emergency,2023-10-09,Normal,7462,404,1,29,,,,DISCHARGED -7464,2020-04-26,41866.63911363858,372,Urgent,2020-05-02,Normal,7464,213,3,12,,,,DISCHARGED -7465,2019-07-05,30068.203154665476,310,Urgent,2019-07-30,Inconclusive,7465,172,1,29,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -7466,2022-07-24,38926.43656797616,465,Emergency,2022-08-17,Inconclusive,7466,390,1,24,,,,DISCHARGED -7467,2019-04-30,35229.40427768582,205,Elective,2019-05-16,Inconclusive,7467,208,3,13,,,,DISCHARGED -7468,2020-12-28,21729.94285500025,177,Emergency,2021-01-23,Normal,7468,447,2,29,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7469,2019-06-05,17035.548681484644,221,Elective,2019-07-03,Abnormal,7469,381,4,6,,,,DISCHARGED -7471,2019-11-06,33492.87654641562,437,Elective,2019-11-20,Normal,7471,63,4,9,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7472,2019-08-23,30585.1306811603,251,Emergency,2019-08-28,Abnormal,7472,257,1,2,,,,DISCHARGED -7473,2022-11-18,24235.38675274028,444,Emergency,2022-12-14,Normal,7473,331,4,1,,,,DISCHARGED -7475,2019-04-25,14622.252518513578,229,Emergency,2019-05-05,Abnormal,7475,120,2,29,,,,DISCHARGED -7477,2020-03-31,2237.213829753809,487,Elective,2020-04-07,Inconclusive,7477,297,1,18,,,,DISCHARGED -7478,2022-09-11,20044.03797917539,102,Emergency,2022-09-14,Abnormal,7478,465,4,6,,,,DISCHARGED -7479,2022-12-04,18257.35989313068,459,Elective,2023-01-01,Normal,7479,53,0,4,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -7480,2021-06-04,39254.47268067215,362,Elective,2021-06-17,Normal,7480,330,0,27,,,,DISCHARGED -7481,2020-02-28,43923.18154458272,470,Elective,2020-03-11,Abnormal,7481,271,0,2,,,,DISCHARGED -7482,2019-11-02,9953.065946239403,105,Emergency,2019-11-16,Inconclusive,7482,240,0,24,,,,DISCHARGED -7484,2022-03-17,49671.246513651975,409,Urgent,2022-04-09,Abnormal,7484,242,0,1,,,,DISCHARGED -7485,2019-07-30,2800.3666717192627,369,Urgent,2019-08-25,Abnormal,7485,17,1,22,,,,DISCHARGED -7486,2023-07-07,6945.9227709571005,475,Emergency,2023-08-06,Inconclusive,7486,482,3,25,,,,DISCHARGED -7486,2019-11-12,34528.275381539795,432,Urgent,2019-11-13,Inconclusive,8399,186,3,21,,,,DISCHARGED -7487,2019-03-22,25734.900690737184,378,Elective,2019-04-02,Abnormal,7487,345,1,5,,,,DISCHARGED -7489,2021-12-01,34154.26972180311,233,Urgent,2021-12-14,Normal,7489,143,1,13,,,,DISCHARGED -7490,2020-02-27,27722.4360895578,206,Elective,2020-03-19,Normal,7490,261,2,6,,,,DISCHARGED -7491,2019-05-16,28878.905360924786,431,Elective,2019-06-13,Abnormal,7491,440,3,21,,,,DISCHARGED -7492,2020-04-16,19916.144351224702,342,Elective,2020-05-15,Abnormal,7492,363,0,1,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -7493,2019-09-17,48301.6132076731,246,Elective,2019-10-11,Normal,7493,490,1,10,,,,DISCHARGED -7494,2018-11-01,9938.327634874786,186,Emergency,2018-11-24,Inconclusive,7494,430,0,20,,,,DISCHARGED -7495,2023-05-15,40617.37265241343,318,Elective,,Normal,7495,238,3,2,,,,OPEN -7496,2020-12-31,21557.962752780608,292,Emergency,2021-01-02,Abnormal,7496,303,4,8,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7497,2020-07-31,35175.01955642231,297,Urgent,2020-08-18,Abnormal,7497,297,4,7,,,,DISCHARGED -7498,2022-06-29,17396.41494720043,210,Elective,2022-07-11,Normal,7498,75,1,25,,,,DISCHARGED -7499,2021-02-15,40350.04379074857,280,Emergency,2021-03-17,Normal,7499,187,2,10,,,,DISCHARGED -7500,2023-02-01,3926.076159638417,390,Emergency,2023-02-26,Inconclusive,7500,332,0,17,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7501,2021-09-02,24120.31194826931,163,Elective,2021-09-21,Inconclusive,7501,387,1,0,,,,DISCHARGED -7502,2022-11-09,4458.713982585574,222,Emergency,2022-11-19,Inconclusive,7502,486,2,14,,,,DISCHARGED -7503,2021-07-06,43241.42067557055,263,Emergency,2021-07-21,Abnormal,7503,245,0,3,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7504,2020-11-17,35530.414759572,317,Urgent,2020-12-12,Abnormal,7504,129,3,3,,,,DISCHARGED -7505,2023-10-13,42689.21709586649,196,Elective,2023-10-16,Normal,7505,473,4,27,,,,DISCHARGED -7506,2021-12-01,33252.597967831,138,Urgent,2021-12-26,Normal,7506,314,2,9,,,,DISCHARGED -7507,2019-12-07,8946.537283860012,281,Elective,2019-12-19,Normal,7507,410,0,10,,,,DISCHARGED -7508,2020-10-21,29349.412425786253,382,Urgent,2020-11-06,Normal,7508,282,1,17,,,,DISCHARGED -7509,2022-04-06,14935.139181821229,269,Emergency,2022-04-30,Inconclusive,7509,78,0,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -7510,2022-07-23,39533.17700364416,176,Elective,2022-08-07,Inconclusive,7510,71,1,28,,,,DISCHARGED -7511,2023-01-18,33783.29086904596,430,Urgent,2023-01-23,Inconclusive,7511,262,4,14,,,,DISCHARGED -7513,2018-12-16,22585.332696216825,311,Urgent,2019-01-07,Normal,7513,190,4,2,,,,DISCHARGED -7514,2020-10-21,29727.458154591168,116,Emergency,2020-11-10,Normal,7514,366,0,6,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7515,2020-11-27,11846.9018454956,307,Urgent,2020-12-14,Inconclusive,7515,374,0,6,,,,DISCHARGED -7516,2018-12-05,24070.575063104447,262,Emergency,2018-12-10,Abnormal,7516,429,1,16,,,,DISCHARGED -7517,2021-03-01,17281.275060380758,229,Elective,2021-03-08,Inconclusive,7517,62,1,21,,,,DISCHARGED -7517,2023-03-30,7246.224321922904,469,Emergency,2023-04-01,Abnormal,7827,487,2,19,,,,DISCHARGED -7518,2021-09-09,15241.01319560443,330,Elective,2021-09-26,Inconclusive,7518,379,2,26,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7519,2019-01-21,19078.174491168207,234,Emergency,2019-02-18,Inconclusive,7519,11,2,23,,,,DISCHARGED -7520,2021-03-10,33010.20773855482,277,Urgent,2021-04-05,Abnormal,7520,140,0,15,,,,DISCHARGED -7522,2019-05-13,4759.932137398591,178,Elective,2019-06-07,Normal,7522,253,2,15,,,,DISCHARGED -7523,2021-07-13,23900.173952384263,156,Emergency,2021-07-16,Inconclusive,7523,42,0,7,,,,DISCHARGED -7524,2020-01-05,23955.03324012349,358,Urgent,2020-01-18,Normal,7524,16,4,2,,,,DISCHARGED -7525,2022-04-02,13749.589500401757,180,Emergency,2022-04-22,Inconclusive,7525,62,3,19,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7526,2019-10-17,25067.95406129665,214,Urgent,2019-10-25,Abnormal,7526,252,4,14,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -7527,2018-12-04,24812.64083526269,428,Elective,2018-12-31,Normal,7527,464,0,0,,,,DISCHARGED -7528,2022-01-01,47342.145612677385,286,Elective,2022-01-31,Abnormal,7528,375,0,9,,,,DISCHARGED -7529,2023-05-04,31419.59359869032,286,Elective,,Inconclusive,7529,291,3,1,,,,OPEN -7530,2020-11-27,8373.869924308441,137,Elective,2020-12-19,Normal,7530,468,1,6,,,,DISCHARGED -7531,2022-10-13,23322.28154651912,259,Emergency,2022-11-01,Normal,7531,7,1,13,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7532,2020-08-28,11150.694338427196,159,Emergency,2020-08-30,Inconclusive,7532,324,1,15,,,,DISCHARGED -7533,2022-03-17,45799.49536639733,282,Urgent,2022-03-18,Normal,7533,89,2,26,,,,DISCHARGED -7534,2023-04-21,32429.35597646565,413,Emergency,2023-04-24,Inconclusive,7534,207,1,27,,,,DISCHARGED -7535,2020-09-23,10353.015811602032,258,Urgent,2020-09-26,Inconclusive,7535,291,2,14,,,,DISCHARGED -7536,2018-12-02,31096.17167917293,337,Emergency,2018-12-13,Abnormal,7536,283,2,6,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7537,2021-02-19,24776.963691451743,359,Elective,2021-03-17,Inconclusive,7537,117,1,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -7539,2019-10-07,9249.604453365868,145,Urgent,2019-10-17,Normal,7539,348,1,24,,,,DISCHARGED -7540,2020-11-17,17003.279796990715,167,Elective,2020-12-14,Inconclusive,7540,174,3,9,,,,DISCHARGED -7541,2022-10-20,25600.23079981989,366,Urgent,2022-10-27,Abnormal,7541,75,3,8,,,,DISCHARGED -7542,2023-04-21,30967.39653599477,125,Emergency,,Abnormal,7542,100,2,8,,,,OPEN -7543,2020-05-24,12309.00015229968,221,Urgent,2020-06-07,Normal,7543,413,3,5,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7545,2020-03-18,27264.57685737836,306,Urgent,2020-04-08,Inconclusive,7545,150,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7547,2022-07-01,49354.88765759358,405,Emergency,2022-07-12,Abnormal,7547,399,0,24,,,,DISCHARGED -7548,2022-03-11,38712.46098213759,422,Elective,2022-03-14,Abnormal,7548,269,2,11,,,,DISCHARGED -7549,2023-10-23,26666.06848656508,227,Urgent,,Abnormal,7549,457,2,29,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,OPEN -7550,2022-04-03,25397.300218633816,362,Emergency,2022-04-22,Inconclusive,7550,70,3,22,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7551,2023-01-20,10304.704586592808,105,Emergency,2023-02-01,Abnormal,7551,492,0,19,,,,DISCHARGED -7552,2023-06-18,36474.05836049384,379,Elective,2023-06-26,Normal,7552,179,4,29,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -7553,2020-03-14,15343.189128399616,359,Elective,2020-03-19,Normal,7553,123,4,19,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7554,2020-09-30,41316.53930923124,486,Urgent,2020-10-15,Normal,7554,380,4,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -7555,2022-12-13,39280.97229570934,332,Emergency,2022-12-31,Abnormal,7555,292,0,13,,,,DISCHARGED -7556,2022-10-21,26454.54152496901,471,Elective,2022-11-10,Inconclusive,7556,284,1,26,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -7557,2020-09-08,35268.98010936694,281,Urgent,2020-09-14,Inconclusive,7557,194,0,19,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -7558,2023-05-07,21566.39008498816,176,Emergency,,Normal,7558,398,3,26,,,,OPEN -7559,2023-08-21,42482.76834704472,396,Urgent,2023-09-04,Inconclusive,7559,227,2,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7560,2022-03-31,27436.781941440066,296,Elective,2022-04-05,Normal,7560,430,2,7,,,,DISCHARGED -7561,2020-05-25,20254.563439425183,326,Elective,2020-06-03,Inconclusive,7561,429,3,7,,,,DISCHARGED -7562,2020-05-13,44648.80888479472,161,Urgent,2020-06-04,Normal,7562,435,3,29,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -7563,2023-04-10,8077.510380160883,235,Elective,2023-04-26,Abnormal,7563,274,2,7,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7565,2022-03-20,35202.74867748666,256,Urgent,2022-03-27,Inconclusive,7565,460,1,1,,,,DISCHARGED -7566,2023-07-03,17772.670112284315,459,Emergency,2023-07-31,Abnormal,7566,105,1,13,,,,DISCHARGED -7567,2020-07-12,1276.0740036201405,223,Urgent,2020-08-01,Normal,7567,20,1,9,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7568,2019-07-09,20042.115211190205,498,Urgent,2019-08-07,Inconclusive,7568,63,3,17,,,,DISCHARGED -7571,2022-05-14,30805.32113071227,291,Elective,2022-05-27,Abnormal,7571,164,2,17,,,,DISCHARGED -7572,2019-01-21,48613.18087703866,455,Emergency,2019-02-01,Abnormal,7572,26,2,17,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7573,2021-12-30,26982.81019659724,161,Emergency,2022-01-09,Abnormal,7573,310,2,15,,,,DISCHARGED -7574,2022-10-24,19037.289144380786,379,Elective,2022-11-22,Normal,7574,499,0,19,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -7575,2021-03-15,40735.34224928746,487,Emergency,2021-03-23,Normal,7575,284,0,4,,,,DISCHARGED -7577,2021-07-26,11453.54796503632,446,Urgent,2021-08-20,Abnormal,7577,147,4,19,,,,DISCHARGED -7578,2022-11-16,40287.76080098123,459,Elective,2022-11-17,Inconclusive,7578,280,0,4,,,,DISCHARGED -7579,2021-05-20,37077.45492268149,320,Emergency,2021-06-15,Inconclusive,7579,325,1,19,,,,DISCHARGED -7580,2023-05-16,28612.59176559864,397,Elective,,Abnormal,7580,318,1,22,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -7581,2019-06-24,9245.928921296689,154,Elective,2019-07-19,Abnormal,7581,163,1,9,,,,DISCHARGED -7582,2022-09-01,45034.31550129354,445,Elective,2022-09-28,Normal,7582,385,1,16,,,,DISCHARGED -7583,2021-11-27,2311.084445295098,341,Urgent,2021-12-21,Normal,7583,405,4,29,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7583,2022-06-22,15673.557008471418,440,Elective,2022-07-10,Abnormal,9789,223,1,12,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7584,2022-05-27,47961.16734645986,344,Elective,2022-06-16,Inconclusive,7584,271,3,16,,,,DISCHARGED -7585,2023-01-05,39405.59983581299,373,Emergency,2023-01-17,Normal,7585,145,3,17,,,,DISCHARGED -7586,2022-08-21,29803.70806986676,400,Elective,2022-08-31,Abnormal,7586,452,3,12,,,,DISCHARGED -7587,2020-12-12,2840.059836079563,480,Elective,2020-12-14,Normal,7587,437,0,16,,,,DISCHARGED -7588,2020-07-31,25687.303402688325,389,Elective,2020-08-07,Abnormal,7588,355,2,27,,,,DISCHARGED -7589,2020-06-10,44022.69970621039,478,Urgent,2020-06-30,Abnormal,7589,29,4,14,,,,DISCHARGED -7590,2020-01-25,48595.98903354435,316,Emergency,2020-02-15,Abnormal,7590,44,3,25,,,,DISCHARGED -7590,2023-01-09,41660.02058108216,419,Emergency,,Inconclusive,8922,274,3,11,,,,OPEN -7591,2020-09-22,25298.39649780224,226,Elective,2020-10-04,Inconclusive,7591,470,1,27,,,,DISCHARGED -7592,2023-10-29,31326.76492035724,428,Urgent,2023-11-19,Normal,7592,33,3,9,,,,DISCHARGED -7593,2019-01-14,29273.413310825053,124,Urgent,2019-01-29,Inconclusive,7593,140,1,12,,,,DISCHARGED -7594,2023-07-14,40373.17216182071,486,Urgent,,Normal,7594,426,1,29,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,OPEN -7595,2019-03-17,32571.69215518851,151,Urgent,2019-03-28,Abnormal,7595,317,2,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7596,2020-01-16,15958.00361033491,228,Urgent,2020-02-06,Inconclusive,7596,373,0,2,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7597,2022-01-07,36780.56685612672,229,Emergency,2022-01-30,Abnormal,7597,220,1,21,,,,DISCHARGED -7599,2019-01-03,17547.573809900583,390,Elective,2019-01-10,Normal,7599,355,1,9,,,,DISCHARGED -7600,2021-07-26,47575.66853569025,269,Urgent,2021-08-12,Inconclusive,7600,21,2,10,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7601,2019-11-07,47043.76405765129,200,Elective,2019-12-05,Normal,7601,179,1,5,,,,DISCHARGED -7602,2021-07-14,2029.826589406668,423,Emergency,2021-07-31,Abnormal,7602,435,4,0,,,,DISCHARGED -7603,2019-01-22,40106.24816316746,173,Emergency,2019-02-13,Abnormal,7603,366,0,5,,,,DISCHARGED -7604,2023-06-17,18144.696741633557,317,Elective,,Inconclusive,7604,419,4,4,,,,OPEN -7605,2023-07-29,43330.42405321675,467,Elective,2023-08-13,Abnormal,7605,328,3,6,,,,DISCHARGED -7605,2020-07-01,23715.361937958616,362,Emergency,2020-07-26,Abnormal,9328,230,0,21,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7606,2019-04-17,35396.45494422474,303,Emergency,2019-04-22,Normal,7606,498,3,11,,,,DISCHARGED -7607,2021-09-24,10006.78652315574,412,Urgent,2021-10-21,Inconclusive,7607,402,1,11,,,,DISCHARGED -7608,2020-02-05,12395.468079593553,280,Emergency,2020-02-18,Abnormal,7608,37,2,6,,,,DISCHARGED -7610,2023-08-21,5590.3993575547765,181,Elective,,Normal,7610,69,4,1,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,OPEN -7611,2021-06-11,15900.065316128868,359,Emergency,2021-06-21,Abnormal,7611,115,3,27,,,,DISCHARGED -7612,2020-07-01,18268.8935760037,342,Elective,2020-07-10,Abnormal,7612,238,1,0,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7614,2020-07-28,8772.45086080625,432,Elective,2020-08-12,Normal,7614,334,4,29,,,,DISCHARGED -7615,2020-05-08,3156.8184330689965,324,Urgent,2020-05-11,Normal,7615,440,4,22,,,,DISCHARGED -7616,2022-04-27,4499.8866998457215,197,Elective,2022-05-06,Abnormal,7616,147,3,24,,,,DISCHARGED -7617,2021-01-02,21748.6189773504,436,Elective,2021-01-30,Normal,7617,8,1,17,,,,DISCHARGED -7618,2021-01-22,12553.923219262631,411,Elective,2021-01-28,Abnormal,7618,287,2,11,,,,DISCHARGED -7619,2019-05-25,21509.15069415214,254,Emergency,2019-06-02,Abnormal,7619,387,3,6,,,,DISCHARGED -7620,2021-10-12,31995.64562501236,147,Elective,2021-10-18,Abnormal,7620,49,4,18,,,,DISCHARGED -7621,2020-08-31,45123.65092597917,261,Elective,2020-09-27,Normal,7621,337,4,21,,,,DISCHARGED -7622,2020-08-03,5779.592656388444,180,Elective,2020-08-30,Inconclusive,7622,4,0,2,,,,DISCHARGED -7623,2018-11-18,47714.51195701646,389,Urgent,2018-12-02,Inconclusive,7623,403,1,28,,,,DISCHARGED -7624,2020-10-08,5982.688136972958,266,Emergency,2020-11-02,Inconclusive,7624,342,0,9,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -7626,2022-03-23,13793.092940101482,152,Elective,2022-04-13,Inconclusive,7626,125,2,28,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7628,2018-12-27,19752.10009010144,425,Elective,2019-01-16,Inconclusive,7628,74,3,26,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7629,2020-11-22,14842.790025218645,459,Emergency,2020-11-27,Normal,7629,164,4,26,,,,DISCHARGED -7630,2020-10-19,19346.38549114672,243,Emergency,2020-11-03,Abnormal,7630,277,1,10,,,,DISCHARGED -7631,2018-10-31,18142.84307737513,255,Elective,2018-11-13,Abnormal,7631,441,4,4,,,,DISCHARGED -7632,2019-04-14,2677.185352127938,467,Emergency,2019-05-04,Normal,7632,323,0,1,,,,DISCHARGED -7633,2022-08-10,31204.62311944347,374,Emergency,2022-08-17,Abnormal,7633,476,0,7,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7634,2021-10-02,30856.406894235894,355,Elective,2021-10-22,Inconclusive,7634,299,3,13,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7635,2021-07-14,35174.45573061164,354,Emergency,2021-07-31,Abnormal,7635,289,1,7,,,,DISCHARGED -7636,2020-03-21,11424.81216709894,251,Elective,2020-04-19,Normal,7636,76,1,22,,,,DISCHARGED -7637,2019-03-18,21781.87716637204,137,Urgent,2019-04-12,Inconclusive,7637,297,3,5,,,,DISCHARGED -7639,2021-08-01,29292.163626148085,225,Emergency,2021-08-05,Abnormal,7639,136,0,0,,,,DISCHARGED -7640,2020-01-10,36182.90739086442,188,Elective,2020-01-14,Normal,7640,105,0,23,,,,DISCHARGED -7641,2020-02-19,46643.84023934264,204,Urgent,2020-03-05,Normal,7641,94,0,0,,,,DISCHARGED -7643,2022-03-17,12313.508623174104,171,Urgent,2022-04-09,Inconclusive,7643,134,4,7,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -7644,2023-01-06,38216.06919943145,134,Elective,,Normal,7644,67,2,10,,,,OPEN -7645,2022-05-28,17577.232673794424,328,Urgent,2022-06-14,Normal,7645,146,0,17,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -7646,2023-08-17,45446.40306876984,242,Elective,,Inconclusive,7646,489,2,23,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -7647,2020-08-28,32427.11276252716,156,Urgent,2020-09-27,Normal,7647,477,2,9,,,,DISCHARGED -7648,2021-03-31,22482.39614793812,499,Elective,2021-04-18,Inconclusive,7648,158,1,11,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7649,2018-11-18,43402.96492054654,123,Elective,2018-12-01,Normal,7649,383,3,19,,,,DISCHARGED -7650,2021-11-23,13420.958480220388,482,Elective,2021-11-26,Inconclusive,7650,162,4,22,,,,DISCHARGED -7651,2022-04-13,31311.424660852867,230,Urgent,2022-05-01,Inconclusive,7651,440,2,15,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7652,2020-02-19,3158.890263988276,481,Emergency,2020-02-27,Inconclusive,7652,340,4,4,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -7653,2023-09-21,23191.689107501123,194,Elective,2023-10-08,Abnormal,7653,188,1,15,,,,DISCHARGED -7654,2019-04-13,22181.91768147275,370,Elective,2019-05-05,Abnormal,7654,414,0,23,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7655,2021-05-02,29628.535062676077,105,Elective,2021-05-25,Normal,7655,338,2,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -7656,2019-04-27,28297.49309566936,172,Urgent,2019-05-22,Inconclusive,7656,94,3,5,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7657,2023-02-18,49853.500988004256,481,Elective,,Normal,7657,180,1,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -7659,2023-03-21,43318.943901710736,470,Urgent,,Abnormal,7659,287,4,4,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -7660,2020-11-15,4148.220930134432,199,Elective,2020-11-19,Normal,7660,321,0,0,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7661,2021-02-08,28288.43592212357,361,Elective,2021-02-22,Abnormal,7661,186,4,18,,,,DISCHARGED -7662,2022-10-30,17687.931585270235,408,Urgent,2022-11-28,Inconclusive,7662,371,3,9,,,,DISCHARGED -7663,2022-10-07,34805.203241882395,184,Elective,2022-10-14,Normal,7663,137,2,24,,,,DISCHARGED -7664,2021-10-19,10183.782288769242,272,Emergency,2021-10-29,Inconclusive,7664,129,3,13,,,,DISCHARGED -7665,2021-05-09,11981.494931619198,176,Urgent,2021-06-02,Abnormal,7665,193,4,24,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7666,2023-06-10,6935.345564503594,337,Emergency,2023-06-16,Abnormal,7666,315,4,20,,,,DISCHARGED -7667,2022-02-01,37877.60797099058,280,Elective,2022-02-21,Abnormal,7667,471,3,2,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7668,2019-10-01,48362.3539628386,117,Emergency,2019-10-04,Abnormal,7668,272,3,5,,,,DISCHARGED -7669,2020-09-02,35698.37153851072,221,Emergency,2020-09-13,Abnormal,7669,351,3,4,,,,DISCHARGED -7671,2021-08-25,12745.443238021262,308,Urgent,2021-09-19,Abnormal,7671,143,0,16,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7672,2021-09-22,1862.8311249810265,414,Urgent,2021-10-05,Inconclusive,7672,15,4,17,,,,DISCHARGED -7673,2023-01-02,40888.37822861642,179,Elective,,Normal,7673,301,1,11,,,,OPEN -7674,2020-10-01,14978.26711171732,174,Emergency,2020-10-15,Normal,7674,422,0,4,,,,DISCHARGED -7675,2020-07-09,7192.006776039567,412,Urgent,2020-07-21,Inconclusive,7675,244,0,29,,,,DISCHARGED -7676,2020-01-11,45775.03619804968,127,Elective,2020-02-02,Abnormal,7676,414,0,8,,,,DISCHARGED -7677,2020-12-22,34233.9483511713,131,Elective,2021-01-01,Inconclusive,7677,106,1,11,,,,DISCHARGED -7678,2020-02-08,9006.068513154656,112,Urgent,2020-02-19,Inconclusive,7678,87,3,19,,,,DISCHARGED -7679,2020-08-25,22873.510387314516,129,Urgent,2020-09-24,Normal,7679,128,4,8,,,,DISCHARGED -7680,2023-09-30,44376.65774673086,374,Elective,,Abnormal,7680,394,2,2,,,,OPEN -7681,2022-11-21,13875.388597989107,429,Urgent,2022-11-23,Abnormal,7681,374,2,0,,,,DISCHARGED -7682,2019-05-14,18781.242067348667,278,Elective,2019-05-15,Normal,7682,340,4,21,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7683,2020-04-08,25782.120305549048,330,Elective,2020-04-17,Normal,7683,3,1,14,,,,DISCHARGED -7684,2023-08-27,15593.845440778265,268,Urgent,,Normal,7684,326,2,9,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,OPEN -7685,2019-12-26,27050.273411943308,104,Urgent,2020-01-22,Inconclusive,7685,409,0,13,,,,DISCHARGED -7685,2019-03-08,31419.259785053164,339,Emergency,2019-03-19,Normal,9379,366,2,6,,,,DISCHARGED -7686,2023-02-06,4454.4955768808895,493,Elective,2023-02-14,Normal,7686,305,4,3,,,,DISCHARGED -7687,2022-01-11,45038.43045134747,298,Elective,2022-01-18,Inconclusive,7687,395,0,25,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7688,2020-09-10,39694.167419873535,133,Elective,2020-09-29,Inconclusive,7688,94,2,4,,,,DISCHARGED -7689,2020-01-26,35637.27706068588,306,Elective,2020-02-11,Inconclusive,7689,208,4,19,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7689,2021-08-07,22519.030419525014,302,Emergency,2021-08-25,Abnormal,7757,224,1,15,,,,DISCHARGED -7689,2021-06-12,37290.977520786975,250,Emergency,2021-06-30,Inconclusive,9214,458,4,2,,,,DISCHARGED -7690,2019-11-26,4529.550047294355,204,Elective,2019-12-09,Inconclusive,7690,347,1,16,,,,DISCHARGED -7691,2021-12-06,28524.851709465114,208,Urgent,2022-01-04,Normal,7691,479,0,12,,,,DISCHARGED -7692,2021-09-09,37546.11006387198,330,Emergency,2021-09-30,Abnormal,7692,320,4,5,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -7693,2019-01-15,33574.607661775735,295,Elective,2019-01-27,Normal,7693,46,3,25,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7694,2020-05-16,16789.952494847894,336,Emergency,2020-06-04,Inconclusive,7694,475,3,4,,,,DISCHARGED -7695,2023-04-25,22428.317361134337,179,Emergency,,Abnormal,7695,180,3,15,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -7696,2020-08-23,27342.039211629948,407,Elective,2020-09-19,Abnormal,7696,105,3,10,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7697,2019-11-15,35750.66688616853,455,Elective,2019-11-27,Normal,7697,198,3,16,,,,DISCHARGED -7698,2021-08-05,46208.3365541836,363,Urgent,2021-08-08,Inconclusive,7698,385,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7699,2021-04-20,46762.16940929933,407,Elective,2021-04-25,Abnormal,7699,105,4,5,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7700,2022-01-06,45302.95974356179,274,Elective,2022-01-15,Normal,7700,279,0,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -7701,2019-01-06,22412.16837033752,252,Emergency,2019-02-05,Inconclusive,7701,259,3,20,,,,DISCHARGED -7702,2023-03-08,39989.319058238354,314,Elective,2023-04-07,Normal,7702,107,3,0,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7703,2019-02-06,44495.658182367406,272,Urgent,2019-02-27,Abnormal,7703,18,0,29,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7704,2022-03-20,2049.218709825745,203,Elective,2022-03-27,Inconclusive,7704,409,0,20,,,,DISCHARGED -7705,2020-12-07,43091.60946423059,218,Urgent,2020-12-26,Normal,7705,458,3,9,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7706,2019-06-06,6713.31103783384,105,Elective,2019-06-22,Normal,7706,295,1,16,,,,DISCHARGED -7707,2023-09-03,5368.3604993887375,123,Emergency,2023-09-26,Normal,7707,305,0,26,,,,DISCHARGED -7707,2022-07-11,47531.80857876352,247,Urgent,2022-08-04,Inconclusive,7780,170,4,2,,,,DISCHARGED -7708,2023-06-27,30732.68742238442,409,Urgent,2023-07-20,Inconclusive,7708,330,4,27,,,,DISCHARGED -7709,2018-12-07,6958.629020585729,437,Elective,2018-12-16,Abnormal,7709,492,1,28,,,,DISCHARGED -7710,2018-11-29,18551.501874,293,Elective,2018-12-05,Normal,7710,194,2,1,,,,DISCHARGED -7711,2020-05-28,46278.79613850746,416,Elective,2020-06-25,Abnormal,7711,11,1,28,,,,DISCHARGED -7712,2020-02-17,15163.33802539704,488,Emergency,2020-03-03,Abnormal,7712,194,3,16,,,,DISCHARGED -7713,2020-10-29,37849.93139457389,455,Emergency,2020-11-19,Inconclusive,7713,489,2,3,,,,DISCHARGED -7714,2021-11-03,49746.207799581374,188,Elective,2021-11-09,Inconclusive,7714,282,3,1,,,,DISCHARGED -7716,2021-11-22,7440.760707896285,317,Emergency,2021-12-02,Abnormal,7716,368,4,4,,,,DISCHARGED -7717,2020-05-06,38389.39250726174,264,Urgent,2020-06-02,Inconclusive,7717,181,0,9,,,,DISCHARGED -7718,2020-05-25,8376.578094819706,228,Elective,2020-06-02,Abnormal,7718,449,3,0,,,,DISCHARGED -7719,2021-05-26,10199.247755534712,196,Elective,2021-06-11,Normal,7719,304,4,27,,,,DISCHARGED -7720,2022-04-29,4033.098229763275,235,Elective,2022-05-03,Inconclusive,7720,143,1,25,,,,DISCHARGED -7721,2021-10-06,18774.383817861653,207,Elective,2021-10-24,Inconclusive,7721,385,3,0,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7722,2021-05-05,3509.5569278122102,235,Urgent,2021-05-23,Normal,7722,315,4,26,,,,DISCHARGED -7723,2019-12-28,39276.88198910996,395,Elective,2019-12-29,Inconclusive,7723,181,0,25,,,,DISCHARGED -7724,2020-04-04,43134.09555725192,492,Emergency,2020-04-13,Abnormal,7724,29,3,3,,,,DISCHARGED -7725,2021-11-08,23209.654228541734,444,Urgent,2021-11-29,Abnormal,7725,83,4,6,,,,DISCHARGED -7726,2021-11-29,6120.775741440538,122,Urgent,2021-12-23,Inconclusive,7726,165,3,13,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7727,2020-05-05,4414.295160830624,351,Urgent,2020-05-08,Abnormal,7727,283,0,13,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -7728,2018-12-14,48048.84834294605,149,Urgent,2019-01-07,Abnormal,7728,280,3,17,,,,DISCHARGED -7729,2022-01-06,26125.131725791376,498,Urgent,2022-01-20,Inconclusive,7729,95,3,1,,,,DISCHARGED -7730,2022-09-07,41633.44106869959,364,Emergency,2022-09-15,Inconclusive,7730,380,4,0,,,,DISCHARGED -7731,2021-11-30,32083.661556473835,445,Urgent,2021-12-19,Abnormal,7731,265,2,20,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7732,2023-08-03,6743.503122315439,399,Urgent,2023-08-16,Inconclusive,7732,443,3,21,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7733,2020-10-30,48013.30131520327,153,Urgent,2020-11-04,Normal,7733,297,2,15,,,,DISCHARGED -7734,2023-04-20,40008.78406934922,282,Urgent,2023-05-12,Inconclusive,7734,295,1,28,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7735,2021-01-16,34303.92416623917,330,Elective,2021-01-28,Inconclusive,7735,224,3,21,,,,DISCHARGED -7735,2023-01-28,25298.17609805868,353,Urgent,2023-02-03,Normal,9212,332,2,17,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -7736,2021-03-17,36799.57315370416,273,Elective,2021-04-05,Inconclusive,7736,360,1,15,,,,DISCHARGED -7737,2022-02-21,2806.840574850862,241,Urgent,2022-02-25,Abnormal,7737,373,4,27,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7738,2022-06-27,2370.414645186479,390,Elective,2022-07-24,Inconclusive,7738,41,3,27,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7739,2019-12-04,18941.661255241022,109,Elective,2019-12-15,Normal,7739,302,4,22,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -7741,2023-01-13,1572.8415334497367,378,Urgent,2023-02-08,Inconclusive,7741,420,1,21,,,,DISCHARGED -7742,2019-10-21,25262.709104199024,282,Emergency,2019-11-12,Inconclusive,7742,245,4,23,,,,DISCHARGED -7743,2019-06-07,15814.965379643949,147,Elective,2019-07-06,Inconclusive,7743,207,4,5,,,,DISCHARGED -7744,2020-04-14,31251.02139876768,190,Emergency,2020-04-17,Normal,7744,236,0,24,,,,DISCHARGED -7746,2022-03-21,9835.44968867658,234,Elective,2022-04-05,Inconclusive,7746,21,1,9,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -7748,2020-02-17,8291.457868706462,308,Elective,2020-03-02,Normal,7748,184,4,1,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -7749,2020-01-11,32133.792653107103,495,Emergency,2020-01-27,Abnormal,7749,467,2,6,,,,DISCHARGED -7750,2023-05-14,4474.830761342988,265,Urgent,,Normal,7750,241,1,20,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",OPEN -7751,2018-11-06,47415.90555368184,273,Emergency,2018-11-09,Inconclusive,7751,362,0,16,,,,DISCHARGED -7752,2021-06-15,24805.5707409932,290,Urgent,2021-06-27,Normal,7752,282,3,2,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7754,2019-11-21,48063.80210654905,299,Urgent,2019-12-09,Abnormal,7754,40,4,19,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7755,2023-09-20,31377.65713478639,284,Urgent,,Normal,7755,335,2,11,,,,OPEN -7756,2022-10-01,4474.671264229802,435,Elective,2022-10-29,Normal,7756,161,0,1,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7758,2020-05-05,41695.49895379978,211,Urgent,2020-05-25,Normal,7758,159,1,6,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7759,2021-06-03,1945.5584042267517,478,Emergency,2021-06-23,Inconclusive,7759,473,4,16,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -7760,2023-02-12,36797.65183415827,265,Elective,2023-03-03,Inconclusive,7760,88,0,18,,,,DISCHARGED -7762,2020-11-18,21860.784994617545,171,Urgent,2020-12-03,Normal,7762,321,0,11,,,,DISCHARGED -7763,2021-01-12,11055.393569204623,409,Emergency,2021-01-30,Normal,7763,11,2,8,,,,DISCHARGED -7764,2020-09-03,38922.33376671378,178,Elective,2020-09-07,Abnormal,7764,423,3,26,,,,DISCHARGED -7765,2020-04-19,41141.59632068442,242,Elective,2020-05-09,Abnormal,7765,72,3,13,,,,DISCHARGED -7766,2022-11-06,9840.099003880285,433,Urgent,2022-11-29,Normal,7766,75,3,1,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7767,2023-05-15,31868.45078500088,118,Elective,2023-05-27,Inconclusive,7767,345,1,20,,,,DISCHARGED -7768,2022-08-09,29081.35570175221,405,Emergency,2022-08-14,Abnormal,7768,200,0,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -7768,2020-03-12,37776.91749843912,313,Emergency,2020-03-15,Normal,9361,9,1,27,,,,DISCHARGED -7769,2022-03-04,16308.114029146824,198,Emergency,2022-03-20,Normal,7769,351,0,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -7771,2019-08-31,39612.239526898586,441,Emergency,2019-09-30,Inconclusive,7771,225,2,20,,,,DISCHARGED -7772,2021-06-16,10491.40516226454,275,Elective,2021-06-22,Abnormal,7772,175,2,15,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -7773,2019-07-07,22748.22060244582,353,Emergency,2019-07-19,Inconclusive,7773,275,1,21,,,,DISCHARGED -7774,2023-05-03,36415.528481924746,499,Emergency,,Abnormal,7774,38,1,16,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,OPEN -7775,2023-06-09,24936.44578934288,458,Urgent,2023-07-08,Inconclusive,7775,59,2,1,,,,DISCHARGED -7776,2019-11-23,11959.769398229046,161,Emergency,2019-12-03,Normal,7776,65,4,16,,,,DISCHARGED -7778,2021-05-07,10487.56903793358,301,Urgent,2021-05-10,Normal,7778,320,3,18,,,,DISCHARGED -7781,2019-04-22,22371.753733155776,161,Elective,2019-05-01,Inconclusive,7781,434,3,7,,,,DISCHARGED -7782,2021-10-16,32569.824969369205,464,Urgent,2021-10-17,Inconclusive,7782,123,2,23,,,,DISCHARGED -7783,2021-07-11,33361.98400499496,144,Urgent,2021-08-04,Abnormal,7783,163,3,19,,,,DISCHARGED -7784,2021-04-23,14142.877526157072,418,Emergency,2021-04-30,Inconclusive,7784,407,4,5,,,,DISCHARGED -7786,2021-09-12,42943.96369664044,236,Urgent,2021-09-16,Abnormal,7786,410,4,11,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7787,2020-03-17,10197.548363160871,127,Elective,2020-03-25,Inconclusive,7787,385,0,24,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -7789,2020-03-05,5479.926031800201,256,Urgent,2020-03-30,Normal,7789,158,1,29,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7790,2021-08-06,6134.895820650226,201,Emergency,2021-08-28,Normal,7790,56,3,22,,,,DISCHARGED -7791,2023-03-31,43701.6616833722,244,Urgent,,Inconclusive,7791,77,4,17,,,,OPEN -7793,2021-11-30,44912.76481054358,464,Emergency,2021-12-01,Inconclusive,7793,193,1,26,,,,DISCHARGED -7794,2021-09-05,24029.882379408908,261,Emergency,2021-09-28,Inconclusive,7794,284,1,1,,,,DISCHARGED -7795,2018-12-31,40492.89057419783,433,Elective,2019-01-24,Abnormal,7795,14,0,18,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7796,2020-06-30,23416.974473249025,316,Emergency,2020-07-19,Abnormal,7796,11,1,23,,,,DISCHARGED -7797,2019-05-23,23615.1733470237,400,Elective,2019-05-30,Normal,7797,100,1,9,,,,DISCHARGED -7798,2019-09-20,19089.380809571678,245,Elective,2019-09-28,Abnormal,7798,155,2,24,,,,DISCHARGED -7799,2022-05-26,3627.179428308804,121,Elective,2022-06-21,Normal,7799,339,0,28,,,,DISCHARGED -7800,2019-08-02,46310.72667247677,453,Elective,2019-08-30,Abnormal,7800,124,0,29,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7801,2019-04-21,29847.71025219188,182,Elective,2019-05-08,Normal,7801,358,3,2,,,,DISCHARGED -7803,2020-07-05,27136.63519447968,396,Elective,2020-08-04,Inconclusive,7803,279,1,24,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -7804,2020-06-24,34764.97782240485,218,Emergency,2020-07-08,Abnormal,7804,404,3,27,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -7805,2019-01-18,20050.02566531668,186,Urgent,2019-01-31,Normal,7805,393,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7806,2019-06-28,38358.70144422049,339,Emergency,2019-07-09,Normal,7806,109,1,25,,,,DISCHARGED -7807,2021-03-30,11959.715790548446,440,Emergency,2021-04-22,Abnormal,7807,333,4,15,,,,DISCHARGED -7808,2022-09-17,45265.01644275665,430,Elective,2022-09-25,Normal,7808,356,2,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -7809,2022-11-11,42201.90733298428,290,Emergency,2022-12-03,Inconclusive,7809,145,1,7,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -7809,2022-06-06,42781.11037144584,103,Elective,2022-07-06,Abnormal,8492,215,3,4,,,,DISCHARGED -7810,2020-11-24,6895.3029667210885,427,Emergency,2020-11-27,Inconclusive,7810,397,3,10,,,,DISCHARGED -7811,2023-06-24,14460.233216944822,189,Elective,2023-07-03,Inconclusive,7811,161,1,9,,,,DISCHARGED -7812,2020-06-09,32017.27268000004,403,Urgent,2020-07-08,Abnormal,7812,127,3,2,,,,DISCHARGED -7813,2022-06-05,45443.92086452643,417,Emergency,2022-06-13,Abnormal,7813,313,1,26,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7814,2019-12-07,31611.80425783832,137,Elective,2019-12-27,Normal,7814,331,0,22,,,,DISCHARGED -7815,2020-08-29,3247.818886508557,311,Urgent,2020-09-14,Abnormal,7815,149,3,8,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -7816,2021-01-15,7521.617747171937,450,Elective,2021-02-09,Abnormal,7816,453,1,11,,,,DISCHARGED -7817,2022-11-05,37040.63460571891,358,Elective,2022-12-01,Normal,7817,35,1,5,,,,DISCHARGED -7818,2023-08-05,37153.40059667414,440,Elective,,Normal,7818,172,3,18,,,,OPEN -7819,2019-12-24,40029.7656255471,346,Emergency,2020-01-11,Inconclusive,7819,419,0,15,,,,DISCHARGED -7820,2023-06-11,9799.417230085248,267,Emergency,2023-07-10,Inconclusive,7820,21,3,20,,,,DISCHARGED -7821,2021-09-05,14757.795134815808,169,Elective,2021-09-06,Inconclusive,7821,205,1,22,,,,DISCHARGED -7822,2021-03-20,24024.574530482365,300,Urgent,2021-04-08,Normal,7822,126,0,23,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7823,2023-10-24,23314.307677866524,176,Elective,2023-10-31,Abnormal,7823,335,4,28,,,,DISCHARGED -7824,2020-04-14,24101.762141812545,449,Urgent,2020-04-26,Normal,7824,444,2,13,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7825,2020-02-02,24493.36628645637,260,Emergency,2020-03-03,Abnormal,7825,355,3,27,,,,DISCHARGED -7826,2022-10-20,12867.171447839715,213,Emergency,2022-10-29,Abnormal,7826,439,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -7828,2021-12-26,25193.63857168861,312,Urgent,2022-01-06,Normal,7828,216,0,17,,,,DISCHARGED -7829,2022-12-26,13210.92704386586,276,Urgent,2023-01-11,Abnormal,7829,95,0,9,,,,DISCHARGED -7830,2021-12-28,14146.195209196232,174,Emergency,2022-01-17,Inconclusive,7830,416,4,17,,,,DISCHARGED -7831,2021-08-10,40044.59129563626,140,Emergency,2021-08-21,Normal,7831,428,3,11,,,,DISCHARGED -7832,2019-01-16,31476.721721113565,107,Urgent,2019-02-11,Inconclusive,7832,163,0,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7833,2021-06-30,49885.4061939152,267,Urgent,2021-07-07,Normal,7833,147,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7834,2020-03-30,29785.708241143693,408,Urgent,2020-04-11,Abnormal,7834,17,1,0,,,,DISCHARGED -7835,2019-06-20,24424.9908269495,468,Urgent,2019-07-01,Normal,7835,293,4,13,,,,DISCHARGED -7837,2021-03-03,21010.455467362124,457,Elective,2021-03-14,Inconclusive,7837,194,3,22,,,,DISCHARGED -7838,2020-05-13,5541.565143164122,439,Elective,2020-05-16,Inconclusive,7838,150,4,5,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7839,2019-09-17,4400.285337338293,360,Emergency,2019-09-24,Abnormal,7839,479,0,13,,,,DISCHARGED -7840,2021-10-09,8261.04108859116,221,Elective,2021-10-21,Inconclusive,7840,364,0,1,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7841,2022-09-24,20226.430212594725,191,Urgent,2022-10-15,Normal,7841,122,2,8,,,,DISCHARGED -7843,2019-03-15,18427.96489198603,203,Elective,2019-04-09,Abnormal,7843,399,4,28,,,,DISCHARGED -7844,2023-09-07,42273.50095150334,404,Urgent,,Normal,7844,186,1,11,,,,OPEN -7845,2019-01-05,7553.50788964731,293,Emergency,2019-01-07,Normal,7845,452,3,4,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -7846,2022-04-09,30468.48710831845,243,Elective,2022-05-08,Inconclusive,7846,451,2,1,,,,DISCHARGED -7847,2022-12-08,5271.526491397599,479,Elective,2022-12-20,Inconclusive,7847,148,4,18,,,,DISCHARGED -7848,2022-11-18,2368.700722196308,395,Urgent,2022-12-07,Inconclusive,7848,103,1,6,,,,DISCHARGED -7849,2021-04-25,35842.414845888976,257,Emergency,2021-05-12,Inconclusive,7849,242,2,6,,,,DISCHARGED -7850,2020-05-23,2133.698601160449,484,Elective,2020-06-15,Abnormal,7850,461,0,9,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -7851,2023-03-24,25801.98340341388,244,Urgent,,Abnormal,7851,230,3,16,,,,OPEN -7852,2019-11-17,20773.26561932548,315,Urgent,2019-12-09,Abnormal,7852,478,4,25,,,,DISCHARGED -7853,2021-07-07,46520.26173993712,230,Elective,2021-08-02,Abnormal,7853,205,1,13,,,,DISCHARGED -7854,2022-03-15,6236.53487186241,429,Urgent,2022-04-14,Normal,7854,197,0,26,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7855,2021-10-02,6483.941456539704,257,Elective,2021-10-17,Abnormal,7855,395,2,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -7856,2023-02-10,34309.73457970126,273,Elective,2023-02-14,Abnormal,7856,399,3,27,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7857,2021-11-24,38692.579492860685,499,Emergency,2021-12-11,Inconclusive,7857,336,2,19,,,,DISCHARGED -7858,2022-09-10,49715.26453946666,423,Elective,2022-10-06,Normal,7858,492,2,5,,,,DISCHARGED -7859,2018-11-24,15407.96433079085,122,Urgent,2018-12-16,Inconclusive,7859,86,1,7,,,,DISCHARGED -7861,2019-05-04,33534.25583530908,262,Emergency,2019-05-21,Inconclusive,7861,141,0,18,,,,DISCHARGED -7862,2023-06-20,8079.253951961806,179,Elective,,Inconclusive,7862,316,4,29,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7863,2022-07-06,20179.55494060116,441,Elective,2022-07-16,Normal,7863,198,1,18,,,,DISCHARGED -7865,2021-07-25,45721.04351555346,339,Elective,2021-08-16,Normal,7865,45,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7866,2023-10-01,34844.047491746926,234,Emergency,2023-10-02,Normal,7866,287,2,23,,,,DISCHARGED -7867,2019-02-25,33842.457246643164,113,Urgent,2019-03-04,Inconclusive,7867,14,3,23,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7868,2019-09-27,32362.406429892988,286,Emergency,2019-10-03,Normal,7868,43,1,16,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7869,2022-02-18,17609.2901067118,164,Emergency,2022-02-26,Inconclusive,7869,400,1,23,,,,DISCHARGED -7870,2021-09-29,37929.15799729977,222,Urgent,2021-10-20,Normal,7870,168,4,23,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7871,2022-10-14,16102.415539445275,500,Elective,2022-10-15,Abnormal,7871,309,2,17,,,,DISCHARGED -7872,2022-10-01,10726.744848153305,118,Elective,2022-10-08,Abnormal,7872,494,1,11,,,,DISCHARGED -7873,2022-07-12,1704.480241031892,192,Elective,2022-08-06,Normal,7873,43,3,8,,,,DISCHARGED -7874,2020-09-17,36273.54520730225,208,Elective,2020-10-13,Normal,7874,97,4,22,,,,DISCHARGED -7875,2021-03-13,2042.608388212213,214,Elective,2021-04-12,Inconclusive,7875,260,3,23,,,,DISCHARGED -7876,2021-01-15,4505.2774209551935,410,Urgent,2021-01-21,Inconclusive,7876,108,2,15,,,,DISCHARGED -7877,2021-01-16,16536.666679728813,101,Emergency,2021-02-09,Inconclusive,7877,282,4,17,,,,DISCHARGED -7878,2023-02-08,1954.7285284503505,417,Emergency,2023-03-06,Normal,7878,371,4,15,,,,DISCHARGED -7879,2021-03-09,10716.56503761419,394,Emergency,2021-03-18,Normal,7879,342,4,15,,,,DISCHARGED -7880,2022-12-25,46483.87360757595,322,Emergency,2022-12-27,Abnormal,7880,103,0,3,,,,DISCHARGED -7881,2020-04-27,17572.34257507783,179,Elective,2020-05-03,Normal,7881,255,4,22,,,,DISCHARGED -7882,2020-11-12,40976.08942886659,265,Elective,2020-11-19,Abnormal,7882,378,3,21,,,,DISCHARGED -7883,2023-08-24,30800.86619773728,424,Urgent,2023-09-21,Inconclusive,7883,205,3,6,,,,DISCHARGED -7884,2020-11-30,23959.36171982866,414,Elective,2020-12-06,Abnormal,7884,334,2,0,,,,DISCHARGED -7885,2021-11-19,13511.72328178813,183,Emergency,2021-11-30,Normal,7885,42,1,23,,,,DISCHARGED -7886,2023-04-11,31141.452383221167,357,Emergency,2023-05-06,Abnormal,7886,352,1,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7887,2023-08-17,3455.5464277487595,329,Urgent,2023-08-26,Normal,7887,244,0,22,,,,DISCHARGED -7888,2020-06-15,33770.298323908464,227,Urgent,2020-07-09,Abnormal,7888,286,4,28,,,,DISCHARGED -7889,2023-01-17,14419.957166055648,387,Emergency,2023-01-18,Inconclusive,7889,354,0,19,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7890,2023-01-06,39743.38481979622,405,Elective,2023-01-07,Normal,7890,272,2,0,,,,DISCHARGED -7891,2019-04-24,9056.11036796189,277,Urgent,2019-05-02,Abnormal,7891,475,2,7,,,,DISCHARGED -7892,2021-03-30,16645.254196291266,247,Elective,2021-04-27,Abnormal,7892,82,1,25,,,,DISCHARGED -7893,2019-01-05,32763.32794025565,196,Urgent,2019-01-08,Inconclusive,7893,109,2,22,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7894,2019-09-27,37532.9870148227,251,Urgent,2019-10-21,Normal,7894,437,4,7,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -7895,2019-09-21,31147.01871956208,124,Elective,2019-09-26,Inconclusive,7895,189,3,9,,,,DISCHARGED -7896,2021-01-09,38828.5649058704,346,Urgent,2021-01-13,Inconclusive,7896,470,2,0,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7897,2021-08-19,7136.77653246491,478,Elective,2021-08-20,Abnormal,7897,287,0,20,,,,DISCHARGED -7898,2018-12-31,25049.791327162555,358,Urgent,2019-01-04,Inconclusive,7898,423,4,24,,,,DISCHARGED -7899,2021-12-12,8612.9581220524,323,Elective,2021-12-30,Inconclusive,7899,396,2,20,,,,DISCHARGED -7900,2021-06-24,43370.39587486161,197,Urgent,2021-06-25,Inconclusive,7900,250,2,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7901,2021-08-10,13133.514334257978,127,Urgent,2021-08-29,Normal,7901,211,4,13,,,,DISCHARGED -7902,2022-11-30,28890.320561252756,467,Emergency,2022-12-11,Inconclusive,7902,290,2,13,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7903,2021-10-17,13872.230802670872,420,Emergency,2021-10-22,Abnormal,7903,132,3,9,,,,DISCHARGED -7904,2019-11-20,9771.778448210434,356,Emergency,2019-12-05,Abnormal,7904,200,1,27,,,,DISCHARGED -7905,2023-07-26,23655.90092030198,394,Emergency,2023-08-07,Inconclusive,7905,284,4,18,,,,DISCHARGED -7906,2020-03-15,16735.599193249585,295,Elective,2020-04-04,Inconclusive,7906,325,0,24,,,,DISCHARGED -7907,2020-02-13,28163.491270007355,299,Urgent,2020-02-19,Inconclusive,7907,408,2,28,,,,DISCHARGED -7908,2019-01-02,26446.13896969572,317,Emergency,2019-01-26,Abnormal,7908,94,1,15,,,,DISCHARGED -7909,2020-05-06,29523.8450385338,468,Emergency,2020-05-08,Normal,7909,277,0,8,,,,DISCHARGED -7910,2022-03-26,28551.288189323288,205,Elective,2022-04-12,Normal,7910,449,0,19,,,,DISCHARGED -7911,2021-02-06,35122.48348027565,173,Urgent,2021-03-06,Normal,7911,428,3,15,,,,DISCHARGED -7912,2021-04-15,27526.40595488985,413,Urgent,2021-05-08,Inconclusive,7912,324,1,19,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7914,2019-09-08,2136.711562218529,305,Urgent,2019-10-01,Inconclusive,7914,218,4,26,,,,DISCHARGED -7915,2021-12-17,24016.3313538022,327,Urgent,2021-12-22,Inconclusive,7915,88,1,7,,,,DISCHARGED -7916,2021-01-22,1902.1131216083488,136,Elective,2021-01-27,Abnormal,7916,71,1,6,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -7917,2021-11-28,14762.063716513072,186,Emergency,2021-12-11,Abnormal,7917,246,0,10,,,,DISCHARGED -7918,2020-03-11,11821.174189375522,237,Emergency,2020-03-29,Normal,7918,128,3,20,,,,DISCHARGED -7919,2018-12-12,28389.13161584998,440,Emergency,2019-01-08,Inconclusive,7919,211,3,5,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -7920,2023-03-27,15830.618866459588,117,Elective,2023-04-02,Normal,7920,427,1,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7921,2019-02-24,13296.347302606027,335,Urgent,2019-03-02,Abnormal,7921,342,1,18,,,,DISCHARGED -7921,2019-07-02,31866.124175432706,322,Elective,2019-07-16,Normal,8964,95,2,13,,,,DISCHARGED -7922,2022-06-14,8315.877633169357,157,Urgent,2022-07-10,Abnormal,7922,74,0,14,,,,DISCHARGED -7924,2021-07-06,46363.79689305256,460,Emergency,2021-07-27,Inconclusive,7924,422,4,5,,,,DISCHARGED -7925,2020-07-19,41955.41001462372,462,Urgent,2020-07-30,Abnormal,7925,494,4,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7926,2019-05-08,42565.01532080216,480,Urgent,2019-06-06,Abnormal,7926,53,3,23,,,,DISCHARGED -7926,2023-01-26,3708.014755954044,189,Elective,2023-02-23,Inconclusive,8315,343,0,9,,,,DISCHARGED -7927,2020-05-14,39685.56807450206,450,Urgent,2020-05-27,Normal,7927,458,3,13,,,,DISCHARGED -7928,2022-03-27,16878.05992028713,257,Emergency,2022-03-29,Normal,7928,412,4,15,,,,DISCHARGED -7929,2023-09-11,12826.466559755483,206,Elective,2023-10-05,Normal,7929,53,1,12,,,,DISCHARGED -7930,2022-06-30,47634.95678681968,468,Elective,2022-07-24,Inconclusive,7930,217,0,10,,,,DISCHARGED -7931,2018-12-15,49346.30429552528,223,Emergency,2019-01-07,Normal,7931,15,0,24,,,,DISCHARGED -7932,2020-05-27,3180.575344076771,330,Emergency,2020-06-14,Abnormal,7932,98,2,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -7933,2022-07-27,37881.29220145484,132,Urgent,2022-08-10,Inconclusive,7933,19,1,7,,,,DISCHARGED -7934,2022-12-26,27521.06037262449,195,Elective,2022-12-27,Abnormal,7934,45,1,27,,,,DISCHARGED -7936,2022-01-20,35304.09548678137,120,Emergency,2022-02-11,Normal,7936,450,3,2,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7937,2021-09-08,35247.61623416267,150,Emergency,2021-09-12,Abnormal,7937,192,0,1,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -7938,2018-12-15,17647.824014810394,465,Emergency,2019-01-07,Normal,7938,382,3,20,,,,DISCHARGED -7939,2023-02-06,33409.58085113268,483,Emergency,2023-02-09,Abnormal,7939,57,1,13,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7939,2022-09-24,21760.266228445307,260,Elective,2022-10-06,Normal,9265,436,2,19,,,,DISCHARGED -7940,2019-04-13,44605.10704855014,195,Urgent,2019-05-05,Inconclusive,7940,110,0,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7941,2019-11-30,9146.001745938682,448,Emergency,2019-12-10,Inconclusive,7941,128,1,20,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -7942,2019-08-23,35759.59793004762,430,Urgent,2019-09-13,Inconclusive,7942,336,2,21,,,,DISCHARGED -7943,2019-05-26,33019.01576878836,226,Emergency,2019-06-18,Abnormal,7943,193,4,14,,,,DISCHARGED -7944,2023-06-27,42133.651975696426,197,Urgent,2023-07-14,Inconclusive,7944,412,1,2,,,,DISCHARGED -7945,2019-10-25,20942.10431975059,433,Emergency,2019-11-19,Normal,7945,339,4,0,,,,DISCHARGED -7946,2022-09-02,6787.122071407948,333,Elective,2022-09-18,Normal,7946,325,3,14,,,,DISCHARGED -7947,2021-03-26,39731.90218474498,378,Emergency,2021-04-20,Inconclusive,7947,7,4,19,,,,DISCHARGED -7948,2019-01-10,49675.48297875196,475,Urgent,2019-01-28,Abnormal,7948,28,1,21,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -7952,2022-06-04,32894.35765823763,115,Elective,2022-06-22,Normal,7952,111,4,1,,,,DISCHARGED -7953,2023-07-28,18033.72680262501,295,Urgent,,Normal,7953,434,0,17,,,,OPEN -7954,2019-07-25,8408.620870595569,445,Emergency,2019-08-21,Normal,7954,160,1,0,,,,DISCHARGED -7955,2023-01-02,44487.59572380077,266,Emergency,,Abnormal,7955,130,2,8,,,,OPEN -7957,2020-04-27,4214.611851238462,473,Elective,2020-05-17,Inconclusive,7957,187,4,2,,,,DISCHARGED -7958,2019-01-05,2620.7427686378837,353,Urgent,2019-01-09,Normal,7958,162,0,1,,,,DISCHARGED -7959,2020-06-28,12385.737665048577,151,Urgent,2020-07-14,Abnormal,7959,196,3,3,,,,DISCHARGED -7960,2023-03-16,32917.84530749517,295,Emergency,2023-04-04,Normal,7960,474,3,15,,,,DISCHARGED -7961,2021-11-18,39381.61261074992,186,Elective,2021-11-21,Normal,7961,363,4,21,,,,DISCHARGED -7962,2021-06-23,32466.875185721023,400,Urgent,2021-07-05,Abnormal,7962,203,3,0,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -7963,2021-09-29,34824.572632110576,117,Emergency,2021-10-12,Abnormal,7963,211,2,8,,,,DISCHARGED -7964,2021-01-26,14791.407815936833,432,Elective,2021-02-07,Inconclusive,7964,108,1,24,,,,DISCHARGED -7966,2020-11-17,3390.355788072462,371,Emergency,2020-12-14,Abnormal,7966,275,0,7,,,,DISCHARGED -7967,2019-05-02,26932.975881030183,167,Emergency,2019-05-28,Abnormal,7967,72,4,5,,,,DISCHARGED -7968,2023-01-14,22977.04755013185,187,Emergency,,Inconclusive,7968,166,3,19,,,,OPEN -7969,2023-09-03,47034.5007084385,262,Elective,2023-09-23,Inconclusive,7969,259,1,17,,,,DISCHARGED -7970,2023-06-01,41943.39930023557,224,Emergency,2023-06-02,Abnormal,7970,242,2,15,,,,DISCHARGED -7971,2020-06-18,25717.903364204863,353,Urgent,2020-07-11,Inconclusive,7971,274,3,7,,,,DISCHARGED -7972,2019-04-14,29635.76863758357,209,Emergency,2019-04-18,Inconclusive,7972,101,3,22,,,,DISCHARGED -7973,2021-04-21,18011.6687619248,153,Emergency,2021-05-08,Abnormal,7973,474,0,27,,,,DISCHARGED -7974,2020-07-31,15380.864467483172,432,Urgent,2020-08-04,Inconclusive,7974,172,2,29,,,,DISCHARGED -7975,2023-01-20,24797.4275291282,404,Elective,2023-02-07,Normal,7975,170,2,3,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -7976,2022-02-04,26977.850157884208,203,Elective,2022-03-03,Inconclusive,7976,140,4,2,,,,DISCHARGED -7977,2020-07-16,14883.719365732752,180,Urgent,2020-08-08,Normal,7977,396,0,14,,,,DISCHARGED -7978,2021-07-20,17098.469362828666,446,Emergency,2021-07-24,Inconclusive,7978,187,4,5,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7979,2023-08-05,26584.38046797354,280,Emergency,,Normal,7979,440,0,0,,,,OPEN -7981,2023-09-01,48670.6485746654,414,Urgent,2023-09-09,Normal,7981,85,2,17,,,,DISCHARGED -7982,2020-03-17,11869.28365115142,203,Elective,2020-03-31,Inconclusive,7982,475,0,22,,,,DISCHARGED -7983,2021-02-07,4466.509870388432,314,Emergency,2021-02-12,Abnormal,7983,51,0,10,,,,DISCHARGED -7984,2020-12-19,13689.239045463744,440,Emergency,2021-01-09,Abnormal,7984,110,0,2,,,,DISCHARGED -7985,2021-12-23,36066.43015392841,250,Urgent,2022-01-09,Inconclusive,7985,436,1,29,,,,DISCHARGED -7986,2019-11-27,29769.69862572903,234,Emergency,2019-12-12,Inconclusive,7986,364,1,12,,,,DISCHARGED -7989,2021-07-25,35770.321186130815,320,Elective,2021-07-29,Normal,7989,341,2,16,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7990,2021-08-17,9299.230454822056,253,Urgent,2021-09-06,Inconclusive,7990,42,0,17,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -7991,2021-02-07,23677.85046968515,357,Urgent,2021-02-14,Abnormal,7991,210,2,25,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7991,2020-11-28,36026.93518906284,440,Urgent,2020-12-26,Normal,8163,455,1,25,,,,DISCHARGED -7993,2020-09-18,9366.04465678097,459,Urgent,2020-10-07,Inconclusive,7993,499,0,13,,,,DISCHARGED -7994,2019-12-14,19941.988504235927,259,Urgent,2020-01-01,Abnormal,7994,199,4,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -7995,2022-08-08,1777.330521600477,124,Urgent,2022-08-20,Inconclusive,7995,297,1,6,,,,DISCHARGED -7996,2019-05-30,14038.735754443547,167,Elective,2019-06-04,Inconclusive,7996,345,1,6,,,,DISCHARGED -7997,2021-10-08,7482.822583433615,382,Urgent,2021-10-12,Inconclusive,7997,239,1,13,,,,DISCHARGED -7998,2020-04-13,24429.46037518099,334,Emergency,2020-04-29,Abnormal,7998,114,0,25,,,,DISCHARGED -7999,2019-06-26,28522.68683883542,448,Urgent,2019-07-02,Abnormal,7999,25,3,23,,,,DISCHARGED -8000,2022-09-28,44157.88796829378,391,Urgent,2022-10-25,Abnormal,8000,406,4,14,,,,DISCHARGED -8001,2022-10-29,48795.34957616802,147,Emergency,2022-11-28,Normal,8001,298,4,11,,,,DISCHARGED -8002,2020-01-28,44610.623561795175,112,Urgent,2020-02-07,Inconclusive,8002,76,2,11,,,,DISCHARGED -8003,2021-02-25,2288.6750533199747,404,Urgent,2021-02-28,Inconclusive,8003,411,0,7,,,,DISCHARGED -8004,2023-06-23,18877.345951072017,143,Emergency,2023-07-12,Abnormal,8004,136,1,15,,,,DISCHARGED -8005,2023-07-31,36638.91942957427,138,Urgent,2023-08-22,Normal,8005,19,3,8,,,,DISCHARGED -8006,2023-04-14,30619.874984804617,131,Urgent,,Inconclusive,8006,439,0,1,,,,OPEN -8007,2019-12-17,41649.70399638107,162,Emergency,2019-12-29,Inconclusive,8007,210,0,13,,,,DISCHARGED -8008,2021-11-15,34802.67778278916,309,Elective,2021-11-24,Inconclusive,8008,239,3,23,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -8009,2019-11-12,19162.83510227641,492,Urgent,2019-12-10,Abnormal,8009,38,1,23,,,,DISCHARGED -8010,2022-07-23,17189.857186421206,369,Urgent,2022-08-17,Abnormal,8010,434,0,28,,,,DISCHARGED -8011,2018-11-30,7497.967096445521,469,Elective,2018-12-02,Inconclusive,8011,267,4,15,,,,DISCHARGED -8013,2020-07-14,40039.25622407387,333,Elective,2020-08-07,Abnormal,8013,206,4,4,,,,DISCHARGED -8014,2023-01-04,20091.838921682003,391,Emergency,2023-01-05,Inconclusive,8014,478,3,4,,,,DISCHARGED -8016,2023-03-12,40384.2501216712,242,Elective,2023-03-23,Inconclusive,8016,438,1,19,,,,DISCHARGED -8016,2022-12-27,26980.772259471087,129,Emergency,2023-01-22,Inconclusive,9702,461,3,29,,,,DISCHARGED -8017,2019-08-04,4267.079919594942,491,Emergency,2019-08-07,Inconclusive,8017,266,0,20,,,,DISCHARGED -8018,2021-02-18,15137.31621014056,465,Urgent,2021-02-24,Normal,8018,153,4,17,,,,DISCHARGED -8019,2023-05-26,47346.49011336828,490,Elective,,Abnormal,8019,41,2,17,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -8020,2021-09-06,21008.125728737767,110,Emergency,2021-10-05,Inconclusive,8020,410,3,4,,,,DISCHARGED -8022,2020-09-25,49591.48878231641,231,Urgent,2020-10-11,Normal,8022,10,2,10,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -8023,2022-12-05,30813.72310001923,393,Elective,2022-12-11,Abnormal,8023,293,2,12,,,,DISCHARGED -8024,2023-05-23,37857.19461111237,410,Elective,2023-05-24,Inconclusive,8024,97,4,2,,,,DISCHARGED -8024,2021-01-26,12573.135605697154,205,Elective,2021-02-20,Inconclusive,8555,426,3,16,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -8025,2022-04-27,3046.992905391492,421,Elective,2022-04-30,Inconclusive,8025,274,2,24,,,,DISCHARGED -8026,2021-02-11,22619.828323771188,246,Emergency,2021-02-12,Normal,8026,447,0,17,,,,DISCHARGED -8027,2019-10-30,1532.6661191521391,120,Urgent,2019-11-09,Normal,8027,389,1,13,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8028,2022-05-23,5944.992954293303,314,Urgent,2022-06-04,Abnormal,8028,429,1,11,,,,DISCHARGED -8029,2021-07-08,17587.51498684621,118,Elective,2021-07-10,Abnormal,8029,371,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8030,2020-05-30,9708.574296331106,172,Urgent,2020-05-31,Abnormal,8030,229,3,25,,,,DISCHARGED -8031,2020-12-07,16142.049025876117,480,Elective,2020-12-31,Normal,8031,368,3,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -8032,2023-05-25,39736.58023804133,227,Urgent,2023-06-12,Inconclusive,8032,425,1,29,,,,DISCHARGED -8033,2019-08-31,29386.26818230457,404,Elective,2019-09-14,Abnormal,8033,219,0,19,,,,DISCHARGED -8034,2019-07-27,21548.447469971776,246,Emergency,2019-08-14,Abnormal,8034,64,1,1,,,,DISCHARGED -8035,2020-06-03,17909.13878021324,128,Urgent,2020-06-27,Inconclusive,8035,354,1,6,,,,DISCHARGED -8036,2022-11-19,33473.32332722099,237,Emergency,2022-12-13,Inconclusive,8036,231,3,14,,,,DISCHARGED -8037,2022-10-07,15649.485023824673,488,Elective,2022-10-12,Inconclusive,8037,327,2,27,,,,DISCHARGED -8038,2022-10-29,46387.14647433006,365,Elective,2022-11-26,Inconclusive,8038,442,0,9,,,,DISCHARGED -8039,2021-03-29,49114.82027460238,404,Elective,2021-04-03,Inconclusive,8039,51,3,14,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -8040,2018-12-09,43337.404539403935,247,Elective,2019-01-05,Normal,8040,373,1,16,,,,DISCHARGED -8041,2020-01-27,12067.591897507951,334,Urgent,2020-02-16,Normal,8041,430,2,10,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8042,2019-12-01,22361.69522542653,233,Emergency,2019-12-03,Normal,8042,375,0,1,,,,DISCHARGED -8043,2022-11-23,33863.638143614495,469,Elective,2022-12-17,Abnormal,8043,262,4,26,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -8044,2023-06-01,28633.65151052959,398,Emergency,2023-06-11,Abnormal,8044,266,0,20,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8045,2019-10-04,19116.828971499068,314,Elective,2019-10-08,Inconclusive,8045,358,0,17,,,,DISCHARGED -8046,2020-03-30,14589.914858118653,138,Elective,2020-04-09,Inconclusive,8046,316,1,24,,,,DISCHARGED -8047,2021-04-22,42683.87948917641,202,Urgent,2021-05-22,Abnormal,8047,323,1,3,,,,DISCHARGED -8048,2019-01-24,10591.009673587014,139,Elective,2019-01-29,Normal,8048,408,4,8,,,,DISCHARGED -8049,2020-07-07,24963.74716875285,265,Emergency,2020-07-26,Inconclusive,8049,395,4,26,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8050,2019-01-29,29554.88672560693,461,Emergency,2019-02-26,Inconclusive,8050,153,4,27,,,,DISCHARGED -8051,2019-04-22,8562.407906626475,222,Emergency,2019-05-18,Normal,8051,357,3,16,,,,DISCHARGED -8052,2023-09-16,6684.271348449877,118,Urgent,2023-09-28,Normal,8052,365,3,16,,,,DISCHARGED -8053,2019-02-13,18760.81392229971,249,Emergency,2019-03-04,Inconclusive,8053,139,1,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8054,2019-05-08,15854.758749961986,217,Urgent,2019-06-04,Inconclusive,8054,426,1,29,,,,DISCHARGED -8055,2019-07-25,28949.005309941866,472,Emergency,2019-08-24,Abnormal,8055,50,4,15,,,,DISCHARGED -8056,2019-10-01,38485.656349510034,412,Elective,2019-10-31,Abnormal,8056,116,3,19,,,,DISCHARGED -8057,2023-03-07,24397.07139592009,213,Emergency,2023-03-13,Inconclusive,8057,420,2,24,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8059,2021-03-10,1865.7538063463944,190,Urgent,2021-03-28,Abnormal,8059,45,3,7,,,,DISCHARGED -8060,2019-09-25,29102.039615518763,292,Urgent,2019-10-04,Inconclusive,8060,308,1,22,,,,DISCHARGED -8061,2022-08-16,3937.714377524664,454,Elective,2022-09-14,Inconclusive,8061,87,3,14,,,,DISCHARGED -8062,2019-07-02,22741.25592031215,195,Elective,2019-07-16,Inconclusive,8062,207,1,0,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8065,2022-02-24,17745.148897040537,338,Elective,2022-03-12,Inconclusive,8065,376,4,18,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8066,2022-03-24,31074.71075388216,412,Elective,2022-04-20,Normal,8066,268,4,24,,,,DISCHARGED -8067,2021-02-14,15085.36450794674,238,Urgent,2021-02-27,Inconclusive,8067,88,4,14,,,,DISCHARGED -8068,2019-09-10,14244.655626313588,450,Urgent,2019-10-07,Inconclusive,8068,380,2,8,,,,DISCHARGED -8070,2020-11-21,31429.059757826144,158,Urgent,2020-11-22,Normal,8070,117,2,4,,,,DISCHARGED -8071,2021-02-01,29351.18509657692,405,Urgent,2021-03-03,Normal,8071,53,1,15,,,,DISCHARGED -8072,2020-12-21,24977.800089659773,333,Urgent,2021-01-05,Normal,8072,440,0,27,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8073,2021-07-25,24410.4160731522,497,Elective,2021-08-10,Normal,8073,115,2,12,,,,DISCHARGED -8075,2023-08-18,16178.730138081652,339,Elective,,Normal,8075,117,1,15,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -8076,2021-11-18,39922.07039964093,417,Emergency,2021-12-05,Inconclusive,8076,259,3,21,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -8077,2021-12-08,31288.036175160087,428,Emergency,2021-12-17,Inconclusive,8077,74,4,10,,,,DISCHARGED -8078,2023-07-31,37995.5917246705,263,Elective,2023-08-04,Inconclusive,8078,479,4,12,,,,DISCHARGED -8079,2020-03-04,44783.95533354963,391,Emergency,2020-03-07,Normal,8079,304,4,5,,,,DISCHARGED -8080,2022-04-14,43277.13904435948,227,Elective,2022-04-27,Normal,8080,6,1,25,,,,DISCHARGED -8081,2019-07-07,49777.67115002487,301,Urgent,2019-08-01,Normal,8081,365,4,19,,,,DISCHARGED -8082,2023-07-02,41495.55968603143,228,Emergency,,Abnormal,8082,121,2,16,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",OPEN -8083,2022-01-02,12861.65498960089,227,Elective,2022-01-18,Inconclusive,8083,10,3,4,,,,DISCHARGED -8084,2023-09-12,35773.670655190006,250,Elective,,Normal,8084,347,4,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",OPEN -8085,2023-04-06,20939.862312985933,222,Emergency,2023-04-27,Abnormal,8085,437,1,16,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8087,2019-10-07,34575.10208382801,296,Elective,2019-10-21,Abnormal,8087,488,3,0,,,,DISCHARGED -8088,2020-12-03,20528.587507838394,270,Urgent,2020-12-24,Inconclusive,8088,214,4,26,,,,DISCHARGED -8089,2020-06-02,12944.13835129208,424,Elective,2020-06-19,Normal,8089,428,0,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8090,2023-09-03,11848.781462569274,123,Emergency,2023-09-14,Normal,8090,278,4,4,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8091,2019-09-13,21793.986508167032,198,Urgent,2019-10-12,Normal,8091,497,2,6,,,,DISCHARGED -8092,2019-03-20,23389.21909820357,147,Elective,2019-03-30,Inconclusive,8092,27,3,15,,,,DISCHARGED -8093,2023-01-25,20685.706228150317,274,Emergency,2023-02-07,Inconclusive,8093,234,2,17,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8094,2019-03-12,11734.302836704854,125,Urgent,2019-04-10,Inconclusive,8094,366,0,5,,,,DISCHARGED -8095,2020-07-09,27684.43237575122,402,Elective,2020-07-11,Abnormal,8095,312,0,1,,,,DISCHARGED -8096,2021-03-25,34062.387353531754,446,Urgent,2021-03-30,Inconclusive,8096,25,2,12,,,,DISCHARGED -8097,2022-03-31,22117.67472674186,357,Elective,2022-04-12,Normal,8097,408,3,9,,,,DISCHARGED -8098,2021-08-03,43098.71002996974,258,Elective,2021-08-15,Abnormal,8098,53,0,20,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8099,2021-04-08,26605.08394638205,202,Emergency,2021-05-04,Abnormal,8099,28,0,19,,,,DISCHARGED -8100,2020-12-27,32693.3475802384,176,Elective,2021-01-19,Abnormal,8100,466,4,10,,,,DISCHARGED -8101,2023-03-16,11055.808953041364,313,Urgent,2023-03-30,Normal,8101,352,1,25,,,,DISCHARGED -8102,2021-10-10,4668.285337054693,439,Emergency,2021-11-06,Abnormal,8102,163,0,20,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -8103,2021-07-11,12858.59156706464,276,Elective,2021-07-18,Abnormal,8103,269,3,1,,,,DISCHARGED -8104,2020-05-26,28929.953261186696,124,Urgent,2020-06-19,Inconclusive,8104,333,3,7,,,,DISCHARGED -8105,2020-11-12,30162.582575883735,285,Elective,2020-12-12,Inconclusive,8105,34,4,23,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8106,2022-06-27,17072.454149204434,256,Elective,2022-07-27,Normal,8106,285,3,21,,,,DISCHARGED -8108,2022-12-22,15909.992366885155,249,Elective,2023-01-08,Normal,8108,347,4,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8109,2021-05-19,17358.003543321513,122,Emergency,2021-06-16,Inconclusive,8109,272,0,19,,,,DISCHARGED -8110,2023-05-11,17364.806535577223,242,Elective,2023-05-17,Normal,8110,450,0,16,,,,DISCHARGED -8112,2022-04-17,44128.50464867092,262,Emergency,2022-04-21,Inconclusive,8112,207,0,15,,,,DISCHARGED -8113,2022-10-17,3012.391100738386,402,Elective,2022-11-10,Abnormal,8113,237,0,24,,,,DISCHARGED -8114,2023-09-27,10233.646538853262,115,Elective,2023-10-04,Abnormal,8114,413,1,9,,,,DISCHARGED -8115,2019-01-31,20441.07817968359,268,Emergency,2019-03-01,Inconclusive,8115,499,1,4,,,,DISCHARGED -8117,2021-09-17,32730.72946207612,115,Urgent,2021-10-03,Normal,8117,92,0,13,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -8118,2021-09-02,18872.496276636622,247,Elective,2021-09-27,Normal,8118,172,3,23,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8119,2022-08-20,17194.422885715467,401,Emergency,2022-09-07,Abnormal,8119,78,4,18,,,,DISCHARGED -8120,2020-03-05,18863.735622974946,490,Elective,2020-04-03,Inconclusive,8120,109,2,3,,,,DISCHARGED -8121,2020-04-30,20628.00818333727,180,Elective,2020-05-01,Inconclusive,8121,216,4,19,,,,DISCHARGED -8122,2020-01-14,14037.703378817114,467,Elective,2020-02-05,Normal,8122,434,2,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8123,2019-01-06,49367.10326129973,243,Emergency,2019-01-21,Abnormal,8123,357,2,23,,,,DISCHARGED -8124,2021-06-25,21581.423337379685,322,Elective,2021-07-25,Abnormal,8124,105,0,14,,,,DISCHARGED -8125,2018-11-28,49701.36599806445,228,Elective,2018-12-26,Abnormal,8125,46,2,27,,,,DISCHARGED -8126,2023-02-22,1700.053606371073,380,Emergency,,Abnormal,8126,180,0,8,,,,OPEN -8127,2021-12-15,38646.81128708596,251,Emergency,2021-12-28,Normal,8127,63,1,2,,,,DISCHARGED -8128,2022-01-03,22352.881112797684,343,Urgent,2022-01-05,Normal,8128,245,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8129,2022-09-11,10175.554780789307,284,Emergency,2022-09-28,Inconclusive,8129,243,2,8,,,,DISCHARGED -8130,2019-12-03,45467.23942769469,277,Emergency,2019-12-24,Abnormal,8130,421,3,17,,,,DISCHARGED -8131,2020-09-07,26241.95612971654,453,Urgent,2020-09-30,Inconclusive,8131,319,0,3,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8132,2022-08-20,26042.26742413884,271,Elective,2022-09-18,Abnormal,8132,86,2,18,,,,DISCHARGED -8133,2021-01-27,37808.50969214741,365,Urgent,2021-02-24,Normal,8133,216,4,23,,,,DISCHARGED -8135,2019-08-21,41509.42590540384,453,Elective,2019-09-20,Normal,8135,489,1,3,,,,DISCHARGED -8137,2019-10-08,29269.66182627233,367,Emergency,2019-10-25,Abnormal,8137,6,1,8,,,,DISCHARGED -8138,2023-01-19,45128.96454828569,139,Elective,,Abnormal,8138,277,2,0,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8139,2023-06-25,32684.7719649079,342,Elective,,Normal,8139,336,1,0,,,,OPEN -8140,2022-09-14,2095.687238387226,367,Elective,2022-10-10,Abnormal,8140,209,4,19,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -8142,2023-04-04,48075.27871728106,414,Urgent,2023-04-24,Normal,8142,496,3,18,,,,DISCHARGED -8143,2021-10-16,28969.43809564237,282,Urgent,2021-10-26,Normal,8143,168,4,2,,,,DISCHARGED -8144,2023-08-29,34509.27029228193,109,Elective,,Normal,8144,329,1,9,,,,OPEN -8145,2019-09-11,1084.422303472434,421,Emergency,2019-10-04,Normal,8145,137,3,11,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8146,2022-12-29,46396.11167993047,317,Urgent,2023-01-14,Inconclusive,8146,440,4,17,,,,DISCHARGED -8147,2020-09-17,12321.440452901628,172,Emergency,2020-10-08,Normal,8147,390,0,13,,,,DISCHARGED -8148,2020-04-21,27698.5271708579,361,Urgent,2020-04-27,Abnormal,8148,495,0,9,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -8149,2022-11-04,45717.8568733596,202,Urgent,2022-11-05,Normal,8149,380,3,9,,,,DISCHARGED -8150,2021-11-05,46083.13258409305,468,Urgent,2021-12-04,Normal,8150,305,3,17,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8151,2023-10-30,11449.716676880198,490,Emergency,2023-11-05,Abnormal,8151,229,3,23,,,,DISCHARGED -8152,2023-08-20,45758.100330583824,428,Emergency,,Inconclusive,8152,474,0,0,,,,OPEN -8153,2023-04-21,31043.650104158936,185,Elective,2023-05-07,Inconclusive,8153,307,4,29,,,,DISCHARGED -8154,2022-10-06,31540.30734617747,305,Urgent,2022-10-13,Inconclusive,8154,160,3,14,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -8155,2021-03-02,9324.88021823037,323,Urgent,2021-03-11,Abnormal,8155,0,0,7,,,,DISCHARGED -8156,2021-03-07,45495.08518507029,301,Elective,2021-03-22,Inconclusive,8156,235,3,25,,,,DISCHARGED -8157,2021-11-25,14665.11355699728,142,Elective,2021-12-13,Abnormal,8157,436,3,2,,,,DISCHARGED -8158,2019-03-06,12281.14362722844,230,Urgent,2019-03-25,Normal,8158,187,3,17,,,,DISCHARGED -8159,2021-10-06,18077.153268402544,199,Emergency,2021-10-14,Normal,8159,417,0,8,,,,DISCHARGED -8160,2020-12-31,49180.4800862382,209,Urgent,2021-01-05,Inconclusive,8160,3,4,15,,,,DISCHARGED -8161,2020-12-09,16158.25569514116,154,Urgent,2021-01-05,Inconclusive,8161,400,0,20,,,,DISCHARGED -8162,2021-07-28,33426.44968815497,220,Urgent,2021-08-03,Abnormal,8162,131,0,14,,,,DISCHARGED -8164,2023-01-16,38848.17033967297,257,Emergency,2023-02-07,Abnormal,8164,426,3,29,,,,DISCHARGED -8165,2021-09-03,14316.42825944667,367,Emergency,2021-09-06,Abnormal,8165,217,2,4,,,,DISCHARGED -8166,2020-12-07,32377.83582902399,413,Urgent,2020-12-11,Abnormal,8166,259,2,12,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8168,2020-01-31,39484.59465133421,395,Elective,2020-02-10,Abnormal,8168,0,2,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -8169,2022-01-09,48006.407283263165,450,Emergency,2022-01-15,Abnormal,8169,70,0,19,,,,DISCHARGED -8170,2020-06-24,12314.148393642512,424,Urgent,2020-07-21,Normal,8170,477,3,6,,,,DISCHARGED -8171,2020-08-23,17046.06634961922,106,Elective,2020-09-08,Inconclusive,8171,177,2,15,,,,DISCHARGED -8173,2020-12-23,27947.42441906278,440,Elective,2021-01-07,Normal,8173,456,1,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8174,2023-09-30,11150.064814619383,432,Elective,2023-10-03,Normal,8174,188,1,26,,,,DISCHARGED -8175,2021-04-25,16636.364895615956,176,Urgent,2021-05-20,Abnormal,8175,290,1,24,,,,DISCHARGED -8176,2021-12-27,18908.843523342905,132,Elective,2022-01-20,Normal,8176,7,4,21,,,,DISCHARGED -8177,2022-06-10,14443.695294742984,189,Elective,2022-06-11,Abnormal,8177,252,3,15,,,,DISCHARGED -8179,2020-06-30,20862.724134298933,229,Elective,2020-07-27,Abnormal,8179,407,0,12,,,,DISCHARGED -8180,2021-12-10,27602.565483626488,434,Urgent,2021-12-28,Normal,8180,466,0,16,,,,DISCHARGED -8181,2022-01-27,31753.077634604208,372,Elective,2022-02-02,Inconclusive,8181,291,3,8,,,,DISCHARGED -8182,2023-09-03,29389.31778160135,283,Elective,,Normal,8182,433,4,11,,,,OPEN -8183,2021-06-12,2347.804003261987,345,Emergency,2021-06-17,Inconclusive,8183,243,3,12,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -8184,2022-07-01,26552.30027906584,435,Emergency,2022-07-14,Normal,8184,122,4,25,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -8185,2019-07-13,28628.37240462693,303,Urgent,2019-08-12,Normal,8185,298,2,8,,,,DISCHARGED -8186,2019-09-26,28176.838868388462,246,Urgent,2019-10-21,Abnormal,8186,282,2,4,,,,DISCHARGED -8187,2019-10-25,38838.10519530371,152,Emergency,2019-11-05,Abnormal,8187,31,4,6,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8188,2021-03-29,1596.9012780504906,456,Urgent,2021-04-15,Normal,8188,333,3,0,,,,DISCHARGED -8189,2023-02-05,1036.0790678076903,135,Elective,,Normal,8189,376,2,3,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,OPEN -8190,2020-07-13,17165.75843783682,440,Urgent,2020-07-28,Inconclusive,8190,145,3,27,,,,DISCHARGED -8191,2023-05-08,37582.77715765098,135,Urgent,2023-05-13,Abnormal,8191,155,2,25,,,,DISCHARGED -8192,2022-06-02,8120.30003185976,446,Elective,2022-06-29,Abnormal,8192,412,3,3,,,,DISCHARGED -8193,2020-05-19,12393.441109697676,282,Urgent,2020-06-18,Inconclusive,8193,15,3,15,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",DISCHARGED -8193,2020-11-02,43383.040981795006,317,Urgent,2020-11-20,Normal,9590,354,1,4,,,,DISCHARGED -8194,2022-03-18,23728.64050755175,220,Urgent,2022-03-28,Abnormal,8194,46,4,21,,,,DISCHARGED -8195,2021-09-19,15178.111047743025,356,Urgent,2021-10-18,Normal,8195,250,0,3,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8197,2019-03-11,14781.337851482873,358,Elective,2019-03-30,Normal,8197,186,4,5,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8199,2023-02-21,47547.16557898432,205,Elective,2023-03-01,Abnormal,8199,30,3,25,,,,DISCHARGED -8200,2022-09-15,46311.15130096009,425,Elective,2022-09-29,Inconclusive,8200,259,3,22,,,,DISCHARGED -8201,2019-04-07,34038.91066945543,348,Emergency,2019-04-14,Inconclusive,8201,420,4,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8202,2019-09-21,30550.628272190235,410,Urgent,2019-09-26,Normal,8202,16,3,24,,,,DISCHARGED -8203,2020-09-12,32645.36846590968,258,Elective,2020-09-15,Inconclusive,8203,38,2,7,,,,DISCHARGED -8204,2018-12-15,46218.211974603226,203,Elective,2018-12-31,Normal,8204,303,3,16,,,,DISCHARGED -8205,2023-07-24,17586.129732065914,444,Elective,2023-08-10,Normal,8205,429,4,28,,,,DISCHARGED -8206,2021-04-27,41078.14985222499,413,Elective,2021-05-16,Abnormal,8206,473,4,17,,,,DISCHARGED -8207,2019-05-11,34279.98739240158,414,Urgent,2019-05-18,Normal,8207,431,4,17,,,,DISCHARGED -8209,2019-06-30,40276.97082034466,158,Emergency,2019-07-01,Normal,8209,38,1,25,,,,DISCHARGED -8210,2021-01-28,7502.061908290743,466,Emergency,2021-02-24,Inconclusive,8210,488,1,24,,,,DISCHARGED -8211,2021-02-02,33743.984111235186,119,Urgent,2021-03-04,Inconclusive,8211,131,1,11,,,,DISCHARGED -8213,2022-07-12,6987.26302786904,245,Urgent,2022-07-15,Normal,8213,29,1,24,,,,DISCHARGED -8214,2021-12-13,27535.205056834813,308,Elective,2021-12-20,Normal,8214,157,1,24,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -8215,2020-03-06,17762.446925208802,329,Urgent,2020-03-07,Abnormal,8215,277,1,0,,,,DISCHARGED -8216,2020-07-02,39061.50521683533,413,Emergency,2020-07-18,Normal,8216,202,1,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -8217,2022-09-12,11041.17914606933,225,Emergency,2022-09-18,Abnormal,8217,65,4,11,,,,DISCHARGED -8219,2023-10-06,20781.9359512618,482,Elective,2023-10-15,Normal,8219,107,0,10,,,,DISCHARGED -8219,2023-02-24,32701.924144207984,405,Urgent,2023-03-15,Normal,9646,267,1,12,,,,DISCHARGED -8220,2019-07-12,25737.38428790393,402,Emergency,2019-07-24,Abnormal,8220,221,4,2,,,,DISCHARGED -8221,2021-03-23,17301.879823357995,243,Emergency,2021-04-07,Abnormal,8221,291,0,26,,,,DISCHARGED -8221,2022-12-25,42819.60872991142,395,Urgent,2023-01-21,Abnormal,9118,17,1,24,,,,DISCHARGED -8222,2019-07-02,18887.098181081088,354,Urgent,2019-07-23,Abnormal,8222,89,0,7,,,,DISCHARGED -8223,2023-07-11,34363.185592446855,119,Elective,,Inconclusive,8223,180,0,2,,,,OPEN -8224,2023-01-04,43828.06650639463,117,Urgent,2023-01-23,Abnormal,8224,254,2,16,,,,DISCHARGED -8225,2021-04-04,46809.30431582996,104,Urgent,2021-04-10,Inconclusive,8225,454,3,24,,,,DISCHARGED -8226,2020-02-10,13912.006090260644,340,Elective,2020-03-03,Abnormal,8226,252,2,12,,,,DISCHARGED -8228,2021-10-31,18915.940457037697,469,Emergency,2021-11-28,Inconclusive,8228,256,0,9,,,,DISCHARGED -8229,2022-08-17,23334.53997035574,236,Urgent,2022-08-20,Normal,8229,382,4,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8230,2020-04-20,20654.878628662267,125,Urgent,2020-04-23,Abnormal,8230,441,1,2,,,,DISCHARGED -8231,2022-10-08,29820.19746380228,490,Emergency,2022-10-15,Normal,8231,345,3,12,,,,DISCHARGED -8234,2021-05-25,49764.53091429238,309,Emergency,2021-06-12,Inconclusive,8234,86,1,21,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8236,2021-09-04,31615.57642691528,394,Urgent,2021-09-07,Inconclusive,8236,89,4,5,,,,DISCHARGED -8238,2023-10-16,33630.60534591856,143,Urgent,2023-10-27,Normal,8238,236,3,13,,,,DISCHARGED -8239,2020-12-25,35569.58120224116,206,Elective,2021-01-10,Normal,8239,389,2,26,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -8240,2021-01-18,18993.263614677868,160,Emergency,2021-02-01,Normal,8240,69,0,9,,,,DISCHARGED -8241,2022-09-13,28377.109104338037,198,Elective,2022-10-08,Inconclusive,8241,43,4,19,,,,DISCHARGED -8242,2021-08-19,16772.071428086085,150,Emergency,2021-09-12,Inconclusive,8242,199,0,15,,,,DISCHARGED -8243,2022-10-31,34500.706211185694,119,Elective,2022-11-27,Abnormal,8243,151,0,17,,,,DISCHARGED -8244,2022-12-03,10136.537037566552,173,Emergency,2022-12-11,Inconclusive,8244,85,1,12,,,,DISCHARGED -8245,2021-04-07,31216.924469266207,335,Elective,2021-04-12,Inconclusive,8245,18,4,9,,,,DISCHARGED -8246,2021-07-29,20607.06279243067,452,Urgent,2021-08-18,Inconclusive,8246,100,0,5,,,,DISCHARGED -8246,2019-09-26,46724.30354131043,209,Emergency,2019-10-25,Abnormal,9594,401,2,9,,,,DISCHARGED -8247,2022-09-07,9969.772316244218,489,Emergency,2022-09-17,Normal,8247,94,3,4,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8248,2023-10-04,44137.53001306059,382,Urgent,2023-10-06,Abnormal,8248,253,4,28,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -8249,2020-04-26,39061.3302155582,199,Elective,2020-05-14,Inconclusive,8249,356,1,5,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8250,2018-11-29,4517.581380501233,160,Elective,2018-12-09,Abnormal,8250,29,4,6,,,,DISCHARGED -8251,2022-07-01,38426.257969882834,493,Elective,2022-07-21,Inconclusive,8251,248,1,10,,,,DISCHARGED -8252,2019-06-22,21517.865453191334,105,Elective,2019-07-15,Abnormal,8252,425,3,15,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -8253,2022-06-13,46288.587414587055,200,Urgent,2022-06-14,Normal,8253,32,2,24,,,,DISCHARGED -8255,2021-01-21,2539.900332189388,366,Emergency,2021-02-04,Inconclusive,8255,457,0,11,,,,DISCHARGED -8256,2020-09-04,28110.55377044643,170,Urgent,2020-09-28,Normal,8256,228,4,11,,,,DISCHARGED -8258,2020-04-21,3837.451205474301,475,Elective,2020-05-14,Abnormal,8258,11,1,29,,,,DISCHARGED -8260,2019-12-11,46071.51763959746,212,Emergency,2019-12-18,Abnormal,8260,117,3,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -8261,2021-11-27,38341.92896119356,200,Elective,2021-12-27,Normal,8261,349,0,19,,,,DISCHARGED -8262,2023-06-23,35508.752827718825,283,Urgent,2023-07-13,Inconclusive,8262,154,3,25,,,,DISCHARGED -8264,2022-09-29,1827.9396774334384,181,Emergency,2022-10-17,Normal,8264,422,2,4,,,,DISCHARGED -8265,2021-08-13,33259.38570442068,460,Elective,2021-09-10,Abnormal,8265,392,0,15,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8266,2021-04-05,38171.68266076186,306,Elective,2021-04-06,Abnormal,8266,245,0,28,,,,DISCHARGED -8267,2020-12-27,4513.79417586097,299,Emergency,2021-01-06,Inconclusive,8267,404,0,5,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -8268,2018-11-13,8537.58184521964,133,Emergency,2018-11-27,Abnormal,8268,331,1,28,,,,DISCHARGED -8269,2021-04-17,46965.88762564629,445,Elective,2021-04-30,Abnormal,8269,246,0,8,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -8270,2020-02-04,21342.291982984403,349,Elective,2020-02-10,Normal,8270,28,3,4,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -8271,2022-10-27,40468.538140267054,211,Elective,2022-11-12,Inconclusive,8271,160,1,20,,,,DISCHARGED -8272,2023-01-27,6964.237866340817,198,Elective,2023-02-10,Normal,8272,234,0,22,,,,DISCHARGED -8273,2018-11-10,7304.660576641682,229,Elective,2018-12-01,Normal,8273,189,3,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -8274,2021-02-02,45037.46269886021,312,Emergency,2021-02-26,Normal,8274,116,3,17,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8275,2020-10-15,15002.463921110377,326,Elective,2020-10-21,Abnormal,8275,270,4,18,,,,DISCHARGED -8276,2020-03-02,6282.546819679948,355,Emergency,2020-03-07,Inconclusive,8276,257,3,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8278,2019-06-24,29743.361920748925,406,Elective,2019-06-26,Inconclusive,8278,179,2,1,,,,DISCHARGED -8279,2018-11-23,24793.520279808545,306,Emergency,2018-12-16,Normal,8279,486,0,25,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8280,2022-06-23,13557.317658573716,105,Urgent,2022-06-24,Normal,8280,372,0,9,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8281,2022-06-23,16457.371931855716,392,Elective,2022-07-08,Abnormal,8281,171,0,11,,,,DISCHARGED -8282,2023-02-20,38697.31564743623,327,Elective,,Abnormal,8282,437,3,13,,,,OPEN -8283,2021-12-02,42705.4087931323,493,Urgent,2021-12-23,Abnormal,8283,273,3,17,,,,DISCHARGED -8284,2023-06-05,18219.78450729501,190,Emergency,,Abnormal,8284,258,0,18,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -8285,2019-12-09,24187.761031066933,121,Emergency,2019-12-14,Abnormal,8285,134,1,5,,,,DISCHARGED -8286,2020-01-20,18397.33414002344,422,Elective,2020-01-23,Abnormal,8286,170,1,4,,,,DISCHARGED -8287,2019-12-04,48386.39238101044,331,Elective,2019-12-08,Inconclusive,8287,209,2,26,,,,DISCHARGED -8288,2022-08-25,37027.03703077011,396,Urgent,2022-08-26,Inconclusive,8288,235,4,15,,,,DISCHARGED -8289,2019-02-13,21265.85465934489,142,Urgent,2019-03-06,Inconclusive,8289,421,2,13,,,,DISCHARGED -8290,2020-03-22,14403.00588435372,406,Emergency,2020-03-30,Inconclusive,8290,420,0,12,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -8291,2020-07-26,39890.98833261332,297,Urgent,2020-08-21,Abnormal,8291,185,0,20,,,,DISCHARGED -8292,2020-11-15,34443.94650094133,281,Elective,2020-12-09,Inconclusive,8292,416,0,1,,,,DISCHARGED -8293,2019-04-14,29837.116698559254,489,Elective,2019-05-04,Normal,8293,363,4,1,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -8294,2021-02-14,49428.167508309794,390,Urgent,2021-02-17,Inconclusive,8294,442,3,11,,,,DISCHARGED -8296,2022-10-29,28072.654601027945,245,Emergency,2022-11-05,Normal,8296,94,4,0,,,,DISCHARGED -8297,2020-08-17,37027.31534592706,336,Elective,2020-08-19,Normal,8297,377,2,18,,,,DISCHARGED -8298,2019-08-23,41979.64105239214,231,Emergency,2019-09-21,Inconclusive,8298,10,3,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8299,2023-01-03,37118.28417017284,296,Urgent,2023-01-23,Abnormal,8299,67,3,27,,,,DISCHARGED -8300,2020-04-18,47350.37315158523,432,Emergency,2020-04-27,Normal,8300,378,2,26,,,,DISCHARGED -8301,2020-03-25,15160.477689471663,480,Urgent,2020-04-18,Inconclusive,8301,209,3,15,,,,DISCHARGED -8302,2023-10-23,21289.84276502331,230,Emergency,,Normal,8302,195,1,29,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,OPEN -8303,2020-05-12,8365.254966987366,458,Emergency,2020-06-01,Inconclusive,8303,368,2,6,,,,DISCHARGED -8304,2023-06-16,47837.80026291821,123,Emergency,,Abnormal,8304,97,2,26,,,,OPEN -8307,2021-04-21,41191.93397607293,456,Elective,2021-05-12,Inconclusive,8307,92,1,20,,,,DISCHARGED -8308,2019-01-10,6637.021910141978,199,Emergency,2019-02-07,Inconclusive,8308,471,4,6,,,,DISCHARGED -8309,2023-05-30,8199.03831110839,473,Emergency,2023-06-24,Abnormal,8309,21,4,15,,,,DISCHARGED -8310,2021-12-31,44281.65802476424,428,Emergency,2022-01-07,Normal,8310,449,4,24,,,,DISCHARGED -8311,2020-04-07,34848.34524505698,308,Emergency,2020-04-22,Inconclusive,8311,171,3,5,,,,DISCHARGED -8313,2022-11-16,12851.42958189394,301,Urgent,2022-12-10,Abnormal,8313,382,1,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8314,2023-03-12,3110.029727725993,353,Elective,,Normal,8314,133,2,0,,,,OPEN -8316,2020-08-16,12630.4021618884,310,Elective,2020-09-10,Normal,8316,425,2,0,,,,DISCHARGED -8317,2022-07-24,12093.058672847565,439,Urgent,2022-08-15,Normal,8317,24,2,25,,,,DISCHARGED -8318,2022-01-26,3136.0364273625505,461,Urgent,2022-02-13,Abnormal,8318,184,3,24,,,,DISCHARGED -8319,2019-06-01,17039.89073446181,400,Urgent,2019-06-11,Abnormal,8319,84,3,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8320,2020-01-19,15982.016851434704,440,Urgent,2020-02-10,Inconclusive,8320,54,4,5,,,,DISCHARGED -8321,2019-03-19,11482.881826080433,120,Emergency,2019-04-07,Inconclusive,8321,250,3,5,,,,DISCHARGED -8322,2019-05-08,3608.407583844075,337,Elective,2019-05-21,Normal,8322,143,4,3,,,,DISCHARGED -8323,2022-10-17,39135.322554736485,383,Elective,2022-10-24,Inconclusive,8323,350,4,11,,,,DISCHARGED -8324,2023-06-21,48387.12135461989,315,Urgent,2023-07-03,Abnormal,8324,397,2,29,,,,DISCHARGED -8325,2023-10-06,29283.018608449704,162,Emergency,2023-10-28,Abnormal,8325,166,3,17,,,,DISCHARGED -8326,2023-03-01,11456.786185176685,355,Elective,2023-03-18,Inconclusive,8326,411,4,9,,,,DISCHARGED -8327,2022-07-02,28223.497178375423,166,Elective,2022-07-05,Inconclusive,8327,223,1,2,,,,DISCHARGED -8328,2020-11-02,42572.47850506077,210,Urgent,2020-11-08,Abnormal,8328,219,1,2,,,,DISCHARGED -8330,2023-09-07,3222.9854382617905,157,Emergency,,Abnormal,8330,178,3,7,,,,OPEN -8331,2020-03-10,36773.468095144606,467,Emergency,2020-03-30,Normal,8331,118,2,21,,,,DISCHARGED -8332,2021-10-16,43285.66928980906,311,Urgent,2021-11-05,Inconclusive,8332,432,2,22,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8333,2021-07-26,45806.61074539374,108,Elective,2021-08-22,Inconclusive,8333,264,4,24,,,,DISCHARGED -8334,2019-11-27,2611.01795440362,261,Elective,2019-12-05,Normal,8334,441,3,0,,,,DISCHARGED -8335,2022-09-29,49140.87878095109,413,Urgent,2022-10-01,Inconclusive,8335,428,1,17,,,,DISCHARGED -8336,2023-07-11,34482.51703873634,478,Urgent,,Inconclusive,8336,149,4,14,,,,OPEN -8337,2019-12-17,44638.598376786176,197,Urgent,2020-01-09,Abnormal,8337,415,4,24,,,,DISCHARGED -8338,2022-10-03,8584.056356614996,458,Emergency,2022-10-24,Normal,8338,452,0,20,,,,DISCHARGED -8339,2023-09-13,28857.283047653087,111,Emergency,2023-10-02,Abnormal,8339,214,3,19,,,,DISCHARGED -8341,2022-09-25,3512.1603534048486,416,Urgent,2022-10-09,Inconclusive,8341,196,4,16,,,,DISCHARGED -8342,2019-08-30,29882.989974098185,308,Urgent,2019-09-24,Inconclusive,8342,41,1,24,,,,DISCHARGED -8343,2018-11-11,4872.252483834007,384,Emergency,2018-12-06,Inconclusive,8343,52,0,10,,,,DISCHARGED -8344,2020-09-10,42171.68204572897,276,Elective,2020-09-25,Abnormal,8344,479,1,12,,,,DISCHARGED -8345,2022-01-07,9261.337941411326,260,Elective,2022-01-21,Normal,8345,442,2,24,,,,DISCHARGED -8346,2022-04-21,48757.698732604,101,Urgent,2022-05-11,Inconclusive,8346,329,0,19,,,,DISCHARGED -8347,2022-05-20,24735.434355201374,322,Urgent,2022-06-12,Abnormal,8347,250,0,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8348,2019-06-21,43185.35409782744,215,Emergency,2019-07-04,Inconclusive,8348,294,4,9,,,,DISCHARGED -8349,2019-06-19,29905.18338029509,318,Urgent,2019-06-26,Normal,8349,377,2,12,,,,DISCHARGED -8350,2020-12-31,21410.578883277834,165,Emergency,2021-01-24,Inconclusive,8350,270,4,16,,,,DISCHARGED -8351,2022-07-13,25131.779081002544,120,Emergency,2022-08-06,Normal,8351,454,3,20,,,,DISCHARGED -8351,2022-10-06,37033.87748684664,380,Emergency,2022-10-23,Normal,9319,412,1,0,,,,DISCHARGED -8352,2022-03-13,46514.228528404325,193,Emergency,2022-03-17,Normal,8352,122,1,19,,,,DISCHARGED -8353,2023-10-10,41630.53578197566,438,Elective,,Normal,8353,366,4,15,,,,OPEN -8354,2020-03-22,5953.510835237855,129,Emergency,2020-04-14,Inconclusive,8354,386,1,15,,,,DISCHARGED -8355,2018-12-05,19489.62650276664,387,Emergency,2018-12-31,Abnormal,8355,338,1,27,,,,DISCHARGED -8356,2023-03-19,31614.04106601988,339,Urgent,2023-04-04,Normal,8356,265,3,20,,,,DISCHARGED -8357,2022-10-15,3492.74028433862,488,Elective,2022-10-28,Abnormal,8357,347,2,29,,,,DISCHARGED -8358,2021-02-21,36302.94733895276,202,Emergency,2021-03-03,Abnormal,8358,28,0,26,,,,DISCHARGED -8359,2020-08-30,38876.73965799117,393,Emergency,2020-09-06,Abnormal,8359,462,4,2,,,,DISCHARGED -8360,2021-12-24,19803.81853772989,293,Urgent,2022-01-23,Abnormal,8360,34,4,1,,,,DISCHARGED -8361,2020-07-05,32532.81691747898,208,Urgent,2020-07-13,Normal,8361,5,3,5,,,,DISCHARGED -8362,2023-05-21,24428.721023984035,335,Urgent,,Inconclusive,8362,395,3,10,,,,OPEN -8363,2019-02-05,36608.40121370153,195,Emergency,2019-02-17,Normal,8363,110,0,28,,,,DISCHARGED -8364,2023-02-02,36213.69220885789,293,Elective,2023-02-28,Inconclusive,8364,293,2,2,,,,DISCHARGED -8365,2019-01-15,44604.48540998071,484,Elective,2019-01-18,Abnormal,8365,76,4,25,,,,DISCHARGED -8366,2019-05-24,17034.54319927463,123,Urgent,2019-05-27,Normal,8366,348,3,0,,,,DISCHARGED -8367,2019-06-26,29317.0261830391,410,Elective,2019-07-05,Inconclusive,8367,146,4,10,,,,DISCHARGED -8368,2022-05-28,30799.123216588338,319,Emergency,2022-06-19,Normal,8368,66,1,12,,,,DISCHARGED -8369,2022-12-08,3799.468942388866,443,Emergency,2022-12-09,Normal,8369,391,4,4,,,,DISCHARGED -8370,2020-05-21,17790.948470264102,297,Urgent,2020-06-08,Abnormal,8370,7,2,17,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8371,2019-04-10,4229.62167795524,351,Urgent,2019-04-22,Inconclusive,8371,121,2,14,,,,DISCHARGED -8372,2023-10-29,28368.467860262463,156,Urgent,,Inconclusive,8372,339,4,17,,,,OPEN -8373,2022-06-14,35211.16808745828,420,Urgent,2022-07-08,Inconclusive,8373,174,1,14,,,,DISCHARGED -8374,2021-10-09,43827.82214419748,395,Urgent,2021-10-22,Inconclusive,8374,387,2,19,,,,DISCHARGED -8375,2023-07-24,34614.54207354463,236,Urgent,2023-07-30,Normal,8375,178,3,19,,,,DISCHARGED -8376,2021-07-21,9446.967428988191,311,Emergency,2021-08-03,Abnormal,8376,84,4,19,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -8377,2020-02-09,46467.227563441855,470,Urgent,2020-02-16,Inconclusive,8377,450,1,6,,,,DISCHARGED -8378,2023-09-17,33173.965493179014,276,Emergency,2023-10-02,Inconclusive,8378,44,3,16,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8379,2021-10-29,14020.030183021903,362,Elective,2021-11-05,Inconclusive,8379,135,4,28,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8380,2022-05-18,43866.4453409479,253,Emergency,2022-06-13,Abnormal,8380,342,1,7,,,,DISCHARGED -8381,2022-02-16,22936.506466698705,237,Elective,2022-02-20,Inconclusive,8381,15,3,27,,,,DISCHARGED -8382,2019-01-20,9395.849645957844,314,Urgent,2019-02-08,Abnormal,8382,332,2,12,,,,DISCHARGED -8383,2021-09-28,1621.830197776983,404,Emergency,2021-10-03,Inconclusive,8383,194,4,25,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -8384,2018-12-22,29633.272805783305,176,Urgent,2019-01-16,Abnormal,8384,495,4,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8386,2019-04-16,7645.336328339558,338,Elective,2019-04-24,Normal,8386,8,2,24,,,,DISCHARGED -8387,2021-06-01,49304.91287065599,253,Emergency,2021-07-01,Inconclusive,8387,315,0,9,,,,DISCHARGED -8388,2021-01-29,34687.19983640641,213,Elective,2021-02-08,Normal,8388,333,3,28,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8389,2021-08-09,22371.373229225308,188,Urgent,2021-08-31,Abnormal,8389,332,2,13,,,,DISCHARGED -8390,2020-05-08,13130.362308996844,409,Urgent,2020-05-11,Abnormal,8390,326,4,5,,,,DISCHARGED -8391,2021-05-05,25062.29231756852,458,Urgent,2021-05-13,Abnormal,8391,14,3,19,,,,DISCHARGED -8392,2023-02-08,8330.79358699481,157,Emergency,,Inconclusive,8392,326,3,21,,,,OPEN -8393,2018-10-31,37980.14715475678,308,Emergency,2018-11-24,Abnormal,8393,101,0,25,,,,DISCHARGED -8394,2022-02-02,47060.392877269165,369,Urgent,2022-02-14,Abnormal,8394,225,4,6,,,,DISCHARGED -8395,2022-09-03,11308.352290060144,206,Elective,2022-10-01,Abnormal,8395,424,1,5,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8396,2018-11-04,31127.817672858146,135,Elective,2018-11-14,Normal,8396,277,0,26,,,,DISCHARGED -8397,2023-01-12,12864.065641714107,248,Urgent,2023-01-22,Normal,8397,407,0,16,,,,DISCHARGED -8397,2019-04-29,17516.4482513964,157,Elective,2019-05-06,Inconclusive,8846,112,1,20,,,,DISCHARGED -8398,2023-06-15,41995.01542034207,126,Elective,2023-07-11,Abnormal,8398,484,1,23,,,,DISCHARGED -8400,2021-06-03,33308.28199451362,139,Urgent,2021-06-08,Abnormal,8400,427,0,7,,,,DISCHARGED -8401,2021-05-31,21891.33315823238,171,Elective,2021-06-08,Normal,8401,0,3,11,,,,DISCHARGED -8402,2022-01-17,19872.64758687871,379,Elective,2022-02-13,Inconclusive,8402,265,2,25,,,,DISCHARGED -8403,2019-05-18,47390.49085081662,121,Urgent,2019-06-07,Abnormal,8403,490,2,24,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -8404,2019-04-27,34257.64990300737,492,Urgent,2019-05-01,Abnormal,8404,207,0,3,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8405,2023-01-21,29924.42313750195,292,Emergency,2023-01-23,Normal,8405,109,3,9,,,,DISCHARGED -8406,2023-08-06,7867.16653361466,330,Emergency,,Inconclusive,8406,199,1,5,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",OPEN -8407,2019-12-23,12306.247538318205,431,Urgent,2020-01-20,Normal,8407,439,0,6,,,,DISCHARGED -8408,2022-07-20,42046.10932162721,495,Urgent,2022-08-09,Abnormal,8408,368,4,20,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8409,2022-09-09,37931.75165728488,259,Emergency,2022-10-03,Abnormal,8409,472,3,26,,,,DISCHARGED -8410,2019-02-18,11944.064925410736,390,Emergency,2019-02-22,Normal,8410,305,4,7,,,,DISCHARGED -8411,2022-02-14,28044.040179382213,475,Urgent,2022-03-10,Abnormal,8411,11,4,2,,,,DISCHARGED -8411,2023-07-24,12276.707696736226,377,Emergency,,Abnormal,9368,344,0,7,,,,OPEN -8412,2021-04-29,26641.207212629797,448,Emergency,2021-05-16,Inconclusive,8412,464,3,14,,,,DISCHARGED -8415,2022-03-08,7166.965465519757,258,Urgent,2022-03-12,Abnormal,8415,187,4,29,,,,DISCHARGED -8416,2021-09-22,8105.49002100708,433,Elective,2021-10-01,Inconclusive,8416,153,3,20,,,,DISCHARGED -8417,2020-10-05,14051.377062196008,118,Elective,2020-10-31,Normal,8417,493,2,0,,,,DISCHARGED -8418,2019-12-24,46112.8236345238,331,Urgent,2019-12-30,Abnormal,8418,367,4,12,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -8420,2023-01-10,10775.331426227624,324,Elective,2023-02-09,Normal,8420,333,4,21,,,,DISCHARGED -8421,2019-07-23,46831.43920374231,253,Urgent,2019-08-08,Inconclusive,8421,424,3,17,,,,DISCHARGED -8422,2019-11-02,20143.025577320837,396,Elective,2019-11-17,Inconclusive,8422,419,2,14,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -8423,2021-12-25,35745.6907787062,249,Urgent,2022-01-24,Abnormal,8423,376,4,6,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -8424,2021-06-16,1243.9728976242625,178,Emergency,2021-07-11,Inconclusive,8424,278,0,14,,,,DISCHARGED -8425,2019-01-21,49100.458363573794,244,Elective,2019-01-28,Normal,8425,170,3,24,,,,DISCHARGED -8426,2020-01-07,40953.34441089516,314,Elective,2020-01-24,Normal,8426,133,3,2,,,,DISCHARGED -8427,2020-06-28,46320.03442207755,244,Emergency,2020-07-19,Abnormal,8427,494,4,29,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8428,2023-02-08,18697.998489384427,147,Elective,2023-02-15,Inconclusive,8428,452,2,25,,,,DISCHARGED -8429,2023-02-14,15193.755609347454,384,Urgent,,Abnormal,8429,426,4,13,,,,OPEN -8430,2018-11-24,49242.05785018929,378,Urgent,2018-12-16,Inconclusive,8430,24,1,19,,,,DISCHARGED -8431,2020-06-06,19829.048590703103,365,Elective,2020-06-14,Abnormal,8431,17,4,3,,,,DISCHARGED -8432,2020-07-06,6153.377667907586,274,Urgent,2020-08-03,Abnormal,8432,189,1,3,,,,DISCHARGED -8433,2019-10-27,25524.99173845405,139,Elective,2019-11-04,Abnormal,8433,140,0,2,,,,DISCHARGED -8434,2020-06-16,7816.979418672698,211,Elective,2020-06-20,Abnormal,8434,42,3,4,,,,DISCHARGED -8435,2020-06-16,9365.924503115237,345,Emergency,2020-07-15,Inconclusive,8435,333,3,24,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -8436,2023-02-06,18833.72734981708,228,Emergency,,Inconclusive,8436,283,2,10,,,,OPEN -8437,2021-06-18,24458.46840504675,455,Urgent,2021-07-05,Abnormal,8437,145,4,7,,,,DISCHARGED -8438,2022-06-14,38765.26479449626,418,Elective,2022-06-16,Abnormal,8438,314,0,25,,,,DISCHARGED -8439,2021-05-16,11451.595848175535,309,Emergency,2021-06-02,Inconclusive,8439,443,1,1,,,,DISCHARGED -8440,2019-07-15,25133.964115481285,242,Urgent,2019-07-19,Abnormal,8440,318,2,27,,,,DISCHARGED -8441,2022-03-22,25655.6544197151,459,Elective,2022-04-15,Normal,8441,440,0,15,,,,DISCHARGED -8442,2022-07-05,16701.953527999445,379,Elective,2022-07-12,Abnormal,8442,91,0,24,,,,DISCHARGED -8443,2023-04-25,4428.433520844079,442,Emergency,2023-05-23,Abnormal,8443,178,1,27,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8444,2018-12-27,11232.31079748094,423,Elective,2019-01-02,Inconclusive,8444,55,1,9,,,,DISCHARGED -8447,2019-02-08,19608.09486574254,411,Urgent,2019-02-16,Abnormal,8447,154,3,17,,,,DISCHARGED -8448,2023-05-07,30847.13871778822,187,Emergency,2023-06-04,Normal,8448,159,4,6,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8449,2020-11-05,37106.6062018785,242,Urgent,2020-11-22,Abnormal,8449,110,2,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -8451,2021-12-01,22679.045220794484,399,Elective,2021-12-07,Inconclusive,8451,136,4,28,,,,DISCHARGED -8452,2020-05-16,32978.53380122561,500,Elective,2020-05-28,Inconclusive,8452,231,2,6,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8453,2019-04-29,7765.002313376223,465,Elective,2019-05-20,Abnormal,8453,479,0,20,,,,DISCHARGED -8454,2023-02-16,17665.08869552336,460,Emergency,2023-02-19,Abnormal,8454,467,1,27,,,,DISCHARGED -8455,2021-05-26,20572.471670862484,209,Elective,2021-06-04,Normal,8455,219,1,5,,,,DISCHARGED -8456,2023-07-25,9615.71524065711,113,Urgent,,Abnormal,8456,480,0,23,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",OPEN -8458,2019-08-17,17806.088816633313,235,Emergency,2019-09-01,Inconclusive,8458,67,0,0,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8459,2019-06-18,49333.156823314166,139,Urgent,2019-06-23,Inconclusive,8459,301,2,28,,,,DISCHARGED -8461,2021-11-09,26831.99249281976,127,Emergency,2021-11-21,Abnormal,8461,248,0,10,,,,DISCHARGED -8462,2021-03-01,14055.937364116306,166,Urgent,2021-03-17,Inconclusive,8462,481,2,12,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8463,2020-11-02,5991.611735145802,350,Emergency,2020-11-29,Inconclusive,8463,495,4,11,Sudden onset of leg cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8464,2020-09-11,2949.0432555313664,290,Emergency,2020-09-20,Normal,8464,322,1,0,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -8465,2020-07-01,5133.211233428802,375,Urgent,2020-07-04,Inconclusive,8465,409,1,20,,,,DISCHARGED -8466,2020-09-21,18000.0894935308,342,Urgent,2020-10-08,Abnormal,8466,391,1,14,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -8468,2020-11-05,17719.18614826582,399,Elective,2020-11-24,Inconclusive,8468,5,4,0,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8469,2021-02-01,27915.63103398423,206,Elective,2021-02-14,Normal,8469,463,4,2,,,,DISCHARGED -8470,2021-01-07,41588.71164822058,449,Emergency,2021-01-19,Inconclusive,8470,279,3,25,,,,DISCHARGED -8471,2019-05-28,5460.244639223006,484,Elective,2019-06-11,Abnormal,8471,431,2,14,,,,DISCHARGED -8472,2020-08-07,27221.428291092183,156,Emergency,2020-08-28,Abnormal,8472,486,2,8,,,,DISCHARGED -8473,2020-06-23,27434.39695936583,403,Elective,2020-07-06,Normal,8473,93,3,13,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -8474,2020-03-03,35822.50646468301,451,Urgent,2020-03-25,Inconclusive,8474,428,1,28,,,,DISCHARGED -8476,2019-05-29,22292.41755373483,257,Emergency,2019-06-05,Normal,8476,268,2,22,,,,DISCHARGED -8477,2021-01-05,5630.094102982314,471,Emergency,2021-01-23,Inconclusive,8477,196,2,27,,,,DISCHARGED -8478,2020-04-23,31689.33564421653,399,Emergency,2020-05-07,Inconclusive,8478,24,1,21,,,,DISCHARGED -8479,2019-06-16,13004.903544849783,496,Elective,2019-06-25,Normal,8479,147,0,23,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8480,2019-11-24,38369.256959013066,365,Elective,2019-12-16,Abnormal,8480,117,0,7,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -8481,2023-06-17,32904.538764746474,256,Emergency,2023-07-05,Abnormal,8481,337,3,21,,,,DISCHARGED -8482,2022-11-05,27262.736813076568,214,Elective,2022-11-28,Normal,8482,366,4,3,,,,DISCHARGED -8483,2022-01-06,46747.29711322217,414,Urgent,2022-01-20,Abnormal,8483,337,2,19,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -8484,2021-01-04,36305.41546759692,445,Emergency,2021-01-31,Inconclusive,8484,65,2,19,,,,DISCHARGED -8485,2023-09-21,11335.320895131854,320,Urgent,2023-10-02,Inconclusive,8485,457,3,5,,,,DISCHARGED -8486,2021-01-31,32821.591832816106,469,Urgent,2021-02-26,Normal,8486,300,3,0,,,,DISCHARGED -8487,2019-02-11,19579.094754850976,451,Emergency,2019-03-13,Inconclusive,8487,369,2,27,,,,DISCHARGED -8488,2020-10-17,47564.20759522408,272,Urgent,2020-11-05,Normal,8488,174,1,17,,,,DISCHARGED -8489,2019-07-12,46008.80490890444,280,Elective,2019-07-15,Abnormal,8489,318,1,5,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8490,2022-07-04,4360.214208595335,448,Emergency,2022-07-16,Normal,8490,75,4,29,,,,DISCHARGED -8491,2022-10-10,35038.33812167479,395,Emergency,2022-11-02,Abnormal,8491,494,2,13,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8493,2020-05-23,9156.536190512912,211,Emergency,2020-06-11,Normal,8493,460,2,10,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8494,2020-02-22,22728.26720058117,104,Emergency,2020-03-18,Normal,8494,113,2,16,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -8495,2021-03-23,1429.8886578265167,164,Urgent,2021-04-20,Abnormal,8495,110,2,8,,,,DISCHARGED -8496,2021-10-13,20796.1376382904,116,Emergency,2021-11-03,Abnormal,8496,248,3,27,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8498,2020-04-17,30490.696525128096,405,Emergency,2020-05-11,Inconclusive,8498,438,0,21,,,,DISCHARGED -8499,2019-12-16,42006.021230579536,419,Urgent,2019-12-28,Abnormal,8499,202,2,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -8500,2021-06-02,1709.9047516469795,500,Urgent,2021-06-09,Inconclusive,8500,146,0,13,,,,DISCHARGED -8501,2019-11-10,44321.09951336394,264,Urgent,2019-11-17,Normal,8501,34,1,27,,,,DISCHARGED -8502,2021-03-19,48056.68034120919,230,Urgent,2021-04-05,Inconclusive,8502,486,4,16,,,,DISCHARGED -8503,2023-06-25,17736.92969622423,490,Urgent,2023-07-10,Normal,8503,308,1,7,,,,DISCHARGED -8504,2023-06-24,17202.77293670304,360,Elective,2023-07-19,Inconclusive,8504,25,2,27,,,,DISCHARGED -8505,2023-04-29,48911.60518935587,256,Elective,2023-05-13,Normal,8505,237,1,15,,,,DISCHARGED -8506,2019-11-10,10981.158339716423,214,Emergency,2019-12-04,Abnormal,8506,13,3,11,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8507,2019-12-15,37483.69656408943,323,Elective,2020-01-14,Abnormal,8507,373,0,11,,,,DISCHARGED -8508,2020-01-08,36776.93488629535,199,Elective,2020-01-13,Inconclusive,8508,44,2,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8509,2019-05-19,6804.433924892192,250,Emergency,2019-05-25,Normal,8509,427,3,27,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -8510,2023-08-17,22140.51416288374,496,Emergency,,Abnormal,8510,215,0,4,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,OPEN -8511,2019-08-18,34642.17508574862,176,Elective,2019-09-06,Inconclusive,8511,232,3,4,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -8512,2020-09-29,38549.258757141535,202,Elective,2020-10-09,Normal,8512,192,1,13,,,,DISCHARGED -8513,2021-08-24,29359.203636483417,244,Emergency,2021-09-01,Abnormal,8513,50,2,5,,,,DISCHARGED -8515,2023-07-01,38091.43669080757,229,Urgent,,Abnormal,8515,426,1,6,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,OPEN -8516,2020-11-10,17866.98231632598,144,Emergency,2020-11-30,Abnormal,8516,374,4,22,,,,DISCHARGED -8517,2021-03-03,39887.37641348983,258,Emergency,2021-03-09,Inconclusive,8517,213,2,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -8518,2022-04-08,39210.055985093706,440,Urgent,2022-05-05,Inconclusive,8518,150,1,16,,,,DISCHARGED -8519,2019-01-08,28622.025406534613,173,Emergency,2019-01-14,Abnormal,8519,439,2,26,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8520,2022-12-02,18857.82924641502,377,Elective,2022-12-07,Inconclusive,8520,274,0,8,,,,DISCHARGED -8521,2022-05-13,34192.98585998548,127,Urgent,2022-06-12,Inconclusive,8521,337,2,21,,,,DISCHARGED -8521,2019-08-04,18930.46839702707,170,Urgent,2019-08-28,Inconclusive,9252,75,2,12,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -8522,2022-12-19,4667.545922530266,168,Emergency,2023-01-03,Inconclusive,8522,438,0,8,,,,DISCHARGED -8523,2021-05-22,47233.7122492197,312,Urgent,2021-06-16,Inconclusive,8523,219,1,26,,,,DISCHARGED -8524,2021-01-07,17269.24533018908,425,Urgent,2021-01-22,Normal,8524,347,2,15,,,,DISCHARGED -8525,2020-11-24,7602.858353111617,180,Elective,2020-12-02,Normal,8525,443,3,3,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -8526,2020-02-08,23363.75566989012,496,Elective,2020-03-08,Inconclusive,8526,186,2,1,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -8527,2019-11-29,19697.002441317363,486,Emergency,2019-12-11,Abnormal,8527,288,1,12,,,,DISCHARGED -8529,2019-09-17,28519.89276905813,311,Urgent,2019-10-02,Abnormal,8529,402,0,12,,,,DISCHARGED -8530,2019-02-24,46476.25070139772,353,Emergency,2019-03-14,Normal,8530,27,1,18,,,,DISCHARGED -8531,2021-05-04,39302.2872947826,222,Urgent,2021-05-18,Abnormal,8531,378,4,11,,,,DISCHARGED -8532,2020-10-03,35655.0123337886,183,Urgent,2020-10-18,Inconclusive,8532,179,2,3,,,,DISCHARGED -8533,2019-12-04,49527.53956308346,264,Elective,2019-12-18,Abnormal,8533,252,2,9,,,,DISCHARGED -8534,2022-08-29,18966.58485007633,253,Emergency,2022-09-17,Abnormal,8534,125,0,15,,,,DISCHARGED -8535,2021-05-17,5907.641409649576,166,Emergency,2021-06-10,Normal,8535,176,2,27,,,,DISCHARGED -8536,2019-01-03,44434.100887535686,210,Elective,2019-01-31,Inconclusive,8536,36,3,23,,,,DISCHARGED -8537,2018-12-08,28021.50789664872,469,Emergency,2019-01-07,Abnormal,8537,409,3,18,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8539,2023-04-26,43554.54860683461,340,Urgent,2023-04-30,Normal,8539,98,1,7,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8540,2022-02-22,13510.33204129477,112,Urgent,2022-03-12,Abnormal,8540,97,0,5,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8541,2022-07-01,8479.476082817766,485,Urgent,2022-07-27,Normal,8541,126,4,3,,,,DISCHARGED -8542,2021-05-14,17233.951715408184,491,Urgent,2021-06-12,Abnormal,8542,482,1,29,,,,DISCHARGED -8543,2022-10-18,35082.49600341645,447,Emergency,2022-11-14,Abnormal,8543,167,0,6,,,,DISCHARGED -8544,2019-02-22,12776.873061970577,435,Emergency,2019-02-28,Inconclusive,8544,79,0,13,,,,DISCHARGED -8545,2022-04-24,42058.64875523408,389,Urgent,2022-04-29,Abnormal,8545,293,1,26,,,,DISCHARGED -8546,2020-07-20,1939.869308973412,134,Emergency,2020-07-27,Abnormal,8546,332,1,12,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8547,2020-07-07,30126.789136248768,166,Emergency,2020-07-16,Normal,8547,125,2,20,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -8548,2022-06-16,32377.1789887482,313,Elective,2022-06-30,Normal,8548,342,4,4,,,,DISCHARGED -8549,2018-11-19,40329.92228167312,212,Urgent,2018-11-27,Inconclusive,8549,309,3,8,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -8550,2022-07-28,47145.45635650896,156,Elective,2022-08-07,Abnormal,8550,149,2,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -8551,2018-11-07,18530.373825181712,380,Emergency,2018-12-02,Abnormal,8551,15,0,2,,,,DISCHARGED -8552,2020-07-22,2488.319624128384,243,Elective,2020-08-16,Inconclusive,8552,27,4,9,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -8554,2020-01-30,37997.50845356644,444,Urgent,2020-02-06,Normal,8554,495,4,14,,,,DISCHARGED -8556,2022-06-21,14738.370173267724,105,Urgent,2022-06-29,Normal,8556,418,1,19,,,,DISCHARGED -8557,2019-06-05,36256.493265753656,261,Emergency,2019-06-27,Inconclusive,8557,443,4,20,,,,DISCHARGED -8558,2019-09-09,14482.946018131712,354,Emergency,2019-10-07,Inconclusive,8558,172,4,16,,,,DISCHARGED -8559,2020-02-17,38391.00703026782,211,Elective,2020-03-04,Inconclusive,8559,45,0,22,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -8560,2022-01-03,14181.060090229732,305,Emergency,2022-01-16,Inconclusive,8560,327,2,23,,,,DISCHARGED -8561,2022-12-23,43448.35084813244,216,Urgent,2023-01-11,Abnormal,8561,235,4,5,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8562,2023-07-28,19136.3642052854,279,Urgent,,Inconclusive,8562,438,1,24,,,,OPEN -8563,2022-09-09,16870.187481818073,441,Emergency,2022-09-23,Normal,8563,213,2,2,,,,DISCHARGED -8565,2020-02-21,11229.345585670471,177,Elective,2020-03-11,Normal,8565,84,1,17,,,,DISCHARGED -8566,2023-04-30,20964.39866902374,349,Emergency,,Abnormal,8566,281,4,4,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -8567,2019-01-08,43054.65398107384,144,Urgent,2019-01-13,Normal,8567,231,2,12,,,,DISCHARGED -8568,2020-03-09,21031.759211334345,275,Urgent,2020-03-14,Inconclusive,8568,84,4,24,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8569,2023-07-26,48989.69712204453,144,Elective,2023-08-12,Abnormal,8569,408,0,26,,,,DISCHARGED -8570,2023-07-31,19564.730353206516,382,Emergency,2023-08-15,Normal,8570,488,2,0,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -8571,2019-04-30,39561.23671708903,310,Elective,2019-05-14,Abnormal,8571,64,1,16,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -8572,2023-07-05,18235.414140711386,388,Urgent,2023-07-08,Inconclusive,8572,133,0,25,,,,DISCHARGED -8573,2019-03-09,11040.958629268,359,Emergency,2019-03-14,Abnormal,8573,150,3,2,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8574,2020-03-30,24973.48979153339,289,Urgent,2020-04-02,Inconclusive,8574,114,1,25,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8575,2023-04-27,4666.137099162626,284,Emergency,2023-05-21,Normal,8575,63,4,18,,,,DISCHARGED -8576,2020-12-28,27349.683692315084,183,Emergency,2021-01-13,Inconclusive,8576,342,1,20,,,,DISCHARGED -8577,2020-08-28,18532.066112946017,444,Urgent,2020-09-04,Inconclusive,8577,426,3,19,,,,DISCHARGED -8578,2023-03-08,47974.393515456,406,Urgent,,Normal,8578,362,1,21,,,,OPEN -8579,2022-11-18,6222.364613076986,441,Emergency,2022-12-03,Abnormal,8579,406,0,11,,,,DISCHARGED -8580,2022-09-18,9189.289369024831,462,Urgent,2022-09-26,Normal,8580,351,1,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8581,2022-05-22,5294.36063821127,218,Emergency,2022-06-05,Abnormal,8581,157,2,7,,,,DISCHARGED -8582,2020-05-22,23192.02171176258,353,Urgent,2020-05-29,Inconclusive,8582,76,3,14,,,,DISCHARGED -8583,2018-10-31,15276.018269401537,117,Elective,2018-11-26,Inconclusive,8583,490,1,10,,,,DISCHARGED -8584,2020-12-06,32769.16614446891,432,Emergency,2020-12-30,Abnormal,8584,145,3,19,,,,DISCHARGED -8585,2019-06-16,29764.49005529812,333,Emergency,2019-07-14,Abnormal,8585,342,0,0,,,,DISCHARGED -8586,2021-12-27,46969.6116791708,323,Emergency,2022-01-10,Abnormal,8586,462,2,28,,,,DISCHARGED -8587,2019-08-20,20057.983279314925,357,Urgent,2019-09-03,Inconclusive,8587,224,4,15,,,,DISCHARGED -8588,2022-03-23,9941.174376382973,394,Elective,2022-04-07,Inconclusive,8588,404,1,29,,,,DISCHARGED -8589,2020-05-31,19859.05871424804,399,Emergency,2020-06-26,Normal,8589,312,0,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -8590,2023-04-08,17782.743947627478,163,Emergency,,Abnormal,8590,102,3,6,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",OPEN -8590,2021-03-02,43354.01301421569,138,Emergency,2021-03-18,Abnormal,8784,406,3,5,,,,DISCHARGED -8591,2021-07-14,14918.85311075017,238,Urgent,2021-07-19,Abnormal,8591,346,0,20,,,,DISCHARGED -8592,2023-09-25,4419.106658496902,208,Urgent,,Inconclusive,8592,300,1,3,,,,OPEN -8593,2020-11-26,13290.726571961077,466,Elective,2020-12-26,Inconclusive,8593,427,4,21,,,,DISCHARGED -8594,2020-03-29,46913.25532663583,186,Urgent,2020-04-05,Abnormal,8594,465,1,7,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8595,2023-03-27,17431.419557387566,333,Emergency,2023-04-07,Abnormal,8595,87,2,21,,,,DISCHARGED -8596,2022-05-16,8426.391308738366,212,Emergency,2022-05-27,Inconclusive,8596,370,1,18,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -8597,2020-10-07,30698.234587921863,136,Urgent,2020-10-15,Normal,8597,302,2,24,,,,DISCHARGED -8598,2018-11-29,24187.23346855943,464,Urgent,2018-12-25,Inconclusive,8598,167,3,2,,,,DISCHARGED -8599,2022-06-10,14580.675566612226,151,Urgent,2022-07-02,Normal,8599,434,2,3,,,,DISCHARGED -8600,2022-02-04,39716.91290792697,335,Urgent,2022-02-22,Inconclusive,8600,169,4,12,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -8601,2019-03-14,19079.51775049902,110,Urgent,2019-03-15,Normal,8601,134,0,20,,,,DISCHARGED -8602,2022-08-30,32393.69761721157,177,Emergency,2022-09-02,Normal,8602,49,2,26,,,,DISCHARGED -8603,2023-06-10,22101.802132493005,311,Elective,2023-07-02,Normal,8603,431,1,1,,,,DISCHARGED -8604,2020-06-06,42442.482266730425,410,Elective,2020-06-20,Inconclusive,8604,339,2,10,,,,DISCHARGED -8605,2020-10-22,41049.0310524492,312,Urgent,2020-11-02,Abnormal,8605,346,3,15,,,,DISCHARGED -8606,2021-11-06,39397.53286950098,442,Elective,2021-11-27,Inconclusive,8606,133,2,9,,,,DISCHARGED -8607,2022-09-06,6516.217620749194,285,Elective,2022-09-22,Normal,8607,346,4,14,,,,DISCHARGED -8608,2019-05-29,1291.1943106706103,194,Emergency,2019-06-02,Normal,8608,136,2,26,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8609,2023-06-19,45275.82145895949,170,Urgent,2023-06-30,Inconclusive,8609,244,4,9,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8610,2020-04-30,40931.17346290707,285,Elective,2020-05-15,Abnormal,8610,108,1,1,,,,DISCHARGED -8612,2022-11-18,4246.625553762583,340,Urgent,2022-11-25,Abnormal,8612,312,3,5,,,,DISCHARGED -8613,2019-07-10,40806.765033179465,364,Urgent,2019-08-04,Abnormal,8613,286,0,13,,,,DISCHARGED -8614,2019-09-05,26061.870959413536,334,Elective,2019-10-05,Normal,8614,20,1,1,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8615,2020-04-12,44693.50721985696,150,Elective,2020-04-17,Inconclusive,8615,89,1,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8616,2019-10-18,33081.62932363766,483,Elective,2019-11-10,Abnormal,8616,295,0,16,,,,DISCHARGED -8617,2022-10-06,10602.809765571308,270,Emergency,2022-10-25,Inconclusive,8617,111,2,7,,,,DISCHARGED -8618,2023-02-04,6391.1608044937175,309,Urgent,2023-03-01,Abnormal,8618,300,2,25,,,,DISCHARGED -8619,2022-03-18,22625.92637723782,315,Urgent,2022-03-26,Abnormal,8619,76,2,15,,,,DISCHARGED -8620,2023-10-01,39144.88616716336,387,Urgent,2023-10-15,Abnormal,8620,176,3,13,,,,DISCHARGED -8622,2022-07-19,45671.54483160411,493,Urgent,2022-08-02,Normal,8622,342,1,9,,,,DISCHARGED -8623,2020-02-15,26591.126249455207,407,Emergency,2020-03-14,Abnormal,8623,147,4,12,,,,DISCHARGED -8624,2020-12-22,24267.37959445451,242,Elective,2021-01-09,Normal,8624,100,0,0,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -8625,2022-04-06,27608.160156980543,121,Urgent,2022-04-26,Abnormal,8625,245,1,9,,,,DISCHARGED -8626,2019-10-28,29111.892896914334,125,Emergency,2019-10-30,Abnormal,8626,116,2,29,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -8628,2021-11-03,46267.869149613405,462,Emergency,2021-11-24,Inconclusive,8628,91,0,21,,,,DISCHARGED -8629,2020-03-13,21156.64212030629,248,Urgent,2020-04-10,Inconclusive,8629,400,4,11,,,,DISCHARGED -8630,2019-04-29,33733.332286762336,492,Elective,2019-05-05,Abnormal,8630,27,1,29,,,,DISCHARGED -8631,2019-09-11,25892.405116587677,277,Emergency,2019-09-20,Abnormal,8631,424,1,16,,,,DISCHARGED -8632,2023-10-06,39163.84867732234,351,Urgent,2023-10-11,Abnormal,8632,449,3,23,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8633,2023-01-11,49167.640130179134,363,Emergency,2023-01-20,Inconclusive,8633,24,1,13,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8634,2021-09-22,28844.56025998443,108,Urgent,2021-10-12,Inconclusive,8634,57,1,4,,,,DISCHARGED -8636,2019-04-25,17631.07584104041,497,Urgent,2019-04-27,Normal,8636,497,4,18,,,,DISCHARGED -8637,2018-10-30,3700.492792020604,412,Emergency,2018-11-01,Normal,8637,296,4,4,,,,DISCHARGED -8638,2021-03-02,36627.55105054712,110,Elective,2021-03-21,Normal,8638,133,0,14,,,,DISCHARGED -8641,2020-01-08,26506.958402153617,358,Emergency,2020-02-06,Abnormal,8641,330,2,12,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8642,2021-07-31,32905.673599632544,182,Urgent,2021-08-10,Inconclusive,8642,248,4,16,,,,DISCHARGED -8644,2019-09-19,23716.221389245184,270,Emergency,2019-09-27,Abnormal,8644,37,0,0,,,,DISCHARGED -8645,2021-04-17,29720.63218212293,374,Emergency,2021-05-03,Abnormal,8645,389,1,27,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -8646,2021-02-28,35285.826961641484,454,Elective,2021-03-19,Normal,8646,428,0,13,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8647,2022-12-26,14024.970192637467,496,Urgent,2023-01-17,Normal,8647,74,0,3,,,,DISCHARGED -8648,2020-03-04,34668.08503838363,153,Elective,2020-03-09,Normal,8648,141,0,24,,,,DISCHARGED -8649,2022-09-20,6533.844231395243,330,Elective,2022-10-07,Normal,8649,321,0,29,,,,DISCHARGED -8650,2021-04-14,38349.7700935063,462,Emergency,2021-04-19,Normal,8650,167,4,8,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8651,2023-01-02,33896.988099156886,273,Urgent,2023-01-22,Normal,8651,258,2,16,,,,DISCHARGED -8652,2022-09-29,10049.968524517948,231,Emergency,2022-10-12,Normal,8652,372,0,2,,,,DISCHARGED -8654,2020-02-01,1152.310743280387,222,Urgent,2020-02-10,Abnormal,8654,354,3,12,,,,DISCHARGED -8655,2023-04-29,5718.780372449003,443,Urgent,2023-05-29,Abnormal,8655,224,1,11,,,,DISCHARGED -8656,2022-02-15,2906.538366336583,108,Urgent,2022-03-15,Normal,8656,151,1,15,,,,DISCHARGED -8657,2021-03-26,28204.476806295264,278,Elective,2021-04-03,Abnormal,8657,18,1,3,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8658,2019-12-02,49191.40004277582,452,Emergency,2019-12-23,Abnormal,8658,145,1,17,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8659,2022-03-29,2964.9539195557845,271,Emergency,2022-04-06,Inconclusive,8659,447,1,22,,,,DISCHARGED -8660,2022-02-10,31485.9006881171,356,Emergency,2022-03-03,Abnormal,8660,240,0,2,,,,DISCHARGED -8661,2019-01-28,49277.22931474176,351,Elective,2019-02-01,Inconclusive,8661,371,2,16,,,,DISCHARGED -8663,2021-08-11,17453.28206996105,128,Emergency,2021-08-18,Normal,8663,380,3,0,,,,DISCHARGED -8665,2020-11-15,16902.316175898784,471,Elective,2020-12-15,Normal,8665,343,4,18,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -8666,2022-11-09,41333.60162685347,285,Urgent,2022-12-05,Abnormal,8666,236,3,21,,,,DISCHARGED -8666,2019-07-25,22880.745670884626,262,Urgent,2019-08-24,Normal,9699,34,4,3,,,,DISCHARGED -8667,2019-06-12,15224.85975555282,458,Urgent,2019-06-17,Inconclusive,8667,189,4,16,,,,DISCHARGED -8668,2023-07-12,30026.23053735445,407,Elective,2023-07-16,Normal,8668,0,3,6,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8669,2023-06-11,4176.834899472101,477,Urgent,2023-06-24,Normal,8669,483,0,1,,,,DISCHARGED -8670,2021-08-07,15278.436974502298,393,Elective,2021-09-03,Inconclusive,8670,152,1,11,,,,DISCHARGED -8671,2023-06-24,20253.070430926316,218,Urgent,2023-06-28,Normal,8671,428,0,4,,,,DISCHARGED -8672,2023-08-25,19801.48951516921,271,Elective,2023-09-16,Inconclusive,8672,432,1,15,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -8673,2022-08-31,4211.71738280996,324,Emergency,2022-09-08,Normal,8673,125,2,7,,,,DISCHARGED -8674,2020-01-13,1582.0782060576712,164,Elective,2020-02-02,Inconclusive,8674,490,4,22,,,,DISCHARGED -8675,2020-03-27,47333.64992028892,115,Emergency,2020-04-15,Inconclusive,8675,481,3,26,,,,DISCHARGED -8676,2022-10-11,12933.87238248588,171,Emergency,2022-10-24,Inconclusive,8676,344,2,27,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -8677,2021-12-08,37392.0139747122,160,Emergency,2021-12-15,Inconclusive,8677,399,1,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -8678,2019-07-06,41412.00476419916,157,Emergency,2019-07-30,Abnormal,8678,225,0,12,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8679,2019-11-21,25917.703226027763,245,Elective,2019-12-02,Normal,8679,220,3,25,,,,DISCHARGED -8680,2023-07-11,15196.351837065124,350,Elective,2023-07-21,Inconclusive,8680,402,4,13,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8681,2023-01-24,5101.94671881426,223,Emergency,2023-01-26,Abnormal,8681,406,2,10,,,,DISCHARGED -8682,2019-11-23,43449.65348962339,135,Urgent,2019-11-27,Normal,8682,210,4,5,,,,DISCHARGED -8683,2021-07-01,45706.98479115704,270,Emergency,2021-07-11,Inconclusive,8683,24,1,15,,,,DISCHARGED -8684,2021-09-10,27895.20904586642,262,Urgent,2021-10-10,Inconclusive,8684,15,4,22,,,,DISCHARGED -8685,2021-09-18,38752.27169096681,267,Emergency,2021-09-25,Normal,8685,181,0,24,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -8686,2019-11-07,39688.13603084733,497,Emergency,2019-12-07,Normal,8686,498,2,21,,,,DISCHARGED -8687,2020-06-09,40786.13191735392,148,Emergency,2020-06-20,Inconclusive,8687,328,2,24,,,,DISCHARGED -8688,2023-02-19,29275.64954629657,440,Urgent,2023-03-07,Inconclusive,8688,128,0,14,,,,DISCHARGED -8689,2021-04-27,45653.76071716618,485,Emergency,2021-04-28,Abnormal,8689,41,4,15,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8690,2021-11-12,7396.168131341648,436,Urgent,2021-11-24,Inconclusive,8690,402,0,12,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8691,2023-06-06,27764.172527570543,140,Elective,2023-07-02,Abnormal,8691,480,3,11,,,,DISCHARGED -8692,2021-07-12,1982.235228462564,230,Emergency,2021-07-14,Normal,8692,417,0,17,,,,DISCHARGED -8693,2023-01-07,28263.44703116675,346,Emergency,,Normal,8693,335,4,28,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",OPEN -8694,2021-01-18,28889.051684635797,404,Emergency,2021-01-26,Inconclusive,8694,235,0,17,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8695,2023-08-01,14496.099640500195,298,Elective,2023-08-07,Inconclusive,8695,359,1,13,,,,DISCHARGED -8696,2023-03-04,20373.09187901853,500,Elective,2023-03-31,Normal,8696,438,0,1,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8697,2021-07-03,15159.584795588327,320,Emergency,2021-07-14,Normal,8697,401,0,21,,,,DISCHARGED -8698,2022-04-14,40266.14823042958,184,Urgent,2022-05-09,Inconclusive,8698,33,4,1,,,,DISCHARGED -8699,2020-04-13,19836.922036712956,489,Emergency,2020-05-13,Abnormal,8699,344,3,2,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8700,2018-12-22,44240.08887997178,402,Emergency,2018-12-26,Inconclusive,8700,380,3,28,,,,DISCHARGED -8701,2022-12-22,6140.662283043372,456,Emergency,2023-01-17,Abnormal,8701,44,4,23,,,,DISCHARGED -8702,2020-08-14,39318.35814839982,445,Elective,2020-09-09,Abnormal,8702,133,4,7,,,,DISCHARGED -8703,2022-05-23,16542.84340877849,376,Urgent,2022-06-02,Normal,8703,20,4,10,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -8704,2019-08-12,20309.542732046142,383,Elective,2019-09-03,Abnormal,8704,121,1,11,,,,DISCHARGED -8705,2023-05-23,23574.01952169489,238,Urgent,2023-06-22,Abnormal,8705,69,2,3,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8706,2020-11-04,31217.055872418165,412,Elective,2020-11-25,Normal,8706,351,0,8,,,,DISCHARGED -8707,2023-07-11,2894.0332957492437,469,Elective,,Inconclusive,8707,360,4,23,,,,OPEN -8708,2021-12-09,15008.772519052927,229,Urgent,2021-12-21,Abnormal,8708,47,4,16,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -8709,2018-11-01,16215.102176726516,360,Urgent,2018-11-09,Normal,8709,490,4,23,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8710,2023-08-09,3767.521151136848,177,Urgent,2023-08-27,Inconclusive,8710,38,3,15,,,,DISCHARGED -8711,2021-02-26,9527.858942146975,133,Emergency,2021-03-19,Inconclusive,8711,286,4,16,,,,DISCHARGED -8712,2019-01-12,42521.87376027004,424,Elective,2019-01-18,Normal,8712,489,0,14,,,,DISCHARGED -8713,2021-10-05,26139.54314482733,182,Urgent,2021-10-11,Inconclusive,8713,9,4,19,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8714,2023-06-12,16173.15518604218,303,Elective,,Abnormal,8714,29,0,25,,,,OPEN -8716,2022-12-01,26513.982826153024,102,Emergency,2022-12-21,Normal,8716,243,1,21,,,,DISCHARGED -8717,2023-01-07,11627.89408350979,215,Elective,2023-01-10,Normal,8717,273,2,6,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8718,2018-11-24,20523.4776346566,305,Elective,2018-11-30,Abnormal,8718,443,3,9,,,,DISCHARGED -8719,2020-08-30,21608.95622541413,141,Emergency,2020-09-07,Normal,8719,87,0,28,,,,DISCHARGED -8720,2018-12-20,44176.79850181088,226,Elective,2019-01-15,Normal,8720,243,1,3,,,,DISCHARGED -8721,2022-01-21,8920.27933496386,316,Emergency,2022-01-30,Inconclusive,8721,380,2,23,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8722,2023-08-15,1848.4853746754584,286,Urgent,,Abnormal,8722,328,2,23,,,,OPEN -8723,2020-12-28,46979.65916959913,469,Elective,2021-01-07,Abnormal,8723,478,2,13,,,,DISCHARGED -8724,2020-05-28,11245.901145231675,216,Urgent,2020-06-24,Inconclusive,8724,14,0,13,,,,DISCHARGED -8725,2019-08-05,15531.442175944569,230,Elective,2019-08-24,Normal,8725,3,1,13,,,,DISCHARGED -8725,2023-08-18,9000.789173546491,270,Emergency,2023-09-13,Normal,9189,190,4,24,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8726,2020-06-03,21093.99854085436,491,Emergency,2020-06-19,Inconclusive,8726,167,1,13,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -8727,2021-12-25,37081.56196356824,394,Emergency,2022-01-07,Inconclusive,8727,8,1,21,,,,DISCHARGED -8728,2020-07-12,13131.378059604129,450,Emergency,2020-07-31,Inconclusive,8728,108,1,19,,,,DISCHARGED -8729,2020-05-08,21820.031775058625,480,Elective,2020-05-24,Normal,8729,136,0,17,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -8730,2019-10-18,34874.32472074103,230,Urgent,2019-11-11,Abnormal,8730,153,0,14,,,,DISCHARGED -8732,2022-03-13,23389.08489101608,117,Urgent,2022-04-02,Abnormal,8732,387,0,22,,,,DISCHARGED -8733,2020-08-11,21445.767332907104,247,Emergency,2020-09-07,Abnormal,8733,208,1,25,,,,DISCHARGED -8734,2023-09-23,22962.93609582673,175,Emergency,2023-10-15,Abnormal,8734,271,0,18,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8735,2020-09-11,36032.08127354367,406,Elective,2020-10-06,Abnormal,8735,142,2,26,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8736,2021-02-10,12858.556883054562,151,Emergency,2021-02-24,Normal,8736,98,0,12,,,,DISCHARGED -8737,2022-03-17,12294.397835012687,430,Emergency,2022-04-16,Abnormal,8737,376,3,11,,,,DISCHARGED -8738,2022-08-09,24257.760765731604,268,Urgent,2022-08-13,Inconclusive,8738,307,0,18,,,,DISCHARGED -8739,2021-02-16,20948.274451910405,191,Emergency,2021-03-17,Inconclusive,8739,68,0,18,,,,DISCHARGED -8740,2021-04-01,4934.618762681976,336,Emergency,2021-04-02,Abnormal,8740,246,0,19,,,,DISCHARGED -8741,2020-06-30,28388.147738741685,461,Elective,2020-07-20,Abnormal,8741,260,0,1,,,,DISCHARGED -8742,2020-12-19,23002.28270626964,388,Elective,2021-01-09,Abnormal,8742,275,3,28,,,,DISCHARGED -8743,2019-05-17,24020.733817810364,147,Elective,2019-05-25,Abnormal,8743,78,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8744,2019-04-05,40933.05843889134,103,Emergency,2019-04-28,Normal,8744,145,0,20,,,,DISCHARGED -8745,2023-08-24,45493.200610768174,166,Emergency,2023-09-03,Abnormal,8745,110,2,2,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -8746,2022-10-27,16480.561354994497,318,Emergency,2022-11-26,Abnormal,8746,257,3,9,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -8747,2019-03-16,19364.2925443635,303,Emergency,2019-03-19,Abnormal,8747,92,4,4,,,,DISCHARGED -8748,2022-09-23,15892.99606523397,481,Urgent,2022-10-02,Abnormal,8748,12,0,11,,,,DISCHARGED -8749,2021-02-25,5043.753604038759,366,Elective,2021-03-23,Normal,8749,259,4,28,,,,DISCHARGED -8750,2022-05-24,22064.396325319965,398,Urgent,2022-06-07,Normal,8750,425,2,6,,,,DISCHARGED -8751,2019-09-30,13091.472070393673,289,Elective,2019-10-08,Abnormal,8751,108,3,8,,,,DISCHARGED -8752,2019-12-26,28550.08016377527,456,Elective,2020-01-20,Abnormal,8752,329,3,1,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -8753,2021-05-21,42537.04768272656,459,Emergency,2021-05-27,Normal,8753,188,4,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8754,2019-08-05,28236.858927967056,382,Urgent,2019-08-13,Abnormal,8754,94,0,9,,,,DISCHARGED -8755,2023-10-29,46014.45365746004,343,Urgent,2023-11-12,Normal,8755,104,1,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -8756,2021-09-18,49379.47933534483,237,Urgent,2021-10-11,Abnormal,8756,7,3,11,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8757,2020-04-29,39616.85995851848,346,Elective,2020-05-14,Abnormal,8757,66,1,5,,,,DISCHARGED -8758,2022-06-29,15613.08711872064,358,Urgent,2022-07-29,Normal,8758,495,3,26,,,,DISCHARGED -8759,2020-03-04,19944.113700528887,178,Emergency,2020-03-29,Abnormal,8759,190,0,2,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8760,2021-12-10,21113.191415002315,108,Urgent,2021-12-12,Inconclusive,8760,365,0,29,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -8761,2021-11-13,11744.960012023532,372,Elective,2021-11-28,Inconclusive,8761,255,3,9,,,,DISCHARGED -8762,2023-09-26,9932.098150870052,371,Emergency,2023-10-23,Abnormal,8762,8,4,28,,,,DISCHARGED -8763,2019-03-12,20852.64898764576,489,Emergency,2019-04-07,Normal,8763,477,0,8,,,,DISCHARGED -8764,2020-09-20,19452.34354673211,119,Elective,2020-10-16,Normal,8764,116,0,19,,,,DISCHARGED -8765,2022-03-24,36635.80930655231,240,Elective,2022-04-07,Inconclusive,8765,266,2,4,,,,DISCHARGED -8766,2020-03-04,20662.848665624497,434,Emergency,2020-03-17,Abnormal,8766,98,0,2,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -8767,2023-07-21,42660.638251246295,127,Emergency,2023-08-04,Normal,8767,484,2,4,,,,DISCHARGED -8768,2020-01-19,20474.61252069474,114,Elective,2020-01-29,Normal,8768,297,0,7,,,,DISCHARGED -8769,2019-02-19,32365.593377994377,180,Elective,2019-03-14,Normal,8769,396,0,7,,,,DISCHARGED -8770,2023-02-16,36560.36485754349,155,Elective,2023-03-13,Inconclusive,8770,163,4,13,,,,DISCHARGED -8771,2019-10-28,32722.50671498724,479,Elective,2019-11-07,Normal,8771,375,4,23,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8773,2021-10-06,9147.755775366291,226,Emergency,2021-10-11,Abnormal,8773,140,0,21,,,,DISCHARGED -8774,2019-06-13,32543.39737643392,156,Elective,2019-06-20,Normal,8774,267,3,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -8775,2019-01-17,26899.292786988943,176,Elective,2019-01-24,Abnormal,8775,36,3,10,,,,DISCHARGED -8776,2022-03-24,22863.633180661105,368,Emergency,2022-03-28,Abnormal,8776,73,0,25,,,,DISCHARGED -8777,2021-02-06,2370.594240984364,196,Emergency,2021-02-19,Normal,8777,72,3,15,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8778,2022-05-23,31802.00918426117,272,Elective,2022-06-15,Normal,8778,307,0,27,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8779,2020-02-18,13120.256411533355,106,Urgent,2020-03-14,Normal,8779,198,4,5,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8780,2022-10-25,32086.237733317244,481,Elective,2022-11-14,Abnormal,8780,129,1,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -8781,2019-12-01,10243.532588127282,459,Elective,2019-12-17,Inconclusive,8781,245,2,10,,,,DISCHARGED -8782,2021-03-08,2932.650504559624,437,Urgent,2021-04-02,Inconclusive,8782,311,3,9,,,,DISCHARGED -8783,2021-07-02,20466.53538387883,177,Urgent,2021-07-23,Abnormal,8783,59,3,22,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -8785,2019-03-08,40219.59087107677,152,Elective,2019-03-14,Normal,8785,278,4,29,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8787,2020-09-30,31385.989006774293,459,Emergency,2020-10-08,Inconclusive,8787,102,3,8,,,,DISCHARGED -8788,2023-03-05,32694.66216524664,140,Emergency,,Abnormal,8788,295,0,27,,,,OPEN -8789,2018-12-04,49995.90228322116,196,Emergency,2018-12-11,Abnormal,8789,319,0,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -8790,2020-01-13,24549.336768721707,467,Emergency,2020-02-09,Inconclusive,8790,486,1,26,,,,DISCHARGED -8791,2021-01-03,25040.73209841201,354,Emergency,2021-01-23,Normal,8791,340,1,27,,,,DISCHARGED -8792,2019-10-30,32227.05152251872,382,Elective,2019-11-13,Abnormal,8792,150,1,23,,,,DISCHARGED -8794,2021-02-06,33631.463439198706,223,Elective,2021-02-13,Abnormal,8794,156,0,14,,,,DISCHARGED -8795,2020-11-01,37441.33469240476,140,Urgent,2020-11-08,Abnormal,8795,205,1,6,,,,DISCHARGED -8796,2022-08-03,22804.329661455173,365,Elective,2022-08-11,Abnormal,8796,473,1,17,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -8797,2022-11-16,29185.08007237015,235,Emergency,2022-12-01,Inconclusive,8797,178,0,0,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8798,2020-10-28,46947.169445363215,498,Urgent,2020-10-29,Inconclusive,8798,196,4,14,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -8799,2022-03-22,14007.12618191666,475,Urgent,2022-04-09,Abnormal,8799,222,3,1,,,,DISCHARGED -8800,2020-01-07,41396.865371356296,316,Urgent,2020-01-18,Abnormal,8800,88,2,21,,,,DISCHARGED -8801,2023-02-08,5992.242186031815,182,Elective,,Normal,8801,286,0,28,,,,OPEN -8802,2021-10-28,28071.733800422026,226,Elective,2021-11-08,Abnormal,8802,433,0,1,,,,DISCHARGED -8803,2019-12-29,17768.198240682097,147,Emergency,2020-01-11,Inconclusive,8803,275,2,9,,,,DISCHARGED -8804,2019-06-28,1421.173737697727,142,Emergency,2019-07-20,Normal,8804,235,2,19,,,,DISCHARGED -8805,2021-11-29,39779.32591852544,129,Emergency,2021-12-01,Abnormal,8805,182,1,14,,,,DISCHARGED -8806,2021-01-03,29144.16909817545,180,Elective,2021-01-08,Inconclusive,8806,208,2,9,,,,DISCHARGED -8807,2021-07-09,33255.59064938876,490,Emergency,2021-07-24,Normal,8807,492,3,18,,,,DISCHARGED -8808,2023-02-01,23867.496630199785,155,Emergency,2023-02-06,Normal,8808,129,3,21,,,,DISCHARGED -8809,2020-09-19,18902.43155787442,408,Urgent,2020-10-10,Normal,8809,152,3,27,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -8810,2021-04-15,23071.51048687228,201,Emergency,2021-05-09,Abnormal,8810,12,3,27,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8811,2019-02-09,17563.329851257087,321,Urgent,2019-02-23,Normal,8811,121,3,12,,,,DISCHARGED -8813,2023-01-06,42259.15488087408,438,Emergency,2023-01-30,Abnormal,8813,358,1,29,,,,DISCHARGED -8814,2020-12-14,46972.341781159244,148,Elective,2021-01-05,Normal,8814,219,0,23,,,,DISCHARGED -8816,2020-01-14,23128.816875445504,482,Emergency,2020-01-19,Normal,8816,105,2,10,,,,DISCHARGED -8817,2023-04-22,44314.40754519525,478,Elective,,Normal,8817,374,0,21,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),OPEN -8818,2019-09-12,1207.38153187721,460,Emergency,2019-10-02,Normal,8818,69,2,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -8819,2020-12-15,32098.891980889173,334,Elective,2020-12-31,Inconclusive,8819,194,1,20,,,,DISCHARGED -8821,2020-01-28,10149.9279737987,395,Emergency,2020-02-06,Normal,8821,185,1,26,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8822,2022-06-10,38305.1269067513,428,Elective,2022-06-27,Normal,8822,98,4,12,,,,DISCHARGED -8823,2022-11-15,36158.41247639777,494,Elective,2022-12-15,Inconclusive,8823,81,4,21,,,,DISCHARGED -8824,2022-10-25,45240.42667200669,212,Elective,2022-11-24,Inconclusive,8824,74,1,24,,,,DISCHARGED -8825,2021-08-21,3446.7423231202984,301,Emergency,2021-09-13,Inconclusive,8825,373,1,21,,,,DISCHARGED -8826,2023-03-25,44771.17436831207,437,Elective,2023-04-11,Abnormal,8826,339,2,25,,,,DISCHARGED -8827,2019-01-18,31620.93575294441,135,Elective,2019-02-07,Inconclusive,8827,191,1,20,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8828,2021-10-25,18258.212595218567,488,Urgent,2021-11-12,Abnormal,8828,324,0,0,,,,DISCHARGED -8830,2020-05-18,46086.262768810186,388,Urgent,2020-06-13,Abnormal,8830,466,2,25,,,,DISCHARGED -8831,2021-07-07,15030.203473365353,380,Elective,2021-07-25,Abnormal,8831,213,1,4,,,,DISCHARGED -8832,2022-06-22,34096.99120017301,420,Emergency,2022-06-28,Abnormal,8832,314,2,20,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8833,2022-03-03,1648.6815797705244,304,Elective,2022-03-06,Abnormal,8833,443,2,21,,,,DISCHARGED -8834,2022-08-12,17437.233275508286,135,Urgent,2022-09-07,Abnormal,8834,466,3,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8835,2021-11-03,21597.844402057253,185,Urgent,2021-11-15,Abnormal,8835,381,4,12,,,,DISCHARGED -8836,2021-01-23,21970.20890031881,344,Emergency,2021-02-02,Normal,8836,366,2,12,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8838,2021-12-30,38143.40974201474,212,Emergency,2022-01-21,Inconclusive,8838,317,2,19,,,,DISCHARGED -8839,2020-12-07,26938.24038777928,111,Urgent,2021-01-04,Normal,8839,143,3,22,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -8840,2018-12-29,33250.43652797085,203,Emergency,2019-01-12,Inconclusive,8840,383,1,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -8842,2023-09-12,1057.0173328013211,417,Elective,2023-09-13,Normal,8842,215,2,5,,,,DISCHARGED -8843,2018-12-09,21290.5516115989,487,Elective,2018-12-23,Abnormal,8843,360,3,19,,,,DISCHARGED -8844,2018-12-15,34894.74191223091,138,Urgent,2018-12-19,Normal,8844,323,0,11,,,,DISCHARGED -8845,2022-10-31,35752.34683154368,128,Emergency,2022-11-02,Abnormal,8845,14,3,7,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8847,2022-09-11,48512.20574926701,271,Urgent,2022-10-08,Abnormal,8847,216,4,8,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -8848,2019-08-15,4221.521414111998,474,Emergency,2019-09-02,Inconclusive,8848,491,4,17,,,,DISCHARGED -8849,2021-08-12,45622.74088808528,127,Emergency,2021-08-18,Normal,8849,438,1,27,,,,DISCHARGED -8850,2019-07-19,21415.300355684216,300,Urgent,2019-07-29,Normal,8850,34,1,10,,,,DISCHARGED -8851,2022-12-05,37088.86760765881,182,Emergency,2022-12-17,Normal,8851,182,4,19,,,,DISCHARGED -8852,2021-11-16,42332.96341216854,173,Urgent,2021-11-22,Inconclusive,8852,269,4,10,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8853,2019-05-17,15554.63780928277,321,Elective,2019-06-05,Inconclusive,8853,432,2,23,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8854,2018-10-31,16342.647401791084,132,Emergency,2018-11-09,Normal,8854,466,4,23,,,,DISCHARGED -8855,2023-01-06,49793.61481604037,124,Emergency,,Normal,8855,357,1,14,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -8856,2020-03-11,22695.255248953174,259,Elective,2020-03-26,Normal,8856,99,4,8,,,,DISCHARGED -8857,2022-09-30,1205.0023448830134,401,Urgent,2022-10-23,Abnormal,8857,6,1,2,,,,DISCHARGED -8858,2022-03-27,27851.90957688142,376,Emergency,2022-04-14,Abnormal,8858,29,0,16,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -8859,2022-07-03,4776.335565785606,492,Emergency,2022-08-02,Inconclusive,8859,466,4,24,,,,DISCHARGED -8860,2019-07-30,34345.20255806178,427,Emergency,2019-08-14,Abnormal,8860,304,1,16,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8861,2020-05-05,46053.18340586411,169,Elective,2020-05-08,Normal,8861,472,3,2,,,,DISCHARGED -8862,2021-05-16,44332.88342638182,464,Elective,2021-05-26,Abnormal,8862,143,2,18,,,,DISCHARGED -8863,2022-10-16,36239.18123326368,470,Emergency,2022-10-24,Abnormal,8863,110,1,8,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8864,2021-07-27,8158.801358616851,302,Elective,2021-08-12,Normal,8864,231,4,16,,,,DISCHARGED -8865,2019-07-27,19640.21974211076,278,Elective,2019-08-26,Inconclusive,8865,178,4,22,,,,DISCHARGED -8866,2021-02-06,22270.216813227325,277,Urgent,2021-02-19,Normal,8866,71,0,17,,,,DISCHARGED -8867,2018-11-30,12722.916124155116,325,Elective,2018-12-01,Normal,8867,209,3,22,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8868,2020-06-14,28704.598234273,334,Emergency,2020-06-22,Normal,8868,219,1,14,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -8869,2020-11-02,13297.978057229811,212,Elective,2020-11-29,Inconclusive,8869,79,3,0,,,,DISCHARGED -8870,2020-10-16,39010.69256403665,389,Urgent,2020-11-01,Inconclusive,8870,499,0,28,,,,DISCHARGED -8871,2020-10-06,29714.10632345313,408,Emergency,2020-10-10,Abnormal,8871,82,2,25,,,,DISCHARGED -8872,2020-07-07,36090.2835690568,371,Elective,2020-07-19,Inconclusive,8872,41,3,9,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -8873,2020-10-22,17107.55128020529,370,Emergency,2020-11-02,Inconclusive,8873,272,0,7,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -8874,2020-06-08,22361.075098493384,121,Elective,2020-06-20,Normal,8874,190,1,9,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8875,2021-07-23,44852.06205789174,180,Elective,2021-08-08,Normal,8875,172,2,28,,,,DISCHARGED -8876,2023-07-15,8234.347136322793,262,Urgent,2023-07-19,Inconclusive,8876,460,4,25,,,,DISCHARGED -8877,2020-11-06,26891.698187647817,407,Elective,2020-11-19,Inconclusive,8877,6,0,1,,,,DISCHARGED -8878,2019-03-15,16118.464519963878,469,Emergency,2019-03-22,Inconclusive,8878,154,4,18,,,,DISCHARGED -8879,2020-11-01,16768.88958616399,458,Urgent,2020-11-05,Abnormal,8879,9,2,13,,,,DISCHARGED -8880,2023-06-26,19440.15245480085,110,Emergency,2023-07-26,Abnormal,8880,33,0,7,,,,DISCHARGED -8881,2023-07-20,45196.07955763424,190,Urgent,2023-08-05,Normal,8881,35,0,18,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8882,2020-02-08,42604.69830355437,197,Elective,2020-02-21,Abnormal,8882,408,2,0,,,,DISCHARGED -8883,2019-05-09,23105.48964709527,131,Emergency,2019-05-12,Abnormal,8883,5,1,15,,,,DISCHARGED -8884,2023-08-12,34805.28914653571,360,Emergency,,Abnormal,8884,407,0,24,,,,OPEN -8885,2023-10-14,45477.06014120869,431,Urgent,,Normal,8885,401,2,23,,,,OPEN -8886,2022-01-06,40869.317220283774,492,Elective,2022-01-28,Inconclusive,8886,214,3,14,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -8887,2020-12-05,11299.29708560354,445,Urgent,2020-12-28,Inconclusive,8887,133,4,19,,,,DISCHARGED -8888,2022-02-08,36884.81221275551,214,Elective,2022-02-24,Inconclusive,8888,284,0,23,,,,DISCHARGED -8889,2022-06-26,10369.077866893536,110,Emergency,2022-07-07,Abnormal,8889,125,3,29,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -8890,2019-10-28,38231.915430776746,337,Emergency,2019-11-08,Normal,8890,408,0,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8891,2022-09-02,16917.90347100207,304,Urgent,2022-09-26,Abnormal,8891,438,1,2,,,,DISCHARGED -8892,2019-06-06,27717.00745236392,477,Urgent,2019-06-15,Abnormal,8892,336,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8893,2020-04-11,43211.09093660289,237,Elective,2020-04-22,Inconclusive,8893,173,0,28,,,,DISCHARGED -8895,2022-06-09,44509.26579540538,202,Emergency,2022-06-22,Inconclusive,8895,151,2,9,,,,DISCHARGED -8896,2023-10-12,33644.878187553724,366,Emergency,,Inconclusive,8896,330,0,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",OPEN -8897,2021-10-06,45339.75780168944,351,Emergency,2021-10-19,Normal,8897,25,1,10,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8898,2020-01-13,49505.17942694056,430,Emergency,2020-02-04,Inconclusive,8898,382,1,5,,,,DISCHARGED -8899,2023-10-11,46925.43295989384,354,Emergency,2023-10-15,Abnormal,8899,114,3,3,,,,DISCHARGED -8900,2021-12-07,42997.25850307118,394,Urgent,2021-12-18,Inconclusive,8900,381,1,6,,,,DISCHARGED -8901,2022-12-23,47905.59878064817,220,Emergency,2023-01-13,Normal,8901,481,2,18,,,,DISCHARGED -8902,2023-03-03,5607.5789234838085,296,Emergency,2023-03-11,Abnormal,8902,283,1,6,,,,DISCHARGED -8903,2019-06-29,41928.02935320205,132,Elective,2019-07-04,Normal,8903,386,0,13,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8904,2021-08-20,40919.77331102932,347,Emergency,2021-09-08,Abnormal,8904,74,1,16,,,,DISCHARGED -8905,2022-05-15,14885.39641630494,250,Elective,2022-06-12,Normal,8905,165,2,22,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8906,2021-02-25,5404.22659317914,283,Urgent,2021-03-23,Inconclusive,8906,188,0,16,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -8907,2019-01-15,45155.856245248986,418,Urgent,2019-01-22,Inconclusive,8907,77,3,12,,,,DISCHARGED -8908,2022-09-19,39256.51859257606,440,Urgent,2022-10-12,Abnormal,8908,434,3,26,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8909,2023-03-09,15720.767589225248,387,Urgent,2023-03-12,Inconclusive,8909,89,3,0,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8910,2020-07-31,39576.44156529724,338,Elective,2020-08-12,Abnormal,8910,175,0,1,,,,DISCHARGED -8911,2023-08-04,34993.850535433296,493,Urgent,2023-08-20,Inconclusive,8911,20,3,17,,,,DISCHARGED -8913,2020-09-30,37608.99728979994,295,Emergency,2020-10-20,Normal,8913,53,1,3,,,,DISCHARGED -8914,2020-05-06,32822.53860908498,132,Emergency,2020-06-03,Abnormal,8914,183,0,12,,,,DISCHARGED -8915,2021-04-28,29257.6185609011,255,Urgent,2021-05-09,Inconclusive,8915,358,0,0,,,,DISCHARGED -8916,2018-12-05,17633.18863917003,429,Elective,2018-12-18,Normal,8916,221,0,3,,,,DISCHARGED -8917,2019-01-07,8574.686543798145,442,Urgent,2019-02-02,Abnormal,8917,314,4,1,,,,DISCHARGED -8918,2023-04-26,6977.992688976139,449,Emergency,2023-05-14,Normal,8918,327,2,3,,,,DISCHARGED -8919,2019-01-15,25957.890155685956,457,Urgent,2019-01-21,Normal,8919,178,4,15,,,,DISCHARGED -8920,2020-10-14,6332.782405740347,490,Urgent,2020-10-24,Normal,8920,275,4,3,,,,DISCHARGED -8921,2022-01-07,47086.46889949201,358,Elective,2022-01-13,Inconclusive,8921,111,4,24,,,,DISCHARGED -8923,2023-10-05,16076.570488251871,200,Emergency,2023-10-13,Inconclusive,8923,223,2,8,,,,DISCHARGED -8924,2022-01-01,37180.65231316765,313,Emergency,2022-01-31,Abnormal,8924,213,4,16,,,,DISCHARGED -8925,2019-01-31,10184.754974590553,220,Elective,2019-02-03,Inconclusive,8925,58,3,20,,,,DISCHARGED -8926,2019-12-26,18195.180826518423,317,Elective,2020-01-20,Normal,8926,326,0,22,,,,DISCHARGED -8927,2019-08-22,38187.57621397792,231,Elective,2019-09-19,Abnormal,8927,392,0,19,,,,DISCHARGED -8928,2022-02-15,27449.29643590696,181,Urgent,2022-02-28,Abnormal,8928,108,1,27,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -8930,2023-10-09,25969.070628162943,476,Urgent,2023-10-22,Abnormal,8930,384,3,20,,,,DISCHARGED -8931,2020-04-29,18694.21190093016,223,Emergency,2020-05-25,Inconclusive,8931,156,2,1,,,,DISCHARGED -8932,2021-04-24,49289.85116757696,478,Emergency,2021-05-07,Abnormal,8932,190,0,2,,,,DISCHARGED -8933,2022-04-08,47926.65374072431,364,Urgent,2022-05-03,Abnormal,8933,199,4,22,,,,DISCHARGED -8934,2023-04-21,23986.89677398524,251,Urgent,,Inconclusive,8934,311,1,25,,,,OPEN -8935,2020-02-05,46020.76588294241,338,Elective,2020-02-16,Inconclusive,8935,195,1,28,,,,DISCHARGED -8936,2021-05-11,26981.63482085532,340,Emergency,2021-06-06,Normal,8936,34,0,14,,,,DISCHARGED -8937,2022-09-05,31318.46582945402,236,Emergency,2022-10-02,Abnormal,8937,378,3,6,,,,DISCHARGED -8938,2018-11-08,38453.1710640005,446,Urgent,2018-11-10,Inconclusive,8938,386,1,3,,,,DISCHARGED -8939,2022-04-01,41619.30247989572,266,Emergency,2022-04-08,Normal,8939,245,0,11,,,,DISCHARGED -8940,2022-09-19,45714.63357766769,268,Emergency,2022-10-13,Inconclusive,8940,236,3,0,,,,DISCHARGED -8941,2022-11-13,9757.978910490763,477,Urgent,2022-12-02,Inconclusive,8941,103,0,16,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -8943,2018-12-01,21578.28782841036,215,Emergency,2018-12-04,Inconclusive,8943,6,0,3,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8944,2021-04-04,27788.69446378368,451,Elective,2021-04-18,Abnormal,8944,282,3,3,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8945,2023-09-11,10237.928963854469,118,Emergency,,Inconclusive,8945,0,3,21,,,,OPEN -8946,2023-07-23,27513.435346467493,326,Urgent,,Inconclusive,8946,218,3,22,,,,OPEN -8947,2020-11-08,15255.912575103685,242,Emergency,2020-11-26,Inconclusive,8947,463,0,24,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -8948,2020-04-02,39339.96760241062,288,Elective,2020-04-25,Abnormal,8948,229,1,8,,,,DISCHARGED -8949,2022-05-04,1103.5589034954205,345,Emergency,2022-05-25,Abnormal,8949,454,2,25,,,,DISCHARGED -8950,2023-04-19,2979.550097229357,187,Urgent,2023-05-06,Inconclusive,8950,171,2,27,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -8951,2019-06-19,44909.60326566342,444,Elective,2019-07-15,Normal,8951,86,0,27,,,,DISCHARGED -8953,2019-07-13,37089.49028451794,331,Urgent,2019-08-04,Normal,8953,40,0,20,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -8954,2019-09-27,14580.828009319526,224,Emergency,2019-10-01,Normal,8954,122,1,9,,,,DISCHARGED -8956,2019-04-01,16523.342250811147,234,Urgent,2019-04-27,Inconclusive,8956,330,3,26,,,,DISCHARGED -8957,2018-11-23,2342.513870137612,420,Emergency,2018-12-20,Normal,8957,297,0,18,,,,DISCHARGED -8958,2020-05-03,12478.88755864046,168,Urgent,2020-06-02,Abnormal,8958,372,4,18,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8959,2021-02-15,25017.528171226066,118,Urgent,2021-02-21,Abnormal,8959,416,3,14,,,,DISCHARGED -8960,2022-11-05,39365.920372673965,442,Urgent,2022-11-19,Inconclusive,8960,177,0,21,,,,DISCHARGED -8961,2019-08-27,20784.89707187038,182,Urgent,2019-09-06,Normal,8961,62,4,16,,,,DISCHARGED -8962,2019-11-03,21031.4641980804,279,Emergency,2019-11-25,Normal,8962,483,1,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8963,2022-04-27,35444.10057011059,434,Emergency,2022-05-17,Abnormal,8963,164,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8965,2019-06-03,41283.04620658344,468,Elective,2019-07-02,Abnormal,8965,488,0,4,,,,DISCHARGED -8966,2023-10-30,35678.113133597435,107,Emergency,2023-11-24,Inconclusive,8966,186,2,15,,,,DISCHARGED -8967,2020-08-04,46000.95491087031,289,Urgent,2020-08-10,Normal,8967,382,0,22,,,,DISCHARGED -8970,2021-12-17,25656.66716619958,414,Emergency,2021-12-24,Abnormal,8970,208,2,6,,,,DISCHARGED -8971,2021-01-06,36841.18294071179,228,Elective,2021-01-21,Inconclusive,8971,226,1,15,,,,DISCHARGED -8972,2022-10-22,19075.959559934552,415,Elective,2022-11-04,Normal,8972,431,1,8,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -8973,2020-06-27,1068.4196591442185,438,Urgent,2020-07-03,Normal,8973,388,3,0,,,,DISCHARGED -8974,2021-05-03,40613.149785464346,126,Elective,2021-05-19,Inconclusive,8974,47,3,2,,,,DISCHARGED -8975,2018-11-03,25776.085524792627,428,Urgent,2018-11-21,Abnormal,8975,223,2,24,,,,DISCHARGED -8976,2021-03-04,44064.14569972938,376,Urgent,2021-03-06,Inconclusive,8976,2,2,7,,,,DISCHARGED -8977,2019-03-21,4628.516595170861,212,Emergency,2019-03-25,Normal,8977,371,1,17,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8978,2020-07-02,11316.038568230137,445,Urgent,2020-07-24,Normal,8978,174,4,23,,,,DISCHARGED -8979,2019-11-06,6891.492220774002,149,Elective,2019-11-24,Inconclusive,8979,445,2,23,,,,DISCHARGED -8980,2020-05-27,42373.154448485846,300,Urgent,2020-06-09,Inconclusive,8980,98,2,17,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -8981,2022-07-26,8930.375011807073,215,Urgent,2022-08-04,Abnormal,8981,115,4,23,,,,DISCHARGED -8983,2022-09-18,49180.3840908525,471,Elective,2022-10-13,Inconclusive,8983,269,3,18,,,,DISCHARGED -8984,2023-10-27,38860.183285570594,127,Elective,2023-11-24,Normal,8984,446,3,6,,,,DISCHARGED -8985,2019-07-13,14467.8201216075,237,Emergency,2019-08-01,Abnormal,8985,367,2,28,,,,DISCHARGED -8986,2023-08-14,10984.12294760183,338,Urgent,,Normal,8986,252,3,24,,,,OPEN -8987,2019-02-09,17204.34905232734,258,Urgent,2019-02-16,Normal,8987,316,3,19,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -8989,2021-10-04,31899.22464201341,500,Elective,2021-10-20,Inconclusive,8989,414,3,26,,,,DISCHARGED -8990,2019-07-29,20828.840333860324,174,Elective,2019-08-27,Abnormal,8990,94,1,5,,,,DISCHARGED -8991,2023-03-26,24170.86723812414,458,Urgent,,Normal,8991,272,0,24,,,,OPEN -8992,2020-11-16,47536.94054492415,354,Emergency,2020-11-18,Inconclusive,8992,379,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8993,2020-02-01,45778.730706115326,286,Urgent,2020-02-04,Normal,8993,23,2,10,,,,DISCHARGED -8994,2020-02-04,3024.2314154897304,292,Emergency,2020-02-21,Abnormal,8994,115,1,4,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8995,2023-08-14,13651.046437620967,285,Urgent,,Normal,8995,150,0,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8997,2020-05-19,45904.67994932743,171,Elective,2020-05-30,Inconclusive,8997,337,0,0,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -8998,2021-11-05,26586.927559572134,358,Urgent,2021-11-26,Abnormal,8998,49,1,18,,,,DISCHARGED -8999,2022-09-11,15702.215911687625,170,Elective,2022-09-17,Inconclusive,8999,205,4,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9001,2022-10-12,25216.236316628874,246,Elective,2022-10-28,Abnormal,9001,497,4,14,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -9002,2021-02-22,14059.115889418728,248,Emergency,2021-03-12,Inconclusive,9002,334,0,24,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9003,2022-05-08,29362.31441022983,347,Urgent,2022-05-14,Abnormal,9003,78,4,15,,,,DISCHARGED -9004,2020-09-06,15749.302925232005,221,Urgent,2020-10-02,Inconclusive,9004,69,4,2,,,,DISCHARGED -9005,2021-09-17,43393.65425095729,137,Elective,2021-10-03,Inconclusive,9005,26,4,10,,,,DISCHARGED -9006,2020-03-28,8766.898674793429,438,Elective,2020-04-23,Inconclusive,9006,270,0,10,,,,DISCHARGED -9007,2020-04-26,13777.319364682857,464,Elective,2020-05-20,Normal,9007,49,4,9,,,,DISCHARGED -9008,2019-08-09,12926.293857749148,186,Urgent,2019-09-01,Inconclusive,9008,291,2,1,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -9010,2020-04-22,40075.6639036937,299,Elective,2020-05-21,Normal,9010,246,0,19,,,,DISCHARGED -9011,2019-01-14,14805.486471993025,217,Elective,2019-02-13,Abnormal,9011,263,1,4,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -9012,2020-08-29,42216.44940298435,129,Elective,2020-09-28,Inconclusive,9012,78,4,22,,,,DISCHARGED -9013,2019-01-15,9110.661612663942,473,Elective,2019-01-21,Inconclusive,9013,386,3,22,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -9014,2021-10-11,6635.995533243206,391,Urgent,2021-11-06,Inconclusive,9014,189,0,24,,,,DISCHARGED -9015,2018-12-23,9725.55642941671,258,Urgent,2019-01-16,Normal,9015,46,1,28,,,,DISCHARGED -9016,2021-07-22,22499.5888991289,467,Urgent,2021-08-10,Inconclusive,9016,460,2,7,,,,DISCHARGED -9017,2020-03-07,47725.05935888982,479,Emergency,2020-03-25,Normal,9017,360,1,12,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9018,2019-09-06,45814.58180829432,276,Elective,2019-09-14,Normal,9018,353,4,14,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -9020,2021-06-05,6052.482315462576,237,Emergency,2021-06-25,Abnormal,9020,471,3,1,,,,DISCHARGED -9022,2019-05-31,5402.833460534351,410,Elective,2019-06-09,Abnormal,9022,487,4,11,,,,DISCHARGED -9023,2019-04-19,48779.537910585495,235,Elective,2019-05-18,Abnormal,9023,351,1,23,,,,DISCHARGED -9024,2021-03-30,47431.90570159217,472,Urgent,2021-04-17,Normal,9024,188,0,7,,,,DISCHARGED -9025,2019-07-14,4600.008462547212,108,Elective,2019-08-05,Inconclusive,9025,415,3,20,,,,DISCHARGED -9027,2021-05-17,1739.106108275013,222,Urgent,2021-06-16,Normal,9027,255,3,28,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9028,2020-12-24,34865.241658574785,398,Emergency,2021-01-12,Abnormal,9028,221,1,18,,,,DISCHARGED -9029,2019-04-11,23130.84142407352,245,Emergency,2019-04-14,Normal,9029,371,4,24,,,,DISCHARGED -9031,2019-01-02,20414.82208651168,210,Urgent,2019-01-31,Abnormal,9031,240,1,27,,,,DISCHARGED -9032,2019-01-31,41697.874001312906,458,Urgent,2019-03-02,Normal,9032,268,3,22,,,,DISCHARGED -9033,2019-01-08,48391.14147288998,295,Urgent,2019-01-13,Abnormal,9033,0,1,0,,,,DISCHARGED -9034,2022-05-02,41756.77426243366,337,Elective,2022-05-27,Inconclusive,9034,33,3,7,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9035,2020-08-05,13041.684990853948,280,Elective,2020-08-28,Normal,9035,445,4,9,,,,DISCHARGED -9036,2022-03-30,42964.941605907065,352,Elective,2022-04-21,Normal,9036,78,0,12,,,,DISCHARGED -9037,2019-01-29,11222.608729303662,318,Elective,2019-02-11,Normal,9037,235,0,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9039,2021-12-05,5585.951554729145,477,Urgent,2021-12-15,Abnormal,9039,333,1,21,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9040,2021-02-25,27505.07437219164,464,Urgent,2021-03-01,Abnormal,9040,376,3,8,,,,DISCHARGED -9041,2019-12-11,44867.8638072376,234,Elective,2019-12-12,Abnormal,9041,348,0,9,,,,DISCHARGED -9042,2022-02-27,41457.56377363006,105,Urgent,2022-03-05,Abnormal,9042,97,3,13,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9043,2020-12-20,43405.73356794137,257,Elective,2021-01-19,Inconclusive,9043,81,4,23,,,,DISCHARGED -9044,2023-04-10,42718.14619517718,135,Urgent,,Normal,9044,454,1,29,,,,OPEN -9045,2020-02-12,14688.627736285349,143,Emergency,2020-02-22,Inconclusive,9045,476,3,10,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -9046,2019-07-19,19994.69628873585,470,Urgent,2019-07-28,Abnormal,9046,414,1,13,,,,DISCHARGED -9047,2019-08-11,12083.688667707274,485,Elective,2019-09-06,Abnormal,9047,191,3,29,,,,DISCHARGED -9048,2022-03-02,44427.00578342563,180,Urgent,2022-03-21,Normal,9048,252,3,2,,,,DISCHARGED -9049,2019-09-17,40416.1045034484,357,Urgent,2019-10-07,Inconclusive,9049,408,4,28,,,,DISCHARGED -9050,2020-07-03,37843.55399166356,120,Urgent,2020-07-04,Inconclusive,9050,37,1,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9051,2021-07-18,44415.90473238212,178,Elective,2021-07-29,Abnormal,9051,13,2,15,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9052,2021-05-16,26578.871163079235,228,Emergency,2021-05-23,Normal,9052,391,3,19,,,,DISCHARGED -9053,2020-01-14,8114.22304823118,293,Emergency,2020-02-03,Inconclusive,9053,346,3,29,,,,DISCHARGED -9054,2019-12-30,30015.78133206465,198,Elective,2020-01-19,Normal,9054,309,0,16,,,,DISCHARGED -9055,2021-05-16,36560.71526928349,301,Emergency,2021-06-01,Inconclusive,9055,385,1,4,,,,DISCHARGED -9056,2021-03-06,13414.902698189984,259,Emergency,2021-03-20,Abnormal,9056,208,2,25,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -9057,2019-01-09,33745.52133752985,302,Emergency,2019-01-19,Abnormal,9057,356,4,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9058,2020-01-01,37448.58950307509,351,Urgent,2020-01-11,Inconclusive,9058,461,2,16,,,,DISCHARGED -9059,2022-03-13,41365.99900053181,436,Emergency,2022-03-20,Abnormal,9059,88,4,19,,,,DISCHARGED -9060,2019-03-04,20613.58693324452,495,Elective,2019-03-06,Normal,9060,55,2,21,,,,DISCHARGED -9061,2023-08-27,20051.093613361045,148,Urgent,2023-09-04,Normal,9061,93,2,10,,,,DISCHARGED -9062,2023-02-03,9318.109792301088,149,Elective,2023-02-15,Abnormal,9062,92,1,11,,,,DISCHARGED -9063,2023-01-20,14688.05525672029,455,Elective,2023-02-07,Abnormal,9063,339,0,24,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9064,2023-10-19,42913.03552456971,269,Emergency,2023-10-27,Inconclusive,9064,84,2,26,,,,DISCHARGED -9065,2023-09-08,1811.5322525903173,447,Elective,2023-09-20,Abnormal,9065,444,3,23,,,,DISCHARGED -9066,2022-12-24,34238.72727724299,280,Emergency,2023-01-17,Inconclusive,9066,244,3,1,,,,DISCHARGED -9067,2020-09-30,40647.756070176656,407,Elective,2020-10-10,Inconclusive,9067,21,3,26,,,,DISCHARGED -9069,2019-08-08,29235.717758505325,121,Emergency,2019-08-16,Abnormal,9069,290,0,18,,,,DISCHARGED -9070,2020-07-13,19300.80935426816,370,Emergency,2020-07-16,Abnormal,9070,484,2,25,,,,DISCHARGED -9071,2020-01-21,7622.071570457409,224,Elective,2020-02-17,Abnormal,9071,271,4,28,,,,DISCHARGED -9073,2021-09-03,24704.99934384552,264,Emergency,2021-09-29,Normal,9073,305,4,4,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -9074,2020-07-15,28072.3500940625,262,Elective,2020-07-21,Inconclusive,9074,121,1,10,,,,DISCHARGED -9075,2019-03-20,8156.966032298364,452,Emergency,2019-04-06,Inconclusive,9075,127,0,22,,,,DISCHARGED -9076,2022-12-03,45387.88189075296,179,Urgent,2022-12-08,Inconclusive,9076,112,2,18,,,,DISCHARGED -9077,2020-08-05,38174.646162379686,146,Emergency,2020-08-23,Normal,9077,426,3,27,,,,DISCHARGED -9078,2023-10-30,11566.110209267605,409,Urgent,2023-11-03,Abnormal,9078,272,0,6,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -9079,2022-10-24,20677.59158730373,271,Emergency,2022-10-26,Inconclusive,9079,335,0,20,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9080,2022-02-27,28577.12688175262,483,Elective,2022-03-21,Normal,9080,441,2,25,,,,DISCHARGED -9081,2022-06-26,9158.547203367772,195,Elective,2022-07-17,Abnormal,9081,129,1,21,,,,DISCHARGED -9082,2019-08-06,19497.1185288297,153,Emergency,2019-08-23,Inconclusive,9082,131,1,5,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9083,2023-05-11,28022.26742703769,426,Urgent,,Abnormal,9083,84,1,10,,,,OPEN -9084,2020-09-23,31184.880606871666,385,Emergency,2020-09-30,Normal,9084,422,3,26,,,,DISCHARGED -9085,2019-06-02,27108.26641112268,241,Elective,2019-06-21,Abnormal,9085,481,3,13,,,,DISCHARGED -9086,2020-01-04,15921.235407007502,230,Emergency,2020-01-15,Normal,9086,349,2,27,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -9087,2021-08-16,32916.66277012341,122,Urgent,2021-09-10,Abnormal,9087,389,1,3,,,,DISCHARGED -9088,2019-12-18,38890.94391235366,333,Emergency,2020-01-15,Inconclusive,9088,80,2,27,,,,DISCHARGED -9090,2023-02-05,6723.376785837038,368,Emergency,2023-02-18,Normal,9090,486,1,7,,,,DISCHARGED -9091,2021-12-22,32553.871186127188,459,Urgent,2022-01-18,Inconclusive,9091,472,0,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9092,2022-01-07,14114.800108453635,295,Elective,2022-01-18,Normal,9092,324,4,1,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -9093,2020-10-09,38708.22762271941,166,Emergency,2020-10-13,Inconclusive,9093,68,4,24,,,,DISCHARGED -9094,2020-11-08,47121.86592697616,137,Emergency,2020-11-09,Abnormal,9094,147,1,10,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9095,2019-12-19,11554.0692389646,412,Elective,2019-12-24,Normal,9095,447,2,27,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9096,2022-03-12,6095.279708524971,129,Urgent,2022-03-20,Abnormal,9096,15,3,19,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -9097,2021-11-09,1540.0041442287657,145,Elective,2021-11-20,Abnormal,9097,306,1,21,,,,DISCHARGED -9098,2020-01-04,32508.75338095534,151,Urgent,2020-01-07,Inconclusive,9098,104,1,29,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9099,2022-08-30,6870.61826161369,145,Elective,2022-09-29,Inconclusive,9099,164,3,6,,,,DISCHARGED -9100,2019-01-21,38855.98088303855,478,Elective,2019-01-28,Normal,9100,487,1,3,,,,DISCHARGED -9101,2023-01-24,37962.27052585737,141,Emergency,2023-02-11,Inconclusive,9101,200,0,23,,,,DISCHARGED -9102,2021-10-02,39286.80404588618,347,Urgent,2021-10-22,Inconclusive,9102,196,3,28,,,,DISCHARGED -9103,2023-03-15,29654.08826834418,158,Urgent,2023-03-24,Abnormal,9103,425,0,13,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9104,2019-12-30,31300.28518632404,156,Elective,2020-01-26,Abnormal,9104,184,4,25,,,,DISCHARGED -9105,2022-02-19,3919.8757597064746,428,Elective,2022-02-20,Normal,9105,321,3,23,,,,DISCHARGED -9106,2022-12-29,28406.254402941053,266,Emergency,2023-01-17,Inconclusive,9106,264,3,0,,,,DISCHARGED -9107,2021-02-23,16912.606878360537,273,Emergency,2021-02-26,Inconclusive,9107,362,2,23,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9108,2022-03-12,17293.558492254306,471,Urgent,2022-04-05,Inconclusive,9108,99,2,25,,,,DISCHARGED -9109,2020-05-08,19440.584963511104,147,Emergency,2020-05-18,Normal,9109,341,3,29,,,,DISCHARGED -9111,2023-09-16,1636.173851281305,144,Elective,2023-09-28,Normal,9111,319,4,11,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -9113,2020-01-28,45709.62795360011,414,Emergency,2020-02-06,Normal,9113,213,1,18,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9114,2023-09-15,39668.90185316746,172,Elective,2023-10-10,Inconclusive,9114,277,2,4,,,,DISCHARGED -9115,2020-05-05,1880.322966540844,384,Urgent,2020-05-31,Abnormal,9115,161,4,29,,,,DISCHARGED -9116,2020-04-30,49136.017199237045,232,Emergency,2020-05-05,Inconclusive,9116,438,4,25,,,,DISCHARGED -9117,2022-10-30,18484.01112658948,240,Elective,2022-11-07,Normal,9117,156,2,7,,,,DISCHARGED -9119,2022-12-26,11421.4245875114,350,Urgent,2023-01-11,Inconclusive,9119,421,1,10,,,,DISCHARGED -9120,2023-08-03,43819.890745822966,419,Elective,2023-08-29,Abnormal,9120,250,2,21,,,,DISCHARGED -9121,2021-05-05,33593.18577373371,425,Emergency,2021-05-18,Normal,9121,365,4,3,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9122,2022-07-10,14213.243831598911,126,Elective,2022-07-15,Normal,9122,96,0,14,,,,DISCHARGED -9123,2022-12-26,30845.43076070712,207,Elective,2023-01-14,Abnormal,9123,17,2,19,,,,DISCHARGED -9124,2021-08-10,3962.8255015053296,331,Urgent,2021-08-30,Inconclusive,9124,326,4,11,,,,DISCHARGED -9125,2018-12-18,41428.57399137461,292,Elective,2018-12-21,Normal,9125,448,2,19,,,,DISCHARGED -9126,2023-09-04,28087.521955188604,200,Elective,,Normal,9126,382,4,21,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",OPEN -9127,2019-04-29,6795.909152097385,155,Elective,2019-05-12,Inconclusive,9127,96,1,22,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9128,2022-04-27,26105.81430282644,123,Urgent,2022-05-05,Inconclusive,9128,0,4,28,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9129,2020-01-14,23861.395863975704,307,Emergency,2020-01-29,Abnormal,9129,215,3,20,,,,DISCHARGED -9130,2022-04-01,46894.36288157077,395,Emergency,2022-04-10,Inconclusive,9130,131,0,9,,,,DISCHARGED -9131,2022-10-15,32665.798488631368,161,Elective,2022-10-30,Normal,9131,259,4,29,,,,DISCHARGED -9132,2022-09-05,8021.494408912946,401,Urgent,2022-09-20,Normal,9132,124,2,23,,,,DISCHARGED -9133,2023-07-10,10153.685752398243,495,Emergency,2023-07-13,Abnormal,9133,81,2,15,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9134,2019-09-19,35046.63257233002,391,Elective,2019-10-13,Inconclusive,9134,282,4,22,,,,DISCHARGED -9135,2023-05-26,32647.80942820762,348,Urgent,2023-06-07,Abnormal,9135,170,3,7,,,,DISCHARGED -9136,2020-05-18,22610.8375483538,357,Elective,2020-05-22,Abnormal,9136,58,4,19,,,,DISCHARGED -9137,2020-08-16,48790.5976304974,307,Urgent,2020-08-26,Normal,9137,31,1,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -9138,2020-01-06,31867.740481754296,140,Urgent,2020-01-22,Inconclusive,9138,160,3,28,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9139,2023-10-27,11306.550792601443,110,Urgent,2023-11-18,Abnormal,9139,283,4,5,,,,DISCHARGED -9140,2020-12-26,30646.709999666367,194,Emergency,2021-01-09,Abnormal,9140,105,0,2,,,,DISCHARGED -9141,2019-07-23,31593.6860575208,417,Elective,2019-08-12,Normal,9141,104,3,28,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9142,2022-07-14,30117.14651273541,160,Emergency,2022-08-01,Inconclusive,9142,438,4,7,,,,DISCHARGED -9143,2022-01-19,40893.66789528081,281,Emergency,2022-02-13,Abnormal,9143,227,0,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9144,2023-01-02,12707.296002540905,321,Urgent,,Abnormal,9144,187,4,22,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",OPEN -9145,2020-05-10,43962.38794955955,316,Elective,2020-06-04,Abnormal,9145,69,1,9,,,,DISCHARGED -9146,2020-01-19,23492.26290128188,484,Urgent,2020-02-14,Normal,9146,317,2,4,,,,DISCHARGED -9147,2020-06-02,46174.22599965044,275,Emergency,2020-06-13,Abnormal,9147,463,4,10,,,,DISCHARGED -9148,2021-08-07,14429.22163061138,378,Urgent,2021-08-13,Abnormal,9148,289,3,3,,,,DISCHARGED -9149,2020-05-06,24056.935522750093,471,Elective,2020-06-04,Inconclusive,9149,86,4,16,,,,DISCHARGED -9150,2019-01-21,44002.48718363696,271,Elective,2019-02-06,Normal,9150,369,4,25,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9151,2020-05-08,47390.49293494775,461,Emergency,2020-05-24,Abnormal,9151,361,4,2,,,,DISCHARGED -9152,2020-10-24,6691.812759987741,291,Emergency,2020-11-19,Inconclusive,9152,471,4,17,,,,DISCHARGED -9153,2022-08-01,37015.50889465102,193,Urgent,2022-08-12,Inconclusive,9153,55,3,7,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9154,2019-01-30,45946.51214299432,370,Urgent,2019-02-07,Inconclusive,9154,112,3,29,,,,DISCHARGED -9155,2020-07-19,28445.73494624793,239,Emergency,2020-07-22,Abnormal,9155,12,4,23,,,,DISCHARGED -9156,2022-02-16,4090.581059082534,266,Elective,2022-03-09,Inconclusive,9156,439,2,11,,,,DISCHARGED -9157,2022-12-09,33388.53859236135,310,Elective,2022-12-27,Inconclusive,9157,17,4,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9158,2020-10-10,42680.12977919788,264,Emergency,2020-10-11,Normal,9158,181,3,15,,,,DISCHARGED -9159,2022-05-19,25301.234037396716,267,Urgent,2022-05-25,Abnormal,9159,460,1,13,,,,DISCHARGED -9161,2019-04-26,24260.336634343654,254,Urgent,2019-05-07,Inconclusive,9161,112,4,20,,,,DISCHARGED -9162,2023-04-01,31811.795148321813,185,Elective,,Normal,9162,228,4,15,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,OPEN -9164,2021-05-03,45060.35200754853,453,Urgent,2021-05-20,Normal,9164,170,4,26,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9165,2022-08-06,34216.25761307277,253,Elective,2022-08-20,Abnormal,9165,294,4,3,,,,DISCHARGED -9166,2023-07-05,47306.08356532561,346,Emergency,2023-07-31,Inconclusive,9166,188,0,0,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9167,2022-10-01,39659.8386443888,181,Elective,2022-10-17,Abnormal,9167,425,4,0,,,,DISCHARGED -9168,2023-01-26,1032.6402799537905,435,Emergency,2023-02-13,Abnormal,9168,464,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9169,2021-12-26,1497.440621496697,489,Elective,2022-01-19,Inconclusive,9169,78,3,21,,,,DISCHARGED -9170,2021-05-06,13067.426497220697,452,Urgent,2021-05-14,Abnormal,9170,145,0,14,,,,DISCHARGED -9171,2021-08-13,12533.814445348706,347,Elective,2021-09-09,Normal,9171,406,4,19,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9172,2021-07-02,40389.991448140885,305,Elective,2021-07-09,Inconclusive,9172,181,2,19,,,,DISCHARGED -9173,2022-06-08,18806.551321118328,362,Urgent,2022-06-09,Normal,9173,498,4,2,,,,DISCHARGED -9176,2023-04-23,37147.200363707,399,Emergency,,Normal,9176,285,3,13,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -9177,2023-07-06,13732.020872628313,239,Emergency,2023-07-18,Normal,9177,249,1,8,,,,DISCHARGED -9178,2020-09-09,6473.06041160084,236,Urgent,2020-10-09,Normal,9178,353,1,18,,,,DISCHARGED -9179,2019-02-06,20591.37548132204,496,Urgent,2019-02-24,Abnormal,9179,313,2,7,,,,DISCHARGED -9180,2019-03-22,19699.639448510745,366,Emergency,2019-04-10,Inconclusive,9180,195,4,1,,,,DISCHARGED -9181,2018-12-05,40051.3889055392,349,Elective,2018-12-22,Abnormal,9181,322,0,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -9182,2020-01-07,23341.601693308086,125,Elective,2020-01-25,Abnormal,9182,70,4,0,,,,DISCHARGED -9183,2020-04-09,36187.796011793485,295,Urgent,2020-05-06,Abnormal,9183,247,2,10,,,,DISCHARGED -9184,2020-12-14,17809.366508878404,313,Emergency,2020-12-23,Normal,9184,145,2,4,,,,DISCHARGED -9185,2022-07-28,39649.465913420114,113,Elective,2022-08-09,Normal,9185,105,2,1,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",DISCHARGED -9186,2021-11-30,17758.48286453917,464,Urgent,2021-12-23,Inconclusive,9186,262,1,26,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9187,2021-12-17,31630.19317380787,248,Elective,2021-12-20,Normal,9187,295,4,12,,,,DISCHARGED -9188,2019-11-15,18519.21312014216,410,Emergency,2019-12-15,Normal,9188,69,4,16,,,,DISCHARGED -9190,2022-01-01,35644.04666024292,469,Elective,2022-01-10,Abnormal,9190,469,0,16,,,,DISCHARGED -9191,2022-07-10,3043.838664053392,232,Emergency,2022-07-22,Normal,9191,192,2,17,,,,DISCHARGED -9192,2023-09-02,28812.1329791255,467,Emergency,2023-09-20,Normal,9192,67,2,20,,,,DISCHARGED -9194,2021-01-25,32768.46758967712,266,Urgent,2021-02-12,Abnormal,9194,493,3,27,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9195,2021-11-06,27916.00787108927,104,Emergency,2021-11-07,Normal,9195,304,3,8,,,,DISCHARGED -9196,2022-02-18,22474.98793606993,133,Emergency,2022-03-06,Inconclusive,9196,51,1,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9197,2022-09-28,43030.7212216746,339,Emergency,2022-10-12,Normal,9197,369,4,27,,,,DISCHARGED -9198,2021-11-03,7065.089630541504,348,Emergency,2021-12-03,Normal,9198,362,0,19,,,,DISCHARGED -9199,2022-09-29,11936.925147111628,355,Emergency,2022-10-08,Abnormal,9199,284,0,2,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -9200,2019-07-24,38494.16460678756,416,Emergency,2019-08-13,Abnormal,9200,404,2,7,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9201,2021-08-12,20649.82852327101,150,Urgent,2021-08-28,Normal,9201,473,0,2,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -9203,2022-11-22,18810.1634733766,500,Urgent,2022-11-26,Inconclusive,9203,333,2,0,,,,DISCHARGED -9204,2023-05-25,40109.3980092654,450,Elective,2023-05-27,Normal,9204,8,4,19,,,,DISCHARGED -9205,2021-12-25,26442.436843884712,276,Emergency,2022-01-14,Abnormal,9205,250,0,26,,,,DISCHARGED -9206,2022-03-05,26277.13785238277,244,Emergency,2022-03-07,Inconclusive,9206,430,2,12,,,,DISCHARGED -9207,2023-07-15,33692.742282837906,112,Emergency,2023-07-18,Inconclusive,9207,331,4,20,,,,DISCHARGED -9208,2023-01-08,17786.095130184985,122,Urgent,,Normal,9208,297,4,4,,,,OPEN -9209,2019-02-05,33846.15076436708,248,Elective,2019-02-17,Abnormal,9209,434,2,15,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9210,2021-05-27,38276.2385915472,313,Elective,2021-06-08,Inconclusive,9210,183,2,20,,,,DISCHARGED -9211,2020-05-18,5416.551710982865,314,Elective,2020-06-11,Abnormal,9211,178,1,23,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9213,2022-06-10,19405.74377833543,269,Emergency,2022-07-06,Abnormal,9213,197,4,15,,,,DISCHARGED -9215,2019-03-20,10706.034589100109,136,Emergency,2019-04-17,Normal,9215,127,2,23,,,,DISCHARGED -9216,2019-07-15,28900.61587404047,292,Elective,2019-07-23,Abnormal,9216,19,4,11,,,,DISCHARGED -9217,2023-06-09,45920.88391953048,144,Elective,2023-07-06,Abnormal,9217,471,0,12,,,,DISCHARGED -9218,2022-11-26,25881.00320533265,146,Emergency,2022-12-17,Inconclusive,9218,410,3,3,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9219,2020-10-02,11079.52216643536,271,Urgent,2020-10-30,Abnormal,9219,421,3,8,,,,DISCHARGED -9220,2022-09-20,41310.60455345712,219,Urgent,2022-09-26,Normal,9220,327,2,15,,,,DISCHARGED -9221,2022-10-03,47097.00310462988,246,Elective,2022-10-18,Abnormal,9221,64,2,0,,,,DISCHARGED -9222,2019-05-18,14677.465308173922,150,Elective,2019-06-16,Inconclusive,9222,181,4,4,,,,DISCHARGED -9223,2020-03-24,20176.54747515125,194,Elective,2020-04-01,Inconclusive,9223,240,2,20,,,,DISCHARGED -9224,2021-06-21,28438.63022199069,176,Elective,2021-06-26,Abnormal,9224,368,4,4,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -9225,2023-06-18,42590.11774975663,236,Urgent,2023-06-19,Abnormal,9225,23,2,23,,,,DISCHARGED -9226,2020-10-08,8827.320776535924,148,Urgent,2020-11-06,Abnormal,9226,383,4,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9227,2020-05-02,19640.89683994048,287,Urgent,2020-05-05,Inconclusive,9227,430,2,18,,,,DISCHARGED -9228,2023-02-20,8533.906785612762,384,Urgent,,Inconclusive,9228,454,1,8,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -9229,2023-01-07,23038.82920872588,162,Urgent,,Normal,9229,82,4,28,,,,OPEN -9230,2021-03-12,24628.035065105712,306,Elective,2021-03-26,Normal,9230,469,1,26,,,,DISCHARGED -9232,2020-11-08,31961.91967515936,113,Emergency,2020-11-24,Inconclusive,9232,318,1,7,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -9233,2022-03-20,22426.243495701518,147,Elective,2022-03-27,Abnormal,9233,184,1,18,,,,DISCHARGED -9234,2019-11-02,20842.397571364767,275,Emergency,2019-11-16,Inconclusive,9234,438,1,17,,,,DISCHARGED -9235,2019-03-05,33766.84910407517,451,Emergency,2019-03-06,Normal,9235,315,0,14,,,,DISCHARGED -9236,2020-09-26,45109.45059540842,305,Elective,2020-10-18,Inconclusive,9236,98,3,3,,,,DISCHARGED -9238,2019-01-02,43350.3038008802,354,Urgent,2019-01-18,Abnormal,9238,61,0,14,,,,DISCHARGED -9239,2020-06-29,10448.804318961562,457,Urgent,2020-07-17,Normal,9239,285,2,12,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9240,2019-08-29,19038.58205291466,186,Emergency,2019-09-23,Abnormal,9240,476,2,27,,,,DISCHARGED -9241,2019-01-31,21487.35912003917,131,Emergency,2019-02-13,Abnormal,9241,21,3,17,,,,DISCHARGED -9242,2021-04-26,25595.851509823988,160,Emergency,2021-05-07,Abnormal,9242,458,3,19,,,,DISCHARGED -9243,2021-04-21,21375.61766477089,305,Elective,2021-05-16,Normal,9243,211,3,4,,,,DISCHARGED -9244,2022-01-07,7155.059016050976,254,Urgent,2022-01-08,Normal,9244,125,1,17,,,,DISCHARGED -9245,2022-10-08,46881.14090052211,256,Elective,2022-10-15,Inconclusive,9245,412,0,27,,,,DISCHARGED -9246,2018-11-07,25543.61222507702,338,Elective,2018-11-27,Inconclusive,9246,498,2,7,,,,DISCHARGED -9247,2018-11-21,36127.45278042385,125,Urgent,2018-12-11,Abnormal,9247,424,0,0,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -9249,2021-03-07,23932.090249903224,351,Elective,2021-03-27,Inconclusive,9249,41,0,18,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9250,2019-12-06,24059.718542100163,472,Elective,2019-12-21,Inconclusive,9250,97,0,22,,,,DISCHARGED -9251,2023-03-02,32678.741347794406,374,Elective,2023-03-23,Normal,9251,448,3,25,,,,DISCHARGED -9253,2023-08-31,39000.19084064411,482,Elective,2023-09-16,Inconclusive,9253,30,3,16,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -9254,2020-12-05,20629.373432074124,218,Emergency,2020-12-30,Abnormal,9254,157,2,28,,,,DISCHARGED -9256,2022-03-29,41013.94113700745,295,Urgent,2022-04-03,Inconclusive,9256,111,2,26,,,,DISCHARGED -9257,2023-09-26,29226.52072758039,195,Urgent,2023-10-04,Abnormal,9257,401,2,1,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9258,2019-02-23,31895.23822280346,210,Urgent,2019-03-10,Abnormal,9258,246,0,18,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9259,2018-11-23,28646.345338695905,364,Urgent,2018-12-09,Abnormal,9259,121,3,29,,,,DISCHARGED -9260,2023-02-04,37691.09231623789,209,Urgent,,Abnormal,9260,272,1,15,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -9261,2023-10-17,17421.4615553139,251,Elective,2023-11-12,Normal,9261,293,0,29,,,,DISCHARGED -9262,2019-02-01,19507.32151239824,468,Elective,2019-02-27,Inconclusive,9262,397,4,17,,,,DISCHARGED -9263,2022-07-08,16143.559236297968,241,Elective,2022-07-15,Abnormal,9263,470,0,1,,,,DISCHARGED -9264,2023-01-26,31769.193030406743,467,Urgent,2023-02-17,Inconclusive,9264,472,3,27,,,,DISCHARGED -9266,2021-06-07,19681.998200715934,404,Urgent,2021-06-30,Inconclusive,9266,206,4,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9267,2022-05-23,24669.582619731795,145,Urgent,2022-06-11,Normal,9267,109,0,5,,,,DISCHARGED -9269,2023-04-28,30477.159338650137,130,Urgent,2023-05-16,Normal,9269,439,3,6,,,,DISCHARGED -9270,2023-03-15,35848.73746620928,416,Emergency,2023-04-12,Normal,9270,277,3,5,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -9271,2020-10-13,42732.72129217082,166,Elective,2020-11-05,Normal,9271,450,1,26,,,,DISCHARGED -9272,2021-06-15,11341.775820989484,112,Elective,2021-06-27,Abnormal,9272,55,0,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9273,2022-10-22,27854.42974682749,459,Emergency,2022-11-03,Normal,9273,374,3,8,,,,DISCHARGED -9275,2021-12-19,21613.846233016448,396,Elective,2022-01-08,Abnormal,9275,402,2,7,,,,DISCHARGED -9276,2021-12-06,19878.80640734216,386,Urgent,2021-12-18,Normal,9276,56,3,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -9277,2020-05-22,11822.494922749092,265,Urgent,2020-05-26,Normal,9277,427,1,23,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9278,2020-08-13,25331.852437222253,199,Elective,2020-09-12,Abnormal,9278,481,3,21,,,,DISCHARGED -9279,2020-07-27,10712.844483669409,296,Urgent,2020-08-08,Normal,9279,290,0,20,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9280,2022-07-15,26731.998537993,121,Elective,2022-07-18,Normal,9280,113,0,8,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9282,2020-11-21,44202.60650873288,166,Emergency,2020-12-01,Normal,9282,380,4,11,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -9283,2019-05-20,25827.760275844485,179,Emergency,2019-06-14,Normal,9283,384,0,17,,,,DISCHARGED -9284,2019-11-21,5061.508708162552,166,Emergency,2019-12-10,Normal,9284,307,4,22,,,,DISCHARGED -9285,2020-05-03,30565.47657359989,396,Urgent,2020-05-24,Abnormal,9285,340,2,5,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9287,2022-11-21,19615.077338255043,323,Urgent,2022-12-10,Inconclusive,9287,476,1,22,,,,DISCHARGED -9288,2021-08-01,29820.11001362812,415,Urgent,2021-08-07,Inconclusive,9288,197,2,27,,,,DISCHARGED -9289,2022-02-11,9535.904015048776,168,Emergency,2022-03-03,Abnormal,9289,420,4,3,,,,DISCHARGED -9290,2020-08-30,48623.35444411356,404,Emergency,2020-09-23,Abnormal,9290,320,3,24,,,,DISCHARGED -9291,2021-08-12,27691.66794939068,152,Emergency,2021-08-29,Normal,9291,178,3,6,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9292,2023-02-06,8501.851987704971,234,Emergency,2023-03-04,Inconclusive,9292,384,2,17,,,,DISCHARGED -9293,2020-06-18,49838.14628926682,295,Elective,2020-06-20,Inconclusive,9293,218,3,28,,,,DISCHARGED -9295,2023-09-15,26099.46667518135,137,Emergency,2023-09-27,Inconclusive,9295,276,4,19,,,,DISCHARGED -9296,2021-09-19,48329.15474719292,133,Urgent,2021-10-18,Inconclusive,9296,436,1,4,,,,DISCHARGED -9297,2021-12-31,24511.625240985803,320,Emergency,2022-01-22,Normal,9297,15,0,17,,,,DISCHARGED -9298,2021-11-29,5047.726365789606,306,Urgent,2021-12-21,Normal,9298,491,4,9,,,,DISCHARGED -9299,2022-02-12,24868.731572862245,209,Urgent,2022-03-12,Normal,9299,378,4,7,,,,DISCHARGED -9300,2019-05-30,44371.56612753764,222,Emergency,2019-06-16,Abnormal,9300,60,0,0,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9301,2022-09-21,48879.92025953608,166,Elective,2022-10-01,Inconclusive,9301,53,0,14,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9302,2019-04-08,6917.4583773330405,307,Emergency,2019-04-13,Abnormal,9302,167,1,2,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9303,2018-12-31,39182.239327105686,362,Urgent,2019-01-17,Normal,9303,25,1,14,,,,DISCHARGED -9305,2023-03-16,49665.22442631546,385,Emergency,2023-04-13,Inconclusive,9305,335,1,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -9306,2021-12-12,14325.041915361202,369,Elective,2021-12-13,Abnormal,9306,475,3,0,,,,DISCHARGED -9307,2019-03-31,4777.118150278067,389,Emergency,2019-04-07,Inconclusive,9307,64,4,20,,,,DISCHARGED -9308,2019-09-29,5338.355443452173,275,Emergency,2019-10-10,Normal,9308,99,0,7,,,,DISCHARGED -9309,2019-02-02,14861.22317444336,120,Emergency,2019-02-15,Normal,9309,73,4,6,,,,DISCHARGED -9310,2019-06-03,35704.01456552509,420,Emergency,2019-07-01,Abnormal,9310,191,4,8,,,,DISCHARGED -9311,2019-09-24,37962.74655368364,352,Urgent,2019-10-15,Abnormal,9311,170,1,17,,,,DISCHARGED -9312,2020-01-27,24363.8256371307,106,Emergency,2020-02-03,Abnormal,9312,272,1,11,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -9313,2020-03-20,19209.9541309703,226,Urgent,2020-04-07,Normal,9313,376,4,7,,,,DISCHARGED -9314,2020-06-14,24081.536172408447,489,Elective,2020-07-09,Abnormal,9314,186,1,7,,,,DISCHARGED -9315,2021-12-10,12770.306970049183,450,Urgent,2021-12-30,Normal,9315,22,3,29,,,,DISCHARGED -9316,2022-01-23,1758.2493908085812,251,Elective,2022-02-07,Normal,9316,390,0,5,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9317,2018-12-19,21621.459770268644,336,Urgent,2019-01-03,Normal,9317,427,4,2,,,,DISCHARGED -9318,2023-02-04,29037.788393762683,317,Elective,2023-03-03,Normal,9318,180,0,1,,,,DISCHARGED -9320,2020-06-27,22688.33874544689,196,Elective,2020-06-29,Abnormal,9320,326,3,13,,,,DISCHARGED -9321,2022-09-11,4952.327522480191,449,Urgent,2022-09-20,Inconclusive,9321,107,1,7,,,,DISCHARGED -9323,2019-11-18,16297.872161767751,342,Elective,2019-12-18,Inconclusive,9323,334,2,5,,,,DISCHARGED -9324,2019-01-05,46451.51134859765,220,Emergency,2019-01-26,Inconclusive,9324,161,3,3,,,,DISCHARGED -9325,2020-02-26,32906.75375044161,225,Elective,2020-03-13,Inconclusive,9325,301,2,4,,,,DISCHARGED -9327,2023-04-16,1282.4935905657246,210,Elective,,Abnormal,9327,492,0,20,,,,OPEN -9329,2019-02-17,37623.28059260853,324,Elective,2019-03-12,Inconclusive,9329,451,4,12,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -9330,2022-04-15,25266.668359697534,250,Elective,2022-05-10,Inconclusive,9330,205,1,8,,,,DISCHARGED -9331,2021-10-04,11546.981424233449,408,Emergency,2021-10-24,Abnormal,9331,77,3,12,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9332,2020-01-02,20328.887634743107,278,Emergency,2020-01-03,Inconclusive,9332,15,1,28,,,,DISCHARGED -9333,2021-11-25,36342.65227117117,183,Urgent,2021-11-29,Inconclusive,9333,326,2,8,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -9334,2023-08-17,25154.555652474508,368,Elective,2023-08-28,Abnormal,9334,95,2,23,,,,DISCHARGED -9335,2019-01-06,18472.705147173838,143,Emergency,2019-01-19,Abnormal,9335,146,4,23,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9336,2020-11-25,5949.344774226577,164,Emergency,2020-11-28,Abnormal,9336,1,2,15,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -9337,2021-03-14,17451.117258502367,192,Elective,2021-04-02,Inconclusive,9337,9,4,11,,,,DISCHARGED -9338,2022-11-25,32168.443553115478,340,Urgent,2022-12-13,Inconclusive,9338,433,3,1,,,,DISCHARGED -9339,2023-08-25,47469.151036631054,373,Emergency,2023-09-10,Abnormal,9339,124,4,29,,,,DISCHARGED -9340,2019-12-29,18154.347850080874,407,Urgent,2020-01-17,Inconclusive,9340,80,2,18,,,,DISCHARGED -9341,2022-04-29,24676.963650681057,109,Urgent,2022-05-06,Inconclusive,9341,484,0,29,,,,DISCHARGED -9342,2020-10-03,32774.278099476694,389,Elective,2020-10-27,Inconclusive,9342,139,4,15,,,,DISCHARGED -9343,2021-03-16,29153.87533034293,376,Urgent,2021-04-12,Normal,9343,325,1,23,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9344,2022-09-24,39678.65823724333,313,Urgent,2022-10-01,Inconclusive,9344,149,0,12,,,,DISCHARGED -9345,2021-01-21,46876.45885847635,201,Urgent,2021-02-03,Inconclusive,9345,287,4,4,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9346,2023-01-27,38679.95763303203,294,Urgent,2023-02-10,Normal,9346,360,1,22,,,,DISCHARGED -9347,2022-10-31,19038.612746642943,153,Emergency,2022-11-09,Inconclusive,9347,339,0,29,,,,DISCHARGED -9348,2022-02-18,46066.49345544951,169,Urgent,2022-03-04,Abnormal,9348,128,4,23,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -9349,2023-09-25,42093.41236687576,285,Emergency,,Inconclusive,9349,437,3,5,,,,OPEN -9350,2020-03-01,7201.922452657804,257,Emergency,2020-03-20,Abnormal,9350,238,1,20,,,,DISCHARGED -9351,2019-03-19,35295.25308937945,191,Emergency,2019-04-03,Abnormal,9351,57,3,23,,,,DISCHARGED -9352,2020-03-15,26805.84481648384,148,Urgent,2020-04-14,Abnormal,9352,197,2,16,,,,DISCHARGED -9353,2023-09-18,23561.063561966712,486,Urgent,2023-09-26,Inconclusive,9353,210,4,16,,,,DISCHARGED -9354,2021-09-30,10544.000809207651,423,Emergency,2021-10-15,Normal,9354,401,4,16,,,,DISCHARGED -9355,2022-08-05,21427.434062808486,473,Emergency,2022-08-28,Abnormal,9355,389,1,2,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9356,2022-05-21,38694.149033370406,299,Urgent,2022-06-06,Inconclusive,9356,44,4,25,,,,DISCHARGED -9357,2020-11-14,22402.21199359324,134,Elective,2020-11-15,Inconclusive,9357,96,2,12,,,,DISCHARGED -9358,2021-09-15,28085.982626306013,272,Urgent,2021-10-03,Abnormal,9358,278,4,11,,,,DISCHARGED -9359,2021-09-21,49676.42731793135,273,Elective,2021-09-28,Inconclusive,9359,22,0,5,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -9362,2022-08-05,42393.01836700056,392,Urgent,2022-09-02,Abnormal,9362,409,3,21,,,,DISCHARGED -9363,2022-07-05,27869.598900321653,207,Emergency,2022-07-28,Normal,9363,460,2,20,,,,DISCHARGED -9364,2021-07-11,9982.07424634433,368,Elective,2021-07-15,Normal,9364,390,2,28,,,,DISCHARGED -9365,2020-08-02,22650.760475787447,451,Emergency,2020-08-17,Normal,9365,334,3,12,,,,DISCHARGED -9366,2018-11-09,40119.37505328199,185,Urgent,2018-11-27,Normal,9366,43,3,13,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9367,2021-07-05,25083.939536984348,316,Urgent,2021-07-23,Normal,9367,26,2,6,,,,DISCHARGED -9369,2019-09-08,31441.23447042926,334,Elective,2019-10-02,Normal,9369,281,3,4,,,,DISCHARGED -9371,2019-02-18,31200.18080146332,388,Elective,2019-03-18,Abnormal,9371,96,1,13,,,,DISCHARGED -9372,2020-04-27,16679.97902794942,283,Elective,2020-04-30,Inconclusive,9372,462,3,17,,,,DISCHARGED -9373,2022-02-04,34570.43253912493,202,Urgent,2022-03-05,Abnormal,9373,35,0,3,,,,DISCHARGED -9374,2018-11-23,23339.00144209056,390,Elective,2018-11-28,Abnormal,9374,108,0,0,,,,DISCHARGED -9375,2021-09-09,35204.14174780302,140,Emergency,2021-09-25,Normal,9375,54,1,6,,,,DISCHARGED -9376,2023-10-01,36422.75218530123,365,Elective,2023-10-23,Abnormal,9376,191,3,19,,,,DISCHARGED -9378,2021-06-04,15032.48734788492,432,Emergency,2021-06-25,Normal,9378,218,0,12,,,,DISCHARGED -9380,2023-05-15,47757.80644395418,343,Emergency,2023-05-26,Inconclusive,9380,184,4,3,,,,DISCHARGED -9381,2021-01-11,11247.279517713832,358,Emergency,2021-02-07,Abnormal,9381,68,3,12,,,,DISCHARGED -9382,2021-06-15,33927.88221774943,236,Emergency,2021-06-16,Normal,9382,316,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9383,2018-11-16,46118.1806193116,278,Urgent,2018-12-14,Inconclusive,9383,129,3,2,,,,DISCHARGED -9384,2020-11-22,49994.98474012479,296,Urgent,2020-11-28,Inconclusive,9384,54,2,7,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -9385,2023-02-16,46667.939352190166,232,Emergency,2023-03-13,Abnormal,9385,377,2,19,,,,DISCHARGED -9386,2019-03-14,29405.67708895468,170,Emergency,2019-03-23,Abnormal,9386,96,0,7,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -9387,2022-01-17,5314.574677601878,403,Elective,2022-01-29,Inconclusive,9387,335,2,24,,,,DISCHARGED -9388,2020-02-11,20946.11573278365,428,Elective,2020-02-15,Normal,9388,86,1,16,,,,DISCHARGED -9389,2020-10-23,33266.615764341244,118,Elective,2020-11-08,Abnormal,9389,293,0,14,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9390,2019-04-15,27881.59117570333,251,Emergency,2019-04-25,Inconclusive,9390,118,1,3,,,,DISCHARGED -9391,2020-09-23,37615.2162952283,399,Urgent,2020-10-15,Normal,9391,207,1,5,,,,DISCHARGED -9392,2022-08-06,46442.46664257765,199,Emergency,2022-09-02,Inconclusive,9392,333,2,23,,,,DISCHARGED -9393,2021-05-31,21405.019699251,380,Emergency,2021-06-19,Normal,9393,412,2,29,,,,DISCHARGED -9394,2023-08-29,27974.34037210844,496,Urgent,2023-09-09,Abnormal,9394,153,1,21,,,,DISCHARGED -9395,2022-03-23,38826.99348414473,191,Urgent,2022-03-25,Abnormal,9395,34,2,27,,,,DISCHARGED -9396,2020-09-23,18925.58099027542,494,Urgent,2020-09-29,Abnormal,9396,78,2,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9397,2021-09-17,49148.49027845049,224,Urgent,2021-09-21,Inconclusive,9397,66,2,9,,,,DISCHARGED -9398,2023-10-24,47518.05280498618,197,Urgent,2023-11-17,Abnormal,9398,342,3,3,,,,DISCHARGED -9399,2021-11-01,38332.05113260467,103,Urgent,2021-11-08,Normal,9399,412,1,8,,,,DISCHARGED -9400,2019-05-08,32331.495205226205,457,Emergency,2019-05-30,Normal,9400,33,4,15,,,,DISCHARGED -9401,2021-01-28,23091.741414290507,458,Emergency,2021-02-24,Normal,9401,96,1,6,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -9402,2019-10-11,1792.4246196991949,428,Emergency,2019-10-19,Normal,9402,168,0,13,,,,DISCHARGED -9403,2019-04-19,35201.62942549824,475,Emergency,2019-04-28,Inconclusive,9403,168,2,26,,,,DISCHARGED -9404,2019-01-20,9084.79242942949,391,Urgent,2019-01-24,Normal,9404,150,2,5,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9405,2020-10-22,7182.445706240468,188,Elective,2020-11-02,Inconclusive,9405,70,4,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9406,2021-09-22,27475.719219408817,340,Urgent,2021-10-20,Normal,9406,2,0,17,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9407,2020-11-21,17433.153686754224,367,Urgent,2020-12-13,Inconclusive,9407,313,3,11,,,,DISCHARGED -9408,2021-06-07,40652.26497962092,481,Urgent,2021-06-22,Abnormal,9408,31,1,21,,,,DISCHARGED -9409,2020-08-24,2164.925691532292,471,Elective,2020-09-12,Abnormal,9409,286,3,26,,,,DISCHARGED -9411,2019-01-17,40389.12344940273,385,Emergency,2019-02-03,Inconclusive,9411,81,0,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9412,2021-09-29,49666.21654235537,488,Urgent,2021-10-23,Normal,9412,42,4,0,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9414,2022-06-04,12741.717323206023,446,Urgent,2022-06-08,Inconclusive,9414,390,0,14,,,,DISCHARGED -9415,2020-05-31,3934.350554801208,383,Urgent,2020-06-07,Abnormal,9415,104,4,14,,,,DISCHARGED -9416,2020-01-08,34556.18080207123,494,Urgent,2020-01-10,Abnormal,9416,0,3,26,,,,DISCHARGED -9418,2023-09-24,23507.982618731963,292,Urgent,2023-09-26,Abnormal,9418,60,3,15,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9419,2021-02-19,21561.71216792462,238,Elective,2021-03-18,Abnormal,9419,269,0,20,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -9420,2022-05-30,35047.35970688111,274,Emergency,2022-06-05,Abnormal,9420,179,0,0,,,,DISCHARGED -9422,2018-11-06,37071.55079513312,476,Urgent,2018-11-08,Abnormal,9422,223,2,28,,,,DISCHARGED -9423,2019-05-24,35893.53826316144,421,Emergency,2019-06-16,Normal,9423,5,4,2,,,,DISCHARGED -9424,2021-05-13,31995.895731988447,372,Elective,2021-06-07,Normal,9424,102,2,11,,,,DISCHARGED -9425,2021-10-18,29794.51556332412,417,Emergency,2021-11-01,Abnormal,9425,9,1,27,,,,DISCHARGED -9426,2023-08-03,36944.42218527525,215,Urgent,2023-08-20,Inconclusive,9426,70,1,27,,,,DISCHARGED -9427,2021-11-07,8886.046223776952,327,Emergency,2021-11-21,Normal,9427,89,0,6,,,,DISCHARGED -9429,2021-11-11,34227.00302465879,178,Elective,2021-11-28,Normal,9429,225,3,4,,,,DISCHARGED -9430,2021-03-15,23325.616210738157,172,Emergency,2021-03-17,Normal,9430,157,1,27,,,,DISCHARGED -9431,2022-06-02,44960.75213210133,191,Urgent,2022-06-18,Normal,9431,227,1,25,,,,DISCHARGED -9432,2020-06-10,18996.551498971363,366,Emergency,2020-07-04,Inconclusive,9432,404,2,0,,,,DISCHARGED -9433,2019-09-25,31334.069244997445,171,Elective,2019-10-04,Abnormal,9433,125,2,0,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9435,2021-05-18,6894.148215034962,250,Urgent,2021-05-21,Abnormal,9435,443,1,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -9436,2021-02-15,40706.28232850206,486,Emergency,2021-02-18,Normal,9436,208,0,7,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9438,2020-06-24,21893.440392859677,135,Emergency,2020-07-08,Inconclusive,9438,96,2,10,,,,DISCHARGED -9439,2022-04-21,21771.5999866856,391,Emergency,2022-05-08,Abnormal,9439,73,1,13,,,,DISCHARGED -9440,2020-09-02,27047.145959020592,348,Emergency,2020-09-16,Inconclusive,9440,114,3,28,,,,DISCHARGED -9442,2020-11-02,45081.99019792554,320,Emergency,2020-11-14,Normal,9442,190,2,24,,,,DISCHARGED -9443,2018-11-25,20121.179009483803,115,Elective,2018-12-16,Normal,9443,494,1,22,,,,DISCHARGED -9444,2020-08-20,32826.24184837564,275,Elective,2020-09-04,Abnormal,9444,169,4,12,,,,DISCHARGED -9445,2020-08-05,5866.316845229658,468,Emergency,2020-08-31,Normal,9445,306,2,18,,,,DISCHARGED -9446,2022-03-12,47899.53619504728,408,Urgent,2022-04-07,Normal,9446,447,4,11,,,,DISCHARGED -9447,2020-05-22,41036.06865480509,372,Urgent,2020-06-15,Inconclusive,9447,203,2,21,,,,DISCHARGED -9448,2021-03-24,8697.372146952988,206,Emergency,2021-04-02,Inconclusive,9448,55,2,18,,,,DISCHARGED -9449,2019-03-08,14001.503518408868,476,Urgent,2019-03-16,Inconclusive,9449,207,4,25,,,,DISCHARGED -9450,2022-09-03,22539.709852770786,212,Urgent,2022-09-30,Abnormal,9450,40,0,3,,,,DISCHARGED -9451,2020-05-12,9156.881161793448,340,Elective,2020-05-16,Abnormal,9451,31,1,27,,,,DISCHARGED -9452,2022-03-13,18674.170884767744,114,Emergency,2022-03-28,Abnormal,9452,14,0,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -9453,2021-01-07,20987.895485764057,287,Urgent,2021-01-27,Abnormal,9453,61,0,2,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -9454,2021-12-13,3841.900370166045,258,Elective,2021-12-25,Inconclusive,9454,154,1,25,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -9455,2023-08-18,45043.78266147874,314,Urgent,2023-09-01,Normal,9455,283,3,5,,,,DISCHARGED -9456,2019-02-24,35467.44207633017,461,Emergency,2019-02-27,Normal,9456,208,0,4,,,,DISCHARGED -9457,2019-11-08,22277.64873448645,346,Elective,2019-11-29,Abnormal,9457,319,0,10,,,,DISCHARGED -9458,2018-12-09,23976.9671148463,154,Elective,2018-12-13,Inconclusive,9458,493,0,24,,,,DISCHARGED -9459,2019-05-07,38112.84266866648,350,Emergency,2019-06-06,Normal,9459,186,3,8,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9460,2020-08-31,35544.9684576915,320,Emergency,2020-09-05,Normal,9460,497,2,2,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -9461,2023-05-27,25660.622524077677,343,Emergency,2023-06-02,Abnormal,9461,441,4,28,,,,DISCHARGED -9462,2020-01-04,17973.91591587562,334,Elective,2020-02-03,Normal,9462,129,4,8,,,,DISCHARGED -9464,2019-07-26,44655.75764866704,404,Emergency,2019-08-02,Inconclusive,9464,126,3,28,,,,DISCHARGED -9465,2023-02-22,20851.09255626411,419,Elective,,Inconclusive,9465,291,0,11,,,,OPEN -9466,2019-11-17,9669.683157364569,189,Elective,2019-12-12,Inconclusive,9466,113,4,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -9467,2022-10-24,6326.766676443482,300,Emergency,2022-10-25,Inconclusive,9467,198,3,19,,,,DISCHARGED -9468,2021-06-07,24893.81409562455,270,Elective,2021-06-09,Inconclusive,9468,12,1,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -9469,2022-07-05,26273.94774221461,160,Emergency,2022-07-27,Normal,9469,270,4,20,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -9470,2020-02-03,20235.35948019497,157,Emergency,2020-02-16,Abnormal,9470,88,1,11,,,,DISCHARGED -9471,2021-07-26,23083.1476405667,339,Emergency,2021-08-11,Normal,9471,214,0,24,,,,DISCHARGED -9472,2021-01-12,28869.71412013064,477,Elective,2021-01-27,Abnormal,9472,443,4,17,,,,DISCHARGED -9473,2023-04-12,20216.30580383417,487,Elective,2023-05-05,Abnormal,9473,277,3,3,,,,DISCHARGED -9474,2021-04-01,15796.458488449449,295,Urgent,2021-04-19,Abnormal,9474,446,2,9,,,,DISCHARGED -9475,2022-11-15,36694.77298838087,124,Emergency,2022-12-05,Normal,9475,473,4,17,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -9476,2023-07-13,16087.62088676793,438,Elective,2023-07-22,Normal,9476,480,4,29,,,,DISCHARGED -9477,2019-03-25,39706.23109483318,120,Urgent,2019-04-04,Abnormal,9477,202,4,7,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9479,2018-12-12,15730.346149122504,283,Urgent,2019-01-11,Normal,9479,73,4,8,,,,DISCHARGED -9481,2022-10-14,27435.353300764546,417,Emergency,2022-10-18,Inconclusive,9481,24,3,18,,,,DISCHARGED -9483,2019-07-25,3514.00445738335,164,Elective,2019-08-02,Abnormal,9483,100,3,12,,,,DISCHARGED -9484,2019-05-04,15027.643479342656,311,Emergency,2019-05-21,Abnormal,9484,175,2,24,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -9485,2022-08-23,36845.368376636754,153,Emergency,2022-08-29,Inconclusive,9485,426,3,5,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9486,2021-02-10,29932.570757261343,401,Urgent,2021-02-14,Inconclusive,9486,116,3,21,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -9487,2019-01-13,40339.722335899256,498,Emergency,2019-02-09,Inconclusive,9487,165,0,6,,,,DISCHARGED -9488,2021-07-27,13107.239897771657,496,Emergency,2021-08-18,Inconclusive,9488,40,0,27,,,,DISCHARGED -9489,2022-04-08,41842.10834290922,227,Emergency,2022-04-24,Normal,9489,428,1,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9490,2022-07-20,38383.377799786205,280,Elective,2022-08-19,Abnormal,9490,343,2,5,,,,DISCHARGED -9491,2022-12-02,5050.940121350248,117,Emergency,2023-01-01,Inconclusive,9491,423,0,10,,,,DISCHARGED -9492,2019-07-15,30642.479451448653,493,Urgent,2019-07-19,Normal,9492,365,2,16,,,,DISCHARGED -9493,2022-09-21,22871.061343627684,236,Emergency,2022-10-17,Inconclusive,9493,119,2,18,,,,DISCHARGED -9494,2023-02-25,31725.32117221325,285,Emergency,,Normal,9494,96,4,27,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,OPEN -9495,2020-11-17,38111.29381293717,175,Emergency,2020-12-12,Abnormal,9495,144,2,24,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -9496,2023-08-16,34769.0322217827,395,Elective,2023-09-05,Abnormal,9496,215,4,11,,,,DISCHARGED -9497,2022-09-12,12988.80289254354,471,Elective,2022-10-08,Normal,9497,228,1,20,,,,DISCHARGED -9498,2020-10-31,41742.00475799513,229,Urgent,2020-11-13,Normal,9498,312,1,20,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -9499,2023-09-02,16665.621666478204,395,Urgent,2023-09-06,Normal,9499,129,1,23,,,,DISCHARGED -9500,2021-09-27,18732.85244892231,164,Elective,2021-10-24,Abnormal,9500,351,4,26,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9501,2020-12-19,18620.42327871196,170,Emergency,2021-01-03,Inconclusive,9501,376,4,26,,,,DISCHARGED -9502,2019-04-01,33858.91413381646,296,Elective,2019-04-17,Abnormal,9502,317,1,12,,,,DISCHARGED -9503,2023-06-25,47742.40124760268,466,Urgent,,Abnormal,9503,471,4,17,,,,OPEN -9504,2023-04-23,45316.06452075124,430,Emergency,2023-05-23,Normal,9504,136,3,28,,,,DISCHARGED -9505,2020-09-25,28162.98037111235,395,Elective,2020-10-08,Inconclusive,9505,323,3,6,,,,DISCHARGED -9506,2023-01-09,31633.72509066413,125,Elective,,Inconclusive,9506,336,4,24,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",OPEN -9508,2018-11-06,34022.650854211926,136,Emergency,2018-11-29,Normal,9508,272,4,22,,,,DISCHARGED -9509,2022-01-18,29665.20936050615,497,Urgent,2022-01-25,Normal,9509,116,0,27,,,,DISCHARGED -9510,2021-01-06,43285.47124727106,271,Elective,2021-01-27,Inconclusive,9510,305,0,4,,,,DISCHARGED -9511,2023-05-25,4943.335248138081,142,Emergency,2023-06-03,Inconclusive,9511,367,2,28,,,,DISCHARGED -9512,2018-11-02,25491.45995824052,243,Urgent,2018-11-29,Abnormal,9512,93,2,15,,,,DISCHARGED -9513,2019-02-09,20321.171156775617,108,Elective,2019-03-05,Inconclusive,9513,167,2,21,,,,DISCHARGED -9514,2019-05-14,15054.431375192453,426,Emergency,2019-05-22,Inconclusive,9514,441,1,3,,,,DISCHARGED -9515,2022-12-09,16119.092077507516,442,Emergency,2022-12-17,Normal,9515,202,3,29,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -9516,2021-12-10,31823.36128271307,286,Elective,2022-01-06,Abnormal,9516,340,1,27,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -9517,2019-03-05,20575.37328588353,125,Urgent,2019-04-03,Normal,9517,148,4,22,,,,DISCHARGED -9518,2020-11-06,33948.779627094314,482,Urgent,2020-12-06,Normal,9518,401,0,0,,,,DISCHARGED -9519,2021-10-31,17038.06636584955,450,Emergency,2021-11-29,Normal,9519,182,4,3,,,,DISCHARGED -9520,2022-05-24,4520.428471040106,210,Emergency,2022-05-29,Inconclusive,9520,412,4,2,,,,DISCHARGED -9521,2021-03-19,33779.91029091437,442,Elective,2021-03-27,Abnormal,9521,151,0,28,,,,DISCHARGED -9522,2022-12-16,3639.468565416816,493,Elective,2023-01-02,Inconclusive,9522,73,4,3,,,,DISCHARGED -9523,2019-09-18,8593.398870021509,298,Emergency,2019-10-15,Abnormal,9523,364,2,0,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9524,2023-08-16,17684.762010789018,325,Emergency,2023-08-29,Abnormal,9524,400,0,11,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9525,2023-09-22,42808.60659685682,105,Emergency,,Normal,9525,273,4,12,,,,OPEN -9526,2022-10-08,25360.569096716343,279,Elective,2022-10-16,Inconclusive,9526,41,2,1,,,,DISCHARGED -9527,2022-10-27,46447.27727137179,270,Elective,2022-11-18,Abnormal,9527,495,2,27,,,,DISCHARGED -9528,2023-01-30,34669.98243188253,107,Emergency,2023-02-03,Inconclusive,9528,211,3,26,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -9529,2020-10-28,1548.3368775235483,257,Emergency,2020-11-14,Abnormal,9529,100,2,28,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -9530,2020-08-10,20926.538191285246,137,Elective,2020-08-20,Inconclusive,9530,44,1,8,,,,DISCHARGED -9531,2021-08-13,8221.348155076532,372,Elective,2021-09-07,Abnormal,9531,81,0,6,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -9532,2019-10-14,24724.842171256714,491,Elective,2019-10-22,Abnormal,9532,16,0,12,,,,DISCHARGED -9533,2021-02-18,48460.2450274802,416,Emergency,2021-03-05,Abnormal,9533,72,0,21,,,,DISCHARGED -9534,2020-10-12,4979.105338812041,480,Urgent,2020-10-22,Inconclusive,9534,13,4,1,,,,DISCHARGED -9535,2022-09-12,33656.77039022831,385,Urgent,2022-10-08,Normal,9535,432,4,0,,,,DISCHARGED -9537,2020-05-31,23589.279140744387,462,Elective,2020-06-04,Normal,9537,156,1,17,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9538,2019-07-21,36036.69929517323,197,Emergency,2019-08-02,Normal,9538,222,2,6,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -9540,2022-02-03,32516.290620891294,439,Elective,2022-02-27,Abnormal,9540,131,4,17,,,,DISCHARGED -9542,2020-11-04,34759.860804141885,348,Elective,2020-11-30,Abnormal,9542,337,2,18,,,,DISCHARGED -9543,2023-04-28,4781.314784376214,202,Urgent,2023-05-24,Inconclusive,9543,403,2,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9544,2021-08-04,43560.90099564828,229,Urgent,2021-09-01,Normal,9544,375,4,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -9545,2020-02-19,40025.17456123845,238,Urgent,2020-03-02,Inconclusive,9545,375,4,11,,,,DISCHARGED -9547,2019-03-25,24197.014145831803,474,Urgent,2019-04-11,Abnormal,9547,46,1,10,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -9548,2018-11-15,32330.303114066508,148,Urgent,2018-12-08,Inconclusive,9548,106,3,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9549,2021-10-23,42219.02802517201,305,Urgent,2021-10-25,Normal,9549,107,0,29,,,,DISCHARGED -9550,2019-09-09,28750.639875588982,124,Elective,2019-09-30,Normal,9550,264,4,26,,,,DISCHARGED -9551,2019-04-16,8609.459057071082,358,Urgent,2019-05-04,Abnormal,9551,204,4,8,,,,DISCHARGED -9552,2021-08-05,21971.32859928623,379,Elective,2021-08-23,Normal,9552,78,2,27,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9553,2022-11-11,26554.52056586294,120,Emergency,2022-12-10,Normal,9553,154,3,3,,,,DISCHARGED -9554,2023-10-08,22516.2563831082,308,Urgent,2023-11-04,Abnormal,9554,270,4,6,,,,DISCHARGED -9555,2019-03-11,19400.181370063765,442,Elective,2019-04-03,Normal,9555,475,3,16,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -9556,2020-05-09,38277.62299470359,341,Emergency,2020-05-19,Abnormal,9556,484,0,10,,,,DISCHARGED -9557,2020-02-17,48914.00079112096,353,Elective,2020-03-03,Normal,9557,246,2,26,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9558,2022-01-05,12266.84149046783,158,Emergency,2022-02-01,Abnormal,9558,18,1,1,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -9559,2018-11-14,11503.794815587926,173,Elective,2018-12-06,Abnormal,9559,345,0,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -9560,2022-01-23,45007.351578048445,485,Urgent,2022-02-07,Normal,9560,435,3,17,,,,DISCHARGED -9561,2023-10-11,28805.913758427363,146,Elective,2023-11-08,Normal,9561,25,3,21,,,,DISCHARGED -9562,2019-02-28,13529.073534769725,350,Emergency,2019-03-09,Normal,9562,216,0,28,,,,DISCHARGED -9564,2020-04-29,32514.971787729737,304,Urgent,2020-05-24,Abnormal,9564,153,3,25,,,,DISCHARGED -9565,2019-10-08,37903.84442387519,286,Emergency,2019-10-25,Normal,9565,153,1,11,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9566,2020-07-18,9115.071499220208,419,Elective,2020-08-03,Normal,9566,173,1,8,,,,DISCHARGED -9568,2022-09-15,41031.31988853498,257,Urgent,2022-09-18,Abnormal,9568,91,3,10,,,,DISCHARGED -9569,2020-07-07,19786.71808836456,493,Urgent,2020-07-16,Inconclusive,9569,432,3,4,,,,DISCHARGED -9570,2019-12-24,18639.780088219784,484,Urgent,2020-01-20,Normal,9570,337,1,25,,,,DISCHARGED -9573,2021-10-30,2530.0986781064216,211,Urgent,2021-11-16,Abnormal,9573,479,3,6,,,,DISCHARGED -9574,2019-01-28,11123.52436891824,498,Emergency,2019-02-11,Abnormal,9574,180,4,28,,,,DISCHARGED -9575,2022-08-27,6078.465880220616,356,Emergency,2022-09-13,Inconclusive,9575,130,2,0,,,,DISCHARGED -9576,2019-08-02,13569.169535617571,388,Emergency,2019-08-25,Normal,9576,449,4,23,,,,DISCHARGED -9577,2019-04-08,17840.96932556043,306,Elective,2019-04-26,Normal,9577,480,3,24,,,,DISCHARGED -9578,2020-07-04,5757.23611769241,355,Elective,2020-07-29,Inconclusive,9578,297,3,28,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9579,2020-09-08,12680.731107725816,259,Emergency,2020-09-12,Inconclusive,9579,274,2,4,,,,DISCHARGED -9580,2022-09-03,37467.489815670415,293,Elective,2022-09-08,Abnormal,9580,272,3,5,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -9581,2019-01-14,47506.44548042351,448,Emergency,2019-01-29,Abnormal,9581,491,2,12,,,,DISCHARGED -9582,2020-11-30,14314.168372631711,408,Urgent,2020-12-10,Normal,9582,416,1,10,,,,DISCHARGED -9583,2021-05-06,34613.16313938826,425,Elective,2021-05-09,Abnormal,9583,75,2,7,,,,DISCHARGED -9584,2019-07-23,6220.413527115213,356,Elective,2019-08-12,Normal,9584,176,2,19,,,,DISCHARGED -9585,2022-10-17,31923.58473727357,367,Urgent,2022-11-12,Normal,9585,183,4,1,,,,DISCHARGED -9586,2023-07-21,23555.178661707552,116,Elective,2023-08-08,Abnormal,9586,318,3,14,,,,DISCHARGED -9587,2022-07-18,44028.19446047585,439,Urgent,2022-08-02,Normal,9587,130,1,9,,,,DISCHARGED -9588,2019-11-20,15929.691855087283,485,Urgent,2019-12-16,Inconclusive,9588,362,0,7,,,,DISCHARGED -9589,2019-02-11,46381.34450604894,276,Urgent,2019-02-27,Abnormal,9589,48,2,1,,,,DISCHARGED -9591,2023-04-09,12892.9774021263,371,Elective,2023-04-21,Normal,9591,54,0,20,,,,DISCHARGED -9592,2023-01-09,33264.410768208254,255,Emergency,2023-01-21,Abnormal,9592,153,3,14,,,,DISCHARGED -9593,2022-12-14,28536.187706717083,145,Elective,2022-12-25,Abnormal,9593,354,2,28,,,,DISCHARGED -9595,2021-07-20,33967.623063863786,296,Elective,2021-07-28,Normal,9595,199,0,5,,,,DISCHARGED -9597,2021-07-14,37552.19906707758,194,Urgent,2021-07-16,Abnormal,9597,307,4,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -9598,2020-08-28,24490.554625411227,390,Elective,2020-09-14,Abnormal,9598,355,0,21,,,,DISCHARGED -9599,2018-12-04,49408.03000527031,464,Emergency,2018-12-25,Normal,9599,372,4,21,,,,DISCHARGED -9600,2020-11-18,18939.732687823023,379,Elective,2020-11-21,Inconclusive,9600,117,1,2,,,,DISCHARGED -9601,2019-09-12,10703.999522457989,458,Elective,2019-10-09,Inconclusive,9601,262,3,10,,,,DISCHARGED -9602,2021-01-15,34439.13690726538,128,Urgent,2021-02-01,Normal,9602,45,0,10,,,,DISCHARGED -9603,2019-11-07,41835.3061035786,169,Emergency,2019-11-26,Normal,9603,301,2,15,,,,DISCHARGED -9604,2019-06-30,29264.76996200568,209,Urgent,2019-07-20,Normal,9604,355,3,2,,,,DISCHARGED -9605,2019-01-05,42620.34076314887,385,Elective,2019-01-20,Abnormal,9605,399,0,8,,,,DISCHARGED -9608,2019-08-06,4001.372218502296,451,Urgent,2019-08-29,Inconclusive,9608,407,2,2,,,,DISCHARGED -9609,2020-09-15,35678.65321517284,167,Emergency,2020-09-23,Abnormal,9609,188,2,18,,,,DISCHARGED -9610,2021-07-08,33989.64739884446,360,Emergency,2021-07-27,Normal,9610,309,2,10,,,,DISCHARGED -9612,2021-11-10,5651.689048138985,488,Elective,2021-12-09,Inconclusive,9612,317,2,13,,,,DISCHARGED -9613,2023-04-08,21329.582052576367,360,Urgent,2023-04-15,Abnormal,9613,128,0,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9614,2021-05-22,24040.23543122317,268,Emergency,2021-06-18,Inconclusive,9614,48,1,6,,,,DISCHARGED -9615,2021-08-04,23528.6374244111,452,Emergency,2021-08-18,Normal,9615,24,4,9,,,,DISCHARGED -9616,2020-05-24,23054.34358715714,293,Urgent,2020-05-30,Abnormal,9616,265,4,9,,,,DISCHARGED -9617,2022-05-21,1118.8311260671571,438,Urgent,2022-05-22,Inconclusive,9617,117,4,19,,,,DISCHARGED -9618,2022-08-07,20463.76918799592,482,Emergency,2022-09-03,Normal,9618,463,1,0,,,,DISCHARGED -9619,2019-06-11,39749.41489228431,378,Elective,2019-06-27,Normal,9619,143,2,5,,,,DISCHARGED -9620,2019-11-29,18682.22855805374,177,Elective,2019-12-02,Abnormal,9620,441,2,20,,,,DISCHARGED -9621,2022-10-25,26950.24528618453,298,Elective,2022-11-02,Normal,9621,199,3,13,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9622,2021-10-06,21807.003212103267,209,Elective,2021-10-23,Normal,9622,156,4,26,,,,DISCHARGED -9624,2022-03-14,28369.142535520463,336,Urgent,2022-03-21,Inconclusive,9624,486,4,1,,,,DISCHARGED -9625,2023-03-31,48532.69397319835,293,Emergency,2023-04-07,Normal,9625,347,2,5,,,,DISCHARGED -9626,2020-06-21,34251.48653543129,176,Urgent,2020-06-22,Inconclusive,9626,133,4,0,,,,DISCHARGED -9627,2021-06-19,34029.180643996275,348,Urgent,2021-07-11,Abnormal,9627,399,2,2,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9628,2022-07-11,37575.4171294518,346,Elective,2022-07-30,Abnormal,9628,147,2,3,,,,DISCHARGED -9629,2022-04-10,45440.14704771098,407,Emergency,2022-04-19,Normal,9629,335,2,12,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9630,2022-03-11,19119.35911161525,136,Elective,2022-03-28,Inconclusive,9630,70,0,2,,,,DISCHARGED -9633,2023-09-12,49331.925357798274,472,Urgent,,Abnormal,9633,232,0,14,,,,OPEN -9634,2021-02-06,16001.770406330012,155,Elective,2021-02-17,Abnormal,9634,333,0,12,,,,DISCHARGED -9635,2023-06-11,17407.914278539127,166,Emergency,2023-06-29,Normal,9635,298,0,21,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9636,2023-01-14,40591.69926562745,290,Urgent,,Abnormal,9636,153,1,10,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -9637,2019-04-24,4048.725642947292,126,Urgent,2019-05-05,Inconclusive,9637,89,3,3,,,,DISCHARGED -9638,2022-09-05,3691.849225546685,497,Elective,2022-10-04,Normal,9638,333,3,29,,,,DISCHARGED -9639,2021-02-18,12470.951401999228,452,Emergency,2021-03-03,Inconclusive,9639,198,2,16,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -9641,2022-10-27,26175.413431594963,442,Emergency,2022-11-26,Normal,9641,160,4,4,,,,DISCHARGED -9642,2021-10-01,47798.352690945954,174,Urgent,2021-10-05,Inconclusive,9642,25,0,20,,,,DISCHARGED -9643,2020-12-21,11312.338562001529,361,Emergency,2021-01-08,Abnormal,9643,120,3,24,,,,DISCHARGED -9644,2023-08-21,18171.27602925551,300,Elective,,Normal,9644,300,3,23,,,,OPEN -9645,2021-03-07,29189.589592356217,132,Elective,2021-03-24,Normal,9645,211,0,7,,,,DISCHARGED -9648,2018-12-19,35365.03687567495,423,Elective,2018-12-26,Normal,9648,62,1,20,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9649,2021-05-03,27082.46860557441,269,Elective,2021-05-17,Normal,9649,450,1,23,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9650,2020-07-08,17765.328890597513,309,Emergency,2020-07-23,Inconclusive,9650,435,3,29,,,,DISCHARGED -9651,2022-10-10,19121.81064338493,258,Urgent,2022-11-08,Abnormal,9651,67,1,9,,,,DISCHARGED -9652,2020-03-18,22691.3180079067,342,Elective,2020-04-13,Inconclusive,9652,252,0,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -9653,2019-01-11,2702.255028943887,172,Emergency,2019-01-16,Inconclusive,9653,409,3,16,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -9654,2022-12-06,42216.522948794656,490,Elective,2023-01-04,Normal,9654,458,0,27,,,,DISCHARGED -9655,2019-07-16,10475.950408255008,165,Elective,2019-08-15,Inconclusive,9655,1,1,6,,,,DISCHARGED -9656,2022-10-21,15449.024882169548,425,Urgent,2022-10-31,Abnormal,9656,397,0,26,,,,DISCHARGED -9657,2019-07-18,7498.035177188293,358,Urgent,2019-08-13,Abnormal,9657,107,1,23,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -9658,2020-01-18,16717.665164574028,345,Urgent,2020-01-24,Inconclusive,9658,285,1,18,,,,DISCHARGED -9659,2019-04-11,46941.69795646965,432,Emergency,2019-04-26,Inconclusive,9659,48,0,8,,,,DISCHARGED -9660,2019-10-15,22950.418602827987,436,Elective,2019-11-01,Abnormal,9660,139,1,23,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9661,2022-11-01,14755.68995432073,424,Emergency,2022-11-10,Abnormal,9661,217,2,1,,,,DISCHARGED -9662,2021-07-19,5870.637951863089,397,Urgent,2021-08-16,Inconclusive,9662,43,0,21,,,,DISCHARGED -9663,2021-10-16,15237.945526635076,176,Emergency,2021-10-17,Abnormal,9663,416,2,19,,,,DISCHARGED -9664,2023-04-28,12481.101145800443,348,Emergency,2023-05-06,Abnormal,9664,268,0,18,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9665,2019-12-17,42759.41513912659,491,Emergency,2020-01-13,Abnormal,9665,77,1,26,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -9666,2022-02-21,2825.8628607741107,384,Emergency,2022-03-15,Normal,9666,215,1,5,,,,DISCHARGED -9667,2019-02-18,10502.410516779371,350,Elective,2019-02-26,Inconclusive,9667,381,3,9,,,,DISCHARGED -9668,2021-04-02,9699.424772705905,293,Elective,2021-04-23,Normal,9668,97,3,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -9669,2019-05-10,20246.388784920397,182,Elective,2019-05-20,Inconclusive,9669,235,2,24,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9670,2022-10-05,20491.93058442884,183,Elective,2022-10-14,Inconclusive,9670,281,1,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -9671,2022-02-08,37989.780508136864,235,Urgent,2022-03-09,Abnormal,9671,148,3,9,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9672,2023-05-25,24899.339789045487,363,Elective,,Normal,9672,411,1,9,,,,OPEN -9673,2022-10-29,6554.936512300236,404,Emergency,2022-11-23,Inconclusive,9673,303,0,25,,,,DISCHARGED -9674,2019-03-10,37746.77903382421,463,Emergency,2019-03-21,Normal,9674,483,3,4,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -9676,2019-10-20,28148.575886522383,340,Emergency,2019-11-03,Inconclusive,9676,423,2,21,,,,DISCHARGED -9677,2022-05-29,23625.09689969844,191,Elective,2022-06-02,Inconclusive,9677,65,3,3,,,,DISCHARGED -9678,2019-04-29,19668.947533492355,250,Emergency,2019-05-23,Normal,9678,233,1,22,,,,DISCHARGED -9679,2020-09-23,17248.98840250034,420,Emergency,2020-10-08,Normal,9679,456,4,1,,,,DISCHARGED -9680,2020-11-24,17258.32127966442,357,Urgent,2020-12-16,Inconclusive,9680,86,4,6,,,,DISCHARGED -9681,2022-02-10,8639.499734471934,108,Urgent,2022-02-15,Normal,9681,78,1,17,,,,DISCHARGED -9682,2021-11-09,8106.62731560165,208,Urgent,2021-11-25,Normal,9682,204,0,16,,,,DISCHARGED -9683,2020-05-30,5818.806502327479,475,Elective,2020-06-03,Inconclusive,9683,278,3,10,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -9684,2020-04-08,32194.51375357532,178,Elective,2020-04-29,Abnormal,9684,336,4,20,,,,DISCHARGED -9685,2021-12-01,35646.35208119993,495,Urgent,2021-12-11,Inconclusive,9685,253,0,17,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9686,2019-09-03,26452.040576515148,298,Emergency,2019-09-28,Inconclusive,9686,303,1,7,,,,DISCHARGED -9687,2022-01-15,31430.89880796007,219,Elective,2022-01-16,Normal,9687,379,0,27,,,,DISCHARGED -9688,2023-09-06,47938.14487629312,193,Urgent,,Abnormal,9688,129,1,27,,,,OPEN -9690,2021-09-29,42995.60963656225,460,Urgent,2021-10-24,Normal,9690,83,3,11,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -9691,2022-10-03,7460.393199892693,396,Emergency,2022-10-14,Abnormal,9691,275,0,23,,,,DISCHARGED -9692,2019-11-23,15243.158324036942,114,Emergency,2019-11-26,Abnormal,9692,186,3,0,,,,DISCHARGED -9693,2020-09-09,11964.137562873244,320,Urgent,2020-09-26,Normal,9693,45,0,19,,,,DISCHARGED -9694,2020-08-10,6699.178105948575,172,Urgent,2020-08-14,Abnormal,9694,386,1,29,,,,DISCHARGED -9695,2023-10-26,16736.248526230556,253,Elective,2023-11-21,Inconclusive,9695,182,1,24,,,,DISCHARGED -9696,2023-01-04,11280.992523600917,138,Elective,2023-01-31,Normal,9696,267,0,20,,,,DISCHARGED -9697,2018-11-28,28638.76870546042,209,Elective,2018-12-07,Normal,9697,295,1,11,,,,DISCHARGED -9698,2020-09-28,32711.12112420037,140,Emergency,2020-10-09,Abnormal,9698,321,2,26,,,,DISCHARGED -9700,2019-04-12,5500.38352277576,339,Emergency,2019-05-11,Abnormal,9700,99,2,25,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9701,2019-04-28,28412.454889008248,220,Urgent,2019-05-07,Abnormal,9701,77,3,28,,,,DISCHARGED -9703,2019-07-27,5906.052893056745,176,Urgent,2019-08-07,Inconclusive,9703,271,2,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -9704,2020-04-12,19179.031435993384,334,Emergency,2020-05-06,Inconclusive,9704,338,2,2,,,,DISCHARGED -9705,2021-11-13,17340.573465789937,410,Emergency,2021-12-13,Abnormal,9705,161,4,4,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -9706,2018-11-02,32616.76600426902,363,Urgent,2018-11-14,Normal,9706,43,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -9707,2023-05-04,27332.66087193986,265,Elective,2023-05-29,Normal,9707,237,4,11,,,,DISCHARGED -9708,2021-07-19,28922.65913693515,149,Elective,2021-07-21,Normal,9708,133,4,12,,,,DISCHARGED -9709,2020-01-11,30019.690600064056,288,Elective,2020-02-05,Abnormal,9709,460,1,12,,,,DISCHARGED -9710,2019-11-13,45584.15560000882,263,Urgent,2019-11-27,Abnormal,9710,191,3,28,,,,DISCHARGED -9711,2020-11-22,7130.664083479242,134,Elective,2020-12-10,Normal,9711,355,3,16,,,,DISCHARGED -9712,2022-01-05,13790.50620060984,265,Urgent,2022-01-19,Normal,9712,277,2,23,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9713,2020-10-05,40687.85448176824,196,Urgent,2020-10-18,Abnormal,9713,17,3,26,,,,DISCHARGED -9714,2023-10-03,42712.67485971958,440,Elective,,Inconclusive,9714,11,2,14,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -9715,2022-08-18,43363.23023083918,170,Elective,2022-09-05,Inconclusive,9715,179,3,5,,,,DISCHARGED -9716,2022-05-19,35431.81134218681,317,Elective,2022-06-18,Inconclusive,9716,122,0,11,,,,DISCHARGED -9717,2021-05-13,13563.249041623523,161,Urgent,2021-05-23,Normal,9717,245,0,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -9718,2021-02-08,32056.25617943407,251,Urgent,2021-03-07,Abnormal,9718,221,3,3,,,,DISCHARGED -9719,2019-04-05,47026.89186132301,438,Emergency,2019-04-06,Inconclusive,9719,372,1,19,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -9720,2019-04-07,24754.647932548327,327,Elective,2019-04-22,Normal,9720,50,2,24,,,,DISCHARGED -9721,2023-10-28,43047.41106018499,405,Elective,2023-11-27,Inconclusive,9721,487,3,24,,,,DISCHARGED -9722,2020-06-14,13743.409289062054,166,Urgent,2020-07-03,Normal,9722,70,2,20,,,,DISCHARGED -9723,2023-10-05,27186.509092691125,224,Elective,2023-10-20,Abnormal,9723,479,4,11,,,,DISCHARGED -9724,2023-05-01,42847.70206225144,115,Urgent,2023-05-30,Abnormal,9724,47,3,2,,,,DISCHARGED -9725,2021-04-07,46321.489055376594,278,Emergency,2021-04-09,Abnormal,9725,18,1,16,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -9726,2023-10-07,16605.718483135443,451,Emergency,2023-10-20,Abnormal,9726,261,4,5,,,,DISCHARGED -9727,2022-04-11,38809.31012111005,240,Urgent,2022-05-03,Inconclusive,9727,83,3,23,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -9729,2019-01-16,24944.63208705401,178,Emergency,2019-01-17,Inconclusive,9729,154,0,16,,,,DISCHARGED -9730,2020-06-09,42129.350010958144,281,Emergency,2020-06-22,Normal,9730,52,3,26,,,,DISCHARGED -9731,2019-06-15,12095.117714089787,201,Urgent,2019-06-20,Inconclusive,9731,106,0,16,,,,DISCHARGED -9732,2021-11-08,21584.10229499755,272,Emergency,2021-11-26,Normal,9732,356,0,10,,,,DISCHARGED -9733,2019-10-05,22208.328318435804,318,Elective,2019-10-12,Inconclusive,9733,303,3,22,,,,DISCHARGED -9734,2022-02-19,16957.17420233623,481,Urgent,2022-02-23,Normal,9734,134,3,6,,,,DISCHARGED -9736,2022-09-24,13581.0089167484,423,Emergency,2022-10-03,Normal,9736,442,0,1,,,,DISCHARGED -9737,2022-01-07,9209.45351961647,213,Urgent,2022-02-04,Abnormal,9737,68,2,18,,,,DISCHARGED -9738,2021-10-01,11578.265499407742,236,Emergency,2021-10-23,Abnormal,9738,10,4,1,,,,DISCHARGED -9739,2022-05-31,5287.393250021994,464,Elective,2022-06-29,Normal,9739,142,1,21,,,,DISCHARGED -9740,2021-07-20,30707.487068089777,371,Emergency,2021-08-07,Inconclusive,9740,191,3,28,,,,DISCHARGED -9742,2022-11-02,25712.33842063509,236,Emergency,2022-11-19,Abnormal,9742,386,4,12,,,,DISCHARGED -9743,2019-06-20,19350.61491477125,224,Urgent,2019-07-05,Abnormal,9743,377,4,23,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9744,2019-01-30,2758.335750637233,117,Urgent,2019-02-21,Normal,9744,68,2,23,,,,DISCHARGED -9745,2021-05-07,10659.36509199032,350,Elective,2021-06-03,Inconclusive,9745,22,4,15,,,,DISCHARGED -9746,2021-02-17,40322.320481317176,146,Emergency,2021-03-13,Normal,9746,180,3,16,,,,DISCHARGED -9747,2022-07-09,49397.99886262989,382,Urgent,2022-08-03,Normal,9747,292,4,10,,,,DISCHARGED -9749,2020-06-01,29709.082207880638,404,Elective,2020-06-11,Abnormal,9749,8,3,8,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -9750,2021-08-06,18555.540732174897,355,Emergency,2021-08-25,Abnormal,9750,270,3,26,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -9751,2020-07-06,22735.21328037933,307,Elective,2020-07-07,Normal,9751,386,0,23,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9752,2022-10-03,3325.854786482901,355,Emergency,2022-10-14,Abnormal,9752,92,2,8,,,,DISCHARGED -9753,2023-08-04,34689.217904932564,237,Urgent,2023-08-26,Abnormal,9753,453,1,28,,,,DISCHARGED -9754,2020-12-18,28623.423800404795,381,Elective,2020-12-20,Inconclusive,9754,16,0,13,,,,DISCHARGED -9755,2021-08-11,47707.81839002663,270,Elective,2021-08-15,Abnormal,9755,153,1,12,,,,DISCHARGED -9756,2020-12-27,29031.933569662207,307,Urgent,2021-01-21,Normal,9756,404,3,24,,,,DISCHARGED -9757,2023-05-14,32403.867384594152,280,Emergency,2023-05-19,Inconclusive,9757,327,0,10,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -9758,2022-03-08,7013.703138185272,378,Urgent,2022-03-20,Abnormal,9758,148,4,11,,,,DISCHARGED -9759,2023-09-11,30429.17678092431,366,Urgent,2023-09-26,Inconclusive,9759,376,4,21,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9760,2022-05-23,13046.561061175236,388,Urgent,2022-06-12,Abnormal,9760,266,1,2,,,,DISCHARGED -9761,2023-03-27,30737.38612489365,150,Emergency,,Inconclusive,9761,421,3,0,,,,OPEN -9762,2022-10-06,37668.99231087265,279,Emergency,2022-10-14,Inconclusive,9762,327,1,26,,,,DISCHARGED -9763,2022-04-20,18469.36016439754,365,Emergency,2022-05-01,Normal,9763,105,2,7,,,,DISCHARGED -9765,2023-03-22,47765.5175157545,419,Urgent,2023-03-30,Abnormal,9765,471,4,25,,,,DISCHARGED -9766,2022-02-17,47699.03529922939,229,Elective,2022-03-10,Normal,9766,380,0,18,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9767,2021-04-17,23380.073571168672,396,Urgent,2021-05-08,Inconclusive,9767,34,0,12,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -9768,2022-10-04,23913.339851483797,245,Urgent,2022-10-20,Inconclusive,9768,118,0,6,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9769,2022-01-25,33910.75473829914,121,Elective,2022-02-02,Abnormal,9769,13,4,12,,,,DISCHARGED -9770,2019-08-11,6015.95267461178,176,Emergency,2019-08-28,Abnormal,9770,13,3,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -9771,2021-03-20,10800.610057635917,484,Urgent,2021-04-05,Inconclusive,9771,265,4,5,,,,DISCHARGED -9772,2019-12-03,46032.15309346579,252,Urgent,2019-12-05,Abnormal,9772,139,4,2,,,,DISCHARGED -9773,2019-02-28,36842.56870364607,157,Urgent,2019-03-23,Inconclusive,9773,293,0,5,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9774,2019-04-07,21535.95199755365,208,Emergency,2019-04-19,Normal,9774,363,4,27,,,,DISCHARGED -9775,2020-08-17,35388.82831578764,206,Emergency,2020-09-16,Normal,9775,118,0,2,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9776,2022-10-08,42470.149259777216,159,Urgent,2022-10-30,Inconclusive,9776,237,3,12,,,,DISCHARGED -9777,2020-06-27,34773.11672276814,139,Elective,2020-07-27,Abnormal,9777,33,2,12,,,,DISCHARGED -9778,2023-09-20,28835.050352851187,460,Elective,2023-09-21,Inconclusive,9778,168,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -9779,2023-01-25,40706.756367193695,382,Elective,2023-01-30,Abnormal,9779,9,1,24,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9780,2020-02-15,11879.459621555614,265,Elective,2020-03-02,Inconclusive,9780,121,2,12,,,,DISCHARGED -9781,2019-07-11,37112.45944905461,369,Elective,2019-07-12,Inconclusive,9781,400,3,0,,,,DISCHARGED -9782,2022-07-28,39823.19094686836,186,Urgent,2022-07-31,Abnormal,9782,144,2,28,,,,DISCHARGED -9783,2023-10-30,48754.92114615348,350,Elective,2023-11-18,Normal,9783,450,0,7,,,,DISCHARGED -9784,2023-06-05,23012.892520303205,438,Emergency,2023-06-19,Normal,9784,445,3,4,,,,DISCHARGED -9785,2021-06-02,2166.596844607958,361,Elective,2021-06-28,Normal,9785,222,1,19,,,,DISCHARGED -9786,2022-07-08,16899.464928324745,200,Emergency,2022-07-26,Abnormal,9786,370,0,16,,,,DISCHARGED -9787,2023-10-10,41430.88386465394,377,Elective,,Inconclusive,9787,256,0,8,,,,OPEN -9788,2020-12-06,47778.244349762965,409,Urgent,2021-01-01,Normal,9788,267,3,12,,,,DISCHARGED -9790,2023-06-08,2202.002980999018,129,Emergency,2023-07-04,Inconclusive,9790,358,3,24,,,,DISCHARGED -9792,2023-10-15,5079.171586366583,200,Emergency,2023-10-21,Abnormal,9792,3,2,12,,,,DISCHARGED -9793,2023-10-18,15276.258410256076,218,Elective,2023-11-13,Inconclusive,9793,425,1,4,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9794,2020-01-31,15014.257274069723,496,Urgent,2020-02-19,Abnormal,9794,396,2,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -9796,2020-12-17,11333.21108973169,343,Urgent,2021-01-14,Normal,9796,353,2,10,,,,DISCHARGED -9797,2020-03-23,43545.93887670325,205,Urgent,2020-03-31,Inconclusive,9797,105,0,24,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -9798,2019-07-25,3410.9377230355044,395,Emergency,2019-08-11,Normal,9798,84,3,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9799,2020-07-25,21444.502242224906,311,Emergency,2020-08-17,Inconclusive,9799,213,0,13,,,,DISCHARGED -9800,2023-02-13,44948.76988215603,257,Emergency,2023-03-15,Inconclusive,9800,120,1,24,,,,DISCHARGED -9801,2023-08-04,22781.12720747372,290,Urgent,2023-08-24,Abnormal,9801,131,2,6,,,,DISCHARGED -9802,2022-03-26,7796.311386434458,241,Elective,2022-03-31,Inconclusive,9802,337,1,23,,,,DISCHARGED -9803,2022-12-13,32113.30182993484,279,Urgent,2022-12-28,Abnormal,9803,196,3,16,,,,DISCHARGED -9805,2021-02-13,14705.97144935834,381,Urgent,2021-03-07,Normal,9805,18,3,3,,,,DISCHARGED -9807,2021-05-15,47748.71634464196,482,Elective,2021-06-05,Normal,9807,129,4,9,,,,DISCHARGED -9808,2020-03-02,42206.57159968563,369,Emergency,2020-03-28,Normal,9808,11,1,9,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9809,2022-07-30,18734.69948543802,474,Emergency,2022-08-03,Abnormal,9809,80,0,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9810,2019-02-22,39238.10515880027,328,Emergency,2019-03-13,Normal,9810,329,1,19,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9811,2019-03-19,4466.9219144162735,397,Urgent,2019-03-31,Inconclusive,9811,353,2,11,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -9812,2021-12-21,22135.06754243555,366,Elective,2022-01-19,Abnormal,9812,261,3,8,,,,DISCHARGED -9813,2020-09-01,46663.76859979641,382,Urgent,2020-09-19,Normal,9813,391,3,2,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -9814,2022-02-12,13049.755779648058,312,Urgent,2022-02-22,Inconclusive,9814,124,1,14,,,,DISCHARGED -9815,2021-02-12,17269.41067955875,456,Elective,2021-02-19,Abnormal,9815,306,1,11,,,,DISCHARGED -9816,2020-08-15,8643.200302209143,334,Elective,2020-09-07,Normal,9816,266,1,25,,,,DISCHARGED -9817,2019-11-04,34921.00392304842,329,Emergency,2019-12-03,Abnormal,9817,446,2,14,,,,DISCHARGED -9818,2019-10-10,6765.8331684450895,284,Urgent,2019-10-20,Inconclusive,9818,440,2,25,,,,DISCHARGED -9819,2020-09-18,26823.862274730447,201,Emergency,2020-10-08,Normal,9819,382,0,0,,,,DISCHARGED -9820,2019-12-12,16741.267080950478,358,Emergency,2019-12-28,Inconclusive,9820,139,1,14,,,,DISCHARGED -9821,2023-08-19,12118.785653512374,391,Emergency,2023-08-26,Abnormal,9821,328,0,10,,,,DISCHARGED -9822,2022-08-13,38642.26103114028,234,Emergency,2022-08-30,Inconclusive,9822,1,4,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -9823,2023-05-25,47915.214461528565,280,Emergency,2023-06-20,Abnormal,9823,7,2,6,,,,DISCHARGED -9825,2019-09-26,36417.61284594979,317,Emergency,2019-10-24,Inconclusive,9825,249,3,11,,,,DISCHARGED -9826,2021-03-18,37541.875298376304,113,Elective,2021-04-05,Abnormal,9826,138,4,19,,,,DISCHARGED -9827,2023-04-13,34757.78975456076,205,Elective,2023-05-06,Abnormal,9827,123,3,24,,,,DISCHARGED -9828,2021-06-09,13435.528635815212,266,Elective,2021-06-13,Normal,9828,308,4,5,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9829,2020-10-20,31488.027156085187,328,Elective,2020-11-18,Abnormal,9829,227,0,21,,,,DISCHARGED -9830,2021-06-20,21340.88365488702,165,Elective,2021-07-12,Normal,9830,9,0,2,,,,DISCHARGED -9831,2020-03-02,27189.88326150428,347,Elective,2020-03-14,Normal,9831,468,2,9,,,,DISCHARGED -9832,2021-03-13,33795.96129444848,372,Urgent,2021-03-24,Normal,9832,211,3,25,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -9833,2022-06-10,44801.62700601499,221,Elective,2022-06-30,Inconclusive,9833,111,4,20,,,,DISCHARGED -9834,2021-03-07,45206.9820431323,376,Urgent,2021-03-22,Abnormal,9834,7,1,25,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -9835,2020-09-21,42817.19779737234,285,Emergency,2020-10-18,Normal,9835,291,1,21,,,,DISCHARGED -9836,2023-05-13,28844.185454967195,246,Urgent,2023-05-31,Inconclusive,9836,476,2,29,,,,DISCHARGED -9837,2020-10-27,40771.30573754242,480,Emergency,2020-11-25,Normal,9837,361,3,3,,,,DISCHARGED -9838,2022-01-09,41197.52402614246,420,Emergency,2022-01-25,Inconclusive,9838,459,1,12,,,,DISCHARGED -9839,2022-05-21,44684.03127045113,148,Elective,2022-05-31,Abnormal,9839,252,2,18,,,,DISCHARGED -9840,2022-03-25,26692.800531825986,445,Elective,2022-04-17,Normal,9840,13,2,4,,,,DISCHARGED -9841,2020-09-11,14047.059542709438,195,Urgent,2020-10-02,Abnormal,9841,239,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9842,2023-06-19,23031.06799478597,230,Emergency,2023-06-27,Abnormal,9842,437,1,26,,,,DISCHARGED -9843,2022-12-03,37979.31092166392,352,Emergency,2022-12-25,Normal,9843,241,1,21,,,,DISCHARGED -9845,2023-03-27,26350.532740571187,272,Elective,2023-04-05,Inconclusive,9845,468,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9846,2019-06-20,38745.17587433256,275,Emergency,2019-06-22,Abnormal,9846,341,0,0,,,,DISCHARGED -9847,2021-09-06,15620.254668842545,295,Emergency,2021-09-29,Inconclusive,9847,148,1,20,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -9848,2019-07-12,20519.99016059257,220,Urgent,2019-07-23,Normal,9848,235,4,20,,,,DISCHARGED -9849,2020-08-17,42053.7688302178,338,Urgent,2020-08-19,Abnormal,9849,305,0,27,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -9850,2020-12-15,11011.46410275345,207,Elective,2021-01-13,Inconclusive,9850,477,0,15,,,,DISCHARGED -9851,2020-01-23,44496.9101828404,142,Elective,2020-02-20,Normal,9851,166,0,15,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -9852,2023-05-29,35696.85736045369,159,Urgent,2023-05-31,Abnormal,9852,19,0,15,,,,DISCHARGED -9854,2019-04-28,18184.480136417707,258,Urgent,2019-05-04,Normal,9854,215,2,27,,,,DISCHARGED -9856,2020-05-29,24240.32310302941,367,Elective,2020-06-02,Normal,9856,342,4,21,,,,DISCHARGED -9857,2022-11-19,41595.22025421151,294,Elective,2022-11-29,Inconclusive,9857,134,3,18,,,,DISCHARGED -9858,2023-03-24,42645.15112144123,252,Urgent,2023-03-25,Abnormal,9858,392,1,15,,,,DISCHARGED -9859,2020-06-30,8056.605525248469,176,Emergency,2020-07-30,Abnormal,9859,128,0,0,,,,DISCHARGED -9860,2023-10-05,34659.15796406989,414,Urgent,,Inconclusive,9860,409,3,19,,,,OPEN -9861,2023-03-22,21619.576123892017,142,Elective,2023-04-03,Normal,9861,421,2,19,,,,DISCHARGED -9862,2023-08-23,35817.969737550135,316,Emergency,2023-09-08,Inconclusive,9862,293,3,9,,,,DISCHARGED -9863,2019-12-29,48335.96428065138,146,Elective,2020-01-13,Abnormal,9863,245,0,1,,,,DISCHARGED -9864,2023-05-17,10810.151737261876,443,Urgent,2023-06-03,Inconclusive,9864,188,4,13,,,,DISCHARGED -9865,2022-05-16,23232.54753921958,382,Emergency,2022-05-24,Normal,9865,43,3,7,,,,DISCHARGED -9866,2019-04-16,31485.60579909287,390,Emergency,2019-04-20,Inconclusive,9866,85,0,5,,,,DISCHARGED -9867,2023-02-22,23193.954195134866,247,Emergency,2023-02-28,Abnormal,9867,43,0,27,,,,DISCHARGED -9868,2023-06-03,13795.300114503212,163,Elective,,Abnormal,9868,329,1,2,,,,OPEN -9870,2019-12-14,41041.61450399758,367,Emergency,2020-01-04,Inconclusive,9870,374,1,15,,,,DISCHARGED -9872,2021-06-12,4427.709908878663,398,Urgent,2021-06-21,Inconclusive,9872,445,4,16,,,,DISCHARGED -9873,2020-10-27,39196.8179375508,228,Elective,2020-11-03,Inconclusive,9873,377,1,11,,,,DISCHARGED -9874,2019-02-22,37733.90503375637,299,Urgent,2019-02-25,Inconclusive,9874,389,4,26,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9875,2021-06-27,38382.05769240431,233,Elective,2021-07-18,Inconclusive,9875,144,2,18,,,,DISCHARGED -9876,2018-11-28,40070.90994005198,107,Emergency,2018-12-18,Abnormal,9876,50,2,23,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -9879,2020-04-12,24461.09201046662,232,Emergency,2020-04-21,Abnormal,9879,241,1,19,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -9880,2023-05-28,8566.857147250108,265,Urgent,,Abnormal,9880,293,2,2,,,,OPEN -9881,2023-09-19,18698.263748536832,373,Elective,,Inconclusive,9881,407,3,12,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",OPEN -9882,2023-05-10,24288.40903048542,367,Emergency,,Inconclusive,9882,50,3,15,,,,OPEN -9883,2023-10-27,49318.25219949161,114,Emergency,2023-11-10,Normal,9883,265,3,10,,,,DISCHARGED -9886,2022-09-23,2313.393614715073,153,Urgent,2022-10-10,Inconclusive,9886,119,2,19,,,,DISCHARGED -9887,2020-12-17,14335.201916936188,326,Emergency,2020-12-30,Inconclusive,9887,199,3,26,,,,DISCHARGED -9888,2023-02-12,13307.3476128259,104,Urgent,2023-03-01,Abnormal,9888,404,4,15,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -9892,2020-11-02,32158.62433197718,319,Elective,2020-11-29,Inconclusive,9892,247,0,19,,,,DISCHARGED -9893,2022-08-04,16652.75320255519,327,Emergency,2022-08-18,Inconclusive,9893,69,1,1,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -9894,2019-02-11,39980.41430525488,142,Elective,2019-02-16,Normal,9894,340,4,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9896,2019-11-23,6858.789498835268,473,Elective,2019-12-12,Abnormal,9896,56,3,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -9897,2021-01-10,36286.222945517125,218,Emergency,2021-01-18,Inconclusive,9897,381,0,27,,,,DISCHARGED -9898,2021-11-02,9368.304069240534,409,Elective,2021-11-16,Inconclusive,9898,38,1,24,,,,DISCHARGED -9899,2022-02-23,39832.75477666103,495,Elective,2022-03-13,Normal,9899,471,4,3,,,,DISCHARGED -9901,2020-03-27,25964.156646785843,488,Emergency,2020-04-19,Inconclusive,9901,288,1,27,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9902,2019-03-14,30944.78314296131,259,Elective,2019-03-29,Abnormal,9902,442,2,16,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -9903,2023-02-24,3639.902717162287,113,Elective,2023-03-02,Normal,9903,17,3,0,,,,DISCHARGED -9904,2022-09-14,29362.847315438463,448,Elective,2022-09-15,Abnormal,9904,439,4,0,,,,DISCHARGED -9905,2018-12-04,28095.84431737133,251,Urgent,2018-12-18,Inconclusive,9905,219,4,29,,,,DISCHARGED -9906,2019-07-11,26808.05931344583,442,Emergency,2019-07-17,Inconclusive,9906,312,0,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -9907,2021-12-30,5747.392516161541,244,Urgent,2022-01-27,Inconclusive,9907,243,0,21,,,,DISCHARGED -9908,2019-05-30,47331.61914995915,454,Emergency,2019-06-24,Inconclusive,9908,351,0,11,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9909,2022-01-05,28391.15507272907,198,Emergency,2022-01-20,Abnormal,9909,459,1,5,,,,DISCHARGED -9910,2018-11-10,36241.46652564103,495,Urgent,2018-11-22,Normal,9910,303,3,5,,,,DISCHARGED -9912,2021-01-15,5656.9830731089405,234,Emergency,2021-02-06,Inconclusive,9912,297,1,24,,,,DISCHARGED -9913,2019-04-27,27286.86204746917,485,Elective,2019-05-02,Inconclusive,9913,282,3,16,,,,DISCHARGED -9914,2020-03-21,11794.209346759251,279,Emergency,2020-04-03,Inconclusive,9914,73,4,25,,,,DISCHARGED -9915,2022-10-07,20330.483167829065,296,Elective,2022-10-14,Normal,9915,109,1,21,,,,DISCHARGED -9916,2021-02-19,25956.520629540857,199,Emergency,2021-02-27,Abnormal,9916,179,1,12,,,,DISCHARGED -9917,2019-07-13,33120.34668950248,219,Emergency,2019-08-11,Abnormal,9917,425,1,7,,,,DISCHARGED -9918,2019-02-27,48186.31782177068,360,Elective,2019-03-07,Normal,9918,31,2,23,,,,DISCHARGED -9919,2019-02-06,1725.1148896641266,415,Elective,2019-02-18,Normal,9919,233,3,11,,,,DISCHARGED -9920,2018-11-17,27613.682838009183,178,Emergency,2018-12-04,Inconclusive,9920,281,3,14,,,,DISCHARGED -9921,2022-07-08,10205.114353228477,131,Urgent,2022-08-03,Abnormal,9921,24,1,18,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -9922,2020-04-20,40729.62766346608,307,Elective,2020-05-09,Inconclusive,9922,330,2,28,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9923,2023-07-29,20494.000982512905,251,Urgent,2023-08-17,Inconclusive,9923,278,1,20,,,,DISCHARGED -9925,2022-03-01,3531.068696569242,429,Elective,2022-03-23,Normal,9925,225,3,25,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9926,2023-09-06,47419.39761466359,201,Emergency,,Normal,9926,56,4,19,,,,OPEN -9927,2023-08-15,11198.217185056232,130,Elective,2023-08-27,Abnormal,9927,179,2,27,,,,DISCHARGED -9928,2019-01-30,21250.44793985744,148,Urgent,2019-02-27,Normal,9928,231,2,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9929,2021-09-27,24744.98632893047,478,Elective,2021-10-01,Normal,9929,381,1,8,,,,DISCHARGED -9930,2022-11-25,24646.93435464152,386,Emergency,2022-12-21,Inconclusive,9930,342,4,20,,,,DISCHARGED -9931,2021-01-06,21209.20306730281,360,Urgent,2021-01-26,Abnormal,9931,476,3,17,,,,DISCHARGED -9932,2023-07-17,44446.0092126594,264,Urgent,2023-07-25,Abnormal,9932,286,0,27,,,,DISCHARGED -9933,2023-07-09,18734.46151956501,154,Emergency,2023-07-27,Abnormal,9933,63,3,1,,,,DISCHARGED -9934,2019-10-15,29530.40378547967,133,Urgent,2019-11-06,Inconclusive,9934,454,3,10,,,,DISCHARGED -9935,2021-03-02,14816.249950810636,439,Elective,2021-03-14,Inconclusive,9935,231,4,22,,,,DISCHARGED -9936,2019-04-29,35092.03441461157,185,Emergency,2019-05-13,Abnormal,9936,288,2,19,,,,DISCHARGED -9937,2021-01-19,5147.765404180009,308,Elective,2021-02-04,Abnormal,9937,212,3,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9938,2022-09-21,31242.295549312053,315,Emergency,2022-09-30,Abnormal,9938,257,2,20,,,,DISCHARGED -9939,2023-02-18,11720.131219777695,342,Elective,2023-02-28,Inconclusive,9939,17,4,17,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9940,2019-11-15,46252.88787641144,175,Elective,2019-11-19,Inconclusive,9940,174,4,14,,,,DISCHARGED -9942,2020-11-11,16708.970337510567,214,Urgent,2020-11-29,Normal,9942,416,1,6,,,,DISCHARGED -9943,2019-12-12,30199.155225932805,229,Elective,2019-12-14,Inconclusive,9943,228,0,15,,,,DISCHARGED -9944,2022-04-03,6725.077713641716,185,Emergency,2022-04-21,Abnormal,9944,225,4,24,,,,DISCHARGED -9945,2023-07-21,24267.25807774405,306,Elective,2023-08-02,Normal,9945,83,4,28,,,,DISCHARGED -9946,2019-06-13,26137.619165325617,236,Elective,2019-06-18,Abnormal,9946,290,2,0,,,,DISCHARGED -9947,2019-05-04,48795.9726263526,408,Emergency,2019-05-25,Abnormal,9947,434,4,27,,,,DISCHARGED -9948,2019-12-30,27439.21562104252,125,Urgent,2020-01-10,Normal,9948,369,3,17,,,,DISCHARGED -9949,2022-02-14,4692.280656836254,451,Urgent,2022-03-10,Normal,9949,245,1,26,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9950,2023-01-10,7397.07567111418,118,Urgent,,Abnormal,9950,401,1,21,,,,OPEN -9951,2023-02-06,47210.79219383532,233,Urgent,2023-02-28,Normal,9951,109,3,7,,,,DISCHARGED -9952,2021-12-31,21104.79583255904,258,Elective,2022-01-16,Abnormal,9952,253,4,6,,,,DISCHARGED -9953,2019-07-17,10612.01005106014,333,Emergency,2019-08-03,Abnormal,9953,87,0,24,,,,DISCHARGED -9955,2023-03-11,26695.446744601653,452,Elective,2023-03-23,Abnormal,9955,71,4,29,,,,DISCHARGED -9956,2021-08-24,34762.966698467644,204,Elective,2021-09-22,Normal,9956,380,1,1,,,,DISCHARGED -9957,2020-05-29,6062.385270237259,447,Emergency,2020-06-10,Inconclusive,9957,29,0,11,,,,DISCHARGED -9958,2022-01-01,21208.288062255288,478,Urgent,2022-01-13,Normal,9958,171,2,15,,,,DISCHARGED -9959,2020-06-01,4662.825734981702,464,Elective,2020-06-12,Normal,9959,308,2,8,,,,DISCHARGED -9960,2019-07-01,31462.12268844626,478,Elective,2019-07-22,Abnormal,9960,393,4,19,,,,DISCHARGED -9961,2021-11-05,21106.01470190646,340,Elective,2021-11-22,Inconclusive,9961,342,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9962,2022-09-13,23271.652610987217,120,Elective,2022-09-27,Inconclusive,9962,435,0,14,,,,DISCHARGED -9963,2022-11-20,35072.34407888043,147,Urgent,2022-12-13,Abnormal,9963,176,0,2,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9964,2022-11-29,10615.971734907136,353,Elective,2022-12-15,Abnormal,9964,138,4,22,,,,DISCHARGED -9965,2021-10-23,11621.731148179237,245,Elective,2021-10-27,Abnormal,9965,193,1,20,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9966,2021-02-04,6929.770519816653,235,Urgent,2021-02-22,Inconclusive,9966,185,2,12,,,,DISCHARGED -9967,2023-08-21,47126.00320093231,256,Elective,2023-09-07,Normal,9967,217,0,20,,,,DISCHARGED -9968,2022-08-18,31861.53905660595,484,Elective,2022-08-26,Inconclusive,9968,163,1,27,,,,DISCHARGED -9969,2023-09-12,7716.363471943133,462,Elective,2023-09-20,Inconclusive,9969,160,4,12,,,,DISCHARGED -9970,2020-10-11,9640.998632347708,308,Emergency,2020-11-03,Abnormal,9970,430,3,1,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9971,2021-07-25,38831.70789279436,151,Emergency,2021-08-11,Abnormal,9971,12,0,5,,,,DISCHARGED -9972,2019-09-15,27648.104886261364,134,Urgent,2019-09-19,Abnormal,9972,295,3,5,,,,DISCHARGED -9973,2020-11-17,18614.469753615056,202,Urgent,2020-12-08,Abnormal,9973,88,1,11,,,,DISCHARGED -9974,2022-05-09,10021.900739617146,298,Urgent,2022-05-31,Abnormal,9974,323,2,3,,,,DISCHARGED -9975,2023-09-13,20793.03137670616,351,Urgent,2023-09-21,Normal,9975,41,1,4,,,,DISCHARGED -9976,2019-03-06,37726.18175745981,245,Elective,2019-04-05,Normal,9976,402,2,22,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9977,2020-05-24,22434.60461042568,103,Emergency,2020-05-29,Abnormal,9977,209,1,29,,,,DISCHARGED -9978,2021-03-08,4997.5802356219,170,Emergency,2021-03-31,Normal,9978,228,0,7,,,,DISCHARGED -9979,2022-01-30,14416.634915039309,307,Urgent,2022-02-19,Inconclusive,9979,349,0,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9980,2023-01-09,47369.54997726243,298,Urgent,2023-01-31,Abnormal,9980,274,3,20,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9981,2021-08-23,46629.771749257714,151,Emergency,2021-09-21,Abnormal,9981,441,1,27,,,,DISCHARGED -9982,2021-01-26,35961.40669720744,235,Elective,2021-02-13,Abnormal,9982,278,1,2,,,,DISCHARGED -9983,2022-01-22,1675.088638953351,374,Elective,2022-02-05,Abnormal,9983,250,3,22,,,,DISCHARGED -9984,2021-09-17,37181.84125741365,151,Emergency,2021-10-02,Normal,9984,309,4,7,,,,DISCHARGED -9985,2019-09-14,27476.721750744066,351,Urgent,2019-09-26,Inconclusive,9985,207,1,18,,,,DISCHARGED -9987,2022-04-18,27920.309415771462,128,Urgent,2022-05-09,Inconclusive,9987,320,1,20,,,,DISCHARGED -9989,2020-07-23,36044.46748784443,137,Elective,2020-08-15,Abnormal,9989,139,1,10,,,,DISCHARGED -9990,2020-10-30,48753.12903257892,179,Urgent,2020-11-13,Inconclusive,9990,279,4,17,,,,DISCHARGED -9991,2022-06-03,14426.402161726,265,Emergency,2022-06-07,Normal,9991,33,0,9,,,,DISCHARGED -9994,2021-12-25,16793.598395039444,341,Elective,2022-01-06,Inconclusive,9994,308,3,25,,,,DISCHARGED -9995,2022-07-29,39606.84008259848,110,Elective,2022-08-02,Abnormal,9995,391,4,27,,,,DISCHARGED -9996,2022-01-06,5995.717487831519,244,Emergency,2022-01-29,Normal,9996,17,2,19,,,,DISCHARGED -9997,2022-07-01,49559.20290467316,312,Elective,2022-07-15,Normal,9997,56,2,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9998,2020-02-06,25236.344760975877,420,Urgent,2020-02-26,Normal,9998,111,4,19,,,,DISCHARGED -9999,2023-03-22,37223.965864725855,290,Emergency,2023-04-15,Abnormal,9999,4,4,27,,,,DISCHARGED diff --git a/langchain-rag-app/source_code_step_4/docker-compose.yml b/langchain-rag-app/source_code_step_4/docker-compose.yml index d149e2b875..66042a06e0 100644 --- a/langchain-rag-app/source_code_step_4/docker-compose.yml +++ b/langchain-rag-app/source_code_step_4/docker-compose.yml @@ -1,8 +1,24 @@ -version: '3' - services: + neo4j: + image: neo4j:2026.05-community + ports: + - "7474:7474" + - "7687:7687" + environment: + - NEO4J_AUTH=neo4j/${NEO4J_PASSWORD} + - NEO4J_PLUGINS=["apoc"] + volumes: + - neo4j_data:/data + hospital_neo4j_etl: build: context: ./hospital_neo4j_etl env_file: - - .env \ No newline at end of file + - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 + depends_on: + - neo4j + +volumes: + neo4j_data: diff --git a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/Dockerfile b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/Dockerfile +++ b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/pyproject.toml b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/pyproject.toml index 35c7467ebb..eb44f09746 100644 --- a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/pyproject.toml +++ b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/pyproject.toml @@ -2,9 +2,9 @@ name = "hospital_neo4j_etl" version = "0.1" dependencies = [ - "neo4j==5.14.1", + "neo4j==6.2.0", "retry==0.9.2" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/entrypoint.sh b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/entrypoint.sh index 94764de2a7..af607f4c6a 100644 --- a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/entrypoint.sh +++ b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Running ETL to move hospital data from csvs to Neo4j..." # Run the ETL script -python hospital_bulk_csv_write.py \ No newline at end of file +python hospital_bulk_csv_write.py diff --git a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/hospital_bulk_csv_write.py b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/hospital_bulk_csv_write.py index fa7c6c161e..84d9b82766 100644 --- a/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/hospital_bulk_csv_write.py +++ b/langchain-rag-app/source_code_step_4/hospital_neo4j_etl/src/hospital_bulk_csv_write.py @@ -29,7 +29,7 @@ def _set_uniqueness_constraints(tx, node): query = f"""CREATE CONSTRAINT IF NOT EXISTS FOR (n:{node}) REQUIRE n.id IS UNIQUE;""" - _ = tx.run(query, {}) + tx.run(query, {}) @retry(tries=100, delay=10) @@ -55,7 +55,7 @@ def load_hospital_graph_from_csv() -> None: name: hospitals.hospital_name, state_name: hospitals.hospital_state}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading payer nodes") with driver.session(database="neo4j") as session: @@ -65,7 +65,7 @@ def load_hospital_graph_from_csv() -> None: MERGE (p:Payer {{id: toInteger(payers.payer_id), name: payers.payer_name}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading physician nodes") with driver.session(database="neo4j") as session: @@ -80,7 +80,7 @@ def load_hospital_graph_from_csv() -> None: salary: toFloat(physicians.salary) }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading visit nodes") with driver.session(database="neo4j") as session: @@ -103,7 +103,7 @@ def load_hospital_graph_from_csv() -> None: ON CREATE SET v.discharge_date = visits.discharge_date ON MATCH SET v.discharge_date = visits.discharge_date """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading patient nodes") with driver.session(database="neo4j") as session: @@ -117,7 +117,7 @@ def load_hospital_graph_from_csv() -> None: blood_type: patients.patient_blood_type }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading review nodes") with driver.session(database="neo4j") as session: @@ -131,7 +131,7 @@ def load_hospital_graph_from_csv() -> None: hospital_name: reviews.hospital_name }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'AT' relationships") with driver.session(database="neo4j") as session: @@ -142,7 +142,7 @@ def load_hospital_graph_from_csv() -> None: toInteger(trim(row.`hospital_id`))}}) MERGE (source)-[r: `AT`]->(target) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'WRITES' relationships") with driver.session(database="neo4j") as session: @@ -152,7 +152,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (r:Review {{id: toInteger(reviews.review_id)}}) MERGE (v)-[writes:WRITES]->(r) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'TREATS' relationships") with driver.session(database="neo4j") as session: @@ -162,7 +162,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[treats:TREATS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'COVERED_BY' relationships") with driver.session(database="neo4j") as session: @@ -175,7 +175,7 @@ def load_hospital_graph_from_csv() -> None: covered_by.service_date = visits.discharge_date, covered_by.billing_amount = toFloat(visits.billing_amount) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'HAS' relationships") with driver.session(database="neo4j") as session: @@ -185,7 +185,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[has:HAS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'EMPLOYS' relationships") with driver.session(database="neo4j") as session: @@ -195,7 +195,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (p:Physician {{id: toInteger(visits.physician_id)}}) MERGE (h)-[employs:EMPLOYS]->(p) """ - _ = session.run(query, {}) + session.run(query, {}) if __name__ == "__main__": diff --git a/langchain-rag-app/source_code_step_4/requirements.txt b/langchain-rag-app/source_code_step_4/requirements.txt index 8aacaff150..8899f3af77 100644 --- a/langchain-rag-app/source_code_step_4/requirements.txt +++ b/langchain-rag-app/source_code_step_4/requirements.txt @@ -1,56 +1,9 @@ -aiohttp==3.9.3 -aiosignal==1.3.1 -annotated-types==0.6.0 -anyio==4.3.0 -asyncio==3.4.3 -attrs==23.2.0 -certifi==2024.2.2 -charset-normalizer==3.3.2 -click==8.1.7 -dataclasses-json==0.6.4 -Deprecated==1.2.14 -distro==1.9.0 -fastapi==0.109.0 -frozenlist==1.4.1 -h11==0.14.0 -httpcore==1.0.3 -httpx==0.26.0 -idna==3.6 -importlib-metadata==6.11.0 -jsonpatch==1.33 -jsonpointer==2.4 -langchain==0.1.0 -langchain-community==0.0.20 -langchain-core==0.1.23 -langchain-openai==0.0.2 -langchainhub==0.1.14 -langsmith==0.0.87 -marshmallow==3.20.2 -multidict==6.0.5 -mypy-extensions==1.0.0 -neo4j==5.14.1 -numpy==1.26.2 -openai==1.7.2 -opentelemetry-api==1.22.0 -packaging==23.2 -pydantic==2.5.1 -pydantic_core==2.14.3 -python-dotenv==1.0.1 -pytz==2024.1 -PyYAML==6.0.1 -regex==2023.12.25 -requests==2.31.0 -sniffio==1.3.0 -SQLAlchemy==2.0.27 -starlette==0.35.1 -tenacity==8.2.3 -tiktoken==0.5.2 -tqdm==4.66.2 -types-requests==2.31.0.20240218 -typing-inspect==0.9.0 -typing_extensions==4.9.0 -urllib3==2.2.1 -uvicorn==0.25.0 -wrapt==1.16.0 -yarl==1.9.4 -zipp==3.17.0 +fastapi==0.136.3 +langchain==1.3.4 +langchain-openai==1.2.2 +langchain-neo4j==0.9.0 +neo4j==6.2.0 +numpy==2.4.6 +openai==2.41.0 +pydantic==2.13.4 +uvicorn==0.49.0 diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/Dockerfile b/langchain-rag-app/source_code_step_5/chatbot_api/Dockerfile index 7d315db20b..7f09e6f3ab 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/Dockerfile +++ b/langchain-rag-app/source_code_step_5/chatbot_api/Dockerfile @@ -1,12 +1,10 @@ -# chatbot_api/Dockerfile - -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. EXPOSE 8000 -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/pyproject.toml b/langchain-rag-app/source_code_step_5/chatbot_api/pyproject.toml index 330db6ddb4..bc7d970213 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/pyproject.toml +++ b/langchain-rag-app/source_code_step_5/chatbot_api/pyproject.toml @@ -2,18 +2,16 @@ name = "chatbot_api" version = "0.1" dependencies = [ - "asyncio==3.4.3", - "fastapi==0.109.0", - "langchain==0.1.0", - "langchain-openai==0.0.2", - "langchainhub==0.1.14", - "neo4j==5.14.1", - "numpy==1.26.2", - "openai==1.7.2", - "opentelemetry-api==1.22.0", - "pydantic==2.5.1", - "uvicorn==0.25.0" + "fastapi==0.136.3", + "langchain==1.3.4", + "langchain-openai==1.2.2", + "langchain-neo4j==0.9.0", + "neo4j==6.2.0", + "numpy==2.4.6", + "openai==2.41.0", + "pydantic==2.13.4", + "uvicorn==0.49.0" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/agents/hospital_rag_agent.py b/langchain-rag-app/source_code_step_5/chatbot_api/src/agents/hospital_rag_agent.py index 7094a93011..b891829b8a 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/agents/hospital_rag_agent.py +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/agents/hospital_rag_agent.py @@ -1,10 +1,11 @@ import os +from langchain.agents import create_agent +from langchain_core.tools import Tool +from langchain_openai import ChatOpenAI + from chains.hospital_cypher_chain import hospital_cypher_chain from chains.hospital_review_chain import reviews_vector_chain -from langchain import hub -from langchain.agents import AgentExecutor, Tool, create_openai_functions_agent -from langchain_openai import ChatOpenAI from tools.wait_times import ( get_current_wait_times, get_most_available_hospital, @@ -12,12 +13,28 @@ HOSPITAL_AGENT_MODEL = os.getenv("HOSPITAL_AGENT_MODEL") -hospital_agent_prompt = hub.pull("hwchase17/openai-functions-agent") +agent_system_prompt = ( + "You are a helpful assistant for a hospital system. Use the tools " + "available to you to answer the user's questions about patients, " + "visits, physicians, hospitals, insurance payers, patient reviews, " + "and current wait times." +) + + +def query_reviews(query: str) -> str: + """Answer questions about patient experiences from their reviews.""" + return reviews_vector_chain.invoke(query) + + +def query_graph(query: str) -> str: + """Answer questions by querying the hospital graph database.""" + return hospital_cypher_chain.invoke(query)["result"] + tools = [ Tool( name="Experiences", - func=reviews_vector_chain.invoke, + func=query_reviews, description="""Useful when you need to answer questions about patient experiences, feelings, or any other qualitative question that could be answered about a patient using semantic @@ -30,7 +47,7 @@ ), Tool( name="Graph", - func=hospital_cypher_chain.invoke, + func=query_graph, description="""Useful for answering questions about patients, physicians, hospitals, insurance payers, patient review statistics, and hospital visit details. Use the entire prompt as @@ -63,20 +80,10 @@ ), ] -chat_model = ChatOpenAI( - model=HOSPITAL_AGENT_MODEL, - temperature=0, -) - -hospital_rag_agent = create_openai_functions_agent( - llm=chat_model, - prompt=hospital_agent_prompt, - tools=tools, -) +chat_model = ChatOpenAI(model=HOSPITAL_AGENT_MODEL) -hospital_rag_agent_executor = AgentExecutor( - agent=hospital_rag_agent, +hospital_rag_agent_executor = create_agent( + model=chat_model, tools=tools, - return_intermediate_steps=True, - verbose=True, + system_prompt=agent_system_prompt, ) diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_cypher_chain.py b/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_cypher_chain.py index 198a5df311..71d8a9694f 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_cypher_chain.py +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_cypher_chain.py @@ -1,8 +1,7 @@ import os -from langchain.chains import GraphCypherQAChain -from langchain.prompts import PromptTemplate -from langchain_community.graphs import Neo4jGraph +from langchain_core.prompts import PromptTemplate +from langchain_neo4j import GraphCypherQAChain, Neo4jGraph from langchain_openai import ChatOpenAI HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -72,15 +71,15 @@ LIMIT 1 # How many non-emergency patients in North Carolina have written reviews? -match (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) -where h.state_name = 'NC' and v.admission_type <> 'Emergency' -return count(*) +MATCH (r:Review)<-[:WRITES]-(v:Visit)-[:AT]->(h:Hospital) +WHERE h.state_name = 'NC' and v.admission_type <> 'Emergency' +RETURN count(*) String category values: Test results are one of: 'Inconclusive', 'Normal', 'Abnormal' Visit statuses are one of: 'OPEN', 'DISCHARGED' Admission Types are one of: 'Elective', 'Emergency', 'Urgent' -Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicare', +Payer names are one of: 'Cigna', 'Blue Cross', 'UnitedHealthcare', 'Medicaid', 'Aetna' A visit is considered open if its status is 'OPEN' and the discharge date is @@ -88,7 +87,7 @@ Use abbreviations when filtering on hospital states (e.g. "Texas" is "TX", "Colorado" is "CO", "North Carolina" is "NC", -"Florida" is "FL", "Georgia" is "GA, etc.) +"Florida" is "FL", "Georgia" is "GA", etc.) Make sure to use IS NULL or IS NOT NULL when analyzing missing properties. Never return embedding properties in your queries. You must never include the @@ -109,7 +108,7 @@ qa_generation_template = """You are an assistant that takes the results from a Neo4j Cypher query and forms a human-readable response. The query results section contains the results of a Cypher query that was -generated based on a users natural language question. The provided +generated based on a user's natural language question. The provided information is authoritative, you must never doubt it or try to use your internal knowledge to correct it. Make the answer sound like a response to the question. @@ -128,15 +127,14 @@ results are in units of days unless otherwise specified. When names are provided in the query results, such as hospital names, -beware of any names that have commas or other punctuation in them. +beware of any names that have commas or other punctuation in them. For instance, 'Jones, Brown and Murray' is a single hospital name, not multiple hospitals. Make sure you return any list of names in a way that isn't ambiguous and allows someone to tell what the full names are. Never say you don't have the right information if there is data in -the query results. Make sure to show all the relevant query results -if you're asked. +the query results. Always use the data in the query results. Helpful Answer: """ @@ -146,12 +144,13 @@ ) hospital_cypher_chain = GraphCypherQAChain.from_llm( - cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL, temperature=0), - qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), + cypher_llm=ChatOpenAI(model=HOSPITAL_CYPHER_MODEL), + qa_llm=ChatOpenAI(model=HOSPITAL_QA_MODEL), graph=graph, verbose=True, qa_prompt=qa_generation_prompt, cypher_prompt=cypher_generation_prompt, validate_cypher=True, top_k=100, + allow_dangerous_requests=True, ) diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_review_chain.py b/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_review_chain.py index 28ebe95513..40fb7e74e7 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_review_chain.py +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/chains/hospital_review_chain.py @@ -1,14 +1,20 @@ +import logging import os -from langchain.chains import RetrievalQA -from langchain.prompts import ( +from langchain_core.output_parsers import StrOutputParser +from langchain_core.prompts import ( ChatPromptTemplate, HumanMessagePromptTemplate, PromptTemplate, SystemMessagePromptTemplate, ) -from langchain.vectorstores.neo4j_vector import Neo4jVector -from langchain_openai import ChatOpenAI, OpenAIEmbeddings +from langchain_core.runnables import RunnablePassthrough +from langchain_neo4j import Neo4jVector +from langchain_openai import ChatOpenAI +from langchain_openai import OpenAIEmbeddings + +# Silence Neo4j's deprecation notice for db.index.vector.queryNodes +logging.getLogger("neo4j.notifications").setLevel(logging.ERROR) HOSPITAL_QA_MODEL = os.getenv("HOSPITAL_QA_MODEL") @@ -29,11 +35,10 @@ ) review_template = """Your job is to use patient -reviews to answer questions about their experience at -a hospital. Use the following context to answer questions. -Be as detailed as possible, but don't make up any information -that's not from the context. If you don't know an answer, -say you don't know. +reviews to answer questions about their experience at a hospital. Use +the following context to answer questions. Be as detailed as possible, +but don't make up any information that's not from the context. If you +don't know an answer, say you don't know. {context} """ @@ -52,9 +57,12 @@ input_variables=["context", "question"], messages=messages ) -reviews_vector_chain = RetrievalQA.from_chain_type( - llm=ChatOpenAI(model=HOSPITAL_QA_MODEL, temperature=0), - chain_type="stuff", - retriever=neo4j_vector_index.as_retriever(k=12), +reviews_retriever = neo4j_vector_index.as_retriever(search_kwargs={"k": 12}) +review_chat_model = ChatOpenAI(model=HOSPITAL_QA_MODEL) + +reviews_vector_chain = ( + {"context": reviews_retriever, "question": RunnablePassthrough()} + | review_prompt + | review_chat_model + | StrOutputParser() ) -reviews_vector_chain.combine_documents_chain.llm_chain.prompt = review_prompt diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/entrypoint.sh b/langchain-rag-app/source_code_step_5/chatbot_api/src/entrypoint.sh index b656f98593..01e8fd2083 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/entrypoint.sh +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Starting hospital RAG FastAPI service..." # Start the main application -uvicorn main:app --host 0.0.0.0 --port 8000 \ No newline at end of file +uvicorn main:app --host 0.0.0.0 --port 8000 diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/main.py b/langchain-rag-app/source_code_step_5/chatbot_api/src/main.py index 22538627d4..f182f80986 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/main.py +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/main.py @@ -1,9 +1,9 @@ +from fastapi import FastAPI + from agents.hospital_rag_agent import hospital_rag_agent_executor from models.hospital_rag_query import HospitalQueryInput, HospitalQueryOutput from utils.async_utils import async_retry -from fastapi import FastAPI - app = FastAPI( title="Hospital Chatbot", description="Endpoints for a hospital system graph RAG chatbot", @@ -12,12 +12,14 @@ @async_retry(max_retries=10, delay=1) async def invoke_agent_with_retry(query: str): - """ - Retry the agent if a tool fails to run. This can help when there - are intermittent connection issues to external APIs. - """ + """Retry the agent if a tool fails to run. - return await hospital_rag_agent_executor.ainvoke({"input": query}) + This can help when there are intermittent connection issues + to external APIs. + """ + return await hospital_rag_agent_executor.ainvoke( + {"messages": [{"role": "user", "content": query}]} + ) @app.get("/") @@ -30,8 +32,10 @@ async def query_hospital_agent( query: HospitalQueryInput, ) -> HospitalQueryOutput: query_response = await invoke_agent_with_retry(query.text) - query_response["intermediate_steps"] = [ - str(s) for s in query_response["intermediate_steps"] - ] + messages = query_response["messages"] - return query_response + return HospitalQueryOutput( + input=query.text, + output=messages[-1].content, + intermediate_steps=[str(message) for message in messages], + ) diff --git a/langchain-rag-app/source_code_step_5/chatbot_api/src/tools/wait_times.py b/langchain-rag-app/source_code_step_5/chatbot_api/src/tools/wait_times.py index f696cfed82..4840f9d156 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_api/src/tools/wait_times.py +++ b/langchain-rag-app/source_code_step_5/chatbot_api/src/tools/wait_times.py @@ -2,7 +2,7 @@ from typing import Any import numpy as np -from langchain_community.graphs import Neo4jGraph +from langchain_neo4j import Neo4jGraph def _get_current_hospitals() -> list[str]: @@ -20,14 +20,11 @@ def _get_current_hospitals() -> list[str]: """ ) - current_hospitals = [d["hospital_name"].lower() for d in current_hospitals] - - return current_hospitals + return [d["hospital_name"].lower() for d in current_hospitals] def _get_current_wait_time_minutes(hospital: str) -> int: """Get the current wait time at a hospital in minutes.""" - current_hospitals = _get_current_hospitals() if hospital.lower() not in current_hospitals: @@ -38,7 +35,6 @@ def _get_current_wait_time_minutes(hospital: str) -> int: def get_current_wait_times(hospital: str) -> str: """Get the current wait time at a hospital formatted as a string.""" - wait_time_in_minutes = _get_current_wait_time_minutes(hospital) if wait_time_in_minutes == -1: @@ -47,16 +43,13 @@ def get_current_wait_times(hospital: str) -> str: hours, minutes = divmod(wait_time_in_minutes, 60) if hours > 0: - formatted_wait_time = f"{hours} hours {minutes} minutes" + return f"{hours} hours {minutes} minutes" else: - formatted_wait_time = f"{minutes} minutes" - - return formatted_wait_time + return f"{minutes} minutes" def get_most_available_hospital(_: Any) -> dict[str, float]: """Find the hospital with the shortest wait time.""" - current_hospitals = _get_current_hospitals() current_wait_times = [ diff --git a/langchain-rag-app/source_code_step_5/chatbot_frontend/Dockerfile b/langchain-rag-app/source_code_step_5/chatbot_frontend/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_frontend/Dockerfile +++ b/langchain-rag-app/source_code_step_5/chatbot_frontend/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_step_5/chatbot_frontend/pyproject.toml b/langchain-rag-app/source_code_step_5/chatbot_frontend/pyproject.toml index e9b0d3166f..1855659632 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_frontend/pyproject.toml +++ b/langchain-rag-app/source_code_step_5/chatbot_frontend/pyproject.toml @@ -2,9 +2,9 @@ name = "chatbot_frontend" version = "0.1" dependencies = [ - "requests==2.31.0", - "streamlit==1.29.0" + "requests==2.34.2", + "streamlit==1.58.0" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_5/chatbot_frontend/src/entrypoint.sh b/langchain-rag-app/source_code_step_5/chatbot_frontend/src/entrypoint.sh index 90aefcc205..7b381ce235 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_frontend/src/entrypoint.sh +++ b/langchain-rag-app/source_code_step_5/chatbot_frontend/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Starting hospital chatbot frontend..." # Run the ETL script -streamlit run main.py \ No newline at end of file +streamlit run main.py diff --git a/langchain-rag-app/source_code_step_5/chatbot_frontend/src/main.py b/langchain-rag-app/source_code_step_5/chatbot_frontend/src/main.py index 14b77db841..962db6ea62 100644 --- a/langchain-rag-app/source_code_step_5/chatbot_frontend/src/main.py +++ b/langchain-rag-app/source_code_step_5/chatbot_frontend/src/main.py @@ -12,10 +12,10 @@ st.markdown( """ This chatbot interfaces with a - [LangChain](https://python.langchain.com/docs/get_started/introduction) + [LangChain](https://docs.langchain.com/oss/python/langchain/overview) agent designed to answer questions about the hospitals, patients, - visits, physicians, and insurance payers in a fake hospital system. - The agent uses retrieval-augment generation (RAG) over both + visits, physicians, and insurance payers in a fake hospital system. + The agent uses retrieval-augmented generation (RAG) over both structured and unstructured data that has been synthetically generated. """ ) @@ -23,18 +23,18 @@ st.header("Example Questions") st.markdown("- Which hospitals are in the hospital system?") st.markdown( - """- What is the current wait time at wallace-hamilton hospital?""" + "- What is the current wait time at wallace-hamilton hospital?" ) st.markdown( - """- At which hospitals are patients complaining about billing and - insurance issues?""" + "- At which hospitals are patients complaining about billing and " + "insurance issues?" ) st.markdown( "- What is the average duration in days for closed emergency visits?" ) st.markdown( - """- What are patients saying about the nursing staff at - Castaneda-Hardy?""" + "- What are patients saying about the nursing staff at " + "Castaneda-Hardy?" ) st.markdown( "- What was the total billing amount charged to each payer for 2023?" @@ -45,39 +45,35 @@ ) st.markdown("- How much was billed for patient 789's stay?") st.markdown( - """- Which state had the largest percent increase in medicaid visits - from 2022 to 2023?""" + "- Which state had the largest percent increase in medicaid visits " + "from 2022 to 2023?" ) st.markdown( "- What is the average billing amount per day for Aetna patients?" ) st.markdown( - """- How many reviews have been written from - patients in Florida?""" + "- How many reviews have been written from patients in Florida?" ) st.markdown( - """- For visits that are not missing chief complaints, - what percentage have reviews?""" + "- For visits that are not missing chief complaints, " + "what percentage have reviews?" ) st.markdown( - """- What is the percentage of visits that have reviews for - each hospital?""" + "- What is the percentage of visits that have reviews for each hospital?" ) st.markdown( - """- Which physician has received the most reviews for this visits - they've attended?""" + "- Which physician has received the most reviews for the visits " + "they've attended?" ) st.markdown("- What is the ID for physician James Cooper?") st.markdown( - """- List every review for visits treated by physician 270. - Don't leave any out.""" + "- List every review for visits treated by physician 270. Don't leave any out." ) - st.title("Hospital System Chatbot") st.info( - """Ask me questions about patients, visits, insurance payers, hospitals, - physicians, reviews, and wait times!""" + "Ask me questions about patients, visits, insurance payers, hospitals, " + "physicians, reviews, and wait times!" ) if "messages" not in st.session_state: @@ -112,7 +108,7 @@ explanation = output_text st.chat_message("assistant").markdown(output_text) - st.status("How was this generated?", state="complete").info(explanation) + st.status("How was this generated", state="complete").info(explanation) st.session_state.messages.append( { diff --git a/langchain-rag-app/source_code_step_5/data/hospitals.csv b/langchain-rag-app/source_code_step_5/data/hospitals.csv deleted file mode 100644 index f99d3f84d6..0000000000 --- a/langchain-rag-app/source_code_step_5/data/hospitals.csv +++ /dev/null @@ -1,31 +0,0 @@ -hospital_id,hospital_name,hospital_state -0,Wallace-Hamilton,CO -1,"Burke, Griffin and Cooper",NC -2,Walton LLC,FL -3,Garcia Ltd,NC -4,"Jones, Brown and Murray",NC -5,Boyd PLC,GA -6,"Wheeler, Bryant and Johns",FL -7,Brown Inc,FL -8,"Smith, Edwards and Obrien",FL -9,Brown-Golden,NC -10,Little-Spencer,CO -11,Rose Inc,FL -12,"Malone, Thompson and Mejia",NC -13,Mcneil-Ali,GA -14,"Jones, Taylor and Garcia",CO -15,Richardson-Powell,GA -16,Castaneda-Hardy,CO -17,Burch-White,NC -18,Cunningham and Sons,TX -19,"Bell, Mcknight and Willis",CO -20,Pugh-Rogers,GA -21,"Rush, Owens and Johnson",NC -22,Pearson LLC,CO -23,Taylor and Sons,TX -24,Schultz-Powers,TX -25,Jordan Inc,FL -26,Lewis-Nelson,FL -27,Shea LLC,GA -28,Huynh PLC,CO -29,Vaughn PLC,CO diff --git a/langchain-rag-app/source_code_step_5/data/patients.csv b/langchain-rag-app/source_code_step_5/data/patients.csv deleted file mode 100644 index 8f6e0c03d2..0000000000 --- a/langchain-rag-app/source_code_step_5/data/patients.csv +++ /dev/null @@ -1,9650 +0,0 @@ -patient_name,patient_sex,patient_id,patient_dob,patient_blood_type -Tiffany Ramirez,Female,0,1994-10-06,O+ -Ruben Burns,Male,1,1973-03-31,A- -Chad Byrd,Male,2,1932-05-10,O- -Antonio Frederick,Male,3,1944-10-04,AB+ -Mrs. Brandy Flowers,Male,4,1989-01-26,AB+ -Patrick Parker,Male,5,1962-10-04,A+ -Charles Horton,Male,6,1960-11-23,B- -Patty Norman,Female,7,1990-07-23,B- -Ryan Hayes,Male,8,1947-02-26,O- -Sharon Perez,Female,9,1976-02-19,AB- -Amy Roberts,Male,10,1942-02-13,AB+ -Mrs. Caroline Farrell,Female,11,1990-02-17,A+ -Christina Williams,Female,12,1969-06-28,O- -William Page,Female,13,1961-02-10,B- -Michael Bradshaw,Female,14,1973-11-14,AB+ -Brian Dorsey,Female,15,1952-10-14,A- -Olivia Gonzalez,Male,16,1934-08-13,A+ -Teresa Caldwell,Male,17,1932-02-09,O+ -Desiree Williams MD,Male,18,1993-11-19,AB+ -Sally Shaw,Male,19,1936-08-30,A+ -William Johnson,Female,20,1944-07-17,O- -Steven Bennett,Male,21,1943-10-31,O+ -Haley Li,Male,22,1947-07-31,A+ -Angela Brown,Female,23,1978-02-06,A+ -Beverly Miller,Male,24,1987-05-01,B+ -Daniel Dickson,Female,25,1984-02-16,B+ -Kimberly Mason,Female,26,1947-07-07,B+ -Francis Newman,Female,27,1953-09-23,B- -Ronnie Hughes,Female,28,2000-04-01,AB- -Shannon Fitzpatrick DVM,Female,29,1981-11-11,AB+ -Teresa Gonzalez,Female,30,1996-05-07,B- -Rodney Maynard,Male,31,1980-06-18,A- -Kevin Johnson,Male,32,1937-07-10,O+ -Rebecca Parsons,Male,33,1999-12-16,AB- -Linda Chavez,Male,34,2002-03-26,A+ -Jennifer Rodriguez,Female,35,1930-07-09,B- -Anna Adams,Female,36,1982-05-06,B+ -Mariah Williams,Male,37,1938-03-25,AB- -Brendan Moody,Male,38,1987-08-12,A- -Michael Burns,Male,39,1935-03-15,AB+ -Miguel Baker,Male,40,1996-01-13,A- -Mr. Christopher Miller,Male,41,1933-06-21,O+ -Theresa Mendoza,Female,42,1979-01-16,O- -Laura Adams,Female,43,1961-03-13,B- -Lauren Barton,Male,44,1939-09-27,B+ -Christina Hernandez,Female,45,1940-08-26,O+ -Kyle Byrd,Female,46,1954-03-14,O- -Jasmine Singleton,Male,47,1969-09-15,B+ -John Griffin,Female,48,1989-08-16,B+ -Justin Kaufman,Female,49,1959-02-05,B+ -Dylan Mcknight,Male,50,1954-01-27,B- -Olivia Ayala,Male,51,1958-11-25,O+ -Frank Mccormick,Male,52,1958-01-27,B+ -Rachael Davidson,Female,53,1953-02-02,A- -Lori Owens,Male,54,1958-01-07,O+ -Frank Reid,Female,55,1960-02-29,AB- -Cynthia Stanton,Male,56,1995-06-06,A- -Nicole Williams,Male,57,1937-02-25,B- -Michael Miller,Male,58,1994-02-19,B+ -Kenneth Lopez,Female,59,2001-01-07,O+ -Gabrielle Russell,Male,60,1991-12-06,A+ -Mary Brown,Male,61,1989-11-17,B- -Evan Martinez,Female,62,1994-04-18,O+ -Amanda Stein DVM,Female,63,2001-05-02,AB- -Paul Graham,Female,64,1973-03-23,B+ -Lisa Gonzalez,Male,65,1976-12-24,O- -Angela Sanchez,Female,66,1963-06-03,B+ -Kimberly Wheeler,Female,67,1952-07-10,O- -Francisco Ritter,Male,68,1969-10-24,A+ -Kenneth Smith,Male,69,1938-08-19,B- -Christina Martinez,Female,70,2002-08-22,AB- -Ryan Richmond,Male,71,1934-05-05,O+ -Linda Wheeler,Male,72,1940-10-18,O+ -Anna Phillips,Male,73,1995-07-18,O- -Juan Patel,Female,74,1983-04-10,AB- -Miguel Fields,Female,75,1932-10-18,A- -Tyler Rosario,Female,76,1961-11-27,A+ -Lisa Johnson,Male,77,1959-08-02,O- -David Sanchez,Male,78,1966-09-26,O- -Teresa Marks,Female,79,1985-05-19,A+ -Jonathan Fernandez,Female,80,1951-11-16,B- -Douglas Crawford,Male,81,1956-07-15,O+ -Anthony Fisher,Female,82,1965-07-26,B- -Kimberly Vargas,Female,83,1948-10-26,AB- -Travis Walker,Female,84,1945-07-16,A- -Amanda Ortiz,Male,85,1930-06-11,B+ -Keith Johns,Female,86,1941-10-07,AB+ -Jesse Williams,Male,87,2002-09-17,AB+ -Michael Ford,Female,88,1932-09-22,AB+ -Jessica Ford,Female,89,1961-07-31,A+ -Thomas Washington,Female,90,1950-11-21,O- -Ariel Davis,Female,91,2000-10-11,A- -Joyce Vaughn,Male,92,1932-10-13,B- -Jermaine Thomas,Female,93,1996-05-27,B+ -Jason Horn,Female,94,1992-06-27,O+ -Samuel Welch,Male,95,1996-06-19,AB+ -Steven Boyer,Male,96,1993-08-25,B- -Gabrielle Francis,Male,97,1996-07-13,AB+ -Christian Guerrero,Male,98,1953-05-09,A- -Christopher Juarez,Male,99,1977-04-06,AB+ -Paul Greer,Male,100,1955-05-18,O+ -Brian Robinson,Female,101,1988-03-28,B+ -Scott Adams,Male,102,1963-05-13,AB- -Amber Solomon,Male,103,1988-02-29,AB- -Jacob Howell,Female,104,1947-05-03,A- -Monica Stevens,Female,105,1953-06-20,AB- -Kurt Sloan,Female,106,1998-08-20,A+ -Allison White,Female,107,1949-09-26,O- -Ronald Rollins,Female,108,1944-06-12,A+ -Albert Dunn,Male,109,1980-07-03,B- -Anthony Armstrong,Female,110,1975-01-13,A+ -William Jacobson,Female,111,1974-05-26,B- -Jennifer Reeves,Male,112,1951-12-03,B- -Tammy Thompson,Male,113,1937-01-12,O- -Susan Mills,Male,114,1989-10-25,O+ -Kelly Manning,Female,115,1935-07-21,B+ -Joseph Barrera,Female,116,1937-05-19,A- -Jason Hunter,Male,117,2001-05-19,O- -Martha Franklin,Male,118,1972-03-23,A- -Alyssa Osborne,Male,119,1944-05-25,AB- -Carlos Young,Male,120,1990-03-29,AB- -Jesse Sanders,Female,121,1948-06-11,A+ -Mrs. Brittany Fields,Female,122,1931-01-27,B- -Melanie Clark,Male,123,1968-04-17,AB+ -Kevin Andrews,Female,124,1964-09-05,AB+ -Caitlin Sanders,Male,125,1946-02-18,A- -Sabrina Patterson,Female,126,1939-10-02,B- -Destiny Parks,Female,127,1946-12-07,A- -Antonio Miller,Female,128,1983-05-06,O- -Matthew Oliver,Male,129,1992-01-18,O+ -Joshua Benjamin,Male,130,1952-12-23,B+ -Albert Carter,Female,131,1965-10-11,O- -James Pittman,Male,132,1971-10-18,B- -Danielle Rice,Male,133,1983-05-11,B- -John Edwards,Female,134,1994-08-12,O+ -Lori Sanders,Male,135,1936-09-20,A- -Rebecca Mcdonald,Male,136,1962-05-30,A+ -James Marsh,Female,137,1968-06-09,A+ -Patrick Bates,Male,138,1999-06-28,O+ -Sheila Castro,Female,139,1982-05-03,A+ -Tim Mercer,Female,140,1960-01-09,AB+ -Andrea Williams,Male,141,1997-03-08,A+ -Zachary Wood,Male,142,1956-09-23,A+ -Meghan Burns,Female,143,1943-11-05,A+ -Mark Grant,Male,144,1970-12-05,AB+ -Kelly Walker,Female,145,1952-03-16,A- -Kelly Miller,Male,146,1967-09-17,A+ -Tina Vargas,Female,147,1985-05-16,AB- -Christopher Gilbert,Male,148,1977-09-03,AB+ -Randall Meyer,Female,149,1995-01-29,O+ -Russell Holden,Female,150,1931-05-18,O- -Sara Bates,Male,151,1948-12-02,O+ -Jeff Cooper MD,Female,152,1964-09-24,O- -Anne Smith,Male,153,1999-09-02,B+ -Ernest Peters,Female,154,1993-11-08,O+ -Tammy Savage,Female,155,1987-02-23,AB- -Deborah Butler,Female,156,1930-07-26,O- -Amy Jensen,Female,157,1988-11-30,O- -Zachary Martinez,Male,158,1991-03-23,B- -Eric Wilson,Female,159,1995-12-31,O- -Matthew Pratt,Female,160,1994-02-13,O- -Andrew Alvarez,Female,161,1978-12-03,B- -Jocelyn Simmons,Female,162,1996-05-16,A+ -Andre Perez MD,Male,163,1973-08-17,A+ -Michael White,Male,164,1977-03-22,B- -Emily Perez,Female,165,1982-07-01,AB+ -David Casey,Male,166,1995-02-21,B+ -Joseph Bailey,Male,167,1953-12-21,O- -Raymond Cain,Female,168,1988-11-12,O- -Victoria Dunn,Female,169,1963-11-27,B- -Paula Knight,Female,170,1991-05-04,B- -Jennifer Trevino,Male,171,1979-09-02,AB+ -Mrs. Deborah Rose,Female,172,1970-07-30,AB- -Ryan Cross,Male,173,1950-09-27,A+ -Michael Morgan,Male,174,1947-06-15,O+ -Christina Armstrong,Male,175,1993-09-23,AB- -Anne Bates,Male,176,1934-08-06,A- -Scott Nicholson,Male,177,1983-09-26,A+ -Jeffrey Cross,Female,178,1987-07-21,O- -Holly Hickman,Male,179,1932-11-25,A- -Jacob Rodriguez,Female,180,1993-02-11,AB- -Jessica Joseph,Female,181,1974-05-08,B- -Stacy Williams,Male,182,1957-02-22,AB+ -Gregory Wilson,Female,183,1983-07-03,A+ -Elizabeth Sullivan,Male,184,1991-01-20,AB+ -Wendy Cantu,Female,185,1959-08-14,A- -Paul Wells,Male,187,1959-11-26,A+ -Troy Villarreal,Female,188,1956-10-20,B+ -Latoya Price,Male,189,1974-08-30,B+ -Paul Watson,Female,190,1960-10-22,AB- -Alejandro Ramirez DDS,Male,191,1937-05-17,O- -Timothy Miranda,Male,192,1968-02-22,B+ -Brian Shea,Male,193,1939-12-07,B+ -Shirley Casey,Female,194,2001-01-07,O+ -Kathy Cross,Female,195,1974-03-28,AB+ -Pam Cantu,Female,196,1957-11-08,AB+ -Heidi Parker,Male,197,1989-10-12,B+ -Lori Anderson,Male,198,1979-05-31,O+ -Colleen Swanson,Male,199,2001-06-22,AB+ -Christopher Campos,Female,200,1958-01-04,AB+ -Samantha Simpson,Male,201,1973-01-02,A+ -Terrence Edwards,Male,202,1990-03-03,A+ -Amanda Lee,Female,203,1961-06-21,O+ -Nancy Moore,Female,204,1995-02-05,A- -Rachel Williams,Male,205,1933-07-30,O- -Carolyn Murphy,Female,206,1948-07-21,AB- -Angela Beard,Male,207,1990-11-30,B+ -Vanessa Taylor,Male,208,1955-12-10,B+ -Brooke Ellison,Male,209,1950-08-10,AB- -Kevin Copeland,Female,210,1999-03-25,B+ -Timothy Lynch,Male,211,1990-02-14,B+ -Christopher Barker,Male,212,1945-02-21,A- -Stephanie Ayers,Female,213,1986-12-10,AB+ -Amber Foley,Female,214,1940-04-06,O- -Geoffrey Robertson,Female,215,1967-02-01,B+ -Laurie Mitchell,Female,216,1931-10-26,O+ -Stephanie Carter,Male,217,1935-06-22,A- -Ana Hall,Female,218,1951-11-21,B+ -Thomas Lopez,Female,219,1978-12-14,O+ -Paul Welch,Female,220,1939-01-18,A+ -David Harding,Male,221,1985-02-28,AB+ -Frederick Salazar,Female,222,1989-03-08,B- -Jose Hayes,Female,223,1979-12-07,B+ -Kara Long,Female,224,1967-10-22,O+ -David Reed,Male,225,1948-01-12,A- -Wayne Livingston,Female,226,1978-05-24,AB+ -Joel Williams,Female,227,1984-08-30,O- -Michael Daniel,Female,228,1961-11-23,A- -Deanna Moon,Male,229,1995-07-17,A+ -Wanda Moore MD,Male,230,1994-10-16,AB- -Charles Singleton,Female,231,1934-06-25,B+ -Matthew Russell,Female,232,1984-12-23,O- -Anna Davis,Female,233,1976-10-08,O+ -Emily Sanders,Female,234,1942-12-21,B+ -Erin Molina,Female,235,1969-11-07,O+ -Alyssa Wright,Female,236,1967-12-30,O- -Samantha Mora,Female,237,1932-05-04,O+ -Kyle Dean,Male,238,1997-03-18,A- -Jodi Moore,Female,239,1946-01-12,AB+ -Mark Chen,Male,240,1950-03-29,O+ -Christina Rogers,Male,241,1992-09-24,A+ -Alejandro Baxter,Female,242,1968-03-11,AB+ -Felicia Rodriguez,Female,243,1989-03-25,A- -Rebecca Campbell,Female,244,1989-01-07,B+ -Michael Pollard,Male,245,1979-07-14,B- -Willie Chan,Male,246,1945-11-09,B+ -Adam Ballard,Female,247,2002-01-12,O+ -William Mahoney,Male,248,1990-01-05,O+ -Aaron Hughes,Male,249,1943-07-03,A+ -Jeanette White,Female,250,1984-06-20,A- -Tammy Williams,Female,251,1930-07-22,A+ -Travis Morales,Male,252,1961-05-05,AB- -John Garza,Female,253,1986-05-29,A- -Elizabeth Adams,Male,254,1964-09-27,O- -Mindy Torres,Male,255,1999-05-21,O- -Nicole Smith,Female,256,1942-01-07,O- -Donna Sanchez,Female,257,1936-05-16,A+ -Stephen Manning,Female,258,1951-12-01,O- -Willie Black,Male,259,1982-11-19,A- -Jennifer Berg,Male,260,1951-04-18,O- -Lauren Ward,Male,261,1930-07-17,B- -John Briggs,Female,262,1994-05-14,O- -Yvette Scott,Female,263,1935-04-15,O+ -Eric Martinez,Female,264,1962-03-28,AB- -Jennifer Frye,Male,265,1971-04-23,A+ -Jamie Kelley,Male,266,1992-01-27,AB+ -Richard Kramer,Male,267,1998-12-14,AB- -Ashley Armstrong,Female,268,1955-07-28,B- -Jacob Meyers,Male,269,1986-08-01,A+ -Jillian Robinson,Male,270,1961-09-24,A- -Roberta Fisher,Female,271,1981-09-25,B+ -Andrew Morales,Male,272,1973-01-03,A+ -Jason Evans,Female,273,2002-03-14,O+ -Harry Thomas,Female,274,1976-08-30,A- -Natalie Jackson,Male,275,1937-09-12,AB- -Molly Houston,Male,276,1994-04-17,AB- -Ryan Lee,Female,277,1968-12-30,O- -Christopher Martin,Female,278,1947-12-04,A- -Tabitha Carr,Male,279,2001-01-13,B+ -Lisa Rojas,Male,280,1935-06-10,O+ -Mary Delgado,Female,281,1952-10-30,O- -Lisa Sanchez,Female,282,1961-03-30,O- -Kathleen Hanson,Female,283,1937-12-21,B+ -Donna Jones,Male,284,1934-10-01,A+ -Rachel Morales,Male,285,1979-11-27,AB- -Michelle Quinn,Female,286,1953-10-07,O- -Crystal Smith,Male,287,1983-01-03,B- -Tracey Martin,Female,288,1980-03-22,B- -Matthew Palmer,Female,289,1945-10-08,AB- -Kristy Donaldson,Female,290,1993-03-09,B- -Amy Jackson,Male,291,1936-07-13,B+ -Patrick Taylor DDS,Female,292,1960-06-03,A+ -Robert Carter DDS,Male,293,1942-12-20,O+ -Elizabeth Charles,Male,294,1934-12-08,AB+ -Melissa Jones,Female,295,1952-04-30,O- -Tammy Cook,Female,296,1952-03-26,AB+ -Dennis Banks,Female,297,1948-02-12,O+ -Cody Gonzales,Male,298,1969-01-13,O+ -Peter Alvarado,Female,299,1969-08-30,B+ -Timothy Melton,Male,300,1990-01-04,A+ -Donald Moreno,Female,301,1985-12-23,B- -Lori Barrett,Male,302,1975-07-30,B- -Cynthia Patterson,Female,303,1968-07-15,B+ -Angel Robles,Male,304,1992-01-27,O+ -Denise Randall,Male,305,1998-12-29,A+ -Laurie Turner,Male,306,1955-03-19,A+ -Whitney Garza,Female,307,1974-10-28,AB- -Erin Porter,Male,308,1962-05-28,A- -Victor Gardner,Female,309,1966-01-20,O- -Angelica Chen,Male,310,1935-08-12,B+ -Alan Rodriguez,Male,311,1944-11-06,A- -Angela Garcia,Male,312,1969-12-11,B+ -Julia Johnson,Female,313,1987-04-24,B- -David Hess,Male,314,1983-05-15,O+ -Jeffery Young,Male,315,1949-08-07,B+ -Louis Lewis,Female,316,1958-01-22,B+ -Jennifer Benson,Female,317,1950-04-06,AB- -Daniel Alexander,Male,318,1983-07-16,AB+ -Robert Taylor,Male,319,1957-01-13,B- -Mrs. Crystal Garcia,Female,320,1971-06-26,O- -Eduardo Davidson,Male,321,1981-01-12,A+ -Dustin Garrett,Female,322,1933-02-28,O+ -Jacqueline Sanchez,Female,323,1942-04-27,B- -Brian Foster,Male,324,1947-03-28,AB+ -Elizabeth Kline,Female,325,1991-10-29,B+ -Angela Ramos,Female,326,2001-12-06,O- -Lisa Howell,Female,327,1963-05-11,B+ -Jonathan Nielsen,Female,328,1965-04-01,O- -Rose Robinson,Male,329,1979-05-16,AB- -Timothy Mcgrath,Male,330,1945-03-02,B+ -Jonathan Brown,Female,331,1956-05-21,B- -Christopher Velasquez,Female,332,1986-05-10,AB+ -Louis Campbell,Female,333,1997-12-24,O- -William Dawson,Male,334,1972-09-03,O+ -Cindy Jones,Male,335,1937-01-01,O- -Adrian Valencia,Male,336,1945-04-24,AB+ -Alexis Chen,Female,337,1975-02-16,A+ -Kathleen Murray,Female,338,1936-01-10,A+ -Michelle Harris,Female,339,1968-10-20,AB- -Julie Mckenzie,Female,340,1938-02-09,B- -Robert Ho,Female,341,1968-11-24,AB+ -Katelyn Vincent,Male,342,1988-06-22,AB- -Anne Wallace,Female,343,1986-12-30,A- -Joseph Lynch,Male,344,1962-10-09,O- -Dr. Leah Delgado,Female,345,1937-11-09,A- -Melissa Robinson,Male,346,1977-06-23,O- -Carol Murray,Male,347,1968-04-23,A+ -Nathan Elliott,Female,348,1997-09-22,AB- -Melissa Harris,Male,349,1945-08-09,A+ -Gabriel Mccormick,Male,350,1993-11-14,O+ -Erica Santos,Male,351,1987-02-28,A- -Carrie Miller,Female,352,2000-11-05,A- -Barbara Salinas,Male,353,1988-04-21,A+ -Amanda Smith MD,Male,354,1940-12-01,O+ -Charles Simmons,Female,355,2001-06-20,O- -Christina Mccoy,Male,356,1991-04-30,AB- -Brett Montoya,Female,357,1966-10-25,O+ -Mr. Ricardo Bullock,Male,358,1933-05-03,AB- -Mrs. Kristine Hall MD,Female,359,1987-03-03,A- -Mary Jones,Male,360,1942-12-19,AB- -Jeffrey Wilson,Female,361,1960-12-05,A- -John Miller,Female,362,1942-06-22,O+ -Ashley Cherry,Male,363,1955-01-16,A- -Douglas Myers,Male,364,1952-01-16,B+ -Stephanie Fowler,Male,365,1964-12-05,B- -David Hines,Male,366,1984-04-17,A- -Robert Mcdonald,Male,367,1977-09-20,A+ -Ryan Frazier,Female,368,1948-11-15,O+ -Eric Price,Female,369,1979-06-30,B+ -Meagan Smith,Female,370,1969-05-09,O- -Jordan Nelson,Female,371,1969-11-17,AB- -Patrick Howard,Female,372,1939-05-30,B+ -Shelley Martinez,Male,373,1953-12-20,AB+ -Donna Mitchell,Male,374,1959-03-27,B+ -Lindsey Hampton,Male,375,1946-02-21,O+ -Dr. Wendy Taylor,Male,376,1984-01-16,B+ -Jodi Shannon,Female,377,1975-06-23,B+ -Nancy Peters,Male,378,1972-10-23,A+ -Vanessa Landry,Male,379,1988-04-03,A- -Carlos Bennett,Male,380,1949-03-24,AB- -Jessica Roman,Male,381,1955-01-21,B- -Mrs. Margaret Morris DDS,Female,382,1945-05-02,O- -Adam Butler,Male,383,1951-11-23,B- -Cheryl Mcgee,Male,384,1954-08-30,B+ -George Gordon,Female,385,1965-06-12,AB+ -Mrs. Ashley Simpson MD,Male,386,1995-11-23,O+ -Rose Rios,Male,387,1942-09-17,AB- -Gerald Moreno,Female,388,1960-12-21,O+ -Danielle Kim DVM,Female,389,1951-01-10,A+ -Nicole Casey,Male,390,1952-06-22,O+ -Terry Branch,Male,391,1994-12-14,O- -Michael Schmidt,Female,392,2000-09-09,AB+ -Justin Parker,Female,393,1980-11-23,B- -Donna Strickland,Female,394,1959-05-05,B+ -Jessica Garcia,Male,395,1977-10-14,B+ -David Brock,Male,396,1939-06-07,AB+ -Mark Mack,Male,397,1959-06-15,AB- -Renee Tate,Male,398,1969-07-09,O+ -Christopher Farmer,Female,399,1932-11-26,AB- -Bryan Moyer,Male,400,1981-03-25,B- -James Evans,Male,401,1939-05-14,AB- -Deborah Barrera,Male,402,1930-10-29,A+ -Laura Robinson,Female,403,1964-02-20,AB+ -Hannah Joseph,Male,404,1976-07-08,B- -Richard Smith,Female,405,1983-07-16,B- -Drew Edwards,Female,406,1931-12-01,A- -Dana Peterson,Female,407,1988-10-15,B- -David Stuart,Female,408,2000-05-28,A- -Allen Munoz,Male,409,1930-07-10,O- -Donald Mccoy,Male,410,1958-09-23,B+ -Jamie Day,Female,411,1977-07-17,A- -Corey Johnson,Male,412,1938-02-23,AB+ -Sarah Henson,Female,413,1946-09-16,AB- -Chelsea Johnson,Male,414,1978-02-06,A- -Danielle Ballard,Female,415,1983-12-20,B- -Heather Turner,Female,416,1984-02-25,AB+ -Joel Whitehead,Female,417,1997-08-20,A- -Lauren Clark,Male,418,2002-12-10,A- -Cory Miller,Female,419,1934-12-22,B- -Eric Aguirre,Female,420,1990-11-20,A+ -Cheryl Jones,Male,421,1993-03-24,A+ -Christopher Baker,Female,422,1931-07-24,A- -Thomas Stevens,Female,423,1944-11-25,A+ -Christopher Duffy,Male,424,1935-03-11,O+ -Donna Bailey,Female,425,1982-05-05,B- -John Gill,Female,426,1940-07-30,O+ -Kristina Becker,Male,427,1965-05-10,AB+ -Mrs. Christine Rodriguez,Female,428,1950-05-31,O+ -Scott Dickerson MD,Female,429,1940-12-28,AB+ -Ruth Perry,Male,430,1960-05-16,A- -Mrs. Penny Sanchez,Female,431,1979-06-23,AB+ -Benjamin Hanson,Male,432,1938-03-29,AB+ -Michael Hall,Female,433,1996-03-25,AB- -William Stokes,Female,434,1975-04-13,O+ -Tiffany White,Female,435,1959-05-18,AB- -Bradley Cross,Male,436,1933-11-10,A- -Richard Brown,Male,437,1963-07-16,B- -Megan Gibson DVM,Female,438,1932-02-24,O+ -Taylor Byrd,Female,439,1952-03-02,B- -Daniel Kline,Male,440,1950-09-13,B- -Alicia French,Female,441,1964-04-25,AB+ -Shelley Lee,Male,442,1950-02-08,B+ -Jennifer Cunningham,Male,443,1949-09-24,O+ -Robert Powell,Male,444,1990-03-07,B- -Amanda Martinez,Male,445,1945-11-19,B+ -Suzanne Clark,Female,446,1982-07-17,A+ -Cassandra Burke,Male,447,1976-04-30,B- -Mike Winters,Female,448,1946-05-23,A+ -Christopher Clark MD,Female,450,1979-11-25,O+ -Charles Wade,Male,451,1959-02-25,A- -Gabriel Vasquez,Male,452,1953-11-12,AB- -Donald Holden,Male,453,1993-12-11,O+ -Nancy Hodges,Male,454,1990-04-05,AB- -Albert Sandoval,Male,455,1982-12-08,AB- -George Morton,Female,456,1996-09-27,O+ -Peter Sutton,Female,457,1963-09-28,B- -Francisco Allen,Female,458,1943-02-02,O- -Richard Johnson,Female,459,1936-06-26,B- -Jessica Duncan,Male,460,1962-12-18,B- -William Cohen,Female,461,1948-03-22,A- -Gary Jackson,Female,462,1952-05-18,AB+ -Frederick Newman,Female,463,1942-04-23,AB+ -Jason Alvarez,Female,464,1959-10-29,B- -Linda Brown,Female,465,1999-12-12,A+ -Travis Williams,Male,466,1991-04-17,A- -Joshua Brooks,Female,467,1992-12-19,AB- -Catherine Wallace,Female,468,2000-06-24,B+ -Matthew Landry,Female,469,1966-09-12,AB+ -Nicholas Jordan,Female,470,1965-12-04,B- -Jose Brown,Female,471,1991-01-24,A- -Tami Oliver,Female,472,1960-01-10,O- -Rachel Brooks,Male,473,2002-09-18,A+ -Frank Rosario,Male,474,1932-05-03,O+ -Kayla Jackson,Female,475,1986-03-18,B- -Melissa Martinez,Female,476,1985-03-06,A- -Emily Hull,Male,477,1976-06-06,B- -Stephen Reynolds,Male,478,1978-01-01,B+ -Glen Brown,Male,479,1992-02-02,AB- -Ashley Greene,Female,480,1992-07-15,A+ -Julie Acevedo,Male,481,1995-06-02,AB+ -Micheal Duran,Male,482,1957-02-15,AB+ -Rebecca Harrison,Female,483,1943-01-30,AB+ -Johnny Johnson,Male,484,1985-05-30,B+ -Harry Brown,Female,485,1971-12-30,O+ -Tasha Smith,Female,486,1936-10-27,A- -April Young,Female,487,1971-12-20,A+ -Cathy Duncan,Male,488,1969-12-21,A+ -Megan Johnson,Male,489,1983-05-31,AB+ -Joshua Owens,Female,490,1990-06-10,AB+ -Teresa Williams,Male,491,1938-05-10,AB- -Ryan Garrison,Male,492,1973-10-01,B+ -Dr. Benjamin Jimenez,Female,493,1974-11-14,O- -Mariah Davis,Female,494,1989-02-26,O- -Nathan Schwartz,Female,495,1989-05-30,B- -Vickie Bernard,Female,496,1988-03-10,B- -Robert Brown,Male,497,1932-05-26,A+ -Daniel Mayo,Male,498,2000-01-01,A+ -Danny Farley,Male,499,1994-02-05,O+ -Maria Williams,Male,500,1941-05-05,O+ -Sally Henderson,Female,501,1971-08-16,O- -Kathy Walls,Male,502,1949-01-27,B+ -Angela Lara,Female,503,1949-05-20,B- -Terry Martinez,Male,504,1951-11-14,O- -Alicia Bartlett,Male,505,1948-08-13,B+ -Melissa Smith,Female,506,1942-03-24,O- -Bruce Atkinson,Male,507,1976-08-06,B- -Monica Hampton,Male,508,1966-09-26,A- -Travis Barrett,Male,509,1979-06-30,O+ -Kayla Herrera,Male,510,2001-11-22,AB- -Brian Gibson,Male,511,1987-11-14,AB- -Ryan Rodriguez,Male,512,1952-10-03,AB- -Jeremy Whitney,Female,513,1977-02-17,B- -Amanda Hernandez,Female,514,1968-08-07,AB+ -Steven Schaefer,Male,515,1944-03-05,AB+ -Matthew Norris,Male,516,1969-01-18,AB+ -Diana Watkins,Female,517,2001-01-13,A+ -Keith Chambers,Male,518,1999-04-25,O+ -Andrew Davis,Male,519,1952-09-30,O+ -Daniel Horne,Male,520,1946-04-16,A- -Angela Hunter,Male,521,1982-08-18,A- -Karen Clark,Female,522,1933-02-24,A+ -Walter Miller,Male,523,1995-07-23,O- -Shane Olson,Female,524,1935-04-16,B+ -Rhonda Larson,Male,525,1955-03-15,A- -Jasmine Hernandez,Female,526,1979-06-01,AB- -Christopher Delgado,Female,527,1932-12-17,AB+ -Laura Banks,Male,528,1976-04-05,AB- -John Johnson,Female,529,1966-09-16,AB+ -Craig Garcia,Male,530,1951-05-16,AB- -Stephen Wheeler,Male,531,1944-05-04,O- -Heather Walters,Female,532,1976-05-22,B+ -Alexis Huynh,Female,533,1984-11-29,AB- -Timothy Henderson,Female,534,1964-12-23,AB- -Colleen Allen,Male,535,1995-02-17,B- -Robert Cruz,Female,536,1974-06-23,B+ -Laura Torres,Male,537,1966-02-05,AB- -Laura Leonard,Female,538,1939-02-26,B- -Andrew Sharp,Male,539,1966-12-18,O+ -Jacob Jenkins,Female,540,1986-01-01,B+ -Theodore Sanchez,Male,541,1956-06-15,A+ -Robert Harris,Female,542,1976-06-12,B+ -Julie Johnston,Female,543,1971-05-31,B+ -Angela Lewis,Female,544,1994-01-13,AB- -Steven Irwin,Male,545,1952-04-05,O+ -Katelyn Barron,Male,546,1983-06-23,B+ -Karen Sanford,Male,547,1986-06-29,A- -Yvette Banks,Female,548,1934-08-07,A- -James Perkins,Female,549,1939-08-08,B- -Nicholas Marquez,Female,550,1966-05-16,AB- -Christopher Haynes,Male,551,1949-11-10,AB- -Heather Johnson,Female,552,1982-05-16,B+ -John Turner,Female,553,1955-11-01,O- -Maria Mahoney,Female,554,1989-01-23,O+ -Michelle Johnson,Female,555,1960-12-19,AB+ -Monica Serrano,Male,556,1966-05-28,AB+ -Larry Fitzpatrick,Female,557,1980-09-20,O- -Karen Dunn,Male,558,1966-04-07,B- -David Kim,Male,559,1960-07-13,AB+ -Christian Gonzalez,Male,560,1958-08-19,B+ -Martin Hines,Female,561,1992-12-22,AB+ -Sandra Rose,Male,562,1936-10-15,A- -Casey Brown,Male,563,1992-08-11,A- -Vincent Reese,Female,564,2001-10-06,A+ -Mr. John Martin DVM,Female,565,1995-03-06,O+ -Amanda Stone,Female,566,2002-02-05,B- -Timothy Hernandez,Female,567,1942-03-11,AB- -Kelly Jones,Male,568,2002-12-15,O+ -Megan Kelley,Female,569,1946-02-07,B- -Michelle Robinson MD,Female,570,1993-02-08,AB+ -Mr. Christopher Burns DDS,Female,571,1968-07-09,A+ -Deborah Kelley,Male,572,1937-10-20,O+ -Julie Long,Female,573,1950-03-27,AB+ -Natalie Johnson,Male,574,1993-10-06,B- -Steven Rodriguez,Male,575,1962-08-23,O+ -Jennifer Williams,Male,576,1936-10-25,AB- -Mark Gordon,Male,577,1956-11-23,O+ -Jon Harding,Male,578,1955-03-18,AB+ -Leslie Kennedy,Male,579,1956-02-14,B+ -Christina Roberts,Female,580,1974-10-21,B+ -Zachary Roberts,Female,581,1942-08-17,O+ -Steven Reilly,Male,582,1982-08-19,AB- -Amber Carter,Female,583,1998-03-16,A+ -Victor Edwards,Male,584,1946-02-04,A+ -Jeffery Tucker,Female,585,1974-10-04,B+ -Robert Cooper,Female,586,1999-09-27,AB+ -Victoria Velez,Female,587,1992-02-12,B- -Angela Scott,Female,588,1932-05-01,AB+ -Sarah Burke,Male,589,1979-06-24,A+ -Karen Fox,Female,590,2002-07-29,O- -Nathan Harrison,Male,591,1948-09-16,O- -Allen Chen,Male,592,1962-09-08,O+ -Bryan Williams,Female,593,1936-08-24,AB- -Stephanie Reed,Male,594,2001-07-31,B+ -Bradley Jones,Male,595,1940-12-14,A- -Francis Wheeler,Female,596,1943-11-01,A- -Ricardo Mcconnell,Male,597,1937-07-01,A- -Heather Stephens,Female,598,1990-07-21,O+ -Michael Parker,Male,599,1944-10-01,O- -Craig Leonard,Female,600,1951-11-29,A+ -Kevin Cunningham,Female,601,1945-02-27,O+ -Terrance Knapp,Female,602,1966-11-27,A- -Teresa Martinez,Male,603,1940-09-18,A- -Desiree Gordon,Female,604,1977-10-11,B+ -David Reyes,Female,605,1996-01-02,AB+ -Jessica Yates,Female,606,1986-11-07,A- -Amber Wade,Female,607,1959-02-14,AB- -Jo Clark,Male,608,1986-02-07,A- -Kevin Frederick,Female,609,1945-09-05,AB+ -Alfred Johnson,Male,610,1939-03-28,A- -Emily Mason,Female,611,1963-04-19,AB- -Terry Thompson,Female,612,1999-05-08,A+ -Michael Simon,Female,613,1935-09-14,O+ -Diana Stevens,Male,614,1999-05-30,AB- -Luis Cooper,Female,615,1993-05-02,AB+ -George Allison,Male,616,1974-07-30,O+ -David Boyd,Female,617,1971-11-27,O+ -Leonard Benton,Male,618,1956-11-17,AB+ -Kenneth Armstrong,Female,619,1960-10-31,B+ -Angela Lopez,Female,620,1931-02-22,O- -Stanley Kirby,Male,621,1997-08-07,A- -Stephanie Bryant,Female,622,1954-02-12,AB- -Daniel Barajas,Male,623,1985-09-27,AB+ -Joy Mitchell,Male,624,1938-12-12,A+ -Daniel Mccoy,Female,625,1977-02-12,B- -Latoya Liu,Male,626,1995-11-08,AB+ -Michael Thompson,Female,627,1945-09-24,A- -Daryl Torres,Female,628,2001-06-09,A- -Cindy Gomez,Female,629,1961-01-16,O+ -Sherry Williams,Male,630,1931-02-17,O+ -Kurt Gordon,Female,631,1950-08-27,AB+ -Tammy Hamilton,Male,632,1950-10-10,B- -Kevin Montoya,Female,633,1931-12-30,B+ -Dana Beck,Male,634,1994-06-22,AB+ -Crystal Green,Male,635,1999-02-19,B- -Steven Clark,Female,636,1961-12-01,B+ -Cheryl Thomas,Male,637,1946-05-25,B- -Judith Trevino,Female,638,1981-09-18,A- -Amy Keller,Female,639,1938-02-15,A- -Gerald Moore,Male,640,1969-10-10,A- -Deanna Stone,Female,641,1982-06-27,A+ -John Rios,Female,643,1973-12-09,A- -James Chung,Female,644,1977-12-06,AB- -Kimberly Mccarthy,Male,645,1986-01-10,O+ -Christine Young,Female,646,1979-02-28,O+ -Donald Walker,Female,647,1943-11-22,B- -Shane Black,Male,648,1943-12-23,O+ -Derek Henderson,Male,649,1935-11-14,O- -Pamela Miller,Male,650,2001-11-27,B+ -Allison Aguilar,Male,651,1993-06-29,B- -Ms. Katelyn Lopez MD,Female,652,1950-02-22,O+ -Alicia Evans,Female,653,1962-12-22,O- -David Collins,Male,654,1939-06-03,B+ -Lisa Marshall,Male,655,1985-03-03,A+ -Miss Courtney Navarro,Male,656,1945-06-15,O+ -Pamela Sullivan,Female,657,1958-10-19,O- -Linda Stewart,Male,658,1969-11-04,AB+ -Daniel Blevins,Female,659,1937-12-24,AB- -Kenneth Oconnell,Female,660,1988-06-17,AB+ -Tamara Salazar,Female,661,1991-01-22,O- -Tammy Lewis,Female,662,1967-03-12,B- -Christine Lewis,Male,663,1963-04-02,A- -Lynn Lowery,Male,664,1969-06-02,A- -Marie Franklin,Male,665,1954-01-22,A- -Holly Norman,Female,666,1968-11-08,B+ -Michael Russell,Male,667,1931-12-30,B- -Richard Vega,Male,668,1978-08-06,B+ -Jessica Mcdonald,Female,669,1987-02-27,O+ -Bruce Johnson,Female,670,1931-11-30,A- -Daniel Meadows,Male,671,1949-09-04,AB+ -Jesse Tucker,Female,672,1969-09-25,B- -Ryan Anderson,Male,673,1968-02-14,B- -Kaitlyn Sampson,Female,674,1975-12-10,A- -Brian York,Male,675,1950-04-06,AB+ -Ashley Martinez,Female,676,1996-12-26,A+ -Andre Burch,Female,677,1941-06-03,B- -Stephen Combs,Male,678,1941-12-09,A- -Allison Reed PhD,Male,679,1936-11-07,AB- -Abigail Mitchell,Female,680,2002-04-08,O- -Jackie Arellano,Female,681,1976-10-27,B+ -Sierra Moreno,Female,682,1982-06-23,O+ -Daniel Golden,Male,683,1988-05-26,B- -Melissa Martin,Female,684,1945-01-08,AB- -Emily Johnson,Female,685,1952-10-27,AB- -Angela Taylor,Male,686,1988-06-29,B- -Ronald Becker,Male,687,1994-10-02,A+ -Tanya Sanford DDS,Male,688,1942-04-19,O- -Jerry Roman,Male,689,1994-07-20,O+ -Adam Stephens,Female,690,1960-06-22,B- -Jane Vargas,Female,691,1990-02-27,B+ -Joseph Smith,Male,692,1950-12-13,O+ -Sydney Gill,Male,693,1984-10-24,AB+ -Katherine White,Female,694,1933-03-13,AB- -Joy Martinez,Female,695,1932-11-28,AB- -Karen Mccoy,Male,696,1980-10-05,B- -David Pierce,Female,697,1996-05-18,B- -Sandra Payne,Female,698,1988-12-27,B+ -Theresa Woodard,Female,699,1989-05-20,AB+ -Cindy Lowe,Female,700,1960-08-05,A+ -Deborah Perry,Female,701,1992-10-07,B- -Yesenia Williams,Female,702,1942-12-13,AB- -Amanda Jones,Male,703,1955-08-06,O+ -Julie Brooks,Male,704,1994-12-05,O- -Nicholas Martin,Male,705,1944-08-09,A- -Patricia Rivera,Female,706,1954-06-08,O+ -Jeffrey Lawrence,Male,707,1941-11-09,A+ -Curtis Dean,Male,708,1996-10-15,O- -Tabitha Price,Male,709,1948-08-15,O+ -Todd Hernandez,Male,710,1943-04-09,O+ -Seth Burgess,Male,711,1948-06-06,AB+ -Stephanie James,Male,712,1972-01-29,A- -Brandon Scott,Female,713,1994-09-07,B+ -Clarence Munoz,Male,714,1977-06-20,A+ -Theresa Ball,Male,715,1936-12-14,AB- -Barbara Gutierrez,Female,716,1949-04-27,AB+ -Kimberly Fernandez,Female,717,1961-07-13,O- -Eric Combs,Female,718,1961-06-20,A- -Travis Jordan,Female,719,1934-03-23,AB- -Dillon Dunlap,Female,720,1989-05-08,AB+ -Sonya Gonzales,Female,721,1968-03-26,A- -Erin Sharp,Male,722,1978-02-13,B+ -Eric Green,Female,723,1947-04-15,A+ -Tina Howard,Female,724,1993-11-08,B- -Michael Lewis,Male,725,1982-03-14,B+ -Thomas Rodriguez,Female,726,2000-08-14,B- -Linda Gillespie,Male,727,1979-01-28,O- -Terry Lawson,Female,728,1991-10-04,B- -Kelsey Perry,Female,729,1990-01-11,AB+ -Erik Wood,Male,730,1967-10-21,O- -Jeremy Jones,Female,731,1956-03-25,AB- -Elizabeth Stafford,Male,732,2002-05-15,B+ -Jason Alvarado,Female,733,1978-08-06,B+ -Mary Stein,Male,734,1953-10-18,A+ -Sandra Green,Male,735,2001-11-20,O- -Nicholas Mitchell,Male,736,1998-09-07,AB- -Joshua Gates,Male,737,1950-07-09,B+ -William Hart,Female,738,1941-10-22,O- -Leah Harrington,Male,739,1933-08-17,O+ -Victoria Kennedy,Female,740,2000-06-13,O+ -Juan Vargas,Male,741,2002-04-16,O- -Mr. Bryan Williams,Male,742,1938-08-08,B+ -Sabrina Barron,Male,743,1995-03-04,A- -Anthony Bailey,Male,744,1984-05-27,B- -Ryan Edwards,Male,745,1934-12-16,O+ -William Osborne,Male,746,1948-01-15,A- -Jennifer Perez,Female,747,1982-11-11,A- -Natasha Fischer,Male,748,1944-07-07,A+ -Jennifer Wang,Male,749,1986-04-27,AB- -Danielle Jones,Female,750,1999-03-29,AB+ -Lori Walker,Male,751,1991-03-23,O+ -Lauren Sosa,Female,752,1972-05-25,O- -John Lynch,Male,753,1962-01-27,B- -Elizabeth Johnson,Male,754,1986-07-18,AB+ -Karen Butler,Male,755,1943-01-01,AB- -Brittany Baker,Male,756,1988-02-19,A- -Melissa Dean,Male,757,1955-11-01,AB- -Sylvia Johnson,Male,758,1940-02-27,B+ -Johnny Stephens,Male,759,2000-03-31,O+ -Michele Thompson,Female,760,1992-12-24,AB- -Loretta Schmitt,Female,761,1998-07-14,AB- -Malik Phillips,Female,762,1965-11-29,B- -Andrea Thompson,Male,763,1999-09-26,B+ -Brenda James,Female,764,1956-03-21,B+ -Jeff Castillo,Female,765,1957-10-16,A- -John Kim,Male,766,1983-04-09,B- -Marie Cooper,Male,767,1947-11-18,B- -Christopher Powers,Female,768,1957-11-23,O- -Rebecca Johnson,Female,769,1970-03-15,AB- -Annette Cruz,Female,770,1931-05-20,AB- -Melissa Mcdonald,Male,771,1933-04-29,B+ -Ashley English,Female,772,1934-03-12,AB- -Kevin Thomas,Male,773,1995-08-08,A+ -Sean Sullivan,Female,774,1932-04-03,B- -Mark Proctor,Male,775,1977-05-26,AB+ -Annette Mitchell,Female,776,1943-10-09,B+ -Carl Thompson,Female,777,1966-10-07,O+ -Steven Davis,Female,778,1975-03-23,B+ -Justin Cunningham,Male,779,1935-10-07,A- -Christine Bryant,Female,780,1939-12-07,AB+ -Andrea Rich,Male,781,1965-07-08,A- -Audrey Moore,Male,782,1992-02-25,O- -Rebecca Lyons,Female,783,1935-01-27,O- -Steven Davis,Male,784,1943-06-12,A- -Ana Clark,Male,785,1986-04-16,AB- -Brandon Miller MD,Female,786,1960-02-16,AB+ -Autumn Ortiz,Female,787,1989-07-02,AB- -Ana Stone,Female,788,2000-09-16,B+ -Anthony Conner Jr.,Male,789,1967-11-26,A+ -April Williams,Male,790,1962-01-17,O- -Justin Martin,Male,791,1973-02-25,O- -Jason Whitaker,Male,792,1946-12-13,AB+ -Holly Knight,Female,793,1978-04-19,O- -Lori Phillips,Male,794,1984-02-07,A+ -Nicholas Johnson,Female,795,1945-06-16,A+ -Amy Bowman,Female,796,1984-05-27,A+ -Joshua Frey,Male,797,1984-09-02,O+ -William Farrell,Female,798,1956-04-02,A+ -Danielle Nunez,Male,799,1962-05-22,A+ -Mrs. Natasha Williams,Male,800,1952-01-19,O+ -Peter Davis MD,Female,801,1939-02-13,AB- -Angie Robinson,Male,802,1982-04-05,B+ -Elizabeth Burton,Female,803,1953-09-19,B- -Gloria Weaver,Female,804,1997-02-02,O- -David Thomas,Female,805,1949-06-24,A+ -Hector Gross,Female,806,1966-06-24,O- -Sean Holmes,Male,807,1933-09-15,AB+ -Sandra Mcclain,Female,808,1960-01-19,O- -Ashley Osborne,Female,809,1960-03-07,A- -Erin Baldwin,Female,810,1988-09-20,AB- -Kenneth Mcfarland,Female,811,1998-04-07,B+ -Timothy Wu,Female,812,1995-08-07,O+ -Margaret Hamilton,Male,813,1931-10-30,O- -Jeffery Patton,Male,814,1987-02-03,O- -Cameron Hall,Male,815,1955-07-26,O- -Matthew Olson,Male,816,1967-05-26,B- -Kevin Padilla,Female,817,1993-07-12,B- -Paul Brooks,Male,818,1940-03-08,AB+ -Crystal Allen,Female,819,1982-05-17,O+ -Brian Williams,Male,820,1950-06-28,O- -Laura Schmidt,Female,821,1931-06-24,O- -Sarah Campbell,Male,822,1943-08-05,O- -Kristen Johnson,Male,823,1943-03-29,O- -Antonio Robbins,Male,824,1985-03-12,B- -Debra Mcdaniel,Male,825,1946-07-18,AB- -Virginia Wolfe,Male,826,1970-08-16,AB- -Carolyn Nguyen DVM,Male,827,1994-04-21,AB+ -Christopher Cervantes,Female,828,1950-01-08,A- -Alan Alvarado,Female,829,1944-07-26,A+ -Kelly Taylor,Male,830,1966-03-09,O+ -Justin Perry,Male,831,1991-08-25,AB- -Kristin Proctor,Female,832,1996-06-18,A- -Danielle Hunter,Female,833,1937-08-11,B+ -Jeanne Gray,Female,834,1977-05-22,B+ -Rachel Marks,Female,835,1934-05-01,O- -Matthew Bush,Male,836,1995-12-24,B+ -Justin Buck,Female,837,1983-12-17,AB- -Julie Murray,Male,838,1964-09-16,AB+ -Travis Dyer,Male,839,1945-08-23,A+ -Matthew Good DVM,Female,840,1994-02-04,AB- -Lori Lyons,Female,841,1975-07-23,AB+ -Michael Monroe,Male,842,1943-02-26,B+ -Christopher Miller,Male,843,1979-11-22,B- -Chris Roth,Female,844,1957-10-02,A+ -Jennifer Harrison,Male,845,1930-01-10,AB+ -Jeffrey Carter,Female,846,1982-09-20,A- -Alexis Jones,Male,847,1999-06-21,AB- -Karen Mills,Female,848,1995-02-22,B- -Linda Collins,Male,849,1995-03-03,A- -Tricia Oliver,Female,850,1944-01-12,AB+ -Corey Cruz,Male,851,1932-10-12,AB+ -Christopher Adams,Female,852,2002-04-13,B+ -Michael Mccall,Female,853,1936-01-03,A- -Monica Ryan,Female,854,1953-01-15,AB- -Shannon Gonzales,Female,855,1967-02-06,A+ -Mason Boyd,Male,856,1969-09-25,B- -Laura Romero PhD,Male,857,1995-04-03,B+ -Angela Lewis,Male,858,1941-05-21,O- -Dwayne Fletcher,Female,859,1985-08-09,O+ -Robert Benitez PhD,Female,860,1949-01-31,A+ -Jamie Holland,Male,861,1948-12-30,B+ -Miss Lisa Hale,Male,862,1987-12-16,B- -Michelle Williams,Male,863,1967-09-16,A- -Mark Browning,Female,864,1985-10-23,AB+ -Heather Johnston,Female,865,1979-05-01,A- -Joy Henry,Female,866,1958-04-28,B+ -Sonya Hernandez,Female,867,1949-11-23,B- -Steven Martinez,Female,868,1953-10-29,A- -Heather Washington,Male,869,1931-01-20,A- -Michael Crawford,Male,870,1931-02-09,O+ -Andrew Harmon,Female,871,1952-05-20,AB- -Stacey Wade,Female,872,1971-07-03,B+ -Shannon Williams,Male,873,1964-12-11,O+ -Mr. Theodore Roberts,Male,874,1980-05-02,B+ -Catherine Potter,Male,875,1956-12-30,O- -Daniel Murray,Female,876,1946-05-26,O- -John Steele,Female,877,1971-05-12,O+ -Bradley Sanford,Female,878,1978-11-09,A+ -Courtney Salinas,Male,879,1994-07-18,A+ -Kevin Hernandez,Male,880,1994-05-29,A- -Lisa Gallegos,Male,881,1939-12-16,A- -Heather Hoffman,Male,882,1959-11-21,AB+ -Madeline Vaughan,Female,883,1943-03-03,O- -Susan Oconnell,Female,884,1986-04-19,B+ -Jeffrey Clark,Female,885,1966-11-04,AB+ -Robert Trevino,Male,886,1972-04-14,O- -Kayla Williams,Female,887,1994-09-11,O+ -Jeremy Duffy,Female,888,1992-12-05,A+ -Steven Lyons,Female,889,1946-06-03,A- -Linda Davis,Female,890,1935-08-11,A+ -James Roberts,Female,891,1963-10-13,O+ -Kevin Armstrong,Female,892,1987-12-12,AB+ -Tamara Scott,Male,893,1976-10-26,AB+ -Tiffany Macias,Male,894,1996-08-05,B- -Diana Brown,Female,895,1990-02-04,A- -Jeremy Gentry,Female,896,1942-06-11,A- -Rebecca Blackwell,Female,897,1943-08-17,B+ -Lauren Patterson,Male,898,1964-12-23,A- -Lisa Phillips,Male,899,1957-06-03,O- -Thomas Walsh,Male,900,2002-12-26,AB+ -Justin Cardenas,Male,901,1939-05-13,O+ -David Wright,Female,902,1969-07-05,AB+ -Renee Miller,Male,903,1949-10-27,A+ -Jeffrey Mckinney DDS,Female,904,2001-08-06,O- -David Copeland,Male,905,1969-09-02,A- -Alec Hess,Male,906,1975-07-17,B+ -Anthony Brown,Male,907,1999-02-17,B+ -Harry Johns,Male,908,1958-05-11,B+ -Roberto Beck,Male,909,1976-12-19,AB- -Jessica Hanna,Female,910,1941-12-12,B- -Daniel Evans,Male,911,1957-11-11,O- -Samantha Patel,Female,912,1977-10-22,A+ -Megan Livingston,Male,913,1953-01-27,A- -Thomas Brown,Female,914,1953-06-29,A+ -Jeremy Vasquez,Female,915,1996-06-28,A+ -Joshua Faulkner,Male,916,1943-04-21,A- -Kimberly Shelton,Female,917,1957-06-28,A+ -Marissa Dixon,Male,918,1992-10-10,B+ -Theresa May,Male,919,1987-10-12,O+ -Derek Patton,Male,920,1982-07-25,B- -Kristina Day,Female,921,1984-02-05,AB- -Andrea Nicholson,Male,922,1971-10-07,A+ -Andrew Jenkins,Female,923,1961-05-28,A+ -Kelly Graham,Female,924,1933-06-06,AB+ -David Jacobs,Male,925,1949-02-26,B- -David Garcia,Female,926,1963-05-01,O- -Sherry Petty,Male,927,1942-10-18,B- -Jonathan Snyder,Male,928,1987-04-06,B- -Wayne May,Female,929,1973-03-17,A- -Thomas Sharp,Male,930,1965-09-25,A- -Randy Huffman,Male,931,1948-11-03,A- -Chase Mooney,Male,932,1949-01-10,AB- -April Eaton,Female,933,1956-01-26,B+ -Johnny Johnson,Female,934,1991-12-12,B- -Jessica Lee,Male,935,1951-12-14,AB- -Steve Meyer,Female,936,1949-01-02,A+ -Laura Henderson,Female,937,2001-01-02,A- -Sandra Ford,Male,938,1994-01-11,A+ -Tara Graham,Female,939,1957-12-14,A- -Nicholas Lewis,Female,940,1978-07-03,O+ -Michael Jones,Male,941,1986-07-11,AB- -Bradley Durham,Female,942,1995-10-19,AB- -James Blair,Female,943,1956-02-24,B+ -Glenda Cooper,Male,944,1988-11-11,O- -Lee Clark,Female,945,1942-09-12,AB+ -Joshua Sullivan,Female,946,1943-04-17,B- -Jennifer Hoover,Male,947,1983-07-23,O- -Jacqueline Walker,Female,948,1996-01-09,AB- -Daniel Branch,Male,949,1958-04-04,O- -Christopher Barron,Male,950,1980-10-29,O+ -Marie Vargas,Male,951,1943-05-25,AB+ -William Garza,Female,952,1949-04-14,B+ -Bernard Gibbs,Female,953,1975-03-27,AB- -Mark French,Female,954,1992-03-07,AB- -Jennifer Walker,Female,955,1984-05-13,B- -Elizabeth Anderson,Female,956,1989-10-11,B+ -Theodore Zamora,Female,957,1982-08-12,B+ -Kenneth Obrien,Male,958,1984-08-28,A- -Aaron Gray,Male,959,1991-03-17,AB+ -Jennifer Le,Male,960,1941-05-27,O+ -Samuel Braun,Male,962,1951-09-29,A+ -Chloe Adams,Female,963,1969-05-24,O- -Gail Harris,Male,964,1945-04-01,B+ -Andrew Gibbs,Female,965,1941-10-10,B- -Jonathan Jimenez,Female,966,1947-03-02,AB- -James Smith,Male,967,1940-06-15,A+ -Jonathan Herring,Female,968,1962-11-24,O+ -Jasmin Scott,Male,969,1963-07-01,AB+ -Daniel Wilkinson,Male,970,1980-01-29,B+ -Kevin Robinson,Female,971,1947-02-15,O- -Lance Bradley,Female,972,1976-12-09,B+ -Jacob Franco,Male,973,1996-04-18,B- -Jennifer Nelson MD,Female,974,1950-02-15,B+ -Gabriella James,Female,975,1971-07-28,B+ -Megan Wheeler,Female,976,1947-01-30,B+ -Molly Brewer,Male,977,1946-09-04,AB- -William Williams,Male,978,1961-11-11,AB- -Drew Crane,Female,979,1991-05-16,A+ -Stacey Craig,Female,980,1995-11-27,A+ -Joel Mendoza,Male,981,1999-10-01,O- -Sarah Weaver,Male,982,1964-08-17,AB+ -Barbara Garrett,Female,983,1957-02-19,O+ -Whitney Bradley,Male,984,1953-03-13,A- -Patricia Taylor,Female,985,1980-01-10,AB+ -David Richardson,Male,986,1938-12-11,AB+ -Lee Peterson,Female,987,1931-10-29,AB+ -Kenneth Rollins,Male,988,1941-06-20,A- -Ryan Copeland,Male,989,1976-09-11,O- -Laura Jones,Female,990,1957-10-27,A- -Nicole Bullock,Female,991,1993-05-31,O- -Christopher Phillips,Male,992,1960-12-23,A- -Joshua Phillips,Male,993,1995-08-02,O+ -Zachary Collins,Female,994,1996-08-22,B+ -Natalie Navarro,Female,995,1988-11-20,AB+ -John George,Female,996,1990-02-24,B+ -April Gomez,Female,997,1965-04-18,O- -Jacob Hoover,Male,998,1943-01-30,A- -Alan Bell,Male,999,1940-09-05,O+ -Stacey Wilson,Female,1000,1993-02-20,A- -April Martin,Male,1001,1967-07-22,B+ -Kimberly Williams,Female,1002,1949-02-11,AB- -Jonathan Moore,Female,1003,1947-06-17,O+ -Paul Davidson,Female,1004,1976-04-16,AB+ -Anthony Johnson,Male,1005,1981-05-30,B- -Mark Moss,Male,1006,1981-12-16,AB+ -Greg Richardson,Female,1007,1957-10-26,B- -Philip Hall,Male,1008,2002-02-01,O+ -Judith Jackson,Female,1009,1968-09-02,AB- -Amber Perez,Male,1010,1974-07-31,B+ -Sherry Bass,Female,1011,1994-09-06,AB- -Tiffany Davies,Female,1012,1993-11-07,O- -Sabrina House MD,Male,1013,1958-09-19,AB- -Bill Garcia,Male,1014,1991-10-22,A+ -Jesse Kelly,Male,1015,1944-05-07,O+ -Emily Mosley,Male,1016,1958-08-15,B+ -Megan Garcia,Male,1017,1958-09-09,B+ -Austin Buchanan,Female,1018,1992-08-20,O- -Destiny Hicks DVM,Female,1019,1963-12-08,B+ -Joseph Johnson PhD,Female,1020,1982-09-27,AB- -Daniel Merritt,Male,1021,1986-03-15,O+ -Morgan Sanchez,Female,1022,1984-11-01,AB+ -Michael Gibbs,Male,1023,1942-02-19,AB- -Michael Phillips,Female,1024,1967-02-24,A- -Nathan Frank,Male,1025,2002-11-30,B- -John Perez,Male,1026,1968-10-26,O+ -Jason Henry,Male,1027,1978-05-09,B+ -Sarah Long,Male,1028,1990-10-08,O- -Rachel Vaughan,Female,1029,1930-10-30,AB+ -April Smith,Female,1030,1976-08-09,A+ -Kathleen Conner,Male,1031,1930-02-25,AB+ -Ryan Lopez,Female,1032,1965-08-18,AB- -Meagan Wright,Male,1033,1953-11-13,B- -Ashley Gonzales,Female,1034,1952-04-25,AB+ -Steven Simmons,Male,1035,1935-10-27,A+ -Scott Green,Male,1036,1961-06-06,A- -Jennifer Hunter,Male,1037,1973-02-09,O- -Christopher Gallegos,Female,1038,1975-11-09,O+ -Elizabeth Fernandez,Male,1039,1948-08-23,B- -Holly Meyers,Female,1040,1942-08-27,A+ -Bailey Wells,Female,1041,1971-03-01,B+ -Edward Decker,Female,1042,1967-04-20,AB- -David Wilson,Female,1043,1944-01-14,AB- -Michael Robertson,Male,1044,1944-01-10,AB- -Miss Mary Moon,Female,1045,1979-05-14,B+ -Theresa Young,Female,1046,1977-05-16,B+ -Bonnie Harding,Female,1047,1982-07-08,B- -Christopher Cabrera,Male,1048,1992-09-02,AB+ -John Carlson,Female,1049,1946-01-27,B- -Katherine Thompson,Male,1050,1934-03-12,AB- -Jessica Garcia,Female,1051,1952-05-17,A- -Christy Martinez,Female,1052,1984-01-07,A+ -Christina Perry,Male,1053,1951-01-04,O+ -Ryan Allen,Male,1054,1993-11-19,O+ -Christine Washington,Female,1055,1948-11-04,B- -Tim Rich,Female,1056,1935-03-22,AB- -Jessica Wagner,Male,1057,1938-06-14,B+ -Thomas Davis,Female,1058,1966-12-21,O- -Kelly Robertson,Male,1059,1952-04-27,A- -Terry Wong,Female,1060,1945-09-29,B- -Angela Copeland,Female,1061,1964-12-20,AB- -Anna Lopez,Female,1062,1958-02-10,AB+ -Jared Scott,Male,1063,1999-03-29,O+ -Mrs. Kristin Stephenson,Female,1064,1932-11-28,O+ -Lisa Lee,Female,1065,1980-04-08,A- -Sara Taylor,Male,1066,1978-05-29,O+ -Amanda Patel,Female,1067,1947-01-21,O- -Danielle Andrews,Female,1068,1995-10-12,AB- -Robert Thomas,Female,1069,1975-03-15,AB- -Kevin Mccormick,Male,1070,1971-06-22,A- -Joseph Hill,Male,1071,1942-09-07,AB- -Adam Burnett,Female,1072,1947-03-21,B+ -Joe Jones,Female,1073,1939-11-06,A- -Gregory Robertson,Male,1074,1961-06-02,AB- -Colleen Mann,Female,1075,1946-11-21,O- -David Turner,Male,1076,1956-10-26,A+ -Daniel Harris,Male,1077,1950-09-14,B- -Jamie Hughes,Male,1078,1952-08-11,B- -Harry Higgins,Female,1079,1975-06-30,AB- -Danielle Robles,Male,1080,2000-06-27,AB+ -Courtney Davis,Male,1081,1947-06-12,O+ -Penny Ross,Female,1082,1986-05-17,O- -Evan Fletcher,Female,1083,2001-05-17,AB+ -Brandon Scott,Male,1084,1969-05-05,B+ -George Petersen,Female,1085,1965-05-07,AB+ -Clayton Franklin,Female,1086,1951-10-01,AB- -Amanda Villegas,Female,1087,1963-05-27,O- -Brandon Thornton,Female,1088,1973-01-23,B- -Tracy Sheppard,Male,1089,1993-09-22,O+ -Lauren Carr,Male,1090,1948-06-13,B- -William Stephens,Female,1091,1973-07-27,AB+ -Autumn Proctor,Female,1092,1936-10-08,B+ -Kelly Wilson,Female,1093,1982-05-11,O+ -Cindy Combs,Female,1094,1989-08-24,A+ -Karen Ramirez,Male,1095,1972-12-05,AB+ -Isabella Powell,Male,1096,1934-10-28,B- -Matthew Greene,Male,1097,1957-11-02,B- -Karen Jackson,Female,1098,1958-11-24,AB- -Michael Martin,Female,1099,1977-04-04,B- -Morgan Collins,Female,1100,1969-02-02,O- -Jerry Welch,Female,1101,1940-06-09,AB+ -Lisa Friedman,Male,1102,2000-11-17,A- -Diane Green,Female,1103,1978-11-09,A- -Sandra Young,Female,1104,1979-08-09,B+ -Nicole Morris,Male,1105,1934-05-25,O+ -David Avila,Female,1106,1945-05-24,B- -John Powers,Female,1107,1948-07-12,AB- -Judy Anderson,Female,1108,1961-10-18,AB- -Julie Krause,Female,1109,1993-12-26,B- -David Richards,Female,1110,1984-06-27,O- -Charles Webster,Female,1111,1958-12-29,AB- -Karen Robinson,Male,1112,1968-02-09,A- -Michael Roth,Female,1113,1985-01-31,O+ -Travis Durham,Male,1114,2000-06-18,AB+ -Jessica Riley,Male,1115,1965-09-20,A+ -Rebecca Travis,Female,1116,1997-12-13,O- -Melvin Miller,Female,1117,1937-02-03,B+ -Dr. Deanna Rodriguez,Male,1118,1977-10-08,B+ -Barbara Love,Male,1119,1941-11-03,AB- -Anthony Steele,Female,1120,1959-07-15,AB+ -Matthew Hoffman,Female,1121,1954-12-12,A+ -Jennifer Ward,Female,1122,1944-08-17,B+ -Brian Charles,Male,1123,1974-11-15,B- -Regina Byrd,Female,1124,1995-05-13,B- -Karen Velazquez,Male,1125,1953-09-16,O+ -Brandon Mcbride,Female,1126,1968-06-13,A+ -Catherine Alvarado,Male,1127,1997-04-18,B- -Erika Anthony,Female,1128,1991-03-12,B+ -Mark Goodman,Male,1129,1954-03-13,B- -Maria Fuentes,Male,1130,1930-04-28,A- -Meghan Jordan,Male,1131,1968-02-08,AB- -John Klein,Male,1132,1981-11-04,B+ -Charlene Clayton,Male,1133,1969-03-06,B+ -Luke Lowery,Male,1134,1966-03-27,B+ -Robert Gould,Female,1135,1945-03-23,O+ -Heather Adams,Female,1136,1986-08-08,AB+ -Crystal Baker,Male,1137,1932-04-26,B+ -Elizabeth Murphy,Female,1138,1959-12-29,B- -Joel Butler,Male,1139,1967-07-09,A- -Jennifer Smith,Male,1140,1972-02-15,B+ -Marilyn Murray,Female,1141,1967-08-21,O- -David Crawford,Female,1142,1992-02-25,O- -Alexandra Murphy,Female,1143,1947-09-18,AB+ -Cynthia Garner DDS,Male,1144,1955-07-22,A+ -Sherry Robertson,Male,1145,2002-03-30,O+ -Sarah Strickland,Female,1146,1999-04-08,A- -Cheryl Herrera,Female,1147,1975-06-22,AB- -Michael Barajas,Male,1148,1965-02-05,A- -Elizabeth Dunn,Female,1149,1941-07-10,O- -Aaron Mack,Male,1150,1947-03-16,O- -Nicholas Castillo,Female,1151,1935-08-11,AB+ -Bryan Saunders,Male,1152,1947-01-25,A+ -Michael Soto,Male,1153,1965-06-07,A+ -Eric Thompson,Female,1154,1964-07-08,AB+ -Nicholas Carrillo,Male,1155,1956-09-26,B+ -Kayla James,Male,1156,1935-01-03,A- -Chelsea Henderson,Female,1157,1935-04-02,O- -Kimberly Carter,Male,1158,1986-06-14,A- -Ronald Mueller,Female,1159,1949-02-18,A- -Brenda Scott,Female,1160,1980-05-28,O+ -Robert Thompson,Male,1161,1969-12-16,O- -Kimberly Taylor,Male,1162,1985-02-09,A+ -Connie Stevens,Male,1163,1999-10-03,AB- -Logan Levine,Male,1164,1965-07-13,A- -Tina Ochoa,Female,1165,2002-11-14,O- -Kristin Nichols,Female,1166,1930-01-10,A- -Amanda Patrick,Female,1167,1975-07-28,O+ -Patricia Jones,Male,1168,1991-05-23,B+ -Anthony Young,Male,1169,1957-01-04,B- -Danielle Watson,Male,1170,1936-01-29,O- -Thomas Lewis,Female,1171,1949-04-12,AB+ -Brittany Smith,Female,1172,1980-07-01,B- -Mrs. Jessica Larsen MD,Male,1173,1944-06-23,A- -Christine Leonard,Male,1174,1934-06-08,AB+ -Leah Meyer,Female,1175,1953-04-22,AB+ -William Moon,Female,1176,1933-09-04,AB+ -Teresa Oconnell,Female,1177,1958-12-08,O- -Marilyn Ramsey,Female,1178,1982-08-12,A+ -Heather Yang,Male,1179,1982-08-04,A- -Jeremy Sandoval,Male,1180,1980-04-26,B- -Jamie Davis,Female,1181,1968-12-18,O+ -Lauren Gonzalez,Female,1182,2002-11-13,A+ -James Townsend,Male,1183,1939-07-23,A- -Taylor Bennett,Female,1184,1955-06-29,B+ -Justin Lane,Male,1185,1951-11-11,B+ -Nancy Lee,Male,1186,1979-04-02,O- -Robert Jenkins,Male,1187,1963-06-16,AB+ -Mercedes Estrada,Female,1188,1930-08-24,O+ -Gary Morris,Male,1189,1957-10-27,A- -Nathan Wilson,Female,1190,1935-03-24,B- -Samantha Herrera,Male,1191,1953-06-16,A- -Vickie Rogers,Male,1192,1939-09-01,A+ -Jacqueline Adams,Female,1193,1944-05-23,B+ -Heidi Burns PhD,Female,1194,1982-01-27,AB- -Samantha Peters,Female,1195,1952-05-07,A+ -Willie Perry,Female,1196,2001-08-02,A- -Kathleen Smith,Female,1197,1981-11-13,O+ -John Sandoval,Female,1198,1944-10-29,A- -Stephen Casey,Female,1199,1939-04-15,A- -Aaron Hill,Male,1200,1960-07-19,O- -Kelly Orozco,Female,1201,1946-04-18,B- -Curtis Allen,Female,1202,1989-10-30,O+ -John Smith,Male,1203,1951-12-04,A- -Kathleen Diaz,Female,1204,1954-10-26,AB+ -Brandon Wood,Male,1205,2000-09-18,B- -Carla Mitchell,Male,1206,1992-06-01,A+ -Dawn Taylor,Female,1207,1993-11-11,O+ -Chelsea Cardenas,Male,1208,2000-11-19,A+ -Jordan Miller,Female,1209,1988-01-21,B+ -Brendan Cross,Female,1210,1972-07-03,A- -Heather Watson,Female,1211,1982-10-17,A+ -Kenneth Johnston,Male,1212,1995-07-09,A+ -David Smith,Female,1213,1930-03-19,O- -Adam Daniels,Male,1214,1950-09-30,A+ -Charles Arnold,Female,1215,1986-06-07,AB+ -Sean Flores,Male,1216,1976-07-02,AB+ -Patricia Weeks,Male,1217,1968-06-30,B- -Pam Davis,Male,1218,1977-10-10,A- -Ronald Caldwell,Male,1219,1980-09-15,AB- -Blake Daniels,Male,1220,1958-11-05,B+ -Gregory Miller,Male,1221,2002-05-22,A+ -Vicki Camacho,Male,1222,1956-01-15,A+ -Melissa Henry,Male,1223,1949-01-04,O+ -Tammy James,Male,1224,1962-09-24,O- -Cynthia Davidson,Female,1225,1951-05-15,AB- -Daniel Luna,Female,1226,1947-12-23,B- -Connie Garcia,Male,1227,1946-05-21,B+ -Tina Serrano,Female,1228,1988-12-08,AB- -Jonathan Richards,Male,1229,1942-10-15,A+ -Anthony Moss,Male,1230,1980-11-08,O+ -Rhonda Young,Male,1231,1955-02-23,A- -Jessica Nguyen,Female,1232,1982-04-14,O- -Michael Robbins,Female,1233,1936-01-02,A- -Brandon Crawford,Female,1234,1933-06-02,B- -Tonya Horton,Male,1235,1960-10-16,AB- -Marcia Mckenzie,Female,1236,1965-01-07,B- -Mary Turner,Male,1237,1985-11-25,A+ -Amanda Washington,Female,1238,1980-04-29,B- -Michael Miller,Female,1239,1940-02-05,A- -Teresa Baker,Female,1240,1941-01-01,O+ -Edward Smith,Female,1241,1960-12-11,B- -Brittany Jones,Female,1242,1935-05-25,AB+ -John Murray,Male,1243,1952-12-20,O+ -Samuel Peterson,Male,1244,1990-08-23,AB- -William Cochran,Male,1245,1978-02-24,O- -Melissa Lewis,Female,1246,1997-02-17,O- -Erica Ray,Male,1247,1990-02-06,A+ -Michelle Lopez,Female,1248,1995-11-07,A+ -Julie Harris,Female,1249,1972-02-04,AB+ -Sabrina Flores,Male,1250,1990-07-31,AB- -Shane Smith,Male,1251,1945-11-06,A- -Linda Richardson,Male,1252,1944-10-22,O- -Allison Valentine,Female,1253,2002-11-10,O- -Kathleen Reyes,Male,1254,1998-08-05,O- -Courtney Elliott,Male,1255,1955-11-12,A- -Paul Vega,Female,1256,1932-07-11,O- -Sabrina Johnson,Female,1258,1931-02-24,B- -Elizabeth Alexander,Male,1259,1980-11-22,AB- -Kerry Brown,Female,1260,1959-07-17,O+ -Amy Zavala,Female,1261,1933-01-25,O+ -Crystal Brown,Female,1262,1960-10-30,AB+ -John York,Female,1263,1977-06-17,B- -Meghan Baker,Female,1264,1936-05-25,O- -Lisa Morrison,Female,1265,1944-09-17,O- -Shelby Avery,Male,1266,1936-02-22,A+ -Daniel Phillips,Male,1267,1982-02-06,A+ -Ashley Valentine,Female,1268,2002-05-16,AB+ -Mike Spears,Male,1269,1942-08-18,O- -Mark Booth,Male,1270,1968-03-08,AB+ -Darren Woods,Male,1271,1979-12-19,B- -Elizabeth Ellis,Female,1272,1960-05-27,O+ -Angela Powell,Male,1273,1966-10-08,O- -Jenny Smith,Male,1274,1991-05-13,AB- -Jamie Chavez,Female,1275,1994-12-01,A- -Courtney Duarte,Female,1276,1947-06-12,B- -Mr. Shawn Davis Jr.,Female,1277,1947-05-31,O- -Geoffrey Woods,Male,1278,1951-07-13,A- -Whitney Newman MD,Female,1279,1938-11-03,AB- -William Johnson,Male,1280,1985-01-15,A+ -Daniel Scott,Male,1281,1969-05-18,AB+ -Paul Gonzalez,Female,1282,1981-05-08,A+ -Jennifer Johnston,Female,1283,1937-12-01,O+ -Kathy Hayden,Female,1284,1940-04-14,A+ -Erica Brown,Male,1285,1986-06-05,O- -Haley Jones,Female,1286,1973-03-06,AB- -Wendy Weber,Male,1287,1975-02-12,A+ -Chad Conrad,Male,1288,1937-04-28,O- -Jonathan Carroll,Male,1290,1948-11-20,O+ -Katherine Reid,Female,1291,1957-10-13,A- -Margaret Owens,Female,1292,1932-03-04,AB- -Mindy Wood,Male,1293,2002-04-23,A+ -Tonya Smith,Male,1294,1935-10-18,AB+ -Jessica Lowe,Male,1295,1945-10-28,AB+ -Bryan Erickson,Male,1296,1963-09-03,AB- -Crystal Patterson,Male,1297,1968-10-01,AB+ -Melissa Larson,Male,1298,1960-06-03,A+ -Rachel Macdonald,Male,1299,1959-07-17,A+ -James Lloyd,Female,1300,1961-03-16,AB- -Zachary Murphy,Male,1301,1965-08-04,A+ -Diana Smith,Female,1302,1991-09-28,A- -Jessica Burke,Female,1303,1932-03-25,O- -Brandi Ramirez,Female,1304,1975-10-21,O+ -Roy Thomas,Female,1305,1958-11-11,A- -Rodney Harper,Female,1306,1998-04-12,A- -Brittany Burnett,Male,1307,1936-09-09,AB+ -William Wilson,Male,1308,1958-08-19,O- -Richard Herrera,Female,1309,1958-06-03,AB- -Donna Weaver,Male,1310,1951-04-24,B+ -Jason Hernandez,Male,1311,1961-05-31,AB+ -Gregory Russell,Female,1312,1977-07-21,O- -Ryan Randall,Female,1313,1971-12-20,A+ -Stephen Edwards,Female,1314,1996-03-09,AB- -Jonathan Rios,Male,1315,2001-10-10,B+ -Robert Campbell,Female,1316,1932-04-07,AB- -Christina Soto,Male,1317,1984-07-11,B+ -Gary Hamilton,Female,1318,1949-07-27,B+ -Edward Whitehead,Female,1319,1942-03-10,AB+ -Ryan Baldwin,Male,1320,1972-01-04,A+ -Leslie Harris,Male,1321,1967-05-02,AB+ -Nathan Smith,Male,1322,1985-06-21,B+ -Rachael Johnson,Female,1323,1946-04-26,B+ -Brian Nelson,Male,1324,1930-05-07,B- -Katelyn Thomas,Male,1325,1983-07-23,O- -Thomas David,Male,1326,1954-01-30,B- -Joseph Nelson,Male,1327,1961-11-15,O- -Bobby Osborne,Male,1328,1991-05-09,O+ -Austin Ortega,Female,1329,1988-11-05,A- -Chad Martin,Male,1330,1986-03-18,AB- -Anthony Butler,Male,1331,1949-09-14,AB+ -Christina Frank,Male,1332,1961-08-25,O+ -Lisa Campbell,Male,1333,1939-03-23,O+ -Amy Wall,Male,1334,1940-05-25,AB- -Melissa Lin,Female,1335,1971-05-20,AB- -Pamela Rodriguez,Female,1336,1967-07-24,O- -Michael Garcia,Male,1337,1934-11-28,B- -Kenneth Choi,Female,1338,1960-04-06,A+ -Margaret Casey,Male,1339,1990-07-21,O- -Matthew Stevens,Male,1340,1939-07-09,A+ -Sean Hernandez,Female,1341,1939-05-11,O+ -Courtney Graham,Female,1342,1934-07-04,A+ -Thomas Collier,Male,1343,1970-05-26,B- -Andrew Howard,Male,1344,2000-08-02,O- -Wendy Flores,Male,1345,1983-02-26,B+ -Willie Gibbs,Male,1346,1982-09-21,AB- -Samuel Johnson,Male,1347,1938-05-31,B+ -Alexander Turner,Female,1348,1935-01-29,B- -Allison Warner,Female,1349,1985-11-13,A- -Kim Galloway,Male,1350,1942-10-07,B- -Amy Johnson,Male,1351,1947-11-02,A- -Jasmine Middleton,Male,1352,1988-08-19,O- -Stephanie Berry,Male,1353,1937-06-01,AB- -Matthew Brock,Male,1354,1962-01-07,B- -Caitlin Day,Male,1355,1994-05-01,B+ -Nicole Evans,Male,1356,1956-01-29,A- -William Harris,Female,1357,1997-11-02,AB- -Brian Gomez,Male,1358,1984-06-17,AB+ -Cassandra White,Female,1359,1947-09-05,AB+ -Aaron Jones,Male,1360,1941-07-14,AB+ -Marilyn Steele,Male,1361,1966-03-17,A+ -Eric Roberts,Male,1362,1951-10-28,B- -Rebecca Knox,Male,1363,1998-11-10,O- -Alex Wright,Male,1364,1976-04-29,B+ -Clinton Moore,Female,1366,1934-06-14,O- -Tyler Sanders DVM,Female,1367,1958-03-29,A+ -Robert Olson,Female,1368,1951-10-31,O- -Michael Smith,Male,1369,1953-06-26,A- -Jaime Holmes,Male,1370,1952-02-05,AB+ -Todd Moore,Male,1371,1953-09-23,B+ -James Lopez,Male,1372,1998-06-06,B- -Thomas Long,Female,1373,1992-08-17,O- -Justin Lewis,Female,1374,1939-11-10,O- -Monique Castro,Female,1375,1948-07-28,O+ -Brian Hardin,Female,1376,1966-03-19,O+ -Kent Peters,Male,1377,1955-01-16,O+ -Michele Gardner,Female,1378,1943-08-12,B- -Joseph Perez,Male,1379,1966-12-08,AB+ -Mary Taylor,Female,1380,1978-02-27,AB- -Kelli Richardson,Male,1381,1965-06-17,AB+ -Dr. Cheyenne Chen DDS,Female,1382,1963-09-17,B+ -Peggy Miller,Male,1383,1935-06-14,AB+ -Linda Douglas,Female,1384,1944-07-05,B- -Jennifer Nelson,Male,1385,1965-08-02,A- -Bryan Harmon,Female,1386,1984-08-21,A- -Joseph Lewis,Female,1387,1991-03-21,B- -Mackenzie Ward,Male,1388,1966-11-20,O+ -David Peterson,Female,1389,1992-02-29,O- -Mr. Joshua Salazar,Female,1390,1941-12-29,A+ -Elizabeth Donovan,Female,1391,1943-01-10,A+ -Karen Martinez,Male,1392,1982-04-15,AB- -Elizabeth Tucker,Male,1393,1958-06-18,O- -Eric Campbell,Male,1394,1974-06-20,AB- -Debbie James,Male,1395,1945-04-20,O+ -Alan Ibarra,Male,1396,1977-07-03,AB- -Christine Hernandez,Male,1397,1943-07-16,O- -Lee Kramer,Female,1398,1966-09-04,B+ -Kyle Johnson,Female,1399,1984-04-03,O- -Ruth Meyer,Female,1400,1976-09-28,A+ -Tonya Ferguson,Male,1401,1941-08-14,A- -Kevin Fowler,Female,1402,1984-12-28,O+ -Felicia Ramirez,Male,1403,1998-03-22,B+ -Joshua Ellis,Female,1404,1989-01-17,B- -Patrick Farmer,Female,1405,1957-02-24,B+ -Maria Novak,Female,1406,1993-03-19,B+ -Samantha Roberts,Male,1407,1986-12-19,AB- -Michael Powell,Female,1408,1957-05-03,A+ -Jamie Santos,Male,1409,1934-10-26,AB- -John Rodriguez,Female,1410,1955-02-20,AB- -Brian Wilson,Male,1411,1936-10-18,B- -Justin Alexander,Female,1412,1996-12-02,O+ -Christopher White,Male,1413,1932-08-09,O- -Abigail Lamb,Male,1414,1999-04-07,AB+ -Ralph Kirk,Female,1415,1935-09-11,AB- -Caroline Riley,Male,1416,1937-06-10,AB+ -Susan Phillips,Male,1417,1987-03-31,O+ -Rachel Greene,Female,1418,1956-07-15,AB+ -Anthony Thompson,Male,1419,1998-01-25,AB- -Claudia Dickerson,Male,1420,1950-01-07,B- -Holly Nunez,Female,1421,1994-07-14,AB+ -Christian Holloway,Female,1422,1980-07-06,O+ -Juan Simon,Female,1423,1932-02-08,O+ -Juan Stephenson,Male,1424,1945-01-12,A- -Walter Smith,Male,1425,1972-07-13,A- -Matthew Montgomery,Male,1426,1948-03-12,B- -Virginia Morgan,Female,1427,1988-10-10,AB+ -Susan Ramirez,Female,1428,1944-04-29,AB+ -Robin Lara,Female,1429,1961-06-12,A- -Jennifer Robinson,Female,1430,1945-11-15,O- -Kevin White,Male,1431,1999-11-17,A+ -Vanessa Kim,Female,1432,1988-05-06,O+ -Daniel Wright,Male,1433,1991-05-01,O- -Ashley Hamilton,Male,1434,1983-12-28,O+ -Kristina Odonnell,Female,1435,1963-10-17,B+ -Joshua Mcdonald,Female,1436,1952-01-04,B+ -Matthew Lee,Male,1437,1973-10-24,O- -Jordan Schwartz,Male,1438,1965-10-31,B+ -Stacy Taylor,Male,1439,1943-05-06,A- -Colton Rose,Male,1440,1934-01-21,A- -Maria Williams,Female,1441,1957-08-20,A+ -Mr. Paul Simpson,Male,1442,1992-02-14,O- -Nicole Garcia,Female,1443,1984-04-22,O+ -William Christian,Female,1444,1969-06-27,AB+ -David Bauer,Male,1445,1975-01-03,O+ -Daniel Campbell,Female,1446,1950-12-05,AB- -Thomas Walters,Male,1447,2002-04-12,A- -Erin Marsh,Male,1448,1984-05-03,B- -Cassandra Koch,Female,1449,1973-01-03,B- -Gregory Morales,Female,1450,1960-11-10,A- -Cathy Martin,Male,1451,1977-02-19,AB- -Rita Cooper,Male,1452,1964-07-01,B- -Robert Washington,Female,1453,1960-02-11,B+ -Allison Hill,Female,1454,1991-02-28,A- -Jennifer Abbott,Male,1455,1969-02-20,B- -Victoria Mathews,Male,1456,1959-04-01,A- -Jennifer Lawson,Male,1457,1974-11-06,A+ -Tiffany Harper,Female,1458,1953-04-29,AB+ -Kenneth Stewart,Male,1459,1994-08-18,AB+ -Melissa Cline,Female,1460,1983-12-03,O+ -Sarah Jordan,Male,1461,1939-01-14,AB- -Alfred Wells,Female,1462,1948-05-28,A- -Belinda Castillo,Female,1463,1949-10-06,O- -Christina Clayton,Male,1464,1996-02-24,O+ -Mallory Jones,Male,1465,1984-12-02,O+ -Jimmy Gomez,Female,1466,1938-05-13,A- -Sarah Sanders,Male,1467,1967-03-03,A- -Francisco Young,Male,1468,1951-10-28,O+ -Amy Waller,Male,1469,1935-11-14,O+ -Kathy Benjamin,Male,1470,1989-02-11,AB+ -Mr. Brian Cordova,Male,1471,1956-01-08,O- -Gregory Martin,Female,1472,1971-06-24,B+ -Julia Davila,Male,1473,1981-10-22,O+ -Julie Grant,Male,1474,1963-05-03,B+ -Carla Bailey,Male,1475,1987-04-23,AB+ -Patrick Gonzalez,Male,1476,1990-03-30,O+ -Shane Rasmussen,Female,1477,1952-11-17,B- -Jesus Larson,Female,1478,1992-12-17,O+ -Brendan Peck,Male,1479,1988-07-24,A- -Spencer Good,Female,1480,1971-04-06,AB- -Matthew Barton,Male,1481,1932-04-02,AB- -Joshua Beasley,Female,1482,1977-06-10,O+ -Amanda Warren,Male,1483,1969-02-14,A+ -Danielle Singleton,Male,1484,1946-11-03,B- -Bryan Walker,Male,1485,1942-02-12,O- -Robin Nelson,Male,1486,1999-05-29,O+ -Kelly Pearson,Male,1487,1973-11-23,B+ -Brittany Ray,Female,1488,1936-01-08,O- -Cheryl Jennings,Female,1489,1986-06-22,B- -David Clayton,Male,1490,1984-12-22,O+ -Carlos Castro DVM,Male,1491,1939-06-15,A+ -Elizabeth Adams,Female,1492,1954-12-07,AB+ -Juan Walter,Male,1493,1967-12-12,A+ -Shirley Garza,Female,1494,1978-06-10,A- -Holly Clayton,Male,1495,1986-04-18,A+ -Carol Byrd,Female,1496,1953-11-01,B+ -Michelle Williams,Female,1497,1957-09-08,AB+ -Michael Delgado,Female,1498,1993-08-14,A- -Anthony Barron,Female,1499,1991-05-20,AB+ -Alexander Thomas,Female,1500,1984-09-12,AB- -Kevin Harper,Male,1501,1943-04-04,AB+ -Samuel Adams,Female,1502,1972-01-19,O+ -Jordan Chandler,Male,1503,1933-11-10,O- -Anna Morrison,Female,1504,1942-07-03,AB- -Brandy Cross,Male,1505,1961-03-01,AB- -Lauren Williamson,Female,1506,1987-02-26,O- -Bryan Payne,Female,1507,1979-02-12,B+ -Christine Scott,Male,1508,1969-12-18,AB- -Courtney Gonzales,Male,1509,1932-03-15,AB+ -Teresa Green,Male,1510,1966-03-14,A+ -Kevin Duke,Male,1511,1933-07-03,B- -Kimberly Parker,Female,1512,1966-02-13,B+ -John Reed,Male,1513,1949-05-24,AB+ -Brent Roth,Male,1514,1991-04-01,A- -Thomas Garrett,Male,1515,1990-03-30,A- -Rebecca Calderon,Female,1516,1960-05-16,A+ -Samantha Gallagher,Male,1517,1978-08-28,B+ -Joshua Rodriguez,Female,1518,1965-04-07,B+ -James Thompson MD,Male,1519,1972-06-26,A+ -Daniel Santos,Male,1520,1982-03-12,B+ -Heather Smith,Female,1521,1935-10-08,AB- -John Beck,Female,1522,1997-03-27,O+ -Jillian Hernandez,Female,1523,1974-01-16,O+ -Matthew Mayer,Male,1524,1986-06-03,B+ -Hannah Welch,Female,1525,1943-03-25,AB- -Crystal Wright,Female,1526,1982-06-09,AB- -Timothy Holt,Female,1527,1938-09-22,O- -Heather Pacheco,Male,1528,1937-01-17,O- -Kimberly Stephens,Male,1529,1965-01-25,B- -David Allen,Female,1530,1937-02-12,B- -Cassandra Greene,Male,1531,1941-01-16,B- -Tina Huff,Male,1532,1953-01-28,B- -Michael Newton,Female,1533,1933-07-28,A+ -Rachel Evans,Male,1534,1995-01-12,A+ -Adam Williams,Male,1535,1990-12-13,O- -Deborah Walker,Male,1536,1978-06-03,O+ -Omar Matthews,Female,1537,1981-10-25,AB- -Mrs. Anne Reid MD,Male,1538,1980-06-22,A- -Jeffrey Peterson,Female,1539,1993-07-02,O+ -Megan Fields,Male,1540,1953-08-21,AB+ -Sharon Tucker,Male,1541,2002-12-21,A+ -Jesse Esparza,Female,1542,1961-02-19,B- -Anthony Lee,Male,1543,1954-08-19,B- -Stephen Jones,Male,1544,1975-01-23,AB+ -Jessica Patterson PhD,Female,1545,1993-12-21,O+ -Jacqueline Hawkins,Female,1546,1944-12-28,B- -Linda Harris,Female,1547,1997-05-25,O+ -Benjamin Jackson,Female,1548,2002-12-26,AB- -Brian Jacobs,Male,1549,1949-09-02,AB+ -Steven Bryan,Female,1550,1990-09-23,A- -Paul Wilson,Male,1551,1994-05-30,O+ -Kevin Campbell,Female,1552,1965-04-02,AB- -Richard Huerta,Female,1553,1934-06-11,B+ -Daniel Garcia,Female,1554,1973-10-10,B+ -Michelle Blake,Female,1555,1952-01-07,O+ -Lawrence Bradford,Female,1556,1975-10-17,B+ -Suzanne Bailey,Female,1557,1980-07-15,O+ -Shannon Jackson,Female,1558,1951-11-19,B- -Zachary Jones,Male,1559,1972-11-02,O- -Alyssa Monroe,Female,1560,1976-08-16,B+ -Jennifer Gonzalez,Male,1561,1941-09-03,A+ -Christopher Green,Female,1562,1998-12-15,O+ -Teresa Coleman,Male,1563,1968-06-30,O+ -John Atkinson,Male,1564,1991-08-29,O+ -Mark Mcdowell,Female,1565,1971-07-01,O- -Meagan Mullins,Male,1566,1953-09-03,AB- -Scott Perez,Male,1567,2001-12-18,B+ -Lauren Fischer,Male,1568,1961-12-08,A- -Harry Moore,Female,1569,1938-02-17,A- -Katie Crane,Female,1570,1938-04-17,AB+ -Michael Browning,Female,1571,1995-10-14,B- -Chelsea Wu,Male,1572,1982-03-14,O- -Joyce Jones,Male,1573,1939-12-09,AB- -Anthony Lucas,Male,1574,1986-06-05,O+ -Jared Martinez,Male,1575,1938-05-26,AB- -Christopher Carter,Male,1576,1946-04-08,O- -Kimberly Hodges,Male,1577,1978-08-27,O- -Stephen Owen,Female,1578,1982-09-15,O- -Maria Mack,Male,1579,1987-12-20,AB+ -Katelyn Daniel,Male,1580,1961-08-21,A+ -Alan Garcia,Male,1581,1989-11-21,B- -Henry Choi,Female,1582,1965-10-25,AB+ -Tracy Diaz,Male,1583,1986-02-24,AB+ -Alicia Kennedy,Female,1584,1997-09-10,B+ -Kristopher Griffin,Female,1585,1985-05-26,A+ -Emily Vega,Male,1586,1989-09-07,AB+ -Jennifer Chavez,Male,1587,2002-12-03,O- -Jennifer Chen,Female,1588,1995-11-19,O- -Tyler Morrison,Male,1589,1948-09-02,B+ -Kimberly Fletcher,Female,1590,2000-05-25,AB- -Linda Gray,Female,1591,1997-10-18,O+ -Mr. Jason Wilson,Male,1592,1960-03-30,AB+ -Mary Rodriguez,Male,1593,2000-09-16,O+ -Mr. Taylor Williams DDS,Female,1594,1978-07-05,B- -Sylvia Oneal,Female,1595,1986-03-22,A- -Tina Williams,Male,1596,1993-05-20,O- -Renee Walker,Female,1597,1937-06-04,AB- -Danny Rojas,Female,1598,1943-04-16,B- -Jamie Holt,Female,1599,1991-11-13,B+ -Carrie Ford,Female,1600,1995-05-03,AB- -Drew Mccullough,Male,1601,1989-08-31,A- -Charles Hampton,Male,1602,2002-03-05,A- -Mr. John Wright,Female,1603,1951-02-15,B+ -Victor Thomas,Male,1604,1954-06-26,A+ -Michelle Bell,Male,1605,1972-06-16,B+ -Susan Matthews,Female,1606,1973-05-01,O- -Jodi Freeman,Female,1607,1934-10-29,B- -Stacie Snyder,Female,1608,1973-05-25,A+ -Mackenzie Curry,Female,1609,1963-03-01,A- -Jamie Zimmerman,Female,1610,1994-04-20,B- -Teresa Lynn,Male,1611,1995-11-14,AB- -Nathaniel Nichols,Female,1612,1964-08-22,A+ -Aaron Smith,Male,1613,1946-10-06,A+ -Joshua Rogers,Female,1614,1931-04-27,O- -George Harris,Female,1615,1969-10-19,B+ -Jesse Blair,Female,1616,1930-06-03,O+ -Kenneth Yu,Male,1617,1950-11-09,AB- -Christine Chavez,Female,1618,1934-03-05,AB- -Timothy Ford,Male,1619,1935-10-22,B+ -Susan Munoz,Female,1620,1971-03-15,A+ -Joanne Clark,Male,1621,1936-06-01,A+ -Steven Adams,Female,1622,1944-01-24,O- -Robin Robbins,Female,1623,1990-08-18,O+ -Adam Dominguez,Male,1624,1933-05-25,AB- -Ashley Watkins,Male,1625,1930-03-02,A- -Hunter Smith,Male,1626,1954-12-31,AB+ -Edward Wagner,Male,1627,1979-05-07,AB+ -Christopher Bray,Male,1628,1991-10-17,O+ -Debra Lambert,Female,1629,1963-09-17,B- -Steve Hunt,Male,1630,1966-07-21,O- -Johnny Howard,Male,1631,1996-09-05,O+ -Anthony Cantu,Male,1632,1964-01-01,B+ -Devon Gonzalez,Female,1633,1933-06-06,B+ -Jason Sexton,Female,1634,1986-05-14,AB+ -Benjamin Rice,Male,1635,1952-11-24,A+ -Jessica Wilson,Female,1636,1956-06-03,AB+ -Blake Wood,Female,1637,1984-07-29,A+ -Arthur James,Female,1638,1986-05-08,O- -Lauren Wilcox,Male,1639,1994-01-18,A+ -Melissa Weaver,Male,1640,1993-02-10,O+ -Amber Scott,Male,1641,1981-03-20,A+ -Jennifer Mejia,Male,1642,2001-10-07,B- -Donald Huffman,Female,1643,1974-09-01,B+ -Ian Jefferson,Male,1644,1941-03-14,O+ -Lori Smith,Female,1645,1949-01-21,B+ -Robert Simpson DDS,Female,1646,1938-03-24,O- -Theresa Holland,Female,1647,1988-12-02,O+ -Jackie Carroll,Male,1648,1975-10-05,B- -Emily White,Female,1649,1939-12-20,O- -Anthony Hunt,Female,1651,1996-09-17,AB+ -Christina George,Male,1652,1986-02-07,B- -Andrea Carr,Male,1653,1933-09-03,O- -Joel Young,Female,1654,1962-06-17,A- -Dr. Andrew Lester,Female,1655,1997-11-16,A+ -Frances Johnson,Male,1656,1930-12-05,O+ -George Cox,Male,1657,1946-02-21,O- -Timothy Smith,Female,1658,1963-07-21,O+ -Samuel Gonzales,Male,1659,1982-04-10,A+ -Timothy Perry,Female,1660,1961-01-22,O- -Kenneth Ross,Female,1661,1934-10-17,AB+ -Timothy Cox,Male,1662,1990-03-15,A- -Joseph Frazier,Male,1663,1936-08-18,A- -Angela Lowery,Male,1664,1949-06-29,B- -Kim Aguilar,Male,1665,1999-03-25,O- -Patricia Roth,Female,1666,1944-07-25,A+ -Tracy Brown,Female,1667,1973-07-10,O- -Stephanie Reyes,Male,1668,1992-12-14,O+ -Larry Martin,Female,1669,1989-08-10,AB- -David Webb,Female,1670,1962-08-19,B+ -Christopher Anderson,Female,1671,1985-10-16,O- -Tina Martinez,Female,1672,1998-08-16,A- -James Jackson,Male,1673,1996-11-18,A- -Cindy Meyer,Male,1674,1967-12-02,B+ -Mary Bennett,Male,1675,1997-05-31,A- -Jessica Rhodes,Female,1677,1943-05-06,AB+ -Deborah Camacho,Male,1678,1943-02-28,O- -Jacob Garcia,Female,1679,1953-07-11,B- -Erica Russell,Male,1680,1963-05-10,O- -Brian Evans,Male,1681,1991-01-18,AB- -Charles Rodriguez,Male,1682,1994-05-13,A- -Richard Gonzalez,Female,1683,1983-07-03,O+ -Alexis Dalton,Male,1684,1975-12-05,A- -Aaron Miller,Female,1685,1962-12-24,O- -Erica Mullins,Female,1686,1942-02-17,AB+ -Rebecca Patterson,Male,1687,1954-02-24,A+ -Leslie Hall,Male,1688,1995-11-26,O- -Dakota Hamilton,Female,1689,1941-08-03,O- -Greg Webster,Female,1690,1960-06-14,B- -Sean Hernandez,Male,1691,1971-02-18,AB+ -Antonio Robinson,Male,1692,1951-12-04,AB- -Kristy Shepherd,Male,1693,1979-01-09,A+ -Jodi Lee,Male,1694,1954-09-10,A- -Cameron Ross,Male,1695,1934-02-09,O+ -Lisa Austin,Male,1696,1948-06-12,O- -Brian Roberts,Male,1697,1939-01-08,AB- -Tommy Hines,Female,1698,1988-10-12,A+ -Shane Espinoza,Male,1699,1981-06-25,O+ -Rebecca Ibarra,Male,1700,1999-11-05,AB- -Brandon Gregory,Male,1701,1983-03-10,AB+ -Michael Herrera,Female,1702,1942-04-25,AB+ -Donald Alexander,Female,1703,1978-11-15,A+ -Lisa Bryant,Female,1704,1984-08-10,A- -Kristina Montgomery,Female,1705,1931-09-07,B+ -Sara Hines,Female,1706,1989-08-15,O+ -Denise Stein,Female,1707,1995-12-03,AB+ -Karen Osborne,Male,1708,1955-09-01,B+ -Ricardo Sullivan,Female,1709,1983-09-07,A+ -Roger Morgan,Female,1710,1994-05-27,AB+ -Matthew Ford,Female,1711,1937-04-21,AB+ -Dana Chambers,Female,1712,1996-09-15,AB- -Melissa Dominguez,Female,1713,1966-09-18,B+ -Andrew Hill,Male,1714,1975-03-20,AB- -Madison Rodriguez,Female,1715,1938-03-03,AB+ -Natasha Martin,Female,1716,1986-07-28,B+ -Douglas Wong,Male,1717,1994-05-15,B- -Kathryn Garcia,Female,1718,1964-08-21,B+ -Marissa Schultz,Female,1719,1952-07-14,AB- -Dana Wilson,Male,1720,1995-12-04,O+ -Christina Reynolds,Female,1721,1948-03-07,A+ -James Maynard,Male,1722,1962-04-02,A+ -Susan Banks,Male,1723,1989-10-30,A- -Jaime Santiago,Male,1724,1971-12-09,O+ -Pamela Medina,Female,1725,1977-05-18,O+ -Rebekah Wells,Female,1726,1950-09-17,O+ -Christina Dixon,Male,1727,1972-06-29,A- -William Baker,Female,1728,1998-08-20,O+ -Tyrone Campbell,Female,1729,1967-08-12,O- -John Carroll,Female,1730,1955-07-12,A- -Kristy Thomas,Female,1731,1971-09-12,A+ -Brett Hobbs,Male,1732,1962-01-26,O- -Amanda Wise,Male,1733,1953-04-12,A- -Amy Carpenter,Male,1734,1999-04-23,AB+ -Shannon Macias,Male,1735,1983-09-25,AB+ -Dr. Sean Hansen,Male,1736,1931-06-30,A+ -Jason York,Male,1737,1941-11-25,AB+ -Melvin Smith,Male,1738,1957-05-15,O+ -Victoria Graham,Female,1739,1973-03-11,A- -Robert Garcia,Male,1740,1968-02-10,O- -Sarah Dougherty,Male,1741,1940-06-07,O+ -Peter Mack,Male,1742,1949-09-24,AB+ -Max Montgomery,Male,1743,1954-08-28,AB- -Sara Johnson,Female,1744,1974-10-28,B+ -Jonathan Rowland,Male,1745,1963-09-21,O- -Valerie Riley,Male,1746,1980-06-03,O+ -Sonya Cisneros,Male,1747,1953-02-05,A- -Jeanne Price,Male,1748,1965-07-20,A+ -Jake Matthews,Female,1749,1930-09-29,O+ -Tammy Dillon,Male,1750,1984-06-21,AB- -Joseph Shelton,Female,1751,1979-09-16,AB+ -Tony Chen,Male,1752,2000-09-28,O- -Willie Short,Male,1753,1959-01-25,A+ -Kathryn Mcpherson PhD,Male,1754,1941-12-10,O- -Raymond Wilson,Female,1755,1949-05-10,A+ -George Stewart,Male,1756,1977-05-18,B+ -Robert Jarvis,Female,1757,1997-04-13,A- -Mr. Brian Chavez,Female,1758,1939-05-24,O- -Parker Delacruz,Male,1759,1987-01-01,AB+ -Andrea King,Female,1760,1964-09-15,A- -Kevin Miller,Male,1761,1959-08-13,A- -Shannon Carlson,Female,1762,1985-02-25,B+ -Veronica Bailey,Female,1763,1935-08-13,A+ -Kelly Hernandez,Male,1764,1962-01-05,B- -Gabriel Henderson,Female,1765,1933-03-11,O- -Joshua Fitzgerald,Female,1766,1998-04-25,O- -Brian Cox,Female,1767,1935-07-27,O+ -Thomas White,Female,1768,1992-07-25,A+ -Crystal Garrison,Male,1769,1930-05-26,AB- -Robert Reed,Female,1770,1969-01-25,B- -Reginald Marshall,Male,1771,1986-11-15,AB+ -Michael Wright,Male,1772,1951-06-12,O+ -Darrell Hall,Male,1773,1998-06-20,B+ -Christopher Robinson,Male,1774,1999-03-20,B- -Joe Mitchell,Female,1775,1997-03-27,A+ -Thomas Berry,Female,1776,1969-02-11,B- -Crystal Wright,Male,1777,1937-03-17,B+ -Evan Bradford,Female,1778,1942-04-22,A- -Greg Rogers,Female,1779,1971-06-27,O- -Oscar Thornton,Female,1780,1996-11-30,A- -Ashley Rodriguez MD,Male,1781,1995-06-04,O- -Larry Mitchell,Female,1782,1955-01-25,O+ -John Hudson,Male,1783,1958-07-19,B+ -James Williamson,Female,1784,1958-01-07,A+ -Matthew Williams,Female,1785,1935-01-03,A+ -Courtney Lane,Male,1786,1963-07-27,B- -Shaun Tran,Male,1787,1954-12-31,O+ -Jonathan Hernandez,Male,1788,1943-02-27,A+ -Jennifer Bowman,Female,1789,1932-03-17,AB- -Cheryl Sanchez,Female,1790,2001-04-17,AB- -Aaron Burnett,Female,1791,1995-05-10,A- -Kevin Rodriguez,Male,1792,1952-06-16,O- -Ian Green,Male,1793,1935-02-12,B- -Dustin Harper,Male,1794,1969-11-13,AB+ -Brian Mitchell MD,Female,1795,1972-06-21,B+ -Rebecca Olson,Male,1796,1996-06-05,O- -Leah Kemp,Male,1797,1970-10-17,O+ -Jessica Hayes,Female,1798,1990-06-09,A+ -Cindy Perkins,Female,1799,1996-04-15,O- -Christopher Rodriguez,Male,1800,1974-05-30,AB+ -Sarah Roberts,Male,1801,1973-08-17,AB+ -Derek Hughes,Male,1802,1944-11-12,AB- -Richard Mcconnell,Female,1803,1954-11-07,O+ -Andrew Morgan,Male,1804,1939-10-05,O- -Robin Long,Female,1805,1933-10-21,B- -Michael Richmond,Female,1806,1961-09-28,O- -Gary Martin,Male,1807,1949-12-01,AB- -Tiffany Dunn,Female,1808,1977-02-11,A- -Jeffrey Nelson,Male,1809,1981-01-22,AB+ -Larry Herrera,Male,1810,1977-06-03,O+ -Chad Mcknight,Male,1811,1959-06-03,O+ -Olivia Becker,Male,1812,1992-05-21,B- -Nancy Johnson,Male,1813,1968-11-16,O+ -Tony Jones,Female,1814,1985-05-21,AB- -Tiffany Collins,Male,1815,1973-06-20,AB- -Cody Mcclain,Female,1816,1979-10-11,AB- -Brad Dennis,Female,1817,1952-07-29,O+ -Richard Robinson,Female,1818,1949-10-02,O+ -Sara Robertson,Female,1819,1931-12-28,AB- -Jeffrey Hawkins,Male,1820,1982-05-08,O+ -Andres Keller,Male,1821,1967-11-15,B+ -Brandy Bridges,Female,1822,1961-02-09,O+ -Robin Foster,Female,1823,1980-02-05,B+ -Mckenzie Moore,Female,1824,2001-08-28,AB+ -Mr. David Mcconnell DDS,Male,1825,1957-09-02,O- -Timothy Arroyo,Male,1826,1950-12-19,A+ -Stanley Crane,Female,1827,1981-08-11,B+ -Cameron Bailey,Female,1828,1999-08-12,B+ -Richard Cole,Female,1829,1994-11-17,O+ -Deanna Stewart,Female,1830,1969-11-03,A+ -Lindsey Kelly DDS,Male,1831,1997-04-17,A- -Leslie Bennett,Male,1832,1951-08-25,A+ -Chloe Wolf,Female,1833,1988-03-17,AB+ -Brenda Mckenzie,Male,1834,1949-12-14,B+ -Charles Frost,Female,1835,1932-06-11,O+ -Edward Walker,Male,1836,1957-12-27,AB- -Breanna Thompson,Female,1837,1942-10-20,A+ -Jack Neal,Male,1838,1935-04-18,O+ -Amanda Kirby,Female,1839,1978-08-21,B- -Thomas Jacobs,Female,1840,1962-07-05,A- -Garrett Gomez,Female,1841,1978-05-23,AB- -Susan Rodriguez,Male,1842,1979-05-08,B- -Brian Crawford,Male,1843,1966-04-01,B- -Adrian Mooney,Male,1844,1995-05-14,A+ -Casey Holmes,Female,1846,1959-10-10,B- -Katrina Ashley,Male,1847,1999-12-28,AB+ -Amanda Edwards,Female,1848,1978-03-12,AB+ -James Lynn,Female,1849,1943-09-26,A+ -Mary Chambers,Male,1850,1993-09-12,O+ -Jeremy Merritt,Female,1851,2000-12-30,O- -Seth West,Male,1852,1967-09-18,O+ -Carlos Thomas,Female,1853,1956-09-13,O+ -Robin Barber,Female,1854,2001-03-03,O+ -Mathew Edwards,Female,1855,1977-06-21,O+ -Daniel Glover,Male,1856,1972-09-02,AB- -Debbie Becker,Female,1857,1999-12-24,O- -Juan Coleman,Female,1858,1949-12-18,AB- -Elizabeth Wright,Female,1859,1932-09-01,B- -Peggy Moody,Male,1860,1941-04-26,A- -Walter Hull,Male,1861,1970-02-23,O+ -Sherri Mckinney,Male,1862,1989-07-24,A- -Bradley Mack,Female,1863,1940-11-16,AB+ -Robert Kennedy,Female,1864,1944-07-01,A+ -Charles Henson,Male,1865,1968-02-04,A+ -Dawn Campbell,Female,1866,1954-12-06,AB- -Kelli Hartman,Male,1867,1952-07-12,AB- -Richard Sanchez,Male,1868,1957-02-11,AB+ -Curtis Fitzgerald,Female,1869,1938-04-09,O+ -James Taylor,Male,1870,1954-08-10,A- -Anthony Garcia,Male,1871,1985-11-28,B+ -Kenneth Hardy,Male,1872,1988-09-25,A- -Anita Warren,Female,1873,1965-04-07,O- -Cassandra King,Female,1874,1944-04-30,B- -Nina Lewis,Male,1875,1956-01-21,A+ -Taylor Ellison,Male,1876,1969-11-11,B- -Aaron Robinson,Male,1877,1975-09-23,O- -Annette Marshall,Female,1878,1936-07-24,AB- -Christopher Greer,Female,1879,1980-10-11,A- -Jeremy Jensen,Female,1880,1982-05-17,A+ -Clinton Gutierrez DDS,Male,1881,1934-05-11,B- -Karen Harvey,Male,1882,1960-12-12,B+ -Elizabeth Wood,Male,1883,1946-12-06,AB- -Jacqueline Oneill,Male,1884,1985-08-14,O- -Paula Gonzalez,Female,1885,2002-10-02,B+ -Carrie Hart,Female,1886,1933-08-05,B- -Anne Dougherty,Male,1887,2000-10-21,B+ -Ryan Baker,Male,1888,1986-08-30,A- -Joshua White,Male,1889,1950-01-10,O+ -Edward Hudson,Male,1890,1981-05-20,B+ -Douglas Howard,Male,1891,1983-09-23,AB- -Nathan Miranda MD,Female,1892,1935-11-10,O- -Jennifer Simmons MD,Male,1893,1970-03-20,B- -John Singh,Male,1894,1979-07-11,A- -Donald Olsen,Female,1895,1948-12-16,O+ -Lisa Caldwell,Female,1896,1930-12-29,O+ -Karina Hudson,Male,1897,1981-12-27,O- -Tiffany Cobb,Female,1898,2001-12-26,AB+ -Juan Miranda,Male,1899,1966-11-29,A- -Thomas Roberts,Male,1900,1986-08-05,A- -Stephanie Smith,Female,1901,1940-03-27,A+ -Charles Ramos,Male,1902,1936-10-05,O- -Elizabeth Jensen,Female,1903,1987-12-27,O+ -Craig Romero,Female,1904,1991-09-12,O+ -Jonathan Smith,Female,1905,1974-02-05,B+ -Chloe Jimenez,Female,1906,1976-05-19,O- -Kevin Lewis,Female,1907,1954-09-09,AB+ -Julie Mcbride,Female,1908,1937-09-09,A+ -Bradley Nelson,Female,1909,1974-10-27,B- -Stephanie Pratt,Male,1910,1988-12-16,O- -Matthew Robinson,Female,1911,1970-09-18,A+ -Michael Massey,Female,1912,1964-10-22,A- -Melissa Parker,Female,1913,1950-09-14,A+ -Erin Collins,Male,1914,1937-06-12,B+ -Rachel Bray,Female,1915,1992-09-02,AB- -Olivia Caldwell,Male,1916,1962-01-13,O+ -Lisa Irwin,Female,1917,1940-03-30,B+ -Jeremy Dixon,Male,1918,1956-09-27,B- -Chad Scott,Female,1920,1940-12-12,O- -Robert Green,Female,1921,1981-06-09,B+ -Trevor Rivera,Male,1922,1974-01-07,O+ -Brandon Webb,Male,1923,1998-11-24,AB- -Jorge Parsons,Female,1924,2002-10-18,B+ -Courtney Reed,Male,1925,2001-07-10,AB- -Alexandra Tucker,Female,1926,1930-10-22,B+ -Anthony Edwards,Male,1927,1957-11-12,O+ -Laura Preston,Male,1928,1989-06-27,AB+ -Robert Jones,Female,1929,1957-01-21,A+ -Felicia Patterson MD,Female,1930,1933-02-10,O- -Mark White,Male,1931,1935-08-27,O- -Nicholas Stokes,Male,1932,1949-03-11,O- -Brett Sexton,Female,1933,1965-07-23,O+ -Carrie Davis,Female,1934,1942-06-10,A- -Thomas Hill,Female,1935,1932-10-04,AB+ -Gregg Solis,Male,1936,1944-11-28,B- -James Rodriguez,Female,1937,1959-04-25,AB- -Taylor Munoz,Female,1938,1970-05-20,O+ -Mrs. Zoe Bartlett,Male,1939,1962-01-31,A- -Scott Alexander,Female,1940,1989-07-06,B- -Kevin Phillips,Female,1941,1955-11-05,AB- -Joseph Park,Male,1942,1966-05-13,AB- -Katherine Mcgee,Female,1943,1933-12-06,AB+ -Tristan Castillo,Female,1944,1931-07-26,A+ -Judith Sexton,Female,1945,1936-07-10,O- -Julia Williams,Male,1946,2000-09-11,B+ -Jaime Hodge,Female,1947,2002-12-29,B- -Christopher Frederick,Female,1948,1943-12-03,O+ -Barbara May,Male,1949,1975-08-14,B- -Kelly Stevens,Male,1950,1966-12-25,A+ -Andrew Smith,Female,1951,1949-04-30,O- -Janice Hancock,Male,1952,1980-01-10,B- -Kevin Pace,Female,1953,1964-12-19,A+ -Tammy Liu,Female,1954,1978-04-28,O+ -Jeremy Lowe,Male,1955,1950-07-06,AB+ -Robert Duncan,Male,1956,1969-10-10,A- -Victoria Barker,Male,1957,1977-09-15,AB- -Molly Foster,Male,1958,1970-09-07,O+ -James Thompson,Male,1959,1999-10-19,O- -Craig Jensen,Male,1960,1952-02-08,AB- -Jesus Myers,Male,1961,1954-11-08,A- -Scott Mills,Male,1962,1982-05-24,O+ -Catherine Hawkins,Female,1963,1997-05-06,B+ -Emily Johnston,Male,1964,1987-05-15,O+ -Tamara Macdonald,Male,1965,1961-03-02,O+ -Whitney Obrien,Female,1966,1974-11-04,B+ -Carrie Johnson,Male,1967,1992-04-02,O+ -Ryan Hull,Female,1968,1936-06-11,AB- -Jacob Gallagher,Male,1969,1995-03-22,O- -Bryan Nguyen,Male,1970,1943-02-21,A- -Janice Benton,Female,1971,1976-09-26,A+ -Kathy Ross,Male,1972,1998-01-24,B- -Kelsey Lawson DVM,Male,1973,1988-01-12,B+ -Kevin Cox,Male,1974,1962-09-09,AB+ -Diane Cummings,Female,1975,1999-05-17,B+ -Michael Mitchell,Female,1976,1989-06-30,A- -Jeffrey Smith MD,Male,1977,1988-08-31,B- -Derek Estrada,Male,1978,1936-08-25,B- -Felicia Ramirez,Female,1979,1988-11-22,AB+ -William Gutierrez,Male,1980,1997-05-13,A- -Terri Harmon,Female,1981,1999-10-08,AB- -Jeffrey King MD,Male,1982,1960-12-05,O- -Dawn Ortiz,Female,1983,1951-05-24,AB+ -Leroy Wright,Male,1984,1969-06-19,O- -Jamie King,Male,1985,1962-04-24,AB- -Chelsea Smith,Male,1986,1962-02-27,B- -Krista Terry,Female,1987,2001-04-07,O- -Jessica Hayes,Male,1988,1965-08-30,AB- -Paul Serrano,Male,1989,1939-03-11,AB- -Dr. Charles Burton MD,Female,1990,1998-09-12,A+ -Heather Bryan,Male,1991,1969-02-13,AB+ -Andrew Perez,Male,1992,1994-10-02,A+ -James Thomas,Female,1993,1947-11-28,B+ -Lori Hayden,Male,1994,1974-12-18,B- -Paul Hunter,Female,1995,1939-02-25,AB+ -John Walker,Female,1996,1954-11-09,B- -Sean Gardner,Female,1997,1937-10-15,A+ -Barbara Martinez,Female,1998,1958-06-19,A- -Cheryl Rodriguez,Male,1999,1977-11-12,AB- -Julie Nguyen,Male,2000,1994-02-05,B- -Katherine Medina,Male,2001,1979-11-07,AB+ -Todd Henry,Female,2002,1968-04-29,B+ -Beverly Lopez,Male,2003,1966-04-23,AB+ -April Austin,Male,2004,1983-07-01,B- -Amanda Rollins,Male,2005,1938-06-21,AB+ -John Richardson,Male,2006,1962-02-04,B+ -Seth Morris,Male,2007,1990-05-08,AB- -Devin Martin,Male,2008,1985-03-15,A- -Gerald Hernandez,Male,2009,1982-10-15,AB- -Gwendolyn Wolfe,Male,2010,1961-11-19,AB+ -Jonathan Santos,Female,2011,1971-04-19,B+ -Roger Shaffer,Female,2012,1932-09-15,B+ -Denise Thompson,Male,2013,1986-02-16,B- -Pamela Valencia,Female,2014,1947-08-26,A+ -Ryan Oliver,Male,2015,1974-09-22,AB+ -Margaret Allen,Male,2016,1986-04-20,AB+ -John Alvarado,Female,2017,1974-03-04,AB+ -Eric Burns,Male,2018,1934-08-10,AB+ -Christina Ward,Female,2019,1945-05-28,B- -Kevin Fletcher,Female,2020,1950-04-30,A+ -Joshua Crawford,Male,2021,1965-03-15,A+ -Spencer Lloyd,Female,2022,1963-04-13,O- -Tammy Diaz,Female,2023,1977-05-31,AB+ -Stephen Anderson,Female,2024,1984-09-16,AB+ -Gary Long,Female,2025,1961-04-13,O- -Stacey Martin,Female,2026,1935-06-04,A+ -Kimberly Lee,Male,2027,1972-07-01,B+ -Emily Jones,Female,2028,2002-05-14,B+ -Casey Brewer,Male,2029,1983-03-24,O+ -Deborah Arias,Female,2031,1954-08-07,AB- -Alec Wallace,Male,2032,1977-01-09,O+ -Alex Sanchez,Female,2033,1973-06-27,A+ -Eric Johnson DVM,Female,2034,2002-03-29,A- -Travis Foster,Male,2035,1944-10-04,AB+ -Melissa Singh,Male,2036,1993-01-09,O+ -Donna Flores,Male,2037,1981-01-12,B- -Frank Stephens,Female,2038,1984-09-28,B+ -Joseph Spence,Male,2039,1934-05-27,B- -Marcus Powell,Female,2040,1989-01-14,O- -Gary Ayers,Female,2041,1947-12-31,A+ -Theresa Santiago,Male,2042,1977-07-21,A+ -Erin Jackson,Male,2043,1945-10-25,O+ -Michael Mason,Female,2044,1940-01-25,AB+ -Austin Ross,Male,2045,1939-04-04,A+ -Sandra Scott,Female,2046,1953-11-07,O+ -Mr. Alex Wilson,Male,2047,1954-01-17,O+ -Patrick Higgins,Male,2048,1977-09-25,AB- -Brittney Wells,Male,2049,1968-04-28,AB- -Jennifer Singleton,Male,2050,1984-10-21,A+ -Amy Gardner,Male,2051,1947-05-14,O+ -Andrew Edwards,Male,2052,1977-06-26,O- -Samantha Boone,Male,2053,1946-08-04,O- -Nancy Campos,Male,2054,1954-04-29,AB- -Morgan Daniels,Male,2055,1945-06-26,A+ -Angel Hogan,Female,2056,1963-02-08,B+ -Bethany Smith,Female,2057,1987-02-08,AB+ -Angela Clay,Female,2058,1982-12-04,A- -Nicole Meyer,Female,2059,1971-10-04,B+ -James Ramos,Female,2060,1996-01-04,O- -Paul Ramos,Female,2061,1931-06-11,O- -Jodi Smith,Female,2062,1938-10-30,B+ -Alexander Watts,Male,2063,1971-04-05,AB- -Lisa Olson,Male,2064,1961-08-02,AB- -Amy Thompson,Male,2065,1967-02-03,A+ -Robert Adkins,Male,2066,1979-12-29,AB- -Ronald Barrett,Female,2067,1934-10-30,B- -Michael Hendrix,Male,2068,1953-11-08,A- -Caleb Moss,Female,2069,1945-11-15,B+ -Danny Ray,Female,2070,1955-03-19,B+ -Robert Bright,Male,2071,1994-04-18,O+ -Andrea Vasquez,Male,2072,1943-12-28,O- -Brenda Stewart,Male,2073,1993-01-18,B+ -Janet White,Male,2074,1975-03-06,B- -Destiny Morgan,Female,2075,1936-08-30,B+ -Julie Hall,Female,2076,1989-10-25,AB+ -Thomas Waters,Male,2077,1976-06-15,B- -Crystal Coleman,Male,2078,1998-05-14,A+ -Victoria Snyder,Male,2079,1985-03-25,AB+ -Joseph Hill,Female,2080,1941-05-30,AB+ -William Brown,Male,2081,1998-01-13,B+ -Christie Galvan,Female,2082,2002-10-19,AB- -Chad Anthony,Male,2083,1978-08-30,B+ -Jessica Adams,Male,2084,1952-11-18,B- -William Thompson,Female,2085,2001-07-30,A+ -Kelly Bishop,Male,2086,1946-11-07,O- -Julie Delgado,Female,2087,1989-09-12,A- -Barry Mayo,Male,2088,1954-06-04,AB- -Johnny Richardson,Female,2089,1980-06-14,B- -Michael Allen,Male,2090,1986-05-08,O- -Amy Mueller,Male,2091,1984-06-06,B- -Amanda Bailey,Male,2092,1976-12-27,AB- -Joseph Avila,Male,2093,1930-08-02,O- -Karen Brooks,Female,2094,1940-04-20,AB- -Mary Dodson DDS,Female,2096,1966-09-08,B- -Kathy Clark,Male,2097,1956-09-29,AB+ -Beverly Robinson,Male,2098,1959-02-18,A- -Jessica Rodriguez,Female,2099,1948-06-06,O+ -Donald Thompson,Male,2100,1983-05-24,A- -Maurice Taylor,Female,2101,1945-11-09,AB+ -Dana Kelly DDS,Male,2102,1973-04-27,AB- -Wendy Mendoza,Female,2103,1954-01-18,A- -Justin Harris,Female,2104,1967-04-18,AB- -Heather Rodriguez,Female,2105,1973-11-10,AB- -Lisa Fernandez,Female,2106,1937-06-13,O- -James Ferrell,Male,2107,1954-05-20,A+ -Tracy Malone,Male,2108,1954-12-28,AB- -Adam Callahan,Male,2109,1991-06-01,A- -Tracey Soto,Female,2110,1996-11-06,A- -Michelle Wilson,Female,2111,1974-11-11,A- -Susan Holmes,Female,2112,1947-06-09,AB+ -Nancy Mitchell,Male,2113,1968-06-26,O+ -Heather Smith,Male,2114,1963-07-03,AB- -Linda Johnson,Female,2115,1980-03-12,B+ -Timothy Lucas,Male,2116,1993-04-16,AB- -Jon Garcia,Female,2117,1969-07-26,AB- -Jack Campbell,Female,2118,1996-04-21,B+ -Beverly Adkins,Male,2119,1977-05-15,O- -Timothy Goodman,Male,2120,1983-07-20,AB- -Jacqueline Stone,Male,2121,1958-07-26,AB+ -Jill Green,Male,2122,1972-07-04,B- -Arthur Harris,Female,2123,1994-01-23,A+ -John Adams,Female,2124,1930-03-31,A- -Danielle Leon,Male,2125,1979-07-16,AB- -Benjamin Howard,Female,2126,1958-05-15,O- -Tasha Dunn,Female,2127,1974-10-26,AB+ -Bridget Marquez,Female,2128,1938-04-30,AB- -Shelly Brandt,Male,2129,1930-04-16,B+ -Anthony Winters,Female,2130,1954-11-09,O- -Jennifer Caldwell,Male,2131,1998-06-16,B- -Alexandra Tran,Female,2132,1980-01-18,O+ -Mary Hunt,Female,2133,1946-09-04,AB- -Erica Dalton,Female,2134,1998-02-25,AB+ -Keith Graham,Female,2135,1946-08-27,O- -Claudia Zimmerman,Male,2136,1976-08-05,B+ -Jessica Patterson,Female,2137,1935-04-10,O- -Lori Robinson,Female,2138,1980-06-27,AB- -Madeline Scott,Female,2139,1948-12-09,O- -Austin Peterson,Male,2141,1983-06-20,O+ -Dawn Nielsen,Male,2142,2001-03-24,O- -Deborah Wood,Female,2143,1931-07-07,A- -Jacob Harris,Female,2144,1999-03-31,A+ -Janet Kerr,Female,2145,1989-08-06,A- -Austin Thompson,Female,2146,1940-09-16,A+ -Brandi Robinson,Female,2147,2001-12-23,O- -Melissa Norris,Male,2148,1939-04-13,B+ -Pamela Ayala,Female,2149,2000-04-26,B+ -Matthew Stokes,Female,2150,1967-04-26,AB- -Kevin Munoz,Female,2151,1997-12-21,B+ -Sara Daniels,Female,2152,1936-08-27,A+ -Christina Carlson,Male,2153,2002-11-29,AB+ -Jennifer Flowers,Female,2154,1931-04-04,A+ -Derek Craig,Male,2155,1966-09-04,A- -Alexis King,Female,2156,1930-07-27,O- -Jennifer Cook,Male,2157,1932-06-18,AB- -Lisa Lopez,Male,2158,1961-11-27,B- -Thomas Weber,Male,2159,1974-12-01,AB- -Caleb Norman,Female,2160,1953-07-20,AB- -Felicia Jimenez,Male,2161,1932-06-13,AB- -Corey Lee,Female,2162,1931-05-30,AB+ -Erin Mitchell,Male,2163,1994-10-30,O+ -Michael Beck,Female,2164,1988-04-14,A- -Keith Lynch,Female,2165,1996-05-25,O- -David Moore,Female,2166,1941-04-02,O+ -Robert Neal,Male,2167,1966-04-20,B- -Jamie Powell,Male,2168,1971-12-05,O+ -Holly Smith,Male,2169,1972-01-10,O- -Robert Wilson,Male,2170,1949-08-28,A- -Jennifer Matthews,Male,2171,1958-04-10,A- -Kenneth Wilson,Female,2172,1962-04-10,O- -Victoria Bruce,Male,2173,1934-04-10,B- -Jose Taylor,Male,2174,1967-04-09,O- -Jeffrey Mcdonald,Female,2175,1978-04-29,B- -Amber Jackson,Male,2176,1984-10-26,B- -Amy Brock,Female,2177,1999-05-04,O- -Kevin Greer,Female,2178,1984-03-29,A+ -Jamie Munoz,Female,2179,1943-02-02,A- -Richard Brown,Female,2180,1980-02-19,B- -Misty Palmer,Male,2181,1962-07-26,O- -Carlos Torres,Male,2182,1936-06-14,B+ -James Larson,Female,2183,1943-02-12,A+ -Robert Smith,Male,2184,1975-09-12,A- -Thomas Erickson,Male,2185,1996-09-14,B- -Mrs. Amanda Cardenas,Female,2186,1984-11-22,A- -Amanda Hubbard,Male,2187,1957-11-16,A+ -Catherine Moreno,Female,2188,1949-04-28,A- -Alexis Adkins,Male,2189,1974-01-12,AB+ -Sherry Mendez,Male,2190,1931-10-24,AB- -Patricia Christian,Male,2191,1942-09-19,AB+ -Sheila Miller,Female,2192,1973-01-06,A+ -Calvin Odonnell,Male,2193,1998-02-20,B- -Bill Lindsey,Male,2194,1937-12-30,O- -Justin Jackson,Female,2195,2000-04-01,O+ -Daniel Conway,Male,2196,1973-10-24,O- -Michael Barnes,Female,2197,1968-05-26,A- -Brandon Swanson,Female,2198,1954-06-30,O+ -Zachary Hall,Male,2199,1964-11-10,O+ -Jasmine Sanchez,Female,2200,1947-01-28,A- -Spencer Martin,Male,2201,1974-08-27,A- -Teresa Ingram,Female,2202,1991-07-02,B- -Adam Cole,Female,2203,1967-01-05,A+ -Kristen Roberts,Male,2204,1930-12-19,B+ -April James,Female,2205,1999-10-04,O- -Thomas Torres MD,Female,2206,1949-03-07,A+ -Brian Mills,Male,2207,1968-06-06,AB+ -Daniel Campos,Male,2208,1975-04-17,B- -Tanya Jackson,Female,2209,2002-09-13,B- -Benjamin Smith,Male,2210,1932-08-14,B+ -Andre James,Female,2211,1935-09-03,AB+ -Dr. Jessica Edwards,Female,2212,1953-07-14,O- -Ronald Sanchez,Female,2213,1971-06-15,AB- -Rebecca Hebert,Female,2214,1965-01-20,AB+ -Michael Anderson,Female,2215,2001-01-31,O- -David Middleton,Male,2216,1939-06-16,O+ -Lori Davis,Male,2217,1948-04-11,A- -Adam Johnson,Male,2218,1932-08-13,B- -Patrick Mcclure,Female,2219,1947-03-28,O- -Kaitlyn Kelly,Male,2220,1973-08-04,A+ -Robin Hamilton,Male,2221,1979-07-19,B+ -Susan Riddle,Male,2222,1971-11-04,A- -Jennifer Jones,Female,2223,1942-11-17,A+ -Christopher Smith,Female,2224,1947-12-21,A- -Vickie Thomas,Male,2225,2000-10-09,B- -Timothy Herring,Female,2226,1990-04-11,AB+ -Christina Phillips,Female,2227,1962-11-12,AB- -Martin Gilbert,Female,2228,1959-08-14,AB+ -Brian Wolf,Female,2229,2001-03-26,O- -Donald Gray,Male,2230,1960-08-02,B+ -Michael Shepherd,Male,2231,2002-03-17,AB+ -Manuel Gray,Male,2232,1964-06-13,B- -James Kelly,Female,2233,1963-05-29,B+ -Jessica Salinas,Female,2234,1978-09-04,O- -Helen Smith,Female,2235,1964-02-25,O+ -Michael Haas,Female,2236,1955-11-27,AB+ -Greg Holden,Male,2237,1987-10-25,AB+ -Angela Gomez,Female,2238,1985-01-10,AB- -Shane Griffin,Male,2239,1972-09-13,O- -Elizabeth Green DDS,Female,2240,1931-06-14,A+ -Brandy Clark,Female,2241,1982-12-16,AB+ -Kimberly Ford,Female,2242,1996-07-01,B- -Deborah Adams,Female,2243,1984-09-09,AB+ -Crystal Mckee,Female,2244,1993-09-26,AB- -Douglas Johnson,Male,2245,1964-12-13,O+ -Carolyn Simpson,Male,2246,1968-02-01,AB- -Emily Mccall,Male,2247,1961-08-27,AB+ -Lauren Benson,Female,2248,1955-01-01,B+ -Timothy Hill,Female,2249,1931-06-10,A+ -William Lawson,Female,2250,1992-08-04,A- -Erica Dougherty,Female,2251,1974-11-11,AB+ -Matthew Flores,Male,2252,1931-01-10,O- -Catherine Stevens,Female,2253,1963-05-25,AB+ -Destiny Bennett,Male,2254,1942-09-23,A+ -Janet Johnson,Male,2255,1936-06-23,O- -Cindy Dixon,Male,2256,1979-01-13,B- -Joshua Mclaughlin,Female,2257,1934-07-05,B+ -Christopher Nguyen,Male,2258,1930-01-14,O- -Elizabeth Wilson,Female,2259,1942-08-05,AB- -Ashley Mays,Male,2260,1936-03-28,O+ -Sarah Jackson,Male,2261,1969-02-21,AB- -Pamela Smith,Male,2262,1938-08-22,A- -Lydia Collins PhD,Male,2263,1952-10-13,O- -Cassandra Burgess,Male,2264,1940-06-11,B- -Lauren Lawrence,Female,2265,1965-12-08,AB+ -Richard Higgins,Male,2266,1938-10-22,B+ -Regina Chang,Male,2267,2002-11-15,O- -Sarah Fisher,Male,2268,1997-05-12,AB- -Martin Merritt,Female,2269,1935-10-15,O- -Emily Benson,Female,2270,2000-09-18,O- -Christina Green,Female,2271,1986-10-14,O- -Rachel Holden,Male,2272,1958-01-12,B- -Lauren Grant,Female,2273,1967-09-04,B+ -Susan Hurley,Male,2274,1990-01-13,A+ -Emily Rose,Male,2275,1987-05-01,A+ -David Butler,Female,2276,1964-06-19,O- -Lauren Beasley,Male,2277,1994-03-12,B- -Kathleen Knight,Male,2278,1939-03-29,B- -Susan Zuniga,Female,2279,1947-08-10,A- -Alexander Wood,Female,2280,1984-05-07,O- -Joseph Long,Male,2281,1983-04-18,AB- -Shannon Mcdonald,Female,2283,1962-10-10,AB- -Travis Bauer,Female,2284,1931-09-22,O+ -Sandy Nelson,Male,2285,1975-08-06,B+ -Amy Adams,Male,2286,1959-08-28,O- -Marie Green,Male,2287,2002-09-29,O+ -Danielle Santiago,Female,2288,1945-09-03,AB- -Juan Miller,Female,2289,1991-01-02,AB- -Laura Mills,Male,2290,1960-05-06,O- -Juan Peterson,Male,2291,1966-01-01,O+ -Crystal Burnett,Female,2292,1984-04-03,O+ -Donna Ortiz,Female,2293,1955-12-08,O- -Michael Spears,Male,2294,1947-03-09,B+ -Aaron White PhD,Male,2295,1972-10-22,A- -James Bush,Female,2296,1946-02-21,O+ -Colleen Mcdonald,Female,2297,1968-04-25,A- -Danielle Fowler,Female,2298,1994-05-04,AB+ -Kelli Parker,Male,2299,1993-01-30,B+ -Harry Pennington MD,Male,2300,1958-11-22,AB- -Jermaine Reyes,Male,2301,1976-06-07,A+ -Mr. Jacob Norton,Male,2302,1994-02-07,B+ -Malik Serrano,Female,2303,1946-09-13,A- -Patrick Madden,Female,2304,1956-01-04,A- -Leslie Allen,Female,2305,1983-08-07,A- -Kevin Benson,Female,2306,1938-09-14,B- -Jennifer Hinton PhD,Male,2307,1991-06-06,B+ -Angelica Barnes,Female,2308,1982-05-06,O+ -Bryce Kennedy,Female,2309,1946-09-30,O+ -Krista Grant,Female,2310,1972-08-11,B- -Joshua Ferguson,Male,2311,1939-10-09,O+ -Donna Kim,Male,2312,1956-12-17,B- -Connor Mathews,Male,2313,2001-08-11,A- -Jared Duncan,Male,2314,1968-09-13,O- -Jake Jensen,Female,2315,1980-11-21,B+ -Yesenia Yang,Female,2316,1978-08-31,AB+ -Kyle Melendez,Male,2317,1934-10-09,A- -Jamie Boyd,Female,2318,1980-02-17,AB+ -Robin Dillon,Male,2319,1931-09-12,AB- -Jennifer Kim,Female,2320,1978-05-07,A- -Patrick Cooper,Female,2321,1977-06-23,A+ -Derek Compton,Male,2322,1935-04-24,O+ -Shane George,Male,2323,1985-09-06,A+ -Elizabeth Brooks,Male,2324,1973-10-23,O- -Amy Allen,Female,2325,1932-08-26,AB+ -Jason Browning,Female,2327,1970-08-25,B+ -Jessica Schultz,Male,2328,2000-11-21,A- -Shannon Harris,Male,2329,2000-02-22,B+ -Lucas Potter,Male,2330,1930-10-09,O- -Jesse Marquez,Female,2331,1972-01-21,O- -Jessica Nelson,Male,2332,1947-02-23,O+ -Malik Murphy,Male,2333,1932-11-24,O- -Frances Bell,Male,2334,1986-08-12,A- -Travis Oneal,Female,2335,1959-05-13,A- -Michael Williamson,Female,2336,1944-03-06,B+ -Nicholas Greene,Male,2337,1949-02-10,B+ -Rebecca Brock,Female,2338,1955-03-11,AB+ -Jamie Schneider,Male,2339,1933-05-14,A- -Katherine Lam,Male,2340,2000-02-14,A+ -Andrew Vega,Female,2341,1987-05-31,AB+ -Heidi Gonzalez,Female,2342,1953-03-08,O+ -Daniel Harris,Female,2343,1982-05-12,AB+ -John Liu,Female,2344,1936-04-08,B- -Brianna Rose,Male,2345,1933-05-24,B+ -Melissa Valdez,Female,2346,1944-09-14,A+ -Kayla Benson,Female,2347,1974-04-10,B+ -Chad Howell,Female,2348,1930-05-06,B- -Miranda Harris,Female,2349,1964-03-27,B- -Jeff Thompson,Female,2350,1995-04-27,AB- -Caitlin Mann,Female,2351,2000-08-05,A- -Jesse Stephens,Male,2352,1972-02-28,O+ -Dennis Fitzgerald,Male,2353,1989-06-26,O- -Courtney Washington,Female,2354,1994-12-26,B- -Jill Griffin,Female,2355,1948-03-05,AB+ -Rachel Gill,Female,2356,1947-12-28,O- -Todd Arellano,Male,2357,1938-11-24,AB+ -Kenneth White,Female,2358,1954-12-11,B+ -Robert Whitaker,Male,2359,1950-10-18,AB+ -Justin Willis,Female,2360,1967-04-02,O- -Dawn Russell,Male,2361,1963-03-04,O- -Charlene Green,Male,2362,1947-03-27,A- -Mary Bell,Female,2363,1992-09-23,AB+ -Judy Sanders,Female,2364,1945-10-06,O+ -Andre Bernard,Male,2365,1964-06-26,A- -Kathleen Butler,Male,2366,1935-05-24,A+ -Luke Oliver,Male,2367,1960-01-29,AB- -Tara Rodriguez,Male,2368,1977-04-19,A+ -Kelly Fields,Male,2369,1942-03-29,O+ -Hannah Clark,Female,2370,1994-07-03,A- -Timothy Thompson,Male,2371,1957-12-30,AB- -Kelsey Simpson,Female,2372,1956-03-01,A- -Jody Singleton,Female,2373,1997-08-21,O- -Shawn Munoz,Male,2374,1955-03-17,AB- -Heidi Mendoza,Male,2375,1957-05-10,B+ -Priscilla Tate,Male,2376,1993-07-05,AB+ -Richard Acosta,Male,2377,1950-08-03,A+ -Brandon Sherman,Female,2378,1967-06-05,AB- -Robin Saunders,Female,2379,1942-08-18,AB+ -Chad Garcia,Female,2380,2001-06-11,A- -Michael Carter,Male,2381,1963-11-17,O+ -Susan Williams,Female,2382,1978-02-20,AB- -Nicole Sellers,Female,2383,1972-07-31,AB+ -Joshua Berry,Female,2384,1970-02-06,A- -Sylvia Mann,Female,2385,1944-05-05,A- -James Mendez,Male,2386,1972-08-25,A- -Terri Hernandez,Male,2387,1991-07-13,O+ -Travis Dixon,Male,2388,1991-12-28,O- -Philip Gallagher,Female,2389,1972-06-13,O+ -Katherine Martinez,Female,2390,1995-12-15,O+ -Ariel Miller,Male,2391,1940-03-08,B+ -Gerald Thomas,Female,2392,1930-10-30,A+ -Terry Wright,Female,2393,1963-04-02,A- -Kimberly Salazar,Female,2394,1977-07-23,AB+ -Melissa Sexton,Female,2395,1957-07-13,AB- -Mr. Matthew Myers,Male,2396,1942-02-27,A+ -James Martin,Male,2397,1988-04-19,A- -Kelly Alvarez,Male,2398,1938-05-31,B- -Samuel Vazquez,Male,2399,1967-03-26,O+ -Derek Brown,Male,2400,1969-02-12,B- -Andrea Jones MD,Male,2401,1968-03-27,A- -Bethany Griffin,Male,2402,1983-05-31,A+ -Christine Rogers,Female,2403,1956-01-24,AB+ -Russell Fisher,Female,2404,1966-08-20,A+ -James Foster,Male,2405,1962-06-27,B+ -Omar Smith,Male,2406,1952-03-31,AB+ -Adam Callahan,Female,2407,1939-01-05,AB+ -Ryan Lee,Male,2408,1941-01-16,A- -Alicia Martin,Male,2409,1943-12-24,O- -Erin Carroll,Female,2410,1976-10-13,A- -Nicole Newton,Female,2411,1952-04-08,O+ -Andre Le,Female,2412,1976-06-06,A+ -Kerry Clark,Male,2413,1945-08-14,AB+ -Regina Dorsey,Female,2414,1951-06-28,A- -Justin Oliver,Female,2415,1989-02-12,A- -Jason Mccall,Female,2416,1965-07-11,A+ -James Patton,Female,2417,1948-12-16,A+ -Lisa Washington,Female,2418,1985-05-04,B+ -Brianna Clark,Female,2419,1983-09-14,AB+ -Rebecca Newman,Male,2420,1931-05-04,AB- -Jennifer Davidson,Male,2421,1949-06-24,B+ -Megan Miller,Male,2422,2000-12-22,B- -Antonio Clark,Male,2423,1973-02-04,O+ -Abigail Young,Male,2424,1938-09-09,O+ -Tyler Fernandez,Male,2425,1934-07-26,AB- -Douglas Navarro,Female,2426,2001-10-08,O- -Lee Ward,Female,2427,1941-04-07,B+ -Michael Fuller DDS,Female,2428,1939-09-24,AB- -Bailey Flores,Female,2429,1951-04-02,O- -Jennifer Carrillo,Male,2430,1932-09-27,O- -Kenneth Fitzgerald,Female,2431,1972-10-25,AB- -Susan Ward,Female,2432,1999-08-13,O+ -Danielle Barker,Female,2433,1978-08-29,B- -Christopher Carson,Male,2434,1944-12-03,O+ -Joel Scott MD,Female,2435,1940-03-01,A- -Patty Barnett,Male,2436,1933-09-29,O+ -Carla Grimes,Male,2437,1952-06-03,O+ -Carla Mcdonald,Male,2438,1954-09-05,B+ -Michael Wallace,Female,2439,1976-02-07,AB- -Courtney Fields,Male,2440,2001-09-25,AB- -Nicole Mcdonald,Female,2441,1982-06-13,A- -Patrick Lyons,Male,2442,1940-03-15,A- -Kylie Harris,Female,2443,1994-08-29,B+ -Derrick Lynch,Female,2444,1943-02-28,AB- -Jeffery Levine,Female,2445,1935-12-31,O+ -Kristen Freeman,Female,2446,1954-12-09,B- -Cory Sanchez,Male,2447,1963-05-06,O- -Michelle Colon,Female,2448,1937-11-15,A+ -Anthony Macdonald,Male,2449,1945-04-24,O- -Michael Kelly,Female,2450,1978-10-20,A- -Candice Marshall,Female,2451,1964-06-23,A- -Pamela Brooks,Female,2452,1954-06-11,O- -Tammy Cantu,Male,2453,1991-06-13,A+ -Thomas Cherry,Male,2454,1969-07-12,O+ -Joseph Bryant,Male,2455,1961-07-27,B- -Marissa Webb,Male,2456,1949-03-12,B- -Robert Maynard,Female,2457,1960-09-07,O- -Brittney Holmes MD,Male,2458,1994-05-06,A+ -Kristen Moore,Female,2459,1999-12-02,B+ -Julie Perry,Male,2460,1938-03-09,A- -Mark Hall,Female,2461,1962-12-19,AB+ -Angela Gray,Female,2462,1955-03-29,O+ -Nicole Jordan,Female,2463,1991-11-29,B+ -Angela Fernandez,Female,2464,1947-09-20,O- -Brittney Reed,Female,2465,1937-11-03,B- -Christopher Taylor,Male,2466,1959-04-12,A- -Anthony Dorsey,Female,2467,2002-08-14,B+ -Dominique Arias,Female,2468,1933-03-23,B+ -Eric Gallagher,Female,2469,1943-01-13,AB- -Felicia Lewis,Female,2470,1930-01-12,AB- -Mark Griffin,Female,2471,1989-03-28,A+ -Lynn Smith,Female,2472,1974-10-10,A+ -Destiny Diaz,Female,2473,1986-11-26,O- -Frank Coleman,Male,2474,1961-08-22,B+ -Reginald Mcpherson,Female,2475,1961-08-29,AB+ -Andrew Flores,Male,2476,1968-06-21,B- -Matthew Watkins,Female,2477,1960-03-06,O- -Steve Campbell,Female,2478,1952-07-18,AB+ -Karen Bishop,Male,2479,1999-11-14,A- -Penny Parker,Female,2480,1989-10-07,A+ -Megan Morrison,Male,2481,1974-04-13,AB- -Dr. Matthew Lindsey,Female,2482,1966-01-30,O+ -Lauren Young,Male,2483,1947-12-28,B+ -Janice Figueroa,Male,2484,2000-01-14,A- -Dana Graves,Male,2485,1997-05-05,AB- -Joshua Mckay,Female,2486,1931-02-11,B- -Susan Coleman,Female,2487,1955-03-17,B- -Jeremy Randall,Female,2488,1942-02-18,AB- -Brian Boyd,Male,2489,2002-04-27,A- -Joyce Johnson,Female,2490,1989-03-19,AB- -Tammy West,Female,2491,1947-11-30,AB+ -Sheryl Wright,Female,2492,1993-11-06,O- -Patrick Roberts,Female,2493,1954-05-21,A+ -Tanya Zimmerman,Male,2494,1941-05-09,AB+ -Brittany Matthews,Male,2495,1962-12-25,O+ -Nina Washington,Male,2496,1964-07-12,AB- -Kristen Gonzales,Female,2497,1965-10-20,O+ -Felicia Benjamin,Male,2498,1975-03-30,O+ -Douglas Miller,Male,2499,1943-05-15,AB+ -Elizabeth Salinas DVM,Male,2500,1968-08-22,A+ -Joshua Davis,Male,2501,1967-05-12,A- -Emma Townsend,Female,2502,1946-06-18,B- -Sara Barton,Male,2503,1977-06-30,O- -Lisa Jones,Male,2504,1949-07-31,B+ -Dana Johnson,Female,2505,1998-04-22,B- -Kevin Bryan,Male,2506,1939-11-20,A+ -Sarah Mason,Male,2507,1957-01-23,B+ -Laura Garcia,Female,2508,1948-11-16,B- -Miss Denise Webster DVM,Male,2509,1966-11-15,AB- -Laurie Craig,Male,2510,1994-11-16,AB- -Cynthia West,Male,2511,1975-02-23,AB+ -Natasha Phelps,Female,2512,1990-01-09,O+ -Ronald Wright,Female,2513,1957-01-12,B+ -Kathleen Richard,Male,2514,1963-08-25,A+ -Jamie Newton,Male,2515,1963-06-05,A+ -William Murphy,Female,2516,1959-08-25,B- -Miguel Lewis,Male,2517,1993-06-10,AB+ -Adam Hall,Female,2518,1935-11-08,B- -William Arellano,Female,2519,1987-01-11,B- -Andrea Gould,Male,2520,1984-07-10,A+ -Suzanne Delgado,Female,2521,1933-07-10,B- -Lisa Lucas,Female,2522,1973-01-05,O+ -Angela Riley,Male,2523,1961-02-18,B- -Lisa Baker,Male,2524,1973-08-28,B+ -Justin Davidson,Female,2525,1949-04-23,O+ -Mary Wilson,Female,2526,1940-01-03,A+ -Luke Vargas,Male,2527,1994-04-21,AB+ -Amanda Taylor,Male,2528,1981-04-26,AB- -Allison Rodriguez,Male,2529,1972-09-17,B+ -Nicole Choi,Female,2530,1997-01-18,O+ -Elizabeth Patrick,Male,2531,1953-08-24,AB+ -Phyllis Waters,Male,2532,1947-08-21,AB+ -Brandon Bell,Male,2533,1988-09-04,O+ -William Sherman,Female,2534,1997-05-20,A+ -Sarah Roth,Male,2535,1989-02-07,O- -Taylor Smith,Male,2536,1956-06-20,AB+ -Adriana Ochoa,Male,2537,1963-04-07,AB+ -Marisa Gray,Male,2539,1934-12-04,A+ -Andrea Poole,Male,2540,2002-05-04,A+ -Colin Lyons,Male,2541,1956-04-14,B- -Gary Brooks,Female,2542,1989-05-06,A+ -John Cooper,Female,2543,1945-01-17,AB+ -Heather Farmer,Female,2544,1957-02-08,O+ -Barbara Brown,Female,2545,1967-06-09,O- -Christopher Ortiz Jr.,Female,2546,1960-06-22,A- -Robert Jackson,Female,2547,1992-01-24,B- -Troy Morgan,Male,2548,1971-09-05,A- -Gary Bennett,Male,2549,1994-10-21,O+ -Kimberly Lee,Female,2550,1933-07-24,O- -Michael Rodriguez,Female,2551,1993-08-31,O- -Diane Williams,Male,2552,1955-11-01,O- -Kelli Salinas,Male,2553,1983-05-04,AB- -Evelyn Hines,Male,2554,1942-08-22,O+ -Judy Lucas,Female,2555,1974-11-19,B+ -Nancy Collins,Female,2556,1959-01-26,B- -Anthony Dawson,Male,2557,1945-10-01,B- -Kimberly Bryant,Male,2558,1956-12-22,O- -Michael Mueller,Male,2559,1947-03-28,O+ -Tammy Stephens,Male,2560,1988-01-16,AB- -Christopher Collins,Male,2561,1977-10-17,O- -Monique Foster,Male,2562,1938-10-31,A+ -Jennifer Everett,Female,2563,1933-08-09,B+ -Jessica Carter,Female,2564,1990-06-18,A- -Hannah Myers,Female,2565,1963-10-12,B- -Courtney Turner,Female,2566,1948-08-21,A- -Sophia Jones,Female,2567,1993-02-17,AB+ -John Stone,Female,2568,1940-02-01,O- -Leah Richardson,Male,2569,1949-10-15,A+ -Jennifer Cooper,Female,2570,1938-12-18,B- -Mr. Jeffrey Ellis,Male,2571,1994-01-09,A- -Noah Gillespie,Female,2572,1930-05-26,B+ -Michael Gregory,Male,2573,1943-09-20,AB- -Robert Riggs,Male,2574,1973-11-26,O+ -Edwin Harris,Male,2575,1938-04-29,B- -Jennifer Johnson,Male,2576,1956-06-07,B+ -Catherine Foster,Female,2577,2001-08-16,A- -Michelle Wiley,Male,2578,1976-03-06,O+ -Victoria Cobb,Male,2579,1983-07-25,A- -Rebecca Diaz,Male,2580,1978-04-12,O+ -Theresa Lambert,Female,2581,1976-08-01,AB- -Jake Martin,Male,2582,1971-01-22,AB- -James Perez,Female,2583,1974-09-23,O- -Edward Mcpherson,Female,2584,1954-03-29,O- -Sally Williams,Male,2585,1962-01-08,B- -Nathan Bailey DDS,Female,2586,1937-10-23,AB- -Rhonda Hernandez,Female,2587,1973-11-05,A+ -Joseph Pratt,Male,2588,1932-09-14,A- -Michelle Smith,Male,2589,1950-11-14,A- -Jade Sanchez,Male,2590,1994-12-02,A- -Kristin Newman,Male,2591,2001-07-09,B- -James Buck,Female,2592,1999-01-24,A- -Ryan Jacobs,Male,2593,1955-01-30,AB+ -Kyle Wolf,Female,2594,1977-11-14,O+ -Lisa Moore,Male,2595,1948-03-19,A- -Cynthia Howell,Female,2596,1998-06-29,B+ -Laura Lawson,Female,2597,1950-04-27,O+ -Jared Williams,Male,2598,1988-08-04,O- -Elizabeth Evans,Female,2599,1932-02-09,A- -Andrew Jarvis,Male,2601,1978-07-15,B+ -Vicki Jacobs,Female,2602,1968-08-23,A+ -Jacqueline Stevens,Female,2604,1941-12-07,B+ -Andrea Wood,Male,2605,2001-08-09,AB- -Megan Stephens,Female,2606,1993-06-03,AB- -Trevor Hurley,Male,2607,1992-12-07,O- -Brian Schwartz,Male,2608,1961-08-09,AB+ -Douglas Smith,Male,2609,1981-04-16,B- -Meredith Hall,Female,2610,1945-08-09,B- -Ryan Howard,Female,2611,1978-04-04,A+ -Susan Carrillo,Female,2612,1933-01-30,O- -Steven Jimenez,Male,2613,1959-07-21,O- -Miranda Frey,Female,2614,2000-07-18,AB+ -Jessica Walter,Male,2615,1948-07-09,A- -Toni Turner,Female,2616,1988-10-28,B- -Lauren Hines,Female,2617,1963-09-28,A- -Margaret Hayes,Male,2618,1965-09-05,O- -Miss Lisa Lopez,Female,2619,1968-06-22,A- -Mary Adams,Male,2620,1964-08-10,AB- -Pamela Santiago,Male,2621,1951-06-23,A+ -Margaret Jones MD,Male,2622,1968-11-27,B- -Mary Case,Male,2623,1975-01-21,AB+ -Ashley Howard,Female,2624,1989-11-03,A+ -William Norton,Female,2625,1957-09-02,O+ -John Parks,Male,2626,1944-03-17,AB- -Dawn Bradley,Female,2627,1936-10-08,AB+ -Mary Floyd,Male,2628,1976-10-17,B+ -Justin Robertson,Male,2629,1979-10-19,A+ -Leah Perez,Female,2630,1948-05-10,O- -Alan King,Male,2631,1940-03-02,O+ -Carla Cooper,Male,2632,1943-10-31,AB+ -Sarah Gibbs,Female,2633,1959-06-14,O- -Jonathan Stevens,Female,2635,1936-10-11,AB- -Carol Rodriguez,Male,2636,1939-11-20,B+ -Eric Mendez,Female,2637,1941-08-26,O+ -Sarah Price,Female,2638,1969-08-28,B- -Dylan Brown,Female,2639,1995-02-10,B+ -Vanessa Mcdowell,Male,2640,1934-10-02,O- -Andrew Wood,Female,2641,2001-08-17,A+ -Mary Rojas,Female,2642,1952-08-11,A- -Martha Ford,Male,2643,1951-11-06,AB+ -Ian Lewis,Female,2644,1936-08-25,O+ -Mark Wright,Female,2645,1963-10-20,O- -Melissa Lozano,Male,2646,1950-05-02,B- -Travis Kelly DVM,Male,2647,1953-05-13,A- -Jacob Hudson,Female,2648,1944-05-16,AB+ -Michael Hopkins,Female,2649,1989-05-06,AB+ -Angela Jordan,Female,2650,1982-07-28,O- -Hannah Walker,Female,2651,2000-08-29,B- -Brenda Reyes,Female,2652,1985-06-19,AB- -Stephen Lopez,Female,2653,1956-07-09,A- -Christina Mcconnell,Male,2654,1968-08-18,AB- -Bryan Smith,Female,2655,1986-05-22,O+ -Michael Hunt,Female,2656,1931-10-24,O- -Jeffrey Jones,Male,2657,1963-01-23,A- -Kevin Smith,Male,2658,1970-06-28,O+ -Rachel Evans,Female,2659,1957-07-18,B+ -Justin Swanson,Male,2660,1973-05-11,AB- -Tracy Gentry,Male,2661,1958-10-27,B+ -Daniel Miller,Female,2662,1939-03-29,B+ -Katie Perez,Female,2663,2000-01-26,A- -Meghan Lee,Male,2664,1930-07-27,AB+ -Charles Holt,Male,2665,1937-04-19,O+ -Richard Walker,Female,2666,1981-09-07,B+ -Jennifer Carroll,Male,2667,1993-07-06,B- -Lance Haynes,Male,2668,1931-09-25,A+ -Brandi Jones,Female,2669,1938-06-11,AB- -Brandi Henson,Female,2670,1967-07-17,AB- -Kelly Howell,Male,2671,1957-09-19,B- -Ian Jackson,Male,2672,1985-01-15,A- -Rachel May,Male,2673,1949-07-03,A- -Tina Combs,Male,2674,1959-06-12,A- -Michael Powell,Male,2675,1934-08-07,O+ -Matthew Hall,Male,2676,1973-07-15,O- -Edward Smith,Male,2677,1930-08-25,B+ -Lori Hill,Male,2678,1950-05-22,AB+ -Elizabeth Robinson,Male,2679,1942-03-02,A+ -Mary Scott,Female,2680,1993-05-24,O- -Paul Salazar,Female,2681,1972-05-03,O- -Phillip Rivera,Female,2682,2001-07-03,B- -Sabrina Williams,Female,2683,1991-07-23,O+ -Todd Phillips,Female,2684,1953-06-04,AB- -Jennifer Graham,Female,2685,1981-05-05,AB- -Sergio Wilson,Male,2686,1975-08-22,B- -Michelle Webb,Male,2687,1930-05-29,O+ -Rachel Mcmillan,Male,2688,1966-09-04,B- -Corey Mcguire,Female,2689,1985-11-29,AB- -Tracy Sanford,Male,2690,1992-10-15,O- -Timothy Rose,Male,2691,1994-05-10,AB+ -James Delacruz,Female,2692,2002-02-14,B+ -Steven Petersen,Male,2693,1943-05-28,A- -Laura Valdez,Male,2694,1989-04-25,O+ -Kimberly Boone,Female,2695,1977-08-18,B+ -Robin Bishop,Female,2696,1960-03-07,A+ -Haley Baker,Female,2697,1959-04-18,A+ -Antonio Mitchell,Male,2698,1956-08-07,O- -Elizabeth Mercado,Female,2699,1982-06-26,B- -Troy Parker,Female,2700,1985-01-21,B- -Nancy Smith DDS,Male,2701,1974-04-03,AB- -Taylor Moore,Male,2702,1987-05-22,O- -Robert Webb,Male,2703,1945-10-31,AB- -James Moses,Male,2704,1991-12-28,AB- -David Estes,Male,2705,2001-09-02,A+ -Glenn Weber,Male,2706,1981-06-14,AB- -Julie Velasquez,Male,2707,1975-10-16,B+ -Andrew Smith,Male,2708,1937-09-18,A- -Angela Carey,Female,2709,1971-05-02,AB- -Kristi King DVM,Male,2710,1981-09-10,A+ -Isabella Rose,Female,2711,1991-03-08,A- -Deborah Goodman,Male,2712,1944-07-05,B- -Thomas Decker,Female,2713,1957-02-25,O+ -Nicole Garcia,Male,2714,1995-08-06,AB+ -Travis Hamilton,Male,2715,1979-06-26,AB- -Austin Benjamin,Female,2716,1938-12-12,B+ -Cory Heath,Female,2717,1942-01-24,A- -Javier Gray,Male,2718,1998-01-01,O+ -Andrea Neal,Male,2719,1978-10-22,A+ -Stacy Farmer,Male,2720,1998-05-25,O+ -Tracy Davidson,Female,2721,1958-06-05,AB+ -Jenny Harris,Male,2722,1942-02-24,B+ -Patricia Brown,Male,2723,1944-11-18,O+ -Brandon Delgado,Male,2724,1997-12-14,B+ -Ashley Solis,Male,2725,1941-03-31,A- -Rebecca Anderson,Male,2726,1931-07-15,O+ -Dr. Stacy Gibson PhD,Male,2727,1963-10-04,B+ -William Austin,Male,2728,1998-11-29,O+ -Damon Brady,Male,2729,1990-01-18,O+ -Bethany Hicks,Female,2730,1935-01-01,O- -Daniel Obrien,Female,2731,1961-04-09,AB- -Angela Stephens,Male,2732,1963-08-01,A+ -Martha Singleton,Female,2733,1950-11-21,AB+ -Nancy Garcia,Female,2734,1952-10-17,A+ -Carly Johnson,Male,2735,1983-06-14,O- -Shannon Wood,Male,2736,1951-01-24,O- -Zachary Luna,Female,2737,1952-08-17,A- -Richard Fields,Female,2738,1964-09-25,O- -Katherine Smith,Female,2739,1967-07-22,AB- -Cole George,Female,2740,1996-04-30,O- -Nancy Velasquez,Male,2741,1948-05-27,O+ -Dana Moody,Female,2742,1994-01-11,A+ -Melinda Curtis,Female,2743,1986-06-05,B- -Tabitha Jenkins,Male,2744,1983-01-05,AB+ -Jacqueline Mejia,Male,2745,1950-03-10,O- -Susan Dunlap,Female,2746,1946-03-05,A+ -Lisa Beck,Female,2747,1991-07-21,A- -Billy Ross,Female,2748,1974-02-26,O- -Belinda Combs,Female,2749,1945-06-27,AB- -Connor Chen,Female,2750,2002-09-21,O- -Bradley Fisher,Male,2751,1954-08-07,O- -Sara Berry,Female,2752,1986-07-09,B+ -Lisa Thompson,Female,2753,1952-09-08,B+ -David Myers,Male,2754,1946-02-27,O- -Mary Daniels,Male,2755,2000-05-22,A- -Kimberly Matthews,Female,2756,1943-06-19,B+ -Robert Navarro,Female,2757,1953-01-29,O- -Danielle Schultz,Female,2758,1970-04-17,AB+ -Kevin Harris,Female,2760,1973-03-31,A+ -Steven Moody,Female,2761,1960-06-30,B+ -Robert Dillon,Male,2762,1936-12-05,B+ -Rhonda Sherman,Female,2763,1980-03-23,AB- -Cynthia Wagner,Female,2764,1994-02-23,O- -Tammy Marshall,Male,2765,1977-09-23,O- -Benjamin Anderson,Male,2766,1945-10-21,O- -Colleen Boyd,Male,2767,1972-05-16,O- -Stephanie Sellers,Female,2768,1981-10-13,B+ -Frank Conner,Male,2769,1973-02-15,O+ -Vanessa Little,Female,2770,1938-02-12,O+ -Daniel Rice,Male,2771,1949-07-17,B- -Jordan Smith,Male,2772,1977-06-30,O- -Maria Mccarthy,Female,2773,1976-04-29,B- -Edwin Bailey,Female,2774,1968-01-13,AB+ -Michael Miranda,Male,2775,1950-02-05,B- -Danielle Smith,Female,2776,1994-07-07,A+ -Lori Brown,Female,2777,1951-10-25,O+ -Ashley Clark,Female,2778,1963-12-29,O+ -Kenneth Little,Female,2779,1962-07-03,O- -Barbara Ibarra,Female,2780,1962-08-17,B+ -Rebecca Collins,Male,2781,1953-11-30,O- -Tammy King,Female,2782,1932-04-25,AB+ -Brian Acosta,Female,2783,1990-09-04,AB- -Alexandra Davidson,Female,2784,1983-03-04,AB+ -Robert Williams,Female,2785,1991-02-21,A+ -Nathan Cain,Female,2786,1936-10-30,O- -Brittany Snyder,Female,2787,1964-09-16,O- -Alyssa Levine,Male,2788,1982-04-21,AB+ -Zachary Turner,Female,2789,1980-01-07,AB+ -Robert Ali,Female,2790,1963-10-05,AB+ -Dana Zavala DDS,Male,2791,1986-10-07,O+ -Jeremiah Lawrence,Female,2792,1944-03-07,B- -Veronica Morris,Male,2793,1948-02-06,B- -Luis Aguilar,Male,2794,1947-08-10,O- -Kimberly Obrien,Male,2795,1949-08-03,O+ -Tamara Gomez,Female,2796,1967-11-11,AB+ -Jessica Martinez,Female,2797,1957-10-11,O- -Lisa Ferguson,Female,2798,1947-10-07,O+ -Elizabeth Bryant,Female,2799,1987-10-30,A+ -Todd Hernandez,Female,2800,1992-09-21,AB- -Eric Owens,Male,2801,1940-07-17,O+ -Jeffrey Downs,Female,2802,1976-09-29,A- -Frank Bird,Male,2803,1967-02-20,O- -Sheri Gray,Female,2804,2002-08-17,B+ -Jennifer Gilmore,Male,2805,1989-01-10,B- -Daniel Wilkins,Female,2806,1998-07-15,A- -Jennifer Jackson,Female,2807,1943-11-27,AB+ -Thomas Kelly,Male,2808,1963-04-26,AB- -Jason Ortiz,Male,2809,1944-12-01,B+ -Amy Taylor DDS,Female,2810,1978-02-01,A+ -Paula Anderson,Female,2811,1954-11-05,B+ -Andrea Taylor,Male,2812,1947-07-17,AB- -Caleb Flores,Female,2813,1998-05-19,B+ -Richard Kelly,Female,2815,1993-10-08,AB- -Eric Williams,Female,2817,1954-02-04,O+ -Shannon Martinez,Female,2818,1968-07-23,O- -Sandra Jones,Male,2819,1934-06-27,B+ -Mrs. Tracie Solis,Female,2821,1990-05-21,B+ -Ashley Elliott,Female,2822,1993-10-29,O- -Stephen Preston,Female,2823,1958-04-24,AB- -Jodi Pope,Female,2824,1933-10-14,AB+ -Carlos Bush,Female,2825,1933-11-04,O- -Anita Oconnor,Male,2826,1954-09-03,AB- -Tammy Elliott,Female,2827,1939-01-06,O- -Beverly Hansen,Female,2828,1954-09-03,AB+ -Nancy Harper,Female,2829,1931-02-24,A+ -John Hayes,Male,2830,1963-12-25,A- -Nicole Miller,Male,2831,1942-05-15,AB- -Lindsay Dominguez,Female,2832,1983-11-25,B- -Loretta Long,Male,2833,1996-05-15,B- -Charles Fields,Female,2834,1972-03-23,AB- -Kelly Hill,Male,2835,1956-07-23,O+ -Amy James,Male,2836,1996-05-28,A+ -Kenneth Brown,Female,2837,1945-08-03,O+ -Samantha Murphy,Male,2838,1932-02-07,A- -Kelli Harris,Male,2839,1980-06-15,B- -Alexander Howard PhD,Male,2840,1970-07-28,AB+ -Angela Mcgee,Female,2841,1934-03-30,AB- -Megan Gallegos,Female,2842,1957-04-05,A- -Brent Rodriguez,Male,2843,1946-10-24,B+ -Diana Sanchez,Male,2844,1959-09-03,B+ -Lawrence Collins,Female,2845,1940-03-05,O- -Jay Smith,Female,2846,1942-04-09,B- -Emily Bright,Female,2847,1996-06-25,A+ -Luke Baker DDS,Male,2848,1947-12-06,B- -Jerry Ochoa,Male,2849,1981-02-19,A+ -Lisa Raymond,Female,2850,1943-03-31,A+ -Angela Smith,Male,2851,1951-03-30,AB- -Dana Rhodes,Male,2852,1959-11-05,A+ -Jeremy Jones DDS,Male,2853,1993-06-16,O+ -John Lewis,Male,2854,1995-10-09,B+ -John Smith,Female,2855,1951-11-20,A- -Elizabeth Reilly,Male,2856,1991-04-22,AB+ -Lisa Mann,Female,2857,1945-03-05,B- -Sylvia Grimes,Male,2858,1999-10-02,AB+ -Elizabeth Martin,Female,2859,1992-04-05,A- -Brian Rodriguez,Female,2860,2002-10-15,O- -Richard Hammond,Male,2861,1997-12-12,A- -Michael Thomas,Female,2862,1970-08-07,B- -Rebecca Sexton,Female,2863,1995-01-24,B+ -Danielle Shannon,Female,2864,1973-12-13,AB+ -Jon Schultz,Male,2865,1936-07-13,AB+ -Lauren Morales,Female,2866,1969-03-05,AB- -Randall Baker,Female,2867,1986-07-18,AB- -Gerald Rodriguez,Female,2868,1931-11-03,A- -Laurie Lamb,Female,2869,1930-06-13,A- -Amanda Williams,Female,2870,1953-09-13,O- -Jeffery Johnson,Female,2871,1960-10-04,A+ -Daniel Decker,Male,2872,1987-06-07,B- -Molly Mitchell,Female,2873,1943-02-17,AB- -Robert Conley,Male,2874,1959-02-12,B- -Megan Rogers,Male,2875,1943-02-20,O- -Adam Cooper,Female,2876,1991-05-21,AB- -Crystal Lang,Female,2877,1981-04-22,AB- -Charles Fowler,Male,2878,1990-12-23,A+ -Jonathan Lynch,Female,2879,1996-08-27,B- -Jessica Sanchez,Male,2880,1959-06-07,B+ -Valerie Simpson,Female,2881,1945-12-15,B- -Ricky Mccarthy,Female,2883,1998-10-12,B- -Greg Kane,Female,2884,1942-12-03,A+ -Linda Curtis,Female,2885,1931-08-17,AB- -Jay Walker,Male,2886,1988-02-09,O- -Timothy Gillespie,Female,2887,1950-03-31,B- -Danielle Williams,Male,2888,1968-06-26,AB+ -Dalton Brooks,Female,2889,2001-04-13,B+ -Barbara Sanders,Male,2890,1984-06-03,B+ -Wayne Wallace,Female,2891,1991-09-26,A+ -Matthew Ramirez Jr.,Female,2892,1959-02-14,O+ -Victoria Moore,Female,2893,1982-03-05,O- -Jessica Archer,Female,2894,1986-05-11,AB+ -Benjamin Martin,Female,2895,1930-01-17,B- -Jennifer Obrien,Female,2896,1938-09-27,O+ -Thomas Griffith,Male,2897,1931-01-28,O- -Kathleen Roman,Female,2898,1998-06-13,A+ -Christina Carlson,Female,2899,1947-03-05,O+ -Leah Scott,Female,2900,1976-06-03,AB- -Nicole Edwards,Female,2901,1939-12-11,A- -Jennifer Thompson,Female,2902,1946-11-25,O+ -Kristie Hall,Male,2903,1955-07-01,A- -Louis Coleman,Female,2904,1994-07-05,B+ -Sharon Baker,Female,2905,1997-12-12,AB+ -Cassidy Cooper,Male,2906,1985-07-12,O- -Shawn Cline,Male,2907,1997-02-05,AB+ -Laura Mckinney,Female,2908,1981-02-05,AB+ -Javier Sanford,Female,2909,1999-06-12,B- -Daniel Stevens,Male,2910,1995-04-05,A+ -Ryan Smith,Female,2911,1954-05-21,O+ -Kimberly Allen,Male,2912,1976-12-24,O- -Richard Porter,Female,2913,1993-08-31,B+ -Brian Rodgers,Male,2914,1981-01-04,AB- -Julia Powell,Male,2915,1994-04-07,A+ -Yolanda Ramirez,Female,2916,1975-01-27,A+ -Diane Williams,Female,2917,1952-02-15,O- -Bryan Wilkinson,Male,2918,1949-06-09,A+ -Adam Thompson,Female,2919,1985-08-10,B- -Todd Murphy,Male,2920,1999-08-18,A+ -Thomas Perez DDS,Male,2921,1994-12-15,B+ -Jessica Chavez,Female,2922,1970-11-03,B+ -Angela Howard,Female,2923,1949-05-24,B- -Emily Harris,Male,2924,1991-12-01,O+ -Brian Jenkins,Male,2925,1955-04-03,O+ -Michael Daniels,Male,2926,1943-07-12,AB+ -David Payne,Female,2927,1983-10-25,B+ -Brandon Fitzpatrick,Male,2928,1939-06-19,B- -Mr. Richard Johnson,Male,2929,1951-04-29,AB- -Ashley Miller,Male,2930,1998-05-27,O+ -Denise Williams,Female,2931,1995-10-21,A+ -Douglas Hill,Male,2932,1937-06-04,O- -Patricia Chan,Male,2933,1960-11-19,O- -Scott Morrison,Male,2934,1979-06-05,A- -Maria Clark,Male,2935,1975-04-06,B+ -Jerome May,Female,2936,1992-06-08,B- -Richard Stone,Female,2937,1963-02-06,AB- -Patrick Wall,Female,2938,1957-10-08,AB+ -Dr. Terry Austin DDS,Male,2939,1975-11-10,A+ -Maria Smith,Female,2940,1972-09-04,B- -Nicole Rush,Female,2941,1957-01-05,A- -David Page,Female,2942,1942-05-29,O- -Matthew Nelson,Female,2943,1964-09-25,B- -Joshua Braun,Female,2944,1944-08-05,A+ -Michelle Hess,Female,2945,1945-02-01,AB- -Michael Drake,Female,2946,1998-10-29,B+ -Michele Mann,Male,2947,1954-07-18,AB- -Christina Moore,Male,2948,1947-10-12,O+ -Nicolas Shah,Male,2949,2002-11-12,A+ -Lori Garcia,Female,2950,1959-06-17,A- -David Zhang,Male,2951,1944-11-22,O+ -Brett Key,Male,2953,1969-08-17,O+ -Ashlee Larson,Female,2954,1956-09-26,O+ -James Carlson Jr.,Female,2956,1966-05-11,B- -Alejandro Perkins,Male,2957,1947-10-30,A- -Sherry Copeland,Female,2958,1961-06-10,O- -Robert Maldonado,Female,2959,1995-05-28,AB- -Miss Maria Bates DDS,Female,2960,1978-04-09,B+ -Marvin Underwood Jr.,Male,2961,1985-05-15,B- -Mary Ware,Male,2962,1998-04-09,O- -Seth Johnson,Male,2963,1936-07-04,AB- -Jessica Murray,Male,2964,1983-02-05,B+ -Kimberly Patel,Female,2965,1999-12-03,A- -Ricardo Roth,Male,2966,1962-05-17,B+ -John Valentine,Female,2967,1979-11-11,A- -Angel Grant,Female,2968,1949-02-09,A+ -Andrew Watson,Male,2969,2001-09-14,B+ -William Murray,Male,2970,1956-12-02,AB- -David Marquez,Female,2971,1964-03-27,AB- -Melanie Hendrix,Male,2972,1998-04-27,A- -Jordan Thomas,Male,2973,1986-08-04,AB- -Gregory Baker,Male,2974,1948-12-02,AB+ -Amy Soto,Male,2975,1998-04-19,A+ -Kevin Bryant,Male,2976,1968-07-29,B- -Sheila Martinez,Male,2977,1936-01-06,B+ -Mary Anderson,Female,2978,1985-02-12,B- -Jason Rivera,Female,2979,1999-01-26,O- -Stephanie Rodriguez,Male,2980,1946-05-15,B- -Sydney Moore,Female,2981,1990-03-18,O+ -Alexa Phelps,Male,2982,1976-12-18,AB- -Edwin Valenzuela,Male,2983,1932-02-20,B- -Victoria Mills,Male,2984,1957-02-16,O- -Carol Martin,Male,2985,1947-04-05,O- -Justin Gallagher,Female,2986,1970-03-18,O+ -Terri Lewis,Male,2988,1940-11-27,O- -Seth Woods,Female,2989,1956-01-08,A- -Jamie Coleman,Female,2990,1998-09-19,AB+ -Deborah Benson,Female,2991,1976-04-14,A- -Michael Martin,Male,2992,1965-10-14,AB- -Christopher Meyer,Male,2993,1999-11-06,AB- -Mathew Martin,Male,2994,1995-08-01,AB- -Maurice Garcia,Male,2995,1963-06-29,A+ -Stephen Ward,Male,2996,1990-09-11,B- -Brandy Walters,Male,2997,1942-07-20,AB+ -Lynn Dixon,Male,2998,1946-04-13,B- -Sherry Aguirre,Male,2999,1988-05-21,AB+ -Victor Fox,Female,3000,1992-01-07,B- -Mr. Randy Pierce,Male,3001,1974-11-03,O+ -Lori Robertson,Male,3002,1949-07-08,B+ -Brittany Reed,Female,3003,1962-07-21,A- -Travis Miller,Female,3004,1963-08-11,O- -Joshua Jackson,Female,3005,1936-09-27,O- -Nicholas Garrett,Male,3006,1969-02-16,A- -Bridget Velazquez,Male,3007,1968-06-06,O+ -Holly Pierce,Female,3008,1961-04-23,AB+ -Linda Robinson,Male,3009,1931-11-17,A- -Jennifer Houston,Female,3010,1980-10-09,A+ -Kelly Johnson,Female,3013,1994-02-09,AB+ -Toni Jackson,Female,3014,1963-07-25,O- -Seth Smith,Male,3015,2001-07-30,A+ -Michael Murray DDS,Female,3016,1989-06-25,B- -Alexander Woods,Male,3017,1973-10-12,A+ -Jeremy Hubbard,Female,3018,1974-12-18,AB+ -Pamela Ayers,Female,3019,1959-05-25,O+ -Caitlin Diaz,Female,3020,1943-05-08,B- -Paula Dean,Female,3021,1978-04-19,AB+ -Lori Parrish,Female,3022,1960-08-13,B- -Martin Jordan,Female,3023,1995-12-07,A+ -Brandy Brown,Female,3024,1936-01-06,O- -Jorge Wells,Female,3025,1949-08-14,AB+ -Mario Smith,Male,3026,1973-10-19,B+ -Zachary Marshall,Female,3027,1968-12-02,O+ -Todd Harris,Male,3028,1930-10-29,B+ -Michelle Nichols,Male,3029,1995-06-20,B+ -Sharon Jones,Male,3030,1992-04-30,A- -Cynthia Valencia,Female,3031,1976-08-17,A+ -John Davis,Male,3033,1969-11-23,AB+ -Mia Travis,Male,3034,1957-03-31,O+ -Mrs. Kimberly Hogan DDS,Male,3035,1998-12-03,AB+ -Rachel Schroeder,Male,3036,1999-02-05,A+ -Jackie Fuller,Male,3037,1986-09-18,AB+ -Mr. John Mcpherson,Male,3038,2001-01-12,B- -Tina Ibarra,Female,3039,1959-07-01,A+ -Caitlin Bartlett,Male,3040,1994-01-12,AB+ -Brandon Hudson,Female,3041,1974-03-11,A- -Keith Smith,Female,3042,1984-07-17,O- -Maureen Osborne,Male,3043,1965-10-01,AB+ -Jennifer Roberts,Male,3044,1964-03-23,B- -Wendy Sanchez,Male,3045,1987-05-04,O+ -Christopher Carpenter,Male,3046,1992-11-14,A- -Maria Anderson,Male,3047,1998-01-22,O+ -Isabella Fisher,Male,3048,1973-08-04,B+ -Andrea Lloyd,Female,3049,1962-07-02,A- -Crystal Ramos,Male,3050,2001-05-10,O+ -Nicole Mcfarland,Male,3051,1941-03-06,O- -Crystal Coleman,Female,3052,1967-07-24,B- -Susan Tate,Male,3053,1986-04-24,B+ -Mary Harper,Male,3054,1998-07-19,A+ -Heather Richmond,Male,3055,1958-10-18,O+ -Tamara Suarez,Male,3056,1940-04-12,A- -Edward Johnson,Female,3057,1934-09-21,B- -Jacqueline Cooper,Male,3058,1933-10-08,AB+ -Ms. Debra Ramirez,Male,3059,1953-11-02,O- -Tracey Moon,Female,3060,1954-05-09,B- -John Stark,Female,3061,1979-05-21,B- -Richard Erickson,Female,3062,1980-07-07,A+ -William Vance,Male,3063,1974-12-02,B- -William Butler,Male,3064,1981-08-05,A+ -Paul Spencer,Male,3065,1946-03-24,O- -Thomas Cabrera,Female,3066,1947-02-12,O- -Tyler Koch,Male,3067,1956-01-01,AB+ -John Manning,Male,3068,1994-10-31,A+ -Elizabeth Coleman,Male,3069,1939-01-14,A+ -Gloria Larson,Male,3070,1992-01-19,O+ -David Curry,Male,3071,1953-06-02,O+ -Shelby Gardner,Female,3072,1994-12-28,AB+ -Jessica Molina,Male,3073,1940-03-16,O- -Jeffrey Rodgers,Male,3074,1992-01-12,AB- -Rachel Gutierrez,Male,3075,1991-04-10,O+ -Kimberly Martin,Female,3076,2000-10-20,B- -Anthony Flores,Female,3077,1976-04-07,O- -Andrew Nunez,Female,3078,1976-02-01,AB- -Jessica Hubbard,Female,3079,1946-06-25,B+ -Sean Miller,Female,3080,1972-05-03,B- -Sarah Mcintosh,Male,3081,1989-06-27,A- -Jacqueline Meza,Male,3082,1957-07-05,A+ -Brandy Wilkins,Male,3083,1996-11-07,O- -Luke Lee,Female,3085,1962-03-08,A- -Bryan Newton,Female,3086,1936-11-25,AB+ -Michael Simmons,Female,3088,1938-06-09,A+ -Kaitlin Miller,Female,3089,1933-11-29,A+ -Dawn Mullins,Female,3090,1940-11-11,B- -Matthew Davidson,Female,3091,1947-08-25,A- -Christine Rocha,Male,3092,1969-11-18,A+ -Robert Clark,Female,3093,1968-06-12,O+ -Matthew Jones,Female,3094,1999-10-24,O- -Michele Moore,Male,3095,1961-01-07,O+ -Scott Day,Male,3096,1935-11-30,B- -Cody Thomas,Female,3097,1944-01-20,AB- -Cody Green DDS,Female,3098,1981-10-31,B+ -Kristen Smith,Male,3099,1983-01-06,B- -Timothy Perez,Male,3100,1970-11-20,O- -Carl Mccann,Female,3101,1958-09-04,A+ -Scott Cruz,Female,3102,1982-02-10,A- -Amanda Harrell,Male,3103,1998-02-22,A- -Jeffrey Wilkerson,Female,3104,1959-08-02,AB+ -Edward Vargas,Male,3105,1938-06-11,B- -Mr. Hayden Rubio,Male,3106,1977-09-12,O- -Jessica Estes DVM,Male,3107,1968-03-06,AB+ -Jenny Welch,Male,3108,1984-05-30,A+ -Lisa Lester,Female,3109,1950-10-27,AB- -Brandon Curtis,Female,3110,1995-07-07,B- -Dr. Robert Sherman MD,Female,3111,1972-02-09,AB- -Stephanie Bradshaw,Female,3112,1982-01-26,O- -Tracey Carroll,Male,3113,1940-11-27,AB- -Mr. Samuel Elliott,Male,3114,1934-11-14,AB- -Christopher Jones,Female,3115,1996-06-29,O- -Joshua Barrera,Male,3116,1943-12-29,O- -Mark Simpson,Male,3117,1989-01-24,B- -Lucas Buchanan,Male,3118,1963-02-04,AB- -Brianna Christensen,Female,3119,1995-01-22,AB+ -Julie Spencer DDS,Male,3120,1977-12-08,B+ -Nicole Hernandez,Male,3121,1976-10-07,O- -Rachel Myers,Male,3122,1935-12-20,A+ -Michael Barnett,Male,3123,1956-04-10,AB- -Margaret Dean,Female,3124,1944-05-18,O- -Samantha Knight,Female,3125,1955-04-15,AB+ -Sara Ford,Female,3126,1980-02-21,A- -Donna Davis,Male,3127,1970-09-19,B- -Nicole Shea,Male,3128,1932-10-10,AB- -Gary Robinson,Female,3129,1975-06-24,A- -Gina Davidson,Female,3130,1994-11-26,O- -Travis Clark,Female,3131,1935-01-03,O- -Julia Gonzalez,Female,3132,1951-08-28,A+ -Cassandra Short,Female,3133,1945-04-20,A+ -Troy Walker,Male,3134,1965-11-22,AB- -Sally Franklin,Male,3135,1935-07-17,A- -Jennifer Yu,Male,3136,1988-06-15,B+ -Samantha Bailey,Male,3137,1969-10-20,A- -Belinda Sanchez,Female,3138,2002-12-30,O- -Margaret Anderson,Female,3139,1946-02-17,B+ -Savannah Phillips,Female,3140,1932-12-16,AB- -Ashley Tran,Male,3141,1943-10-16,O- -Haley Cummings,Female,3142,1972-02-09,A+ -Jennifer Martinez DDS,Male,3143,1959-08-19,AB+ -Julia Johnson,Male,3144,1937-01-07,O+ -Linda Bean,Female,3145,1939-01-06,B+ -Jeffrey Bradford,Male,3146,1939-10-27,O+ -Ashley Novak,Female,3147,1974-01-17,O- -Lauren Myers,Female,3148,1974-01-30,A- -Jack Benton,Female,3149,1986-12-28,A+ -Gary Smith,Female,3150,1993-08-03,B- -Derrick Gonzalez,Male,3151,1948-03-10,B- -Erika Whitehead,Male,3152,1940-11-03,O+ -Jackson Williams,Female,3153,1960-02-18,AB+ -Michelle Powers,Female,3154,1959-07-03,O+ -Bailey Rich,Male,3155,1930-06-11,O- -Anthony Freeman,Female,3156,1973-11-20,AB+ -Joseph Collins,Male,3157,1976-06-25,B- -Lee Murray,Male,3158,1968-12-13,A- -Kimberly Romero,Female,3159,1960-07-16,A+ -Zachary Mccormick,Male,3160,1963-01-28,B+ -Thomas Peck,Female,3161,1939-04-14,A+ -Joseph Foster,Male,3162,1946-06-03,O- -Karen Jenkins,Female,3163,1992-04-03,O+ -Alexandria Nelson,Male,3164,1964-10-02,O- -Patrick Haley,Male,3165,1976-09-03,B+ -Mark Burke,Male,3166,1955-07-13,A+ -Bradley Day,Male,3167,1931-06-26,B+ -Melissa Clayton,Female,3168,1989-09-25,B- -Erika Phelps,Female,3169,1943-12-12,A+ -Samantha Sanchez,Male,3170,1966-10-07,AB+ -Eric Dixon,Male,3171,1960-07-28,A- -Isabel Lawson,Male,3172,1977-03-26,B+ -Stephen Jones,Female,3173,1973-12-24,A- -Taylor Young,Male,3174,1958-02-01,AB- -Karl Mason,Female,3175,1998-06-20,A+ -Jasmine Wilkerson,Female,3176,1973-12-05,A+ -Todd Rangel,Female,3177,1944-12-22,A- -Dr. Richard Thompson,Female,3179,1947-02-17,AB- -Robert Lopez,Male,3180,2000-08-03,AB+ -Holly Sanford,Male,3181,1959-05-09,O+ -Deborah Douglas,Male,3182,1933-03-15,B+ -Kellie Mcdonald,Male,3183,1932-04-10,B+ -Karen Faulkner,Male,3184,1934-07-10,A+ -Anne Mcdaniel,Male,3185,1977-12-20,A- -William Hansen,Female,3186,1982-07-21,O- -Johnny Harrison,Male,3187,1998-08-03,A+ -Elizabeth Anderson,Male,3188,1956-01-23,O- -Amanda Lee,Male,3189,1966-04-20,AB+ -Timothy Williamson,Female,3190,1974-04-24,A+ -Julie Hobbs,Male,3191,1932-10-16,B+ -Tracey Ford,Male,3192,1989-03-13,A- -Pamela Howard,Female,3193,1957-06-16,AB+ -Shawn Guerrero,Male,3194,1964-01-31,AB+ -James Dominguez,Male,3195,1964-03-08,O+ -Michelle Ray,Female,3196,1933-07-07,A+ -Sandra Smith,Female,3197,1976-08-30,O- -Joseph Weaver,Female,3198,1980-05-12,O- -Miss Danielle Boyd DVM,Male,3199,1998-05-18,A+ -Melissa Malone,Female,3200,1934-09-30,AB- -Tara Wong,Female,3201,1980-09-04,O+ -Amy Molina,Male,3202,1980-10-20,O+ -Brian Cooper,Male,3203,1997-06-28,O+ -Larry Armstrong,Female,3204,1974-06-09,O- -Ashley Marquez,Male,3205,1969-08-16,AB+ -William Mathews,Male,3206,1965-04-16,A- -Kristine Miller,Female,3207,1939-07-04,AB- -Laura Walker,Male,3208,1954-09-20,B+ -Tonya Wilkinson,Male,3209,1990-04-04,O+ -Andrew Webb,Female,3210,1998-08-27,O- -Kathleen Lee,Female,3211,1952-10-21,O- -Brooke Cox,Female,3212,1935-09-29,B+ -Joshua Davis,Female,3213,1968-07-22,AB+ -Amanda Cox,Male,3214,1988-09-25,B+ -Alan Fields,Male,3215,1968-02-21,A+ -Angela Baker,Male,3216,1957-08-04,A+ -Ruth Galloway,Male,3217,1947-07-08,A- -Regina Stevens,Female,3218,1937-07-20,B+ -Jessica Carrillo,Male,3219,1985-08-04,A- -Christine Hahn,Female,3220,1997-04-09,O+ -Laura Moss,Female,3221,1980-01-23,A- -Arthur Hicks,Female,3222,1982-01-02,O+ -Amanda Harris,Male,3223,1993-10-01,AB- -Jim Spencer,Male,3224,1978-10-29,A- -Dawn Johnson,Male,3225,1998-10-13,AB+ -Amber Stout,Female,3226,1943-09-27,O+ -Kayla Pineda,Female,3227,1974-10-27,AB+ -Christine Thornton,Male,3228,1951-11-26,O- -Darin Manning,Female,3229,1991-06-06,O+ -Mary Thomas,Male,3230,1957-11-30,O- -Kelsey Williamson,Male,3231,1935-09-28,B- -Nicole Wells,Female,3232,1972-04-03,AB+ -Stephanie Kim,Male,3233,1999-03-19,B- -Sandra Maynard,Female,3234,1992-05-23,O+ -Jason Davis,Female,3235,1959-01-04,O- -Heather Nguyen,Male,3236,1973-08-24,O+ -Kimberly King,Male,3237,2001-09-26,B- -Christine Jordan,Female,3238,1983-12-24,B+ -Phillip Jones,Male,3239,1971-04-14,B+ -Jacob Smith,Male,3240,1995-04-16,O+ -Kayla Lambert,Female,3241,1943-12-24,AB- -Debra Hunter,Male,3242,1983-01-05,A+ -Jason Perry,Female,3243,1937-10-10,B- -Duane Hayes,Female,3244,1939-04-08,O+ -Emily Swanson,Male,3245,1959-09-17,O- -David Rodriguez,Male,3246,1957-07-11,O+ -Allison Gallegos,Female,3247,1966-12-11,B+ -James Perez,Male,3248,1976-09-25,O- -Richard Mack,Female,3249,1968-09-17,A+ -Heather Middleton,Male,3250,1950-08-15,O+ -Jason Robinson,Female,3251,1941-09-23,A- -Heather Strong,Female,3252,1951-03-08,B+ -Ashley Bradley,Male,3253,1951-02-10,A- -Erika Johnson,Male,3254,1934-06-08,A+ -Austin Davies,Female,3255,1968-04-06,B- -Roy Beck,Female,3256,1965-02-21,O- -Jennifer Lawrence,Female,3257,1993-08-30,A- -Mariah Smith,Male,3258,1971-10-14,AB- -Jonathan Vargas,Female,3259,1933-12-02,B- -Michael Stephens,Male,3260,1954-10-29,O- -Amanda Bryan,Male,3261,1942-11-27,B+ -Steve Lindsey,Male,3262,1956-03-02,B+ -Shannon Long,Male,3263,1955-11-01,B+ -Gina Johnston MD,Male,3264,1943-09-08,A+ -April Wilkerson,Male,3265,1930-06-12,A- -Jason Miller,Male,3266,1935-05-29,B+ -Cody Ibarra,Female,3267,1983-11-14,AB+ -Rebekah Martin,Female,3268,1953-03-02,B+ -Leslie Williams,Female,3269,1976-08-02,O+ -Amanda Reynolds,Female,3270,1977-05-03,A+ -Annette Joseph,Male,3271,1935-07-08,O- -Benjamin Harrison,Male,3272,1956-12-03,O- -David Carter,Male,3273,1951-08-15,O- -Stephen Browning,Female,3274,1930-07-24,O- -Antonio Drake,Female,3275,1976-06-13,O+ -Thomas Clark,Male,3276,1990-05-25,B- -Cathy Terrell,Male,3277,1954-09-24,AB- -Jason Simmons,Male,3278,1944-08-22,AB+ -Michael Harper,Male,3279,2001-12-29,O+ -Zachary Hicks,Male,3280,1937-03-28,O- -Nicholas Brown,Female,3281,1951-12-14,O+ -Tommy Barry,Male,3282,1981-02-23,A+ -Dr. Sonia Martinez,Male,3283,1977-04-02,AB- -Matthew Davis,Male,3284,1945-03-23,O- -Kevin Daniel,Female,3285,1973-07-06,AB+ -Katherine Harper,Male,3286,1969-10-14,O- -Tony Mckinney,Female,3287,1976-09-29,AB- -Tyler Jackson,Female,3288,1940-12-14,AB+ -Rhonda Baxter,Male,3289,2001-03-07,AB- -Michael Solis,Male,3290,1969-02-14,AB+ -Patrick Schultz,Female,3291,1976-09-11,B- -Kimberly Russell,Female,3292,1951-09-15,A- -Elizabeth Fernandez,Female,3293,1972-08-10,B- -Erin Jackson,Female,3294,1933-03-17,O+ -Stacy Douglas,Male,3295,1990-03-02,O+ -Zachary Merritt,Female,3296,1962-08-19,B+ -Christopher Gentry,Male,3297,1955-01-05,AB+ -Jordan Howe,Male,3298,1947-05-14,B+ -William Simmons,Female,3299,1978-10-29,B+ -Terry Jones,Female,3300,1962-08-30,O- -Kaitlyn Holmes,Female,3301,1936-12-14,A- -Rickey Payne,Female,3302,1940-11-03,A+ -Douglas White,Female,3303,1966-02-04,A+ -Angela Bowers,Male,3304,1992-01-25,O- -Grant Munoz,Female,3305,1944-11-15,O- -Lucas Miller,Male,3306,1986-07-10,B- -Jacob Miller,Female,3307,1981-04-28,A+ -Casey Navarro,Male,3308,1991-09-26,AB+ -Joshua King,Male,3309,1984-11-27,AB- -Jesse Gay,Female,3310,1934-10-20,B+ -Pamela Nguyen,Male,3311,1997-01-13,O+ -Susan Horne,Female,3312,1980-03-01,B+ -Matthew Pennington,Female,3313,1998-04-20,B+ -Katie Shannon,Male,3314,1991-03-22,AB- -Matthew Campbell,Female,3316,1957-09-19,B- -Henry Benson,Male,3317,1974-11-02,A+ -Jennifer Ellis,Male,3318,1948-01-15,B+ -Ryan Salazar,Female,3319,1998-06-13,A- -Timothy Green,Female,3320,1947-04-06,O- -Sharon Cain,Male,3321,1950-02-10,A- -Brianna Garcia MD,Male,3322,1996-06-02,A- -Aaron Frank,Female,3323,1999-09-26,A+ -Craig Davidson,Female,3324,1993-01-07,AB+ -Angela Ortiz,Female,3325,1972-01-13,B- -Jason Mendez,Female,3326,1931-08-21,B+ -Ronald Smith,Male,3327,1983-03-30,B+ -Carly Henderson,Male,3328,1936-05-25,B+ -Shawn Watson,Female,3329,1957-01-18,O- -Jason Rodriguez,Male,3330,1931-07-27,AB- -Emily Phillips,Male,3331,1950-08-05,AB+ -Kim Franklin,Male,3332,1946-11-24,AB- -Jordan Munoz,Male,3333,1994-04-16,O+ -Jose Hawkins,Female,3334,1980-07-31,B- -Dr. Donald Ferguson,Male,3335,1968-04-23,AB+ -Joel Kelly,Male,3336,1992-11-01,AB+ -Mark Reid,Male,3337,1962-06-23,B+ -Charles Harris,Male,3338,1964-02-16,AB- -Cole Woodward,Male,3339,1987-07-09,O- -Bradley Leonard,Male,3340,1934-06-22,O+ -Cheryl Burke,Male,3341,1979-01-05,B+ -Jamie Castro,Male,3342,1964-03-08,B+ -Mr. Jared Bell,Female,3343,1959-09-15,B+ -Randall Callahan,Male,3344,1939-12-28,AB- -Catherine Potter,Female,3345,1971-07-22,AB+ -Brian Torres,Female,3346,1965-12-23,B- -Brett Jordan,Female,3347,1979-01-25,AB+ -Samantha Munoz,Female,3348,1969-04-23,A+ -Karen Newman,Male,3349,1966-08-08,B- -Jason Eaton,Female,3350,1938-08-04,B+ -Lisa Miller,Female,3351,1993-12-25,B- -Patricia Clark,Female,3352,1930-04-08,AB+ -Jeremy Gutierrez,Male,3353,1961-03-26,O- -Ross Lee,Female,3354,1964-10-31,B+ -Elizabeth Figueroa,Male,3355,1965-05-21,B- -Robert Phillips,Female,3356,1940-04-08,A+ -Todd Rodgers,Male,3357,1953-05-15,AB- -Jessica Miller,Female,3358,1997-03-28,O- -Robert Long,Female,3359,1997-01-16,O- -Jennifer Fischer,Female,3360,1989-09-05,O- -Crystal Simpson,Male,3361,1942-10-11,B- -Scott Burch,Male,3362,1973-10-31,O- -Daniel Collins,Female,3363,1976-07-12,AB+ -John Huffman,Female,3364,1934-09-24,O- -Raven Lucas,Male,3365,1935-01-29,A+ -Melissa Perkins DVM,Female,3366,1959-07-28,B+ -Anthony Jones,Male,3368,1943-11-04,B+ -Stephanie Knox,Female,3369,1958-02-14,O+ -Sharon Rose,Male,3370,1981-03-22,A+ -Wayne Tran,Male,3371,1965-02-05,B- -Cheryl Frazier,Female,3372,1955-08-27,O- -Heather Taylor,Male,3373,1955-06-02,O- -Michael Burton,Female,3374,1966-01-23,AB+ -Alexis Bailey,Female,3375,1945-10-23,AB- -Victoria Lawrence,Male,3376,1947-11-07,O- -James Villanueva,Female,3377,1960-01-27,A- -Brittany Randall,Female,3378,1979-08-25,A+ -Timothy Hill,Male,3379,1970-11-26,B- -Pamela Rice,Male,3380,1932-02-21,B+ -Rachel Alvarez,Male,3381,1974-07-31,O+ -Daniel Moore,Female,3382,1995-07-11,O- -John Brown,Male,3383,1948-09-06,O+ -Emily Young,Female,3384,1980-08-15,O- -Donald Ramsey,Female,3385,1985-06-12,B- -John Harper,Female,3386,1949-09-11,AB- -Jacqueline Harvey,Female,3387,1988-06-25,A+ -Michael King,Male,3388,1935-10-15,B+ -Richard Mason,Female,3389,1974-07-29,B- -Christian Robertson,Male,3390,1990-12-15,O+ -Mr. William Bentley Jr.,Male,3391,1967-02-21,O- -Susan Watkins,Male,3392,1985-09-23,O+ -Carol Allen,Female,3393,1957-11-18,A+ -Ann Morgan,Male,3394,2000-03-17,A- -Aaron Patel,Female,3395,1994-09-30,B+ -Elizabeth Johnson,Female,3396,1979-03-06,B- -James Kerr,Female,3397,1955-03-14,O+ -Jennifer Stewart,Male,3398,1981-01-31,O+ -Roger Curry,Female,3399,1988-03-10,A+ -Jennifer Sutton,Male,3400,1973-03-31,A- -Alex Patel,Female,3401,2002-04-03,O- -Derek Sims,Female,3402,1993-04-28,A- -Lisa Davis,Male,3403,1981-07-02,O+ -Javier Green,Male,3404,1966-12-07,A+ -Derek Elliott,Female,3405,1945-03-09,O- -Joyce Ramirez,Female,3406,1948-10-05,A- -Tara Morris,Male,3407,1936-12-26,B+ -Joseph Woods,Female,3408,1947-07-22,A- -David Taylor,Male,3409,1974-11-17,B+ -Pamela Garcia,Male,3410,1996-12-31,A- -Dawn Hawkins,Male,3411,1981-11-08,AB- -Cory Williams,Female,3412,1931-04-21,O- -Stacy Moody,Female,3413,1989-09-08,A- -Gabriel Rodriguez,Male,3414,1958-06-26,AB- -Danny Scott,Female,3415,1998-08-12,B- -Kenneth Garcia,Male,3416,1949-10-27,A+ -Diane Martinez,Male,3417,1948-05-16,A- -Kathryn Mitchell,Female,3418,1988-07-19,B+ -Rebekah Thomas,Male,3419,1987-08-08,O- -Marissa French,Male,3420,1952-02-13,B+ -Nicole Bradley,Female,3421,1991-06-17,AB- -Jo Reyes,Male,3422,1936-04-04,AB- -Thomas Gonzales,Male,3423,1944-04-20,B- -George Day,Female,3424,1967-01-08,B+ -Victoria Fleming,Female,3426,1970-10-07,AB+ -Felicia Casey MD,Male,3427,1949-02-01,A+ -Julian Savage,Female,3428,1984-07-05,B+ -Scott Barr,Male,3429,1961-07-28,AB+ -Lisa Wong,Female,3430,1970-04-22,O- -Melissa Weaver,Female,3431,1982-08-02,A+ -Carlos Floyd,Male,3432,1943-07-15,B+ -Vanessa Morgan,Male,3433,1947-11-18,B- -Russell Elliott,Female,3434,1960-06-08,O- -Terry Gonzalez,Male,3435,1930-09-16,A+ -Richard Kline,Female,3436,1930-10-10,B+ -Julia Stuart,Female,3437,1968-02-28,B+ -Amanda Garza,Male,3438,1935-03-14,A+ -Patrick Rodriguez,Female,3439,1941-04-28,AB+ -Marc Ellis,Male,3440,1948-02-25,O- -Diane Knight,Male,3441,1960-07-30,B- -Alison Kennedy,Female,3442,1983-08-15,B- -Jacqueline Cisneros,Female,3443,1988-11-06,O- -Heather Garcia,Male,3444,1994-06-25,O- -Evan Graham,Male,3445,1931-09-05,AB- -Tiffany Hines,Female,3446,1968-11-20,O+ -Miranda White,Female,3447,1976-09-27,B+ -Thomas Klein,Male,3448,1984-12-17,AB+ -Lisa Owens,Female,3449,1998-12-18,O- -Dana Hall,Male,3450,1936-04-26,O- -Amanda Levy,Male,3451,1949-07-13,O+ -Heather Lewis,Female,3452,1960-09-05,O+ -Harold Molina,Female,3453,1992-09-05,A+ -Diamond Andrews,Male,3454,2002-03-01,A- -Scott Hunt,Female,3455,1946-03-04,B- -Ricardo Reyes,Male,3456,1937-02-04,AB+ -Debra Hamilton,Male,3457,1971-06-24,A+ -Catherine Cohen,Male,3458,1963-04-08,O- -Daniel Jennings,Male,3459,1949-09-01,B+ -Oscar Allen,Male,3460,1989-03-24,O+ -Ronald Estes,Female,3461,1998-11-10,AB- -Carol Steele,Female,3462,1957-08-29,B- -Wesley Rogers,Male,3463,1988-11-04,A+ -Mrs. Donna Bishop,Male,3464,1984-09-22,AB- -Curtis Tran,Male,3465,1976-09-09,B- -Charles Winters,Female,3466,1986-10-22,A- -Willie Brewer,Male,3467,1994-12-04,A- -Laura Rodriguez,Female,3468,1933-07-07,AB- -Kaitlin Khan,Female,3469,1932-07-12,O+ -Morgan Flores,Female,3470,1933-01-30,A+ -David Johnson,Male,3471,1934-03-10,A+ -Brian Lee,Male,3472,2001-08-26,A- -Jessica Haynes,Male,3473,1953-02-07,B- -Sandra Leonard,Female,3474,1985-01-07,AB- -Vincent Mason,Female,3475,1974-03-25,O+ -Joshua Banks,Female,3476,1951-12-01,O- -Jessica Wolf,Male,3477,1956-09-13,A+ -Joseph Thompson,Male,3478,1992-01-14,B+ -Laurie Gonzalez,Female,3479,1959-01-01,O- -Janice Mccall,Male,3480,1940-07-31,O+ -Betty Sandoval,Female,3481,2002-08-06,A- -Michael Booth,Female,3482,1996-04-21,B+ -Eric Rojas,Female,3483,1993-06-11,A+ -David Oconnell,Female,3484,1930-08-15,A+ -Kristy Palmer,Male,3485,1971-03-03,AB- -Katie Hernandez,Female,3486,1962-02-21,B+ -Kevin Contreras,Male,3487,1975-08-01,O- -Amanda Daniels,Female,3488,1956-04-01,A- -Gerald Johnson,Female,3489,1962-03-03,AB- -Travis Golden,Male,3491,1931-10-08,AB+ -Scott Williams,Female,3492,1974-08-17,O- -Steven Owen DDS,Male,3493,1995-07-07,O- -Margaret Steele,Male,3494,1990-02-08,AB+ -Albert Gordon,Female,3495,1983-01-17,O+ -Dylan Parks,Female,3496,1967-06-11,B+ -Craig Howard,Male,3497,2002-06-27,B+ -Paul Jones,Female,3498,1981-09-18,O+ -Brenda Norton,Female,3499,1960-01-08,A+ -Paul Thompson,Male,3500,1974-01-17,B- -Theresa Douglas,Female,3501,1967-01-24,AB- -Paige Hunt,Male,3502,1966-05-01,B- -David Garcia MD,Female,3503,1955-08-04,A+ -John Gonzalez,Male,3504,1931-08-11,B+ -Patricia Hill,Female,3505,1964-12-11,B- -Randy Mitchell,Male,3506,2002-04-10,O- -Hunter Munoz,Female,3507,1955-02-16,O- -Linda Turner,Female,3508,1941-03-03,AB+ -Brianna Flores,Female,3510,1939-03-03,AB+ -Faith Miranda,Male,3511,1992-02-08,A+ -Kayla Snyder,Male,3512,1985-05-07,A+ -Heidi Brown,Female,3513,2000-09-07,A- -Jose Mullen,Male,3514,1997-10-21,A+ -Benjamin Gomez,Male,3515,1999-12-21,O- -Helen Meyer,Male,3516,2001-12-08,B- -Rachel Mcguire DDS,Male,3517,1979-07-22,AB- -Nancy Oconnor,Female,3518,1959-07-13,A- -Jessica Christensen,Male,3519,1963-10-03,A- -Mario Stone,Female,3520,1947-08-30,B+ -Lucas Hernandez,Female,3521,1966-03-23,A- -Mary Smith,Female,3522,1944-11-16,A+ -Brian Alvarado,Female,3523,1933-01-03,A+ -Kathy Harvey,Female,3524,1949-06-06,O- -Shannon Hunter,Male,3525,1981-03-24,AB- -Richard Jones,Female,3526,1961-04-27,O- -Christina Mills,Female,3527,1954-11-18,AB- -Gary Lee,Female,3528,1973-11-12,O- -Jay Yates,Male,3529,1947-07-27,B- -Andres Adams,Male,3530,1949-02-10,B+ -Lori Lee,Female,3531,1993-05-17,A+ -Alexandra Davis,Male,3532,1979-06-11,O+ -William Doyle,Male,3533,1960-05-24,O+ -Casey Foster,Male,3534,1951-10-08,B+ -Kevin Martinez,Female,3535,1954-12-23,A+ -Lisa Castro,Female,3536,1964-06-07,A- -Matthew Spencer,Female,3537,1999-04-08,A+ -Derek Brown,Female,3538,1991-06-03,A+ -Adam Taylor,Male,3539,1932-12-25,B+ -Jacqueline Wilson,Female,3540,1942-07-15,A+ -Alexis Ortega,Male,3541,1954-12-28,A- -Kristin Hill DVM,Female,3542,1958-09-18,AB- -Ashley Wallace,Male,3543,1930-06-05,B+ -Daniel Wilson,Male,3544,2000-03-20,B- -Ronald Bell,Female,3545,1935-05-13,O+ -Beth Frazier,Female,3546,1959-04-12,B+ -Lynn Sawyer,Female,3547,1947-05-16,AB+ -Adriana Murphy,Male,3548,1945-10-28,O+ -Christine Waller,Male,3549,1991-09-06,O+ -Debra Stokes,Female,3550,1988-09-20,A- -Jason Ruiz,Female,3551,1940-06-27,O- -Patrick Swanson,Female,3552,1954-10-08,A+ -Monica Harris,Female,3553,1999-01-14,A+ -Kim Bowen,Male,3554,1956-10-25,A+ -Paul Beck,Male,3555,1993-02-02,O- -Rebecca Allen,Female,3556,1931-03-18,A- -Robert Walsh,Male,3557,1991-05-25,B+ -Vincent Arroyo,Male,3558,1991-01-30,B- -Jesse Davis,Female,3559,1969-08-22,B- -Jacob Murphy,Male,3560,1995-01-02,A- -Pamela Martinez,Female,3561,1942-09-03,AB+ -Kelly Floyd,Male,3562,1947-06-11,B- -Ricky Marsh,Female,3563,1956-02-02,A- -James Pearson,Female,3564,1977-06-15,B+ -Richard Garrett,Female,3565,1961-08-31,B- -Melanie Best,Male,3566,1952-05-24,A+ -Carol Villanueva,Male,3567,1973-11-04,AB- -Lisa Morrow,Female,3568,1991-08-08,A- -Amber Atkinson,Male,3569,1976-02-12,O+ -Alexandra Bailey,Male,3570,1995-07-31,B- -Derek Lopez,Male,3571,1987-07-31,B- -Heather Carey,Male,3572,1931-01-28,O- -Jose Wilson,Male,3573,1963-03-19,AB+ -Jay Stephenson,Female,3574,1979-10-02,AB- -John Williams,Male,3575,1995-01-18,B+ -Colleen Johnson,Male,3576,1958-08-11,O- -Marc Nguyen,Male,3577,1977-12-22,A+ -Joseph Coleman,Male,3578,1987-11-03,O+ -Joanna Taylor,Male,3579,1950-04-24,AB+ -Cheryl Jones,Female,3580,1992-04-11,O- -Elizabeth Jones,Female,3582,1936-09-20,A- -Jordan Rose,Male,3583,2001-04-20,B- -Brian Mosley,Male,3584,1984-12-01,B- -Robert Black,Male,3585,1978-08-18,AB+ -Danielle Rodriguez,Male,3586,1971-09-06,B- -Jenna Jacobson,Female,3587,1948-05-07,A- -Scott Tyler,Male,3588,1937-02-10,O- -Shannon Warren,Female,3589,1930-05-22,O- -Rebecca Torres,Female,3590,1937-04-13,B- -James Harris,Female,3591,1987-06-11,B- -Sara Roberts,Male,3592,1954-09-23,A+ -Stephen Dalton,Male,3593,1971-03-04,O+ -Elizabeth Rivera,Male,3594,1968-04-01,B+ -Lindsay Higgins,Female,3595,1945-07-02,AB+ -Patrick Pennington,Female,3596,1946-10-26,O- -Adam Vega,Male,3597,1963-02-26,AB+ -Peter Hardy,Male,3598,1990-04-06,A+ -Emily Parker,Male,3599,1954-01-22,O- -April Johnson,Female,3600,1957-08-23,A+ -Daniel Good,Female,3601,1953-03-13,A+ -Jason Porter,Female,3602,1976-01-07,AB- -Stephanie Hensley,Female,3604,1994-01-08,B- -Austin Lucas,Male,3605,1941-08-20,A- -Kelli Martinez,Female,3606,1970-12-06,AB- -Melissa Jefferson,Female,3607,1934-10-17,B+ -Alicia Brown,Female,3608,1987-11-19,AB+ -Darryl Carter,Male,3609,1980-03-30,A- -John White,Male,3610,1941-03-12,AB+ -Lee Cuevas,Female,3611,1986-04-19,B- -Brandy Martin,Female,3612,1996-03-08,A- -Casey Evans,Male,3613,1971-11-04,AB- -Cynthia Brown,Male,3614,1982-12-04,AB+ -Mr. Charles Myers DVM,Female,3615,1956-05-25,AB- -Rhonda Martinez,Male,3616,1989-08-17,B- -James Lopez,Female,3617,1996-06-07,A- -Amber Cunningham,Female,3618,1943-11-24,A- -Tonya Perkins,Female,3619,1958-07-05,O- -Carolyn Moran,Female,3620,1972-12-12,A+ -Caroline Gordon,Male,3621,1949-10-18,A+ -Jeffrey Carr,Male,3622,1972-04-02,AB- -Nicholas Young,Female,3623,1960-02-15,A- -Elizabeth Mckee,Male,3624,1968-03-09,AB+ -James Bennett,Female,3625,1967-06-22,AB- -Clinton Martin,Male,3627,1979-01-19,AB- -Gregory Simpson,Male,3628,1965-10-18,O+ -Jeanette Hines,Male,3629,1983-01-17,B+ -Brian Richardson,Female,3630,1994-06-13,A- -Teresa Kennedy,Male,3631,1942-04-21,A+ -Mark Mitchell,Male,3632,2000-06-01,A- -Kimberly Franco,Male,3633,1977-05-31,B- -Charles Johnson,Male,3634,1933-12-31,AB- -Ronald Ashley,Female,3635,1968-09-18,O+ -Jessica Ross,Male,3636,1982-04-25,O+ -Tyler Black,Male,3637,1959-04-23,A+ -Lisa Ryan,Male,3638,1975-08-22,A+ -Melanie Alvarado,Male,3639,1975-08-01,A+ -Manuel Reid,Male,3640,1948-08-30,B- -Diane Holmes,Female,3641,1961-11-13,O+ -Dennis Bullock,Male,3642,1969-06-29,AB+ -Laura White,Male,3643,1968-03-27,B- -Catherine Roth,Female,3644,1979-09-07,O- -Stephen Ramos,Female,3645,1960-10-10,B+ -Joseph Hendricks,Female,3646,1930-02-10,B+ -Jessica Neal,Male,3647,1945-12-15,AB- -Jason Underwood,Male,3648,1952-08-12,B+ -Jason Buchanan,Female,3649,1977-07-24,A+ -Lisa Jarvis,Female,3650,1970-08-28,O+ -Michelle Lewis,Male,3651,1974-06-11,B+ -Nathan Martinez,Female,3652,1951-05-15,AB- -Dorothy Abbott,Male,3653,1996-03-08,B+ -Whitney Nelson,Male,3654,1990-07-06,A- -Maurice Watson,Female,3655,1983-08-13,B- -Meredith Koch,Female,3656,1944-09-18,O- -Jacob Moore,Male,3657,1987-12-22,A- -Jennifer Hanson,Male,3658,1994-07-11,B- -Eric Cobb,Male,3659,1936-11-29,B- -Roy Dickerson,Male,3660,1955-05-27,AB+ -Elizabeth Smith,Female,3661,1981-08-24,B+ -Adam Bryant,Male,3662,1957-01-24,AB- -Matthew Reynolds,Male,3663,1988-12-20,AB+ -Kathryn Knight,Male,3664,1932-02-18,B- -Mrs. Kimberly Gray,Female,3665,2001-08-17,B+ -Elizabeth Mata,Female,3666,1934-02-01,O- -Gregory Singleton,Male,3667,1976-08-31,O+ -Caleb Brock,Female,3668,1978-07-20,O+ -Bradley Peterson,Female,3669,1967-04-12,B+ -Elizabeth Pope,Female,3670,2000-11-04,A- -James Hernandez,Male,3671,1963-03-21,AB- -Kyle Berry,Male,3672,1957-11-13,A+ -Lindsay Sullivan MD,Male,3673,1951-07-01,A+ -Keith Reyes,Male,3674,1974-08-06,O+ -Jennifer Turner,Female,3675,1949-08-05,B- -Andrew Johnson,Female,3676,1935-08-07,B- -Brian Martinez,Female,3677,1950-03-05,AB+ -Darren Roberts,Female,3678,1984-06-26,B+ -David Murphy,Male,3679,1967-05-02,AB- -Terry Elliott,Female,3680,2000-03-08,B+ -Jennifer Martinez,Male,3681,1955-02-07,B+ -Diana Jones,Male,3682,1987-05-23,AB+ -Jesus Miller,Female,3683,1976-11-06,A+ -Teresa Todd,Male,3684,1961-01-06,B+ -Jonathan Fitzpatrick,Male,3685,1966-06-20,O+ -Damon Kelley,Female,3687,1995-04-22,A- -Frederick Flynn,Female,3688,1930-12-09,B+ -Christopher Watson,Male,3689,1933-12-18,B- -Robert Phelps,Male,3690,1948-01-08,B+ -Amanda Williams,Male,3691,1962-06-13,O+ -Juan Patton,Female,3692,1947-04-19,O- -Daniel Moreno,Male,3693,1976-04-19,O+ -Joy Sheppard,Female,3694,1957-08-15,O- -Regina Bates,Female,3695,1965-06-12,AB+ -Diane Bennett,Male,3696,2002-12-18,AB+ -Andrew Rivera,Male,3697,1993-05-02,A+ -Rodney Vazquez,Male,3698,1975-12-20,O+ -Robert Harrington,Male,3699,1969-11-19,O+ -Dr. Derrick Robinson,Female,3700,1970-09-16,O- -Kathleen Ramsey,Male,3701,1996-09-21,AB+ -James Cook,Male,3702,1956-09-26,O- -Edwin Roberson,Female,3703,1985-02-05,AB+ -Mary Green,Male,3704,1964-02-18,O- -Julie Anderson,Female,3706,1979-11-30,AB+ -Larry Mitchell Jr.,Female,3707,1978-11-27,O- -Erica Brown,Female,3708,1958-12-27,A- -Shane Daniel,Male,3709,1932-02-11,AB+ -Chad Chen,Male,3710,1989-12-26,AB- -Eduardo Alexander,Male,3711,1974-08-18,O- -Melanie Richardson,Male,3712,1954-01-05,O+ -Christy Phillips,Male,3713,1960-05-16,A+ -Lisa Wilson,Female,3714,1967-10-17,AB- -Charles Fernandez,Female,3715,1930-07-13,AB- -Christina Villanueva,Female,3716,1935-07-01,O- -Joseph Castillo,Male,3717,1978-02-07,A+ -Philip Ward,Male,3718,1981-05-31,O+ -Jillian Davis,Male,3719,1960-08-21,AB- -Caleb Hughes,Female,3720,1957-05-03,O+ -Caleb Green,Female,3721,1955-06-21,AB+ -Cheryl Ramirez,Female,3722,1985-10-28,B+ -Victoria Thomas,Female,3723,1950-05-05,A- -Patricia Silva,Female,3724,1936-03-11,B+ -Jennifer Hernandez,Male,3725,1985-02-01,B+ -Michael Carter,Female,3726,2002-08-03,A+ -Jennifer Rodriguez,Male,3727,1948-05-22,A- -Mr. Tyler Parks MD,Female,3728,1988-03-16,B- -Crystal Johnson,Male,3729,1954-06-05,AB+ -Angela Pennington,Male,3730,1941-12-27,A+ -Amber Ruiz,Female,3731,1951-05-26,O- -Terry Tapia,Female,3732,1967-09-22,A- -Dana Baldwin,Female,3733,1984-04-22,O- -Aaron Davis,Female,3734,1995-09-17,O+ -Michelle Freeman,Female,3736,1964-11-06,B+ -Courtney Jones,Male,3737,1958-04-16,AB- -Jennifer Best,Female,3738,1956-12-06,A- -Steven Bates,Female,3739,1937-09-01,B- -Makayla Frey MD,Female,3740,1952-10-25,O- -Holly Stuart,Female,3741,1944-10-24,A+ -Stacey Trevino,Female,3742,1978-11-04,A- -Danielle Duke,Male,3743,1993-09-23,A- -Darren Obrien,Female,3744,1945-11-26,AB- -Omar Merritt,Male,3745,1948-08-10,AB- -Amber Gonzales,Female,3746,1987-12-28,A+ -Kaitlyn Bailey,Male,3747,1988-10-20,AB- -Angela Browning,Female,3748,1958-03-03,O- -Samantha Martinez,Female,3749,1978-06-27,A+ -Vincent Curtis,Male,3750,1988-06-25,B+ -Raymond Perry,Female,3751,2000-08-10,A+ -Jeffrey Williams,Female,3752,1978-01-12,O+ -Tina Alexander,Male,3754,1942-09-25,B- -Robert Allen,Male,3755,1943-08-28,A- -Mark Walker,Female,3756,1971-08-14,O+ -Christopher Chavez,Male,3757,1942-11-11,B- -Jeffrey Bell,Female,3758,1975-10-16,A+ -Michael Moore,Male,3759,1940-06-25,A- -Andrew Daniel,Female,3760,1980-03-31,AB- -Kara Chapman,Male,3761,1976-10-13,B- -David Skinner,Male,3762,1964-07-06,A+ -Karen Wade,Male,3763,1945-01-04,A+ -Robin Rice,Female,3764,1992-04-25,O+ -Mary Murray,Male,3765,1979-10-15,O+ -Robert Knight,Male,3766,1944-12-16,AB- -Sarah Burton,Male,3767,1967-12-13,B+ -Amber Matthews,Female,3768,1943-06-14,AB+ -Dawn Davis,Male,3769,1942-09-23,O- -Donald Campbell,Female,3770,1932-05-05,AB+ -Claudia Sanders,Female,3771,2002-04-01,AB+ -Amy Alvarez,Female,3772,1937-11-06,A- -Thomas Jacobs,Male,3773,1962-05-27,B+ -Tom Gallagher,Male,3774,1974-08-12,A- -Amber Olson,Female,3775,1975-05-11,AB- -Diamond Garcia,Female,3776,1938-07-10,A- -Mrs. Kelly Berry DVM,Female,3777,1990-05-20,B- -Kenneth Harrison,Female,3778,1942-04-20,AB- -Emily Spence,Male,3779,1990-10-20,AB- -Louis Martinez,Female,3780,1971-05-20,A+ -William Snyder,Male,3781,1934-02-26,A+ -Rachel Thomas,Male,3783,1973-11-09,A+ -John Mullins,Female,3784,1988-07-21,O- -Kevin Mack,Male,3785,1978-07-28,B- -Michael Shaw,Female,3786,1984-10-17,B- -Terry Turner,Male,3787,1984-10-16,A+ -Tyler Rivera,Female,3788,1961-04-19,AB+ -Susan Salinas,Male,3789,1952-06-24,O- -Amy Knight,Female,3790,1961-09-30,AB+ -Jimmy Wilson,Female,3791,1965-03-29,O+ -Meagan Johnson,Female,3792,1964-11-21,B- -Richard Thomas,Female,3793,1991-08-25,B- -John Wood,Male,3794,1955-07-13,AB+ -Christopher Reese,Male,3795,1961-07-28,O- -Nicole Johnson,Female,3796,1948-01-15,B- -William Rowe,Female,3797,1939-01-25,AB+ -Shane King,Male,3798,1991-06-02,AB- -Dr. Susan Wagner,Male,3799,1991-12-17,AB- -Mark Avila,Female,3800,1932-09-14,A- -Steven Coleman,Female,3801,1939-02-04,O- -Charles Novak,Female,3802,1973-04-17,AB+ -Nicole Roberts,Female,3803,1942-08-21,A- -Deanna Rodriguez,Male,3804,1972-06-21,AB- -Shelley Jennings,Female,3805,1965-12-29,O- -Melinda Nelson,Male,3806,1997-10-05,B+ -Claire Drake,Female,3807,1967-05-21,A- -Stacey Sanchez,Male,3808,1985-02-06,B+ -Robert Mccormick,Male,3809,1938-05-11,A+ -Rebecca Baxter,Female,3810,1992-11-09,O- -Jerry Collins,Female,3811,1931-12-28,O+ -Anthony Page,Female,3812,1940-04-18,A+ -Harold Dixon,Male,3813,1990-10-03,A- -Teresa Moyer,Female,3814,1935-02-19,AB+ -Larry Contreras,Male,3815,1994-01-02,A+ -Kevin Stephens,Female,3816,1968-03-31,A+ -Andrew Quinn,Female,3818,1941-01-16,A- -Scott Hicks,Male,3819,1944-11-26,AB+ -Meagan Franklin,Female,3820,1977-07-26,AB+ -Jon Garza,Male,3821,1940-04-02,AB- -Jill Duarte,Female,3822,1998-06-08,O+ -Dylan Simmons,Female,3823,1976-06-25,AB+ -Sarah Martin,Male,3824,1934-11-10,B- -Kenneth Allen,Male,3825,1959-03-01,B- -Angelica Bennett,Male,3826,1932-07-24,O+ -Margaret Rios,Male,3827,1966-09-04,O- -Mrs. Stephanie Mcbride,Male,3828,1940-06-05,A- -Michael Bean,Male,3829,1975-10-07,O- -Eric Randall,Female,3830,1961-11-15,B- -Patricia Bailey,Male,3831,1996-07-19,AB+ -Tiffany Bishop,Female,3832,1982-04-04,O+ -Michelle Zimmerman,Male,3833,1969-05-12,O- -Matthew Holmes,Female,3834,1946-02-15,O- -Todd James,Male,3835,1943-11-03,B+ -Lisa Ward,Female,3836,1940-08-04,A- -Michael Ross,Male,3837,1986-05-11,A+ -Matthew White,Female,3838,1975-05-30,B- -Darryl Martin,Female,3839,1981-09-11,AB+ -Malik Sullivan,Female,3840,1935-01-17,O+ -Shannon Horton,Female,3841,1957-07-16,O- -Matthew Carter,Female,3842,2002-10-02,A- -Sarah Serrano,Male,3843,1954-12-02,A+ -David Lara,Female,3844,1964-03-20,B- -Tammy Fowler,Female,3845,1942-10-03,B- -Charles Johnson,Female,3846,1961-02-28,A- -Emily Ponce,Female,3847,1950-08-28,B+ -Erin Garcia,Female,3848,1951-02-18,O+ -Adam Allen,Female,3849,1967-12-04,O- -Diane Soto,Female,3850,1976-12-19,O+ -Todd Strong,Female,3851,1983-07-01,A- -Matthew Thompson,Female,3852,1962-03-31,A- -Sandra Robinson,Male,3853,1934-06-17,O+ -Scott Jones,Male,3854,1931-01-22,AB- -Frank Olson,Female,3855,1946-07-07,A+ -Jessica Fox,Female,3856,1947-08-19,B- -Jose Henderson,Male,3857,1992-05-20,AB- -Laura Taylor,Female,3858,1966-09-01,AB+ -Jamie Clark,Female,3859,1985-10-31,B- -Julie Patterson,Male,3860,1981-08-11,B- -Allison Frederick,Male,3861,1936-04-01,A+ -Jill Rosario,Female,3862,1935-01-31,AB+ -Jennifer Robles,Female,3863,1972-11-26,O- -Rebekah Cherry,Male,3864,1996-09-15,AB+ -George Houston,Female,3865,1935-06-22,O- -Danielle Anthony,Male,3867,1944-12-29,B+ -Wesley Johnson,Female,3868,1955-10-25,B+ -Patricia Harris,Female,3869,1942-10-14,AB+ -Erica Walker,Male,3870,1963-10-11,O+ -Angel Dennis,Female,3871,1955-07-31,A- -Wanda Gilbert,Female,3872,1986-09-06,AB+ -Mrs. Karen Garza,Female,3873,1949-05-05,AB- -Austin Harrison,Female,3874,1950-05-22,AB- -Emily Maddox,Male,3875,1978-10-11,A+ -Sara Pineda,Male,3876,1945-05-26,A- -Mariah Weaver,Female,3877,1950-06-06,A- -Brian Tate,Male,3878,1934-12-25,O- -Juan Diaz,Female,3879,1958-10-17,B- -Shelby Snyder,Male,3880,1967-08-24,A+ -Edward Jones,Male,3881,1977-12-14,AB- -Paul Graham,Male,3882,1992-10-29,AB- -Cheryl Smith,Female,3883,1937-04-12,B+ -Pamela Lewis,Female,3884,1939-08-02,O- -Megan Davis,Male,3885,1998-04-24,AB- -Mary Owens,Female,3886,1935-10-22,AB- -Whitney Stewart,Male,3887,1941-01-03,O- -Howard Hayes,Male,3888,1957-12-18,AB- -Mr. James Coleman DDS,Female,3889,1938-12-04,B- -Vincent Middleton,Female,3890,1957-08-08,O+ -Heather Stein,Male,3891,1934-12-29,A+ -Jacob Morrison,Female,3892,1978-11-23,B- -Joanna Schmidt,Female,3893,1980-12-30,B- -Jessica Herrera,Female,3894,1966-11-15,O+ -Gary Rivera,Female,3895,1983-09-27,B+ -Phillip Knight,Female,3896,1949-02-20,A- -Alison Jones,Female,3897,1988-12-26,A+ -Kyle Smith,Female,3898,1938-08-01,B+ -Jo Ramirez,Male,3899,1980-07-11,B+ -David Mckenzie,Male,3900,1975-11-04,B- -Mr. Bobby Johnson,Male,3901,1972-04-04,AB- -Elizabeth Ramirez,Male,3902,1971-02-02,B+ -Kelly Shaw,Male,3903,1958-01-07,O+ -Elizabeth Baldwin,Male,3905,1974-11-04,A- -Robert Morales,Male,3906,1933-02-15,A+ -Vanessa Rice,Male,3907,1979-05-03,AB+ -Patrick Joseph,Female,3908,1985-10-23,O- -Jaime Maxwell,Male,3909,1957-10-01,AB- -Angelica Cook,Male,3910,1965-07-02,O+ -Tara Schroeder,Female,3911,1939-03-16,O- -Richard Morrow,Male,3912,1992-11-18,A- -Dr. Melissa Johnson MD,Female,3913,1951-06-15,A- -Daniel Riggs,Female,3914,1960-08-03,AB+ -Nicole Lee,Female,3915,1974-11-16,B+ -Jennifer Bowen,Male,3916,1938-12-12,B- -Christopher Wallace,Male,3917,1947-12-22,B- -Pamela Morales,Female,3918,2001-08-23,A+ -Stephanie Powers,Male,3919,1988-05-08,O+ -Cynthia Welch,Female,3920,1981-12-29,O+ -Kayla Barnes,Female,3921,1961-03-30,B+ -Stephanie Allen,Female,3922,1946-03-04,A- -Steven Lopez,Female,3923,1973-11-19,A+ -Jason Mcguire,Female,3924,1983-10-27,B+ -Steven Jackson,Male,3925,1950-11-03,O- -Briana Mendoza,Female,3926,1977-05-11,B- -Anna Green,Male,3927,1935-07-05,B- -Drew Jones,Male,3928,1978-10-22,A- -Scott Underwood,Female,3929,1990-01-16,O+ -Diane Allen,Female,3930,1960-10-16,A- -Tammy Wright,Male,3931,1967-10-04,B+ -Patrick Booker,Female,3932,1962-02-20,O+ -Richard Carter,Female,3933,1970-05-01,A+ -Jo Lindsey,Female,3934,1960-06-12,B+ -Anthony Perry,Male,3935,1979-11-13,AB+ -Donald Martinez,Male,3936,1954-01-02,O- -Michael Meza,Male,3937,1992-07-26,AB- -Carlos Morgan,Male,3938,1967-07-09,AB+ -Wyatt Edwards,Female,3939,1932-07-18,B+ -Shane Conway,Male,3940,1962-09-21,AB+ -Jose Wheeler,Female,3941,1984-12-26,O+ -Jason Bailey,Female,3942,2001-04-17,O+ -Sarah Johnson,Female,3943,1973-05-20,O+ -Pamela Chavez,Male,3944,1977-09-29,AB+ -Thomas Wilson,Male,3945,1973-02-11,A- -David Wells,Male,3946,1945-09-23,O- -Ronald Campbell,Male,3947,1980-01-23,A- -Rebecca Galloway,Male,3948,1956-06-02,O+ -John Wilson,Male,3949,1949-02-10,B+ -John Jordan,Female,3950,1949-05-10,B+ -Linda Perry,Male,3951,1956-04-05,B- -Kristi Long,Female,3952,1984-03-17,A- -Robert Hayes,Male,3953,1931-03-19,O- -Timothy Baker,Female,3954,1991-11-19,B+ -Nancy Wilson,Male,3955,1942-09-27,B- -Bonnie Cobb,Male,3956,1996-08-05,O- -Mikayla Hood,Female,3957,1996-04-21,O+ -Brian Rice,Female,3958,1955-08-28,A- -Steven Perez,Female,3959,1950-10-20,AB- -Molly Watts,Female,3960,1969-03-22,A+ -Katherine Garcia,Male,3961,1942-03-17,O+ -Sandy Miller,Female,3962,1948-01-18,B+ -Robin Salas,Female,3963,1974-10-03,AB+ -Sandra Sanchez,Female,3964,2000-09-23,AB- -Matthew Lynn,Female,3965,1962-05-19,AB+ -Dominique Wade,Male,3966,2002-04-30,O- -Sergio Colon,Male,3967,1981-03-07,AB+ -Alan Taylor,Male,3968,1968-09-16,AB- -Charles Alvarez,Male,3969,1992-01-08,AB- -Debbie Warren,Female,3970,1977-05-08,O+ -Raymond Reyes,Female,3971,1986-09-28,B- -Nicole Alvarez,Male,3972,1985-11-01,O+ -Grace Chavez,Male,3973,1993-01-02,O- -Kendra Hodges,Female,3974,1935-12-10,B+ -Kelly Harris,Male,3975,1980-10-21,AB+ -Karen Walker,Male,3976,1990-05-18,B- -Terri Gentry,Male,3977,1947-04-15,A- -Shawn Nichols,Male,3978,1952-10-07,A+ -Brittney White,Female,3979,1952-01-02,AB- -Charles Myers,Male,3980,1993-06-12,B- -Sarah Hendricks,Male,3981,1932-02-25,B+ -Caleb Fisher,Male,3982,1946-10-23,A- -Doris Bray,Female,3983,1947-05-16,B- -Jamie Martin,Female,3984,1981-06-22,O+ -Cathy Chavez,Female,3985,1999-06-20,A- -Kyle Jacobson MD,Female,3986,1986-03-26,A+ -Marcus Gray,Male,3987,1970-12-30,B+ -Crystal Henderson,Female,3988,1945-05-21,AB- -Samantha Diaz,Female,3989,1935-04-21,B+ -Katherine Harmon,Male,3990,1940-06-04,O- -Jennifer Burton,Female,3991,1949-07-31,O- -Charles Rodgers,Male,3992,1955-12-29,B- -Willie Jimenez,Female,3993,1963-10-30,A- -Michael Morales,Female,3994,1938-11-11,B- -Robert Sandoval,Female,3995,1973-05-23,AB+ -Amanda Smith,Female,3996,1936-06-10,A+ -Robert Cruz,Male,3997,1935-04-17,AB- -Cassandra Myers,Female,3998,1959-11-18,B- -Ronald Brown,Male,3999,1953-06-05,AB+ -Sandra Morris,Male,4000,1988-04-26,A- -Cheryl Freeman,Female,4001,1945-01-20,A+ -Jason Howard,Male,4002,1958-12-22,AB- -Ms. Megan Hale,Male,4003,1977-06-13,O- -Carrie Zimmerman,Female,4004,1967-12-18,AB+ -Mia Davis,Male,4005,1956-03-14,A- -Monica Garcia,Female,4006,1978-10-19,A+ -Lawrence Chavez,Female,4007,1996-01-09,AB+ -Jackie Fields,Male,4008,1943-04-20,B- -Brendan Grimes,Female,4009,1930-12-07,O+ -Michael Myers,Female,4010,1960-08-12,O- -Travis Saunders,Female,4012,1975-11-27,B- -Ann Weeks,Male,4013,2001-07-19,B- -Joshua Sanders,Female,4014,1953-04-01,A- -Rachel Tate,Female,4015,1930-05-19,A- -Debra Stanley,Male,4016,1930-12-25,A+ -Maria Cisneros,Female,4017,1988-05-11,A- -David Burgess,Male,4018,1956-08-06,AB+ -Gloria Anderson,Female,4019,1984-04-27,O- -Renee Ramsey,Female,4020,1934-06-16,B- -Larry Gibson,Female,4021,2000-11-08,A+ -Michael Padilla,Female,4022,1973-10-18,B+ -Dr. Joseph Roberts,Male,4023,1992-12-31,B+ -Daniel Tucker,Female,4024,1943-09-14,O- -Benjamin Rivera,Male,4025,2000-05-23,A- -Sarah Olson,Female,4026,1966-05-15,A- -Victoria Moran,Male,4027,1948-03-19,AB+ -Anthony Singh,Male,4028,1992-06-04,A- -Joshua Rivera,Female,4029,1983-07-16,B+ -Heather Stevens,Male,4030,1985-05-11,B- -Wayne Gutierrez,Male,4031,1996-10-22,B+ -Martha Thomas,Male,4032,1935-11-22,AB- -Larry Mccoy,Female,4033,1955-10-26,B- -David Donovan,Male,4034,1968-07-12,B- -Mitchell Keller,Female,4035,1962-08-28,A- -Shelby Gallagher,Female,4036,1948-11-27,O- -Stephen Weeks,Female,4037,1982-08-14,A- -Megan Thompson,Female,4038,1964-02-04,O- -Theresa Bailey,Female,4039,2000-01-08,O- -Jessica Lopez,Female,4040,1974-05-22,B+ -Ryan Mathews,Male,4041,1981-11-20,O- -Ronald Lindsey,Female,4042,1933-07-31,A+ -Justin Kemp,Male,4043,1970-08-31,O+ -Brooke Brown,Male,4044,1999-01-31,A- -Ethan Farley,Male,4045,1937-04-14,A+ -Jimmy Johnson,Female,4046,1958-06-26,B- -Melissa Brown,Male,4047,2002-07-07,A+ -Terry Flores,Male,4048,1985-01-26,AB+ -Robin Mayer,Male,4049,1958-01-12,AB- -Lori Jones,Male,4050,1946-12-30,O- -Paula Weaver,Female,4051,1983-07-08,A- -Taylor Blanchard,Male,4052,1933-02-14,AB+ -Joseph Ramirez,Female,4053,1998-01-06,A- -Tyler King,Female,4054,2002-05-04,B+ -Jessica Burns,Female,4055,1934-09-05,AB- -Travis Wood,Male,4056,1939-12-10,AB+ -David Miller,Female,4057,1983-08-26,A- -Jennifer Garcia,Male,4058,1958-09-16,B- -Christopher George,Male,4059,1962-11-30,O- -Lauren Savage,Male,4060,1992-10-04,AB+ -Paige Hansen,Female,4061,2001-06-03,B- -Melissa Smith,Male,4062,1976-02-28,O- -David Logan,Male,4063,1951-01-15,O+ -Nicholas Stewart,Female,4064,1999-12-17,B- -Kristi Stephens,Female,4065,1933-04-22,A+ -Susan Brooks,Male,4066,1966-07-02,A- -Terri Reed,Female,4067,1935-05-15,B+ -Linda Walker,Female,4068,1931-07-12,O- -Gail Jones,Female,4069,1973-06-27,AB+ -Alyssa Leonard,Male,4070,1968-01-15,AB- -Ronald Bishop,Female,4071,1932-06-01,AB+ -Dana Turner,Male,4072,1943-01-14,A+ -Ms. Gina Ross,Male,4073,1946-01-24,A- -Dana Horton,Female,4074,1993-12-03,A+ -Nicole Carroll,Female,4075,1965-03-27,AB+ -Leslie Chapman,Male,4076,1949-08-15,B+ -Lisa Curry,Female,4077,1965-07-18,A- -Paige Diaz,Male,4078,1951-09-17,AB- -Jeremy Carroll,Female,4079,1944-08-22,O- -Kathryn Flynn,Male,4080,1949-11-26,A- -Nicole Griffin,Female,4081,2001-09-11,B- -Norma Adams,Male,4082,1997-02-07,A- -Lisa Perez,Female,4083,1967-01-14,A+ -Edwin Jordan,Female,4084,1936-09-20,A+ -Jared Robinson,Female,4085,1987-03-01,A+ -Gregory Atkins,Female,4086,1980-03-09,AB- -Joseph Tucker,Female,4087,1965-07-27,A- -Kim Mckee,Male,4088,1937-09-09,B+ -Daniel Burns,Female,4089,1948-03-09,B+ -Laura Barrett,Male,4091,1940-06-22,A- -Amanda Stevenson,Female,4092,1939-09-07,B+ -Brett Rogers,Female,4093,1991-06-22,O+ -Tiffany Mccormick,Female,4094,1971-12-01,AB- -Jennifer Sanchez,Male,4095,1940-05-30,O- -James Johnson,Male,4096,1987-09-22,O- -Andrew Tucker,Female,4097,1980-04-02,O- -Danielle Morales,Male,4098,1990-10-03,O- -Danielle Hansen MD,Female,4100,1946-10-26,O- -Wendy Hill,Male,4101,1982-07-30,B+ -Whitney Curry,Female,4103,1954-11-25,AB+ -David Reeves,Female,4104,1930-12-31,A+ -Kurt Perkins,Female,4105,1986-07-08,AB- -David Morris,Male,4106,1983-05-26,AB+ -Ellen Mccoy,Male,4107,1972-12-14,AB- -Leah Kelley,Male,4108,1935-02-07,O+ -Tammy Brown,Male,4109,1975-03-05,A- -Kenneth Frederick III,Female,4111,1949-05-25,B- -Kim Gay,Female,4112,1951-12-13,A+ -Ryan Russell,Female,4113,1936-07-12,O+ -Kristi Cox,Male,4114,1971-04-08,AB+ -Carlos Ruiz,Male,4115,1940-10-10,B- -John Strickland,Male,4116,1965-12-10,A- -Kayla Young,Female,4117,1969-08-26,O+ -Monica Horne,Female,4118,1951-03-14,A- -Chad Stone,Female,4119,1974-04-05,A- -Isaiah Adams,Male,4120,1989-10-04,B+ -Daniel Weiss,Male,4121,1936-10-26,AB- -Chris Cook,Male,4122,1993-12-20,B- -Travis Thompson,Male,4123,1966-06-25,AB- -Linda Nixon,Male,4124,1999-11-13,A- -Tiffany Adams,Male,4125,1995-11-01,B+ -Paul Rogers,Male,4126,1979-07-31,O+ -David Boyer,Female,4127,1997-04-05,A- -Kenneth Mason,Female,4128,1982-06-08,AB+ -Jeffrey Johnson,Male,4129,1933-02-11,A- -Tim Green,Female,4130,1986-02-17,AB- -Scott Hodge,Male,4131,1939-05-14,B- -Taylor Mayo,Female,4132,1946-01-02,O+ -David Martinez,Male,4133,1987-12-10,AB- -Angie Murphy,Female,4134,1940-09-11,A- -Tiffany Payne,Female,4135,1984-10-25,AB+ -Charles Hurst,Male,4136,1982-12-11,A+ -Brenda Lara,Male,4137,1991-02-03,B+ -Randall Torres,Female,4138,1963-12-27,AB+ -Candice Gallegos,Female,4139,1930-10-04,A- -Rebecca Brown,Female,4140,1980-05-01,AB+ -Tammie Christian,Male,4141,1978-03-21,B+ -Amanda Christensen,Female,4142,1947-05-09,A+ -John Long,Male,4143,1962-09-14,AB+ -Renee Young,Female,4144,1985-01-31,A+ -Douglas Faulkner,Female,4145,1973-07-20,A- -Anthony Gonzales,Female,4146,1976-10-05,A+ -Valerie Gardner,Female,4147,2000-11-14,AB- -Cassandra Castillo,Female,4148,1986-03-24,AB- -William Wood,Female,4149,1996-06-28,A+ -Patrick Quinn,Male,4150,1995-04-24,O+ -James Thomas,Male,4151,1963-09-11,B- -Elizabeth Burns,Male,4152,1995-06-30,O+ -Cody Rush,Male,4153,1958-10-04,A+ -Victoria Kim,Female,4154,1982-08-21,B- -Jacob Walton,Male,4155,1941-07-10,AB- -Bruce Hudson,Male,4156,1961-09-25,B- -Kyle Freeman,Female,4157,1998-10-08,A+ -Mia Williams,Male,4158,1959-10-22,AB- -Brittany Lucero,Male,4159,1965-03-24,B- -David Roberson,Male,4160,1932-12-24,B- -Jamie Joyce,Male,4161,1939-03-18,O+ -Kenneth Garcia,Female,4162,1930-01-25,B- -Anthony Kelly,Female,4163,1956-09-25,A- -Margaret Massey,Female,4164,1991-09-06,A+ -Benjamin Taylor,Female,4165,1990-05-18,O- -Elaine Palmer,Female,4166,1986-06-16,O- -Adriana Griffin,Female,4167,1957-04-08,O- -Cynthia Mclean,Male,4168,1965-06-01,A+ -Wyatt Jones,Male,4169,1952-02-03,O- -Steven Gray,Female,4170,1980-12-23,O+ -Tyler Howard,Male,4171,1949-12-22,A+ -Sarah Gates,Female,4172,1952-12-23,A- -Dr. Janet Ramos,Female,4173,1961-03-09,AB- -Lisa Bush,Male,4174,1953-02-17,A- -Courtney Moore,Male,4175,1985-02-12,A+ -Christopher Hudson,Female,4176,1958-07-26,A+ -Michelle Johnson,Male,4177,1971-03-05,B- -Scott Long,Male,4178,1983-07-21,B- -Beverly Monroe,Female,4179,1961-07-25,B- -Virginia Hunter,Female,4180,1988-04-07,B+ -Frank Lindsey,Male,4181,1988-08-25,B+ -Valerie Willis,Female,4182,1973-02-07,AB+ -Amber Powell,Male,4183,1995-03-12,B+ -Chloe Clark,Male,4184,1953-07-24,O+ -Hannah Scott,Female,4185,1935-07-08,A+ -William Garcia,Male,4186,1933-10-13,A- -Clayton Scott,Male,4187,1933-01-03,A+ -Cole Johnson,Female,4188,1984-03-28,B- -Haley Andrade,Female,4189,1984-11-12,A+ -Tammy Mckinney,Female,4191,1996-08-04,AB- -Megan King,Male,4192,1954-12-02,B+ -Mark Martinez,Male,4193,1930-07-07,A+ -Adam Jones,Female,4194,1962-09-18,A- -Jessica Kaufman,Male,4195,1957-12-12,O- -Sharon Rivers,Male,4196,1989-09-01,AB- -Eric Long,Female,4197,1935-09-24,AB- -Nichole Alvarez,Male,4198,1980-09-09,A+ -Christian Mckenzie,Female,4199,1944-05-09,AB+ -Roger Scott,Female,4200,1953-05-29,B- -James Dunn,Female,4201,1990-04-27,O+ -Alexander Perkins,Female,4202,1944-03-13,O+ -Jessica Gomez,Female,4203,1971-10-24,O- -Albert Salas,Male,4204,1945-10-25,O+ -Anita Cook,Male,4205,1964-02-01,O+ -Mrs. Michelle Berry,Male,4206,1996-07-10,B- -Larry Welch,Male,4207,1995-07-10,B+ -Curtis Shaw,Male,4208,1951-06-03,B- -Eugene Romero,Male,4209,1973-01-12,AB+ -Arthur Stephenson,Female,4210,1950-02-20,A- -Ashley Donovan,Female,4211,1947-09-14,O- -Samantha Mccoy,Female,4212,1964-11-15,O+ -Tracy Hill,Female,4213,1978-12-16,AB+ -Angela Cole,Female,4214,1966-06-25,O- -Crystal Rose,Male,4215,1958-05-04,AB- -Christopher Clark DDS,Male,4216,1936-12-30,O+ -Anna Reyes,Female,4217,1989-09-01,O+ -Norman Golden,Female,4219,1938-01-30,B- -Troy Rhodes,Female,4220,1978-04-01,A+ -Stephanie Rivera,Male,4221,1999-12-14,O- -Tara Allison,Male,4222,1942-12-11,O+ -Brittney Thomas,Male,4223,1985-09-18,B+ -Richard Hanson,Male,4224,1945-07-27,O- -Jillian Smith,Female,4225,2000-02-29,A- -Morgan Johnson,Male,4226,1940-02-19,B+ -Fred Sullivan,Male,4227,1937-08-12,AB+ -Nathaniel Parker,Male,4228,1995-02-11,B+ -Monica Obrien,Male,4229,1979-03-17,AB+ -Cassandra Warner,Male,4230,1936-06-26,A+ -Rachel Sanchez,Male,4231,1972-09-09,O+ -Mason Phelps,Female,4232,1990-09-16,B+ -Rachael Henderson,Female,4233,1931-03-13,A- -Matthew Miller,Female,4234,1937-09-29,B- -Tamara Miller,Male,4236,1934-04-06,O+ -Darren Barnes,Female,4237,1995-08-02,O- -Bryan Mayer,Male,4238,1966-08-04,AB- -Yolanda Smith,Female,4239,1995-05-04,AB+ -Jessica Greene,Female,4241,2000-11-09,O- -Desiree Giles,Male,4242,1971-03-28,A+ -Carlos Gonzales,Female,4243,1958-12-16,AB+ -Mary Torres,Male,4244,1975-05-11,B- -Jessica Moore,Male,4245,1949-09-08,AB+ -Dr. Kenneth Ford,Male,4246,1993-03-02,AB- -Elizabeth Ayers,Male,4247,1945-03-28,B+ -Jennifer Carter,Female,4248,1994-09-07,A- -Timothy Holland,Male,4249,1972-01-30,B+ -Richard Wells,Male,4250,1995-10-22,O+ -Jessica Lynch,Male,4251,1990-02-14,AB- -Robert Stewart,Male,4252,1934-05-09,A- -Cynthia York,Male,4253,2001-08-19,AB- -Rachael Green,Female,4254,1999-02-03,O+ -Steven Smith,Male,4255,1930-06-09,AB+ -Joseph Duran,Male,4256,1963-04-03,A+ -Lisa Thomas,Female,4257,1972-02-03,O+ -Paul Dudley,Male,4258,1947-12-13,O+ -Andrea Willis,Female,4259,1974-06-16,A- -Jaclyn Jones,Female,4260,1955-03-14,B- -Sara Ward,Female,4261,1952-07-28,B+ -Deanna Marsh,Male,4262,1970-05-14,AB+ -Annette Jones,Male,4263,1966-07-04,O+ -Jeffrey Davis,Female,4265,1966-07-12,A+ -Todd Saunders,Female,4266,1993-08-08,O- -Raymond Boyer,Female,4267,1981-03-05,AB+ -Logan Castillo,Male,4268,1933-05-13,B- -Shawna White,Female,4269,1994-08-23,AB- -Angelica Allen,Male,4270,1945-04-22,O+ -David Williams,Female,4271,1993-10-20,A+ -Tracy Lopez,Female,4272,1945-04-17,AB+ -Thomas Munoz,Male,4273,1955-04-07,A+ -Jennifer Zuniga,Female,4274,1946-07-22,A+ -Sherri Scott,Female,4275,1963-07-04,B+ -Cody Bates,Male,4276,1972-11-05,A- -Randy Stewart,Female,4277,1943-07-17,AB- -Ann Joseph,Female,4278,1951-09-15,B- -Elizabeth Webb,Female,4279,1964-08-11,B+ -Erika Miller,Female,4280,1973-10-20,AB+ -Carlos Esparza,Female,4281,1966-08-26,O+ -Jill Cummings,Male,4282,1949-03-18,B- -Michael Rodriguez,Male,4283,1968-05-28,O+ -Vanessa Mcmillan,Female,4284,1973-08-03,O- -Janet Macias,Male,4285,1996-02-06,A+ -Andrew Brown,Male,4286,1967-08-27,O- -Leslie Ross,Female,4287,1988-10-13,A- -Kristen Hobbs,Male,4289,2000-09-30,A+ -Ronald Riddle,Female,4290,1994-06-19,AB- -Russell Bell,Male,4291,1980-01-07,B- -Joseph King,Female,4292,1979-10-24,O+ -Gabriel Wallace,Female,4293,1938-09-03,B+ -Jeffrey Carrillo,Male,4294,1962-10-29,A- -Julie Dunlap,Female,4295,1992-04-01,AB- -Joshua Myers,Female,4296,1999-07-11,O+ -Dr. Michael Smith PhD,Female,4297,1968-07-27,B- -Christopher Alvarado,Male,4298,1991-06-10,AB+ -Brian Fox,Male,4299,1936-09-03,A- -Charles Butler,Female,4300,1992-07-26,O- -Steven Osborne,Male,4301,1971-10-28,O- -Kelly Baker,Female,4302,1999-09-20,B+ -Randy Buchanan,Female,4303,1991-02-25,O+ -Anne Hernandez,Female,4304,1944-06-12,O+ -Daniel Carter,Male,4305,1954-04-04,O+ -Valerie Williams,Male,4306,1951-05-29,A- -Jonathan Austin,Female,4307,1942-12-12,B- -Andrew Mills,Male,4308,1982-01-16,AB+ -Luis Fisher,Female,4309,1945-09-17,O- -Debra Smith,Female,4310,1986-06-12,AB- -Brendan Stanley,Female,4311,1945-11-11,A+ -John Byrd,Male,4312,1942-05-21,A- -Darin Mosley,Female,4313,1945-04-03,A- -Scott Oconnor,Female,4314,1974-05-19,B- -Angela Williams,Female,4315,1971-09-29,O- -John Hoffman,Male,4316,1999-07-12,B+ -James Green,Female,4317,1958-06-03,AB+ -Shelby Brown,Female,4318,2000-04-25,B- -Robert Cook,Female,4319,1936-02-03,AB- -John Brandt,Female,4320,1952-12-20,O- -Michael Mueller,Female,4321,1973-08-10,B- -Tina Lee,Male,4322,1991-07-15,O- -Monica Jackson,Male,4323,1961-12-28,O- -Danny Allison,Male,4324,1959-02-18,B+ -Daniel Wilson,Female,4325,1953-09-19,A- -Linda Allen,Female,4326,1947-06-02,AB+ -Rebecca Gomez,Male,4327,1935-05-03,A- -Misty Meyers,Male,4328,1963-02-08,A+ -Olivia Green,Male,4329,2002-10-16,AB+ -Amber Sharp,Male,4330,1962-11-01,O- -Michael Ellis,Male,4331,1994-04-13,B- -Katherine Bailey,Female,4332,1947-04-20,AB- -Monique Yang,Male,4333,1985-04-02,B+ -Thomas Alexander,Female,4334,1963-05-08,AB+ -Jocelyn King,Male,4335,1930-08-23,A+ -Nancy Perez,Male,4336,1972-02-02,O- -Richard Baxter,Male,4337,1999-10-30,AB- -Renee Collins,Male,4338,1984-09-25,AB+ -Dana Davis,Female,4339,1996-11-17,A- -Bradley Cohen,Male,4340,1931-06-07,A- -Steve Melendez,Female,4341,1991-01-09,AB+ -Alexander Sellers,Female,4342,1964-10-27,AB+ -Marilyn Owens,Male,4343,1988-03-29,AB+ -Eric Mason,Male,4344,1956-11-21,AB- -Jessica Werner,Female,4345,1945-12-20,A- -Lisa Diaz,Female,4346,1965-02-06,B- -Drew Tyler,Female,4347,1974-05-21,A+ -Michael Wong,Male,4348,1949-07-02,A+ -Sara Hill,Male,4349,1945-12-30,B+ -Megan Hernandez,Female,4350,1933-08-09,O- -William Cox,Male,4351,1966-02-21,O+ -Mary Bauer,Female,4352,1977-12-08,B- -Wendy Davis,Male,4353,1990-04-01,A- -Lauren Johnson,Male,4354,1989-09-15,O- -Laura Williams,Female,4355,1971-08-20,B+ -Dr. Ronald Gutierrez,Male,4356,1981-12-10,O- -Cindy Romero,Female,4357,2000-02-02,AB+ -William Maynard,Female,4358,1990-05-22,O+ -Carrie Bautista,Female,4359,1933-10-10,A- -Crystal Marshall,Male,4360,1984-02-05,O+ -Karen Chavez,Female,4361,1934-02-28,B- -Isabel Vang,Female,4362,1990-09-04,O+ -Bonnie Page,Female,4363,1951-09-23,O- -Carolyn Smith,Male,4364,1946-09-07,O+ -Alexis Wilson,Male,4365,1997-11-27,O+ -Timothy Higgins,Female,4366,1944-08-30,A+ -Michelle Carney,Female,4367,1988-06-17,A- -Christian Owen,Male,4368,1954-11-14,A- -Stephen Richardson,Female,4369,1945-04-06,O- -Yolanda Rogers,Female,4370,1986-01-03,AB- -Charles Ray,Female,4371,1966-06-25,O+ -Beverly Bryant,Male,4372,1936-03-07,O+ -Julie Fisher,Male,4373,1998-05-16,AB+ -Sydney Mills,Female,4374,1966-09-20,A- -Jasmine Palmer,Female,4375,2002-12-23,O+ -Yesenia Walker,Female,4376,1971-09-16,A- -Ryan Kirby,Male,4377,1973-07-01,O+ -Cheryl Martinez,Female,4378,1986-12-21,A+ -Jorge Sweeney,Female,4379,1983-09-21,O- -Eric Lopez,Male,4380,1985-07-08,A- -Darlene Santiago,Female,4381,1935-06-29,B- -Danielle Wallace,Male,4382,1980-05-18,O- -Mark Johnson,Male,4383,1959-09-26,AB+ -Adrian Lopez,Male,4384,1957-07-28,O- -Kimberly Bowen,Male,4385,1955-09-15,O+ -Lisa Lewis,Male,4386,1979-09-17,AB+ -Caleb Mccarty,Male,4387,1997-09-23,O- -Christopher Lee,Female,4388,1985-09-29,B+ -Samuel Rodriguez,Female,4389,1979-08-27,AB+ -Richard Schwartz,Female,4390,1999-05-30,B+ -Kimberly Brown,Female,4391,1995-03-15,B- -Russell Hawkins,Female,4392,1969-12-31,O- -Christopher Cantu,Female,4393,1994-06-28,A- -Andrew Mclaughlin,Male,4394,1992-07-27,A- -George Steele,Female,4395,1974-10-20,AB- -Megan Woods,Male,4396,1999-11-10,O+ -Mark Solomon,Male,4397,1983-09-04,B+ -John Lawrence,Male,4398,1976-05-02,AB+ -Chad Meyer,Female,4399,1970-08-02,AB- -Chris Velez,Female,4401,1978-11-10,AB- -Tonya Sanchez,Female,4402,1989-01-19,A+ -James Small,Female,4403,1953-05-27,B+ -Nicole Pineda,Female,4404,1961-07-12,AB+ -Sheila Mullins,Female,4405,1930-08-23,AB- -Monica Smith,Male,4406,1969-11-14,A+ -David Arias,Female,4407,1979-02-05,AB- -Carmen Horne,Female,4408,1950-06-25,O+ -Emily Moore,Female,4409,1941-07-15,B- -Seth Cochran,Female,4410,1958-03-08,B+ -Andrew Yu,Male,4411,1934-08-01,A+ -Michael Wells,Female,4412,1993-03-23,B- -Grace Franco,Female,4413,1996-09-17,AB+ -Katherine Alexander,Male,4414,1935-10-02,O+ -Monica Romero,Male,4415,1962-06-11,A+ -April Bridges,Male,4416,1985-02-13,AB+ -Angela Solomon,Female,4417,1983-07-19,AB- -Michele Campbell,Female,4418,1979-10-30,A- -Wendy Perez,Male,4419,1940-07-08,O- -Lauren Donaldson,Male,4420,1957-12-02,AB+ -Cynthia Reid,Female,4421,1951-12-13,B- -Michael Campbell,Female,4422,1949-03-13,O+ -Aaron Wilson,Male,4423,1942-04-21,O+ -Jaime Morgan MD,Male,4424,1976-09-14,AB+ -Leslie Obrien,Female,4425,1997-01-01,AB- -Allen Jackson,Male,4426,1953-06-27,O- -Brandon Payne,Female,4427,1935-11-29,B+ -Kimberly Briggs,Female,4429,1982-02-22,B- -Lawrence Dixon,Female,4430,1935-08-27,AB+ -Jon Steele,Female,4431,1938-11-28,AB+ -Stephen Jackson,Male,4432,1988-06-28,A- -Ashley Smith,Female,4433,1995-12-13,O+ -Adrian Werner,Male,4434,1965-02-14,B- -Jessica Clark,Female,4435,1999-04-24,O- -Margaret Perez,Female,4436,1933-11-02,O+ -Corey Martin,Male,4437,1983-10-13,AB+ -Patrick Poole,Male,4438,1971-08-07,O+ -Brittany Allen,Male,4439,1963-02-13,O+ -Anna Glass,Male,4440,1985-08-07,A+ -Michelle Christian,Female,4441,1941-07-16,O+ -Brent Robinson,Male,4442,1983-09-11,AB- -Brandy West,Female,4443,1960-03-07,O+ -John Clark,Male,4444,1962-09-20,B+ -Stacey Ramirez,Male,4445,1959-04-23,AB- -Stephanie Lyons,Female,4447,1958-04-27,B- -Kristy Benton,Female,4448,1962-06-29,O+ -Shawn Sexton,Female,4449,1937-07-08,O- -James Robbins,Male,4450,1991-07-15,AB- -Virginia Brown,Male,4451,1940-08-02,AB- -Tammy Martinez,Male,4452,1962-09-26,AB+ -Kara Gilbert,Male,4453,1945-12-06,B- -Troy Pineda,Male,4454,1980-12-10,O+ -Kyle Harrison,Male,4455,1974-01-23,A- -Lauren Savage,Female,4456,1982-07-03,O- -Jonathan Bryant,Male,4457,2001-12-07,AB+ -Tabitha Jackson,Male,4458,1972-06-02,B- -Natalie Bradley,Female,4459,1985-12-25,B+ -Christine Wood,Female,4460,1979-01-12,AB- -William Grant,Male,4461,1952-07-08,O- -Brandi Blake,Female,4462,1991-10-30,B+ -Eric Anderson,Female,4463,1941-01-08,O+ -Ian Norton,Male,4464,1981-11-19,A- -Mary Schmidt,Female,4465,1982-07-14,A+ -David Pratt,Male,4466,1985-01-05,A+ -Gary Gonzalez,Female,4467,1946-11-08,B- -Nathaniel Meyer,Male,4468,1967-11-22,A- -Tiffany Griffin,Male,4469,1931-12-21,O- -Jason Robinson,Male,4470,1970-10-08,AB+ -Stephen Alvarez,Female,4471,1992-09-12,O- -Christina Olson,Male,4472,1987-05-25,A- -Mary Ruiz,Female,4473,1977-07-09,B+ -Mr. Gregory Perez,Male,4474,1985-01-14,AB- -Eric Vincent,Female,4475,1995-02-08,A+ -Heather Rose,Female,4476,1986-11-29,B- -Terrence Reid,Male,4477,1987-04-28,O+ -Laura Monroe,Female,4478,1980-11-25,O- -Gary Rodgers,Female,4479,1942-02-13,A+ -Vanessa Jones,Female,4480,1993-10-20,AB+ -Jessica Brown,Female,4481,1964-04-04,B- -Breanna Gordon,Female,4482,1971-03-31,O+ -Roy Barton Jr.,Male,4483,1967-09-11,O- -Alexander Stein,Male,4484,1960-12-17,AB+ -Nicholas Wade,Male,4485,1961-06-04,O+ -Joshua Duncan,Female,4486,1999-01-18,AB- -Bryan Coffey,Female,4487,1965-04-30,A+ -Joshua Harper,Female,4488,1997-10-26,AB- -Lucas Carroll,Female,4489,1953-10-07,A+ -Charles Jones,Female,4490,1936-01-14,AB+ -Nathaniel Martin,Male,4491,1989-06-29,B+ -Kathleen Webb,Male,4492,1983-10-30,AB- -Robert Rodriguez,Female,4493,1933-01-07,A+ -Nancy Wolfe,Male,4495,1944-05-10,B- -Elizabeth Huff,Female,4496,1948-02-10,AB+ -Lisa Chavez,Female,4497,1974-08-17,A+ -Russell Thompson,Male,4498,2000-09-07,O- -Karina Russell,Male,4499,1953-11-03,A+ -William Howell,Female,4500,1968-02-04,AB- -Emily Cole,Female,4501,1989-02-27,B- -Dr. Scott Armstrong,Male,4502,1998-05-12,O+ -Felicia Jacobs,Male,4503,1931-09-23,B+ -Sarah Chapman,Male,4504,1962-08-09,O+ -Christine Watson,Male,4505,2002-05-06,A+ -Jonathan Ward,Male,4506,1959-09-13,O+ -Kevin Hunt,Female,4507,1955-02-10,A+ -Steven Brock,Male,4508,1964-10-30,B- -Kelly Carter,Female,4509,1993-02-26,O+ -Michael Fernandez Jr.,Male,4510,1975-08-14,AB- -Stephanie Dixon,Male,4511,1975-06-30,AB- -Stacy Berry,Male,4512,1956-09-05,O- -Carolyn Watson,Female,4514,1945-07-31,A+ -Linda Phillips,Male,4515,1966-09-10,O+ -Sarah Collins,Female,4516,1950-12-21,AB- -James Maldonado,Female,4517,1959-01-10,A- -William Hall,Male,4518,1962-01-17,B- -Terry Booth,Female,4519,1930-01-26,B+ -Lisa Hurley,Male,4520,1972-02-14,B- -Donna Evans,Male,4521,1967-07-11,A- -Lindsay Evans,Male,4522,1995-04-22,A- -Jessica Alvarez,Male,4523,1992-05-29,O- -Chris Fox,Male,4524,1953-09-09,B- -Kristin Evans,Female,4525,1985-03-01,B- -Joseph Anderson,Male,4526,1992-12-04,O+ -Claudia Miles,Female,4527,1966-08-19,A+ -Nathan Patterson DDS,Male,4528,1988-10-29,AB+ -Jesse Young,Female,4529,1949-03-08,B+ -Dr. Jeffrey Leon,Female,4530,1984-05-24,B- -Brandon Roberts,Female,4531,1980-04-26,B+ -Erica Wood,Male,4532,1953-10-09,B+ -Makayla Reynolds,Female,4533,1932-12-08,B+ -Andrea Chavez,Male,4535,1993-03-22,B- -Angela Houston,Female,4536,1930-08-04,AB+ -Laura Sanchez,Male,4537,1995-09-06,B- -Laura Washington,Female,4538,1957-02-23,O+ -Jeremy Davenport,Male,4539,1956-10-15,O+ -Timothy Flores,Male,4540,1981-12-29,AB+ -Mary Tran,Female,4541,1997-09-20,AB- -Lisa Dillon,Female,4542,1970-08-03,B- -Ashley Smith,Male,4543,1987-12-13,AB- -Ricky Burns,Female,4544,1939-01-27,B+ -Betty Velazquez,Male,4545,1960-03-17,B- -Robin Patterson,Female,4546,1957-04-17,A+ -Stacey Rios MD,Female,4547,1974-06-20,B- -Steven Rush,Male,4548,2002-11-27,O+ -Heidi Martinez,Male,4549,1996-02-11,O- -Kevin Meza,Female,4550,1946-04-06,A- -James Hammond,Male,4551,1970-03-28,O- -Christopher Herring,Female,4552,1970-07-04,O- -Johnny Martinez,Female,4553,1936-04-14,O- -Lisa Jones,Female,4554,1990-06-04,A- -Amanda Lamb,Male,4555,1934-08-24,AB- -Andrea Bass,Female,4556,1960-08-16,A- -Kim Hart,Male,4557,1980-03-09,AB- -Phillip Cook,Female,4558,1962-11-10,A- -Justin Maxwell,Female,4559,1969-04-16,A- -James Rios,Female,4560,1982-06-24,B- -Ann Griffin,Male,4561,1939-12-24,AB- -Aaron Gonzales,Female,4562,1989-03-17,B- -Bobby Hurst,Female,4563,1947-07-31,A+ -Victoria Mccormick,Female,4564,1995-07-20,B- -Kevin Cain,Female,4565,1962-05-30,O- -Alexander Navarro,Female,4566,1982-02-06,AB+ -Jeremy Johnson,Female,4567,1992-11-24,AB+ -Casey Oliver,Male,4568,1947-05-25,O+ -Brandon Rodriguez,Male,4569,1958-11-11,O+ -Shelly Martinez,Male,4570,1935-04-17,B+ -Melinda Osborne,Female,4571,1961-06-13,B- -Robert Grimes,Male,4572,1934-10-24,A- -Stephanie Lee,Male,4573,1943-12-04,A- -Suzanne Hoffman,Male,4574,1945-06-08,AB+ -Cynthia Welch,Male,4575,1933-01-21,O- -Briana Miller,Male,4576,1959-06-17,AB- -Randy Warren,Female,4577,1962-01-04,O- -Mary Wilson,Male,4578,1931-05-08,B+ -Ms. Raven Smith,Male,4579,1954-02-15,O- -Robert Wood,Male,4580,1996-06-15,B- -Robert Davis,Male,4581,1947-09-23,B- -Jennifer Greene,Male,4582,1969-05-21,A+ -Paul Dean,Female,4583,1956-08-30,B+ -Charles Anderson,Female,4584,1988-06-07,O- -Kenneth Rios,Female,4585,1968-04-10,A- -Dr. Erica Williams,Male,4586,1962-03-09,A- -Kimberly Sanchez,Female,4587,1956-10-28,B+ -Mrs. Melissa Griffin,Female,4588,1969-12-29,O- -Tammy Perkins,Male,4589,1965-03-25,B- -Joseph Matthews,Female,4590,2002-06-18,B- -Mallory Rodgers,Female,4591,2000-10-11,A+ -Anthony Coleman,Male,4592,1982-05-15,A+ -David Smith,Male,4593,1951-07-16,O+ -Amanda Richard,Male,4594,1972-04-19,B+ -Jonathan Barber,Female,4595,1959-04-04,AB+ -Sherry Davis,Male,4596,1994-06-18,O- -Tammy Stone,Female,4597,1944-12-04,B+ -Dr. Matthew Evans,Female,4598,1989-04-03,A- -Tiffany Olson,Male,4599,1953-05-28,O- -Mr. Ryan Bradley,Female,4600,1949-09-04,A+ -Kevin Rowland,Male,4601,1946-09-16,A+ -Sandra Sloan,Female,4602,1999-09-01,O+ -Michael Sanders,Male,4603,1999-09-17,AB+ -Robert Coleman,Male,4604,2002-10-07,O+ -Caitlin Park,Female,4605,2000-10-19,A- -Nicholas Morales,Female,4606,1931-09-12,AB+ -Timothy Moore,Female,4607,1932-06-01,AB- -Krista Johnson,Male,4608,1999-06-20,O- -Lauren Mcdaniel,Male,4609,1939-12-22,O+ -Brandon Anderson,Male,4610,1933-07-20,A+ -Kim Hughes,Female,4611,1968-08-31,O+ -Alexander Davis,Male,4612,1997-12-15,AB- -Roy Jacobs,Female,4613,1937-12-05,O+ -Stephen Davis,Female,4614,1992-11-28,O- -Jennifer Floyd,Female,4615,1977-05-27,AB- -Sarah Castaneda,Male,4616,1944-09-10,B+ -Todd Wilkinson,Female,4617,1953-11-07,B+ -Matthew Bass,Male,4618,1983-08-27,B+ -Patricia Rodriguez MD,Female,4621,1981-06-15,A+ -Anna Wilkerson,Male,4622,1952-06-13,A+ -Jeffery Mora,Male,4623,1959-05-06,B+ -Wendy Bryant,Female,4624,1939-05-17,B+ -Pamela Cain,Female,4625,1957-12-16,B+ -Devin Mcneil,Female,4626,1964-12-30,B- -Diane Herrera,Male,4627,1993-12-16,B+ -Nathan Medina,Male,4628,1995-08-26,AB- -Mary Norman,Female,4629,1988-12-24,B- -Terri Duke,Female,4630,1964-02-26,B- -Rebecca Miller,Female,4631,1940-01-16,O- -Barry Hernandez,Female,4632,1991-03-19,O+ -Kelly Jones,Female,4633,1991-12-07,A+ -Carmen Welch,Female,4634,1952-08-30,A+ -Michelle Rodriguez,Female,4635,1964-01-07,O+ -Raymond Williams,Female,4636,1981-08-13,A+ -Sean Reyes,Female,4637,1991-11-18,O+ -Cory Peterson,Female,4638,1984-10-07,AB- -Jessica Davis,Female,4639,1979-05-04,O- -Mark Barnes,Male,4640,1952-04-30,B+ -Jason Moore,Male,4643,1939-10-24,O- -Bradley Wilson,Female,4644,1972-06-24,A- -Betty Burke,Female,4645,1940-12-23,O- -Gina Morris,Female,4646,1983-12-19,O+ -Jason Benton,Female,4647,1958-07-03,A- -Sierra Conley,Female,4648,1997-03-02,O+ -Kimberly Cruz,Female,4649,1980-12-05,B+ -David Wall,Male,4650,1943-08-08,AB+ -Lisa Smith,Female,4651,1981-05-06,A- -Lisa Clark,Male,4652,1984-10-26,B+ -Laurie Mosley,Male,4653,1959-04-14,B+ -Antonio Davidson,Male,4654,1955-01-05,A+ -Marcus Charles,Male,4655,1945-09-01,A+ -Patricia Carlson,Male,4656,1972-06-23,AB+ -Blake Bell,Female,4657,1960-06-20,AB+ -Elizabeth Spencer,Female,4658,1942-03-03,O- -Denise Moore,Male,4659,1950-11-10,B+ -Douglas Powell,Male,4660,1985-08-31,AB+ -Julian Fernandez,Female,4661,1979-06-13,O+ -Mario Mills,Male,4662,1933-04-11,B+ -Benjamin Velasquez,Female,4663,1963-09-02,B- -Lori Mendez,Female,4664,1937-08-19,O+ -Don Parker,Female,4665,1995-03-17,A- -Samuel Simpson,Female,4666,2001-04-15,AB+ -Patricia Baker,Female,4667,1951-09-15,A+ -Christian Cook,Female,4668,1983-12-11,O+ -Joshua Campbell,Male,4669,1999-02-10,A+ -Justin Carroll,Female,4670,1993-03-04,O+ -Jesse Gallegos,Male,4671,1935-12-17,A+ -Andrew Thompson,Male,4672,1985-02-08,AB- -Kevin Sweeney,Male,4673,1954-01-27,O+ -Charles Sawyer,Female,4674,1986-12-19,A- -Katelyn Davila,Male,4675,1985-04-30,A+ -Erica Fox,Female,4676,1955-02-10,B- -Richard Wood,Male,4677,1936-09-17,A- -Amanda Allen,Male,4678,1931-09-21,O- -Casey Stevens,Female,4679,1956-11-21,O+ -John Hubbard,Female,4680,1951-04-19,B- -Michele Olson,Female,4681,1940-02-14,O- -Mike Goodman,Male,4682,1984-12-01,O+ -Nancy Morgan,Male,4683,1985-08-13,B- -Christopher Campbell,Female,4684,1982-06-06,B- -Alyssa Taylor,Male,4685,1986-10-27,A- -Kim Martinez,Male,4686,1965-07-08,AB- -Diane Larson,Female,4687,1952-09-29,B- -Denise Anderson,Male,4688,1943-07-28,AB- -Luke Kelley,Male,4689,1957-11-30,AB+ -Parker Conrad,Male,4690,1976-10-02,A- -Wendy Hendrix,Female,4691,1983-07-08,B+ -Debbie Moore,Male,4692,1933-01-10,A+ -Angel Smith,Male,4693,1983-02-04,A- -Gerald Garcia,Male,4694,1980-10-10,O- -Abigail Horn,Male,4695,1972-03-18,A+ -Jason Wright,Male,4696,1997-09-15,A+ -Wesley Campbell,Male,4697,1968-11-05,B+ -Jose Ochoa,Male,4698,1984-12-26,AB- -Michael Castillo Jr.,Male,4699,1964-07-03,B+ -Michele Perez,Female,4700,1985-03-23,B+ -Robin Rodriguez,Male,4701,1955-05-06,A+ -Caleb Coleman,Male,4702,1986-05-11,B- -Carla Flowers,Female,4703,1968-11-29,AB- -Joe Daniels,Male,4704,1935-03-29,A+ -Kristin Nolan,Female,4705,2000-08-13,AB- -Megan Thomas,Female,4706,1989-12-21,AB+ -Kathryn Owens,Female,4707,1959-01-02,AB- -David Fletcher,Male,4708,1934-11-08,O+ -Theresa Jones,Female,4709,2002-08-27,B- -Danielle Massey,Male,4710,1982-06-21,O- -Kimberly Lopez,Female,4711,1965-08-01,O+ -Nathan Rodriguez,Female,4712,1995-03-08,O+ -Paul Berry,Female,4713,1937-11-11,B+ -Jerome Evans,Female,4714,1966-03-27,B+ -Kristin Mccann,Male,4715,1976-08-31,O+ -Amy Hickman,Female,4716,1991-12-13,A+ -Thomas Hickman,Male,4717,1958-10-22,AB- -Wendy Harmon,Female,4718,1959-02-20,AB- -Deanna Clark,Male,4719,1933-02-06,A- -Kaylee Hill,Female,4720,1931-12-01,A+ -Patrick Smith,Male,4721,1969-10-17,B- -Melissa Roth,Male,4722,1995-04-24,A+ -Cheryl Lynch,Female,4723,1958-01-04,A+ -Brendan Garrett,Female,4724,1947-03-30,A+ -Jason Lewis,Female,4725,1965-02-25,B- -Chase Johnson,Female,4726,1951-05-23,A- -Heidi Avila,Female,4727,1942-06-24,B- -Tricia Wells,Female,4728,1935-12-20,AB+ -Angel Martin,Male,4729,1960-03-14,A- -Tiffany Hudson,Male,4730,1954-10-27,AB+ -Jeremiah Lawson,Female,4732,1952-08-28,AB+ -Calvin Santos,Female,4733,1978-10-02,AB+ -Janet Hunt,Male,4734,1971-04-25,AB- -Lauren Henry,Female,4735,1938-09-16,O+ -Rebecca Delgado,Female,4736,1986-09-04,O+ -Debra Wright,Male,4737,1948-05-02,AB+ -Erin Bond,Male,4738,1956-03-28,AB+ -Sylvia Bradley,Male,4739,1976-07-16,O- -John Jackson,Male,4740,1967-12-22,B+ -Amber Taylor,Female,4741,1962-03-11,O+ -Melissa Pitts,Male,4742,1987-05-16,B+ -Tyler Little,Male,4743,1975-08-07,B+ -Julie Robles,Female,4744,1963-07-25,O- -Abigail Grant,Female,4745,1936-10-04,B+ -John Norris,Female,4746,1968-11-25,A- -Tracy Bradley,Female,4747,1971-03-09,O- -Jeremy Floyd III,Female,4748,2001-02-03,B+ -Matthew Roberts,Male,4749,1972-10-26,B+ -Paul Williams,Male,4750,1961-08-12,A+ -Steven Hickman,Female,4751,1963-10-02,B+ -John Sexton,Male,4752,1969-01-26,AB- -Diane Mccarthy,Female,4753,1972-07-02,A- -Justin Galloway,Female,4754,1969-02-25,B- -Karen Smith,Male,4755,1984-09-25,O+ -Rebecca Gilbert,Male,4756,1959-07-03,AB+ -Vanessa Thompson DDS,Female,4757,1963-08-01,B+ -Amanda Wilson,Female,4758,1983-04-12,A- -Brittany Vega,Female,4759,1975-08-26,AB+ -Terry Richardson,Female,4760,1997-02-02,B- -Joshua Mcbride,Female,4761,1948-02-10,A- -Michael Small,Female,4762,1938-11-27,O+ -Brian Bates,Male,4763,1950-04-21,A- -Calvin Wilson,Female,4764,1993-05-25,AB+ -Joshua Alexander,Female,4765,1975-08-15,AB+ -Carlos Lopez,Female,4766,1960-06-08,A+ -Anthony Decker,Male,4767,1976-06-12,B+ -Michael Becker,Male,4768,1943-07-30,O- -Heather Moreno,Male,4769,1997-12-24,A- -Stephanie Cooley,Male,4771,1941-09-16,AB+ -Andrea Dawson,Male,4772,1996-10-02,AB- -Theresa Anderson,Male,4773,1943-01-29,O+ -Zachary Williams,Female,4774,1977-02-11,AB- -Michael Arellano,Female,4775,1940-06-29,B- -Kelsey Jensen,Female,4776,1999-03-15,A- -Kimberly Davis,Male,4777,1970-10-19,A+ -Linda Rodriguez,Female,4778,1944-11-28,O+ -Steve Martin,Female,4779,1933-10-12,A+ -Lee Hall,Female,4780,1957-01-04,O- -Karen Mann,Female,4781,1992-09-30,AB+ -Brian Figueroa,Female,4782,1968-02-17,B+ -Pamela Chavez,Female,4783,1983-07-02,O+ -Brian Alvarez,Male,4784,1961-09-15,B- -Ronald James,Female,4785,1986-08-26,B+ -Olivia Walsh,Male,4786,1945-06-05,A- -Kelly Colon,Female,4787,1998-05-03,O- -Jimmy Nicholson,Female,4788,1945-11-28,O- -Katherine Arnold,Male,4789,1998-03-22,A+ -Francis Brown,Male,4790,1991-02-08,O- -Richard Garcia,Male,4791,1957-11-14,O+ -John Silva,Female,4792,1963-07-18,A+ -Peter Bennett,Female,4793,1965-12-14,B+ -Christopher Fernandez,Male,4794,1983-05-16,O- -Ana Hale,Male,4795,1986-01-13,A- -Jamie Obrien,Male,4796,1964-10-16,B+ -Brandon Mann,Female,4797,1983-09-24,B- -Laurie Martin,Female,4798,2002-09-24,A- -Jordan Gordon,Male,4799,1991-05-13,AB- -Jamie Martin,Male,4800,1979-12-03,O+ -Benjamin Johnson,Female,4801,1998-02-14,B- -Nicole Young,Male,4803,1937-07-12,B- -Hannah Cruz,Female,4804,1966-01-08,A+ -Daniel Morris,Male,4805,1993-02-23,AB+ -Susan Carlson,Male,4806,2000-05-24,A+ -Kevin Allison,Female,4807,1975-06-03,O+ -Michael Pacheco,Male,4808,1994-12-27,O+ -Joseph Rivera,Male,4809,1987-06-06,A+ -Nicholas Henderson,Female,4810,1939-06-13,AB+ -Christina Blankenship,Male,4811,1949-10-02,A- -Scott Wong,Male,4812,1985-04-17,A+ -Courtney Harris,Male,4813,1962-05-07,O+ -Lindsey Jacobs,Male,4814,1944-01-29,AB+ -Anthony Hale,Male,4815,1998-02-18,O+ -Jason Dixon,Male,4816,1937-06-01,AB+ -Noah Evans,Female,4817,1980-04-23,AB+ -Shannon Vazquez,Male,4818,1971-04-24,B+ -James Cummings,Female,4819,1998-01-11,A+ -Robin Harper,Male,4820,1962-05-27,A+ -Kimberly Watkins,Female,4821,1963-08-14,A+ -Brian Cabrera,Male,4822,1957-06-02,AB+ -Billy Johnson,Female,4824,1938-12-18,AB+ -Michael Castro,Male,4825,1969-05-03,O+ -Amanda Thompson,Female,4826,1942-06-05,B- -Kirk Jones,Female,4827,1964-05-03,A+ -Susan Li,Female,4828,1953-11-08,B+ -Jennifer Spencer,Male,4829,1955-02-07,AB- -Carlos Graham,Female,4830,1985-01-18,O+ -Heather Allen,Male,4831,1939-09-22,O+ -Kelly Hebert,Male,4832,1963-09-02,O- -Kevin Farmer,Male,4833,1960-01-09,A+ -Cynthia Farley,Female,4834,1937-10-03,A- -Thomas Arnold,Female,4835,1990-05-29,O+ -Mike Duarte,Female,4836,1992-11-14,O- -Justin Brady,Female,4837,1966-10-01,AB- -Robert Burton,Male,4838,1930-06-02,B+ -Kenneth Cunningham,Male,4839,1990-08-12,AB- -Jonathon Perez,Female,4840,1960-07-18,A- -Julie Wolfe,Male,4841,1960-05-31,A+ -Andrew Mcdonald,Male,4842,1937-09-01,AB+ -Latoya Carpenter DDS,Male,4843,1944-07-16,O- -Ronald Singleton MD,Female,4844,1957-03-24,AB+ -Gregory Adams,Male,4845,1937-02-23,AB- -Mr. Tyler Baxter,Female,4846,1963-01-15,AB- -Thomas Evans,Female,4847,1933-01-09,B- -Mrs. Lydia Jones,Female,4848,1959-05-17,B- -Mr. Terry Jackson,Male,4849,1995-01-05,B+ -Kathleen Whitaker,Male,4850,1986-05-10,A- -Stephen Chavez,Male,4851,1985-05-30,B- -Brian Roach,Male,4852,1949-11-20,B- -Andrea Davis,Female,4853,1935-03-30,A- -Roger Leonard,Female,4854,1995-01-09,O+ -Lindsay Oneill,Female,4855,1983-04-09,B- -Kimberly Morales,Female,4856,2000-01-16,O+ -Justin Jones,Female,4857,1931-02-11,O+ -Donald Sparks,Female,4858,1967-06-25,A+ -Jason Smith,Male,4859,1930-06-16,O+ -James Robinson,Male,4860,1931-05-24,O+ -Dennis Todd,Female,4861,1979-05-29,B- -Shannon Brooks,Female,4862,1940-01-13,O+ -Alexandra Wilson,Female,4863,1984-05-30,AB+ -Brandi Brown,Male,4864,1965-09-24,A- -Robin Lee,Male,4865,1931-11-12,B- -Tonya Smith,Female,4866,1981-10-08,A- -Laura Warner,Female,4867,1980-08-30,O- -Candice Brown,Female,4868,1989-04-05,B- -Nicole Porter,Male,4869,1941-12-06,O+ -Jesus Nelson,Male,4870,1933-09-25,AB+ -Natalie Thomas,Female,4871,1956-01-28,A- -Caroline Moody,Female,4872,1936-04-11,B- -David Cunningham,Male,4873,1934-03-19,AB+ -Brittney Boone,Female,4874,1939-05-02,A- -Jason Hernandez,Female,4876,1996-01-21,O- -Jennifer Bishop,Male,4877,1953-12-18,AB- -Courtney Parker,Male,4878,2000-04-18,B+ -Robert Taylor,Female,4879,1980-01-26,B+ -Jeremiah Ewing,Female,4880,1930-06-24,O- -Ryan Decker,Male,4881,1936-02-09,AB- -Aaron Calderon,Female,4882,1941-09-27,A+ -Jacob Morris,Female,4883,1986-04-01,AB- -Katie Moody,Female,4884,1963-03-01,A+ -Oscar Lane,Female,4885,1949-06-16,B- -Dr. Vanessa Barnes,Male,4886,1956-07-12,A+ -Zachary Aguirre,Female,4887,1962-12-25,B+ -Mrs. Charlene Young,Female,4888,1983-07-17,B+ -Wesley Vincent,Male,4889,1979-02-24,AB+ -Michelle Branch,Male,4890,1933-02-25,A+ -Crystal Williams,Male,4891,1950-11-11,AB+ -Erica Roberts,Female,4892,1946-07-09,B+ -Thomas Oliver,Male,4893,1953-06-09,A- -Scott Thompson,Male,4894,1943-07-18,A- -Edward Jackson,Female,4895,1997-05-27,AB- -Benjamin Duncan,Female,4896,1935-03-23,AB- -Adrian Sandoval,Female,4897,1939-07-23,AB- -Megan Hayes,Male,4898,1981-10-19,A+ -Morgan Wallace,Male,4899,1941-06-05,AB- -Timothy Chandler,Male,4900,1960-04-18,A+ -Anthony Hanna,Male,4901,2002-04-13,A+ -Henry Hays,Male,4902,1978-05-26,O+ -Stephen Malone,Female,4903,1943-01-22,O+ -Jose Santiago,Male,4904,1943-02-18,A+ -Michele Mendoza,Male,4906,1965-09-20,A- -Courtney Martin,Male,4907,1968-11-28,AB+ -Lori Woodard,Male,4908,1993-09-02,B+ -Jason Fox,Male,4909,1982-12-30,B+ -Julia Jackson,Male,4910,1985-08-06,B- -Sarah Lopez,Female,4911,1943-09-07,O- -Janice Ibarra,Female,4912,1994-02-10,O+ -James Huff,Male,4913,1977-07-29,A+ -David Bailey,Male,4914,1952-03-18,O- -Julie Compton,Female,4915,1944-06-23,O+ -Miss Cynthia Massey,Male,4916,1958-12-18,B- -Robert Franklin,Male,4917,1980-12-28,B+ -Evan Jimenez,Male,4918,1978-11-25,AB+ -Michael Wilson,Female,4919,1947-08-06,A+ -Gregory Carpenter,Female,4920,1961-10-04,B- -Danielle Johnson,Female,4921,1931-01-25,B+ -Hannah Solomon,Female,4922,1932-09-26,A- -Valerie Williams,Female,4923,1965-01-29,O+ -Justin Bennett,Male,4924,1972-09-16,A+ -Anna Martin,Male,4925,1935-01-30,O- -Gary Cook,Female,4926,1952-03-31,A- -Kenneth Rivers,Female,4927,1967-10-08,B+ -Amy Nichols,Male,4928,1999-02-02,A- -Sandra Johnson,Male,4929,1937-07-26,AB- -Austin Oneal,Female,4930,1984-11-20,AB+ -Elizabeth Mcintyre,Male,4931,1943-08-27,B+ -Justin Bean,Male,4932,1934-01-21,A- -Michael Chavez,Female,4933,1994-09-22,O+ -Mitchell Ruiz,Male,4934,1940-03-20,AB+ -Amanda Peterson,Female,4935,1994-09-28,A+ -Bonnie Brooks,Male,4937,1976-02-04,AB- -Andrew Miller,Female,4938,2001-06-30,B+ -Anna Rubio,Female,4939,1983-04-30,B- -Nicole Daugherty,Female,4940,1977-04-10,AB+ -Desiree Williams,Female,4941,1986-12-05,O- -Dustin Davis,Male,4942,1985-12-30,O+ -Tracy Smith,Female,4943,1959-06-16,B+ -Michelle Hawkins,Female,4944,1983-10-31,O- -Joseph Daniels,Male,4945,1974-08-29,AB+ -Rodney Zimmerman,Male,4946,1953-06-15,B+ -Amanda Chase,Male,4947,1962-07-21,AB- -Joy Jones,Female,4948,1996-08-17,B- -Elizabeth Ponce,Female,4949,1960-10-24,B- -Todd Peck,Male,4950,1987-09-13,O- -Caitlyn Fisher,Male,4951,1961-04-30,A+ -Kevin Watson,Female,4952,1967-01-08,A+ -Shawn Brooks,Female,4953,1987-06-10,AB- -Joel Moore,Female,4954,1942-06-26,B- -Kathryn West,Male,4955,1974-05-09,O- -Nathan Holloway,Female,4956,1949-12-18,O- -Autumn Cardenas,Male,4957,1952-05-05,B+ -Lisa Long,Female,4958,1930-04-23,B+ -Joseph Mendoza,Female,4959,1988-11-27,O- -Jennifer Moran,Male,4960,1983-08-12,B+ -Richard Johnson,Male,4961,1973-08-07,AB+ -Edgar Compton,Female,4962,2002-07-22,B+ -Paul Parker,Female,4963,1975-03-29,AB- -Kevin King MD,Female,4964,1933-11-25,A+ -Justin Davis,Female,4965,1982-12-07,A+ -Deborah Salazar,Female,4966,1983-07-14,AB+ -Mrs. Tricia Porter,Male,4967,1998-09-13,O+ -Ronald Deleon,Male,4968,1959-08-05,AB+ -Chase Cooke,Male,4969,1946-07-19,AB- -Larry Barnes,Male,4970,1949-02-19,O- -Derrick Hoffman,Male,4971,1994-09-02,AB+ -Anthony Burton,Female,4972,1947-02-22,O- -Tammy Lopez,Male,4973,1932-06-06,AB- -James Garner,Female,4974,1983-05-11,A- -Jeremy Johnson,Male,4975,1974-12-29,AB- -Alexandria Lewis,Female,4976,1985-09-04,B- -Regina Vargas,Female,4977,1984-08-09,O- -Brian Black,Female,4978,1974-11-28,A+ -Sarah Medina MD,Female,4979,1988-01-22,AB+ -Nathaniel Fuller,Male,4980,1992-03-20,A- -Nicole Morris,Female,4982,1996-12-02,AB- -Keith Lindsey,Female,4983,2001-04-27,O- -Willie White,Male,4984,1963-07-20,A- -Randy Anthony,Female,4985,1981-12-29,O+ -Louis Evans,Male,4986,1951-06-26,B- -Rachel Smith,Female,4987,1998-07-10,O+ -Justin Peterson,Male,4988,1947-08-12,AB- -Timothy Leon,Female,4989,1966-10-31,O+ -Joseph Adams,Male,4990,1966-09-04,O+ -Cory Clark,Male,4991,1940-04-23,B- -Emily Campbell,Male,4992,1981-07-14,B- -Tara Murray,Male,4994,1973-09-02,B+ -Angela Cervantes,Female,4995,1964-03-25,B- -Rodney Harris,Female,4996,1956-09-02,A- -Ruth Mason,Female,4997,1992-04-07,B+ -Leonard Oneill,Male,4998,1997-08-20,B- -Jennifer White,Female,4999,1946-04-08,O+ -Donna Miller,Female,5000,1995-10-15,A+ -John Shaffer,Female,5001,1943-04-18,A+ -Joshua Kelly,Male,5002,1992-10-13,B+ -Garrett Sullivan,Male,5003,1994-07-24,B- -Anita Hill,Male,5004,1991-01-16,A- -Melissa Spencer,Female,5005,1992-08-08,AB+ -Shelby Moore,Female,5006,1971-07-11,O- -Sandra Fernandez,Female,5007,1982-06-02,AB- -Mary White,Female,5008,1987-01-22,A- -Jessica Marquez,Male,5009,2001-02-28,AB+ -Aaron Hicks,Female,5010,1992-04-10,AB- -Nancy Kim,Female,5011,1990-06-12,AB+ -Makayla Brady,Female,5012,1945-11-06,AB+ -Ashley Robinson,Male,5013,1930-07-21,B+ -Tiffany Wang,Female,5014,1991-09-22,A+ -Adam Richmond,Female,5016,1958-12-01,O- -Jennifer Williams,Female,5017,1976-04-10,AB+ -Samantha Morgan,Female,5018,1951-03-09,B- -Stephanie Murphy,Female,5019,2000-12-16,AB- -Tony Obrien,Female,5020,1935-06-12,A- -Pamela Miller,Female,5021,1972-04-11,A+ -John Fry,Male,5022,1962-02-19,AB- -Dustin Owens,Male,5023,1969-01-12,B+ -Erika Walker,Female,5024,1985-04-08,B- -Stacey Cohen,Male,5025,1990-10-05,B- -Jamie Novak,Female,5026,1949-08-11,AB+ -John Reynolds,Male,5028,1965-10-09,B- -Crystal Hatfield,Female,5029,1991-12-12,O- -Andrew Garrett,Male,5030,1968-08-23,B+ -Diamond Wright,Female,5031,1952-12-30,B- -Allison Davidson,Female,5032,1945-06-04,AB+ -Andrea Macdonald,Male,5033,1945-10-04,AB- -Henry Kim,Female,5034,1959-08-22,B+ -Jennifer Spencer,Female,5036,1992-02-18,B- -Shirley Allen,Female,5037,1941-04-10,A+ -Kathryn Rodriguez,Male,5038,1997-09-15,B+ -Monica Perez,Female,5039,1934-02-27,B+ -Benjamin Duran,Female,5040,1991-09-25,A- -Mark Farmer,Female,5041,1974-10-03,A+ -Cameron Martin,Male,5042,1937-02-13,A+ -Zachary Ortega,Male,5043,1966-03-30,AB- -Tiffany Richmond,Female,5044,1980-11-13,O+ -Karen James,Male,5045,1939-09-25,A- -Shannon Valentine,Male,5046,1974-05-03,A+ -Deborah May,Male,5047,1982-08-29,A+ -Robert Anderson,Female,5048,1971-10-06,O+ -Sean Ramirez,Female,5049,1974-05-04,AB- -Denise Fischer,Female,5050,1934-10-09,A- -Christopher Williams,Female,5051,1933-07-30,A+ -Matthew Perry,Male,5052,1940-07-16,AB+ -Jason Johnson,Female,5053,1963-11-04,AB- -Yolanda Ross,Female,5054,1964-12-16,A- -Mary Walters,Female,5055,1995-06-12,A+ -Craig Moore,Male,5056,1965-09-06,A+ -Daniel Norman,Male,5057,1941-06-27,O+ -Mark Carlson,Male,5058,1989-01-13,A- -Henry Skinner,Female,5059,1981-11-08,AB+ -Michael Torres,Male,5060,1981-03-03,AB- -James Wallace,Male,5061,1950-11-11,B- -Mary Holmes,Female,5062,1955-05-30,O- -Elizabeth Mccoy,Male,5063,1937-03-27,AB+ -Bradley Humphrey,Male,5064,1955-08-27,B- -Christopher Day,Male,5065,1969-02-21,AB+ -Daniel Patrick,Female,5066,1992-05-28,A- -Gordon Thompson,Female,5067,1972-04-08,B- -Alicia Brewer,Female,5068,1972-11-30,A- -Ebony White,Female,5069,1943-01-10,B- -Peter Bishop,Female,5070,1938-03-14,AB+ -Lisa Stewart,Male,5071,1998-10-26,O+ -Danielle Flores,Male,5072,1971-09-09,AB+ -Dr. Harold Fischer,Female,5073,1933-06-25,A- -Nicole Shelton,Female,5074,1934-12-19,AB+ -Katrina Schultz,Female,5075,1998-12-15,B+ -Kimberly Hill,Female,5076,1981-08-06,B+ -Andrea Morgan,Male,5077,1986-02-20,B- -Sheri Dixon,Female,5078,1991-08-17,B+ -Lisa White,Female,5079,1953-03-16,O- -Sara Moody,Male,5080,1942-01-14,B- -Alyssa Mcdonald,Female,5081,1955-06-02,B+ -Zachary Norton,Male,5082,1966-06-19,A+ -Douglas Yates,Male,5083,1977-02-03,AB+ -Don Davis,Male,5084,1994-11-09,AB- -Colleen Mitchell,Female,5085,1994-12-06,AB+ -Tamara Doyle,Female,5086,1930-03-24,B+ -Matthew Frost,Male,5087,1935-04-05,O+ -Penny Hebert,Female,5088,1951-05-28,A- -Kevin Lopez,Male,5089,1961-12-27,AB- -Jordan Finley,Male,5090,1961-01-14,B- -Eugene Bates MD,Male,5091,1972-09-13,O+ -Thomas Barnes,Female,5092,1935-09-25,AB+ -Sarah Brown,Male,5093,1965-05-02,B+ -Sarah Benjamin,Male,5094,1994-03-21,B- -Michelle Anthony,Male,5095,1996-09-02,B- -Alexandria Gonzalez,Female,5096,1952-11-28,A+ -Christopher Gonzalez,Female,5097,1944-06-21,A+ -Julie Davis,Male,5098,1959-11-01,B+ -Sandra Carter,Male,5099,1943-07-09,B+ -Kirk Berry III,Female,5100,1975-11-14,O- -Desiree Oconnor,Female,5101,1979-11-02,A+ -Daniel Flores,Male,5102,1980-08-11,A- -David Schultz,Female,5103,1965-07-13,AB- -Bruce Torres,Male,5104,1984-05-31,B- -Jennifer Willis,Male,5105,1979-09-24,A+ -Jeffrey Murphy,Male,5106,1951-01-05,B+ -Kevin Vazquez,Male,5107,1978-08-05,O- -Andrea Lambert,Female,5108,1994-10-30,B+ -Jose Flores,Male,5109,1940-01-25,B+ -Nicholas Wright,Female,5110,1936-08-23,B+ -Alan Velasquez,Female,5111,1997-06-26,AB+ -Diane Clark,Female,5112,1997-01-02,AB- -Nathan Sanders Jr.,Male,5113,1938-02-10,A+ -John Hill,Male,5114,1932-05-09,B- -Christina Simmons,Female,5115,1962-12-27,AB+ -Sarah Calhoun,Female,5116,1941-05-01,B+ -Mason Washington,Female,5117,1936-08-21,A- -David Gonzalez,Male,5118,2000-03-14,B- -Chad Riley,Female,5119,1958-07-02,AB+ -Jenny Vazquez,Female,5120,1940-12-31,A- -Darren Anderson,Male,5121,1958-08-13,A- -Melissa Taylor,Female,5122,1958-02-21,AB- -Dr. Christopher Rogers,Female,5123,1998-04-18,B- -Lynn Koch,Female,5124,1960-02-09,A+ -Lauren Garner,Female,5125,1997-09-12,A+ -Michael Munoz,Male,5126,1933-02-08,O- -Susan Cochran,Male,5127,1989-01-01,AB+ -Kelly Barnes,Male,5128,1944-01-07,O- -Joseph Brooks,Female,5129,1945-08-04,O+ -Monique Rodriguez,Female,5130,1991-08-29,A+ -Brian Watkins,Male,5132,1989-11-16,AB+ -Justin Caldwell,Female,5134,1941-05-27,AB- -Shannon Osborne,Male,5135,1981-04-13,O- -Rebecca Eaton,Female,5136,1943-10-19,AB- -Anne Coleman,Female,5137,1988-04-07,AB- -Samantha Wilson,Female,5138,1970-01-22,B+ -Austin Hull,Female,5139,1958-08-04,B+ -Paula Clark,Male,5140,1952-08-05,AB- -Laura Walton,Female,5141,1988-08-29,O- -Brianna Hardy,Female,5142,1985-07-16,B+ -Jacob Pierce,Female,5143,1978-07-09,O+ -Tyler Benjamin,Female,5144,1978-02-06,A- -Kent Carrillo,Female,5145,1986-12-23,A- -Brandon Obrien,Male,5146,1934-04-01,B+ -Lindsey Burgess,Male,5147,1964-07-26,O- -Steven Jenkins,Male,5148,1934-06-18,A- -Rebecca Davis,Female,5149,2000-12-02,B- -Courtney Hansen,Male,5150,1979-01-14,A- -Juan Flynn,Male,5151,2001-11-13,A+ -Jeremy White,Female,5153,1933-09-23,O- -Darin Rhodes,Female,5154,2001-08-05,B+ -Shawna Young,Female,5155,1941-12-19,B+ -Jon Thomas,Female,5156,1944-06-19,A- -Sean Brown,Male,5157,1950-11-02,O- -Christopher Scott,Male,5158,1958-11-28,O+ -Michael Ashley,Male,5160,1970-11-11,B- -Joseph Brown,Female,5161,1970-08-18,B+ -Connie Alvarez,Female,5162,1962-09-19,O- -Rachel Stewart DDS,Female,5163,1959-02-04,B+ -Alexis Miller,Female,5164,1935-06-17,B+ -Rachel Davis,Male,5165,1932-05-19,A+ -Natasha Goodwin,Female,5166,1932-10-11,A- -Nancy Johnson,Female,5167,1957-08-30,A+ -Holly May,Female,5168,1976-07-04,A- -Adam Mueller,Male,5170,1962-11-22,B+ -Mrs. Kristin Trujillo,Female,5171,1931-11-22,O- -Lisa Graves,Male,5172,1998-08-21,AB- -Alice Roth,Female,5173,1976-03-13,A- -Logan Adams,Male,5174,1993-08-26,AB- -Jessica Michael,Male,5175,1994-09-06,B- -Robert Hunter,Male,5176,1959-06-06,A+ -Angela Wheeler,Male,5177,1996-03-05,AB- -Ryan Jackson,Female,5178,1951-12-21,A+ -Jessica Schultz,Female,5179,1975-08-31,A- -Cindy Robinson,Male,5181,1945-01-10,A- -Kendra Walker,Female,5182,1985-11-19,B- -Eugene Fisher DDS,Female,5183,1960-03-19,A- -Michael Harding,Male,5184,1982-10-31,B+ -Lauren Davis,Female,5185,2001-12-27,B- -Robert Cowan,Female,5186,1987-11-06,AB- -Zachary Pearson,Male,5187,1979-12-27,A- -Jamie Smith,Female,5188,1965-03-13,O- -Michelle Charles,Female,5189,1983-10-12,AB+ -Cheryl Mason,Male,5190,1937-09-18,O+ -Angie Peterson,Female,5191,1998-07-03,B+ -Stacey Wright,Female,5192,1984-10-29,AB+ -John Johnson,Male,5193,1942-03-17,AB+ -Patricia Sullivan,Male,5195,1944-07-13,A+ -Debra Figueroa,Female,5196,1954-06-17,B+ -Benjamin Adams,Male,5197,1980-06-12,B+ -Tammy Gomez,Female,5198,1976-09-19,B- -Daniel Brown,Female,5199,1959-03-09,A+ -Margaret Chung,Female,5200,1945-09-17,AB- -Carolyn Stanley,Female,5201,1945-07-09,O+ -Aaron Hamilton,Male,5202,2001-01-02,AB- -Melissa Thomas,Male,5203,1969-07-02,O- -Christine Edwards,Male,5204,1951-01-28,O+ -Gina Gonzales,Female,5205,1996-11-07,A+ -Sandra Ingram,Male,5206,1975-01-11,A- -Christopher Davis,Male,5207,1951-06-09,A- -Mr. Chad Gray PhD,Male,5208,1959-06-09,A+ -Mathew Reilly,Female,5209,1966-10-29,AB- -Victoria Castillo,Male,5210,1950-02-17,A+ -Raymond Morton,Female,5211,1967-01-03,A+ -Amy Barnes,Female,5212,1993-10-16,AB+ -Tiffany Stewart,Male,5213,1952-10-18,O- -Joseph Schneider,Male,5214,1939-12-24,B+ -Lorraine Key,Male,5215,1988-06-19,A- -Jody Taylor,Male,5217,1951-11-30,AB+ -Sierra Johnson,Female,5218,1938-12-23,A+ -Lindsay Johnson,Female,5219,1949-12-23,B- -Edward Ramirez,Male,5220,1999-07-16,AB+ -Elizabeth Jones,Male,5221,1938-06-02,A+ -Christine Jones,Female,5223,1966-04-23,A- -Nicholas Jacobs,Male,5224,1960-08-04,B+ -Daniel Goodwin,Male,5225,1952-10-04,A+ -Shane Holland,Male,5226,1995-07-15,O- -Pamela Jones,Male,5227,1934-06-26,AB- -Todd Oneill,Female,5228,1967-05-19,O+ -Kevin Browning,Female,5229,1943-12-22,AB+ -James Friedman,Male,5230,1999-10-26,AB+ -Courtney Holmes,Female,5231,1976-08-15,AB+ -Christopher Day,Female,5232,1935-07-26,A+ -Cory Carter,Female,5233,1937-07-24,B+ -Elizabeth Hernandez,Female,5234,1971-08-09,O- -Sean Clarke,Female,5235,1980-07-09,B+ -Jennifer Meza,Male,5236,1975-07-09,A+ -Stacy Martin,Female,5237,1937-04-22,A+ -James Nelson,Male,5238,1970-01-29,AB- -Daniel Rodriguez,Male,5239,1973-09-06,B- -Jennifer Brown,Female,5240,1977-01-20,O- -Jordan Bass,Female,5241,1988-09-16,AB+ -Patrick Simpson,Female,5242,1963-10-31,O+ -Glenda Miles,Male,5243,1930-07-15,AB+ -Ronald Mcguire,Female,5244,1935-12-28,B+ -Charlene James,Female,5245,1962-01-20,A+ -Kathleen Chambers,Male,5246,1936-05-19,O- -Charles Davis,Male,5248,1988-02-11,A- -Bryan Beasley,Female,5249,1939-11-16,O- -Ryan Espinoza,Male,5250,1998-01-16,O- -Francis Fitzpatrick,Male,5251,1930-03-02,B- -William Deleon,Male,5252,2002-07-11,AB+ -Tina Ramsey,Male,5253,1969-05-23,B- -Matthew Livingston,Male,5254,1940-10-02,A- -Jeanne Perez,Female,5255,1947-03-29,A- -Alexander Henderson,Female,5256,1967-04-19,AB- -Monica Lang,Male,5257,1968-09-03,B+ -Christopher Contreras,Male,5258,1937-02-04,O+ -Nicole Anderson,Female,5259,1998-11-02,AB- -James Lane,Female,5260,1963-03-16,A+ -Robert Bates,Male,5261,1973-02-12,B- -Cynthia Smith,Male,5262,2001-08-03,B- -Robyn Griffith,Male,5263,1946-10-05,AB- -Stephen Hernandez,Male,5264,1933-04-15,A+ -Hannah Moore,Male,5265,1973-01-16,O- -Stacy Stewart,Male,5267,1982-09-03,A+ -Brooke Robinson,Male,5268,1960-05-10,AB+ -Jeffery Scott,Male,5269,1994-02-02,AB- -Jonathon Brown,Male,5270,2000-09-02,B+ -Rhonda Ball,Female,5271,1949-02-02,A+ -Charles Mitchell,Female,5272,1930-05-17,O- -Charles Watts,Female,5273,1977-09-04,A+ -Derek Woodard,Female,5274,1972-01-07,B- -Sean Harris,Male,5275,1981-12-17,O+ -Kelly Carr DVM,Male,5276,1994-08-03,B- -Diane Reese,Male,5277,1931-10-24,B+ -Jacob Buckley,Female,5278,1936-10-08,A- -Stephanie Blake,Male,5279,1930-03-28,O+ -James Avery,Male,5280,1959-04-23,A- -Ashley Ortiz,Female,5281,1947-01-11,A+ -Monica Gonzalez,Female,5282,1997-02-25,AB+ -Kimberly Livingston,Female,5283,1974-09-09,B+ -Benjamin Finley,Male,5285,1970-05-20,A+ -Maria Rodriguez,Male,5286,1949-01-29,O- -Nicole Hull,Female,5287,1982-06-14,A+ -Sarah Morgan,Male,5288,1967-03-24,O+ -Kimberly Adams,Male,5289,1934-08-28,B- -Andrew Lopez,Male,5290,1937-05-24,AB+ -Steven Snyder,Female,5291,1993-07-08,A- -Christine Trevino,Male,5293,1962-05-14,A+ -Erica Pruitt,Female,5294,1979-05-15,A+ -John Pitts,Male,5295,1991-05-23,B- -Marcus Russell,Female,5296,1988-12-30,AB+ -Rachel Carter,Female,5297,1945-02-11,AB- -Rachel Gray,Female,5298,1961-07-07,A- -Javier Fox,Male,5299,1940-02-05,A+ -Douglas Lyons,Female,5300,1976-06-28,A+ -Holly Clark,Male,5301,1987-04-21,AB- -Jonathan Keller DVM,Male,5302,1998-08-12,A- -Jessica Moore,Female,5303,1954-03-13,O+ -Mrs. Gabrielle Willis,Male,5304,1970-12-12,O+ -Michele Scott,Female,5305,1960-11-20,B+ -Morgan Christensen,Male,5306,1968-02-08,B+ -Christopher Zamora,Male,5307,1943-01-10,O- -Savannah Terry,Female,5308,1965-09-19,B- -Diana Thornton,Male,5310,1986-11-11,AB+ -Jody Hernandez,Male,5311,1954-05-27,A+ -Paul Golden,Male,5312,1942-12-17,A- -Sarah Anderson,Male,5313,1949-05-22,A+ -Kenneth Lowery,Male,5314,1953-10-17,B+ -Shelly Zavala,Female,5316,1994-05-06,O- -Vincent Young,Male,5317,1987-10-22,A- -Ashley Santiago,Female,5318,1934-08-01,A- -Connie Taylor,Male,5319,1969-03-15,A+ -Mr. Jared Barry,Male,5320,1997-08-07,B- -Melanie Walker,Female,5321,1960-08-02,O- -Miranda Cohen,Female,5322,2002-01-15,B- -Raymond Cruz,Male,5323,1967-02-01,O- -Kathleen Graham,Male,5324,1962-04-26,A+ -Joshua Simpson,Male,5325,1994-07-06,O- -Mariah Dalton,Male,5326,1936-04-13,O+ -Nicole Santiago,Male,5327,1939-12-10,A- -Erik Wilson,Male,5328,1971-04-29,AB+ -Kathryn Castillo,Male,5329,1975-04-05,A+ -Gerald Knox,Male,5330,1969-07-28,AB- -Angel Armstrong,Male,5331,1963-05-02,AB+ -Katherine Freeman,Female,5332,1939-06-16,A+ -Cathy Rhodes,Female,5333,1942-05-05,AB+ -Samuel Gilbert,Male,5334,1990-09-10,O+ -Lori Kim,Female,5335,1996-01-30,AB+ -Michael Nielsen,Female,5336,1959-01-11,O- -Robert Henderson,Female,5337,1945-05-30,B+ -Mark Ruiz,Male,5338,1952-10-20,AB+ -Kimberly Nichols,Male,5339,1972-07-13,A+ -Matthew Cruz,Male,5340,1984-01-22,AB- -Victoria Johnson,Male,5341,1983-02-01,AB- -Courtney Suarez,Female,5342,1939-09-23,B+ -Ashley Thompson,Female,5343,1974-11-28,B- -Jasmine Smith,Female,5344,1936-02-21,B+ -Joanne Smith,Female,5345,1970-02-25,A- -Ashley Barron,Female,5346,1992-02-27,AB+ -Deborah Robinson,Male,5347,1943-12-16,AB- -Lee Smith,Male,5348,1953-08-28,B+ -William Smith,Female,5349,1935-05-03,AB+ -Denise Lee,Male,5350,1999-11-16,A- -Nathaniel Durham,Female,5351,1945-05-20,AB- -Ronald Lee,Male,5352,1941-08-07,A- -Tanya Robinson,Male,5353,1993-10-02,AB+ -Brandon Miller,Male,5354,1935-04-05,A+ -Janice Savage,Male,5355,1960-07-31,AB+ -Christina Robbins,Male,5356,1941-06-20,B+ -Sarah Moore,Male,5357,1963-06-04,A- -Samuel Christensen,Female,5358,1930-08-27,A+ -Thomas Moran,Male,5359,1930-07-24,A+ -David Gonzales,Female,5360,1959-07-27,B- -Catherine George,Male,5361,1945-03-15,AB- -Amanda Aguilar,Female,5362,1943-06-29,O- -Tracy Hale,Male,5363,1960-07-26,A+ -Bradley Ryan,Male,5364,1942-01-08,A- -Richard Lee,Female,5365,1982-03-20,AB- -Jesus Griffin,Female,5366,1988-05-31,O+ -Mr. Victor Austin,Male,5367,1972-10-28,AB+ -Charles Hampton MD,Male,5368,1946-11-13,B+ -Nicholas Hayden,Female,5369,1989-08-11,A- -Michelle Reilly,Male,5370,2000-12-23,O+ -Diane Wallace,Male,5371,1973-04-15,A- -Bonnie Young,Female,5372,1944-01-14,AB+ -Linda Lawrence,Female,5373,1932-03-27,B- -Michele Jones,Female,5374,1966-09-23,A- -Donna Lewis,Female,5375,1999-07-14,A+ -Jeffrey Garcia,Female,5376,1930-07-12,O- -Shannon Smith,Male,5377,1979-09-21,A+ -George Townsend,Male,5378,1939-12-25,AB+ -Lori Atkinson,Male,5379,1965-02-02,A- -Lindsey Johnson,Male,5380,1947-04-16,O- -Erik Curtis,Male,5381,1997-12-21,A+ -Daniel Castillo,Female,5382,1979-10-03,O- -Kelly Collins,Female,5383,1950-03-11,B+ -Melissa Pacheco,Female,5384,1940-02-18,AB+ -Mckenzie Roberson,Male,5385,1959-03-05,B- -Maria Schmitt,Male,5386,1971-06-04,B- -Andrew Cantrell,Male,5387,1955-08-17,A- -Heather Watkins,Male,5388,1940-08-29,A+ -Kimberly Bond,Female,5389,1948-08-25,O+ -Lisa Alvarado,Male,5390,1955-06-07,AB+ -Dennis King,Male,5391,1982-03-12,A+ -Shawn Mcintyre,Female,5392,2002-05-06,A+ -Christopher Campbell,Male,5394,1985-07-19,B- -Cynthia Clark,Male,5395,1994-09-26,A- -Joseph Williams,Female,5396,1931-05-20,O- -Caleb Chandler,Male,5397,1956-11-13,AB+ -Michael Sanchez,Female,5398,1970-03-03,B+ -Mr. Andrew Dunn,Female,5399,1959-05-27,O- -Vincent Willis,Male,5400,2001-01-31,AB- -Miguel Miranda,Female,5401,1960-08-17,AB- -Deanna Deleon,Female,5402,1948-07-18,AB+ -Tina Lin,Female,5403,1940-06-13,A- -Shannon Lloyd,Female,5404,1931-12-19,O+ -Andrea Fernandez,Male,5405,1961-12-20,AB- -Miranda Armstrong,Male,5406,1942-02-21,B- -William Robbins,Male,5407,1976-08-29,O+ -Danielle Lee,Female,5408,1943-11-06,A+ -Nicholas Scott,Male,5409,1985-10-31,AB- -Kayla Hughes,Female,5410,1943-09-04,B- -Mackenzie Reed,Male,5411,1941-08-05,A+ -Daniel Howard,Male,5412,1940-04-22,O+ -Justin Suarez,Female,5413,1960-08-12,AB+ -Elizabeth Taylor,Female,5415,1942-09-12,A+ -Joseph Price,Female,5416,1935-10-06,O- -Mark Rhodes,Male,5417,1955-11-13,AB+ -Mark Sanders,Female,5418,1993-06-24,AB+ -Julie Allen,Male,5419,1959-03-24,O+ -Jackson Ward,Male,5420,1998-05-03,O+ -Dawn Barry,Male,5421,1981-12-30,B- -Nicole Santos,Male,5422,1952-12-16,B- -Kenneth Gonzalez,Male,5423,1962-11-08,O- -Robert Figueroa,Male,5424,1940-03-08,AB+ -Mark White,Female,5425,1937-01-25,B+ -Dakota Norton,Male,5426,1981-11-18,A- -Erin Mclean,Male,5427,1937-07-26,O- -Samantha Phillips,Male,5428,1992-03-08,O- -Eric Whitaker,Female,5429,1946-05-28,A- -Traci Henderson,Female,5430,1958-11-01,A- -John Larson,Male,5431,1984-03-08,A- -Jill Davis,Male,5432,1999-04-16,O+ -John Kirk,Female,5433,1960-04-17,O- -Steven Cohen,Female,5434,1960-12-21,O- -Elizabeth Macdonald,Male,5435,1943-02-02,A+ -Michaela Smith,Female,5436,1941-06-09,A- -Sally Thomas,Female,5437,1971-07-14,A- -Cynthia Thomas,Female,5438,1947-09-25,B- -Richard Eaton,Female,5439,1981-12-27,B- -Joseph Rodriguez,Male,5440,1997-04-04,AB+ -Kristin Jones,Female,5441,1936-07-10,B- -Steven Ortiz,Male,5442,1976-04-24,AB- -Matthew Strong,Male,5443,1991-07-03,AB+ -Jennifer Hughes,Male,5444,1964-03-31,B+ -Shawn Mcintosh,Female,5446,1931-09-27,A- -Kimberly Oconnell,Male,5447,2002-02-17,A+ -Rebecca Keller,Female,5448,1962-11-05,B- -Christina Nelson,Male,5449,1968-10-10,A+ -Craig Klein,Female,5450,1974-11-12,B- -Ryan Gibson,Male,5451,1968-05-06,B- -Peter Jones,Female,5452,1952-12-28,A+ -Richard Johnson DDS,Male,5453,1991-02-25,O- -Christopher Calderon,Male,5454,1963-10-02,O- -Tanner Davis,Female,5455,1969-05-30,O- -Tracy Coleman,Male,5456,1990-04-06,AB- -Julie Gould,Female,5457,1996-01-18,O- -Alexis Rice,Male,5458,1991-04-18,B- -Victoria Jackson,Female,5459,1937-11-30,A- -Maria James,Female,5460,1959-09-24,O+ -Parker Carson,Male,5461,1991-12-10,A+ -Christopher Adkins,Male,5462,1951-12-23,A- -Randy Herrera,Male,5463,1939-01-20,O+ -Mrs. Jill Jones,Male,5464,1932-06-16,A- -Robert Mcguire,Male,5465,1955-05-27,AB- -Michelle Hill,Male,5466,1955-12-07,O+ -Daniel Hammond,Female,5467,1970-10-14,B+ -Danielle Rice,Female,5468,1971-09-23,AB+ -Kristine Wilson,Female,5469,1970-03-15,O- -Amber Thomas,Male,5470,1931-11-02,B+ -Justin Thomas,Male,5472,1994-10-27,AB- -Dr. Caitlyn Miller,Female,5473,1978-12-24,A- -Leslie Oconnor,Female,5474,1992-07-18,B- -Miranda Martin,Male,5475,1962-03-21,O- -Thomas Smith,Male,5476,1965-08-11,B+ -Patricia Robinson,Female,5477,1989-01-02,O- -Lindsey Yang,Female,5478,1973-03-04,O+ -Timothy Martinez,Female,5479,2002-08-22,AB+ -Kevin Howard,Male,5480,1989-03-31,O- -Stephen Campbell,Female,5481,1975-07-17,A- -Melinda Howard,Male,5482,1992-07-15,A- -George Robinson,Female,5483,1935-03-08,A+ -Joseph Bennett,Male,5484,1939-06-02,A+ -Richard Weaver,Female,5485,2002-05-12,O- -Cheryl Peterson,Female,5486,1937-10-25,O+ -Michelle Krause,Female,5487,2001-05-27,O+ -Kimberly Perry,Female,5488,1961-09-12,B- -Daniel Baldwin,Female,5489,1962-03-17,AB- -Edward Bryan,Female,5490,1985-03-29,AB- -Thomas Allen,Male,5491,1961-10-23,B+ -Ryan Chen,Male,5492,1989-06-14,AB- -Robert Chandler,Female,5493,1996-05-29,AB+ -Nathan Meyers,Female,5494,1952-07-19,O+ -Courtney Osborne,Female,5495,1984-09-30,B- -David Mcdonald,Male,5496,1937-03-03,A+ -Thomas Hall,Female,5497,1987-09-01,A- -Rebecca Rose,Male,5498,1938-08-30,AB- -Tiffany Jones,Female,5499,2000-10-24,A+ -Jeffrey Oliver,Male,5500,1938-01-21,A+ -Carla Ortiz,Female,5501,1997-11-20,O- -Crystal Cox,Female,5502,1935-04-10,AB+ -Spencer Morgan,Male,5503,1938-02-20,B- -Mary Campbell,Male,5504,1962-01-18,AB+ -Kristine Thomas,Female,5505,1959-02-18,O- -Paul Harris,Female,5506,1960-01-10,B- -Lindsey Clements,Male,5507,1977-07-27,B- -Heather Burnett,Male,5508,1960-06-30,O+ -Cynthia Wright,Female,5509,1979-10-27,AB+ -Jodi Torres,Female,5510,1973-08-18,AB+ -Scott Singh,Male,5511,1965-12-28,O+ -Sara Craig,Male,5512,1999-06-27,B+ -Brandi Johnson,Female,5513,1931-05-05,A+ -Austin Castillo,Female,5514,1962-03-02,O- -Mark Sexton,Female,5515,1990-12-12,AB+ -Jackie Ryan,Male,5516,2001-05-17,O+ -Omar Fry,Female,5517,1984-11-02,A- -Jennifer Davidson,Female,5518,1994-03-31,B+ -Maurice Davis,Male,5520,1982-10-10,B- -Carol Tate,Female,5521,2001-12-15,AB- -Taylor Walton MD,Female,5522,1939-08-18,A- -Anthony Wilson,Female,5523,1984-01-02,O+ -Tracy Buchanan,Female,5524,1947-07-21,AB- -Karen Ortega,Female,5525,1930-02-23,A+ -Christopher Mason,Male,5526,1981-11-28,O- -Douglas Rogers,Female,5527,1976-07-17,AB- -Heather Weeks,Male,5528,1946-04-11,B+ -Madison Myers,Male,5529,1950-04-10,A+ -Thomas Diaz,Female,5530,1932-08-12,AB- -Matthew Kline,Male,5531,1959-02-03,B- -Deanna Patterson,Male,5532,1934-06-18,B- -Laura Cruz,Female,5533,1960-01-17,B+ -Victoria Arroyo,Female,5534,1948-10-12,B- -Zachary Fletcher,Female,5535,1954-03-17,B- -Amy Valdez,Female,5536,1958-11-09,O+ -Jaclyn Shepherd,Female,5537,1964-09-21,B- -Andrea Walker,Male,5538,1938-12-23,A- -Kimberly Rodriguez,Male,5539,1989-10-17,B- -Karen Turner,Female,5540,1985-04-07,A- -William Benitez,Female,5541,1981-11-14,O+ -Laura Gonzalez,Female,5542,1947-11-27,B- -Brian Meza,Female,5543,1975-11-15,B+ -Eric Mercado,Female,5544,1932-05-07,A+ -Christopher Ellis,Male,5546,1943-05-19,B+ -Amanda Sanchez,Female,5547,1965-06-11,A+ -Jessica Anderson,Female,5548,1950-06-30,AB+ -Allen Gibson,Male,5549,1967-06-16,A+ -Angela Bryant,Female,5550,1975-11-28,O- -Robin Miller,Female,5551,1969-06-02,O- -Destiny Evans,Female,5552,1959-06-02,O- -Daniel Taylor,Male,5554,1941-11-13,O+ -Tina Tucker,Female,5555,1986-08-09,B+ -Pamela Gomez,Female,5556,1982-04-27,A+ -Robert Cabrera,Female,5557,1963-06-23,B+ -Samuel Knight,Female,5558,1991-11-05,A- -Natalie Love,Female,5559,1966-10-19,O- -Jodi Foster,Male,5560,1971-02-15,AB+ -Amy Coleman,Male,5561,1991-08-04,O+ -Emily Glenn,Female,5562,1941-08-22,AB+ -Brittany Jacobs,Female,5564,1963-05-08,A+ -John Miller,Male,5565,1974-03-11,B- -Cameron Sellers,Female,5567,1932-07-11,AB+ -Ashley Palmer,Male,5568,1982-11-03,B- -Regina Castillo,Female,5569,1951-10-15,O+ -Kenneth Fletcher,Male,5570,1983-03-14,AB+ -Bonnie Jones,Male,5571,1973-04-01,AB+ -Theresa Sloan,Female,5572,1999-12-15,AB- -Nathaniel Thomas,Male,5573,1933-05-15,O+ -Kelly Erickson,Male,5574,1959-02-05,O+ -Jessica Lyons,Male,5575,1995-10-18,O- -Adrienne Stanley,Male,5576,1957-05-25,A+ -Joe Norton DVM,Female,5577,1943-07-05,AB+ -Dave Bass,Male,5578,1969-02-20,B+ -Ian Martin,Male,5579,2001-01-07,AB+ -Luis Ellis,Male,5580,1974-11-03,A- -Kyle Dunlap,Female,5581,1985-08-24,O+ -Richard Manning,Male,5582,1992-08-10,B+ -Madison Franklin,Male,5583,1930-07-23,O+ -Randy Trevino,Female,5584,1975-04-19,A+ -Crystal Smith,Female,5585,1973-07-13,O+ -Dylan Cooper,Female,5586,1999-05-23,B- -Amanda Walker,Female,5587,1940-04-06,B- -Dr. Richard Mitchell MD,Male,5588,1948-05-24,AB- -Abigail Smith,Female,5590,1981-12-04,B- -Sara Johnson,Male,5591,1932-12-29,B- -David Padilla,Male,5592,1971-09-11,A+ -Kiara Miller,Female,5593,1987-03-07,AB+ -Justin Lee,Male,5594,1998-12-13,B- -Laura Hughes,Female,5595,1973-11-25,B+ -Chelsey Hamilton,Female,5596,1945-08-20,AB- -David Olson,Female,5597,1956-08-24,O+ -Daniel Wong,Female,5598,1982-09-24,B- -Christine Young,Male,5599,1938-09-27,AB- -Keith Olson,Male,5600,1979-11-21,A+ -Jillian Riggs,Female,5601,1931-11-21,A- -Beth Perry,Female,5602,1985-02-24,A- -Rachel Thomas,Female,5603,1935-10-05,A- -Audrey Hall,Female,5604,1931-01-01,O+ -Robert Decker,Female,5605,1968-05-11,AB- -Erica Barrett,Male,5606,1962-03-21,B- -Katie Santos,Male,5607,1974-02-02,AB+ -Tiffany Hodges,Female,5608,1997-01-05,O+ -Bonnie Robinson,Female,5609,1964-11-20,O+ -Ashley Mitchell,Female,5610,1963-12-05,A- -Mr. Eric Simpson MD,Female,5611,1941-06-04,AB+ -Mary Clark,Female,5612,1991-05-18,A- -Johnathan Smith,Male,5613,1972-10-10,O+ -Lori Holland,Female,5614,1936-07-06,B- -Charles Smith DDS,Female,5615,1978-02-27,A- -Hailey Scott,Male,5616,1988-07-07,A- -Michael Duncan,Male,5617,1962-12-10,B+ -Tammy Howard,Male,5618,1945-07-10,A- -Kevin Ford,Male,5619,1937-06-28,O+ -Chad Davis,Male,5620,1957-01-06,B- -Teresa Richardson,Male,5621,1953-03-31,AB+ -Angela Obrien,Female,5622,1932-08-14,O- -Melissa Montoya,Female,5623,1955-06-25,AB+ -Allison Howard,Female,5624,1948-02-19,B- -David Dunn,Male,5625,1970-10-26,A+ -Sandra Roman,Female,5626,1978-11-23,A- -Kevin Matthews,Female,5627,1942-03-19,AB+ -Dean Gomez,Male,5628,1994-01-11,A+ -Carla Marshall,Female,5629,1968-04-17,A+ -John Wright,Female,5630,1964-08-08,B- -Amy Casey,Male,5632,1992-05-15,B- -Charles Lawson,Male,5633,1982-08-08,B+ -Robert Lucas,Male,5634,1937-10-21,A- -Sonya Foster,Male,5635,1966-05-31,O- -Danny Duncan,Male,5636,1959-04-17,AB- -Jennifer Hebert,Male,5637,1982-12-22,O+ -Henry Wagner,Female,5638,1942-07-31,AB+ -Theresa Schmidt,Female,5639,1999-11-20,B- -Gene Anderson,Male,5640,1969-02-07,AB+ -Lauren Miller,Male,5641,1974-08-03,AB- -Cheryl Richards,Male,5642,1969-03-31,AB- -Jeremy Barrett,Female,5643,1948-03-11,A- -Marcus Love,Male,5644,1937-10-21,A+ -Whitney Reese,Male,5645,1970-11-20,A- -Susan Rodriguez,Female,5646,1930-06-15,O+ -Erin Scott,Male,5647,1959-04-20,O- -Joseph Weiss,Female,5648,1932-07-08,AB+ -Kevin Maynard,Male,5649,1952-09-27,O+ -Eric Wade,Female,5650,1984-06-14,B+ -Kimberly Brown,Male,5651,1977-07-28,O- -Michael Perez,Male,5652,1973-01-10,AB+ -Sarah Pennington,Female,5653,1991-06-01,O+ -Debbie Hernandez,Male,5654,1940-07-06,B- -Clayton Tyler,Female,5655,1978-04-21,AB+ -Deborah Jordan,Male,5656,1995-09-10,O+ -Yolanda Smith,Male,5657,1961-10-23,AB- -Michael Cook,Male,5659,1998-09-11,O- -Christy Bradshaw,Male,5660,1967-01-06,O+ -Madeline Warner,Male,5661,1988-01-05,B- -Amanda Johnson,Male,5662,1959-07-04,A- -Daniel Johnson,Female,5663,1930-03-09,AB+ -Andrew Chang,Female,5664,1956-10-19,B+ -Billy Bowman,Female,5665,1945-07-01,AB+ -Jeremiah Martinez,Female,5667,1942-04-06,AB+ -Michael Johnson,Female,5668,1952-06-24,B- -Stephanie Wilson DVM,Male,5669,1959-11-27,O- -Courtney Wallace,Female,5670,1939-08-23,AB+ -Wanda Jackson,Female,5671,1931-07-27,O- -Stephanie Nguyen,Male,5672,1949-05-23,O+ -Jeremy Martin,Female,5673,1996-04-20,AB- -Paul Thomas,Male,5674,1944-10-09,B+ -Debra Lee,Female,5675,1972-03-08,AB- -Katherine Scott,Female,5676,1981-01-15,O- -Nathaniel Macdonald,Female,5677,1960-05-17,O- -Megan Guerrero,Male,5678,1991-05-24,AB- -Allison Bowman,Female,5679,1931-10-13,AB+ -Alexis Johnson,Female,5680,1945-09-20,A+ -Jonathan Harrell,Male,5681,1966-05-13,A+ -Michael Maddox,Male,5682,1948-09-21,B- -James Jones,Male,5683,1981-12-10,B+ -Kendra Mcdonald,Male,5684,1996-06-03,A- -Paula Garrett,Female,5685,1938-12-07,AB- -Maria Lambert,Female,5686,1978-07-10,AB- -Ryan Dodson,Female,5687,1943-09-06,B- -Megan Drake,Female,5688,1962-05-19,B+ -Joshua Moore,Male,5689,1990-09-07,A+ -Jennifer Ryan,Male,5690,1937-09-28,O+ -Kathleen Shaw,Female,5691,1968-11-28,AB+ -Matthew Kim,Female,5692,1944-04-29,AB+ -Stacey Ferguson,Female,5693,1936-01-27,O+ -Melanie Lopez,Female,5694,1984-07-19,O+ -Kyle Villanueva,Female,5695,1996-05-03,B+ -Allen Lynch,Female,5696,1968-12-19,A+ -Rachel Myers,Female,5697,2000-02-16,B- -Jerome Carr,Female,5698,1968-05-27,O+ -Briana Lang,Female,5699,1986-11-10,B- -Timothy Avila,Male,5700,1982-12-19,B+ -Jacob Vaughn,Male,5701,1983-09-10,A- -Charles Wilson,Female,5702,1967-12-31,O- -Brianna Mercado,Male,5703,1948-09-20,AB+ -Daniel Palmer,Female,5704,1949-04-02,A+ -George Monroe,Female,5705,1970-07-16,AB+ -Erika Fischer,Male,5706,2000-04-17,A+ -Lori Schneider,Male,5707,1999-11-10,B+ -Robert Shelton,Female,5708,1940-03-05,O- -Larry Dennis,Male,5709,1939-05-08,AB+ -Kristina Spencer,Female,5710,1978-10-28,O- -Justin Rice,Male,5711,1931-07-25,B+ -Casey Griffin,Male,5712,1982-10-23,A+ -Aaron Owen,Female,5714,1966-05-20,O+ -Richard Bailey,Male,5715,1981-09-19,A- -Katie Johnson DVM,Female,5716,1932-07-06,AB+ -Jason Mcdowell,Male,5717,1957-07-24,O- -Valerie Wright,Female,5718,1949-02-12,AB- -Anthony Lewis,Female,5719,1995-03-12,AB+ -Kiara Martinez,Female,5720,1947-05-08,AB+ -Richard King,Male,5721,1979-06-15,AB+ -Mason Hunter,Female,5723,1976-07-17,B- -Craig White,Male,5724,1957-03-21,O- -Allison Woods,Female,5725,1994-04-05,O- -Sharon Mathews,Female,5726,1963-11-24,AB+ -Henry Davis,Female,5727,1987-11-11,B+ -Christine Martinez,Female,5728,1984-06-15,B+ -Hector Barajas,Female,5729,1961-12-11,O+ -Lawrence King,Female,5730,1942-05-27,AB+ -Scott Smith,Male,5731,1977-12-19,B- -Theresa Welch,Female,5732,1963-05-20,A+ -Todd Cross,Female,5733,1953-06-15,B- -Steven Wood,Male,5734,1949-10-14,B+ -Kathy Hunt,Female,5735,1944-02-19,O+ -Kathy Phillips,Female,5736,1975-06-04,B+ -Evelyn Stone,Female,5737,1988-03-16,B+ -David Jennings,Male,5738,1933-08-12,B+ -Brian Allen,Female,5739,1933-02-15,AB+ -Gregory Lynch,Male,5740,1942-09-02,B+ -Nancy Lopez,Male,5741,1995-02-02,O- -Krystal Nguyen DDS,Male,5742,1969-09-14,A- -Kaitlyn Bender,Male,5743,1937-05-14,AB- -Robert Frederick,Male,5744,1950-01-19,AB+ -Timothy Robinson,Male,5745,1938-11-30,O+ -Lauren Webster,Male,5746,1997-07-13,O- -Monica Hunter,Female,5747,1944-04-10,B- -Jeffrey Greer,Male,5748,1941-04-01,B+ -Samantha Wagner,Female,5749,1983-02-16,A+ -William Nunez,Male,5750,1979-12-11,A+ -Michael Burgess,Male,5751,1999-06-28,A- -Glenn Sanchez,Male,5752,1999-11-15,AB+ -Ronald Edwards,Female,5753,1982-06-30,B- -Ashley Gill,Female,5754,1985-06-20,A- -Curtis Osborne,Female,5755,1995-09-06,AB- -Cindy Mccullough,Male,5756,1956-11-02,AB- -Shawn Byrd,Female,5757,1997-02-17,A- -Lindsey Hanson,Female,5758,1991-06-09,O+ -Katie Hunter,Female,5759,1985-06-27,A+ -John Norman,Female,5760,1961-04-01,B- -Jessica Owen,Female,5761,1971-01-21,AB+ -Jerry Swanson,Male,5762,1994-07-03,B+ -Mary Ramirez,Female,5763,1964-06-14,O- -Stacy Hernandez,Female,5764,1994-05-18,AB+ -Kelly Bell,Female,5765,1943-10-01,AB+ -Virginia Barnett,Male,5766,1987-10-28,B- -Angela Brown,Male,5767,1981-05-24,A+ -John Ford,Female,5768,1948-01-09,B- -Debra Jones,Female,5769,1966-11-03,O- -Miranda Lopez,Male,5770,1999-11-12,A- -Sabrina Martinez,Female,5772,1965-11-30,B- -Christine Melton,Male,5773,1990-12-02,O+ -Jon Robinson,Female,5774,1981-11-19,AB+ -Cassandra Chan,Male,5775,1977-07-12,A+ -Grace Moses,Male,5776,1994-08-09,B+ -Wanda Morrison,Male,5777,1999-11-25,AB- -Tiffany Davis,Male,5778,1933-06-16,O- -Timothy Alexander,Female,5779,1988-09-04,AB- -Mark Williams,Female,5780,1999-11-14,AB+ -Melissa Jackson,Male,5781,1950-03-19,B- -Alison Stewart,Female,5782,1991-12-02,AB- -Danielle Wallace,Female,5783,1939-02-10,O+ -Stacey Decker,Female,5784,1990-04-10,B- -Gregory Murray,Male,5785,1981-01-16,AB+ -Joshua Browning,Male,5786,1957-06-08,AB- -Tamara Hart,Female,5787,1978-04-20,B+ -Elizabeth Peters,Male,5788,1976-02-17,A- -Jeff Marks,Female,5789,1968-07-02,O- -Mariah Stewart,Male,5790,1983-11-17,AB- -Rhonda Martin,Male,5791,1948-07-19,B+ -Michael Bradley,Male,5792,1971-07-05,A- -Cathy Guzman,Male,5793,1995-03-16,A- -Clifford Avila,Male,5794,1933-05-15,AB- -Karen Cooper,Female,5795,1954-11-07,A+ -Holly Johnson,Male,5796,1940-06-02,AB- -Kimberly Clark,Male,5797,1992-06-07,AB+ -Jason Brennan,Male,5798,1970-04-16,A- -Terri Gilbert,Male,5799,1945-09-29,O- -Margaret Jones,Female,5800,1972-10-14,AB+ -Mr. John Pierce,Male,5801,1966-03-25,O+ -William Gaines,Male,5802,1985-06-01,B- -Shannon Le,Male,5803,1938-08-02,AB- -Tyler Bean,Male,5804,1949-01-14,A+ -Allison Robbins,Female,5805,1999-10-26,O- -Marco Maddox,Male,5806,1991-05-19,A+ -William Bowers,Male,5807,1987-06-04,A+ -Darlene Jones,Female,5808,1934-03-27,A+ -Alexandria Sparks,Male,5809,1972-04-27,AB- -Ryan Gomez,Male,5810,1991-06-19,O- -Sara Clark,Male,5811,1977-11-08,O- -Jesse Hudson,Male,5812,1936-08-08,A- -Robert King,Male,5813,1982-01-09,A+ -Lauren Phillips,Female,5814,1968-08-22,A- -Christy Gregory,Female,5815,1999-05-17,A- -Richard Jones,Male,5816,1941-05-08,B- -Kyle Williams,Female,5817,1937-08-07,AB- -Robert Bell,Female,5818,1966-02-14,AB- -Andrew Wilson,Male,5819,1965-03-09,AB+ -Gregory Hill,Male,5820,1965-10-14,B+ -Joseph Hunt,Male,5821,1993-01-02,A- -Nicholas Moore,Male,5822,1983-07-01,AB- -David Mendoza,Male,5823,1940-11-14,A+ -Melissa Russell,Female,5824,1996-09-07,B+ -Suzanne Phillips,Male,5825,2002-11-15,O+ -Cindy Johnson,Female,5826,1968-08-28,A+ -Elizabeth Scott,Female,5827,1998-11-19,O- -Betty Pierce,Male,5828,1989-09-07,AB- -Austin Davenport,Female,5829,1941-11-10,B+ -Tiffany Scott,Male,5830,1958-03-10,AB- -David Vazquez,Male,5831,1935-04-27,AB+ -Kyle Adams,Male,5832,1991-05-11,A- -Daniel Henderson,Male,5833,1997-08-02,O+ -Jennifer Dunn MD,Male,5835,1975-05-20,AB- -Kathryn Smith,Female,5836,1999-10-05,AB+ -Sarah Long,Female,5837,1966-09-13,AB+ -Jessica Thomas,Male,5838,1932-05-11,O+ -Lisa Myers,Male,5839,1993-03-26,A+ -Dennis Walter,Female,5840,1955-05-25,A+ -Adriana Reynolds,Male,5842,1976-08-20,A+ -Heather Lester,Male,5844,1941-04-27,B- -Allison Kelly,Female,5845,1962-04-26,A- -Stephanie Cox,Female,5846,1972-03-09,B+ -Angela Williams,Male,5847,1995-08-19,A- -Kelly Hicks,Female,5849,1999-01-11,A+ -Sierra Bowers,Male,5850,1977-09-11,O+ -Steven Brown,Male,5851,1974-10-08,B- -Pamela Shelton,Male,5852,1941-04-24,A- -Benjamin Martinez,Female,5853,1980-09-27,A+ -Isaac Thomas,Female,5854,1963-01-05,B- -Ellen Thomas,Female,5855,1961-01-27,B+ -John Avery,Female,5856,1961-06-13,O+ -Patrick Shields,Male,5857,1944-12-10,A+ -James Warner,Female,5858,1946-08-24,B+ -Dorothy Wright,Female,5859,1964-02-05,O- -Jennifer Daugherty,Female,5860,1981-07-06,B+ -Krista Sellers,Male,5861,1980-01-02,AB- -Michael Robbins,Male,5862,1963-04-16,O+ -Haley Bright,Male,5863,1973-01-30,B+ -Amanda West,Male,5865,1973-05-05,B+ -Nancy Nixon,Female,5866,1971-05-31,AB+ -Jeremiah Leblanc,Male,5867,1962-08-06,AB+ -Susan Jackson,Male,5868,1995-07-05,B+ -David White,Female,5869,1963-09-03,B+ -James Paul,Female,5870,1935-07-05,O+ -Andrew Brooks,Female,5871,1939-03-28,AB+ -Stephen Clark,Female,5872,1958-04-19,A- -Frederick Sherman,Female,5873,1995-01-01,O+ -Tiffany Gomez,Male,5874,1959-04-11,O- -Rebecca Buchanan,Female,5875,1969-10-10,O+ -Carlos Moore,Male,5876,1964-12-21,A+ -Jonathan Gonzalez,Female,5877,1933-07-13,A+ -Melanie Smith,Male,5878,1933-12-18,B- -Cindy Smith,Male,5879,1983-08-14,AB+ -Maria Duncan,Female,5880,1992-04-30,B+ -Tina Allison,Female,5881,2002-08-10,AB- -Sara Bradley,Male,5882,1995-06-15,AB+ -Michael Stevens,Female,5884,1991-06-13,A- -Darren Ramos,Male,5885,1983-07-29,O+ -Autumn Medina DDS,Female,5886,1968-09-17,AB- -William Davis,Female,5887,1967-09-01,AB- -Brianna Moore,Female,5888,1944-12-15,B+ -Mr. Gary Miller,Female,5889,1983-08-31,B+ -Sabrina Hall,Female,5890,1983-06-12,AB+ -Wendy Spears,Female,5891,1983-12-11,AB- -Matthew Lopez,Female,5892,1982-06-23,AB- -Lori Mcclain,Female,5893,1999-12-31,A+ -Albert Holder,Female,5894,1950-12-19,O- -Troy Sanchez,Male,5895,1943-06-22,B+ -Ellen Ward,Female,5896,1958-04-29,O+ -Jodi Griffin,Male,5897,1992-03-04,AB+ -Jade Turner,Female,5898,1992-03-07,B+ -Candice Rodriguez,Female,5899,1953-01-17,A+ -Patricia Bright,Male,5900,1976-12-25,A- -Helen Ward,Female,5901,1944-04-05,B+ -Joann Hendrix,Female,5902,1931-11-19,A- -Gary Grant,Female,5903,1976-04-22,B- -Tyrone Roach,Female,5904,1988-09-24,AB- -Emily Solis,Male,5905,1966-03-16,AB- -Sarah Garcia,Female,5906,1952-02-15,AB+ -Matthew Webster,Female,5907,1989-12-19,O- -Brittany Glover,Male,5908,1980-10-02,O- -Michael Young,Male,5909,1955-12-22,AB+ -Raven Dunlap,Female,5910,1946-09-08,AB+ -Pedro Stevens,Female,5912,1993-12-14,A+ -Thomas Marquez,Male,5913,2001-06-19,A- -Jason Owens,Female,5914,1987-12-06,AB+ -Austin Myers,Male,5915,1951-01-23,A- -Alexandra Cross,Female,5916,1960-05-11,B+ -Juan Randolph,Female,5917,1938-07-01,B+ -Lori Mathis,Female,5918,1936-09-06,B- -Scott Brewer,Female,5919,1986-03-07,A- -Dr. Barbara Foster,Male,5920,1949-07-04,A+ -Rachel Gibbs,Male,5921,1989-02-05,B+ -Scott Bates,Male,5922,1977-03-03,AB- -Michael Fischer,Female,5923,1968-06-01,AB- -Megan Kline,Female,5924,1969-10-19,B+ -Anna Pace,Male,5925,1931-03-23,B+ -Jonathan Sanford,Female,5926,1940-09-20,B+ -Kelly Moore,Male,5927,1973-03-23,A- -Nicole Brewer,Female,5928,1983-05-16,AB- -Selena Cooper,Female,5929,1978-03-28,AB- -Calvin Simmons,Female,5930,1948-01-14,O+ -Benjamin King,Male,5931,1930-08-15,B+ -Eric Nelson,Male,5932,1986-03-15,B- -Charles Hernandez,Female,5933,1994-07-13,B+ -Kathryn Davies,Female,5934,1960-07-13,A+ -Mark Bryant,Female,5935,1945-03-21,A+ -Samantha Baker MD,Male,5936,2002-04-19,AB- -Barbara Duran,Male,5937,1962-10-11,B+ -Christopher Shaffer,Male,5938,1930-07-06,O- -Caitlin Miller,Male,5939,1970-03-12,A+ -Daniel Pitts,Female,5940,1969-11-11,B+ -Veronica Price,Male,5941,1960-04-22,B- -Jordan Price,Male,5942,1936-12-10,AB+ -Nicholas Nash,Female,5943,1935-04-17,B+ -Darren Shea,Female,5944,1999-08-11,B- -Ryan Sanchez,Female,5945,1935-07-26,AB- -Madison Li,Female,5946,1933-06-06,AB- -Ruth Jarvis,Female,5947,1945-01-31,O+ -Kristen Branch,Male,5948,1943-11-23,A- -Heather Huffman,Female,5949,1968-01-22,A+ -Kara Beck,Male,5950,1969-10-06,A- -Darren Parker,Female,5951,1935-02-25,B+ -Christopher Taylor,Female,5952,1930-09-27,A- -Megan Short,Male,5953,1934-06-19,A+ -Joseph Martin PhD,Male,5954,1986-12-02,A+ -Steven Sutton,Male,5955,1991-09-01,B+ -Samantha Kim,Female,5956,1979-03-03,AB- -Ariel Estrada,Female,5957,1966-08-23,A+ -Nina Rich,Male,5958,1974-03-23,O- -Erica Parker,Female,5959,1960-05-07,O- -Melissa Jackson,Female,5960,1934-08-23,AB+ -John Reed,Female,5961,1983-10-12,A+ -Devin Mcbride,Male,5962,1970-07-31,O+ -Mary Long,Male,5963,1938-12-07,AB+ -Heather Schneider,Female,5964,1933-12-16,AB- -Brooke Smith,Female,5965,1992-01-03,A+ -Nicole Briggs,Female,5966,1997-11-20,O- -Debra Vazquez,Female,5968,1975-01-01,O+ -Ryan Powers DDS,Male,5969,1957-03-29,B+ -Emily Petty,Female,5970,1990-02-09,AB+ -Laurie Washington,Female,5971,1995-08-11,O+ -Alexandra Larson,Male,5972,1979-06-03,A+ -Henry Morris,Male,5974,1948-11-23,B- -Linda Neal,Male,5975,1982-06-26,O+ -Monica Lester,Male,5976,1931-12-21,O+ -Mrs. Erin Lee,Male,5977,1953-07-16,AB- -Kevin Bell,Male,5978,1948-10-08,O- -Jeremy Fernandez,Male,5979,1981-02-20,B+ -Shane Drake,Female,5980,1952-08-16,A+ -Eric Pierce,Male,5981,1969-10-03,O+ -Cynthia Jackson,Female,5982,2002-11-28,A+ -Cynthia Bright,Male,5983,2000-08-26,O- -Mr. Joshua Owen,Female,5984,2001-07-30,AB- -Brenda Johnson,Female,5985,1962-07-06,A+ -Cassandra Ryan,Female,5986,1987-02-17,A- -Edward Rodriguez,Female,5987,1968-07-19,O- -Kimberly Hardy,Male,5988,1976-10-08,O- -Melissa Collins,Female,5989,1949-10-31,B+ -Daniel Diaz,Male,5990,1954-09-10,AB+ -Amanda Hall,Male,5991,1991-01-23,AB- -Gabriel Turner,Female,5992,1975-10-24,AB- -Joshua Pennington,Male,5993,1989-07-28,B+ -Nathan Jackson,Female,5994,1963-02-17,A- -Daniel Berger,Male,5995,1996-05-27,A+ -Michael Fields,Female,5996,1975-09-13,B- -Rachel Dillon,Male,5997,1984-03-18,A- -Paige Thompson,Female,5998,1943-03-14,AB+ -Kimberly Singh,Female,5999,1960-02-14,AB- -Logan Gonzalez,Female,6000,1968-01-29,O- -Frank Fuentes,Male,6001,1984-08-07,AB- -Jonathan Taylor,Female,6002,1987-02-13,A- -Kimberly Phillips,Female,6003,1961-12-13,B- -Donna Singleton,Female,6005,1992-09-27,O+ -Christina Burns,Male,6006,1987-07-05,O+ -Tammy Mcmahon,Female,6007,1973-07-30,B+ -Edward Reed,Female,6008,1959-10-14,AB- -Michael Sims,Male,6009,1938-03-05,AB- -Rebecca Weeks,Male,6010,1952-03-18,AB+ -Kevin Roy,Male,6011,1953-03-08,AB- -Nicole Benton,Male,6012,1981-10-31,B- -Stephanie Lynch,Male,6013,1930-12-03,AB- -Kristin Blake,Male,6014,1957-10-31,A+ -Matthew Nguyen,Male,6015,1983-01-06,A- -Margaret Brown,Male,6016,1964-12-16,B+ -Teresa Friedman DVM,Female,6017,1940-11-12,B- -Hailey Johnson,Female,6018,1932-06-29,AB+ -Alex Maynard,Female,6019,1980-04-28,A+ -Hannah Fields,Female,6021,1972-10-19,A+ -Erica Stephens,Male,6022,1974-07-28,A- -John Weber,Female,6023,1938-07-27,O+ -Jessica Rogers,Female,6024,1944-11-30,B- -Dr. Jose Bartlett,Male,6025,1946-10-13,A- -Cindy Savage,Male,6026,1946-01-07,A+ -Michael Williamson,Male,6027,1986-05-15,AB+ -Nancy Ellis,Male,6028,1950-05-22,A- -Ariana Silva,Male,6029,1962-09-19,O+ -Diana Diaz,Male,6030,1953-04-29,A+ -Parker Compton,Female,6031,2002-03-19,A- -Glenda Hernandez,Male,6032,1930-11-11,B- -Elizabeth Wong,Male,6033,1962-02-19,O+ -Cesar Williams,Male,6034,1933-02-08,B- -Michelle Hernandez,Male,6035,1959-12-13,B- -Christopher Alexander,Female,6036,1988-03-17,B- -Jesse Brown,Female,6037,1997-01-15,A- -Patricia Martin,Male,6038,1972-09-05,O+ -Robert Payne,Male,6039,2001-06-13,A- -Kristen Aguirre,Female,6040,1952-11-08,A- -Sarah Reed,Male,6041,1945-04-24,A- -Jared Townsend,Female,6042,1979-07-31,A+ -Molly Keith,Female,6043,1984-01-05,AB- -Kaitlin Armstrong DDS,Male,6044,1977-04-14,O- -Brandon Hanson,Female,6045,1960-02-10,A+ -Kenneth Davis,Male,6046,1931-12-23,O+ -Philip Brown,Male,6047,1995-11-18,O- -Jacob Clark,Female,6048,1954-12-05,O- -Evan Mckinney,Female,6049,1984-01-19,O- -Brandon Lee,Male,6050,1932-05-20,AB- -Valerie Riley,Female,6051,1948-06-26,A- -Eric Duncan,Male,6052,1976-03-21,B+ -Kathleen Johnson DDS,Female,6054,1934-10-23,AB+ -Timothy Reynolds,Female,6055,1933-01-22,O+ -Amy Moore MD,Female,6056,1961-10-06,B+ -Jessica Perez,Male,6057,1937-09-29,AB- -Javier Johnson,Female,6058,1971-01-22,AB- -Nicole Mccoy,Female,6059,1979-05-15,AB+ -Leslie Jennings,Female,6060,1967-12-31,O- -Nicholas Kemp,Female,6061,1949-02-22,A- -Laurie White,Female,6062,1967-09-22,AB+ -Lisa Diaz,Male,6063,1948-07-16,B+ -Briana Johnson,Male,6064,1975-04-01,B+ -Charles Singh,Female,6066,1982-06-02,AB+ -Randy Rodriguez,Female,6067,1939-05-29,AB- -Brent Young,Male,6068,1948-02-18,O+ -Steve Moody,Male,6069,1965-03-10,B- -Linda Barker,Male,6070,1970-07-16,A- -Hayley Perry,Female,6071,1959-02-01,B+ -Michael Lindsey,Male,6072,1994-03-19,B+ -Jonathan Miranda,Male,6073,1987-03-19,AB+ -Terry Cooper,Female,6074,1935-01-23,A- -Suzanne Smith,Male,6075,1937-05-20,AB+ -Nicholas Vasquez,Male,6076,1934-09-14,O- -Michelle Coleman,Female,6077,1983-04-09,A- -Michele Burns,Female,6078,1955-05-09,O- -Brendan Bailey,Female,6079,1937-08-18,B+ -Reginald Rodriguez,Female,6080,1968-10-02,AB- -Robert Rose,Male,6081,1966-09-18,O- -Melanie George,Male,6082,1940-05-19,A- -Margaret Winters,Male,6083,2000-10-24,A+ -Gregory Williams,Female,6084,1940-08-07,A- -Bruce Boyle,Male,6085,1934-12-12,AB+ -Jonathan Mitchell,Male,6086,1978-12-23,O- -John Reynolds,Female,6087,1983-12-01,O+ -Joshua Lawrence DDS,Female,6088,1994-05-06,A+ -Ricky Parker,Female,6089,1966-06-05,AB- -Danny Matthews,Female,6090,1988-09-05,B- -Amber Day,Female,6091,1997-06-25,AB+ -Stephanie Murray,Male,6092,1979-06-27,AB+ -Leslie Reyes,Male,6094,1972-07-28,O+ -Deborah Castro,Female,6095,2000-12-19,B- -Stephanie Villegas,Female,6096,1939-01-17,B+ -Katie Green,Male,6097,1983-05-20,B- -Raymond Hudson,Female,6098,1973-12-22,AB- -Ashley Vaughn,Female,6099,1999-09-14,AB- -Megan Jones,Female,6100,1996-05-08,A+ -Robyn Anthony,Female,6101,1971-08-12,B+ -Eric Tapia,Female,6102,1992-06-04,AB+ -Joseph Ayala,Female,6103,1978-12-23,O- -Taylor Lopez,Female,6104,1959-03-05,AB- -Richard Burke,Female,6105,1954-06-08,O+ -Linda Chung,Male,6106,1957-03-20,O+ -Dana Wiggins,Male,6107,1940-09-29,O+ -Brian Wallace,Male,6109,1998-06-12,A- -Jennifer Flores,Male,6110,1956-10-14,B+ -Dylan Alvarez,Male,6111,1942-04-13,B+ -Wesley Brown,Male,6113,1964-07-30,AB- -Cody Vaughn,Male,6114,1966-03-26,AB- -Whitney Grant,Female,6115,1965-04-28,O+ -Michelle Wade,Female,6116,1997-01-13,B+ -Thomas Porter,Female,6117,1998-08-20,B+ -Heather Norris,Female,6119,1930-07-11,AB- -Melissa Davis,Female,6120,1998-08-26,A- -Bryan Dougherty,Female,6121,1943-06-19,O- -Cameron Willis,Male,6122,1945-12-19,O- -Anthony Mcmillan,Female,6123,2000-09-22,A+ -Kim Adams,Female,6124,1957-10-26,B+ -Jasmine Howard,Male,6125,1986-09-10,AB+ -Jessica Villarreal,Male,6126,1967-06-18,O- -Desiree Brooks,Female,6127,1994-01-08,A+ -Michelle Thompson,Male,6128,1999-07-10,B- -Holly Fletcher,Male,6129,1994-10-18,AB+ -Jacqueline Jackson,Male,6130,2001-04-27,B+ -Holly Sandoval,Male,6131,2000-04-05,O- -Danielle Shaw,Female,6132,1963-12-05,A- -Theresa Anderson,Female,6133,1935-02-18,B- -Michael Yu PhD,Female,6134,1954-10-24,A+ -Christopher Washington,Female,6135,1943-01-16,O- -Emily Reeves,Male,6136,1958-01-08,B+ -Scott Brown,Female,6137,1998-01-12,O- -Carol Campos,Male,6138,1955-04-01,AB- -Michelle Cole,Female,6139,1961-03-29,B- -Ryan Jenkins,Male,6140,1969-10-02,O- -Matthew Smith,Male,6141,1932-11-17,O+ -Micheal Allen,Female,6142,1963-06-22,A- -Theresa Lee,Male,6143,1956-09-26,AB- -Stefanie Vance,Male,6144,1961-03-01,AB- -Devin Lara,Female,6145,1964-06-11,O- -Diane Reid,Female,6146,1995-07-01,A- -Katherine Webster,Male,6147,1995-02-24,AB- -Emily Terry,Male,6148,1962-10-29,AB+ -Courtney Wilson,Male,6149,1992-02-29,B- -Jamie Murphy,Female,6150,1962-09-09,AB+ -Jose Powell,Female,6151,1980-08-15,A+ -Zoe Henderson,Female,6152,1930-11-04,AB+ -Jamie Jennings,Female,6153,1996-01-16,A- -Gary Casey,Female,6154,1939-03-14,O+ -Jessica Orozco,Male,6155,1938-09-12,AB- -Heather Hernandez,Female,6156,1933-06-05,A- -Brian Duncan,Male,6157,1944-09-10,AB- -Charles Poole,Female,6158,1979-01-05,B+ -Phyllis Arellano,Male,6159,1947-01-18,O+ -Sarah Wang,Female,6160,1989-05-20,AB- -Briana Bray,Male,6162,2001-01-22,AB+ -Kimberly Tanner,Female,6163,1990-12-05,B+ -Terri Solomon,Female,6164,1996-11-13,B+ -Christina Duffy,Male,6165,1969-03-27,A+ -Susan Griffin,Male,6166,1943-05-24,B+ -Jennifer Grant,Male,6167,1943-09-02,B+ -Stacy Villa,Male,6168,1935-05-16,O- -Jessica Sullivan,Male,6169,1964-03-20,O+ -Lindsey Wagner,Male,6170,1982-09-12,AB+ -Brittney Brady,Female,6171,1959-09-14,A- -Kristine Vega,Male,6172,1992-12-08,AB+ -Russell Chase,Female,6173,1966-04-17,AB+ -Daisy Warner,Female,6174,1942-07-04,O- -Elizabeth Reed,Male,6175,1974-01-09,B- -Randy Steele,Female,6176,1947-11-01,AB- -Vanessa Dixon,Male,6177,1971-09-18,AB- -Brian Guerrero,Female,6178,1985-10-28,A- -Matthew Gutierrez,Male,6179,1962-03-09,B+ -Jessica Adams,Female,6180,1999-10-24,A+ -Philip Wright,Female,6181,1960-07-13,A- -Shelley Fleming,Female,6182,1975-05-12,B- -Haley Hancock,Male,6183,1996-02-03,AB- -Shane Joseph III,Female,6184,1939-03-13,A+ -Jessica Brown,Male,6185,1992-12-20,A- -Gregory Duncan,Male,6186,1956-04-04,A+ -Melissa Kirby,Male,6187,1993-06-20,AB+ -Earl Lee,Female,6188,1960-02-01,O+ -Terri Guzman,Female,6189,1998-10-03,AB+ -Jose Contreras,Male,6190,1951-01-09,O- -Aaron Vargas,Female,6191,1945-08-08,B+ -Robert Deleon,Female,6192,1933-06-27,AB- -James Vazquez,Male,6193,1993-01-27,A+ -Dr. Brittany Hill,Male,6194,1960-10-11,A- -Debra King,Male,6195,1977-11-10,B+ -Raymond Hays,Female,6196,1956-01-02,O+ -Makayla Mcguire,Female,6197,1954-12-08,A- -Lindsay Williamson,Female,6198,1960-11-12,AB- -Mary Cole,Female,6199,1951-11-29,A+ -Marcus Sanders,Female,6200,1941-08-18,A+ -Sherry Walters,Female,6201,1955-03-31,AB+ -Susan Raymond,Male,6202,1989-05-29,O+ -Brenda Miller,Male,6203,2002-09-13,O+ -Jennifer Orozco,Male,6205,1984-01-16,AB- -Brenda Perry,Female,6206,1959-04-22,A+ -Joel Robertson,Female,6207,1972-05-12,B+ -Joshua Howard,Female,6208,1975-08-07,O+ -Kelsey Ward,Male,6209,1978-02-08,O+ -Thomas Carlson,Female,6210,1963-12-06,A- -David Dennis,Male,6211,1962-09-26,AB- -Ian Wilson,Male,6212,1972-10-28,AB+ -Marvin Watson,Male,6213,1968-04-29,A- -Thomas Phillips,Female,6214,1947-04-07,A- -John Stark,Male,6215,1981-06-04,B- -Gabrielle Mcclain,Male,6216,1964-10-30,O- -Charles Baldwin,Female,6217,1949-02-25,B- -April Harrison,Male,6218,1964-01-10,O+ -Dr. Christopher Williams,Male,6219,1967-09-26,A+ -Richard Williams,Female,6220,1994-11-04,O- -Adam Boyd,Female,6221,1986-04-23,O- -Rebecca Bright,Male,6222,2001-12-21,A+ -Paul Golden,Female,6223,1936-02-09,O- -John Garcia,Male,6224,1947-10-30,A+ -Andrew Torres,Male,6225,1975-03-18,O- -Dorothy Delgado,Female,6226,1955-11-27,A- -Aaron Coleman,Male,6227,1984-11-29,B+ -Kathryn Glenn,Male,6228,2001-09-02,AB- -Brian Brock,Female,6230,1943-01-18,AB- -Todd Guerrero,Female,6231,1985-09-23,B- -Christopher Nguyen MD,Male,6232,1995-07-08,A- -Crystal Koch,Male,6233,1966-05-04,O- -Timothy Brown,Female,6234,1945-03-15,AB+ -Julie Cooper,Female,6235,1931-09-20,A+ -Lacey Graham,Male,6236,1962-10-29,A- -Julie Trujillo,Male,6237,1967-09-24,O- -Ann Johnson,Male,6238,1948-01-16,AB- -James Stuart,Female,6239,1935-08-07,AB- -Joanne Townsend,Male,6240,1966-01-23,A+ -Dustin Nelson,Female,6241,1981-04-08,AB+ -Michael Johnson,Male,6242,1946-02-10,O- -Jessica Berg,Female,6243,1952-05-30,O- -Phyllis Bell,Male,6244,1930-09-07,AB+ -David Atkinson,Male,6245,1982-11-13,AB+ -Ashley Jones PhD,Male,6246,1988-08-31,AB+ -David Pittman,Male,6247,1977-07-11,AB- -Kristen Turner,Male,6248,2000-11-30,A+ -Heather Ferguson,Female,6249,1994-07-20,A- -Mrs. Ashley Cook,Female,6250,1955-02-14,B+ -Maurice Lyons,Male,6251,1999-09-20,AB+ -William Martin,Male,6252,1974-07-09,A+ -Douglas Bradley,Female,6253,1937-04-26,B- -Marie Bowen,Male,6254,1949-12-06,O- -Heidi Anderson,Female,6255,1995-06-24,O- -Anna Schultz,Male,6256,2000-12-01,B+ -Daniel Jones,Female,6257,1953-09-19,B+ -Monica Davis,Female,6258,1935-06-11,O+ -Tiffany Vaughan,Male,6259,1975-02-08,B- -Mary Lee,Male,6260,1998-09-26,A- -Natasha Miller,Female,6261,1965-06-14,B+ -Frederick Rodriguez,Female,6262,1985-12-21,AB+ -Tammy Maldonado,Female,6263,1965-08-31,AB+ -Cheryl Sweeney,Male,6264,1937-08-05,A- -Nicholas Morrison,Male,6265,1966-01-11,AB- -Michelle Parks,Male,6266,1957-01-17,B- -Tammy Benson DVM,Female,6267,1997-10-23,AB+ -Katherine Curry,Male,6268,1957-11-13,B+ -Joan White,Female,6269,1995-02-22,O+ -Wendy Taylor,Male,6270,1958-05-31,A+ -John Black,Male,6271,1987-01-06,O- -William Miller,Female,6272,1950-02-12,B- -Laura Sanchez,Female,6273,1932-10-05,O- -James Powell,Female,6274,1940-05-11,A+ -William Gould,Male,6275,1993-01-20,B- -Lisa Tran,Male,6276,1941-10-08,B+ -Jonathan Garcia,Female,6277,1942-10-13,A+ -Mark Mclean,Female,6278,1986-08-06,AB+ -Angel Ross,Male,6279,1935-08-15,A- -Amy Harris,Female,6280,1991-04-24,AB+ -Jennifer Horn,Female,6281,1934-09-13,B+ -Brian Martin,Female,6282,1930-11-07,A- -Lauren Ortiz,Male,6283,1969-05-27,AB+ -Connor Brown,Female,6284,1987-04-14,A+ -Charles Patel,Female,6285,1933-06-14,A+ -Gregory Salazar,Female,6286,1966-01-09,A+ -Joshua Callahan,Male,6287,1985-08-16,O- -Megan Bailey,Male,6288,1961-05-18,B+ -Megan Allison,Male,6289,1976-06-16,A+ -Margaret Bauer,Female,6290,1995-09-17,AB+ -James Daniel,Male,6291,1998-04-09,O+ -Janet Johnson,Female,6292,1968-05-12,B+ -Elizabeth Kane,Male,6293,1937-11-06,A+ -Scott Bartlett DVM,Female,6294,1969-05-01,O+ -Erica Cortez,Male,6295,1946-02-24,A- -Barbara Love,Female,6296,1980-05-13,AB+ -Stephen Cook,Male,6297,1947-02-12,A+ -Wayne Simmons,Female,6298,1943-07-11,O- -Edward White,Male,6299,1940-12-20,O- -Erica Beasley DVM,Male,6300,1934-06-14,A- -Linda Young,Female,6301,1959-12-31,O+ -Heather Myers,Male,6302,1977-04-18,AB- -Lisa Lopez,Female,6304,1946-08-23,O- -Traci Carpenter,Female,6305,1994-02-14,B+ -Mary Williamson,Male,6306,1954-06-07,O- -Alvin Robbins,Female,6307,1940-11-05,O- -Tyler Hoover,Male,6308,1981-09-18,AB+ -Brandi Moody,Male,6309,1954-02-10,O- -Karen Bryant DDS,Female,6310,1985-04-12,B- -Ashley Weeks,Female,6311,1991-07-24,A+ -Michael Martinez,Female,6312,1979-07-26,A- -Jacqueline Hanson,Female,6313,1967-02-14,O- -Lucas Hernandez,Male,6314,1948-04-22,AB- -Antonio Gonzales,Female,6315,1934-05-07,B+ -Bryan Johnson,Female,6316,1994-01-09,AB- -Beth Palmer,Male,6317,1956-11-03,O- -Mikayla Baker,Female,6318,1977-04-24,O- -Joseph Flores,Male,6319,1990-01-28,B- -Rhonda King,Female,6320,1998-01-17,O- -Donald Harris,Female,6321,1987-08-01,O- -Mr. Kenneth Long,Male,6322,2001-10-07,A+ -Denise Tanner,Male,6323,1958-05-04,AB- -Sharon Richardson,Male,6324,1981-07-08,B- -Melissa Bruce,Female,6325,1985-07-19,AB- -Jesse Hicks,Female,6326,1961-05-12,B- -Barbara Potter,Female,6327,1973-05-24,AB- -Ana Powell,Female,6328,1948-09-20,O- -Kevin Dean,Female,6329,1933-12-20,AB- -Courtney Morgan,Female,6330,1987-03-07,AB- -Hunter Miller,Female,6331,1944-12-07,B- -Matthew Bryant,Female,6332,1955-10-21,A- -Joseph Hughes,Male,6333,1941-04-10,O+ -Kristin Harrington,Female,6334,1954-04-14,B- -Pamela Cunningham,Female,6335,1959-09-16,B- -Margaret Moore,Female,6336,1980-05-30,B- -Andrew Bailey,Male,6337,1969-04-09,AB+ -Ray Patterson,Female,6338,1948-09-28,A- -Jimmy Moreno,Male,6339,1985-02-23,AB+ -Mr. Gary Lynn,Male,6340,1991-01-09,AB+ -Zachary Yates,Male,6341,1942-08-30,B- -Jillian Gregory,Male,6342,2002-11-12,O+ -Kevin Chang,Male,6343,1954-03-24,B- -Patrick Payne,Male,6344,1975-04-24,O- -Mary Arellano,Male,6345,1965-12-19,O+ -Thomas Ortiz,Male,6346,1987-06-06,AB+ -Taylor Dyer,Female,6347,1931-08-13,B+ -Ashley Brock MD,Male,6348,1987-03-31,AB- -Jose Lewis,Female,6349,1982-08-01,AB- -Carmen Harris,Male,6350,1947-10-28,A- -Antonio Evans,Female,6351,1951-01-24,B+ -Gwendolyn Gordon,Female,6352,1955-11-20,A+ -Scott Howard,Female,6353,1975-01-20,A- -Mark Hall,Male,6354,1962-01-21,O+ -Yolanda Rodriguez,Female,6355,1965-06-08,AB+ -Thomas Wood,Male,6356,1984-08-29,O+ -Angela Luna,Female,6357,1996-08-28,O+ -John Haynes,Male,6358,1975-08-05,AB- -David Graham,Male,6359,1957-04-17,B- -Christopher Brown,Male,6360,1936-09-28,O- -Cynthia Hernandez,Female,6361,1955-11-26,A+ -Elizabeth Larson,Male,6362,1932-10-12,AB+ -Julia Hill,Female,6363,1955-05-25,O+ -Anthony Shah,Female,6364,1966-05-01,A+ -Bonnie Randall,Male,6365,1996-09-19,O+ -Dr. Lisa Leblanc,Male,6366,1931-02-11,B+ -Anita Davis,Female,6367,1950-03-21,AB- -Lisa Stein,Female,6368,1991-06-03,O- -Shawn Gould,Female,6369,1991-10-01,AB- -Carol Warner,Male,6371,1996-09-17,A+ -Jonathan Hatfield,Male,6372,1960-11-07,AB+ -Teresa Mendoza,Female,6373,1977-07-22,O+ -Jeffrey Brown,Female,6374,1962-04-18,O- -Matthew Cox,Female,6375,1942-04-13,B+ -Alexander Logan,Male,6376,1954-05-16,AB- -Heather Chapman,Female,6377,1937-03-03,B+ -Karen Taylor,Female,6378,1992-01-29,A+ -Joseph Mathews,Female,6379,1956-04-17,AB- -Michael Garza,Male,6380,1948-12-20,O+ -Gregory Mahoney,Male,6381,1944-09-12,O+ -Kari Morris,Female,6382,1942-08-27,B+ -Jessica Mays,Female,6383,2001-05-09,AB+ -Cameron Holt,Male,6384,1970-04-20,O- -Angela Evans,Male,6385,1960-06-18,B- -Jamie Frederick,Male,6386,1950-09-19,AB- -John Meyers,Female,6387,1963-09-11,O+ -Melissa Clark,Female,6388,1987-08-24,A+ -Alex Vargas,Female,6389,1995-10-29,AB- -Daniel Cole,Male,6390,1971-04-22,AB+ -Albert Cohen,Female,6391,1977-08-09,AB+ -Scott Graham,Female,6392,1995-05-28,O+ -Roy Carter,Male,6393,1981-08-11,O+ -Jay Doyle,Male,6394,2002-08-05,B+ -Veronica Bishop,Male,6395,1980-03-02,O+ -Vanessa Foster,Female,6396,1979-05-03,B+ -Maria Carter,Female,6397,1957-01-29,A- -Dalton Craig,Male,6398,1952-03-01,B- -Diane Paul,Female,6399,1992-01-05,O+ -John Bartlett,Female,6400,1964-10-28,AB- -Sharon Fry,Female,6401,1958-02-26,AB- -Katelyn Wilson,Male,6402,1980-01-18,B+ -Brandon Farmer,Female,6403,1968-12-18,A- -Daniel Scott,Female,6404,1992-09-20,A- -Penny Garcia,Female,6405,1970-03-30,O- -Richard Solomon,Female,6406,1977-10-18,A+ -Stephanie Price,Male,6408,1944-03-12,O+ -Andrea Cunningham,Male,6409,1936-07-30,B+ -Joshua Bailey,Female,6411,1943-05-28,AB- -Michael Adams,Male,6412,1994-12-06,A- -Carrie Hoover,Male,6413,1961-03-23,AB- -Matthew Houston,Female,6414,1971-07-06,AB- -Raymond Walker,Female,6415,1955-08-01,A- -Shane Palmer,Male,6416,1959-02-15,B- -Catherine Harris,Female,6417,1935-05-11,A- -Matthew Little,Female,6418,1949-03-25,A- -Brendan Shaffer,Male,6419,1968-07-02,A+ -Jesse Ayala,Male,6420,1969-03-30,B+ -Michael Thornton,Male,6421,1940-09-12,B+ -Miranda Smith,Female,6422,1932-03-18,A- -Phyllis Kim,Female,6423,1997-10-18,AB+ -Samantha Young,Male,6424,1968-06-01,B+ -Gregory Taylor,Female,6425,1943-03-21,B+ -Laura Jones,Male,6426,1967-07-05,B+ -Claire Cooper,Female,6427,1942-05-22,A- -Jeffery Johnson,Male,6428,1971-08-07,AB- -Ashley Obrien,Male,6429,2000-11-12,O+ -Steven Miller,Male,6430,1974-06-02,AB- -Donald Church,Female,6431,1981-02-10,A+ -Travis Rodriguez,Female,6432,1944-07-19,AB+ -Jacqueline Smith,Male,6433,1967-03-26,A- -Darryl Garrett,Female,6434,1965-10-02,B- -Alicia Howard,Female,6435,1976-12-06,O- -Heather Harris,Male,6437,1943-05-20,A- -Anthony Cole,Female,6438,1940-07-21,O+ -Barbara Patel,Male,6439,1964-02-10,O- -William Hall,Female,6440,1969-10-19,B- -Felicia Nichols,Female,6441,1939-09-29,A+ -Robert Cameron,Male,6442,1956-10-03,A+ -Jesse Cochran,Female,6443,1977-06-28,B- -Carol Yates,Male,6444,1985-05-23,AB- -Jim Green,Female,6445,1993-04-10,B- -Jonathan Alexander,Male,6446,1939-10-16,B+ -Alyssa Olsen,Male,6447,1999-09-07,B+ -Tammy Flores,Female,6448,1936-08-15,A- -Ronald Rodriguez,Male,6449,1941-06-30,O+ -Ashley Vincent,Male,6450,1932-09-28,B+ -Lauren Morris,Male,6451,1989-03-20,AB+ -Rachel Smith,Male,6452,1949-06-29,A- -Jennifer Lucas,Female,6453,1985-12-28,A- -Debra Harmon,Female,6454,1982-08-25,A- -Megan Perez MD,Female,6455,1956-06-26,O- -Anthony Williams,Female,6457,1999-02-01,O- -Mark Shah,Male,6458,1944-07-22,A+ -Megan Mcdonald,Male,6459,1974-06-23,A- -Julia Estrada,Male,6460,1976-01-06,AB- -Christina Ellis,Male,6461,1993-03-30,B+ -Matthew Walsh,Male,6462,1962-07-05,A+ -Frank Brewer,Female,6463,1941-09-06,O+ -Roger Lopez,Male,6464,1950-09-02,B- -Jason Smith,Female,6465,1992-02-25,O- -Cameron Johnson,Female,6466,1982-04-12,A- -Jim Rodriguez,Male,6467,1998-07-11,O+ -Jason Williams,Male,6468,1958-12-29,A+ -Colton Williams DDS,Female,6469,1996-12-13,A+ -Patrick Stevens,Female,6470,2002-09-11,O- -Monique Harris,Female,6472,1934-07-16,A+ -Melissa Benton,Male,6473,1981-10-25,AB- -David Woods,Female,6474,1948-07-08,A+ -Molly Wong,Male,6475,1983-04-12,AB+ -Carrie Simmons,Male,6476,1938-08-31,B+ -James Nguyen,Male,6477,1980-06-24,B- -Kristina Fuentes,Male,6478,1953-03-20,A+ -Peter Allen,Female,6479,1945-09-16,B+ -Erin Martinez,Female,6480,1983-09-01,B+ -Ronnie Padilla,Male,6481,1978-10-27,AB+ -Joseph Fisher,Male,6482,1946-06-15,O+ -Dawn Wilson,Male,6483,1976-07-09,A+ -Steven Shaw,Male,6484,1942-06-19,AB- -Mr. Craig Richards,Male,6485,1979-09-09,O+ -Darrell Rice,Female,6486,1955-10-14,B+ -Rebecca Gilbert,Female,6487,2000-09-01,B+ -Joshua Watkins,Female,6488,1955-04-01,A- -Courtney Stokes,Male,6489,1937-04-25,A+ -Ashley Glover,Female,6490,1947-11-07,O- -Mark Morgan,Female,6491,1940-11-06,AB+ -Matthew Cannon,Male,6492,1964-11-12,AB+ -Albert Riley,Male,6493,1965-12-05,O- -Robert Torres,Female,6494,1983-07-23,B- -Teresa Martin,Female,6496,1940-03-11,B+ -Theresa Woods,Male,6497,1943-06-08,A- -Jacqueline Kennedy,Male,6498,1949-11-20,AB- -Kevin Steele,Female,6499,1967-07-05,AB+ -Douglas Hanson,Male,6500,1988-09-11,O+ -Jason Hampton,Female,6501,2001-04-29,B+ -Tracy Webb,Female,6502,1960-05-11,AB- -Xavier Dawson,Female,6503,1932-03-19,AB+ -Courtney Warner,Female,6504,1955-02-09,A- -Sandra Cline,Female,6505,1974-07-09,B- -Larry Jensen,Female,6506,1976-11-04,A- -Nicholas Fields,Female,6507,1959-04-12,O+ -Linda White,Female,6508,1951-02-01,A- -Anthony Steele,Male,6509,1978-03-10,AB- -Paul Carter,Female,6510,1985-12-13,B+ -Miss Melissa Ward,Male,6511,1980-11-15,O+ -Adam Haynes,Male,6512,1968-11-08,B+ -Angela Rodriguez,Female,6513,1982-07-17,O- -Michelle Herrera,Male,6514,1999-06-02,A+ -Kathy Freeman,Male,6515,1977-07-09,O- -Daniel Klein,Male,6516,1990-04-14,AB- -Reginald Kelley,Male,6517,1967-07-10,A+ -Michael Miles,Male,6518,1995-05-07,O- -Vicki Wilson,Male,6519,1935-10-25,A+ -Theresa Taylor,Male,6520,1998-12-04,AB+ -Kathryn Avery,Male,6521,1961-07-30,A- -Matthew Green,Female,6522,1975-06-22,O+ -John Martinez,Male,6523,1969-07-23,A+ -Stephanie Lopez,Male,6524,1969-12-08,AB+ -Olivia Mccarthy,Female,6525,1999-08-03,A- -Dr. Sherry Taylor,Female,6526,1934-12-20,A- -Amanda English,Female,6527,1965-08-06,B- -Heather Vasquez,Male,6528,1977-11-20,B+ -Jessica Roberts,Female,6529,1975-03-14,O- -Lisa Ramos,Female,6530,1983-09-30,B- -Jessica Campos,Male,6531,1966-08-20,B+ -Charles King,Male,6532,1972-03-07,B+ -Lindsay Garner,Male,6533,1938-01-10,AB- -Eric Lewis,Female,6534,1967-02-23,AB+ -Tamara Smith,Male,6535,1968-06-08,B- -Joseph Stevens,Female,6536,1963-09-22,B- -Melissa Anderson,Male,6538,1938-02-19,B+ -Albert Perkins,Male,6539,1935-07-11,A- -Cynthia Butler,Female,6540,1995-02-28,AB+ -Helen Mclaughlin,Male,6541,1936-08-12,A- -Becky Kelley,Male,6542,1983-05-03,O+ -Sherry Sanchez,Male,6543,1934-05-29,A+ -Jennifer Peterson,Female,6544,1931-12-19,AB- -Randy Smith,Female,6545,1984-08-10,AB- -Derek Sanchez,Male,6546,2000-01-26,O- -Steven Gray,Male,6547,1964-09-01,A- -Jasmine Hardy,Male,6548,1948-07-27,A+ -Gail Moore PhD,Female,6549,2002-08-27,B+ -Jeremy Adkins,Male,6550,1932-11-14,O- -John Jensen,Male,6551,2001-01-01,AB- -Joseph Simpson,Female,6552,1961-10-23,A+ -Dr. Kenneth Kirby,Female,6553,1952-09-29,B- -Megan Whitehead,Female,6554,1951-08-24,O+ -Derek Austin,Male,6555,1957-05-12,B+ -Amanda Pitts,Male,6556,1958-04-22,B- -Cody Bell,Female,6557,1945-04-10,O+ -Carla Young,Female,6558,1967-11-17,B+ -Steve Hansen,Female,6559,1979-04-18,A- -Kim Porter,Female,6560,1947-12-06,AB+ -Ernest Ellis,Male,6561,1950-03-18,O- -Dana Cooper,Female,6562,1987-12-12,O- -Bruce Hernandez,Female,6563,1985-03-29,AB+ -Robin Fisher,Female,6564,1938-01-20,A+ -Michael Maldonado,Male,6565,1945-08-05,AB+ -Scott Foster,Male,6566,1947-07-12,A- -Amanda Boyd,Female,6567,1971-07-24,AB- -Brandon Larson,Female,6568,1969-07-31,AB+ -Wayne Alexander,Female,6569,1965-11-10,O+ -Angela Parker,Female,6570,1999-12-18,AB- -Amanda Fowler,Female,6571,1946-12-20,AB+ -Ryan Ward,Female,6572,1944-12-03,O- -Derek Lloyd,Female,6573,1999-06-07,B- -Lauren Good,Male,6574,1997-12-11,O+ -Kathy Chapman,Male,6575,1990-12-10,A- -Steven Morales,Male,6576,1979-02-10,O+ -Brandon Kirk,Female,6577,1977-08-18,B+ -Joshua Bruce,Female,6578,1952-12-09,A+ -Angela Warren,Female,6579,1935-02-25,B- -Sherry Bauer,Male,6580,1948-08-13,O+ -Brian Chen,Female,6581,1969-12-19,B+ -Christopher Newman,Male,6582,1967-06-11,AB+ -Scott Wilson,Female,6583,1942-07-23,O+ -Ronald Potter,Female,6585,1998-06-19,O+ -Jenny Douglas,Male,6586,1953-01-30,O+ -Sabrina Gonzales,Female,6587,1992-07-05,A+ -Ann Fisher,Female,6588,1936-06-03,O+ -Blake Moyer,Male,6589,1975-01-24,O+ -Jacob Atkins,Male,6590,1956-02-22,A+ -David Simpson,Female,6591,1946-02-03,B+ -Kyle Russell,Female,6592,1948-07-30,AB- -Debra Hill,Female,6593,1973-05-08,B- -Charles Lewis,Female,6594,1943-06-24,B+ -Amanda Kelley,Male,6595,1997-01-03,A- -Teresa Brown,Female,6596,1981-03-28,AB- -Tammy Cruz,Female,6597,1942-10-31,O- -Allison Elliott,Male,6598,1969-06-12,A+ -Mike Garcia,Male,6599,1980-01-25,A+ -Monica Collins,Male,6600,1963-06-02,O+ -Lauren Castaneda,Male,6601,1987-08-24,O+ -Ronald Richardson,Male,6602,1994-06-01,A- -Mary Sanders,Male,6603,1966-01-31,O- -Dana Nguyen,Female,6604,1980-06-30,O+ -Trevor Mckenzie,Female,6606,1975-03-30,AB+ -Andrea Lutz,Male,6607,1979-10-04,O+ -Jordan Berg,Female,6608,1930-01-17,O+ -Manuel Moore,Female,6610,1966-08-14,AB+ -Brian Montgomery,Male,6611,1976-02-17,O- -Adam Espinoza,Male,6612,1987-02-06,AB+ -Rachel Taylor DDS,Male,6613,1979-11-11,A+ -Brandon Hart,Female,6614,1998-09-16,AB+ -Justin Thornton,Female,6615,1946-04-23,B- -John Walker,Male,6616,1975-02-07,A+ -William Barber,Female,6617,1943-03-09,O+ -Angela Knox MD,Male,6618,1982-08-31,A- -Caleb Stevens,Female,6619,1937-10-14,A+ -Kimberly Hunt,Male,6620,2002-06-12,O- -Devin Cantu,Male,6621,1973-09-24,O- -Katie Hill,Female,6622,1999-10-27,AB+ -William Hicks,Female,6623,1992-10-09,A+ -Emily Harrington,Female,6624,1991-01-06,O+ -Jerry Clarke,Female,6625,1977-07-06,O- -Kelsey Wagner,Male,6626,1932-12-30,AB- -James Woodard,Male,6627,1946-10-08,O+ -Marie West,Male,6628,1994-12-22,AB- -Kathy Campbell,Female,6629,1983-08-10,B- -Joshua James,Female,6630,1933-11-05,AB- -Molly Davis,Female,6631,1993-11-10,B+ -Vanessa Green,Male,6632,1986-08-09,O- -Penny House,Male,6633,1940-11-26,AB+ -Brian Goodman,Female,6634,1964-04-07,B- -Eric Hernandez,Male,6635,1973-03-26,A+ -George Bauer,Female,6637,1963-06-02,O+ -Drew Rivera,Female,6638,1990-01-25,O- -Tammy Henry,Male,6639,1996-08-20,B- -Tyler Crane,Male,6641,1964-11-26,B- -Mary Marquez MD,Female,6642,1987-10-06,B+ -Latasha Briggs,Female,6643,1938-06-20,O- -Kristin Valencia,Female,6644,1986-03-31,A+ -Jesse Anderson,Male,6645,1992-02-17,A+ -Gary Cole,Male,6646,2002-12-19,AB+ -Jamie Wade,Female,6647,1995-05-02,A- -Lisa Keller,Male,6648,1998-01-24,AB- -Troy Rodgers,Female,6649,1968-04-02,A+ -Jacob Snow,Male,6650,1970-01-07,B+ -Nicholas Edwards,Male,6651,1943-07-05,AB+ -Kelly Perry,Male,6652,1943-06-28,AB- -Troy Gomez,Male,6653,2000-07-15,B- -Mr. Kenneth Reynolds,Male,6654,1940-11-13,O- -Debra Reed,Male,6655,1938-02-13,A+ -Patrick Brock,Female,6656,1941-10-29,AB+ -Deborah Watson,Female,6657,1954-07-29,B- -Emily Hodges,Male,6658,1949-06-18,A+ -Anthony Wood,Female,6659,1955-01-11,O+ -Scott Keith,Female,6660,1985-08-23,A- -Robert Blackwell,Male,6661,1974-12-24,B- -Marissa Miller,Male,6662,1934-12-16,B+ -Erika Smith,Male,6664,1987-05-12,B+ -Todd Taylor,Male,6665,1958-02-16,A+ -Amanda Cook,Female,6666,1954-09-13,B+ -Christina Matthews,Female,6667,1980-02-01,B- -Kristen Webb,Female,6668,1947-06-05,O- -Ashley Johnson,Female,6669,1937-01-25,O- -Jeffrey Williams,Male,6670,1931-11-23,A- -Tamara Perez,Male,6671,1932-07-20,O- -Erika Cruz,Male,6672,1965-12-11,AB- -Kendra Wallace,Male,6673,1996-07-07,O+ -Tammy Fox,Female,6674,1968-12-13,O- -Jeremy Richard,Male,6675,1967-12-14,B+ -Anna Arnold,Female,6676,1972-05-15,O+ -Pamela Long,Male,6677,1992-05-01,O- -Douglas Cook,Male,6678,1939-04-30,AB- -Rodney Giles,Female,6679,1952-10-31,B+ -Austin Travis,Female,6680,1977-09-07,B- -Timothy West,Male,6681,1978-06-13,A+ -Emily Bishop,Female,6682,1953-06-28,A+ -Zachary Brown,Male,6683,1938-07-19,O- -Bryan Haynes,Female,6684,1979-12-27,A+ -Henry Fleming,Female,6685,1999-10-17,O- -Heather Palmer,Female,6686,2002-06-06,O- -Jonathan Brady,Male,6687,1993-06-04,B+ -Thomas Sellers,Male,6688,1973-08-29,A- -Don Evans,Male,6689,1940-04-06,AB+ -Dan Nash,Male,6690,1930-10-05,AB+ -Christina Barajas,Female,6691,2002-09-13,A- -Sierra Patton,Female,6692,1979-12-13,AB+ -Sandra Cunningham,Female,6693,1961-08-29,O+ -Sabrina Fox,Male,6694,1991-02-03,AB+ -Barbara Robertson,Male,6695,1948-08-06,O- -Jeanette Johnson,Male,6696,1987-10-06,AB- -Renee Neal,Female,6697,1968-02-09,AB- -Daniel Young,Male,6698,1958-05-28,B- -Steven Yoder,Female,6699,1942-10-20,B+ -Timothy Miller,Male,6701,1933-03-16,AB+ -Holly Carter,Female,6702,1953-10-08,AB- -Thomas Higgins,Male,6703,1959-05-06,AB+ -Pamela Harrington,Female,6704,2000-07-10,B+ -Sean Curtis,Male,6705,1964-02-02,B- -Casey Chan,Male,6706,1959-03-30,AB- -Audrey Howard,Female,6707,1957-07-26,O- -Dominique Jackson,Male,6708,1989-05-23,O+ -John May,Male,6709,1936-09-28,A- -Ashley Edwards,Female,6710,1967-05-17,A- -Krystal Miller,Male,6711,2001-10-01,A- -Joshua Li,Female,6712,1930-10-15,AB+ -Jackson Mitchell,Female,6713,1991-02-27,AB- -Kyle Madden,Female,6714,1986-08-01,B+ -Brian Johnson,Male,6715,1980-01-30,B+ -Melissa Pena,Female,6716,1933-03-07,AB- -Kristin Bishop,Male,6717,1975-03-19,B- -Cindy Davis,Male,6718,1992-03-17,O- -Dr. Aaron Todd,Female,6719,1936-06-21,A+ -Kayla Gardner,Female,6720,1997-03-05,AB- -Lori Holder,Male,6721,1946-05-20,O+ -Lori Brown,Male,6722,1975-04-02,B- -Chad Pruitt,Female,6723,1952-06-21,AB- -David Adams,Male,6724,1995-04-23,AB- -Karen Green,Female,6725,1970-05-29,B- -Antonio Webb,Female,6726,1930-09-02,B- -Samantha Myers,Male,6727,1977-05-24,AB+ -Melissa Jimenez,Female,6728,1938-09-14,AB- -James Peterson,Female,6729,1935-12-17,A+ -Jennifer Lee,Male,6730,1943-09-12,O+ -Douglas Hopkins,Female,6731,1932-06-05,O- -Joanne Miller,Male,6732,1998-03-21,O- -Kimberly Rosario,Male,6733,2002-11-26,A+ -Michael Cervantes,Female,6734,1984-02-29,B+ -Nicholas Graves,Female,6735,1967-07-27,B- -Katherine Roach,Male,6736,1963-03-31,B- -James Stewart,Male,6738,1998-02-14,B+ -Lisa Lawson,Female,6739,1999-10-09,B- -Holly Oliver,Male,6740,1937-04-08,B+ -Catherine Thompson,Female,6741,1962-10-24,AB- -Zachary Hicks,Female,6742,1995-02-05,B+ -Mark Maxwell,Male,6743,1978-08-12,B- -Patrick Santana,Female,6744,1949-07-15,B- -Rachel Cox,Female,6745,1930-11-17,AB- -Scott Murillo,Male,6746,1942-09-29,B+ -Robert Turner,Male,6747,1989-05-15,AB- -Michele Wheeler,Female,6748,1993-05-15,A+ -Justin Carr,Male,6749,1993-08-16,AB+ -Brandi Hall,Female,6750,1989-12-06,AB- -Christina Thompson,Female,6752,1974-03-02,O+ -Gregory Banks,Female,6753,2000-05-20,B- -Patricia Thomas,Male,6754,1959-06-28,AB+ -Alejandro Black,Female,6755,1947-12-11,O- -Derek Edwards,Female,6756,1985-12-04,A+ -Kristy Lara,Male,6758,1961-08-25,B+ -Robert Richardson,Male,6759,1954-09-01,AB+ -Donald Terry,Female,6760,1966-11-30,AB- -Brandon Dalton,Male,6761,1950-07-13,B- -Danielle Simon,Female,6762,1948-03-03,B- -Andrew Morris,Male,6763,1950-02-27,B- -Michael Bennett,Male,6764,1974-11-21,AB+ -Sara Miller,Female,6765,1975-05-23,B- -David Townsend,Female,6766,1936-12-12,AB- -Cynthia Maynard,Female,6767,1982-08-22,B+ -Margaret Brady,Male,6768,1971-08-30,AB+ -Denise Garcia,Male,6769,1980-12-17,B- -Joanne Wilcox,Female,6770,1938-03-29,O- -Adam Lynch,Female,6771,1996-09-19,O- -Laura Cervantes,Female,6772,1968-11-26,O+ -Christina Hernandez,Male,6773,1972-12-01,B- -Jonathan Small,Female,6774,1971-02-24,B- -Michael Morgan,Female,6775,1935-09-09,AB+ -James Gross,Female,6776,1968-01-29,AB+ -Adrienne Jackson DVM,Female,6777,1996-05-03,A- -Amanda Bray,Female,6778,1940-08-03,B+ -Stephanie Day,Male,6779,1974-03-23,B- -Whitney Anderson,Female,6780,1943-05-06,O+ -Ashley Roberts,Male,6781,1953-08-23,B+ -James Bell,Male,6782,1930-10-25,B- -Thomas Nelson,Female,6784,1965-11-08,B+ -Samantha Griffin,Female,6785,1990-11-22,AB- -Michael Saunders,Female,6786,1954-09-28,AB+ -Scott Hess,Female,6787,1932-10-12,B- -Erika Kidd,Male,6788,1933-10-16,B+ -Julie Morales,Male,6789,2001-02-10,AB+ -Lauren Bates,Female,6790,1953-12-11,B- -Corey Rose,Female,6792,1981-04-17,A+ -Eileen Price,Female,6793,1978-05-02,AB+ -Rebecca Clark,Female,6794,1933-06-14,B+ -Curtis Smith,Female,6795,1951-02-01,O+ -Alex Nguyen,Male,6796,1997-10-16,A+ -Amanda Gomez,Female,6797,1987-05-09,AB- -Joshua Kelley,Female,6798,1993-09-28,B- -Ashley Chen,Male,6799,1990-05-22,A- -Kyle Powell,Male,6800,1958-06-24,AB- -Kyle Arnold,Female,6801,1972-06-28,AB+ -Matthew Browning,Female,6802,1990-03-04,A+ -Patrick Murphy,Male,6803,1962-06-26,AB- -Brandon Thomas,Female,6804,1972-12-07,O+ -Julia Carroll,Male,6805,1991-09-17,A- -Sheri Dominguez,Female,6806,1945-03-06,AB+ -Jeffrey Rivera,Female,6807,1994-09-06,A+ -Craig Bryant,Female,6808,1987-09-06,AB- -Thomas Durham,Male,6809,1980-01-04,A+ -Benjamin Brooks,Female,6810,1964-03-11,A+ -Sara Cox,Female,6811,1998-09-18,AB- -Amanda Fuentes,Female,6812,1957-08-06,O- -Cameron Smith,Female,6813,1959-06-02,B- -Mckenzie Santiago,Female,6814,1940-06-06,B+ -Miguel Robinson,Female,6815,1990-10-04,AB+ -Charlotte Torres,Female,6817,1988-03-24,AB+ -Rachel Tran,Female,6818,1949-09-24,A- -Elizabeth Kennedy,Male,6819,1986-03-27,A- -Paul Gilbert,Male,6820,1987-08-27,A- -Charles Vaughn,Female,6821,1967-08-21,AB+ -Nicole Lane,Male,6822,1973-10-17,A+ -Philip Anderson,Male,6823,1973-11-26,A- -John Obrien,Female,6824,1961-12-15,AB- -Douglas Hickman,Male,6825,1966-03-03,B- -Richard Payne,Female,6826,1978-09-19,O+ -Angel Duke,Male,6827,2001-12-04,AB+ -Nicholas Luna,Female,6828,1944-03-25,AB- -Jonathan Small,Male,6829,1972-08-01,B- -Pamela Calderon,Male,6830,1950-05-28,B- -Tabitha Gray,Female,6831,1953-11-14,O- -Christopher Greene,Male,6832,1970-09-07,B+ -Barbara Alexander,Male,6833,1935-12-13,AB- -John Meza,Female,6834,1966-01-10,AB+ -Christina Jordan,Female,6835,1975-08-16,A- -Megan Phillips,Male,6836,1985-09-30,A+ -James Fox,Male,6837,1982-03-02,A- -Thomas Bell,Male,6838,1960-05-08,B- -Michelle Garcia,Female,6839,1996-04-13,B- -Justin Hernandez,Female,6840,2002-01-30,O+ -Kendra Barnett,Male,6841,1940-11-25,A- -Stephanie Anderson,Male,6842,1987-12-01,B+ -Patrick Bryant PhD,Female,6843,1944-05-14,B+ -Sue Allen,Male,6844,1958-11-23,O- -Michael Mccormick,Male,6845,1986-12-24,B+ -Kenneth Castro,Female,6846,1946-10-19,B- -Evelyn Bowman,Female,6847,1945-04-05,B- -Jason Sanchez,Male,6848,1986-03-03,B+ -Matthew Downs,Female,6849,2001-12-18,A+ -Shawn Woods,Female,6850,1967-08-06,A+ -Christopher Harmon,Male,6851,1949-09-07,B+ -Tiffany Hancock,Female,6852,1969-10-24,O+ -Kevin Sutton,Female,6853,1959-10-14,AB- -James Lindsey,Male,6854,1960-05-10,O+ -Christopher Mora,Male,6855,1967-06-03,O+ -Michelle Hunter,Male,6856,1987-04-11,B+ -Sandra Jacobs,Female,6857,1937-08-08,A+ -Joshua Andrade,Female,6858,1955-06-30,A- -Kimberly Stephens,Female,6859,1951-01-28,A- -Carla Griffin,Male,6860,1970-01-20,B+ -Gloria Mendoza,Male,6861,1952-12-17,A- -Jason Kelley,Male,6862,1976-09-02,AB- -Gregory Bentley,Female,6863,1998-08-07,A+ -Miguel Taylor,Male,6864,1952-01-10,B+ -Shawna Barnes,Female,6865,1986-05-29,O- -Lisa Ross,Female,6866,1956-04-29,AB+ -Stephen Gonzales,Female,6867,1971-03-01,AB+ -Rachel Church,Male,6868,1943-11-09,B+ -Jessica Marsh,Female,6869,1959-11-05,B+ -Erica Mcneil,Male,6870,1990-12-10,O- -Michael White,Female,6871,1945-04-13,A- -Deborah Ford,Female,6872,1935-07-08,AB+ -Melissa Bryan,Female,6873,1985-03-26,AB- -Ryan Perez,Male,6874,1965-08-02,B+ -Rebecca King,Female,6875,1959-02-13,A+ -John Baker,Male,6876,1999-10-13,AB+ -Lori Sloan,Female,6877,1967-05-15,AB- -Stephanie Weaver,Male,6878,1949-07-28,A+ -James Shields,Male,6879,1996-02-14,B+ -Jenny Cook,Female,6880,1981-05-01,AB- -Michael Caldwell,Male,6881,1968-05-23,O- -Micheal King,Female,6882,1984-10-17,B+ -Rachel Li,Male,6883,1946-03-17,O+ -Richard Grant,Male,6884,1973-06-30,O- -Andrew Adams,Female,6885,1990-05-25,AB+ -Steven Torres,Male,6886,1999-02-24,A+ -Jeremy Willis,Female,6887,1948-03-05,AB- -Troy Smith,Male,6888,1942-09-26,AB+ -Dale Henderson,Male,6889,1931-09-02,AB+ -Steven Benson,Male,6890,1951-09-28,B+ -Elaine Glenn,Male,6891,1958-05-02,O+ -Lawrence Meadows,Female,6892,1940-08-02,A- -Tammy Dunlap,Female,6893,1975-11-16,AB+ -Melissa Mcknight,Female,6894,1994-01-07,O+ -Pamela West,Male,6896,1976-07-17,A+ -Eric Stark,Female,6897,1993-10-12,A+ -Vanessa Cook,Female,6898,1991-04-25,AB- -Teresa Jones,Male,6899,1936-03-03,A- -Shannon Olson,Female,6900,1943-07-14,O+ -Ashley Barnes,Male,6901,1963-10-05,O- -Tanya Porter,Female,6902,1932-05-14,A+ -Robert Dickerson,Female,6903,1933-06-22,B+ -Jennifer Mack,Female,6904,1950-05-30,A- -Morgan Ballard,Female,6905,1967-06-02,AB- -Heather Maxwell,Male,6906,1999-06-08,O- -Kelli Jensen,Female,6907,1987-05-17,A+ -Jamie Graham,Male,6908,1963-11-14,A+ -Gary Blankenship,Female,6909,1944-04-26,AB- -Andrea Byrd,Female,6910,1974-08-27,AB- -Kevin Powell,Female,6911,1980-12-25,B- -Ricky Nelson,Female,6912,1941-02-06,B+ -Joanne Hall,Female,6914,1932-07-24,AB+ -Chloe Scott,Female,6915,1963-04-30,AB+ -Scott Sherman,Male,6916,1992-05-13,O- -Lauren Dominguez,Male,6917,1996-06-18,AB+ -Karen Kelly,Male,6918,1958-10-31,O- -Sandra Wallace,Male,6919,1972-08-08,A- -Christopher Walker,Male,6920,1974-03-27,A+ -Justin Garcia,Male,6921,1975-10-01,B- -Megan Wagner,Female,6922,1956-08-18,B- -Brittany Pena,Male,6923,1951-04-15,B+ -Jeffrey Bonilla,Female,6924,1985-06-06,B+ -Collin Miller,Male,6925,1935-06-09,A+ -Steven Watts,Male,6926,1969-01-08,AB- -Caleb Pitts,Female,6927,1988-05-12,B+ -Tony Carter,Male,6928,1942-08-09,B+ -Erin Brooks,Female,6930,1982-06-19,O+ -James Richard,Male,6931,1973-09-12,O+ -James Choi,Female,6932,1955-11-28,AB+ -Dennis Gray,Female,6933,1999-01-15,AB- -Angela Weber,Male,6934,1968-10-14,O- -Kimberly Prince,Female,6935,1951-03-26,A- -Rachel Rodriguez,Female,6936,1969-01-02,B- -William Price,Male,6937,1941-03-02,AB+ -Steve Glenn,Male,6938,1965-03-11,B+ -Molly Oliver,Male,6939,1978-08-08,A+ -Catherine Anderson,Female,6940,1941-01-25,AB- -Janet Nelson,Male,6941,1974-08-02,B+ -John Powell,Male,6942,1969-05-25,B- -Kaitlyn Juarez,Male,6943,1937-01-19,O- -Kelli Cowan,Male,6944,1948-06-29,O- -Laurie Moses,Female,6945,1979-03-10,O+ -Kimberly Valdez,Male,6946,1935-06-10,AB+ -Stacy Lewis,Female,6947,1980-12-28,B+ -Dalton Dunn,Female,6948,1985-09-19,A+ -Terry Brown,Male,6949,1995-09-05,B- -Charles Cook,Female,6950,1972-05-10,B+ -Francis Aguirre,Female,6951,1997-08-21,A- -Leslie Garcia,Female,6952,1946-05-05,O- -Brent Brown,Female,6953,1999-08-14,B+ -Shannon Miller,Male,6954,1950-07-08,B- -Mary Davis,Female,6955,1941-03-27,A+ -Rachel Hunt,Male,6956,1935-09-08,B- -Amy Robinson,Female,6957,1989-03-07,AB+ -David Fitzgerald,Male,6958,1938-03-14,O+ -Brandon Hayes,Female,6959,1940-04-02,B- -Theresa Robertson,Female,6960,1969-08-10,AB- -Paul Horne,Female,6961,1969-10-06,B+ -Angela Meadows,Male,6962,1945-04-26,O+ -Antonio Mendoza,Female,6963,1950-08-15,A+ -Gloria Taylor,Female,6964,1950-03-08,O+ -Ashley Nelson,Female,6965,1969-10-30,B- -Shane Franklin,Female,6966,1979-05-12,B- -Melissa Schultz,Male,6967,1938-08-11,AB- -Sue Peters,Female,6968,1968-04-21,O- -Candace Thomas,Female,6969,1968-07-23,B+ -Amy Dunlap,Female,6970,1975-07-10,AB- -Michael Hicks,Female,6971,1986-01-16,B- -Allison Berry,Male,6972,1951-10-12,A- -Melissa Thompson,Male,6973,1949-11-26,O+ -Noah Murphy,Female,6974,1949-07-10,AB- -John Brooks,Male,6975,1948-09-11,AB- -Michaela Hoffman,Female,6976,1997-10-02,B+ -Victoria Jones,Female,6977,1954-03-20,A- -Paige Young,Female,6978,1968-12-07,A- -Donald Mack,Female,6979,1947-05-03,A- -Scott Oneill,Male,6980,1984-06-22,B+ -Edward King,Male,6982,1966-09-06,O- -Paula Scott,Male,6983,1978-12-18,B- -James Preston,Male,6984,1958-03-06,B- -Charles Powers,Female,6985,1980-10-07,A+ -Pamela Cervantes,Male,6986,1957-10-30,B+ -Manuel Castillo,Male,6987,1988-12-28,O- -Alison Palmer,Female,6988,1958-08-12,A+ -Jessica Thompson,Male,6989,1985-12-01,A+ -Nicole Evans,Female,6990,1935-07-29,A+ -Lauren Bowers,Male,6991,1961-05-21,B+ -Philip Reeves,Male,6992,1951-11-04,AB+ -Lisa Lowery,Male,6993,1977-03-16,A+ -Tamara Bautista,Male,6994,1985-04-29,AB- -Joshua Thomas,Female,6995,1993-05-24,O+ -Jose Woodward,Female,6996,2000-02-28,AB- -Christy Johnson,Male,6997,1963-05-10,AB- -Jeffrey Powell,Male,6998,1930-10-26,B- -Terry Noble,Male,6999,1994-09-10,AB+ -William Ray,Male,7000,1932-07-12,B+ -Tyler Valenzuela,Male,7001,1986-06-12,A+ -Debra Mitchell,Female,7002,1966-07-02,B- -Lee Rodriguez,Male,7003,1986-08-25,O- -Allen Crawford,Female,7004,1982-07-10,O- -Kevin Bishop,Male,7005,1948-01-05,B+ -Fred Simon,Female,7006,1943-05-08,B- -Stacy Jennings,Female,7007,1989-06-10,O+ -Jennifer Potts,Male,7008,1963-07-21,B+ -Jonathan Graves,Male,7010,1992-11-17,B- -Willie Hendricks,Male,7011,1979-10-17,B- -Whitney Brown,Male,7012,1959-11-10,AB+ -Christopher Chapman,Female,7013,1966-07-24,B+ -Cassandra Rogers,Female,7014,1973-06-26,O- -Sandra Bell,Male,7015,1982-02-18,O- -Angela Griffith MD,Male,7016,1984-01-08,A+ -Sandra Myers,Female,7017,1956-06-16,AB- -Michael Castillo,Female,7018,1982-12-07,B+ -Dennis Ruiz,Male,7019,1932-07-30,B- -Patricia Herrera,Male,7020,1935-03-23,B+ -Joan Miller,Female,7021,1943-03-31,B- -Cynthia Mason,Female,7022,1967-06-16,O+ -Thomas Hill,Male,7023,1997-01-18,B+ -Caleb Peterson,Female,7024,1978-04-06,A- -Amanda Richard,Female,7025,1945-08-06,A- -William Clark,Male,7026,1974-06-05,O- -Robert Garcia,Female,7027,1967-01-30,O+ -Donald Osborne,Male,7029,1964-07-16,AB+ -Carla Johnson,Male,7030,1934-01-06,A+ -Paul Walsh,Female,7031,1985-09-10,O+ -Austin Fleming,Male,7032,1980-03-29,O- -Suzanne George,Female,7033,1931-01-11,AB+ -Mary Castaneda,Male,7034,1930-09-20,B- -Beverly Kim,Female,7035,1986-10-20,AB+ -Melissa Moon,Male,7037,1992-08-29,AB- -Ryan Riley,Male,7039,1961-09-15,B+ -Cynthia Scott,Female,7040,1957-10-02,O+ -Kathryn Brooks,Female,7041,1951-06-13,O- -Sharon Reed,Female,7042,1935-03-09,O+ -Mrs. Emily Lambert MD,Female,7043,1952-03-12,B- -Katie Boyd,Female,7044,1962-05-19,A- -April Martinez,Female,7045,1934-07-11,B- -Katelyn Ryan,Male,7046,1990-01-10,O- -Aimee Bartlett,Male,7047,1985-07-07,AB- -Jacqueline Johnson,Female,7048,1931-08-23,A+ -Marcus Rodriguez,Female,7049,1988-01-16,B+ -Ricardo Harrington,Male,7050,1980-02-04,B+ -Troy Travis,Female,7051,2000-10-28,AB+ -Brittany Henry DDS,Female,7052,1954-01-27,AB+ -Rebecca Boone,Female,7053,1998-04-30,B- -Jonathan Washington,Male,7054,1986-05-24,O+ -Daniel Freeman,Male,7055,1939-12-17,A- -Cassandra Wu,Female,7056,1958-05-09,O+ -Christina Cortez,Male,7057,1973-10-11,AB- -Louis Haney,Female,7058,1955-06-09,A+ -Dennis Pineda,Male,7059,1945-05-01,B+ -Michael Gray,Female,7060,1992-07-06,O+ -John Middleton,Female,7061,1969-04-08,B+ -Justin Boyd,Male,7062,1998-04-15,AB+ -Willie Collins,Female,7063,1968-03-07,B+ -Teresa Hernandez,Female,7064,1959-06-20,A- -Yolanda Richards,Female,7065,1969-03-09,B+ -Seth Pratt,Female,7066,1950-03-19,O+ -Kyle Pena,Male,7067,1954-08-05,A- -Chelsea Ramos,Female,7068,1984-08-18,B+ -Nicole Cunningham,Female,7069,1951-02-07,A+ -Christina Riley,Female,7070,1976-11-25,AB+ -Bethany Dyer,Female,7071,1998-02-21,B+ -Bradley Alvarez,Male,7072,1942-09-08,A- -Manuel Black,Male,7073,1977-05-18,O+ -Susan Brown,Female,7074,1955-05-19,AB+ -Thomas Hernandez,Female,7075,1967-09-22,B- -Jeffrey Pacheco,Male,7076,1949-03-10,B- -Jonathan Brown,Male,7077,1972-07-02,AB- -Mr. Gregory Pitts,Female,7078,1981-05-18,B- -Eric Wells,Male,7080,1939-11-28,O+ -John Davila,Female,7081,1999-06-21,A+ -Alexis Villegas,Female,7082,1987-01-09,AB+ -Jennifer Gonzalez,Female,7083,1930-09-30,A- -Teresa Riggs,Female,7084,1965-08-12,O- -Jeremy Rodriguez,Female,7085,1979-09-18,B- -Kevin Cruz,Male,7086,1936-12-22,B- -Timothy West,Female,7087,1938-08-31,O- -Madison Mata,Female,7088,1987-12-12,A- -Abigail Watson,Male,7089,1969-06-19,A- -Daniel Chapman,Male,7090,1969-03-24,O- -David Mathews,Female,7091,1972-08-24,A- -Robert Herman,Female,7092,1932-08-04,O+ -Kristin Garcia,Male,7094,1970-03-25,A- -Thomas Anderson,Male,7096,1976-03-30,AB+ -Kyle Ho,Male,7097,1972-07-19,A- -Thomas Moore,Female,7098,1948-05-25,B+ -Jay Collins,Male,7099,1953-02-04,B+ -Andrea Parsons,Female,7100,1998-09-02,B- -Donald Alvarez,Female,7101,1961-01-28,A+ -Kristie Hardin,Male,7102,1992-04-09,O+ -Cameron Wheeler II,Female,7103,1995-10-28,O+ -Tina Campbell,Female,7104,1939-10-31,A- -Stephen Wade,Male,7105,1957-07-22,A+ -Adam Patel,Male,7107,1978-02-14,A+ -Brianna Durham,Male,7108,1978-11-13,AB- -Alexis Bryant,Female,7109,1931-01-26,A+ -Amy Richardson,Male,7110,1990-03-26,A- -Robert Sherman,Female,7111,1964-09-07,A- -William Wilcox,Female,7112,1961-09-04,O- -Mary Ellis,Male,7113,1965-09-03,B- -John Hernandez,Female,7114,1991-07-30,B+ -Dana Robinson,Male,7115,1965-11-20,AB- -Christopher Ayers,Female,7116,1999-02-16,A- -Karen Stephenson,Female,7117,1937-01-04,O- -John Reid,Female,7118,1946-01-24,AB- -Joyce Scott,Male,7119,1971-11-06,B- -Doris Perez,Female,7121,1933-04-26,AB- -Angel Cameron,Female,7122,1954-12-22,O- -Regina Terry,Male,7123,1934-03-20,AB+ -Joshua Moore,Female,7125,1999-10-14,B+ -Samuel Arellano,Female,7126,1976-08-14,A- -Reginald Miller,Male,7127,1953-10-20,B+ -David Wood,Female,7128,1954-06-05,B- -Holly Robinson,Female,7129,1978-05-16,O+ -Brittany Rodriguez,Female,7130,1995-11-20,B- -Regina Waters,Male,7131,1958-03-25,B- -Anthony Duncan,Male,7132,1994-12-20,B- -Natalie Sanders,Female,7133,1964-11-22,AB+ -Steven Bruce,Male,7134,1942-01-04,A- -Joshua Franco,Male,7135,1977-05-17,O- -Jason Kaiser,Male,7136,1963-07-09,A- -James Oliver,Male,7137,1981-04-06,O+ -Stephen Henson,Male,7138,1969-01-13,O- -Amy Ryan,Male,7139,1954-07-01,AB- -Andrew Zimmerman,Female,7140,1968-03-08,AB- -Alyssa Delgado,Male,7141,1946-03-28,AB- -Mary Walker,Male,7142,1944-10-16,O- -Rachael Hutchinson,Male,7143,1990-05-13,A+ -Charles Villa,Male,7144,2002-05-28,AB+ -Charles Chase,Male,7145,1973-11-08,A+ -Sabrina Holland,Male,7146,1989-04-20,A- -Thomas Cabrera,Male,7147,1931-05-23,AB- -Ann Simmons,Male,7148,1933-12-07,AB+ -Ashley Hester,Female,7149,1961-10-23,O- -Rodney Clark,Female,7150,1953-12-16,AB- -Richard Parker,Male,7151,1974-02-21,O- -Tyler Walters,Female,7152,1950-02-19,AB+ -Susan Cooper,Female,7153,1960-12-03,O- -Lisa Cunningham,Female,7154,1987-03-23,O- -Victoria Rodriguez,Male,7155,1967-11-23,O+ -Michael Valentine,Male,7156,1984-10-10,A- -Jamie Gonzales,Female,7158,1942-01-17,A+ -Kristopher Freeman,Female,7159,1943-10-17,B+ -Colton Peterson,Female,7160,1997-01-24,A+ -Christopher Oconnell,Male,7161,1973-05-23,A+ -Kelsey Mills,Female,7162,1940-03-04,B- -Karen Adams,Female,7163,1970-09-25,O+ -Tracy Oliver,Female,7164,1951-06-17,B+ -Hannah Sanders,Female,7165,1933-07-25,AB- -Margaret Caldwell,Female,7166,1950-03-07,AB- -Donald Arnold,Female,7167,1989-01-20,AB- -Michael Jacobs,Male,7168,1980-10-04,A+ -Kari Garcia,Male,7169,1947-07-22,A- -Kimberly Gonzalez,Male,7170,1947-06-06,A+ -Cameron Baxter,Female,7171,1972-04-19,B+ -Robert James,Male,7174,1931-11-24,A- -Tracy Sexton,Female,7175,1934-01-18,O+ -Thomas Arnold,Male,7176,1947-07-07,A- -Bryan Harper,Male,7177,1953-02-17,B+ -Dr. Jenna Chase,Female,7178,1959-01-31,O- -Beth Long,Female,7179,1976-01-25,A+ -Debra Lee,Male,7180,1957-07-31,AB- -Madison Lozano,Male,7181,1937-03-31,O- -Phillip Trevino,Female,7182,1944-04-06,A+ -Ryan Howard,Male,7183,1947-11-21,AB+ -Amanda Jackson,Female,7184,1987-08-31,B- -Steven Rocha,Female,7185,1949-09-29,A+ -Julia Young,Female,7186,1957-03-07,AB+ -Richard Thomas,Male,7187,1962-08-28,B+ -Roy Nelson,Male,7188,1982-02-06,O+ -Carrie Merritt,Male,7189,1997-05-03,AB+ -Stephen Collins,Male,7190,1955-07-05,O+ -Cynthia Cameron,Female,7191,1963-05-05,A+ -Jeffrey Vazquez,Female,7192,1959-09-12,O+ -Brian Austin,Male,7193,1951-09-21,AB+ -John Johnston,Female,7194,1944-12-29,A- -Ashley Fuller,Male,7195,1967-12-06,B- -Brian Ryan,Male,7196,1951-09-16,O- -Gina Chavez,Female,7197,1935-09-12,O- -Edward Sheppard,Female,7198,1946-09-03,B- -Sharon Barton,Female,7199,1995-02-09,AB- -Kenneth Hayes,Male,7200,2001-07-10,O- -Miss Sara Shaw,Female,7201,1951-05-08,B+ -Megan Ayala,Female,7202,1977-03-20,A+ -Wanda Mcdonald,Female,7203,1952-11-07,AB- -Mark Fisher,Female,7204,1984-06-04,A+ -Renee Taylor,Male,7205,1932-06-23,AB+ -Laura Kennedy,Male,7206,1978-05-02,B+ -Melanie Roman,Female,7207,1975-12-19,AB+ -Penny Pitts,Female,7208,1999-08-06,AB- -Jason Jones,Female,7209,1957-04-23,AB- -Colton Nelson,Female,7210,2001-07-27,B+ -Joshua Hayes,Female,7211,1933-03-30,B+ -James Trevino,Female,7212,1999-05-01,AB- -David Calderon,Female,7213,1934-09-22,AB- -Nancy David,Female,7214,1961-02-27,O+ -Kenneth Perry,Female,7215,1998-01-10,A- -Jason Carter,Male,7216,1965-10-01,AB- -Christina Sutton,Female,7217,1990-10-08,B+ -Dana Costa,Male,7218,1945-05-08,A- -Mark Edwards,Female,7219,1940-10-31,AB- -Kayla Lee,Male,7220,1975-04-30,AB+ -Bradley Goodman,Male,7221,1998-01-13,A+ -Rebecca Simmons,Male,7222,1981-03-04,A- -Craig Stevens,Female,7223,2000-06-16,AB+ -Martin Smith,Female,7225,2001-12-16,O- -Kevin Garner,Female,7226,1974-01-11,B+ -Paul Terry,Female,7227,2002-02-19,O+ -James Williams,Female,7228,1931-02-26,O+ -Jordan Pittman,Female,7229,1945-03-03,A+ -William Perry,Male,7230,2000-08-06,AB- -Lisa Ramirez,Male,7231,1974-08-06,AB+ -Kenneth Guerra,Female,7232,1973-09-18,O- -Stephanie Garcia,Male,7233,1973-06-26,AB+ -Todd Nguyen,Male,7234,1942-10-20,B+ -Patricia Nguyen,Male,7235,1954-11-13,B+ -Kenneth Anderson,Male,7236,1965-08-14,AB- -Tony Woods,Male,7237,1948-06-23,AB- -Bryan Rhodes,Male,7238,1946-09-17,B+ -Cassandra Bradford,Female,7239,1978-11-22,B- -Alyssa Pierce,Male,7240,1983-09-27,B+ -Bryan Bradley,Female,7241,1980-10-30,AB+ -Julie Patel,Female,7243,2001-04-03,A+ -Brian Williams,Female,7244,1983-05-03,AB+ -Nicole Cowan,Male,7245,1993-01-20,O+ -Beth Simmons,Male,7246,1961-01-26,O- -Michael Moody,Male,7247,1956-10-13,A- -Jacob Bush,Female,7248,1946-02-08,A+ -Kimberly Lara,Male,7249,1991-03-28,B- -Larry Phillips,Male,7250,1945-11-16,O- -Kathryn Le,Male,7251,1956-05-11,O- -Adam Collins,Female,7252,1953-01-15,A- -Stephen Ramirez,Male,7253,1997-11-20,O+ -Michael Blankenship,Male,7254,1964-02-18,O+ -Melissa Powell,Male,7255,1956-12-16,O+ -Melanie Berger,Female,7256,1964-10-29,A+ -Benjamin Henderson,Male,7257,1998-01-04,AB+ -Robert Harrell DDS,Male,7258,1955-01-15,O- -Nicholas Cook,Male,7259,1942-05-22,AB+ -Erika Brown,Female,7260,1947-12-17,AB+ -Joshua Lee,Female,7261,1950-11-12,O+ -Richard Cooper,Male,7262,1982-06-15,AB+ -Anthony Thomas,Male,7264,1990-05-23,O- -Susan Nichols,Female,7265,1938-07-22,O- -Allison Wilkins,Female,7266,1953-09-28,AB- -Ariana Garcia DDS,Female,7267,1962-01-19,B- -Ruben West,Male,7268,1978-07-25,A+ -Kimberly Davenport,Male,7269,1963-01-18,AB+ -Kathleen Evans,Male,7270,1999-09-21,A+ -Julie Johnson,Male,7271,1985-05-30,A+ -Teresa Nelson MD,Male,7272,1952-04-09,A+ -Thomas Nichols,Male,7273,1932-07-13,A- -Dylan Smith,Female,7274,1980-10-19,B+ -Samantha Francis,Female,7275,2002-06-30,AB- -Donna Gray,Female,7276,1945-01-28,A+ -Dawn Davidson,Female,7277,1967-05-17,B+ -John Dougherty,Female,7278,1936-07-23,B+ -Alyssa Webster,Female,7279,1997-05-13,AB- -Dr. Chris Smith,Female,7280,1971-12-02,O- -Angela Meyers,Female,7282,1952-07-10,A- -Jacqueline Graves,Male,7283,1962-04-04,AB+ -Heather Jenkins,Male,7284,1945-02-06,AB- -Darren Andrews,Female,7285,1982-03-03,B- -Deborah Hester,Male,7286,1939-03-20,B+ -Frank Sutton,Female,7287,1976-06-20,A+ -Stephen Johnson,Female,7288,1961-03-29,B+ -Robert Potts,Female,7289,1983-06-14,A- -Anne Meyers,Female,7290,1954-11-26,B- -Christine Ware,Female,7291,1993-02-06,O- -Eric Schwartz,Male,7292,1986-01-17,O- -Isabella Collier,Male,7293,1958-05-15,O+ -Sarah Salazar,Male,7295,1953-05-11,A+ -Austin Webb,Female,7296,1941-09-10,O+ -Shannon Harris,Female,7297,1991-05-04,A- -Amy James,Female,7298,1957-02-14,B- -Edwin Vega,Female,7299,1976-05-19,B+ -Kent Mcgrath,Female,7300,1996-10-27,AB+ -Karen Stone,Female,7301,1960-11-18,O+ -Tyler Hernandez,Male,7302,1944-12-05,O- -Christian Trevino,Female,7303,1984-08-16,A+ -Kristina Payne,Female,7304,2002-12-01,B+ -Brandi Montgomery,Male,7306,1985-07-14,B- -Tabitha Sloan,Female,7307,1947-09-26,AB- -Brianna Johnson,Female,7308,1995-05-24,A- -Alyssa Davis,Male,7309,1977-08-22,A- -Jonathan Thomas,Male,7310,1947-09-19,O- -Ms. Ashley Kennedy DVM,Male,7311,1935-08-25,AB- -Jennifer Cochran,Female,7312,1954-09-22,A- -James Nunez,Male,7313,2001-10-08,AB+ -Casey Sparks,Female,7314,1986-09-09,B+ -Jeffrey Diaz,Female,7315,1984-06-06,A+ -Gabriela Atkins,Female,7316,1934-12-19,B+ -Shane Durham,Female,7317,1961-12-15,AB+ -Rachel Dickerson,Male,7319,1991-12-27,A- -John Hicks,Male,7320,1969-03-05,AB+ -Joan Santos,Female,7321,2001-04-05,B+ -Todd Miller,Female,7322,1936-05-02,A- -Dalton Oconnell,Male,7323,1956-07-29,A+ -William Burns,Male,7325,1978-03-25,A+ -Kelly Porter,Female,7326,1956-12-07,AB- -Audrey Edwards,Female,7327,1945-12-19,AB+ -Jon Williamson,Male,7328,1983-01-26,B- -Eric Moore,Male,7329,1984-04-11,AB- -Angela Osborn,Female,7330,1941-02-08,A+ -Dominique Howard,Male,7331,1930-11-02,O- -Ernest Freeman,Male,7332,1969-04-13,A- -Amy Gay,Female,7333,2002-01-02,AB- -Lisa Tucker,Female,7334,1934-08-17,O+ -Martin Espinoza,Male,7335,2001-06-10,B- -Stephen Jensen,Male,7336,1940-09-22,A- -Patricia Rodriguez,Female,7337,1994-03-30,AB- -Adam Bush,Male,7338,1998-06-08,A+ -Scott Hawkins,Male,7339,1938-01-15,B+ -Alexander Gallegos,Female,7340,1940-07-29,A+ -Jill Knight,Female,7341,1969-09-19,B- -Bill Buchanan,Female,7342,1969-03-15,O+ -Cheyenne Miller,Female,7343,1971-11-22,AB- -Joseph Turner,Female,7344,2001-04-04,B+ -Joshua Bender,Male,7345,1945-06-20,AB- -Derrick Jacobs,Male,7346,1983-10-15,AB+ -Allison Krueger,Male,7347,2000-06-22,O- -Diane Cruz,Male,7348,2002-05-28,A+ -Rebecca Boyd,Female,7349,1979-11-03,AB- -Cory Barnes,Male,7350,1972-11-30,AB- -Randall Holmes,Female,7351,1978-07-14,A- -Amanda Reed,Male,7352,1945-03-23,A- -Vicki Mcclain,Female,7353,1972-04-21,AB- -Daisy Brown,Female,7354,1980-12-14,O+ -Scott Harvey MD,Female,7356,1932-12-15,O- -Michael Stevens,Male,7357,1968-04-14,AB- -Suzanne Gonzales,Female,7358,1986-05-17,B- -Jennifer Lewis,Female,7359,1992-01-20,A+ -Michelle Jones,Female,7360,1971-12-19,AB+ -Brenda Coleman,Male,7361,1964-12-03,A- -Jake Meyers,Male,7362,1949-10-23,B- -Brittany Gibson,Female,7363,1977-01-31,A+ -Meghan Horne DVM,Male,7364,1988-10-16,B+ -Tyrone Harris,Female,7366,1935-07-25,A- -Tristan Torres,Female,7367,1953-04-24,O+ -Malik Simmons,Male,7368,1954-11-26,A- -Michael Weiss,Female,7369,2001-07-04,O- -Jorge Meyers,Male,7370,1969-02-12,O- -Veronica Griffith,Male,7372,1946-03-09,A+ -Christopher Matthews,Female,7373,1962-01-08,B- -Donald Calderon,Female,7374,1982-02-14,AB+ -Ronald Greene,Female,7375,1939-02-23,O+ -Joan Lawson,Female,7376,1951-07-26,A+ -Paula Mullins,Male,7377,1973-07-10,B+ -Tiffany Anderson,Female,7378,1964-01-18,O+ -Thomas Bishop,Female,7379,1933-02-15,O- -Katrina Leonard,Male,7380,1999-08-12,AB- -Marcus Guerrero,Female,7381,1998-04-16,AB- -John Cruz,Female,7383,1982-10-16,AB+ -Larry Thompson,Male,7384,1955-05-31,O+ -Jonathan Mills,Male,7385,1985-12-03,A+ -Colleen Harris,Male,7386,1935-08-01,AB+ -Elizabeth Clark,Male,7387,1941-09-10,A- -Tonya Clark,Female,7388,1957-07-04,A- -Christopher Page,Female,7389,1942-10-28,B+ -Scott Wright,Female,7390,1976-03-18,B- -Carol Barry,Female,7391,1949-06-26,AB- -Mary Powers,Male,7392,1934-11-20,A+ -Dustin Franco,Male,7393,1984-06-20,O+ -Michael Mcneil,Male,7394,1940-05-14,AB+ -Carlos Evans,Male,7395,1989-04-11,A+ -Raymond Jackson,Female,7396,1955-03-01,AB+ -Catherine Yang,Female,7397,1944-11-11,AB+ -Daniel Jones,Male,7398,1948-04-17,AB+ -Jamie Ford,Male,7399,1948-11-15,O+ -Douglas Booth,Male,7400,1964-08-31,A+ -Benjamin Bright,Male,7401,1970-10-10,O- -Patricia Duran,Female,7402,1956-05-27,O- -Samantha Brown,Female,7403,1957-03-23,O+ -Hannah Rogers,Female,7404,1958-09-03,A- -John Wiggins,Male,7405,1965-07-28,O+ -Benjamin Bean,Male,7406,1987-08-12,AB- -Heather Austin,Male,7407,1994-04-01,AB+ -Stanley Jenkins MD,Male,7408,1960-06-18,A+ -Lori Benjamin,Male,7409,1948-10-22,A+ -Jose Reeves,Female,7410,1995-09-08,B- -Tyler Frost,Female,7411,1950-12-31,B- -Douglas Berry,Female,7412,1961-08-04,B+ -Michael Logan,Female,7413,1957-07-23,O- -Justin Mcbride,Female,7414,1991-11-20,B- -Heather Cruz,Male,7415,1987-04-10,B- -Sheila Woodard,Male,7416,1991-03-25,O- -Stacy Perkins,Female,7417,1957-11-06,AB- -Diane Hall,Female,7418,1999-03-14,A- -Michael Key,Female,7419,1978-06-14,O- -Cheryl Middleton,Female,7420,1938-02-10,A- -John Harvey,Male,7421,1967-12-04,B+ -Mr. John Padilla III,Male,7422,1982-11-26,B- -Justin Smith,Male,7423,1965-07-15,A+ -Anthony Miller,Male,7424,1983-08-12,B- -Brian Cunningham,Female,7425,1944-07-02,AB+ -James Alexander,Male,7426,1994-08-01,B+ -Rebecca Miller,Male,7427,1970-05-16,A- -Mary Miller,Male,7428,1945-09-09,A- -Alexis Simpson,Male,7431,1968-02-12,AB+ -Beth Williams,Male,7433,1930-05-07,AB+ -James Chang,Female,7434,1945-05-04,AB- -Mr. Matthew Rivas IV,Female,7435,1978-02-13,O+ -Francisco Daniels,Female,7436,1982-01-31,AB+ -Tammy Martin,Female,7437,1964-06-12,A- -Kimberly Brewer,Female,7438,1973-10-19,A+ -Amanda Weeks,Female,7439,1978-08-07,A- -Barbara Woodward,Male,7440,1955-03-22,A- -Sheryl Sanchez,Female,7441,1992-07-11,AB- -Erin Patel,Male,7442,1971-01-23,O+ -Timothy Rodriguez,Female,7443,1948-04-07,O+ -Nancy Frost,Male,7444,1993-02-26,AB+ -James Owens,Female,7445,1963-08-07,B+ -Krista Atkinson,Female,7446,1987-04-15,B- -John Oneill,Male,7447,1954-04-21,A- -Gregory King,Male,7448,1937-11-27,O- -Mike Turner,Male,7449,1956-06-07,B- -Jesse Edwards,Male,7450,1941-03-10,B- -Thomas Cruz,Female,7453,1981-01-18,O+ -Julia Coleman,Female,7454,1941-06-12,O+ -Jonathan Cunningham,Male,7457,1937-10-12,AB- -Latasha Wright,Female,7458,2002-02-15,AB- -Lacey Miller,Male,7459,1946-07-16,O+ -Dakota Browning,Male,7460,1984-08-09,A+ -Beth Elliott,Male,7461,1958-03-19,A+ -Andrea Miller,Male,7462,1943-01-11,O- -Timothy Hernandez,Male,7463,1976-07-28,O+ -Chelsey Howard,Male,7464,1974-06-13,AB+ -Jorge Schultz,Male,7465,1943-09-24,AB- -Philip Thomas,Female,7466,1933-10-07,O+ -Joseph Cunningham,Male,7467,1933-03-27,A+ -William Yates,Female,7468,1990-06-27,O+ -Linda Rowe,Female,7469,1931-05-06,A+ -Aaron Patel,Male,7470,1940-03-18,O+ -Catherine White,Female,7471,1946-05-11,A- -Wesley Lewis,Female,7472,1984-07-14,AB+ -Michael Andrews,Female,7473,1983-11-19,B+ -Jeffrey Mcdonald,Male,7474,1980-03-03,O- -Derrick Robertson,Male,7475,1988-08-02,A- -Cindy Robinson,Female,7476,1935-02-26,AB+ -Stephanie Huang,Female,7477,1988-04-18,A+ -Bradley Macias II,Female,7478,1938-03-07,AB- -Vicki Carter,Male,7479,1945-04-17,AB- -Andrea Murray,Male,7480,1938-08-26,B- -Jennifer Ayers,Male,7481,1942-05-28,AB+ -Dr. Ryan Lee,Male,7482,1976-09-21,O+ -Emily Grant,Male,7484,1989-03-30,O- -Aimee Farmer,Male,7485,1932-12-09,O+ -April Harris,Male,7486,1967-08-18,O+ -Craig Galloway,Female,7487,1981-05-24,AB+ -Jeremy Garcia,Female,7489,1937-05-17,B+ -Mr. Dustin Thomas,Female,7490,1956-03-07,O- -Tiffany Smith,Female,7491,1941-11-19,B- -Kyle Rivera,Male,7492,1935-11-27,A- -Luke Kelly,Female,7493,1974-04-24,O+ -Victor Douglas,Female,7494,1951-10-24,O- -Jane Anderson,Female,7495,1937-01-24,B- -Timothy Sharp,Female,7496,1949-11-14,A- -Laura Newman,Male,7497,1935-11-30,O+ -Lori Ponce,Male,7498,1974-04-12,O- -Timothy Taylor,Female,7499,1968-01-22,A- -Cody Collier,Male,7500,1961-04-28,AB+ -Aaron Lee DVM,Female,7501,1970-03-10,B+ -Cheryl White,Male,7502,1969-07-11,AB- -Stacy Lindsey,Female,7503,1962-11-30,AB- -Joseph Mullins,Female,7504,1948-07-17,O+ -Michael Woods,Male,7505,1934-06-16,O+ -Jon Hammond MD,Female,7506,1961-12-08,A- -Sharon Myers,Male,7507,1952-07-03,O- -Kenneth Rose,Male,7508,1994-03-30,AB- -Rebecca Wallace,Male,7509,1980-04-17,O+ -Monica Hodge,Male,7510,1956-08-05,B- -Julie Martin,Male,7511,1953-03-29,O+ -Angela Black,Male,7513,1935-12-22,AB- -Karen Watson,Male,7514,1961-09-29,A+ -Michael Casey,Male,7515,1981-02-22,B+ -Charles Hendrix,Female,7516,1949-08-13,AB- -Alexander Harris,Male,7517,1981-12-20,B- -April Forbes,Male,7518,1932-06-20,O- -Judith Gardner,Female,7519,1991-06-14,B- -Angela Todd,Male,7520,1955-06-09,A+ -Robert Reed,Male,7521,1979-06-14,A+ -Heather Hicks,Male,7522,1937-11-21,O+ -Curtis Gilbert,Female,7523,1965-10-02,O+ -Nicole Barnes,Female,7524,1945-05-24,AB- -Jennifer Goodwin,Female,7525,1996-11-26,AB+ -Jack Williams,Female,7526,1933-10-10,B+ -Darren Vega,Male,7527,1978-04-11,B- -Ryan Hughes,Female,7528,1945-06-21,AB- -Tamara Hatfield,Male,7529,1964-01-16,AB+ -Timothy Rivera,Male,7530,1991-07-03,AB- -John Gilbert,Male,7531,1955-11-22,B+ -Kathleen Walker,Female,7532,2002-07-05,B+ -Rebecca Costa,Female,7533,1949-04-07,A+ -Sheri Edwards,Female,7534,1947-10-06,O+ -Lisa Burke,Male,7535,1977-10-03,O+ -Darius Lindsey,Male,7536,1980-06-19,B+ -Joseph Johnson,Male,7537,1991-08-08,AB- -Brandi Rose,Female,7539,1941-08-19,B+ -Theresa Jennings,Female,7540,1981-08-21,O+ -Patricia Morris,Female,7541,1942-08-09,O- -Anthony Martin,Male,7542,1984-08-02,AB- -Dr. Hannah Cox,Female,7543,1964-08-02,A+ -Kayla White,Male,7545,2002-02-09,A- -Katelyn Miller,Male,7547,1930-08-09,AB- -Amy Coffey,Female,7548,1968-12-13,AB- -Alexander Sanford,Female,7549,1943-03-12,O+ -Christopher Kelly,Female,7550,1994-07-20,A+ -Shelly Smith,Male,7551,1987-07-08,AB- -James Phillips,Male,7552,1950-02-14,O+ -Steven Stone,Male,7553,1945-05-20,B+ -Mark Vasquez,Male,7554,1956-12-26,B- -Daniel Robertson,Male,7555,1994-08-06,A+ -Sara House,Female,7556,1942-07-13,AB+ -Willie Montes,Male,7557,1979-12-25,O- -Robert Perkins,Male,7558,1996-07-12,AB+ -Stephanie Moreno,Male,7559,1971-08-21,A- -Jerome Fry,Male,7560,1934-01-02,B+ -Carol Alvarado,Male,7561,1989-12-22,A+ -Jamie Moreno,Male,7562,1973-07-19,AB- -Elizabeth Reynolds,Male,7563,1998-03-25,O+ -Marcus Rhodes,Female,7565,1974-07-01,A- -Nicole Bell,Male,7566,1952-07-20,A+ -Vickie Murphy,Male,7567,1951-05-24,O- -Eric Miles,Female,7568,1935-08-31,A+ -Brandon Miller,Female,7569,1945-10-02,A- -Brittany Palmer,Female,7571,1949-10-25,O+ -Carla Smith,Male,7572,1968-10-23,AB+ -Mark Thomas,Female,7573,1994-01-25,B- -Maria Black,Female,7574,1946-12-14,AB+ -Gina Briggs,Male,7575,1979-01-02,O+ -Jeffery Evans,Female,7577,1981-12-21,A- -Timothy Murray,Male,7578,1970-01-13,O+ -Randall Becker,Male,7579,1932-09-28,B+ -Jasmine Lopez,Male,7580,1977-09-08,O- -Amanda Gonzales,Male,7581,1970-09-25,A+ -Sarah Love,Female,7582,1958-01-06,B+ -Lorraine Scott,Female,7583,1993-09-30,A+ -James Shaw,Male,7584,1998-01-13,AB+ -Steven Tucker,Male,7585,1988-09-08,A- -Connie Benitez,Female,7586,2002-02-27,B- -Christopher French,Female,7587,1942-04-04,B- -Brian Gray,Male,7588,1976-03-02,O- -Sierra Torres,Female,7589,1931-05-31,O+ -Paige Davis,Male,7590,1964-03-01,O- -Frank Lester,Male,7591,1933-04-06,A+ -Lisa Price,Female,7592,1959-09-26,AB- -Ms. Leah Lane DDS,Female,7593,1966-10-27,AB- -David Austin,Male,7594,1947-03-30,AB- -Anne Perry,Male,7595,2001-02-24,O+ -Robert Ellis,Female,7596,1975-08-08,O- -Michael Walker,Male,7597,1952-10-26,B+ -Stephen Jackson,Female,7598,1996-02-26,A- -Michael Vazquez,Male,7599,1946-06-14,AB+ -Richard Wilson,Male,7600,1951-11-14,A+ -Trevor Compton,Male,7601,1939-02-15,AB- -Sierra Jenkins,Male,7602,1932-02-27,A- -Tanya Dudley,Male,7603,1947-01-14,B- -Adam James,Male,7604,1957-01-12,B+ -David Jones,Male,7605,1976-07-24,O- -Robin King,Male,7606,1985-05-17,A+ -Isabel Hughes,Male,7607,1940-01-25,A+ -Terri Jefferson,Female,7608,1937-01-16,B- -Brittany Haynes,Female,7610,1948-12-07,B+ -Shane Parker,Female,7611,1943-10-13,B- -Tyler Campbell,Female,7612,1951-04-29,B- -Lance Gonzalez,Female,7614,1972-12-15,AB- -Eugene Peterson,Male,7615,1961-05-10,B+ -Christina Webb,Female,7616,1989-02-18,AB- -Carlos Lin,Male,7617,1942-11-26,O- -Shirley Jones,Male,7618,1930-03-08,B- -Jennifer Richards,Female,7619,1973-05-30,AB+ -Cody Dalton,Female,7620,1964-03-01,A+ -Edward Stewart,Male,7621,1950-08-17,B+ -Michelle Collins,Female,7622,1971-05-09,B- -Chelsea Ellis,Male,7623,1942-08-22,B+ -Francis Winters,Male,7624,1966-05-09,A+ -Daniel Haynes,Female,7626,1977-12-24,O+ -Stacy Williams,Female,7627,1945-09-09,A- -James Lynch,Male,7628,1959-05-13,O+ -Steven Elliott,Female,7629,1962-03-26,B- -Jessica Villegas,Female,7630,1995-04-19,A+ -Jeffrey Long,Male,7631,1974-07-17,A- -Elizabeth Whitehead,Female,7632,2000-07-15,O+ -Peter Baker,Male,7633,1987-02-06,B- -Angela Hunt,Female,7634,1965-06-06,A+ -Mary Hernandez,Male,7635,1984-01-01,B- -Courtney Lee,Male,7636,1976-05-11,AB- -Alexandria Jones,Male,7637,1995-11-15,A+ -Jorge Parker,Female,7639,1997-06-26,O+ -Samantha Murray,Female,7640,1970-02-03,B- -Rachel Robinson,Male,7641,1930-07-18,B+ -Scott Campos,Male,7643,2002-03-01,O+ -Kevin Ferguson,Male,7644,1976-06-03,B- -Misty Kelly,Male,7645,1977-01-08,B+ -Richard Gallagher,Female,7646,1956-11-30,B+ -William Esparza,Female,7647,2002-04-20,O- -Jason Carr,Male,7648,2002-05-14,B+ -Michele Riddle,Male,7649,1967-10-12,O+ -Sheila Gonzales,Female,7650,1978-01-27,O+ -Michaela Wright,Male,7651,1961-05-27,AB+ -Michael Atkinson,Female,7652,1930-06-28,A- -Kristen Ortega,Male,7653,1981-01-01,AB- -Mary West,Male,7654,1986-01-17,O+ -Christopher Liu,Female,7655,1976-11-13,A+ -Megan May,Female,7656,1991-12-03,A- -Tyler Baker,Female,7657,1932-03-09,B+ -Elizabeth Wilson,Male,7658,1950-10-24,B- -Ana Riley,Male,7659,1999-06-11,O- -Michael Hernandez,Male,7660,1937-08-27,A+ -Sean Edwards,Male,7661,1964-03-19,A- -Nicholas Estes,Female,7662,1942-07-25,A+ -Jacob Lindsey,Male,7663,1949-12-24,A+ -April Lee,Male,7664,1938-06-12,A+ -Melvin Arnold,Female,7665,1960-06-02,A- -Julie Miller,Female,7666,1932-01-02,O- -Ryan Larson,Male,7667,1933-02-03,B+ -Elizabeth Crosby,Male,7668,1934-05-25,AB+ -Billy Jackson PhD,Female,7669,1962-10-10,AB- -Julie Anderson,Male,7670,1959-12-12,B+ -Kevin Patton,Female,7671,1961-02-09,O+ -Sarah Williams,Female,7672,1938-01-12,A- -Melanie Martinez,Male,7673,1971-08-01,A+ -Catherine Walsh,Female,7674,2000-08-12,B+ -Jacob Gibson,Male,7675,1998-03-05,O+ -Adrian Lee,Male,7676,1943-11-23,A- -Sheila Wilson,Male,7677,1968-06-07,O+ -Ashley Atkins,Female,7678,2002-05-09,A+ -Brianna Hill,Male,7679,1949-06-09,AB+ -Amanda Holloway,Male,7680,1978-12-09,A- -Marie Huang,Male,7681,1932-06-12,O+ -Keith Wilson,Female,7682,1933-10-22,B- -Sarah Jenkins,Male,7683,1984-02-20,O+ -Jasmine Patel DDS,Male,7684,1941-08-10,AB- -Michael Hamilton,Female,7685,1987-02-14,A+ -Kathleen Brown,Male,7686,1981-01-20,O- -Karen Coleman DDS,Male,7687,1939-05-26,O+ -Debra Miller,Male,7688,1936-06-29,AB+ -Amy Brown,Male,7689,1986-08-31,B- -Mr. Jordan Miller,Female,7690,1934-02-24,B- -Shaun Hawkins,Male,7691,1973-07-20,O- -Alexis Schultz,Male,7692,1947-04-28,B+ -Thomas Jones,Male,7693,1969-12-27,AB- -Scott Hart,Male,7694,1994-04-07,O- -Allen Lowe,Female,7695,1945-04-18,AB- -Terri Smith,Female,7696,1937-12-27,O+ -Elizabeth Hudson,Male,7697,1990-07-20,A+ -Michael Flores Jr.,Female,7698,1995-11-26,AB+ -Michael Ramos,Female,7699,1973-07-15,B- -Joseph Lee,Female,7700,1978-01-20,O- -Chris Robertson,Male,7701,1997-08-03,AB+ -Mary Mcintyre,Female,7702,1988-11-05,AB- -Jennifer Arroyo DDS,Female,7703,1986-09-15,A+ -James Parker,Female,7704,1990-10-07,B- -Ashley Peterson,Male,7705,1984-11-12,B- -Brian Keith,Female,7706,1940-05-21,AB- -Patricia Roberts,Male,7707,1957-03-27,A+ -Faith Allen,Male,7708,1973-06-03,B- -Melanie Robinson,Female,7709,1993-04-22,A+ -Latoya Phelps,Male,7710,1934-04-27,B- -Tracy Mays,Female,7711,1955-12-24,O+ -Nicole Harrison,Male,7712,1980-12-08,AB- -Timothy Frazier,Female,7713,1955-02-03,A+ -James Wiggins,Male,7714,1932-10-27,AB+ -Jason Luna,Male,7716,1973-06-25,B+ -Sheila Edwards,Male,7717,1959-07-13,O+ -Sherry Morris,Male,7718,1948-04-27,A- -Kerry Pittman,Male,7719,1985-10-15,AB+ -Brandon Esparza,Female,7720,1977-05-11,AB- -Kim Powers,Female,7721,1947-05-30,B- -Deborah Taylor,Male,7722,1980-10-30,A- -Kimberly Cohen,Female,7723,1983-08-12,AB+ -Jonathan Cervantes,Male,7724,1991-05-25,O+ -Jasmine Sandoval,Male,7725,1934-01-02,A- -Carlos Hernandez,Female,7726,1972-06-20,A- -Jacqueline Morgan,Male,7727,1958-12-10,A+ -Nathan Campbell,Male,7728,1973-07-11,O- -Sonya Williams,Female,7729,1961-11-20,AB+ -Lisa Powell,Male,7730,1972-05-14,O- -Chad Martinez,Female,7731,1949-04-08,AB- -Christina Jackson,Male,7732,1956-01-04,AB+ -Cassidy Harrison,Female,7733,1988-07-13,AB+ -Katherine Spencer,Female,7734,1966-08-26,A+ -Joshua Cook,Female,7735,2000-07-17,B- -Richard Norton,Female,7736,1989-05-23,O+ -Madison Wilson,Male,7737,1947-01-13,O+ -Hannah Bennett,Male,7738,1994-04-09,O+ -Kevin Neal,Male,7739,1951-04-10,B+ -Thomas Parsons,Male,7741,1976-09-27,AB- -Larry Robinson,Female,7742,1969-04-22,A- -Elizabeth Owens,Female,7743,1987-08-15,B- -Michele Anderson,Male,7744,2000-08-04,O- -Marcus Harris,Female,7746,1980-01-17,O+ -Dana Mcgee,Male,7748,1950-03-26,B+ -Tracy Reynolds,Female,7749,1943-06-24,O- -Adam Soto,Female,7750,1967-05-06,B- -Alexis Holt,Female,7751,1992-03-02,AB- -Anthony Parker,Male,7752,1957-05-22,B- -Michelle Jones,Male,7753,1983-07-29,A+ -Pamela Gonzalez,Male,7754,1985-04-03,A- -Alice Juarez,Female,7755,1944-03-06,O+ -Stephanie Ware,Male,7756,1971-09-23,AB- -Susan Taylor,Female,7758,2001-10-15,A+ -Philip Thompson,Female,7759,1940-11-12,O+ -Bridget Williams,Female,7760,1937-06-09,B- -Michael Gregory,Female,7761,1975-05-19,B- -Jimmy Sanchez,Male,7762,1966-12-29,B+ -Patrick Wallace,Male,7763,1978-07-07,AB+ -Joanne Ortiz,Female,7764,1952-05-26,AB+ -Sandra Perez,Male,7765,1965-07-31,B- -Misty Sanders,Female,7766,1960-12-07,B- -Chelsea Greene,Male,7767,1975-11-23,O- -Lisa Williams,Male,7768,1985-05-05,B+ -Sherry Ho,Female,7769,1947-06-21,A- -Maria Spencer,Female,7771,1931-09-08,O- -Daniel Braun,Female,7772,1981-03-28,A- -Joshua Edwards,Female,7773,1979-08-30,A+ -Sarah Thomas,Female,7774,1931-04-09,AB+ -Tracie Oconnell,Male,7775,1955-01-28,AB+ -Patrick Hartman,Male,7776,1986-07-17,B+ -Karen Ross,Female,7778,1938-08-25,B- -Patricia Roberts,Female,7780,1984-10-12,B- -James Elliott,Male,7781,1966-10-13,A+ -Dr. Christian Lee,Male,7782,1943-07-10,AB- -Amy Gonzalez,Female,7783,1944-10-31,AB- -Michael Gutierrez,Male,7784,1991-04-19,B+ -Katherine Garcia,Female,7785,1954-04-26,AB- -Isaiah Parker,Female,7786,1945-05-05,AB+ -Margaret Gordon,Female,7787,1936-01-22,O- -Tricia Perez,Male,7789,1991-08-13,AB- -Daniel Powell,Male,7790,1990-10-15,O+ -Tracy Hunt,Female,7791,1975-11-27,B+ -John Silva,Male,7792,1981-01-13,A+ -Michelle Walls,Male,7793,1962-01-08,AB- -Joanna Carpenter,Male,7794,1978-09-22,O+ -Abigail Nixon,Female,7795,1956-10-06,AB- -Heather Robinson,Male,7796,1969-11-11,O- -Ariana Hansen,Female,7797,1946-10-30,O- -Brooke Alvarez,Male,7798,1931-01-07,AB- -Brandon Carey,Male,7799,1990-10-03,B+ -Nathan Williams,Female,7800,1945-03-28,B+ -Teresa Zimmerman,Female,7801,1954-02-06,O+ -Kelly Moore,Female,7802,1952-09-29,A+ -Joseph Baker,Female,7803,1950-05-13,O+ -William Owens,Male,7804,1931-03-23,A+ -Thomas Morris,Female,7805,1933-10-23,AB- -Joel Rodriguez,Female,7806,1961-07-13,A+ -Trevor Schneider,Male,7807,1978-07-12,B- -Cindy Stephenson,Female,7808,1972-04-24,AB+ -Beverly Johnson,Female,7809,1982-11-27,A- -Stephen Mccoy,Female,7810,1962-07-23,AB+ -Keith Guerra,Male,7811,1971-01-24,O- -Jacob Wells,Female,7812,1946-05-06,B- -Heidi Yang,Male,7813,1955-05-15,AB+ -Jody Garcia,Male,7814,1973-06-05,AB- -Matthew May,Female,7815,1988-01-14,A+ -Donna Alvarado,Female,7816,1984-08-18,A+ -Lindsay French,Female,7817,1944-12-07,O+ -Jay Williams,Male,7818,1938-08-17,O+ -Samantha Ruiz,Male,7819,2001-09-06,B+ -Kenneth Phillips,Male,7820,1972-02-16,A+ -Mrs. Catherine Yates MD,Female,7821,1947-07-25,B+ -Andres Bennett,Female,7822,1942-10-02,AB- -Gary Clarke,Female,7823,1993-11-17,A+ -Katherine Mullins,Male,7824,1958-09-17,O+ -James Sloan,Female,7825,1996-08-09,AB+ -Barbara Adams,Female,7826,1984-11-19,B+ -Stephanie Williamson,Female,7828,1987-02-17,B+ -Zachary Mccann,Male,7829,1987-12-29,O- -Sara Davis,Male,7830,1970-10-12,O+ -Hailey Ali,Male,7831,1988-09-25,AB- -Richard Romero,Female,7832,1945-01-02,B+ -Kristen Singleton,Male,7833,1951-12-30,AB+ -Debra Carter,Male,7834,1932-09-10,AB+ -Robert Colon,Female,7835,1990-03-18,AB+ -Sandra Hernandez,Male,7837,1953-05-23,B- -Erin Mathews,Female,7838,1957-02-24,B- -Ronald Le,Female,7839,1957-10-09,A- -Gary Wall,Male,7840,2000-10-15,AB+ -Bonnie Wood,Male,7841,1972-08-29,B+ -Gary Gray,Female,7843,1935-03-23,AB- -Bridget King,Male,7844,1993-10-25,A+ -Ryan Farmer,Female,7845,1955-03-27,AB- -Aaron Daugherty,Male,7846,1953-12-03,B- -Cheryl Moss,Male,7847,1967-09-01,O+ -Dr. Lawrence Bowen,Male,7848,1941-06-06,B+ -Jessica Mora,Male,7849,1999-09-20,A- -Erica Padilla,Male,7850,1973-01-03,B- -Diamond Campbell,Male,7851,1994-10-01,A+ -Patricia Simmons,Male,7852,1955-06-16,O- -Raymond Butler,Female,7853,1935-06-14,A- -Brenda Hughes,Male,7854,1945-04-28,B- -Annette Rosales,Male,7855,1974-10-31,AB- -Emily Miranda,Male,7856,1985-10-21,A- -Jordan Garcia,Female,7857,1940-05-03,B+ -Carl Burns,Male,7858,1999-10-22,AB- -Samantha Costa,Female,7859,1987-07-30,AB+ -Travis Williams,Female,7860,1980-07-02,AB+ -Jay Salazar,Male,7861,1987-02-22,AB+ -Sarah Murphy,Female,7862,1973-01-01,A- -Gregory Martinez,Female,7863,1970-02-05,O- -Matthew Miller,Male,7864,1967-06-04,A+ -Angela Stewart,Female,7865,1973-09-12,B+ -Krystal Hamilton,Male,7866,1961-02-04,A- -Dorothy Chase,Female,7867,1942-02-22,O+ -Dalton English,Female,7868,1982-02-05,B+ -Gary Henderson,Female,7869,1973-04-09,AB- -Dr. Cassandra Austin,Female,7870,1977-09-20,AB- -Lindsay Sutton,Female,7871,1970-01-17,A- -Amy Giles,Male,7872,1951-10-09,A- -Danielle Lloyd,Male,7873,1947-08-29,A+ -James Jimenez,Male,7874,1982-03-14,O- -Tiffany Horton,Female,7875,1938-10-05,A- -Daniel Peters,Male,7876,1948-07-13,AB+ -Collin Mcdonald,Male,7877,1954-12-31,A+ -Linda Jones,Male,7878,1995-03-25,O+ -Paul Black,Female,7879,1953-08-21,AB+ -Andrew Silva,Male,7880,1981-11-03,O+ -April Clements,Male,7881,1941-07-27,B- -Roger Jordan,Male,7882,1976-06-28,O+ -Joel Roman,Male,7883,1946-07-30,AB+ -Carrie Hancock,Female,7884,1934-02-14,B- -Stacy Carter,Female,7885,1954-10-15,AB+ -Jamie Evans,Female,7886,1973-02-13,AB- -Stephanie Parsons,Female,7887,1959-08-29,AB+ -Sarah Farmer,Male,7888,1974-10-01,B- -Chad Clark,Female,7889,1992-07-26,O+ -Claire Glass,Male,7890,1994-09-02,AB- -Jordan Pope,Male,7891,1970-06-23,O- -Kenneth Martin,Female,7892,1934-04-01,O- -Dana Mathews,Female,7893,1971-06-29,B+ -Hannah Shelton,Male,7894,1967-10-13,O- -Monique Baker,Male,7895,2002-01-15,O- -Christopher Johnson,Male,7896,1948-10-05,A+ -Sandra Gardner,Male,7897,1933-12-20,O- -Stephen Ingram,Female,7898,1991-02-27,B- -Derek Mitchell,Male,7899,1998-01-04,A- -Frederick Kaufman,Female,7900,1996-11-16,O- -Zoe Adkins DVM,Female,7901,1937-04-13,AB+ -Shawn Hancock DVM,Male,7902,1950-07-24,A- -Tammy Collier,Female,7903,1996-06-20,O- -Katherine Powell,Female,7904,1995-03-30,A- -Sarah Estes,Female,7905,1937-06-14,O+ -John Richmond MD,Male,7906,2001-04-16,B- -Robert Nichols,Female,7907,1964-01-27,B- -Kevin Hill,Male,7908,1956-05-21,B+ -Amber Wong,Female,7909,1958-09-21,A- -Eric Norman,Male,7910,1938-01-04,B+ -Crystal Gardner,Male,7911,1956-11-24,AB- -Calvin Wright,Female,7912,1994-04-23,A+ -Maria Chavez,Male,7914,1947-02-01,AB+ -Terry Archer,Female,7915,1976-04-05,A- -Bradley Carr,Female,7916,1930-08-04,B- -Tonya Gentry,Female,7917,1949-12-26,B+ -Lori Jimenez,Female,7918,1961-07-20,O+ -Kelly Burgess,Female,7919,1958-05-18,O- -Jessica Moyer,Male,7920,1938-08-20,B- -Joseph Rogers,Female,7921,1995-04-04,O+ -Blake Barnett,Female,7922,1934-09-03,O- -Wendy Davis,Female,7923,1958-03-13,A+ -Garrett Mccann,Male,7924,1934-04-17,B- -Douglas Holland,Female,7925,1958-06-23,B+ -Elizabeth Robertson,Male,7926,1958-04-29,B- -Rachel Jackson,Female,7927,1933-02-02,A- -Rebecca Ortega,Female,7928,1984-06-20,A- -Joshua Blackburn,Female,7929,1951-07-17,O+ -Stephen Miller,Male,7930,1981-05-02,B+ -Bethany Farrell,Female,7931,1945-04-15,AB- -Jeremy Perez,Female,7932,1943-05-30,A- -Jacob Fields,Female,7933,1990-07-07,AB+ -Latasha Stokes,Male,7934,1946-06-07,A+ -Jill Thompson,Female,7936,1960-06-05,AB+ -Shawn Avila,Male,7937,1942-07-04,B- -Mercedes Mitchell,Male,7938,1955-05-21,AB+ -Daniel Kim,Female,7939,1969-04-14,O- -Wendy Harper,Female,7940,1962-01-16,A+ -Alexandra Lara,Female,7941,1966-06-30,AB+ -Steven Ferguson,Male,7942,1937-07-04,O- -Linda Jackson,Male,7943,1983-02-16,O+ -Donald Olson,Female,7944,1947-02-17,AB+ -Patricia Oliver,Female,7945,1930-08-17,A+ -Lindsay Sosa,Female,7946,1997-10-02,O- -Ashley Beck,Male,7947,1975-08-31,AB+ -Melissa Barnes,Female,7948,1941-09-24,O+ -Stephanie Smith,Male,7949,1998-06-14,AB+ -Jennifer Johnson,Female,7951,1966-04-26,O- -Mr. Jeff Jenkins,Female,7952,1966-08-30,AB+ -Jose Johnson,Male,7953,1993-06-24,A+ -Rebecca Wilkerson,Male,7954,1932-07-07,B- -Jose Peterson,Male,7955,1961-05-03,B+ -Seth Marshall,Female,7957,1931-05-14,B+ -John Jenkins,Female,7958,1937-09-10,O- -Ricky Rollins,Male,7959,1943-08-02,O- -Erik Liu,Male,7960,1954-09-09,O- -Amanda Hale,Female,7961,1940-05-07,O- -Chelsea Mitchell,Male,7962,1957-07-08,AB+ -John Lopez,Female,7963,1935-10-20,A+ -Scott Hall,Male,7964,1947-07-02,B+ -Amy Rivera,Female,7966,1930-05-26,O+ -David Morse,Male,7967,1968-02-20,B+ -Darryl Gill,Female,7968,1996-08-08,A+ -Eric Finley,Male,7969,1970-11-04,O- -Haley Schmidt,Female,7970,1942-07-02,AB- -Mark Oconnor,Female,7971,1975-05-21,AB+ -Jeff Sparks,Female,7972,1989-01-22,AB- -Barbara Schwartz,Male,7973,1948-03-04,AB+ -Mitchell Hampton,Male,7974,1952-07-27,O- -Jeremy Dunn,Female,7975,1936-08-07,AB+ -Patrick Nelson,Male,7976,1934-12-26,O- -Deanna Yu,Male,7977,1982-12-22,A+ -Lisa Winters,Female,7978,1936-11-26,A- -Aaron Williamson Jr.,Female,7979,2002-05-28,B- -Guy Nichols,Female,7981,1981-11-21,AB+ -Denise Norman,Female,7982,1946-02-08,O- -Sarah Cherry,Female,7983,1935-02-11,AB- -Brandon Garcia,Male,7984,1950-06-10,O- -Emma Chen,Male,7985,1995-09-03,AB- -Victor Young,Female,7986,1961-05-19,B+ -Tracy Brown,Male,7988,1983-08-14,AB+ -Madeline Robles,Male,7989,1946-09-17,O+ -Brian Smith,Female,7990,1963-05-25,AB- -Scott Anderson,Male,7991,1972-03-25,O- -Whitney Caldwell,Female,7993,1973-12-14,AB+ -Maria Thomas,Male,7994,1930-08-29,O- -Heather Burgess,Male,7995,1984-04-11,O+ -Misty Robbins MD,Male,7996,1942-09-06,B- -Steven Sanchez,Female,7997,1956-04-13,A- -Rachel Olsen,Male,7998,1962-01-07,A- -Amy Townsend,Male,7999,1997-07-06,O+ -Lorraine Zuniga,Female,8000,1943-11-26,A+ -Vanessa Ford,Male,8001,1940-04-26,AB+ -Micheal Young,Male,8002,1955-01-12,O+ -Rebecca Chavez,Male,8003,1951-11-22,B- -Misty Murray,Male,8004,1998-12-16,O- -Emma Farmer,Male,8005,1992-06-17,AB+ -Ashley Cox,Female,8006,1966-05-08,B+ -Caroline Sanders,Male,8007,1984-09-23,AB- -Amber Pruitt,Male,8008,1964-11-24,O+ -Sarah Gutierrez,Male,8009,1961-06-02,B+ -Ashlee Black,Female,8010,1980-10-22,B+ -Michael Williams,Male,8011,2001-06-15,B- -Michael Lewis,Female,8012,1947-12-26,B+ -Sheryl Hudson,Female,8013,1937-02-14,O+ -Rebecca Ryan,Female,8014,1982-02-18,A+ -Keith Carroll,Male,8016,1946-08-25,A- -Robert Morris,Female,8017,1967-12-07,A- -Diana Valenzuela,Male,8018,1994-11-30,AB+ -Christopher Potter,Female,8019,1935-11-30,O- -Denise Jimenez,Female,8020,1985-05-06,B- -Derek Nichols,Female,8022,1952-10-05,O+ -Jason French,Female,8023,1941-12-17,AB+ -Joseph Lopez,Female,8024,1933-08-10,O+ -Sherry Dennis,Female,8025,1987-02-28,AB+ -David Dunlap,Male,8026,1966-05-04,A- -Nicole Carter,Female,8027,1933-05-15,B+ -Andrea Smith,Female,8028,1977-12-17,A+ -Emily Moon,Female,8029,1995-09-08,O+ -Victoria Mendoza,Male,8030,1933-07-25,A+ -David Sawyer,Female,8031,1973-08-10,AB- -Jackson Johnson,Female,8032,1935-03-26,AB- -Derek Coleman,Male,8033,1996-12-26,B+ -Anna Wallace,Male,8034,1970-10-22,A- -Tammy Cox,Female,8035,1952-03-13,B- -Jason Cooper,Male,8036,2001-05-29,A+ -Joel Brown,Female,8037,1996-09-05,AB+ -Leslie Harvey,Male,8038,1980-02-08,B- -Sue Gray,Female,8039,1994-01-05,O+ -Ethan Cooper,Female,8040,1937-07-20,O+ -Carla Chavez,Female,8041,2002-08-23,AB+ -Thomas Colon,Male,8042,1947-09-13,O- -Ellen Clark,Male,8043,1975-05-07,B+ -Jessica Weaver,Male,8044,1954-11-19,O- -Eric Jones,Female,8045,1992-04-11,B+ -Ashley Davis,Male,8046,1971-05-30,O+ -Dr. James Williams,Female,8047,1969-01-16,B+ -Kara Sweeney,Female,8048,1956-09-04,A- -Jeffrey Lowe,Female,8049,1953-10-10,A- -Karen Wolfe,Female,8050,1930-03-02,AB+ -Julie James,Female,8051,1955-05-19,O- -Dr. Jillian Graves,Female,8052,1993-02-24,A+ -Steven Byrd,Female,8053,1937-12-05,O+ -Kenneth Vaughn,Male,8054,1971-12-15,AB- -Amanda Miller,Female,8055,1963-10-27,A+ -Bradley Ruiz,Female,8056,1962-07-07,AB+ -Manuel Jones,Male,8057,1976-06-17,AB- -Robert Williams,Male,8058,1945-12-11,A+ -Debra Anderson,Female,8059,1962-10-02,O- -Sheri Jones,Female,8060,1931-06-19,B+ -Brooke Wilson,Female,8061,1984-05-03,A- -Isaiah Rodriguez,Male,8062,1940-12-25,O- -Lisa White,Male,8063,1984-02-29,AB- -Stephanie Hensley,Male,8064,1935-11-26,B+ -Katherine Brooks,Female,8065,1991-03-12,B+ -Christine Hurley,Female,8066,1994-12-04,B+ -Vickie Flynn,Male,8067,1949-01-18,B- -Erik Smith,Male,8068,1955-03-07,A- -Gregory Webb,Male,8070,1959-04-10,O+ -Kayla Hill,Male,8071,1989-06-09,AB- -David Mack,Female,8072,1966-06-28,AB+ -Christopher Robertson,Female,8073,1998-03-07,O+ -Kimberly Cruz,Male,8074,1987-09-26,A+ -Joseph Shaffer,Female,8075,1937-05-30,A- -John Marshall,Male,8076,1930-01-02,AB+ -Nicole Harris,Male,8077,1955-04-05,AB+ -Natasha Meyer,Male,8078,1997-08-17,O- -David Kelly,Male,8079,1977-11-18,A+ -Shannon Riley,Female,8080,1970-07-30,O- -Eric Hall,Female,8081,1959-10-27,O- -Debra Henson,Female,8082,1935-02-05,B+ -Rachel Matthews,Female,8083,1944-06-05,A- -Richard Gould,Female,8084,1993-11-13,B- -Gilbert Gordon,Female,8085,1960-06-04,O- -Christopher Robinson,Female,8086,1972-12-25,O+ -Melanie Murphy,Female,8087,1952-10-12,AB+ -Adrian Curry,Male,8088,1976-01-21,A- -Robert Hensley,Female,8089,1988-02-16,O- -Eric Houston,Male,8090,1959-05-29,AB- -Jeremy Stein,Male,8091,1938-07-27,O+ -Erik Macias,Male,8092,2000-08-18,A+ -Jason Kent,Female,8093,1996-12-25,AB+ -Kimberly Powell,Male,8094,1977-04-29,A- -Alison Nguyen,Male,8095,1969-05-16,AB- -Brooke Sutton,Female,8096,1961-02-07,A- -Matthew Salas,Male,8097,1944-10-12,A- -Barbara Sanford,Male,8098,1993-02-21,AB- -Jeremiah Young,Female,8099,1945-02-20,A+ -Patrick Russo,Male,8100,1992-12-09,AB- -Donald Watkins,Male,8101,1940-09-23,O+ -Wesley Jackson,Male,8102,1977-10-12,B+ -Laura Burton,Male,8103,1974-12-06,A- -Richard Flores,Male,8104,1948-12-29,A+ -Deanna Jones,Male,8105,1994-09-30,A- -Laurie Bates,Female,8106,1949-06-28,AB- -Maria Salas MD,Female,8108,1976-05-10,A+ -Daniel Ramos,Male,8109,1959-09-26,A+ -Bryan Martin,Female,8110,1998-11-02,O- -Richard Kelly,Male,8111,1999-03-19,O- -Anne Case,Male,8112,1944-08-13,B+ -Carolyn Allen,Male,8113,1964-02-24,O- -Shawn Zuniga,Female,8114,1938-08-07,AB- -Johnny Gillespie,Female,8115,1951-11-23,AB+ -Robert Wright,Female,8117,1972-05-29,O+ -James Kelly III,Female,8118,1979-03-19,AB- -Christine Taylor,Male,8119,1968-11-18,A- -Christina Andrews,Male,8120,1951-04-17,O- -Jason Barr,Female,8121,1943-07-15,A+ -Jenna Rodriguez,Female,8122,1965-04-13,AB- -Andrew Taylor,Female,8123,1954-08-20,A+ -Kelsey Bass,Female,8124,1951-05-09,B+ -Erik Robinson,Female,8125,1985-03-28,A- -Matthew Grant,Male,8126,1978-07-29,A+ -Lisa Harper,Female,8127,1952-02-27,A+ -Steve Johnson,Male,8128,1938-10-31,B+ -Larry Riddle,Male,8129,1962-05-03,B- -Brett Walker,Female,8130,1970-11-01,AB+ -Alfred Wang,Female,8131,1936-09-26,O+ -Jeremy Solis,Male,8132,1953-12-03,O+ -Mr. Matthew Murray,Male,8133,1968-02-11,O- -Danny Schultz,Female,8135,1982-04-30,B- -Kathy Moses,Male,8137,1993-04-10,AB- -Anna Frazier,Male,8138,1959-06-12,B+ -Stephanie Nelson,Male,8139,1995-05-05,AB- -Daniel Ellis,Male,8140,2002-12-24,O+ -Frank Johnson,Male,8142,1992-06-18,AB+ -Alexander Guzman,Female,8143,1959-08-30,A+ -Cassandra Mclaughlin,Female,8144,1938-07-12,A- -Peggy Brooks,Male,8145,2002-07-24,O- -Hannah Garcia,Male,8146,1976-07-18,AB+ -Mitchell Miller,Male,8147,1972-01-21,O+ -David Baird,Male,8148,1984-11-01,B- -Debbie Mclean,Male,8149,1992-06-01,O- -Whitney Bullock,Female,8150,1978-02-25,B+ -James Stephens,Female,8151,1957-03-31,O+ -Tracy Murray,Female,8152,1937-01-09,AB- -Brian Garrison,Male,8153,1938-09-10,O- -Bradley Burton,Female,8154,1983-04-18,B+ -Austin Burke,Male,8155,1937-03-15,O+ -Gregg Fowler,Female,8156,1938-08-28,AB- -Ariel Fletcher,Female,8157,1941-10-31,A- -Wayne Watson,Female,8158,1999-02-13,AB- -Amanda Andrews,Male,8159,1966-02-25,A+ -Christian Kim,Male,8160,1992-01-09,B+ -Aaron Edwards,Female,8161,1949-06-09,B+ -Roberto Roberts,Male,8162,1995-01-20,B- -Sarah James,Male,8164,1961-02-07,B+ -Elizabeth Singh,Female,8165,1958-03-28,A+ -Lori Hansen,Male,8166,1966-12-20,O+ -Matthew Smith,Female,8167,1986-01-09,A- -Matthew Henry,Male,8168,1945-11-19,AB+ -Megan Gentry,Male,8169,1968-09-08,A- -Anthony Nguyen,Male,8170,1969-01-27,A- -Alfred Hernandez,Male,8171,1974-01-05,B+ -David Lang,Male,8173,1941-05-14,A- -Jordan Lee,Male,8174,1954-05-26,B+ -Curtis Wilson,Male,8175,1981-12-23,A+ -Brianna Griffith,Female,8176,1991-10-07,AB+ -Sue Perez,Female,8177,1965-03-19,AB- -Emma Watson,Male,8179,1931-10-29,B+ -Kyle Lutz,Male,8180,1975-08-20,O+ -Elizabeth Martinez,Male,8181,1945-12-28,B- -Lisa Houston,Male,8182,1939-10-06,AB+ -Jamie Fernandez,Male,8183,1958-07-19,O+ -Christopher West,Female,8184,1987-06-08,B+ -Mrs. Virginia Marshall MD,Female,8185,1978-11-14,AB+ -Matthew Barrett,Female,8186,1997-08-22,B+ -Samuel Rose,Female,8187,1987-10-27,A+ -Adam Lee,Female,8188,1991-12-28,O+ -Thomas Williams,Female,8189,1950-03-03,A+ -Rodney Wright,Female,8190,2002-12-05,O- -Tiffany Mahoney DVM,Male,8191,1972-10-17,O+ -Pamela Johnson,Female,8192,1984-11-29,AB+ -Ashley Sanchez,Female,8193,1950-03-19,O- -Shawn Carrillo,Female,8194,1992-11-22,A+ -Ebony Fleming,Female,8195,1974-03-20,A+ -Donna Davis,Female,8196,1973-06-15,AB+ -Rebecca Hernandez,Male,8197,1966-05-05,O- -Crystal Ward,Female,8199,1932-09-19,A- -Cindy Kim,Female,8200,1948-10-11,AB- -Michael Dominguez,Male,8201,1935-10-23,B- -Jesse Morales,Male,8202,1963-12-02,AB+ -Robert Dominguez,Male,8203,1980-12-11,A+ -William Welch,Female,8204,1987-03-29,O+ -Kelly Watson,Female,8205,1983-08-03,O- -Richard Woodard,Female,8206,1983-09-21,B+ -Todd Washington,Female,8207,1941-04-29,AB- -Kim Mills,Male,8209,1975-10-19,B- -Chelsea Williams,Female,8210,1964-08-23,O+ -Danielle Griffin,Female,8211,1972-05-19,O- -Heidi Douglas,Male,8213,1987-09-27,AB- -Edward Williams DDS,Female,8214,1943-03-17,AB+ -Eddie Barber,Male,8215,1943-06-22,B+ -Matthew Wyatt,Female,8216,1983-08-16,AB- -Candice Cunningham,Female,8217,1944-12-24,AB+ -Allison Wilson,Male,8219,1977-04-16,B+ -Aaron Yang,Female,8220,2002-11-18,B+ -Melissa Johnson,Female,8221,1956-02-07,A- -Holly Silva,Male,8222,1949-07-07,O- -Javier Guzman,Female,8223,1940-03-09,B+ -Jacob Sanders,Female,8224,1982-10-02,AB- -Lauren Williams,Female,8225,1972-12-22,B+ -Ruben Cisneros,Female,8226,1986-05-23,B- -Christopher Miller,Female,8227,1993-12-01,AB- -Alejandra Nunez,Male,8228,1981-06-21,O- -Ronald Bauer,Male,8229,2000-05-06,O+ -Elizabeth Nunez,Female,8230,1983-01-28,O+ -Emily Mendez,Female,8231,1979-08-14,AB- -Jonathan Thomas,Female,8233,1933-09-26,AB- -Miguel White DVM,Female,8234,1937-06-01,AB+ -Garrett Gutierrez,Female,8236,1965-07-18,O- -Autumn Mcdowell,Male,8238,1977-05-22,AB+ -Tina Evans,Female,8239,1930-06-01,B- -Tyler Gamble,Male,8240,1998-11-21,A- -Ian Porter,Male,8241,1996-11-18,O+ -Gabriel Phillips,Female,8242,1977-05-10,B+ -Julia Combs,Male,8243,1936-05-10,B+ -Anthony Vega,Male,8244,1967-12-18,A+ -Blake Cannon,Female,8245,1931-05-11,A+ -Connor Pierce,Male,8246,1962-10-27,O- -James Porter,Male,8247,1935-11-19,B+ -Ashley Greer,Female,8248,1931-07-11,O- -Mark Vargas,Female,8249,1966-09-02,A+ -Michael Holmes,Male,8250,1934-04-02,O- -Derek Morris,Female,8251,1980-08-30,O+ -Katherine Greer,Male,8252,1938-06-13,B- -Jessica Sanders,Male,8253,1984-06-14,B- -Daniel Barrett,Female,8255,1930-06-06,B+ -Jane Perez,Male,8256,1954-06-10,AB+ -Mr. James Thomas,Male,8258,1995-05-29,O+ -Calvin White,Female,8260,1949-08-11,A- -Kyle Morris,Female,8261,1989-12-24,O- -Tyler Freeman,Male,8262,1995-07-06,O- -Dustin Myers,Male,8264,1952-01-21,B+ -Jennifer Hale,Female,8265,1942-09-29,A- -Jennifer Estrada,Female,8266,1991-12-21,AB+ -Carrie Rice,Female,8267,1961-05-26,AB+ -Mark Peterson,Male,8268,1994-09-12,O- -Brandon Kim,Female,8269,1930-06-04,O- -David Zavala,Female,8270,1951-10-08,A- -Anthony Norris,Female,8271,1971-12-15,B+ -Alexandra Richardson,Female,8272,1977-08-02,O+ -Daniel Gregory,Male,8273,1942-09-01,A- -Amanda Gardner,Male,8274,1982-10-24,AB+ -Joann Johnson,Female,8275,1969-01-15,A- -Breanna Nielsen,Male,8276,1970-09-21,A- -Alexander Turner,Male,8277,1965-08-21,A- -Sierra Hansen,Male,8278,1955-08-27,O+ -Timothy Le,Female,8279,1930-06-03,AB- -Lauren Pena,Female,8280,1951-07-03,O- -Brett Rush,Male,8281,1963-11-23,A+ -Katherine Ward,Female,8282,1973-03-28,B+ -Jackie Owens,Male,8283,1992-08-08,A- -Kevin Barrett,Male,8284,1945-05-01,B+ -Kyle Francis,Female,8285,1979-07-23,A+ -Donald Mcclain,Male,8286,1970-06-25,AB- -Bradley Swanson,Female,8287,1960-04-02,O- -Alejandro Gray,Male,8288,1932-02-26,AB+ -Allison Rodgers,Female,8289,1941-12-17,A+ -William Robinson,Female,8290,1997-01-09,B+ -Jason Little,Male,8291,1970-11-10,B+ -Jason Phillips,Female,8292,1941-09-12,B+ -Christopher Hernandez DDS,Female,8293,1985-03-04,AB+ -Curtis Gonzalez,Male,8294,1999-01-17,A+ -Gregory Wilson,Male,8295,1946-05-31,B+ -Philip Cline DVM,Male,8296,1994-08-13,AB+ -Lori Scott,Female,8297,1999-02-09,A- -Tonya Blair,Male,8298,1984-03-28,B+ -Kendra Cox,Female,8299,1985-03-20,A+ -Rachel Diaz,Female,8300,1989-09-19,AB+ -Gabriel Flores,Female,8301,1949-03-13,AB- -David Miles,Female,8302,1996-11-26,O+ -Lauren Gomez,Female,8303,1984-12-28,AB+ -Matthew Gregory DDS,Female,8304,1968-07-26,O+ -Karen Walker,Female,8305,1955-05-11,O+ -James Murray,Male,8307,1981-04-16,O- -Harry Moon,Male,8308,1949-03-13,A- -Julie Schmidt,Male,8309,1994-03-05,AB- -Amy Salazar,Male,8310,1933-04-27,O+ -Gabriel Sanders,Female,8311,1993-12-05,B- -Rebecca Shaw,Female,8313,1968-09-19,A- -Susan Wilkerson,Male,8314,1955-08-02,O+ -Zachary Allen,Female,8316,1948-05-10,AB+ -Lawrence Watkins,Male,8317,1973-07-10,O+ -Rhonda Colon,Male,8318,1995-03-18,AB+ -Austin Rogers,Male,8319,1981-09-25,B+ -Travis Gomez,Female,8320,1930-05-24,AB+ -Evan Pittman,Female,8321,1959-03-31,B- -Christine King,Female,8322,1950-03-04,O+ -Ryan Nichols,Female,8323,1938-11-03,O+ -Todd Glass,Male,8324,1942-07-19,A+ -Thomas Lowery,Female,8325,1965-12-30,A- -Rachel Jones,Female,8326,1961-03-16,A+ -Sandra Rice,Female,8327,1946-07-07,O- -Mike Palmer DVM,Male,8328,1941-08-14,AB+ -Eric Quinn,Male,8330,1967-05-14,B- -Christian Bender,Female,8331,1961-06-23,A+ -Felicia Boyd,Male,8332,1956-02-23,O+ -Joshua Holmes,Female,8333,1971-06-21,O- -Michelle Kelly,Male,8334,1982-04-15,B- -Jennifer Stevens,Female,8335,1941-06-17,AB- -Jade Waters,Male,8336,2001-01-01,O+ -Jordan Rogers,Female,8337,1964-03-09,O+ -Barry Bryant,Male,8338,1950-01-24,B+ -John Green,Female,8339,1987-07-18,AB- -Robert Rodriguez,Male,8340,1983-08-07,AB+ -Catherine Osborne,Male,8341,1975-09-06,AB+ -Joyce Austin,Female,8342,1976-11-02,A+ -Charles Simpson,Male,8343,1990-06-13,A+ -Dr. Kimberly Khan,Female,8344,1938-03-30,O+ -David Shah,Male,8345,1945-03-18,A- -Dorothy Ingram,Male,8346,1930-03-09,O+ -Ricardo Wilkins,Female,8347,1963-05-13,A+ -Kayla Hayden,Male,8348,1981-09-20,AB- -Colton Jones,Male,8349,1934-03-18,A+ -Melissa Snyder,Male,8350,1975-12-12,O+ -Thomas Garcia,Male,8351,1961-08-15,B- -Chelsey Shepherd,Male,8352,1945-07-21,O+ -Jamie Ward,Male,8353,2000-06-21,B- -John Cook,Female,8354,1988-01-26,B- -Paul Roberts,Male,8355,1953-12-13,O+ -Nancy Davila,Male,8356,1991-06-02,A- -Alexis Shaw,Male,8357,1971-05-22,A- -Noah Nelson,Male,8358,1984-11-18,O- -Barbara Ross,Female,8359,2002-01-30,A+ -Stephanie Byrd,Male,8360,1938-01-20,A- -Jay Ray,Female,8361,1959-09-15,AB+ -Ricky Matthews,Female,8362,1949-05-08,O+ -Shannon English,Male,8363,1988-10-18,B- -Anthony Stein,Female,8364,1957-10-17,O+ -Kevin Tate,Male,8365,1979-03-30,A+ -David Rice,Male,8366,1978-11-29,AB- -Tracy Dalton,Male,8367,1991-12-01,A- -Shawn Nguyen,Female,8368,2000-04-21,A- -Danny Wright,Female,8369,1983-10-30,A- -Ricky Daniels,Male,8370,1971-06-01,B- -Joseph Whitney,Female,8371,1972-09-30,AB+ -Traci Henry,Female,8372,1947-08-27,B+ -Margaret Mayo,Male,8373,1945-01-21,AB+ -Samantha Hicks,Male,8374,1947-03-06,A- -Mackenzie Ross,Male,8375,1933-07-23,AB+ -Dakota Howard,Male,8376,1990-10-15,AB- -Jason Mcdonald,Male,8377,1948-05-07,A- -Kelly Peterson,Female,8378,1943-09-04,O- -Angel Sweeney,Female,8379,1972-10-14,B- -Erin Terry,Male,8380,1950-07-04,AB- -Lisa Kelly,Female,8381,2001-06-28,B+ -Terry Irwin,Female,8382,1952-08-22,B- -Barry Williams,Female,8383,1937-10-02,B+ -Caitlin Carter,Male,8384,1961-10-07,A- -Thomas Kelly,Female,8385,1982-04-23,AB- -Karen Moore,Male,8386,1962-05-12,A- -Carrie Nguyen,Female,8387,1979-01-20,B+ -Angela Cohen,Female,8388,1997-12-08,B+ -Mary Love,Female,8389,1989-03-29,AB- -Isaac Hernandez,Female,8390,1935-06-20,A- -James Browning,Male,8391,1989-05-26,O- -Lauren Maddox,Female,8392,1961-10-24,B- -John Barrett,Female,8393,1975-08-14,AB- -Michael Gordon,Male,8394,1938-06-17,O- -Mr. Ryan Smith,Female,8395,1931-06-08,O+ -Patrick Robinson,Female,8396,1986-07-25,A- -Kevin Alvarez,Female,8397,1963-12-24,A+ -Isabel Wilson,Female,8398,1989-07-19,AB- -Jorge Day,Female,8400,1973-01-27,AB+ -Pamela Sawyer,Male,8401,1983-05-29,O- -Hannah Navarro,Male,8402,1952-05-12,O- -Crystal Avila,Female,8403,1944-03-18,AB- -Kelsey Hansen,Female,8404,1942-07-12,B+ -Dominique Morales,Male,8405,1951-02-27,O- -Erik Fletcher,Male,8406,1972-02-08,O+ -Melinda Hill,Male,8407,1934-12-03,O- -Jose Mora,Female,8408,1935-11-02,A+ -Tyler Nelson,Female,8409,1994-11-27,A+ -Tanya Rodgers,Male,8410,1970-10-18,B+ -Amy Wilson,Female,8411,1992-08-27,A- -Tonya Simpson,Female,8412,1977-02-02,A- -Joseph Rodriguez,Female,8413,1998-07-01,B+ -Crystal Cooper,Female,8415,1961-01-10,AB+ -Sheila Deleon,Female,8416,1948-04-02,O+ -Sheryl Crawford,Male,8417,1975-04-01,A+ -Luke Johnson,Male,8418,1964-03-02,B+ -Mary Powers,Female,8419,1933-11-11,AB- -Mathew Bennett,Female,8420,1964-09-04,B- -Deborah Leonard,Female,8421,1931-06-19,B- -Tammy Powell,Female,8422,2001-12-26,B- -Melanie Gonzalez,Male,8423,1939-03-19,A- -Scott Hines,Female,8424,1977-09-07,AB- -Angela Martinez,Female,8425,1939-02-25,O- -Thomas Brewer,Male,8426,2001-02-23,AB- -Donna Campbell,Female,8427,1991-07-09,O- -David Warren,Female,8428,1966-11-13,B- -Alyssa Richmond,Female,8429,1942-04-28,AB+ -Mark Tran,Female,8430,1933-03-18,AB+ -David Chan,Female,8431,1999-09-20,B+ -Mr. Glenn Hampton,Female,8432,1987-03-24,O- -Robert Waters,Male,8433,1951-12-04,B- -Steven Evans,Female,8434,1934-06-30,AB- -John Franco,Male,8435,1976-02-24,AB+ -Tammie Hansen,Female,8436,1982-11-28,O- -Aaron Oliver,Male,8437,1953-12-04,B+ -Matthew Burke,Female,8438,1942-12-10,AB- -Laura Smith,Female,8439,1962-04-12,B- -Matthew Stephenson,Male,8440,1995-11-10,O+ -Donald Decker,Male,8441,1960-03-01,B- -Anna Davenport,Female,8442,1985-01-19,A- -Christopher Williamson,Male,8443,1930-12-30,B- -Nathan Hodge,Female,8444,1958-05-12,B+ -Paul Williams,Female,8446,1939-01-23,AB- -Beth Jensen,Male,8447,1976-05-08,B+ -Angel Gill,Male,8448,1938-11-15,AB- -Brittany Rice,Male,8449,1948-04-01,A+ -Timothy Smith,Male,8450,1965-05-18,A+ -Michelle Mata,Male,8451,1935-04-21,AB- -William Peters,Male,8452,1968-03-30,AB- -Diana Maynard,Female,8453,1999-12-03,O+ -Melissa Willis,Male,8454,1960-08-28,O+ -Christy Steele,Female,8455,1962-11-07,B- -Thomas Camacho,Female,8456,1932-06-01,B+ -Laura Roberts,Female,8458,1985-05-16,A- -Rose Gonzalez,Female,8459,1948-12-15,B+ -Lisa Smith,Male,8460,1999-09-02,AB+ -Andre Clay,Male,8461,1987-06-26,B+ -Carlos Cooper,Female,8462,1967-07-14,A- -Mallory Carter,Female,8463,1999-08-28,O+ -Gail Garza,Female,8464,1944-04-01,B- -Jack Ware,Male,8465,1949-12-15,A- -Erin Williams,Female,8466,1938-10-09,B+ -Kimberly Tanner,Male,8467,1936-02-23,O- -Brandon Walker,Male,8468,1930-01-19,A+ -Ms. Emily Baxter,Female,8469,1976-08-12,A- -Sarah Davis,Male,8470,1938-06-11,AB+ -Mark Warren,Male,8471,1989-02-04,B- -James Watson,Female,8472,1953-05-01,A- -Mariah Rodriguez,Female,8473,1977-03-24,AB- -Eduardo Rasmussen,Female,8474,1932-02-13,B+ -Garrett Wagner,Female,8476,1942-12-16,O- -Michael Price,Female,8477,1984-06-28,A+ -Sara Mann,Female,8478,1948-08-09,O- -Luis Sullivan,Male,8479,1949-02-14,B- -Jesse Huber MD,Female,8480,1937-01-11,B+ -Shelby Sutton,Female,8481,1974-02-20,O+ -Amanda Brown,Female,8482,1934-08-02,A+ -George Bradley,Female,8483,1959-10-11,B+ -Shawn Fuller,Female,8484,1961-09-07,O- -Bianca Moore,Female,8485,1932-01-10,O+ -Karen Zuniga,Female,8486,1934-03-26,AB+ -Elizabeth Hebert,Male,8487,1955-07-16,B- -Gary Brown,Female,8488,1944-01-15,B- -Carol Davis,Male,8489,1993-11-17,A+ -Ryan Delgado,Male,8490,1992-12-25,O- -Eric Schroeder,Male,8491,1954-10-27,AB+ -Beverly Johnson,Male,8492,1987-05-01,AB- -Tyler Ellison,Male,8493,1958-09-23,A+ -Christina Willis,Female,8494,1990-04-25,B+ -Alicia Delacruz,Male,8495,1999-05-06,AB- -Jennifer Campbell,Female,8496,1967-08-24,A+ -Richard Lee,Male,8497,1994-05-13,O- -Miss Brianna Peterson,Female,8498,1954-10-07,AB+ -Megan Miles,Female,8499,1985-01-28,O- -Kristen Cook,Female,8500,1981-02-09,B- -Sarah Malone,Female,8501,1956-01-26,AB- -Amy Burton,Female,8502,1953-09-26,O+ -Joseph Gonzales,Female,8503,1960-11-22,A- -George Bryant,Male,8504,1949-02-28,B+ -Troy Gilmore,Male,8505,1966-10-19,B- -Larry Hernandez,Male,8506,1964-10-06,B- -Rebecca Harris,Male,8507,1967-08-08,AB- -Savannah Reed,Male,8508,1989-09-05,B+ -Jennifer Chapman,Female,8509,1933-06-23,A+ -Destiny Watson,Female,8510,1951-07-18,B- -Mary Crawford,Male,8511,1963-11-17,A- -Julie Becker,Female,8512,1981-12-26,AB+ -Courtney Clark,Female,8513,1946-04-28,B- -John May,Female,8514,1973-01-29,AB+ -Thomas Gonzalez,Female,8515,1956-06-14,O- -Bobby Odom,Male,8516,1953-06-18,B+ -Melinda Dunn,Male,8517,1950-09-10,A+ -Jessica Mckenzie,Female,8518,1979-06-17,AB+ -Philip Martin,Male,8519,1953-02-02,B- -Zachary Thompson,Female,8520,1972-11-09,A+ -Daniel Kennedy,Female,8521,1954-12-12,A- -Margaret Russell,Male,8522,1945-07-23,A+ -Melissa Mendoza,Female,8523,1972-05-19,AB+ -Kaitlyn Werner,Male,8524,1971-03-14,B+ -Ellen Sanchez,Female,8525,1952-02-19,AB+ -Robert Hardy,Female,8526,1989-07-21,O+ -Steven Willis,Female,8527,1975-01-18,O+ -Charles Mitchell,Male,8528,1985-08-08,A+ -Brian Huynh,Male,8529,1946-12-23,AB- -Cathy Lee,Male,8530,1958-02-21,B+ -Russell Mata,Male,8531,1935-07-01,AB- -Lisa Burch,Male,8532,1999-06-24,O+ -Ryan Stewart,Female,8533,1973-04-07,B- -Jessica Boyle,Male,8534,1966-06-30,O- -Angela Zhang,Female,8535,1997-02-01,A+ -Jenna Jensen,Female,8536,1937-08-11,O- -Amanda Lane,Male,8537,1988-04-30,O+ -Kyle Lynch Jr.,Male,8539,1932-01-26,AB+ -Dana Barrett,Female,8540,1947-10-14,A- -Nicole Adkins,Male,8541,1957-11-22,A+ -Jason Clay,Female,8542,1991-02-09,O+ -Victor Davidson,Female,8543,1956-01-18,B+ -Paul Blair,Male,8544,1981-03-28,B- -Mark Hanson,Female,8545,1990-06-24,A- -Linda Robertson,Male,8546,1997-08-02,A+ -Carolyn Martin,Male,8547,1977-08-22,A+ -Nicole Oconnor,Female,8548,1950-02-12,B+ -Andrew Ponce,Female,8549,1969-01-05,AB- -Felicia Hamilton,Female,8550,1970-09-27,AB+ -Todd Warren,Female,8551,1968-06-27,A+ -Justin Hancock,Male,8552,1963-01-05,AB+ -Catherine Eaton,Female,8554,1997-05-09,O+ -Roger Fuller,Male,8556,1943-07-10,B- -Cody Watts,Female,8557,1982-08-18,A- -Stephanie Jackson,Female,8558,1932-01-08,A- -Regina Robinson,Female,8559,1946-12-23,B- -Kenneth Morgan,Male,8560,1952-12-02,A+ -Felicia Webb,Male,8561,1975-06-29,A+ -Tara Holmes,Male,8562,1980-02-09,O+ -Jonathan Gibson,Male,8563,1953-05-14,AB- -Andrew Miller,Male,8564,1991-01-23,AB- -Todd Collier,Female,8565,1937-03-08,AB- -April Villegas,Male,8566,1953-09-03,AB+ -Whitney Cochran,Male,8567,1967-01-30,AB- -Rebecca Edwards,Male,8568,1992-05-20,B- -Brenda Shepard,Male,8569,1965-02-03,A- -Tami Gonzales,Female,8570,1994-03-22,A- -Jessica Noble,Female,8571,1981-02-02,AB+ -David Kelley,Female,8572,1995-02-06,O+ -Gary Lopez,Male,8573,1998-12-01,B- -Steven Jones,Male,8574,1985-06-19,A- -Drew Jarvis,Male,8575,1987-04-06,B- -Christopher Villanueva,Female,8576,1994-06-22,A- -Crystal Barnes,Male,8577,1942-04-25,O- -Herbert Collier,Female,8578,1951-09-21,O+ -Jason Melendez,Male,8579,1980-09-14,O+ -Zachary Gallagher,Male,8580,1948-06-02,B+ -Carolyn Fisher,Male,8581,1963-04-14,O- -Angela Harvey,Male,8582,1979-02-22,AB+ -Christine Richmond,Female,8583,1975-09-14,A- -Brenda Bowman,Female,8584,1998-03-23,B+ -David Walker,Male,8585,1953-08-15,A- -Richard Harris,Male,8586,1952-11-29,A- -Wendy Rojas,Female,8587,1975-03-28,AB- -Vanessa Johnson,Male,8588,1975-05-22,AB- -Jamie Martin DVM,Male,8589,1983-10-11,AB- -Michelle Martinez,Male,8590,1972-08-25,AB- -Jacob Warner,Male,8591,1983-09-19,AB- -Tony Young,Female,8592,1966-11-20,O- -Kenneth Gutierrez,Male,8593,1932-07-31,O+ -Corey Garrison,Male,8594,1942-08-26,AB+ -Tracy Love,Female,8595,1990-07-09,B- -Jenna Pierce,Female,8596,1974-05-05,AB- -Joseph Jones Jr.,Male,8597,1960-07-16,O- -Kevin Haley,Male,8598,1947-05-25,B+ -Louis Knight,Female,8599,1988-06-06,B+ -Michael Vega,Male,8600,1955-01-15,A- -Tracey Bell,Female,8601,1955-12-30,AB+ -Michael Chambers,Female,8602,1967-02-18,B+ -Jonathan Franklin,Female,8603,1984-02-12,AB+ -Robert Howell,Female,8604,1990-11-05,AB+ -Lance Blankenship,Female,8605,1937-11-20,O- -Preston Long,Male,8606,1988-03-28,B- -Stephanie Robbins,Male,8607,1931-06-30,AB- -Gregory Oliver,Male,8608,1968-09-10,AB+ -Garrett Acosta,Male,8609,1966-06-05,O- -Phillip Alvarez,Female,8610,1935-04-12,A- -Aaron Miller,Male,8611,1986-03-24,O+ -Daniel Williamson,Male,8612,1974-11-14,A- -Allison Mora,Female,8613,1961-12-17,O- -Tammy Osborne,Male,8614,1990-01-03,O- -Daniel Reyes,Female,8615,1972-02-02,O- -Andrew Lutz,Female,8616,2001-01-06,AB+ -Julie Chang,Male,8617,2002-04-09,O- -William Thomas,Male,8618,1989-08-01,O+ -Zachary Garrett,Female,8619,1991-12-04,AB+ -Jessica Russell,Female,8620,1937-04-17,A- -Caitlin Copeland,Female,8622,1971-02-28,O+ -Zachary Smith,Female,8623,1955-12-01,B+ -Michael Joseph,Male,8624,1939-02-09,A+ -Allison Brown,Male,8625,1940-01-08,A- -Michael Jackson,Male,8626,1977-12-15,O- -Miguel Anderson,Male,8628,1943-01-16,AB- -Michael Silva,Female,8629,1993-04-21,AB- -Kevin Mills,Male,8630,1959-08-25,AB+ -Matthew Dickson,Male,8631,1970-07-30,AB- -Michelle Cunningham,Male,8632,1960-09-21,A- -Joseph Harris,Male,8633,1960-09-11,AB+ -William Patel,Female,8634,1967-02-25,A- -Rebekah Simmons,Female,8636,1943-12-11,O- -Jennifer Reid,Male,8637,1946-06-28,B- -Barbara Jones,Female,8638,1964-05-31,B- -Michael Martinez,Male,8640,1983-07-05,O+ -Dylan Allen,Male,8641,1967-01-02,O- -Vanessa Jones DDS,Male,8642,1946-11-12,AB- -Edward Cooper,Female,8644,1994-11-23,O- -Stephen Mitchell,Male,8645,1966-03-16,A+ -Richard Moore,Female,8646,1953-02-14,B- -Justin Estrada,Male,8647,1989-05-22,AB- -Kendra Carroll,Male,8648,1998-03-09,A- -George Taylor,Female,8649,1960-03-06,A- -Ashley Rosario,Female,8650,1938-05-03,B- -Scott Woods,Male,8651,1956-04-26,O- -Jennifer Harris,Male,8652,1945-06-07,AB- -Richard Williams,Male,8653,1961-09-28,O+ -Robert Wong,Female,8654,1974-04-19,A- -Alejandra Hall,Female,8655,1937-12-02,O- -Kelly Fowler,Male,8656,1989-05-03,O+ -Evelyn Phillips,Female,8657,1945-11-30,B+ -Toni Lopez,Female,8658,1931-10-17,AB- -Kevin Carter,Male,8659,1989-11-12,B- -Christopher Mcclure,Male,8660,1976-12-08,B+ -James Robertson,Female,8661,1993-06-05,A+ -Joseph Smith,Female,8662,1934-12-04,B+ -Sharon Brown,Female,8663,1944-02-16,AB+ -Emily Johnson,Male,8664,1961-10-23,B- -Leslie Morris,Male,8665,1953-02-15,O+ -Thomas Webb,Female,8666,1989-04-07,O- -Emily Ramsey,Female,8667,1940-06-20,B+ -Jennifer Reed,Male,8668,1974-01-29,A- -Dawn Lane,Male,8669,1979-12-30,AB- -Kathryn Walters,Female,8670,1991-09-16,B+ -Karen Pruitt,Male,8671,1951-04-28,B- -Melissa Moore,Female,8672,1960-08-27,A- -Eric Jenkins,Male,8673,1987-03-23,A- -Carol Johns,Male,8674,1985-01-30,A+ -John Holland,Male,8675,2000-09-10,AB- -John Mcguire,Male,8676,1991-03-18,B+ -Jennifer Fry,Male,8677,1993-01-13,O+ -Frank Rogers,Female,8678,1989-07-10,AB- -Amanda Young,Female,8679,1947-06-21,B+ -Oscar Wright,Male,8680,1977-08-14,AB- -Robert Lindsey,Female,8681,1986-09-02,O- -Brenda Khan,Female,8682,1956-07-25,AB+ -David Blanchard,Female,8683,2002-08-26,B+ -Amy Anderson,Female,8684,1981-09-22,A- -Nichole Munoz,Male,8685,1987-11-20,O+ -Darius Hodge,Male,8686,1937-05-06,B+ -Nathan Patel,Male,8687,1994-11-16,B+ -Karen Torres,Male,8688,1932-09-16,O- -Amanda Henry,Female,8689,1964-02-28,A- -Debra Sanchez,Male,8690,1953-02-15,AB+ -Garrett Patterson,Female,8691,1942-11-25,O- -Arthur Davis,Female,8692,1947-09-28,AB+ -Mason Hill,Female,8693,1993-12-04,AB+ -Barbara Mora,Male,8694,1966-01-13,AB+ -Michael Brown,Female,8695,1970-01-26,O- -Hannah Alexander,Male,8696,1952-02-10,AB- -Billy Obrien,Male,8697,1987-01-18,B+ -Richard Chang,Female,8698,1997-12-26,AB+ -Sydney Lopez,Male,8699,1932-10-04,AB- -Terrance Ramirez,Male,8700,1992-08-23,B+ -Adam Lyons,Female,8701,2002-02-03,A- -Sean Davis,Male,8702,1951-01-19,B+ -Carly Morgan,Male,8703,1959-06-21,A- -Alexander White,Female,8704,1940-09-13,O+ -Chad Walters,Female,8705,1982-07-14,A+ -Kara Calderon,Female,8706,1962-09-27,AB- -Kevin Howell,Female,8707,1941-12-28,B+ -Gregory Garner,Male,8708,1975-02-16,A- -Joan Kennedy,Female,8709,1997-10-28,A+ -Courtney Martinez,Male,8710,1932-05-27,AB+ -Jo Gillespie,Male,8711,1972-09-02,A+ -Nathan Gentry,Female,8712,1979-12-22,A+ -Alex Hester,Female,8713,1982-02-26,AB+ -Jason Sanders,Male,8714,1978-08-29,AB- -Ann Fisher,Male,8715,1981-06-21,B+ -Abigail Mack,Male,8716,1998-11-05,AB+ -David Clark,Male,8717,1937-03-22,O+ -Christian Mccoy,Female,8718,1949-10-30,B- -Jamie Lowe,Female,8719,1955-05-07,B+ -Jerry Cox,Male,8720,1953-08-01,O- -Joseph Wood,Male,8721,1937-11-23,AB+ -Jessica Holland,Female,8722,1933-04-19,AB+ -Jennifer Miller,Female,8723,1976-05-07,A+ -Shawn Norris,Female,8724,1962-05-24,O+ -Mark Miller,Female,8725,1972-05-04,A- -Melinda Reyes,Female,8726,1978-03-17,A- -Jeffrey Holmes,Female,8727,1983-07-18,A+ -Charles Martinez,Female,8728,1999-05-22,AB- -Jordan Austin,Male,8729,1992-07-08,B+ -Jeffrey Koch,Female,8730,1968-04-25,AB+ -Christopher Quinn,Male,8732,1947-11-08,B+ -Gregory Shaw,Female,8733,1931-10-17,B+ -Mason Terry,Male,8734,1993-07-14,AB+ -Lisa Wood,Female,8735,1981-07-22,A+ -Savannah Johnson,Female,8736,1990-12-28,B+ -Marvin Hays,Male,8737,1953-01-12,AB+ -Casey Day,Male,8738,1940-01-15,AB- -Gary Tapia,Male,8739,1941-09-17,B+ -Cody Pollard,Male,8740,1986-11-29,B- -Samuel Herman,Female,8741,1981-11-22,O- -Michelle Thomas,Female,8742,1945-02-06,O- -Douglas Hernandez,Male,8743,1955-03-16,O- -John Lee,Male,8744,2002-11-26,B- -Robert Lawrence,Male,8745,1971-08-12,AB+ -Brianna Parker,Male,8746,1940-11-29,A+ -Andrea Gonzales,Male,8747,1965-12-18,A- -Breanna Poole,Male,8748,1952-05-12,O+ -Jeffrey Ortiz,Male,8749,1950-05-24,AB+ -Shannon Kaufman,Female,8750,1986-08-29,B- -Bradley Cisneros,Female,8751,1983-02-15,B+ -Brent Taylor,Male,8752,1940-01-30,AB- -Nicole Barker,Female,8753,2001-03-28,B- -Steven Morgan,Female,8754,1986-05-07,B+ -Laura Cohen,Male,8755,1976-06-04,A- -Robert Solomon,Female,8756,1956-01-29,O- -Jason White,Female,8757,1943-01-06,AB+ -Dale Frederick,Female,8758,1949-05-23,A- -Jennifer Marshall,Female,8759,1940-12-16,O- -Stephen Sanchez,Female,8760,1945-05-31,O+ -Ana Stein,Female,8761,1963-08-14,B+ -Isaac Parker,Female,8762,1953-01-17,B+ -Stephanie Gibbs,Male,8763,1986-05-11,AB- -Kent Graves,Male,8764,1935-06-21,O- -Michelle Holmes,Female,8765,1954-07-17,O+ -Destiny Mora,Female,8766,1973-03-20,B+ -Tammy Hernandez,Male,8767,1995-03-07,B- -Sarah Lynch,Female,8768,1942-05-22,O- -Samuel Crosby,Female,8769,1998-06-22,O- -Brian Lopez,Male,8770,1939-05-01,A+ -Christopher Yates,Male,8771,1948-06-06,AB- -Catherine Sanders,Male,8773,1951-05-06,AB- -Linda Baldwin,Female,8774,1961-01-10,A- -Ms. Melissa Bowman,Male,8775,1999-08-28,B- -Summer Nicholson,Male,8776,1982-07-04,A+ -Tammy Hall,Male,8777,1994-12-09,A- -Wesley Green,Female,8778,1937-12-21,O+ -Regina Sharp,Male,8779,1996-08-18,A- -John Henderson,Female,8780,1981-06-21,O+ -Amanda Gray,Male,8781,1975-07-18,B- -Daniel Ross,Male,8782,1971-08-08,B+ -Carolyn Nixon,Female,8783,1943-07-23,AB- -Michelle Martinez,Female,8784,1952-03-04,B+ -Latasha Cross,Female,8785,1989-05-04,O+ -Stephanie Lee,Female,8786,1974-02-16,B- -Joseph Bass,Male,8787,1952-03-08,B+ -Jason Howell,Male,8788,1994-09-23,A- -Daniel Hall,Male,8789,1945-03-28,O+ -Donald Jones,Female,8790,1992-06-25,AB+ -Mr. Christopher Diaz,Male,8791,1999-10-20,O- -Nicole George,Male,8792,1933-03-19,A- -James Garcia,Female,8794,1953-08-12,AB- -Wendy Smith,Female,8795,1969-05-30,B+ -Brandi Bennett,Male,8796,1966-04-18,A- -William Reeves,Female,8797,1932-04-15,AB+ -Christian Alvarado,Female,8798,1981-01-19,B- -Mrs. Carolyn Barnes MD,Female,8799,1999-09-29,B- -William Foster,Female,8800,1962-05-17,A- -Stacy Howard,Female,8801,1942-07-04,AB+ -Rhonda Bryant,Male,8802,1940-06-12,B+ -Natasha Williams,Female,8803,1975-07-14,A- -Nicholas Cunningham,Male,8804,1936-08-26,O- -Joshua Hall,Female,8805,1955-02-21,O- -Bianca Duffy,Female,8806,1954-12-19,A+ -Erin Meadows,Male,8807,1961-11-04,O+ -Keith Sullivan,Male,8808,1989-05-02,A+ -Brian Bridges,Male,8809,1937-02-20,B+ -Jonathan Hall,Male,8810,2000-03-24,O- -Kevin Abbott,Male,8811,1946-03-28,AB+ -Willie Baker,Female,8813,1941-01-05,O+ -Rebecca Young,Female,8814,1962-10-31,B+ -Christina Williams,Male,8815,1987-12-16,AB+ -Janice Vega,Female,8816,1948-02-13,B+ -Robert Eaton,Female,8817,1938-08-18,A+ -Katrina Reynolds,Female,8818,1945-04-12,B- -Lucas Lamb,Female,8819,1949-04-25,AB+ -Eric Johnson,Female,8821,1995-12-16,A+ -Katrina Sanders,Female,8822,1950-11-11,A+ -Ryan Carr,Female,8823,1973-04-28,A+ -Brittany Morales,Male,8824,1966-04-09,B- -Justin Vega,Male,8825,1942-07-10,B- -Jill Mason,Female,8826,1971-12-31,A- -Frederick Williams,Male,8827,1939-07-24,B- -Robert Gonzalez,Female,8828,1931-12-08,O+ -Paul Mendez,Male,8830,1973-01-23,B- -Whitney Williams,Female,8831,1949-02-27,B- -Tanya Navarro PhD,Male,8832,1944-04-30,B- -Daniel Crosby,Female,8833,1999-05-08,B+ -Johnny Combs,Male,8834,1945-10-04,AB+ -Cynthia Patton,Male,8835,1993-11-30,B- -Brenda Jackson,Male,8836,1998-11-23,O+ -Brent Preston,Female,8838,1978-07-06,B+ -Robert Ramirez,Male,8839,1990-02-27,A+ -Jordan Reyes,Female,8840,1979-12-01,AB+ -Joshua Hutchinson,Female,8842,1948-10-04,O- -Shannon Sanchez,Female,8843,1963-03-15,B+ -Juan Pope,Female,8844,1994-08-08,B- -Keith Lopez,Male,8845,1951-07-15,B+ -Kevin Alvarez,Male,8846,1963-03-07,A- -Jacob Carter,Female,8847,1939-01-31,A- -James Moore,Female,8848,1963-06-09,B+ -Tyrone Adkins,Female,8849,1961-01-25,A+ -Patrick Jackson,Female,8850,1958-06-13,A+ -Heather Wiggins,Female,8851,1993-07-04,AB+ -Andrea Macias MD,Male,8852,1970-09-11,A- -Bonnie Bowman,Female,8853,1975-04-23,O- -Tanya Flores,Male,8854,1949-05-01,AB- -Larry Cox,Female,8855,2002-10-04,A- -Stephanie Alvarez,Female,8856,1972-06-13,B+ -Tiffany Johnson,Female,8857,1938-05-16,A- -Dr. Ryan Meyer,Male,8858,2002-12-29,O+ -Charles Baker,Male,8859,1942-02-15,AB- -Charles Hayes,Male,8860,1931-02-07,A+ -Travis Evans,Male,8861,1953-07-24,AB- -Kerry Singleton,Female,8862,1997-05-29,A- -Joshua Lopez,Male,8863,1973-02-25,A+ -Michelle Brown,Female,8864,1992-03-29,AB- -Theresa Perkins,Female,8865,1986-03-29,A+ -Ryan Blair,Male,8866,1932-05-17,A+ -Kristina Taylor,Female,8867,1967-09-23,AB+ -Brandon Williamson,Male,8868,1971-06-30,O- -Valerie Charles,Male,8869,1952-06-24,A+ -Jonathan Hansen,Female,8870,1930-12-31,O+ -Aaron Franklin,Male,8871,1995-04-21,A- -James Martinez,Male,8872,1972-01-27,A- -James Marshall,Female,8873,1947-12-29,O+ -Suzanne Contreras,Male,8874,1976-06-11,B- -Steve Rodriguez,Female,8875,1995-11-14,A+ -Sharon Gordon,Female,8876,1998-10-12,B+ -Miss Bonnie Davis,Female,8877,1968-05-18,A+ -Matthew Marks,Female,8878,1947-09-17,A+ -Ethan Allen,Male,8879,1941-05-13,B+ -Bradley Hansen,Female,8880,1965-10-09,AB- -Anita Donaldson,Male,8881,1983-03-07,A+ -Tiffany Long,Male,8882,1941-04-30,A+ -Bonnie Anderson,Female,8883,1963-07-03,O+ -Kyle Roth,Male,8884,1976-02-05,O- -Theresa Navarro,Female,8885,1963-04-11,O- -Christopher Patrick,Female,8886,1992-10-03,B- -Reginald Watts,Female,8887,1967-11-16,O+ -Madison Smith,Male,8888,1933-10-13,A+ -Logan Davis,Female,8889,1952-04-29,O- -Erin Gomez,Male,8890,1934-01-07,AB+ -Jon Barnett,Female,8891,1966-10-18,AB+ -Lisa Perkins,Male,8892,1982-05-10,AB+ -Destiny Stephens,Female,8893,1995-08-04,A+ -David Williams,Male,8894,2000-08-13,A+ -Herbert Day,Male,8895,1993-05-01,B+ -Christina Young,Male,8896,1977-04-08,B- -Alison Love,Male,8897,1962-11-15,A- -Jon Rhodes,Female,8898,1938-08-16,B- -Jennifer Hall,Male,8899,1997-07-08,B- -Calvin Spence,Female,8900,1951-08-11,AB- -William Buchanan,Male,8901,1986-03-16,AB+ -Daniel Graham,Female,8902,1974-03-07,A+ -Michael Ortega,Female,8903,1933-03-14,AB+ -Steven Gutierrez,Male,8904,1963-10-31,B- -Cindy Perez,Male,8905,1938-07-27,A+ -Michelle Kemp,Female,8906,1971-02-27,O+ -Lindsey Hill,Male,8907,1984-11-02,B+ -Mary Lowery,Male,8908,1936-12-01,O- -Sherri Larson,Male,8909,1960-04-12,O- -Michael Joyce,Female,8910,1939-08-18,B- -Bridget Rodriguez,Female,8911,1984-01-29,A- -Tyler Oneal,Female,8913,1994-12-13,AB+ -Andrew Mcgrath,Male,8914,1958-06-09,O+ -Brandon Quinn,Female,8915,1939-09-26,A+ -Michael Ray,Female,8916,1973-11-03,A- -Robert Porter,Female,8917,1968-10-05,AB+ -Dillon Hunter,Male,8918,1943-12-30,B- -Carrie Hood,Female,8919,1948-06-27,AB+ -Jennifer Adams,Male,8920,1976-01-29,B- -Brenda Pena,Male,8921,1947-06-05,AB- -Paige Davis,Female,8922,1939-12-06,O- -Robin Tucker,Female,8923,1985-11-08,A- -Robert Forbes,Female,8924,1940-08-11,O- -Rebecca Summers,Female,8925,1945-01-19,AB+ -Matthew Vincent,Female,8926,1973-10-01,O+ -Jeremy Smith,Female,8927,1961-07-26,A+ -Scott Robertson,Female,8928,1991-12-09,B- -Amanda Thompson,Male,8929,1975-07-29,A+ -Michelle Torres,Female,8930,2002-05-07,O- -Mark Cummings,Male,8931,1988-07-11,B+ -Jessica Gregory,Male,8932,1966-08-22,O+ -Marissa Alvarez,Female,8933,1941-01-08,O+ -Shawn Ward,Male,8934,1958-08-20,A+ -Robert Palmer,Female,8935,1967-11-27,O- -Christy Cummings,Male,8936,1997-07-15,B+ -Oscar Mason,Male,8937,1986-06-02,A+ -Kimberly Hampton,Female,8938,1941-06-07,AB+ -Allison Jones,Male,8939,1955-02-13,O+ -Debra Mejia,Male,8940,1939-06-06,O+ -John Arnold,Female,8941,1988-07-30,AB+ -Erin Garcia,Male,8942,1959-05-14,O- -Angela Roberts,Female,8943,1931-11-25,O+ -Natalie Rojas,Male,8944,1952-11-08,A- -Scott Reed DDS,Male,8945,1962-04-03,B+ -Neil Martinez,Male,8946,1979-10-27,AB- -Jason Riley,Female,8947,1967-11-24,AB- -Amy Santana,Female,8948,1969-01-10,AB- -Thomas Mckenzie,Male,8949,1968-05-22,B- -Russell Peters,Male,8950,1966-08-08,A- -Robert Freeman,Female,8951,1945-09-03,B- -Sarah Johnson,Male,8952,1933-11-08,O- -John Fleming,Male,8953,1951-12-29,AB+ -Ashley Rojas,Female,8954,2000-08-13,A+ -Blake Davis,Female,8956,1969-11-24,A- -Andrew Duran,Female,8957,1978-09-20,B+ -Catherine Cabrera,Male,8958,1984-06-07,O- -Trevor Brown,Female,8959,1986-10-30,A+ -Lisa Burns,Male,8960,1950-03-31,O- -Michael Dickerson,Female,8961,1976-05-14,B- -Walter Ramirez,Female,8962,1961-09-21,AB- -Rachel Rodriguez MD,Female,8963,2000-07-04,AB+ -Brandon Mcknight,Male,8965,1965-05-23,B- -Stephanie Simpson,Female,8966,1986-09-20,AB+ -Tamara Chandler,Male,8967,1932-09-24,A- -Michelle Webb,Female,8969,1986-01-07,A+ -Briana Byrd,Female,8970,1969-05-26,O- -Dylan Maynard,Female,8971,1946-09-13,O+ -Sharon Lewis,Female,8972,1990-01-25,O+ -Joseph Jacobs,Male,8973,1985-12-14,AB+ -Joyce Williams,Female,8974,1989-05-18,AB- -Ethan Howard,Female,8975,1997-01-31,AB- -Timothy Trevino,Female,8976,1991-07-26,AB+ -Anne Lowe,Female,8977,1966-12-27,B- -Miss Holly Freeman,Male,8978,1945-01-12,O+ -Jonathan Wagner,Male,8979,1998-04-22,B- -Kathleen Johnson,Male,8980,1945-05-18,A+ -Christine Smith,Male,8981,1973-09-10,O+ -Anita Moore,Male,8983,1936-02-27,A+ -Mrs. Kimberly Walker,Female,8984,1977-03-07,O- -Justin Moore,Female,8985,1959-06-06,B- -Richard Abbott,Female,8986,1958-10-15,AB+ -Stephanie Dillon MD,Female,8987,1992-04-03,O+ -Christina Lynch,Female,8989,1953-10-22,B- -Wanda Patterson,Male,8990,1952-02-05,AB+ -Ryan Hobbs,Female,8991,1954-05-09,O- -Kevin Jones,Female,8992,1984-10-13,O+ -Edward Vasquez,Male,8993,1975-09-20,A+ -Benjamin Parrish,Female,8994,1971-05-29,O- -John Young,Female,8995,1936-07-04,AB- -Robert Lopez,Female,8996,2000-02-19,AB+ -Stephanie Chung,Female,8997,1941-12-27,B+ -Nicole Richards,Male,8998,1960-08-13,O+ -Dr. Jacob Hart,Male,8999,1997-12-28,O+ -Alexander Steele,Male,9001,1931-07-29,A- -Andre White,Female,9002,1966-07-01,A- -Patrick Vargas,Male,9003,2001-07-15,O- -John Cole,Male,9004,1990-02-24,O+ -Brandi Young,Male,9005,1989-11-23,AB+ -Justin Stanley,Male,9006,1954-07-03,O- -Kristin Braun,Female,9007,1982-07-21,A+ -Jeffery Kelley,Male,9008,1997-02-16,O- -Tamara Grant,Female,9010,2000-04-23,O- -Sheila Perez,Female,9011,1945-07-11,B+ -Sarah Dorsey,Male,9012,1995-12-25,A+ -Johnny Hodges,Female,9013,1947-12-25,AB- -Hannah Foley,Female,9014,1964-10-25,A- -Lisa Richardson,Male,9015,1984-04-30,AB+ -Megan Diaz,Male,9016,1946-10-01,AB- -Monica Brooks,Female,9017,1985-10-15,AB- -Tonya Pineda,Female,9018,1951-06-17,AB- -Tyler Black,Female,9019,1975-06-01,A- -Angel Davis,Male,9020,1969-10-14,B- -Scott Smith,Female,9021,1982-06-16,A- -Bobby Keller,Male,9022,1980-04-24,AB- -Jesse Weaver,Female,9023,1980-12-31,B- -Elizabeth Allen,Female,9024,1953-04-08,A+ -Melanie Taylor,Female,9025,1979-06-24,A- -Julie Hartman,Male,9027,1941-04-02,AB+ -Chelsea Sanchez,Male,9028,1979-12-14,AB- -Ann Davis,Male,9029,2002-08-28,O+ -Amy Day,Female,9031,1989-01-11,A+ -Annette Chapman,Male,9032,1976-11-01,B- -Amber Myers,Male,9033,1999-06-03,A- -Christina Hayes,Male,9034,1967-01-08,AB+ -Gregory Acosta,Female,9035,1953-11-16,O- -Sydney Hernandez,Male,9036,1943-05-26,AB+ -Aaron Hayes,Male,9037,1975-10-19,AB+ -Michael Kelly,Male,9038,1989-08-21,AB- -Dr. Jordan Gutierrez II,Male,9039,1952-12-31,AB- -Nathaniel Crawford,Male,9040,1987-10-29,A- -Bryan Willis,Male,9041,1984-03-08,A- -Mr. David Gibbs Jr.,Female,9042,2000-11-16,B+ -Kelli Good,Female,9043,1969-12-28,B- -Danielle Cantrell,Female,9044,1957-10-05,B+ -Daniel Rose,Female,9045,1977-05-17,A- -Sally Hudson,Female,9046,1990-10-16,B- -Cathy Long,Female,9047,1935-08-07,AB- -Martha Galvan,Male,9048,1976-01-02,AB- -Derek Martin,Male,9049,1979-08-25,O+ -Miss Morgan Collier PhD,Male,9050,1995-01-22,O+ -Mrs. Michelle Hill,Male,9051,1977-11-13,A+ -Tina Hess,Male,9052,1939-04-16,AB- -Anthony Beasley,Female,9053,1982-06-13,O- -Timothy Sullivan,Female,9054,1959-03-22,O+ -Keith Michael,Female,9055,1969-07-19,B- -Paula Wright,Male,9056,1948-07-29,AB+ -Dr. Kimberly Jones,Male,9057,1979-02-02,A- -Dylan Hart,Female,9058,1932-12-06,A- -Tammy Sanchez,Female,9059,1992-09-18,A+ -David Cobb,Male,9060,1935-01-25,O+ -Stephanie Watson,Female,9061,1988-09-10,AB+ -Chelsea Miller,Female,9062,1963-12-04,AB+ -Michael Sullivan,Male,9063,1938-01-18,O+ -Justin Quinn,Male,9064,1957-08-22,O- -William Diaz,Female,9065,1974-08-19,O- -Daniel Lee,Male,9066,1949-09-12,A+ -Ronald Johnson,Female,9067,1946-01-08,B+ -James Garza,Female,9069,1993-02-16,O- -Shawna Dunn,Male,9070,1974-11-04,A+ -Sarah Fitzpatrick,Female,9071,1931-11-10,B+ -James Perkins,Male,9072,1932-09-15,B+ -Linda Fox,Male,9073,2001-09-08,B- -Loretta Day,Male,9074,1934-02-11,B+ -Calvin Martin,Male,9075,1979-10-04,O+ -Angel Mitchell,Female,9076,1989-04-26,B+ -Timothy Torres,Male,9077,1974-05-08,AB+ -Ryan Mata,Female,9078,1988-08-15,A+ -Amanda Vincent,Female,9079,1978-10-05,A- -Brandon Norman,Female,9080,1973-06-11,O- -Blake Martin,Male,9081,1969-01-22,A- -Miss Amanda Walker,Female,9082,1948-03-21,A+ -Justin Ramirez,Male,9083,1936-09-06,AB- -Devin Vazquez,Female,9084,1958-01-08,A+ -Peter Matthews,Male,9085,1993-08-18,O- -Lori White,Male,9086,1950-03-04,AB- -Samantha Bishop DVM,Male,9087,2000-10-14,AB- -Thomas Martinez,Female,9088,1966-12-08,B+ -Joshua Harris,Female,9090,1937-02-07,O- -Denise White,Male,9091,1987-09-12,AB- -Chloe Wilson,Female,9092,1981-07-12,O+ -Rachael Williams,Female,9093,1945-02-08,AB+ -Daniel Knox,Female,9094,1955-03-30,A- -Angela Paul,Female,9095,1947-04-12,O+ -Jordan Mclaughlin,Female,9096,1939-09-10,O+ -Nicole Sandoval,Female,9097,1970-05-15,O- -Laura Lewis,Male,9098,1984-05-24,B+ -Jordan Porter,Male,9099,1995-01-15,O- -Susan Clarke,Female,9100,1980-12-29,A- -Meredith Simpson,Male,9101,1947-06-19,AB+ -Kenneth Long,Male,9102,1982-06-06,A+ -Tony Ramos,Female,9103,1955-08-23,O+ -Renee Moore,Male,9104,1961-04-10,AB- -Michael Conway,Male,9105,1943-06-13,AB+ -Scott Terry,Female,9106,1931-02-08,O+ -Phyllis Barker,Male,9107,1966-02-01,A+ -Dr. Kelly Krueger DVM,Male,9108,1984-02-13,B+ -Thomas Robinson,Female,9109,1941-05-26,AB- -Edwin Harris,Female,9110,1995-10-01,O+ -Amy Foster,Female,9111,1975-02-05,B- -Joshua Petersen,Male,9113,1969-04-02,A- -Nancy Lozano,Male,9114,2000-06-16,AB+ -Beth Fields,Male,9115,1990-10-13,A- -Mr. Christopher Hill MD,Male,9116,1944-12-23,O- -Heather Patterson,Male,9117,1970-12-10,O+ -Melissa Johnson,Male,9118,1947-03-09,AB- -Samantha Bell,Female,9119,1945-09-18,AB- -Elizabeth Peterson,Male,9120,1986-07-23,AB+ -Alexis Wheeler,Female,9121,2001-01-25,AB+ -Meghan Robinson,Male,9122,1947-11-11,A- -Lori Williams,Female,9123,1988-07-22,AB- -Mary Howard,Female,9124,1996-11-12,AB- -Sierra Williams,Female,9125,1971-01-19,AB- -Travis Carter,Female,9126,1965-03-31,O+ -Brandon Smith,Female,9127,1992-12-11,AB- -Thomas Mccarthy,Female,9128,1966-09-28,O- -Andrew Williams,Female,9129,1969-08-01,AB- -Chad Ruiz,Male,9130,1935-08-27,O- -Brenda Dyer,Female,9131,1944-07-21,O+ -Kristen Miranda,Male,9132,1958-12-06,AB+ -Kelly Madden,Female,9133,1930-11-14,B+ -Carlos Potts,Female,9134,1978-12-21,O- -Sydney Williams,Female,9135,1946-10-14,O+ -Amber Willis,Female,9136,1950-04-25,B+ -Derek Arnold,Male,9137,1935-08-05,B+ -Wesley Parker,Female,9138,1942-08-04,AB- -Carmen Atkins MD,Female,9139,1957-12-19,O+ -Mark Alvarez,Male,9140,1930-04-29,B+ -Sierra Rosario,Male,9141,1931-12-11,AB- -Richard Martin,Male,9142,1973-06-01,A- -Maria Hale,Male,9143,1984-08-06,O+ -Sara Hall,Male,9144,1964-07-02,B+ -Natasha Brown,Male,9145,1938-11-25,AB+ -Charles Scott,Male,9146,1952-01-27,O- -Trevor Blankenship,Male,9147,1953-07-28,A- -Veronica Solis,Male,9148,1937-02-16,AB+ -Thomas Pope,Male,9149,1962-12-25,B- -Felicia Reynolds,Male,9150,1977-11-15,AB- -Rebecca Adams,Female,9151,1986-12-18,B+ -Ronald Moss,Female,9152,1951-07-07,O- -Danielle Barnes,Female,9153,1961-10-25,AB+ -Michaela Jimenez,Male,9154,1952-05-22,O- -Jill Brandt,Male,9155,1991-07-06,B- -Brandon Wheeler,Male,9156,1993-02-01,A+ -David Cruz,Male,9157,1981-01-18,AB- -Tammy Yoder,Male,9158,1996-10-26,AB- -Luke Young,Male,9159,1962-05-19,O+ -William Harris,Male,9160,1968-01-12,B+ -Brooke Anderson,Male,9161,1976-04-01,AB- -Karen Hansen,Male,9162,1981-05-16,AB- -Dean Wilkins,Male,9164,1999-03-03,AB+ -Michelle Estrada DDS,Male,9165,1987-11-14,A- -Kevin Meyers,Male,9166,1967-11-13,AB- -Richard May,Female,9167,1955-12-20,AB- -Stacy Thomas,Male,9168,1945-01-17,B+ -Michael Roberts,Female,9169,1960-11-06,B- -Julie Jackson,Female,9170,1983-08-24,A- -Anna Graves,Female,9171,1950-04-04,B- -James Allen,Male,9172,1948-06-18,B+ -Kiara Roberts,Female,9173,1990-04-28,O- -James Johnson,Female,9174,1944-02-28,O- -Joseph Price,Male,9175,1973-10-27,AB- -Laurie Young,Male,9176,1996-06-17,AB- -Bruce Macias,Female,9177,1975-09-30,O+ -Shane Sanchez,Female,9178,2002-09-29,O- -Derek Taylor,Female,9179,1965-08-09,AB+ -Melanie Buckley,Male,9180,1960-01-06,AB- -Holly Haynes,Male,9181,1959-07-03,AB+ -Ronald Hernandez,Male,9182,1939-09-28,AB- -John Mcclure,Female,9183,1939-10-28,B+ -Theresa Pope,Male,9184,1975-04-10,AB+ -Darrell Burgess,Female,9185,1932-08-12,A+ -Gina Peters,Female,9186,1967-10-08,AB+ -Gregory Ray,Female,9187,1986-10-12,A- -Jose Harrison,Female,9188,1994-06-18,O- -Mark Miller,Male,9189,2000-07-19,AB- -Susan Morris,Male,9190,1931-11-19,O- -Nathan Mitchell,Female,9191,1953-04-11,A- -Dr. Gerald Summers,Female,9192,1971-06-13,A- -Mariah Cameron,Female,9194,1956-07-17,AB+ -Jason Franklin,Male,9195,1938-07-25,B- -Karen Richardson,Female,9196,1993-05-17,B- -Rebekah Kennedy,Male,9197,1964-12-08,A- -Allen Young,Female,9198,1961-08-25,B- -Ashley Kline,Male,9199,1970-07-06,AB- -Meagan Mitchell,Male,9200,1939-04-19,O+ -Nancy Jones,Male,9201,1999-07-07,A+ -Richard Escobar DDS,Female,9203,1932-04-25,AB+ -Samantha Hampton,Male,9204,1933-03-10,O+ -Candice Taylor,Male,9205,1965-06-20,B- -Russell Taylor,Male,9206,1946-03-02,AB+ -Rodney Barnes,Male,9207,1967-08-06,O+ -Amanda Grant,Male,9208,2002-02-15,O- -Sarah Hayes,Female,9209,1989-07-14,B- -Elijah Evans,Male,9210,1930-12-21,B+ -Heather Roberts,Female,9211,1979-12-26,O+ -Kathryn Brown,Female,9213,1980-05-26,B+ -Jordan Long,Male,9215,1937-09-18,AB- -Manuel Ford,Female,9216,1940-06-29,O- -Gregory Villanueva,Male,9217,1964-02-19,B- -Jesse Adams,Female,9218,1952-08-10,A+ -Barbara Woods,Female,9219,1965-11-20,A- -Heather Powers,Male,9220,1964-02-10,B- -Kimberly Reed,Male,9221,1959-05-02,B+ -Andrew Hernandez,Male,9222,1937-01-25,AB- -Anthony Fernandez,Male,9223,1956-03-27,A+ -Cameron Gonzalez,Female,9224,2000-05-19,A+ -Bradley Stewart,Female,9225,1981-08-31,A+ -John James,Male,9226,1999-07-28,AB+ -Justin Johnson,Female,9227,1953-01-18,AB+ -Paige Jackson,Male,9228,1981-07-19,B+ -Shelby Kim,Female,9229,1999-04-12,A- -Arthur Ross,Female,9230,1969-06-24,A+ -Angelica Dudley,Female,9232,1962-05-07,A- -Nathan Lee,Male,9233,1932-11-02,O- -Margaret Lara,Male,9234,1957-06-12,A+ -Carlos Phillips,Male,9235,1959-12-07,O+ -Brian Moore,Female,9236,1998-08-20,A+ -Justin Alexander,Male,9237,1950-05-11,B+ -Tracy Walton,Female,9238,1934-03-29,AB+ -Courtney Morris,Female,9239,2000-06-01,AB+ -Marcus Smith,Male,9240,1943-11-14,O+ -Beth Fuentes,Female,9241,1992-08-23,O+ -Tim Chandler,Male,9242,1991-10-15,B- -Zachary Cantrell,Male,9243,1985-09-10,O- -David Elliott,Female,9244,1939-05-01,O- -Dr. John Fischer,Female,9245,1931-10-02,B+ -Melissa Atkins,Female,9246,1930-06-22,B+ -Sandra Compton,Male,9247,1945-07-07,B+ -Justin Kemp,Female,9248,1941-12-03,B+ -Cesar Obrien,Female,9249,1985-09-12,B+ -Sarah Hernandez MD,Male,9250,1998-09-13,B+ -Christina Miller,Female,9251,1998-09-19,O- -Daniel Kennedy,Male,9252,1957-09-05,AB- -Tara Knight,Male,9253,1937-11-26,AB+ -William Park,Male,9254,1935-12-05,O- -Jonathan Rich,Female,9256,2002-07-27,B+ -Brian Hernandez,Female,9257,1940-10-20,B- -Brandi Goodman,Female,9258,1989-03-11,B- -Mr. Michael Hernandez,Female,9259,1958-06-24,O- -Kevin Hall,Female,9260,1951-03-18,O+ -Ryan Wright,Female,9261,1962-10-15,B- -Joshua Villa,Male,9262,1981-12-13,A- -David Carlson,Female,9263,1951-03-26,O+ -Danny Parrish,Female,9264,1972-09-13,A- -Jeanne Davis,Female,9266,1988-05-14,AB+ -John Potter,Male,9267,1986-01-07,AB- -Nicole Smith,Male,9268,1944-03-13,B- -Carl Stone,Male,9269,1932-12-29,O+ -Ashley Moore,Female,9270,1940-08-16,B+ -Troy Alexander,Female,9271,1959-04-05,A- -Michael Ruiz,Female,9272,1992-10-25,O- -Jacqueline Cook,Female,9273,1959-06-29,A- -James Williams,Male,9274,1959-03-30,A- -Steven Wilson,Male,9275,1937-08-17,AB+ -Ian Brooks,Male,9276,1991-06-19,A+ -Christopher Wade,Male,9277,1970-07-09,A+ -Mrs. Sandra Wood,Male,9278,1974-07-29,O- -Justin Mitchell,Female,9279,1947-11-27,AB+ -Kathryn Hughes,Female,9280,1979-03-03,AB+ -April Smith,Male,9281,1973-11-07,B+ -Ashley Huff,Female,9282,1990-05-26,AB+ -John Mcconnell,Male,9283,1970-05-01,AB+ -Christian Adams,Male,9284,1958-12-05,A+ -James Huffman,Male,9285,1952-01-26,O+ -Daniel Johnson,Male,9286,1940-12-04,AB+ -Crystal Moody,Male,9287,1989-02-14,O+ -William Moore,Male,9288,1988-02-15,A- -Kim Lewis,Male,9289,2000-04-12,A- -Kelly Sanchez,Female,9290,1978-02-11,AB+ -Robert Acosta,Male,9291,1982-03-22,B- -Tabitha Sanders,Female,9292,1941-03-19,AB- -Timothy Garcia,Male,9293,1969-11-01,B- -Jason Bailey,Male,9294,1979-12-29,A- -Edward Forbes,Female,9295,1996-02-16,AB- -Keith Nguyen,Male,9296,1984-03-08,B- -Samantha Gonzalez,Female,9297,1957-04-28,AB+ -Jesus Davis,Male,9298,1985-08-16,O+ -Steven Wolfe,Female,9299,2001-09-08,AB- -William Fry,Female,9300,1997-06-02,A+ -Eric Watson,Male,9301,1944-10-22,O- -Jeffery Williams,Male,9302,1985-06-06,AB- -Ashley Adams,Female,9303,1968-02-28,AB- -Sarah Weeks,Female,9305,1995-02-19,A+ -Terry Keller,Female,9306,1937-10-04,AB+ -Todd Ross,Male,9307,1944-06-21,B- -Kristy Valencia,Female,9308,1956-04-03,B- -Albert Marquez,Male,9309,1970-04-09,A- -Lindsay Robertson,Female,9310,1968-08-25,O+ -Laura Le,Male,9311,1950-12-07,AB+ -Caroline Lopez,Female,9312,1962-11-27,A+ -Deborah Casey,Male,9313,1999-07-25,AB+ -Scott Graves,Female,9314,1959-10-25,AB+ -Cory Benson,Female,9315,1943-01-30,B- -David Hart,Male,9316,1973-10-16,A+ -Tammy Arias,Female,9317,1937-06-28,B+ -Madison Aguilar,Female,9318,1967-04-08,O- -Jacqueline Gonzalez,Female,9320,1997-07-05,AB- -Brandon Moore,Male,9321,1997-07-10,B- -Jeffrey Hodges,Male,9323,1947-06-09,A+ -Thomas Jensen,Male,9324,2002-12-08,O+ -Julie Lee,Female,9325,1977-02-08,AB- -Charles Lewis,Male,9326,1995-06-18,AB- -Erin Mcgee,Female,9327,1930-06-12,B+ -Scott James,Female,9329,1951-04-18,B+ -Alejandro Pratt,Female,9330,1970-08-28,B- -Emily Jacobson,Male,9331,1980-02-24,A- -Katie Saunders,Female,9332,1939-09-06,O+ -Tyler Aguilar,Female,9333,1991-03-02,B- -Cynthia Warren,Male,9334,1984-04-17,AB+ -Gloria Kelly,Female,9335,1966-09-12,A- -Matthew Guzman,Female,9336,1969-09-29,A+ -Edward Miller,Female,9337,1982-07-01,B+ -Jose Finley,Female,9338,1982-04-09,O+ -William Vincent,Male,9339,1951-10-17,AB- -Larry Hall,Male,9340,1940-10-08,B- -Cynthia Bradley,Male,9341,1939-04-09,B+ -Mr. Aaron Boone,Male,9342,1993-01-10,AB- -Clayton Garcia,Female,9343,1932-07-11,O+ -Francisco Stephens,Male,9344,1997-01-02,B+ -Juan Hill,Female,9345,1958-05-21,B+ -James Barrett,Female,9346,1967-08-12,AB- -Michael Sparks,Female,9347,2001-08-14,B- -Anthony Mack,Female,9348,1931-07-19,A- -Destiny Cook,Male,9349,1983-10-12,B- -Russell Anthony,Male,9350,1959-07-17,O- -Kara Hatfield,Female,9351,1936-11-05,B+ -Juan Murphy,Male,9352,1987-05-12,AB- -Elizabeth Mercer,Male,9353,1999-12-28,O- -Sherry Nguyen,Female,9354,1948-11-03,A- -Phillip Smith,Female,9355,1939-12-16,O- -Kristina Brown,Female,9356,1991-05-15,AB- -Derek Munoz,Female,9357,1930-08-12,O+ -Jane Wilson,Female,9358,1947-03-30,AB+ -Diana Evans,Female,9359,1970-10-13,A- -Anthony Thompson,Female,9360,1930-12-17,B- -Lisa Williams,Female,9361,1994-11-19,A+ -Leslie Washington,Female,9362,1980-02-20,A- -Jamie Jones,Female,9363,1996-01-22,O- -Mary Bailey,Male,9364,1998-03-29,O+ -Jared Santos,Female,9365,1942-12-16,AB- -Matthew Reid,Female,9366,1932-10-14,O+ -Ronald Mills,Female,9367,1980-12-14,O+ -Colton Leblanc DDS,Male,9369,1994-08-03,AB- -Charles Stout,Male,9371,1971-09-12,A+ -Matthew Hansen,Female,9372,1949-08-19,AB- -Chad Baker,Male,9373,1966-06-04,A+ -Daniel Williams,Male,9374,1946-12-30,AB- -Hannah Sawyer,Female,9375,1963-09-21,O- -Brian Pollard,Female,9376,1936-08-16,A+ -Megan Davis,Female,9377,1947-02-01,O- -Dawn Harrison,Female,9378,1935-03-09,A- -Joshua Ramos,Male,9380,1967-08-28,A+ -Susan Martinez,Male,9381,1944-07-28,A+ -Abigail Wilson,Male,9382,1960-10-02,AB- -Brian Thomas,Male,9383,2002-12-13,A+ -Teresa Buchanan,Male,9384,1995-12-28,O- -Jason Davidson,Female,9385,1993-09-09,B+ -Natalie Davis,Female,9386,1977-12-09,A- -Erik Taylor,Female,9387,1938-07-15,B+ -Janice Torres MD,Male,9388,1941-05-24,AB- -Shane Singleton,Male,9389,1972-07-02,B- -Laura West,Female,9390,1941-01-25,A- -Sabrina Berry,Female,9391,1942-02-20,B+ -Kaitlyn Jimenez,Female,9392,1968-05-17,A- -Alan Warren,Male,9393,1998-07-05,B+ -Robert Faulkner,Female,9394,1937-04-12,O- -Bruce Perez,Female,9395,1959-11-15,B+ -Robert Edwards,Male,9396,1984-05-24,A- -Amber Adams,Female,9397,1938-01-23,B- -Sean Cobb,Male,9398,1949-09-28,O+ -Jesse Huerta,Male,9399,1995-10-24,AB- -Janice Blair,Female,9400,1954-01-22,O+ -Theresa Gross,Male,9401,1935-06-10,AB- -Frank Dickson,Female,9402,1959-12-17,A- -Dustin Mullins,Female,9403,1977-10-19,AB- -Victor Paul,Male,9404,1963-04-19,B+ -Danny Nichols,Male,9405,1986-08-24,O- -Anna Golden,Male,9406,1938-03-27,B- -Deanna Gonzales,Male,9407,1932-08-27,AB- -Steven Ward,Female,9408,1954-01-07,B- -Austin Johnson,Male,9409,1937-09-25,AB- -Jennifer Gibson,Male,9411,1933-04-26,B- -Nicholas Miller,Male,9412,1930-08-18,O+ -Joseph Morales,Female,9414,1986-08-03,O- -Erin Norris,Male,9415,1973-03-10,AB- -Jared Mitchell,Female,9416,1969-04-11,AB+ -James Jones,Female,9417,1938-09-21,B- -Jacob Welch,Female,9418,1971-02-06,B- -Elizabeth Morgan,Female,9419,1976-03-25,B+ -Carrie Lowe,Male,9420,1930-02-18,AB+ -Mary Stuart,Male,9422,1984-08-15,O- -Christopher Ho,Female,9423,1971-07-18,B- -Matthew Jacobs,Female,9424,1983-03-23,O- -Jose Alvarez,Male,9425,1999-03-04,B- -Melinda Miller,Male,9426,1975-12-01,A- -Steven Hebert,Male,9427,1932-08-27,A+ -Samantha Woodard,Female,9429,2000-01-15,A- -Anna Nelson,Male,9430,1969-11-05,B- -Heidi White,Female,9431,1945-12-08,A+ -Charles Fleming,Male,9432,1969-02-17,AB- -Margaret Potter,Male,9433,1938-05-11,O- -Mason Collins,Female,9435,1961-10-14,B- -Kristine Crane,Male,9436,1995-02-10,B+ -Ryan Salazar,Male,9437,1936-04-21,O+ -Mrs. Ashley Pearson DDS,Female,9438,1936-04-02,B+ -Noah Jordan,Male,9439,1972-02-15,O+ -Mark Gardner,Male,9440,1956-10-30,AB+ -Amanda Daniels,Male,9441,1972-10-07,O+ -David Lewis,Male,9442,1986-10-24,A+ -Andrea Hardin,Male,9443,1930-05-03,O+ -Tammy Ware,Female,9444,1993-06-22,O+ -Jose Mendoza,Male,9445,1955-12-08,O+ -Douglas Moore,Male,9446,1940-03-16,B- -Cody Chang,Female,9447,1967-08-07,AB+ -Richard Soto,Female,9448,1997-12-29,O- -Sean Clayton,Female,9449,1999-11-18,AB+ -Mark Robinson,Male,9450,1943-07-30,B+ -Joanne Alvarez,Male,9451,1931-06-09,A+ -Robert Mack,Male,9452,1954-11-10,B- -Don Zamora,Male,9453,1952-12-30,AB- -Robert Bean,Female,9454,1975-04-07,B- -Mr. Jeremy Clark,Male,9455,1996-10-06,A- -Jennifer Gomez,Female,9456,1976-01-21,O+ -Sean Ross,Female,9457,1958-06-17,B+ -Andrew Fisher,Female,9458,1940-04-07,O+ -Samuel Higgins,Female,9459,1961-01-31,A+ -Gina Clark,Male,9460,1968-05-10,AB- -Kelly Burch,Female,9461,1997-04-09,B+ -Tina Townsend,Female,9462,1987-01-19,A- -Brenda Miller,Female,9463,1961-04-25,B- -Jason Jackson,Female,9464,1944-08-11,AB- -Wendy Turner,Male,9465,1942-06-18,O- -Bryan Randolph,Female,9466,1937-09-24,AB+ -Stephanie Golden,Female,9467,1990-07-17,B- -Kathryn Lin,Female,9468,1965-05-13,AB- -David Green,Male,9469,1971-07-12,O- -Cynthia Carr,Female,9470,1953-10-04,O- -Melody Cook,Male,9471,1970-09-16,A- -George Tate,Female,9472,1952-12-22,A- -Catherine Fowler,Male,9473,1964-08-28,AB+ -Larry Massey,Female,9474,1980-04-14,O- -Jamie Rodriguez,Male,9475,1994-01-05,B+ -Kayla Moore,Male,9476,1956-06-16,A+ -Mrs. Sophia Wilson,Male,9477,1936-04-30,O- -Dr. Robert Rogers,Male,9479,1949-10-13,AB- -Diane Richardson,Male,9481,1961-08-31,A- -Melissa Day,Male,9483,1958-02-13,A+ -Eric Hill,Male,9484,2001-06-14,B+ -Amanda Mendoza,Male,9485,1967-02-16,A- -Richard Simpson,Male,9486,1976-07-06,B+ -Jason Perkins,Female,9487,1997-03-29,A- -Scott Romero,Male,9488,1973-09-17,A- -Ryan Mckay,Male,9489,1945-11-03,O- -Dennis Horton,Female,9490,2001-03-02,O+ -Tara Miller,Female,9491,1987-06-12,O- -Dr. Diane Barron,Male,9492,1996-02-07,A- -Linda Cabrera,Female,9493,1963-01-15,A+ -Alicia Rios,Male,9494,1995-06-25,O- -Jared Green,Male,9495,1953-12-06,A- -Amy Hall,Male,9496,1967-05-20,A- -Glen Rowe,Male,9497,1977-02-25,O- -Joseph Hernandez,Male,9498,1940-06-12,O- -Tammy Adams,Female,9499,1977-03-06,A+ -Sandra Chavez,Male,9500,1942-11-23,B+ -John Jones,Female,9501,1942-05-05,O- -Mr. Matthew Moore,Female,9502,1948-01-02,AB+ -Charles Bowen,Male,9503,1943-01-26,AB- -Jorge Hale,Male,9504,1964-01-29,AB+ -Amy Pierce,Male,9505,1987-02-03,A+ -Corey Reyes,Male,9506,1958-08-26,O+ -Steven Walters,Male,9508,1973-06-08,AB+ -Matthew Williamson,Male,9509,1989-01-27,B+ -Justin Allen,Female,9510,1939-02-03,A- -Darrell Johnson,Male,9511,1959-06-08,AB- -Alexandra Jones,Male,9512,1942-11-12,B- -Brandon Gaines,Female,9513,1986-08-30,AB- -Rhonda Allen,Female,9514,2002-10-02,AB+ -Janice Wilson,Male,9515,1984-11-30,B- -Thomas Holmes,Male,9516,1979-02-21,A+ -Lauren Wilson,Female,9517,1979-11-24,B+ -Heather Glenn,Male,9518,1946-08-03,AB- -Brian Hughes,Male,9519,1994-05-20,O+ -Kara Mcbride,Male,9520,1931-12-28,B- -Zoe Moore,Male,9521,2000-09-10,B- -Emily Fields,Female,9522,1948-05-03,AB- -Steven Castillo,Female,9523,1962-08-11,AB+ -Andrew Bradford,Male,9524,1955-05-07,B- -Charles Smith,Male,9525,1965-06-29,A+ -Tyler Ramirez,Female,9526,1975-08-19,AB- -Eric Mills,Female,9527,1932-12-17,A+ -Jennifer Diaz,Female,9528,1985-06-30,AB- -Jennifer Merritt,Female,9529,1982-09-30,A+ -Ashley Reyes,Female,9530,1959-07-04,AB+ -Bradley Johnson,Female,9531,1968-11-13,AB- -Kenneth Guerrero,Female,9532,1982-12-28,B+ -Cheryl Watts,Male,9533,1955-08-02,A- -Paul Tapia,Male,9534,1973-09-10,O+ -Justin Wells,Female,9535,1993-12-25,AB+ -Charles Hernandez,Male,9536,1962-01-02,A+ -Mr. Thomas Sanchez,Female,9537,1977-06-14,B+ -Jeffrey Cox,Male,9538,1943-01-13,AB- -Dr. Victoria Brown,Male,9540,2001-12-27,AB+ -Brandon Thompson,Female,9542,1966-10-15,A+ -Joshua Pratt,Female,9543,1930-03-08,O- -William Everett,Male,9544,1999-01-11,O- -Ashley Nichols,Male,9545,1998-02-22,B- -Robert King,Female,9546,1931-07-19,O+ -Shawn Mitchell,Female,9547,2001-09-02,O- -Matthew Brooks,Male,9548,1999-07-19,A- -Emily Mullins,Male,9549,1966-09-02,A+ -Mitchell Hooper,Male,9550,1940-01-19,AB+ -David Terry,Male,9551,2000-02-04,AB- -Allison Stanley,Female,9552,1936-03-01,AB+ -Justin Price,Female,9553,1965-06-15,B- -Candace Ward,Female,9554,1932-03-15,B+ -Chelsea Gray,Female,9555,1987-07-16,AB+ -Taylor Schmitt,Male,9556,1956-03-28,O- -Bobby Powers,Male,9557,1978-03-29,AB+ -Cynthia Johnson,Female,9558,1993-04-04,O- -Peter Reed,Female,9559,1963-06-21,O- -Carol Howard MD,Male,9560,1993-10-07,O+ -Katherine Cherry,Male,9561,1946-06-22,B- -Amanda Leon,Male,9562,1965-09-10,A- -Richard Green,Female,9564,1984-07-29,A- -Michael Peters,Male,9565,1963-12-06,A+ -Louis Ross,Male,9566,1951-09-26,A- -Kyle Brown,Male,9568,1941-05-04,O- -Nicholas Hoffman,Male,9569,1993-12-06,AB- -Debra Turner,Male,9570,1956-02-20,B- -Micheal Newman,Female,9573,1944-08-10,A+ -Amy Quinn,Female,9574,1943-11-26,A- -Kristy Clark,Female,9575,1966-04-09,A- -Robin Roth,Female,9576,1945-05-13,AB- -Daniel Hartman,Female,9577,2002-04-25,AB+ -David Andrews DVM,Male,9578,1952-02-24,B- -Alexandra Lopez,Female,9579,1937-12-02,AB- -Jesse Guerrero,Female,9580,1945-04-09,A- -Tiffany Murray,Male,9581,1984-10-06,B- -Justin Phillips,Female,9582,1979-02-16,B- -John Zimmerman,Male,9583,1948-04-19,A- -Tanner Johnson,Male,9584,1934-02-16,AB+ -Mark Nolan,Female,9585,1974-09-22,AB+ -Marie Wilson,Female,9586,1935-08-26,A- -Dawn Benson,Female,9587,1984-10-30,B- -Michael Watkins,Female,9588,1935-06-24,AB- -Heidi Hawkins,Female,9589,1972-08-14,O+ -Matthew Pacheco,Female,9591,1933-07-18,O- -Tiffany Hernandez,Male,9592,1971-05-02,AB+ -Denise Clark,Female,9593,1941-02-17,A- -Daniel Mason,Female,9595,1968-07-30,B+ -James Richard,Female,9596,1996-10-19,O+ -Chelsea Huff,Male,9597,2002-02-01,AB+ -Jeffery Norman,Male,9598,1979-04-01,B+ -Nicholas Bowman,Female,9599,1978-06-24,B- -Joshua Horton,Female,9600,1991-03-02,A- -Madison Gentry,Female,9601,1981-07-17,O+ -Joel Lawson,Female,9602,1977-11-12,A- -Gabriel Pierce MD,Female,9603,1988-09-30,AB- -Nancy Scott,Male,9604,2001-05-29,AB- -Arthur Lara,Male,9605,1955-07-07,A+ -Carol Duncan,Male,9608,1953-03-29,O- -Charles Harvey,Male,9609,1960-10-11,O- -Gabriella Ware,Female,9610,1958-07-10,AB+ -Patrick Camacho,Male,9612,1972-08-22,O- -Allen Nelson,Female,9613,1971-11-24,A- -Russell Davis,Female,9614,1970-02-10,A- -Jack Hancock,Female,9615,1966-07-21,A+ -Hunter Sandoval,Male,9616,1985-03-24,B+ -Larry Luna,Male,9617,1935-09-28,AB- -Bruce Morales,Male,9618,1962-04-24,B+ -Mark Clark,Female,9619,1980-11-26,B+ -Joseph Garner,Male,9620,1991-04-03,O+ -Mary Pacheco,Female,9621,1975-05-04,O+ -Douglas Perez,Male,9622,1949-08-18,AB- -Dennis Brown,Female,9624,1966-05-20,B- -Rodney Perez,Female,9625,1991-04-29,AB- -Eric Robertson Jr.,Female,9626,1959-04-13,O+ -Jennifer James,Male,9627,1963-05-19,B+ -Erik Lucas,Female,9628,1979-06-04,AB+ -Benjamin Miller,Male,9629,1959-05-26,A+ -Patrick Cook,Male,9630,1999-02-19,B+ -Jill Eaton,Male,9633,1979-11-07,AB- -Erik Miranda,Male,9634,1944-02-04,B- -Michelle Erickson,Male,9635,1978-07-28,B+ -Amy May,Male,9636,1983-04-09,AB+ -Jennifer Delacruz,Male,9637,1983-10-13,AB- -Edgar Mitchell,Female,9638,1946-12-22,AB+ -Cody Moran,Female,9639,1931-07-01,B+ -Amy Weaver,Female,9641,1944-04-28,AB- -Amanda Pratt,Male,9642,1951-10-23,AB+ -Ms. Jessica Carney PhD,Female,9643,1980-07-24,A- -Jasmine Forbes,Female,9644,1935-08-03,O- -Anthony Ward,Female,9645,1987-04-10,AB+ -David Moore,Male,9647,1934-10-19,A- -James Irwin,Female,9648,2001-09-16,B+ -Catherine Kline,Female,9649,1935-01-24,O- -Michael Knight,Female,9650,1937-03-27,O+ -Jeffrey Maxwell,Male,9651,1934-05-20,O- -Martin Miller,Female,9652,1968-03-13,AB+ -Nathan Gray,Female,9653,1986-11-29,A+ -Jennifer Morales,Male,9654,1962-04-20,A+ -Mark Patterson,Male,9655,1985-04-05,O+ -Maria Johnson,Male,9656,1976-07-20,AB+ -Shane Colon,Female,9657,1933-02-06,O- -Patricia Murray,Male,9658,1945-01-13,A+ -Alison Cline,Female,9659,1945-11-13,AB- -Vickie Rubio,Female,9660,1958-11-01,B- -George Smith,Female,9661,1959-12-06,AB+ -Lisa Henderson,Female,9662,1950-11-25,A- -Denise Zavala,Female,9663,1978-12-06,A- -Joshua Moran,Female,9664,1996-05-06,AB- -Jack Anderson,Female,9665,1943-09-19,AB- -Michael Shelton,Male,9666,2001-07-20,AB+ -Yesenia Marks,Female,9667,1935-10-15,B- -Deborah Valentine,Male,9668,1932-11-10,A+ -Jennifer Hartman,Female,9669,1968-02-14,B- -Lisa Frey,Male,9670,1936-08-28,O+ -Carl Torres,Male,9671,1996-09-14,O- -Michelle Zuniga,Female,9672,1968-02-17,O- -Brandon Lopez,Female,9673,1934-05-02,AB- -Andrew Turner,Female,9674,1969-05-10,A+ -Erika Kidd,Female,9675,1933-08-01,B- -Emily Owens,Male,9676,1988-04-27,AB- -Melinda Martinez,Male,9677,1954-01-28,AB+ -Tammy Walker,Female,9678,1934-06-09,AB- -Belinda Stevens,Female,9679,1995-05-27,AB+ -Cheryl Simpson,Male,9680,1943-01-19,AB+ -Tina Haynes,Female,9681,1989-07-16,O+ -Kendra Romero,Male,9682,1944-03-20,O+ -Kaitlyn Griffin,Male,9683,1948-02-18,AB+ -Teresa Davis,Female,9684,1946-09-07,B+ -Karen Henry,Female,9685,1993-03-19,A+ -Traci Melendez,Male,9686,1975-02-18,O+ -Dan Potter,Male,9687,1993-01-31,O+ -Christopher Church,Male,9688,1990-12-11,O- -Megan Phillips,Female,9689,1986-07-21,AB- -Dawn Hernandez,Female,9690,1930-08-26,O- -Miguel Weaver,Male,9691,1994-08-23,A+ -Robert Newton,Male,9692,1996-11-06,O+ -Matthew Dougherty,Female,9693,1989-02-22,A- -Wanda Rivera,Male,9694,1985-11-17,B+ -Lindsey Cross,Female,9695,1960-06-02,O+ -Michelle Peterson,Male,9696,1946-08-18,B- -Jessica Ibarra,Male,9697,1936-12-17,A+ -Lindsey James,Male,9698,1971-11-04,A- -Eric Taylor,Female,9700,1957-11-30,AB- -Hannah Marshall,Male,9701,1934-03-18,AB- -Lauren Delacruz,Male,9703,1976-12-03,A- -Erin Sullivan,Male,9704,1961-08-26,AB- -Kristina Lane,Female,9705,1966-10-13,B+ -Mrs. Christina Hodges MD,Female,9706,1950-04-02,A- -Jillian Price,Female,9707,1996-04-11,A+ -Jessica Gentry,Male,9708,1989-12-08,A- -Lindsay Lin,Female,9709,1986-06-15,A- -Alyssa Hernandez,Male,9710,1976-05-03,B- -Michael Davis,Male,9711,1989-12-11,B- -Rhonda Adams,Female,9712,1998-01-09,O- -Linda Monroe,Female,9713,1996-07-23,A+ -Amanda Stewart,Female,9714,1944-01-19,A+ -Eric Garrison,Female,9715,1953-10-24,B- -Scott Randall,Female,9716,1977-12-13,AB+ -Matthew Hart,Female,9717,1958-02-14,AB+ -Charles Hall,Female,9718,1938-08-12,O- -Sylvia Hill,Male,9719,1965-11-13,B+ -Kristi Jones,Male,9720,1998-04-11,AB+ -Angela Thomas,Male,9721,1985-01-16,AB+ -Brandy Maynard,Male,9722,2001-04-10,AB+ -Erica Rhodes,Female,9723,1941-02-19,B+ -Justin Martinez,Female,9724,1941-06-27,O+ -Jeffrey Scott,Male,9725,2001-11-21,O- -Katherine Jimenez,Male,9726,1955-04-24,B- -Jesse Gonzalez,Male,9727,1949-12-08,AB+ -Jonathan Moore,Male,9728,1936-11-14,AB- -Stephanie Hart,Female,9729,1988-08-04,A- -Stephanie Wallace,Female,9730,1972-06-11,O+ -Daniel Travis,Female,9731,1947-11-21,B+ -Michelle James,Male,9732,1987-10-20,B+ -Roberto Archer,Female,9733,1976-09-21,B+ -Michael Lara,Male,9734,1970-03-02,AB+ -Stephanie Garza MD,Male,9736,1940-10-07,A- -Jenny Watson,Male,9737,1969-12-17,A- -Kirk Martin,Male,9738,1965-09-15,O+ -Veronica Taylor,Male,9739,1945-03-23,O- -Laura Stokes,Female,9740,1940-12-30,B+ -Anthony Johnson,Female,9741,1994-12-14,AB- -Debra Hall,Male,9742,1931-12-21,AB- -Julie Williams,Female,9743,1930-03-16,AB- -Catherine Garrett,Male,9744,2000-10-29,B+ -Priscilla Farrell,Male,9745,2002-07-20,AB+ -Jerry Gibson,Female,9746,1986-03-29,O+ -William Smith DVM,Male,9747,1966-01-13,B+ -Charles Davidson,Female,9749,1998-02-28,AB- -Stephanie Landry,Male,9750,1935-11-20,A- -Jerry Reyes,Male,9751,2001-04-06,B+ -Megan Alexander,Male,9752,1968-06-03,A- -Jamie Dyer,Male,9753,2001-07-18,A+ -Jeffrey Gregory,Female,9754,1993-03-28,B+ -Kaylee Macdonald,Male,9755,1941-07-09,A+ -Ashley Rivera,Female,9756,1994-05-30,O+ -Regina Rios,Female,9757,1998-07-19,B+ -Audrey Park,Female,9758,1971-03-10,AB+ -Dalton Cooley,Female,9759,1954-11-09,AB+ -William Franco,Female,9760,1962-02-07,O- -Stacey Perez,Male,9761,1940-10-11,O- -William Valencia,Male,9762,1955-06-26,AB- -Jasmine Brooks,Male,9763,1977-10-20,B- -Mark Shaw,Female,9765,1985-06-21,A- -Dylan Hawkins,Female,9766,1942-08-21,O- -Tasha Valentine,Female,9767,1949-11-22,AB+ -Steven Ramirez,Female,9768,1992-04-28,A- -James Gutierrez,Male,9769,1957-09-12,B- -Jay Whitehead,Male,9770,1973-01-28,O- -Crystal Maxwell,Male,9771,1968-01-14,O+ -Anna Mccarthy,Female,9772,1999-10-28,A+ -Shawn Rodriguez,Male,9773,1942-09-27,O- -Susan Adams,Female,9774,1993-06-15,B+ -John Hall,Female,9775,1958-09-04,O- -Alexa Jensen,Male,9776,1955-04-27,B+ -Hayden Lopez,Female,9777,1995-04-10,O+ -David Hurley,Male,9778,1987-08-28,AB+ -Sara Burns,Female,9779,1976-05-04,AB- -Samantha Mcguire,Female,9780,1935-12-02,O+ -James Cole,Female,9781,1981-01-08,AB- -Jorge Chavez,Male,9782,2000-03-02,O- -Danielle Steele,Male,9783,1987-05-15,AB+ -Jerry Williams,Male,9784,1982-05-16,B- -Collin Ballard,Female,9785,1969-12-10,O- -Tracy Garza,Male,9786,1963-01-09,O+ -Theresa Fletcher,Female,9787,1946-07-17,B- -Nicole Foster,Male,9788,1964-09-12,A+ -Lorraine Scott,Male,9789,1987-08-29,B- -Ian Miranda,Male,9790,1934-04-10,O+ -Lauren Beard,Female,9792,1962-09-24,A- -Brett Stark,Male,9793,1978-01-17,B- -Jessica Warner MD,Male,9794,1971-04-14,O+ -Jeremy Nelson,Female,9796,1944-11-02,A- -Laura Perez,Female,9797,1937-06-15,O- -Mrs. Kimberly Weber,Female,9798,1958-11-20,A- -Eric Parks,Female,9799,1976-02-23,AB+ -Jonathan Anderson,Male,9800,2001-03-01,A+ -Stephanie Thompson,Male,9801,1934-01-08,A- -Stacey Hernandez,Female,9802,1996-07-22,AB+ -Lisa Wagner,Male,9803,1932-03-19,AB+ -George Barnes,Male,9805,1997-10-03,AB+ -Natalie Strong,Female,9807,1948-05-25,A- -Angel Scott,Male,9808,1974-10-20,O+ -David Cole,Female,9809,1958-12-31,B+ -Thomas Underwood,Female,9810,1943-11-22,O+ -Justin Williams,Female,9811,1951-12-09,A+ -Brian Daniel,Female,9812,1979-05-13,O+ -Janet Daniel,Male,9813,1968-01-14,AB- -Darrell Valenzuela,Female,9814,1952-08-02,O+ -Daniel Lewis,Male,9815,1977-12-13,O+ -Chelsea Moore,Male,9816,1971-06-22,O+ -Samantha Stephens,Male,9817,1978-07-25,O- -Jerry Brown,Male,9818,1932-02-07,A+ -Ronald Miller,Female,9819,1940-08-31,AB- -Lori Finley,Male,9820,1999-02-26,O+ -Nina Delacruz,Male,9821,1984-04-25,B+ -Bethany Murphy,Female,9822,1957-12-05,A+ -Micheal Gardner,Female,9823,1950-01-25,B- -Carrie Brown,Female,9825,1971-12-24,O- -Dillon Barton,Male,9826,1970-01-12,A- -Nancy Walker,Male,9827,1961-01-12,B+ -Robert Olsen,Female,9828,1979-10-05,O+ -Adam Miller,Male,9829,2001-05-01,B+ -John Chen,Female,9830,1932-06-04,AB- -Benjamin Garcia,Male,9831,1951-03-06,O- -Paul Morgan,Male,9832,1940-09-11,AB- -Antonio Smith,Male,9833,1942-04-20,A- -Marc White,Female,9834,1956-08-22,A- -Amber Irwin,Female,9835,1935-09-05,B+ -Kayla Hickman,Female,9836,1975-09-18,O- -Tammy Rodriguez,Female,9837,1947-03-02,B- -Pamela Mcclure,Female,9838,1989-06-01,B+ -Christine Atkinson,Female,9839,1977-01-28,A+ -Jason Shepard,Male,9840,1948-09-24,O- -Randy Terrell,Female,9841,1959-12-30,AB+ -Stephanie Summers,Female,9842,1935-07-26,A- -Tracy Harrison,Male,9843,1956-07-22,B- -Cynthia Moore,Male,9845,1964-11-15,B+ -Kimberly Rivas,Female,9846,1959-06-20,A- -Kayla Nelson,Male,9847,2002-06-22,AB+ -Christine Raymond,Female,9848,1949-07-09,B- -Jennifer Davis,Female,9849,1982-04-07,A- -Nathaniel Pearson,Male,9850,1954-01-23,AB+ -Jason Allen,Female,9851,1935-11-18,AB+ -Edwin Moore,Male,9852,1931-09-08,A- -James Vang,Female,9854,1932-08-05,B+ -Kimberly Ross,Male,9856,1945-07-18,A- -Shelly Evans,Female,9857,1987-08-05,AB- -Ashley Gray,Female,9858,1951-07-16,O- -Tammy Franco,Male,9859,1935-07-07,O- -Edward Lopez,Female,9860,1984-12-24,B- -Sydney Olson,Male,9861,1976-03-14,A+ -Christopher Tucker,Male,9862,1986-10-08,A- -Laura Nunez,Female,9863,1981-07-04,B+ -Melissa Rojas,Female,9864,1943-08-28,AB- -Casey Shaw,Male,9865,1953-11-29,O- -James Fowler,Female,9866,1955-12-15,O- -Dr. Michael Mann,Female,9867,1956-11-25,B+ -Christy Moran,Female,9868,1988-04-30,AB- -Brandon Lee,Female,9869,1938-01-05,O+ -Raymond Roth,Male,9870,2000-12-27,AB- -Olivia Wright,Female,9872,1949-12-09,B+ -Chad Nguyen,Male,9873,1972-10-22,O- -Anthony Crawford,Male,9874,1973-05-22,A+ -Mr. Terry Herrera,Male,9875,1986-11-03,O+ -Teresa Kaiser,Female,9876,1955-12-26,B+ -Audrey Horne,Male,9879,1988-03-09,B+ -Brenda Maynard,Male,9880,1949-02-16,AB+ -Ethan Craig,Female,9881,1948-10-15,AB- -Jamie Williams,Female,9882,1963-04-17,AB+ -Jamie Daniel,Male,9883,1942-02-10,O+ -Matthew Norris,Female,9884,1958-08-12,O+ -James Ochoa,Female,9886,1993-09-01,O+ -Mark Reeves,Male,9887,1952-05-04,B- -Samantha James,Male,9888,1935-09-05,AB- -Jeremy Rodriguez,Male,9890,1991-10-02,B+ -Kevin Carpenter,Male,9892,1976-10-11,A- -Tyler Williams,Female,9893,1957-09-07,A+ -James Schmidt,Female,9894,1997-01-26,A+ -Joseph Hall,Female,9896,1948-09-08,B+ -Jonathan Collins,Male,9897,1959-03-02,AB+ -Albert Galvan,Male,9898,1964-02-06,B+ -Samuel Garza,Female,9899,1996-05-25,AB+ -Melissa Greer,Female,9901,1986-07-14,A- -Tina Wiley,Female,9902,1951-10-26,AB+ -Arthur Murphy,Male,9903,1997-02-28,AB- -Anthony Warner,Female,9904,1964-04-08,O- -Paul Henry,Female,9905,1969-02-15,AB+ -Jane Rich,Female,9906,1951-04-17,O+ -Douglas Acosta,Female,9907,1953-06-07,AB+ -Michelle Young,Male,9908,1953-11-15,O+ -Jonathan Perry,Male,9909,1943-05-19,B- -Heather Stewart,Female,9910,1985-08-19,O- -Laura Mullen,Female,9912,1942-08-25,O- -Paula Chang,Male,9913,1989-01-26,A- -Jeffrey Soto,Male,9914,1968-03-18,AB- -Samuel Lawson,Male,9915,1958-04-29,B+ -Erin Davis,Male,9916,1948-10-28,AB- -Justin Morales,Male,9917,1957-08-27,A+ -Jenna Harrison,Male,9918,1951-07-06,B- -Jamie Brown,Female,9919,1944-10-15,A- -Benjamin Stone,Male,9920,1938-04-11,AB- -John Randolph,Male,9921,1961-12-19,O+ -John Ramirez,Male,9922,1959-11-17,B- -Todd Evans,Female,9923,1945-09-17,O- -Eric Allen,Male,9925,1971-06-01,B+ -Matthew Willis,Male,9926,1991-03-30,B+ -Megan Walker,Male,9927,1934-11-06,O+ -Amy Tyler,Male,9928,1963-09-10,A- -Mariah Cox,Male,9929,1957-04-18,A- -Earl Christensen,Female,9930,1963-12-18,B- -Jessica Johnson,Male,9931,1954-08-12,O- -Logan Espinoza,Female,9932,1938-10-21,AB- -Angela Wade,Male,9933,1962-10-20,O+ -Cynthia Pena,Female,9934,1948-04-30,O+ -Karen Rodriguez,Male,9935,1983-01-03,O- -Alicia Love MD,Female,9936,1985-02-02,O+ -Yvonne Lopez,Female,9937,2001-12-21,B+ -Christine Murphy,Female,9938,1976-12-01,AB- -Becky Roberts,Female,9939,1959-03-11,AB- -Matthew Jackson,Male,9940,1933-10-24,AB- -Amanda Hall,Female,9941,1948-08-03,O- -Marisa Jennings,Male,9942,1969-05-21,AB+ -Jacqueline Peterson,Male,9943,1976-09-17,AB+ -Victoria Lee,Male,9944,1930-04-16,A- -Benjamin Mcintyre,Female,9945,1961-06-06,A- -Jennifer Russell,Female,9946,1987-11-15,B+ -Jamie Thompson,Male,9947,1935-05-01,O+ -Alec Olson,Female,9948,1945-03-07,AB- -Dustin Garcia,Male,9949,1977-11-09,O+ -Patricia Foley,Male,9950,1966-05-07,O- -Katrina Beck,Male,9951,1949-02-15,O+ -Omar Bailey,Female,9952,1934-11-18,A+ -Thomas Lloyd,Male,9953,1987-04-17,AB+ -David Woods,Male,9954,1983-10-11,O+ -Lindsay Gill,Male,9955,1947-01-05,O+ -Anthony Mathews,Female,9956,2002-10-03,B- -Alicia Peters,Female,9957,1969-08-29,B+ -Samuel Wilkins,Female,9958,1972-09-22,O+ -Oscar Burton,Female,9959,1943-05-02,A+ -Leslie Wood,Female,9960,1979-02-18,AB+ -Joseph Wilson,Female,9961,1985-10-29,B- -Jenny Ho,Male,9962,1957-01-06,B+ -Adrienne Goodman,Male,9963,2000-05-11,O- -Darren Jones,Female,9964,1940-11-25,A- -Dawn Shah MD,Male,9965,1955-12-29,O- -Jane Cole,Male,9966,1945-07-23,AB+ -Alejandro Smith,Male,9967,1945-10-31,A- -Emma Mccann,Female,9968,1977-06-10,O- -Darius Smith,Female,9969,1987-04-26,B+ -Steven Day,Female,9970,1955-01-07,A+ -Gregory Torres,Female,9971,1976-07-02,O+ -Sharon Sanchez,Male,9972,1965-08-17,AB+ -Thomas Weaver,Female,9973,1992-04-25,A- -Nathaniel Hudson,Female,9974,2001-03-02,B- -Brett Frazier,Female,9975,1934-03-05,O+ -Colton Weaver,Female,9976,1985-03-03,O- -James Calhoun,Male,9977,1975-07-18,O- -Melissa Campbell,Female,9978,2001-07-07,B- -Jacob Wade,Female,9979,1930-03-20,A+ -Danielle Salinas,Female,9980,1938-07-21,B+ -Catherine Carrillo,Male,9981,1999-09-29,B+ -Danielle White,Female,9982,1949-05-05,B- -Mark Gross,Male,9983,1965-10-12,AB+ -Erica Crawford,Male,9984,1953-01-17,B- -Amanda Baker,Male,9985,1966-08-02,O- -Richard Mack,Male,9986,1933-04-24,A+ -Bobby Pierce,Female,9987,1944-02-10,A+ -Julie Johnson,Female,9988,1943-05-31,AB- -Amy Lucas,Female,9989,1980-10-27,B- -Tracy Johnson,Male,9990,1959-10-07,AB+ -John Holder,Female,9991,1950-11-02,O- -Jorge Obrien,Male,9994,1960-04-30,O+ -James Hood,Male,9995,1973-03-27,B+ -Stephanie Evans,Female,9996,1999-03-19,B+ -Christopher Martinez,Male,9997,1936-12-19,B+ -Amanda Duke,Male,9998,1945-02-13,A+ -Eric King,Male,9999,1936-06-28,B+ diff --git a/langchain-rag-app/source_code_step_5/data/payers.csv b/langchain-rag-app/source_code_step_5/data/payers.csv deleted file mode 100644 index 104cc0ac0b..0000000000 --- a/langchain-rag-app/source_code_step_5/data/payers.csv +++ /dev/null @@ -1,6 +0,0 @@ -payer_name,payer_id -Medicaid,0 -UnitedHealthcare,1 -Aetna,2 -Cigna,3 -Blue Cross,4 diff --git a/langchain-rag-app/source_code_step_5/data/physicians.csv b/langchain-rag-app/source_code_step_5/data/physicians.csv deleted file mode 100644 index 511760ceb7..0000000000 --- a/langchain-rag-app/source_code_step_5/data/physicians.csv +++ /dev/null @@ -1,501 +0,0 @@ -physician_name,physician_id,physician_dob,physician_grad_year,medical_school,salary -Joseph Johnson,0,1970-02-22,2000-02-22,Johns Hopkins University School of Medicine,309534.15507605654 -Jason Williams,1,1982-12-22,2012-12-22,Mayo Clinic Alix School of Medicine,281114.5035585275 -Jesse Gordon,2,1959-06-03,1989-06-03,David Geffen School of Medicine at UCLA,305845.5846360554 -Heather Smith,3,1965-06-15,1995-06-15,NYU Grossman Medical School,295239.7666886809 -Kayla Hunter DDS,4,1978-10-19,2008-10-19,David Geffen School of Medicine at UCLA,298751.35520122456 -Christopher Jordan,5,1989-11-04,2019-11-04,NYU Grossman Medical School,316681.6994348657 -Elaine Medina,6,1957-12-24,1987-12-24,Baylor College of Medicine,283743.02626834356 -Donna Mcintyre,7,1987-03-12,2017-03-12,Perelman School of Medicine (University of Pennsylvania),319166.7313781032 -Richard Tucker,8,1983-04-02,2013-04-02,Perelman School of Medicine (University of Pennsylvania),347019.2359991686 -Kimberly Oliver,9,1989-06-02,2019-06-02,Stanford University School of Medicine,310293.2724885527 -Christopher Williamson,10,1974-01-22,2004-01-22,"University of California, San Francisco School of Medicine",276537.12944182596 -Cory Campbell,11,1988-11-08,2018-11-08,Stanford University School of Medicine,281549.4596598061 -Cathy Church,12,1951-12-30,1981-12-30,NYU Grossman Medical School,292552.1129764465 -Kristopher Wiley Jr.,13,1951-11-30,1981-11-30,Yale School of Medicine,282153.29108791304 -Denise Chavez,14,1969-09-04,1999-09-04,Columbia University Vagelos College of Physicians and Surgeons,270264.5907116985 -Jason Merritt,15,1989-09-25,2019-09-25,Johns Hopkins University School of Medicine,304632.2183088508 -Jacqueline Mcneil DVM,16,1988-02-14,2018-02-14,Columbia University Vagelos College of Physicians and Surgeons,293364.08004822605 -Veronica Moore,17,1970-04-06,2000-04-06,University of Chicago Pritzker School of Medicine,305691.62650674174 -Steven Watson,18,1961-06-03,1991-06-03,Columbia University Vagelos College of Physicians and Surgeons,335591.62236645864 -Ryan Brown,19,1961-12-09,1991-12-09,Harvard Medical School,292909.4149822692 -Ashley Pena,20,1956-11-07,1986-11-07,Columbia University Vagelos College of Physicians and Surgeons,264437.3998595907 -Erin Grimes,21,1965-01-08,1995-01-08,Stanford University School of Medicine,288033.2252323935 -Kimberly Johnson,22,1972-10-27,2002-10-27,Mayo Clinic Alix School of Medicine,323112.75651349925 -Tyler Lopez,23,1962-04-19,1992-04-19,University of Texas Southwestern Medical School,320303.1081215087 -Karen Clark,24,1980-06-22,2010-06-22,Mayo Clinic Alix School of Medicine,315559.189428407 -Abigail Fuller,25,1970-12-13,2000-12-13,Perelman School of Medicine (University of Pennsylvania),281258.7983051369 -Ryan Vasquez,26,1953-03-13,1983-03-13,University of Texas Southwestern Medical School,322557.07854098093 -Lisa Wilkinson,27,1952-11-28,1982-11-28,University of Michigan Medical School,329306.972341112 -Jason Little,28,1980-08-05,2010-08-05,Johns Hopkins University School of Medicine,279137.3511033007 -Heather Smith,29,1962-12-13,1992-12-13,Johns Hopkins University School of Medicine,298752.89707372425 -Denise Perez,30,1975-08-06,2005-08-06,Harvard Medical School,360612.05891046335 -Joseph Roman,31,1964-08-09,1994-08-09,Yale School of Medicine,277803.7717060984 -Elizabeth Beck,32,1974-06-08,2004-06-08,Stanford University School of Medicine,248847.39992268826 -Deborah Wright,33,1961-11-09,1991-11-09,Perelman School of Medicine (University of Pennsylvania),341487.13303394394 -Renee Hicks,34,1968-08-15,1998-08-15,Baylor College of Medicine,334098.1431511368 -Keith Reed,35,1963-04-09,1993-04-09,University of Chicago Pritzker School of Medicine,286290.98029267724 -Beverly Jordan,36,1968-06-06,1998-06-06,Yale School of Medicine,296610.2465439574 -Ronald Hernandez Jr.,37,1992-01-29,2022-01-29,Johns Hopkins University School of Medicine,263251.94849433145 -Colleen Ward,38,1956-12-14,1986-12-14,Mayo Clinic Alix School of Medicine,302668.5681782911 -Lauren Rojas,39,1969-04-27,1999-04-27,Columbia University Vagelos College of Physicians and Surgeons,334977.411461142 -Logan Diaz,40,1981-07-13,2011-07-13,Columbia University Vagelos College of Physicians and Surgeons,283721.85474725167 -Joshua Jenkins,41,1981-06-20,2011-06-20,University of Michigan Medical School,326313.0593635888 -Joyce Brown,42,1954-03-23,1984-03-23,Perelman School of Medicine (University of Pennsylvania),313911.715721713 -Christina Richards,43,1988-03-26,2018-03-26,Stanford University School of Medicine,317334.50672643416 -Ryan Curry,44,1967-04-15,1997-04-15,Stanford University School of Medicine,285470.72458240896 -Lauren Williams,45,1987-10-21,2017-10-21,"University of California, San Francisco School of Medicine",289361.27451199514 -Nathan Fischer,46,1976-03-25,2006-03-25,NYU Grossman Medical School,244596.82696585794 -Tanya Sharp,47,1973-10-18,2003-10-18,Washington University in St. Louis School of Medicine,282999.91762469686 -Amber Thomas,48,1970-07-09,2000-07-09,Johns Hopkins University School of Medicine,334904.5637409378 -Alan Watkins,49,1961-10-22,1991-10-22,Stanford University School of Medicine,272120.0341769318 -Derek Phillips,50,1953-08-17,1983-08-17,University of Michigan Medical School,276590.95038429287 -Patricia Quinn,51,1958-08-08,1988-08-08,Mayo Clinic Alix School of Medicine,319205.6947112137 -Brian Rivera,52,1954-12-16,1984-12-16,Perelman School of Medicine (University of Pennsylvania),312083.0487597928 -Raymond Berry,53,1968-01-15,1998-01-15,University of Chicago Pritzker School of Medicine,320695.89749388903 -Sabrina Rodriguez,54,1964-07-07,1994-07-07,"University of California, San Francisco School of Medicine",265103.3837972879 -Tonya Warner,55,1992-05-25,2022-05-25,University of Michigan Medical School,376921.7384790104 -Lori Burns,56,1982-01-27,2012-01-27,David Geffen School of Medicine at UCLA,263527.3987749825 -Michael Olson,57,1963-01-01,1993-01-01,Harvard Medical School,304627.41941202205 -Jesse Hall,58,1975-11-01,2005-11-01,University of Chicago Pritzker School of Medicine,295240.3351239424 -Jonathan Lucas,59,1960-02-27,1990-02-27,NYU Grossman Medical School,264400.7544790486 -Jenna Taylor,60,1985-11-29,2015-11-29,David Geffen School of Medicine at UCLA,288893.7173156025 -Denise Murray,61,1976-03-21,2006-03-21,Baylor College of Medicine,300699.2280265761 -Stephanie Vargas,62,1977-10-16,2007-10-16,NYU Grossman Medical School,280500.8036440959 -Gabrielle Pitts,63,1967-11-18,1997-11-18,Columbia University Vagelos College of Physicians and Surgeons,328116.7086460455 -Breanna Cruz,64,1977-11-23,2007-11-23,Harvard Medical School,295151.22763612587 -Dean Hart,65,1990-03-15,2020-03-15,Johns Hopkins University School of Medicine,259761.7598694514 -Kim Gray,66,1951-05-20,1981-05-20,Mayo Clinic Alix School of Medicine,257216.2340199211 -Jonathan Decker,67,1953-04-29,1983-04-29,Harvard Medical School,318184.9527183437 -Scott Barton,68,1954-03-12,1984-03-12,NYU Grossman Medical School,255396.8765189899 -Terry Leon,69,1952-04-03,1982-04-03,Washington University in St. Louis School of Medicine,309492.78219147254 -Gerald Smith,70,1963-10-09,1993-10-09,David Geffen School of Medicine at UCLA,313339.6555700088 -Jennifer Baldwin MD,71,1986-10-07,2016-10-07,Johns Hopkins University School of Medicine,270139.3390822795 -Amy Smith,72,1955-10-07,1985-10-07,University of Texas Southwestern Medical School,326722.14251324674 -Carmen Larsen,73,1959-12-07,1989-12-07,Washington University in St. Louis School of Medicine,248466.19128715104 -Robert Pratt,74,1985-07-08,2015-07-08,Columbia University Vagelos College of Physicians and Surgeons,308893.76801995677 -David Lopez,75,1955-01-27,1985-01-27,Washington University in St. Louis School of Medicine,298774.2619921197 -Miguel Davidson,76,1963-06-12,1993-06-12,"University of California, San Francisco School of Medicine",296430.0607280732 -Zachary Campbell,77,1980-02-16,2010-02-16,"University of California, San Francisco School of Medicine",264663.1007105828 -Dr. Parker Joseph,78,1987-11-26,2017-11-26,Baylor College of Medicine,271889.3398680022 -Catherine Haynes,79,1982-01-17,2012-01-17,NYU Grossman Medical School,348564.06075061794 -John Johnson,80,1993-02-25,2023-02-25,Perelman School of Medicine (University of Pennsylvania),336454.65026615263 -Casey Reyes,81,1966-12-13,1996-12-13,University of Chicago Pritzker School of Medicine,322262.53765571397 -Rebecca Wallace,82,1965-06-16,1995-06-16,University of Chicago Pritzker School of Medicine,328195.44310589065 -Kayla Lawson,83,1976-04-02,2006-04-02,University of Texas Southwestern Medical School,325380.40634013806 -Zachary Turner,84,1982-05-22,2012-05-22,University of Texas Southwestern Medical School,290299.31363141374 -Jesus Snyder,85,1972-01-19,2002-01-19,Johns Hopkins University School of Medicine,301428.10655443056 -Kyle Nichols,86,1959-02-13,1989-02-13,Columbia University Vagelos College of Physicians and Surgeons,255824.74865876973 -Nancy Nichols,87,1973-09-19,2003-09-19,Stanford University School of Medicine,297309.13119577424 -Andrew King,88,1969-06-24,1999-06-24,Baylor College of Medicine,335502.4274861756 -Bryan Jones,89,1986-06-24,2016-06-24,"University of California, San Francisco School of Medicine",280178.78255228593 -Jordan Sparks,90,1953-09-15,1983-09-15,Johns Hopkins University School of Medicine,330694.2361406168 -Madison Hardin,91,1980-01-19,2010-01-19,Stanford University School of Medicine,302747.5721608129 -Doris Rodriguez,92,1980-03-07,2010-03-07,University of Chicago Pritzker School of Medicine,258438.84402990804 -Jose Carroll,93,1951-10-30,1981-10-30,Perelman School of Medicine (University of Pennsylvania),266780.41459961067 -Johnny White MD,94,1975-07-26,2005-07-26,Washington University in St. Louis School of Medicine,327579.08609123266 -Karen Collier,95,1987-05-26,2017-05-26,"University of California, San Francisco School of Medicine",316575.7225577516 -Julie Zimmerman,96,1960-03-08,1990-03-08,Johns Hopkins University School of Medicine,303052.92218962876 -Timothy Martinez,97,1970-06-28,2000-06-28,Harvard Medical School,291779.0455725616 -Jennifer Walker,98,1951-06-24,1981-06-24,Stanford University School of Medicine,306317.03932885756 -Joel Copeland,99,1963-08-05,1993-08-05,Washington University in St. Louis School of Medicine,326408.88747759745 -Lisa Brewer,100,1963-03-29,1993-03-29,"University of California, San Francisco School of Medicine",344275.5984146185 -Edward Miller,101,1966-07-18,1996-07-18,University of Chicago Pritzker School of Medicine,345710.52598321816 -Leslie Williams,102,1990-08-16,2020-08-16,University of Michigan Medical School,311158.79702275497 -Miss Maria King,103,1970-01-08,2000-01-08,Columbia University Vagelos College of Physicians and Surgeons,294842.04928906437 -Kristin Phillips,104,1964-07-26,1994-07-26,Stanford University School of Medicine,304387.44023456564 -Maria Thompson,105,1986-03-09,2016-03-09,University of Chicago Pritzker School of Medicine,315663.61071765237 -Mark Vang,106,1957-08-11,1987-08-11,"University of California, San Francisco School of Medicine",315542.0083153527 -Elizabeth Henderson,107,1954-05-01,1984-05-01,Stanford University School of Medicine,339239.5991142031 -Troy Wilson,108,1984-09-16,2014-09-16,Baylor College of Medicine,363472.6716574996 -Candice Manning,109,1965-08-23,1995-08-23,Washington University in St. Louis School of Medicine,293842.3611115774 -Deborah Sampson,110,1963-02-26,1993-02-26,Yale School of Medicine,364676.5472647339 -Joshua Martinez,111,1977-10-02,2007-10-02,"University of California, San Francisco School of Medicine",335167.1774027518 -Ronald Taylor,112,1950-01-10,1980-01-10,Baylor College of Medicine,296975.31029444374 -Rebecca Mckinney,113,1964-01-12,1994-01-12,David Geffen School of Medicine at UCLA,344956.9451659524 -Crystal Wallace,114,1952-10-12,1982-10-12,Johns Hopkins University School of Medicine,350569.44904257497 -Katrina Torres,115,1956-01-03,1986-01-03,University of Michigan Medical School,286191.1366741846 -Michael Watson,116,1973-01-15,2003-01-15,University of Texas Southwestern Medical School,351966.45757456945 -Natalie Browning,117,1987-02-06,2017-02-06,Washington University in St. Louis School of Medicine,332252.4846310789 -Todd Mccormick,118,1989-09-25,2019-09-25,Stanford University School of Medicine,371056.77383937576 -Christopher Zhang,119,1961-05-21,1991-05-21,Columbia University Vagelos College of Physicians and Surgeons,287278.84254001506 -Maurice Lane,120,1969-01-31,1999-01-31,University of Chicago Pritzker School of Medicine,289397.1976879201 -Emily Lucas,121,1968-12-30,1998-12-30,University of Texas Southwestern Medical School,239200.1361076998 -Matthew Marks,122,1987-09-16,2017-09-16,Harvard Medical School,317135.81761703885 -Linda Morris,123,1978-04-28,2008-04-28,University of Chicago Pritzker School of Medicine,311257.53766856156 -Christy Huff,124,1969-11-23,1999-11-23,Stanford University School of Medicine,283110.18985393 -Anthony Lynch,125,1973-10-29,2003-10-29,University of Michigan Medical School,297544.4780553583 -Jessica Rodriguez,126,1951-01-20,1981-01-20,NYU Grossman Medical School,260663.36969474654 -Rick Herrera,127,1951-02-09,1981-02-09,University of Chicago Pritzker School of Medicine,335953.34858495055 -Kathleen Evans,128,1972-05-20,2002-05-20,NYU Grossman Medical School,285309.0157641507 -Dustin Perez,129,1991-07-03,2021-07-03,Johns Hopkins University School of Medicine,392821.47046862857 -Charles Kim,130,1984-12-11,2014-12-11,University of Michigan Medical School,294731.960978669 -Justin Anderson,131,1976-12-30,2006-12-30,"University of California, San Francisco School of Medicine",277211.4347685507 -Louis Sullivan,132,1966-05-26,1996-05-26,Baylor College of Medicine,287630.6064379541 -Samuel Hill,133,1991-05-12,2021-05-12,Harvard Medical School,257641.17070367245 -Rhonda Diaz,134,1959-12-16,1989-12-16,Mayo Clinic Alix School of Medicine,314468.1567210883 -Melissa Garrett,135,1979-11-21,2009-11-21,Stanford University School of Medicine,287403.0090066263 -Alexis Hutchinson,136,1963-03-03,1993-03-03,Perelman School of Medicine (University of Pennsylvania),333937.5837119321 -Samantha Barrett,137,1986-11-04,2016-11-04,Mayo Clinic Alix School of Medicine,291757.57514476747 -Melissa Paul,138,1992-04-14,2022-04-14,University of Chicago Pritzker School of Medicine,341533.2633505694 -Angelica Houston,139,1966-06-03,1996-06-03,University of Texas Southwestern Medical School,322723.67247951124 -Joseph Jones,140,1955-08-11,1985-08-11,Stanford University School of Medicine,300857.9033015503 -Miguel Stout,141,1983-10-13,2013-10-13,Baylor College of Medicine,347406.97762052465 -Andrew James,142,1962-06-11,1992-06-11,David Geffen School of Medicine at UCLA,328568.8038311163 -Russell Morris,143,1963-08-17,1993-08-17,Baylor College of Medicine,388386.38479989674 -David Hicks,144,1984-12-23,2014-12-23,Perelman School of Medicine (University of Pennsylvania),287716.34265065385 -Michael Miranda,145,1977-06-03,2007-06-03,Harvard Medical School,302298.4831637538 -Shawn Ellis,146,1959-05-13,1989-05-13,Baylor College of Medicine,347061.2703303279 -Lauren Williams,147,1989-07-05,2019-07-05,Columbia University Vagelos College of Physicians and Surgeons,253693.86564494664 -Jennifer Mccall,148,1969-10-27,1999-10-27,David Geffen School of Medicine at UCLA,339508.3068969769 -Erik Guerrero,149,1989-09-02,2019-09-02,Mayo Clinic Alix School of Medicine,313179.08273044415 -Kerry Hart,150,1978-05-11,2008-05-11,"University of California, San Francisco School of Medicine",273353.67733658256 -Kyle Campbell,151,1961-12-12,1991-12-12,Johns Hopkins University School of Medicine,259108.81024346635 -Tamara Potter,152,1977-11-11,2007-11-11,Columbia University Vagelos College of Physicians and Surgeons,279825.3158060915 -Tracy Garza,153,1973-01-27,2003-01-27,Yale School of Medicine,231455.41283023285 -Mr. Justin Bryant,154,1973-06-29,2003-06-29,David Geffen School of Medicine at UCLA,285313.8166892549 -Richard Miller,155,1963-04-21,1993-04-21,"University of California, San Francisco School of Medicine",318676.6900002775 -Melissa Conway,156,1977-06-28,2007-06-28,"University of California, San Francisco School of Medicine",285710.9807709352 -Jessica Cain,157,1991-10-07,2021-10-07,Stanford University School of Medicine,341649.38104301423 -Christopher Stanley,158,1981-05-28,2011-05-28,David Geffen School of Medicine at UCLA,349798.4280817586 -Roger Craig,159,1953-06-06,1983-06-06,Harvard Medical School,338269.33447877323 -Yvonne Jacobs,160,1969-02-26,1999-02-26,University of Chicago Pritzker School of Medicine,306919.22730793094 -Teresa Frost,161,1983-05-01,2013-05-01,Perelman School of Medicine (University of Pennsylvania),230259.62182540592 -Andrew Bates,162,1962-10-18,1992-10-18,Yale School of Medicine,278889.0752390218 -Eric Marquez,163,1993-03-17,2023-03-17,Perelman School of Medicine (University of Pennsylvania),295738.8441967684 -Michael Bates,164,1985-09-25,2015-09-25,Mayo Clinic Alix School of Medicine,273183.9705148557 -Jessica Anderson,165,1968-11-03,1998-11-03,Mayo Clinic Alix School of Medicine,295814.8357354029 -William Bailey,166,1969-01-10,1999-01-10,Perelman School of Medicine (University of Pennsylvania),348302.02406080137 -Johnny Morgan,167,1976-01-26,2006-01-26,Baylor College of Medicine,250626.70411454045 -Rachel Oneill,168,1971-12-14,2001-12-14,Harvard Medical School,354350.7616835708 -Crystal Cruz,169,1969-01-02,1999-01-02,NYU Grossman Medical School,326541.79265262414 -Tiffany Hodges,170,1977-12-14,2007-12-14,Baylor College of Medicine,308046.5042483309 -Sarah Gardner,171,1976-02-24,2006-02-24,University of Texas Southwestern Medical School,278591.5033277771 -Benjamin Stevens,172,1962-09-12,1992-09-12,Baylor College of Medicine,273781.4896352572 -Tony Mason,173,1963-04-17,1993-04-17,Johns Hopkins University School of Medicine,251213.4685623378 -Courtney Walton,174,1978-04-04,2008-04-04,Washington University in St. Louis School of Medicine,351502.9644094316 -Catherine Howard,175,1963-05-25,1993-05-25,University of Chicago Pritzker School of Medicine,346128.34680222126 -Scott Scott,176,1969-04-14,1999-04-14,Johns Hopkins University School of Medicine,257811.46114250153 -April Shea,177,1961-05-27,1991-05-27,Stanford University School of Medicine,283421.16015281394 -Derrick Krause,178,1971-09-29,2001-09-29,Washington University in St. Louis School of Medicine,312994.3430769573 -Elizabeth White,179,1989-05-24,2019-05-24,Washington University in St. Louis School of Medicine,291014.7258548338 -Patrick Williams,180,1965-04-01,1995-04-01,David Geffen School of Medicine at UCLA,242439.75728904546 -Kelsey Dillon,181,1961-10-10,1991-10-10,Harvard Medical School,280266.8171833294 -Jamie Fisher,182,1967-03-02,1997-03-02,Harvard Medical School,358531.0289406006 -Tamara Potter,183,1960-06-15,1990-06-15,Washington University in St. Louis School of Medicine,282300.6422875667 -Beth Hall,184,1982-11-24,2012-11-24,University of Texas Southwestern Medical School,295095.9798989338 -Derek Edwards,185,1983-07-01,2013-07-01,Baylor College of Medicine,265644.6772789386 -Tara Payne,186,1967-02-15,1997-02-15,David Geffen School of Medicine at UCLA,317632.8895585124 -Carla Miller,187,1970-02-15,2000-02-15,University of Chicago Pritzker School of Medicine,303454.5539707375 -Angela Vance,188,1991-07-28,2021-07-28,Washington University in St. Louis School of Medicine,277739.40775329067 -Jon Prince,189,1967-01-30,1997-01-30,Columbia University Vagelos College of Physicians and Surgeons,260860.33812577726 -Sally Jones,190,1966-09-04,1996-09-04,Mayo Clinic Alix School of Medicine,342136.3012203263 -Sean Best,191,1981-11-11,2011-11-11,Mayo Clinic Alix School of Medicine,251833.6978007676 -Lisa Esparza,192,1984-08-17,2014-08-17,Johns Hopkins University School of Medicine,315114.4708676867 -Kelly Scott MD,193,1977-02-19,2007-02-19,Stanford University School of Medicine,235383.6226586528 -Steven Rivera,194,1973-03-13,2003-03-13,University of Michigan Medical School,321216.35049037146 -John Novak,195,1958-12-11,1988-12-11,University of Michigan Medical School,329108.9666178018 -Connie Tucker,196,1951-10-29,1981-10-29,Mayo Clinic Alix School of Medicine,332843.5113491974 -Barbara Warner,197,1961-06-20,1991-06-20,NYU Grossman Medical School,295163.745942904 -Laura Garrett,198,1977-10-27,2007-10-27,"University of California, San Francisco School of Medicine",347520.1081669109 -Sarah Brewer,199,1980-12-23,2010-12-23,Johns Hopkins University School of Medicine,369233.750849882 -Kevin Warner,200,1985-04-18,2015-04-18,University of Michigan Medical School,290351.3059186211 -Heather Anderson,201,1963-01-30,1993-01-30,Mayo Clinic Alix School of Medicine,286469.8490961022 -Kyle Vasquez,202,1960-09-05,1990-09-05,Stanford University School of Medicine,304475.31781034806 -Robert Chen,203,1987-07-22,2017-07-22,University of Michigan Medical School,285669.5956231738 -Karen Klein,204,1969-02-11,1999-02-11,Baylor College of Medicine,281283.8941196964 -James Mckinney,205,1967-06-17,1997-06-17,Baylor College of Medicine,283897.8437927547 -Joe Mendoza,206,1977-10-26,2007-10-26,Harvard Medical School,351472.6802401873 -Sarah Lane,207,1988-09-02,2018-09-02,University of Texas Southwestern Medical School,323156.459851063 -Erica George,208,1994-07-31,2024-07-31,Harvard Medical School,285571.61618225725 -Katie Huber,209,1978-09-19,2008-09-19,University of Chicago Pritzker School of Medicine,226346.24922833144 -Steven Smith,210,1964-05-07,1994-05-07,Washington University in St. Louis School of Medicine,253666.06519180597 -Allison Steele,211,1978-08-15,2008-08-15,Columbia University Vagelos College of Physicians and Surgeons,315102.87247805635 -Erika Ingram,212,1978-09-09,2008-09-09,Harvard Medical School,236353.32175833549 -Ann Joseph,213,1983-12-08,2013-12-08,Yale School of Medicine,308789.80582355865 -Amy Daniels,214,1962-02-19,1992-02-19,University of Michigan Medical School,268033.08825404925 -Meagan Herrera,215,1987-02-24,2017-02-24,NYU Grossman Medical School,302754.1732374202 -David Lopez,216,1988-10-26,2018-10-26,David Geffen School of Medicine at UCLA,301915.6890400243 -Terry Short,217,1950-10-30,1980-10-30,Mayo Clinic Alix School of Medicine,303617.6980167213 -Patricia Stewart,218,1950-02-25,1980-02-25,David Geffen School of Medicine at UCLA,288167.3445876444 -Robert Davis,219,1985-08-18,2015-08-18,Yale School of Medicine,287181.43123176805 -Joy Yoder,220,1973-11-13,2003-11-13,Stanford University School of Medicine,278376.28743190685 -Julie Walker,221,1972-04-25,2002-04-25,Harvard Medical School,314516.7695172567 -Destiny Lloyd,222,1955-10-27,1985-10-27,Columbia University Vagelos College of Physicians and Surgeons,324155.7802434284 -Karen Smith,223,1981-06-06,2011-06-06,Stanford University School of Medicine,263430.8243239162 -Mary Mahoney,224,1993-02-09,2023-02-09,"University of California, San Francisco School of Medicine",298451.1458312319 -Kathy Smith,225,1968-08-23,1998-08-23,"University of California, San Francisco School of Medicine",305897.4622046321 -Kathryn Johnson,226,1962-08-27,1992-08-27,David Geffen School of Medicine at UCLA,305513.13403869123 -Chad Peterson,227,1991-03-01,2021-03-01,Washington University in St. Louis School of Medicine,305003.08858789556 -April Bailey,228,1987-04-20,2017-04-20,Johns Hopkins University School of Medicine,287938.9556896433 -Alisha Figueroa,229,1964-01-14,1994-01-14,Washington University in St. Louis School of Medicine,308370.9127638762 -Julia Hoffman,230,1964-01-10,1994-01-10,University of Michigan Medical School,318540.8613295086 -Virginia Robinson,231,1966-01-27,1996-01-27,Yale School of Medicine,304231.09967467695 -Dennis Edwards,232,1954-03-12,1984-03-12,Baylor College of Medicine,315178.19509601174 -William Hart,233,1972-05-17,2002-05-17,University of Chicago Pritzker School of Medicine,329710.60233112524 -Karen Klein,234,1971-01-04,2001-01-04,Washington University in St. Louis School of Medicine,244471.78926314195 -Ashley Jackson,235,1968-11-04,1998-11-04,University of Texas Southwestern Medical School,328303.915255961 -Danielle Herring,236,1955-03-22,1985-03-22,University of Chicago Pritzker School of Medicine,310272.83295663825 -Frederick Ellis,237,1958-06-14,1988-06-14,Yale School of Medicine,266651.2401678382 -Thomas Middleton,238,1986-12-21,2016-12-21,University of Chicago Pritzker School of Medicine,324074.12646959064 -Michael Robinson,239,1972-04-27,2002-04-27,Columbia University Vagelos College of Physicians and Surgeons,288050.3728192811 -David Foster,240,1965-09-29,1995-09-29,Harvard Medical School,292141.0069104434 -Samantha Mendez,241,1984-12-20,2014-12-20,Columbia University Vagelos College of Physicians and Surgeons,284769.6065260301 -Isabel Mason,242,1978-02-10,2008-02-10,University of Chicago Pritzker School of Medicine,309071.96532714675 -Leah Meadows,243,1952-11-28,1982-11-28,Stanford University School of Medicine,276439.40572463843 -Rebecca Hernandez,244,1967-01-21,1997-01-21,"University of California, San Francisco School of Medicine",327044.23889843357 -Victor Dean,245,1991-06-22,2021-06-22,University of Chicago Pritzker School of Medicine,295834.1223841598 -Miranda Meza,246,1962-09-07,1992-09-07,Columbia University Vagelos College of Physicians and Surgeons,289073.92549536185 -Toni Caldwell,247,1967-03-21,1997-03-21,NYU Grossman Medical School,322586.2703284191 -Joseph Gonzales,248,1959-11-06,1989-11-06,Yale School of Medicine,290413.29713042756 -Tammy Hart,249,1981-06-02,2011-06-02,Stanford University School of Medicine,328445.304760869 -Vicki Thornton,250,1966-11-21,1996-11-21,Columbia University Vagelos College of Physicians and Surgeons,329387.78852522594 -William Soto,251,1976-10-26,2006-10-26,Washington University in St. Louis School of Medicine,259955.88485343067 -Michael Bennett,252,1970-09-14,2000-09-14,Mayo Clinic Alix School of Medicine,333277.8060666877 -Joshua Brewer,253,1972-08-11,2002-08-11,David Geffen School of Medicine at UCLA,256138.92085494343 -Debra Crawford,254,1967-06-12,1997-06-12,Johns Hopkins University School of Medicine,335147.4158064753 -Natalie Mitchell,255,1989-05-05,2019-05-05,Baylor College of Medicine,360850.71576690715 -Timothy Riley,256,1985-05-07,2015-05-07,Columbia University Vagelos College of Physicians and Surgeons,326245.03314807394 -Kyle Campbell,257,1971-10-01,2001-10-01,University of Texas Southwestern Medical School,235290.5806590098 -Joseph Santiago,258,1983-05-27,2013-05-27,Johns Hopkins University School of Medicine,331906.9715815806 -Christine Perkins,259,1993-01-23,2023-01-23,Yale School of Medicine,367383.86897808034 -Kristine Watson,260,1968-06-13,1998-06-13,NYU Grossman Medical School,290909.0507700591 -Isaac Walker,261,1993-07-27,2023-07-27,Perelman School of Medicine (University of Pennsylvania),298958.9003991033 -Sean Williams,262,1956-10-08,1986-10-08,Columbia University Vagelos College of Physicians and Surgeons,264345.398342207 -Elizabeth Meyer,263,1992-12-05,2022-12-05,Mayo Clinic Alix School of Medicine,309362.3825645901 -John Henderson,264,1954-10-28,1984-10-28,Johns Hopkins University School of Medicine,338075.31547629385 -Tara Harris,265,1977-11-02,2007-11-02,Baylor College of Medicine,320932.1138444836 -Michael Delgado,266,1978-11-24,2008-11-24,University of Chicago Pritzker School of Medicine,394259.00931863394 -Michael Watson,267,1989-02-02,2019-02-02,Columbia University Vagelos College of Physicians and Surgeons,300990.8112889739 -Michael Gibbs,268,1960-06-09,1990-06-09,Harvard Medical School,251079.7989775421 -Angela Stein,269,1954-05-25,1984-05-25,NYU Grossman Medical School,305129.1291470466 -James Cooper,270,1965-05-24,1995-05-24,Yale School of Medicine,227506.4470436253 -Jennifer Quinn,271,1968-07-12,1998-07-12,David Geffen School of Medicine at UCLA,284006.8822540646 -Lance Gonzalez,272,1981-10-18,2011-10-18,Mayo Clinic Alix School of Medicine,348731.46175800636 -Jamie Wiley,273,1978-12-29,2008-12-29,University of Michigan Medical School,309754.00945895317 -Jeremy Arnold,274,1988-02-09,2018-02-09,University of Michigan Medical School,305382.50438493805 -Valerie Smith,275,1985-09-20,2015-09-20,University of Texas Southwestern Medical School,354623.4113014607 -Katherine Jones,276,1957-02-03,1987-02-03,Johns Hopkins University School of Medicine,291882.0032500989 -Steven Watson,277,1961-11-03,1991-11-03,Mayo Clinic Alix School of Medicine,337854.6123880233 -Daniel Martinez,278,1979-07-15,2009-07-15,Stanford University School of Medicine,303879.2092549902 -Julia Lam,279,1974-12-12,2004-12-12,Baylor College of Medicine,311401.4239037708 -Willie Gutierrez,280,1964-08-17,1994-08-17,David Geffen School of Medicine at UCLA,263480.8543241096 -Stephen Johnson,281,1994-11-15,2024-11-15,University of Chicago Pritzker School of Medicine,285538.5961551535 -Timothy Gibson,282,1973-09-16,2003-09-16,Columbia University Vagelos College of Physicians and Surgeons,258074.4530146838 -Edgar Harris,283,1988-06-13,2018-06-13,Columbia University Vagelos College of Physicians and Surgeons,297142.64765323966 -Erin Ramirez,284,1974-03-13,2004-03-13,University of Michigan Medical School,311712.070317488 -Robert Haynes,285,1950-04-28,1980-04-28,Columbia University Vagelos College of Physicians and Surgeons,266698.8568472564 -Anthony Miller,286,1988-02-08,2018-02-08,Yale School of Medicine,361475.3676805447 -Ryan Craig,287,1989-03-06,2019-03-06,David Geffen School of Medicine at UCLA,308343.18057275884 -Austin Alvarado,288,1986-03-27,2016-03-27,Harvard Medical School,301733.86756755656 -Sheri Howard,289,1965-03-23,1995-03-23,Perelman School of Medicine (University of Pennsylvania),323089.73254036874 -Ashley Le,290,1952-04-26,1982-04-26,University of Texas Southwestern Medical School,275132.15757402236 -Antonio Stark,291,1979-12-29,2009-12-29,"University of California, San Francisco School of Medicine",304904.3243750236 -Brandy Anderson,292,1987-07-09,2017-07-09,Washington University in St. Louis School of Medicine,278494.01338927227 -Jonathan Obrien DDS,293,1992-02-15,2022-02-15,University of Texas Southwestern Medical School,346760.3973026695 -Adrienne Johnson,294,1987-08-21,2017-08-21,Johns Hopkins University School of Medicine,268240.81951808755 -David Carter,295,1967-09-18,1997-09-18,Harvard Medical School,301894.96377921524 -Amber Parker MD,296,1975-07-22,2005-07-22,University of Texas Southwestern Medical School,309879.4735545533 -Amanda Rogers,297,1985-02-05,2015-02-05,University of Chicago Pritzker School of Medicine,311844.77233223105 -John Williams,298,1961-07-10,1991-07-10,University of Michigan Medical School,282562.944807515 -Anthony Lowery,299,1967-03-16,1997-03-16,NYU Grossman Medical School,273134.71793564706 -Vicki Foster,300,1955-08-11,1985-08-11,Johns Hopkins University School of Medicine,282996.144808617 -Mr. Adrian Pittman II,301,1967-01-25,1997-01-25,Columbia University Vagelos College of Physicians and Surgeons,315849.76302630844 -Mark Martin,302,1985-06-07,2015-06-07,Mayo Clinic Alix School of Medicine,295684.6268726411 -Matthew Ward,303,1984-07-08,2014-07-08,University of Chicago Pritzker School of Medicine,323886.26425357565 -James Jackson,304,1976-09-26,2006-09-26,Johns Hopkins University School of Medicine,314310.1115818522 -Barbara Warner,305,1955-01-03,1985-01-03,NYU Grossman Medical School,231692.61905701176 -Lacey Gomez,306,1955-04-02,1985-04-02,Baylor College of Medicine,307424.93390511634 -Jamie Marks,307,1969-02-18,1999-02-18,Columbia University Vagelos College of Physicians and Surgeons,367513.6430344881 -Melissa Brown,308,1989-12-16,2019-12-16,University of Texas Southwestern Medical School,339758.0715311499 -Leah Meadows,309,1985-07-13,2015-07-13,University of Texas Southwestern Medical School,312660.3948212091 -Ryan Kirk,310,1950-01-10,1980-01-10,Johns Hopkins University School of Medicine,268218.2360859017 -Paula Hall,311,1977-01-04,2007-01-04,Mayo Clinic Alix School of Medicine,314326.6114837694 -Krystal Webb,312,1956-01-29,1986-01-29,Baylor College of Medicine,322192.4981963478 -Mark Nichols,313,1969-04-12,1999-04-12,Columbia University Vagelos College of Physicians and Surgeons,292387.59957517247 -Michael Hodges,314,1964-06-23,1994-06-23,NYU Grossman Medical School,309502.2617641331 -Michelle Williams,315,1954-06-08,1984-06-08,Perelman School of Medicine (University of Pennsylvania),345289.8737518812 -Cody Olson,316,1973-04-22,2003-04-22,University of Texas Southwestern Medical School,274281.7674077482 -Veronica Moore,317,1953-09-04,1983-09-04,NYU Grossman Medical School,268251.0118512262 -Ryan Thomas,318,1978-12-08,2008-12-08,Harvard Medical School,320780.97977982636 -Daniel Morgan II,319,1988-12-18,2018-12-18,University of Texas Southwestern Medical School,313726.2790859424 -Carol Sanchez,320,1959-07-23,1989-07-23,NYU Grossman Medical School,330865.1488623844 -Carolyn Clark,321,1975-06-29,2005-06-29,Stanford University School of Medicine,317093.8143571131 -Cheryl Smith,322,1971-11-11,2001-11-11,University of Michigan Medical School,282967.3481047742 -Teresa Brown,323,1983-06-16,2013-06-16,Washington University in St. Louis School of Medicine,312965.77954396216 -Matthew Wyatt,324,1950-08-24,1980-08-24,David Geffen School of Medicine at UCLA,265736.2037011148 -William Mclaughlin,325,1977-10-27,2007-10-27,University of Michigan Medical School,292490.4386480102 -Mary Owens,326,1955-03-24,1985-03-24,Yale School of Medicine,315083.97692899214 -Christine Rogers,327,1973-06-16,2003-06-16,Washington University in St. Louis School of Medicine,289184.5734982833 -Greg Clark,328,1959-09-01,1989-09-01,University of Chicago Pritzker School of Medicine,374041.5654668948 -Dorothy Palmer,329,1964-05-23,1994-05-23,NYU Grossman Medical School,243234.47253529 -Luis Powell MD,330,1972-05-07,2002-05-07,Washington University in St. Louis School of Medicine,283575.28929003567 -Teresa Scott,331,1964-10-29,1994-10-29,Yale School of Medicine,271866.6049839027 -Erin Oliver,332,1959-04-15,1989-04-15,Columbia University Vagelos College of Physicians and Surgeons,278989.5357762614 -Mark Woods,333,1980-07-19,2010-07-19,Perelman School of Medicine (University of Pennsylvania),280710.0532955736 -Nicole Holland,334,1966-04-18,1996-04-18,Stanford University School of Medicine,260207.3793942302 -Wesley Davidson,335,1971-12-04,2001-12-04,Harvard Medical School,322581.0644571788 -Tanya Mccarty,336,1974-10-26,2004-10-26,NYU Grossman Medical School,283587.141078387 -Gary Swanson,337,1992-07-03,2022-07-03,Harvard Medical School,304907.20006765967 -Brittany Harris,338,1950-03-19,1980-03-19,Mayo Clinic Alix School of Medicine,286955.22714269266 -Kenneth Glass,339,1970-09-30,2000-09-30,University of Texas Southwestern Medical School,279273.5876314137 -Jacqueline Johnson,340,1988-06-30,2018-06-30,NYU Grossman Medical School,350168.3770826055 -Jason Martinez,341,1978-11-05,2008-11-05,David Geffen School of Medicine at UCLA,327687.9654662822 -Anthony Phillips,342,1976-01-15,2006-01-15,NYU Grossman Medical School,243953.98800134566 -Abigail Cummings,343,1969-01-04,1999-01-04,Johns Hopkins University School of Medicine,240775.87654992339 -Christina Miller,344,1982-09-24,2012-09-24,Perelman School of Medicine (University of Pennsylvania),331278.2650690946 -Lisa Anderson,345,1971-05-15,2001-05-15,Johns Hopkins University School of Medicine,284404.39825353737 -Jessica Wallace,346,1967-12-23,1997-12-23,NYU Grossman Medical School,250527.52998197332 -Kathy Watkins,347,1966-05-21,1996-05-21,Stanford University School of Medicine,331372.05397621024 -Jeffrey Williams,348,1962-10-15,1992-10-15,Washington University in St. Louis School of Medicine,305073.7215029727 -Lindsay Martinez,349,1975-02-23,2005-02-23,Harvard Medical School,307547.1325449696 -Kevin Hodges,350,1956-01-02,1986-01-02,Stanford University School of Medicine,324286.1781601772 -Robert Clements,351,1953-06-02,1983-06-02,NYU Grossman Medical School,260700.6852515282 -Samuel Martinez,352,1980-10-16,2010-10-16,Yale School of Medicine,251054.97535847506 -Amy Rios,353,1985-01-07,2015-01-07,Washington University in St. Louis School of Medicine,347428.62884709606 -Joanne Hernandez,354,1960-02-05,1990-02-05,Yale School of Medicine,256884.99717773122 -Nathan Parker,355,1961-01-01,1991-01-01,Harvard Medical School,263332.86608773307 -James Sparks,356,1980-12-11,2010-12-11,Washington University in St. Louis School of Medicine,269326.938613627 -Jennifer Johnson,357,1955-05-25,1985-05-25,David Geffen School of Medicine at UCLA,362398.37771071563 -Ashley Goodwin,358,1972-12-20,2002-12-20,Perelman School of Medicine (University of Pennsylvania),314801.4990123457 -Shannon Lam,359,1992-02-04,2022-02-04,University of Michigan Medical School,328962.2392330614 -Chase Mcpherson Jr.,360,1965-11-06,1995-11-06,Baylor College of Medicine,305885.02636736183 -Matthew Nelson,361,1964-10-22,1994-10-22,University of Chicago Pritzker School of Medicine,281943.383663963 -Dawn Haley,362,1975-11-12,2005-11-12,Stanford University School of Medicine,318938.738497805 -Karl Bruce,363,1952-07-11,1982-07-11,University of Texas Southwestern Medical School,253301.5208760959 -Molly Dean,364,1951-02-24,1981-02-24,Stanford University School of Medicine,267141.4964371052 -Michael Harris,365,1979-07-17,2009-07-17,Baylor College of Medicine,321989.25537784444 -Miss Valerie George,366,1953-01-25,1983-01-25,University of Michigan Medical School,259282.3430751966 -Chelsey Davis,367,1980-10-30,2010-10-30,"University of California, San Francisco School of Medicine",294327.5559251438 -Scott Rivera,368,1956-05-25,1986-05-25,Columbia University Vagelos College of Physicians and Surgeons,295694.62966933765 -Andrew Miller,369,1964-09-17,1994-09-17,David Geffen School of Medicine at UCLA,284140.13989988517 -David Perez,370,1956-02-22,1986-02-22,Yale School of Medicine,241466.44575453427 -Louis Chambers,371,1962-08-18,1992-08-18,NYU Grossman Medical School,281132.13326433924 -Richard Richmond,372,1988-03-08,2018-03-08,David Geffen School of Medicine at UCLA,275250.94869202544 -Elaine Page DVM,373,1980-05-27,2010-05-27,Baylor College of Medicine,304843.19589863095 -Laura Brown,374,1986-10-08,2016-10-08,NYU Grossman Medical School,303314.71616098407 -Michael Berger,375,1967-06-12,1997-06-12,University of Texas Southwestern Medical School,311338.84379810625 -Gabriela Garcia,376,1967-05-31,1997-05-31,Johns Hopkins University School of Medicine,279720.41181076807 -Dustin Griffin,377,1971-07-13,2001-07-13,Washington University in St. Louis School of Medicine,315683.3385139768 -Jo Beard,378,1958-11-03,1988-11-03,Columbia University Vagelos College of Physicians and Surgeons,253319.79801678951 -Jennifer Murray,379,1989-05-18,2019-05-18,Perelman School of Medicine (University of Pennsylvania),245342.85802042938 -Christopher Murphy,380,1957-12-01,1987-12-01,Perelman School of Medicine (University of Pennsylvania),229932.81827500116 -Nicole King,381,1960-04-14,1990-04-14,Baylor College of Medicine,285021.08281284006 -Alex Anderson,382,1993-03-06,2023-03-06,David Geffen School of Medicine at UCLA,277401.0532698433 -Robert Thomas,383,1957-04-28,1987-04-28,Perelman School of Medicine (University of Pennsylvania),323679.468355638 -Antonio Campbell,384,1968-11-20,1998-11-20,University of Texas Southwestern Medical School,280540.1223885339 -Jennifer Evans,385,1977-10-13,2007-10-13,Yale School of Medicine,308201.290438328 -Emily Anderson DDS,386,1952-03-04,1982-03-04,"University of California, San Francisco School of Medicine",324398.8972974923 -Jessica Matthews,387,1955-10-18,1985-10-18,Stanford University School of Medicine,279410.42773052654 -Steven Henry,388,1965-10-28,1995-10-28,Mayo Clinic Alix School of Medicine,308941.5663032153 -Jonathan Baker,389,1983-09-03,2013-09-03,University of Texas Southwestern Medical School,330057.82646865584 -Alyssa Watts,390,1988-10-01,2018-10-01,NYU Grossman Medical School,262855.116755833 -Edgar Harris,391,1980-06-03,2010-06-03,University of Chicago Pritzker School of Medicine,300745.5701473393 -Rebecca Hernandez,392,1979-07-17,2009-07-17,Baylor College of Medicine,279538.9685040206 -Nicole Keith,393,1981-03-16,2011-03-16,Johns Hopkins University School of Medicine,264765.3035252058 -Brent Brewer,394,1985-08-04,2015-08-04,Washington University in St. Louis School of Medicine,253906.44778529313 -Aaron Johnson,395,1952-03-25,1982-03-25,University of Chicago Pritzker School of Medicine,264280.54283463897 -Linda Johnson,396,1978-11-11,2008-11-11,Washington University in St. Louis School of Medicine,301800.8701725604 -Amy Daniels,397,1956-09-09,1986-09-09,Harvard Medical School,251674.66633314762 -Shaun Little,398,1978-08-19,2008-08-19,University of Chicago Pritzker School of Medicine,283478.1892773409 -Richard Garcia,399,1978-06-03,2008-06-03,Mayo Clinic Alix School of Medicine,324395.83220558695 -Michael Morales,400,1971-04-24,2001-04-24,David Geffen School of Medicine at UCLA,313470.3289025681 -Amanda James,401,1981-05-31,2011-05-31,"University of California, San Francisco School of Medicine",284084.7713118553 -Robin Rose,402,1991-12-20,2021-12-20,Stanford University School of Medicine,350690.7124007617 -Brittany Harris,403,1952-04-07,1982-04-07,Stanford University School of Medicine,356791.0924173498 -Monique Hall,404,1969-07-27,1999-07-27,"University of California, San Francisco School of Medicine",300783.6729461918 -Christopher Webster,405,1962-03-10,1992-03-10,Yale School of Medicine,225943.71252347075 -Logan Hansen,406,1992-01-04,2022-01-04,Columbia University Vagelos College of Physicians and Surgeons,326593.4459104878 -Donna Williams,407,1987-05-02,2017-05-02,Harvard Medical School,231180.70979899244 -Mr. Andrew Keller,408,1966-04-26,1996-04-26,Washington University in St. Louis School of Medicine,344284.383321602 -Lori Jackson,409,1950-05-07,1980-05-07,Mayo Clinic Alix School of Medicine,332507.547022269 -Richard Aguilar,410,1974-01-30,2004-01-30,Perelman School of Medicine (University of Pennsylvania),353226.37512414064 -Mario Kelly II,411,1981-11-15,2011-11-15,University of Chicago Pritzker School of Medicine,307807.9667510318 -Christina Anderson,412,1969-09-14,1999-09-14,Harvard Medical School,289158.42698454484 -Tina Wall,413,1981-08-25,2011-08-25,University of Texas Southwestern Medical School,286496.9659892933 -James Allen,414,1959-03-23,1989-03-23,Baylor College of Medicine,283612.1948690731 -Heidi Melton,415,1960-05-25,1990-05-25,University of Chicago Pritzker School of Medicine,329432.0596102411 -Andre Johnson,416,1991-05-20,2021-05-20,Mayo Clinic Alix School of Medicine,321368.1446851763 -Gary Baldwin,417,1987-07-24,2017-07-24,Johns Hopkins University School of Medicine,303606.76900302636 -Matthew Perez,418,1954-11-28,1984-11-28,Johns Hopkins University School of Medicine,278334.56076219084 -Jasmine Perkins,419,1980-04-06,2010-04-06,NYU Grossman Medical School,378876.37893900817 -Laura Hamilton,420,1959-07-09,1989-07-09,Harvard Medical School,327371.2384188861 -Kathleen Mitchell,421,1959-05-11,1989-05-11,David Geffen School of Medicine at UCLA,252068.64240679774 -Sandra Porter,422,1954-07-04,1984-07-04,Mayo Clinic Alix School of Medicine,284512.3195218862 -Cristina Ortega,423,1990-05-26,2020-05-26,Mayo Clinic Alix School of Medicine,327953.28292226116 -Kelly Massey,424,1958-05-31,1988-05-31,"University of California, San Francisco School of Medicine",276013.83236301946 -Renee Young,425,1955-01-29,1985-01-29,University of Texas Southwestern Medical School,310546.4387647767 -Vicki Foster,426,1962-10-07,1992-10-07,David Geffen School of Medicine at UCLA,328523.88901008444 -Jason Johnston,427,1967-11-02,1997-11-02,University of Texas Southwestern Medical School,198347.15752030822 -Alexis Nolan,428,1957-06-01,1987-06-01,Yale School of Medicine,296758.86900632246 -Brittany Mullen,429,1982-01-07,2012-01-07,Washington University in St. Louis School of Medicine,297936.27460695367 -Megan Guzman,430,1976-01-29,2006-01-29,Washington University in St. Louis School of Medicine,287637.8263294863 -Aaron Graves,431,1967-09-05,1997-09-05,Perelman School of Medicine (University of Pennsylvania),309050.8540483812 -Robert Schmidt,432,1961-07-14,1991-07-14,NYU Grossman Medical School,319725.58822487626 -Stephanie Ward,433,1986-03-17,2016-03-17,Stanford University School of Medicine,304261.5283297383 -Sara Lopez,434,1971-10-28,2001-10-28,Johns Hopkins University School of Medicine,288785.17817851703 -Miranda Hunt,435,1954-06-14,1984-06-14,Baylor College of Medicine,318978.6389935281 -Pamela Hendrix,436,1978-03-29,2008-03-29,Washington University in St. Louis School of Medicine,301471.6022782307 -Nathan Davis,437,1971-10-31,2001-10-31,David Geffen School of Medicine at UCLA,293078.98760413565 -Rhonda Wall,438,1973-06-26,2003-06-26,Mayo Clinic Alix School of Medicine,260631.6184398324 -Amy Payne,439,1972-02-05,2002-02-05,Baylor College of Medicine,253120.35644201766 -Jared Diaz,440,1973-09-23,2003-09-23,University of Michigan Medical School,260063.1062185779 -Ashley Torres,441,1959-11-10,1989-11-10,University of Texas Southwestern Medical School,308349.8718366065 -Joseph Jackson,442,1968-07-28,1998-07-28,Washington University in St. Louis School of Medicine,297627.63757180946 -Julie Long,443,1986-03-19,2016-03-19,Mayo Clinic Alix School of Medicine,255591.4770537761 -Ryan Gutierrez,444,1975-01-16,2005-01-16,Washington University in St. Louis School of Medicine,319377.5347738143 -Nathan Smith,445,1963-08-12,1993-08-12,Johns Hopkins University School of Medicine,341229.28539537283 -Amy Bryant,446,1986-12-08,2016-12-08,University of Michigan Medical School,282045.1914985099 -Joshua Guerrero,447,1985-06-17,2015-06-17,University of Chicago Pritzker School of Medicine,247770.54427894877 -Geoffrey Jacobson,448,1983-09-17,2013-09-17,Washington University in St. Louis School of Medicine,278726.2084529426 -Alyssa Thomas,449,1955-06-14,1985-06-14,Yale School of Medicine,325633.81880384084 -Lisa Wallace,450,1964-07-05,1994-07-05,David Geffen School of Medicine at UCLA,316455.8957560432 -Gerald Green,451,1985-08-02,2015-08-02,Washington University in St. Louis School of Medicine,272327.0194196556 -Christopher Esparza,452,1986-11-20,2016-11-20,Stanford University School of Medicine,345635.1641329423 -Rhonda Wolf,453,1961-12-29,1991-12-29,Baylor College of Medicine,340448.401977792 -Hannah Roberts,454,1963-01-10,1993-01-10,Baylor College of Medicine,278009.81810170074 -Ashley Young,455,1978-06-18,2008-06-18,Johns Hopkins University School of Medicine,277701.299911051 -Tasha Griffin,456,1994-06-20,2024-06-20,David Geffen School of Medicine at UCLA,282215.1618786153 -Mary Medina,457,1965-04-20,1995-04-20,University of Michigan Medical School,284780.01673834363 -Taylor Williams PhD,458,1963-07-16,1993-07-16,Yale School of Medicine,328516.14023785334 -Trevor Cook,459,1986-09-04,2016-09-04,"University of California, San Francisco School of Medicine",312759.8718142978 -Marissa Shepherd,460,1961-08-14,1991-08-14,David Geffen School of Medicine at UCLA,326312.3630805176 -Thomas Harrell,461,1977-02-24,2007-02-24,Baylor College of Medicine,320206.954295601 -Marc Romero,462,1977-05-03,2007-05-03,Stanford University School of Medicine,351435.81204581197 -David Fisher,463,1954-10-26,1984-10-26,University of Chicago Pritzker School of Medicine,268218.4336857258 -Ronald Chen,464,1975-02-20,2005-02-20,Johns Hopkins University School of Medicine,311410.7559115175 -Christie Kelly,465,1956-10-18,1986-10-18,"University of California, San Francisco School of Medicine",234785.36231295907 -Paige Morris,466,1952-08-09,1982-08-09,Stanford University School of Medicine,260491.33277709424 -Timothy Wilson,467,1955-09-11,1985-09-11,University of Michigan Medical School,297754.3984219546 -Bryan Smith,468,1957-06-10,1987-06-10,University of Texas Southwestern Medical School,312546.19838263607 -James Brown,469,1976-07-15,2006-07-15,University of Michigan Medical School,296945.5277391129 -Alexander Jimenez,470,1970-01-07,2000-01-07,Stanford University School of Medicine,282984.2274356196 -Vickie Collins,471,1952-02-08,1982-02-08,University of Texas Southwestern Medical School,288317.46367520886 -Ryan Jarvis,472,1965-01-12,1995-01-12,Harvard Medical School,341083.2292927231 -Alexander Rodriguez,473,1992-07-13,2022-07-13,Johns Hopkins University School of Medicine,288479.0346635958 -George Lee,474,1968-03-12,1998-03-12,David Geffen School of Medicine at UCLA,352477.2486613058 -Renee Brown,475,1964-04-29,1994-04-29,University of Texas Southwestern Medical School,323820.512206234 -Terry Chan,476,1981-06-12,2011-06-12,NYU Grossman Medical School,313726.1203844469 -Ivan Doyle,477,1965-11-15,1995-11-15,University of Texas Southwestern Medical School,264192.09269037016 -Drew Sanchez,478,1983-10-17,2013-10-17,Mayo Clinic Alix School of Medicine,328057.1448419888 -Richard Carter,479,1972-01-04,2002-01-04,University of Chicago Pritzker School of Medicine,285186.882667545 -Daniel Mack,480,1993-10-24,2023-10-24,Mayo Clinic Alix School of Medicine,264166.807259829 -Larry Campbell,481,1985-10-31,2015-10-31,David Geffen School of Medicine at UCLA,315385.3083923813 -Jennifer Roberts,482,1963-05-06,1993-05-06,David Geffen School of Medicine at UCLA,258361.6181830038 -Alan Johnson,483,1954-01-21,1984-01-21,Johns Hopkins University School of Medicine,277132.75613611256 -Victoria Chavez,484,1977-08-20,2007-08-20,David Geffen School of Medicine at UCLA,299696.52265593264 -Kevin Walls,485,1989-06-27,2019-06-27,Baylor College of Medicine,366552.6427234418 -Janet Williams,486,1970-12-05,2000-12-05,University of Texas Southwestern Medical School,279392.52732622536 -Carla Dougherty,487,1993-01-03,2023-01-03,University of Texas Southwestern Medical School,286253.50442098273 -Sara Newman,488,1980-11-10,2010-11-10,Harvard Medical School,321970.35163264937 -Shelby Mathews,489,1984-07-01,2014-07-01,"University of California, San Francisco School of Medicine",262851.1293487186 -Shawn Bryant,490,1980-02-11,2010-02-11,David Geffen School of Medicine at UCLA,313284.1914306275 -Heather Fisher,491,1989-02-20,2019-02-20,Mayo Clinic Alix School of Medicine,336177.80422849767 -Shelley Cobb,492,1979-04-01,2009-04-01,David Geffen School of Medicine at UCLA,290787.153458667 -Amy Watson,493,1994-11-06,2024-11-06,University of Michigan Medical School,330784.62844190595 -Eric Patton,494,1973-04-29,2003-04-29,Harvard Medical School,308743.49769635417 -James Johnson,495,1959-01-14,1989-01-14,Baylor College of Medicine,278079.5410858866 -Andrew Wallace,496,1968-05-28,1998-05-28,Baylor College of Medicine,294065.8594231048 -Phillip Weaver,497,1969-10-06,1999-10-06,Washington University in St. Louis School of Medicine,288607.27980059275 -Craig Brooks,498,1958-05-13,1988-05-13,University of Texas Southwestern Medical School,297370.8522655057 -Bernard Miller,499,1987-03-03,2017-03-03,Baylor College of Medicine,304581.5369765948 diff --git a/langchain-rag-app/source_code_step_5/data/reviews.csv b/langchain-rag-app/source_code_step_5/data/reviews.csv deleted file mode 100644 index fd685fc27f..0000000000 --- a/langchain-rag-app/source_code_step_5/data/reviews.csv +++ /dev/null @@ -1,1006 +0,0 @@ -review_id,visit_id,review,physician_name,hospital_name,patient_name -0,6997,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Laura Brown,Wallace-Hamilton,Christy Johnson -9,8138,"The hospital's commitment to patient education impressed me. The medical team took the time to explain my diagnosis and treatment options, empowering me to make informed decisions about my health.",Steven Watson,Wallace-Hamilton,Anna Frazier -11,680,The hospital's commitment to patient safety was evident throughout my stay. The stringent hygiene protocols and vigilant staff instilled confidence in the quality of care provided.,Chase Mcpherson Jr.,Wallace-Hamilton,Abigail Mitchell -892,9846,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Jason Martinez,Wallace-Hamilton,Kimberly Rivas -822,7397,"The medical team at the hospital was exceptional, and the facilities were state-of-the-art. The only downside was the noise level in the shared rooms, affecting my rest.",Chelsey Davis,Wallace-Hamilton,Catherine Yang -434,9946,"While the medical care was excellent, the wait times for tests and results were quite frustrating. Improvement in this area would greatly enhance the overall experience.",Ashley Le,Wallace-Hamilton,Jennifer Russell -169,4902,"The medical team was attentive, and the facilities were clean. Unfortunately, the noise levels in the hallway were disruptive, affecting the overall peacefulness of the environment.",Tanya Mccarty,Wallace-Hamilton,Henry Hays -93,5297,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Amy Watson,Wallace-Hamilton,Rachel Carter -97,3267,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Jennifer Mccall,Wallace-Hamilton,Cody Ibarra -146,3332,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -604,3332,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Kyle Vasquez,Wallace-Hamilton,Kim Franklin -597,2955,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Terry Short,Wallace-Hamilton,Michael Smith -807,2955,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Terry Short,Wallace-Hamilton,Michael Smith -913,7962,"While the hospital had state-of-the-art equipment, the staff's lack of coordination resulted in delays and confusion regarding my treatment.",Robert Chen,Wallace-Hamilton,Chelsea Mitchell -136,1496,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Sara Lopez,Wallace-Hamilton,Carol Byrd -922,9374,"I was pleased with the level of care I received at the hospital. The only downside was the confusing layout, making it easy to get lost in the corridors.",Troy Wilson,Wallace-Hamilton,Daniel Williams -744,7721,"The nursing staff was caring, and the hospital had a calming ambiance. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Jennifer Evans,Wallace-Hamilton,Kim Powers -205,8663,"I appreciate the hospital's commitment to patient safety, and the cleanliness standards were commendable. However, the lack of entertainment options for patients during recovery was a downside.",Christopher Murphy,Wallace-Hamilton,Sharon Brown -224,6400,"I had a mixed experience at the hospital. The medical team was attentive, but the lack of communication about the potential risks of a procedure was concerning. The facilities, however, were modern and clean.",Tanya Sharp,Wallace-Hamilton,John Bartlett -228,7954,"I had a positive experience with the hospital's medical team, who provided excellent care. Nevertheless, the administrative processes, especially the check-in and discharge, could be more streamlined.",Yvonne Jacobs,Wallace-Hamilton,Rebecca Wilkerson -236,9106,"My stay at the hospital was great. The nurses were friendly and efficient, and the doctors were knowledgeable and thorough in their examinations.",John Henderson,Wallace-Hamilton,Scott Terry -266,5374,"The hospital's facilities were modern and well-maintained. However, the lack of communication about changes in my treatment plan created unnecessary stress.",James Johnson,Wallace-Hamilton,Michele Jones -294,8882,"The hospital staff was caring and attentive. However, the lack of communication between different departments led to some confusion about my treatment plan.",Mr. Andrew Keller,Wallace-Hamilton,Tiffany Long -873,6168,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Mr. Andrew Keller,Wallace-Hamilton,Stacy Villa -301,1974,"The hospital staff was efficient, and the facilities were clean. However, the lack of personalized attention and communication left me feeling a bit neglected.",Christopher Esparza,Wallace-Hamilton,Kevin Cox -390,8306,"The hospital staff was accommodating to my needs, but the noise levels in the hallway were disruptive and affected my ability to rest.",Victoria Chavez,Wallace-Hamilton,David Kim -799,4305,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Mark Vang,Wallace-Hamilton,Daniel Carter -867,99,"I had a mixed experience at the hospital. The medical attention was top-notch, but the wait times for tests were frustratingly long. The cafeteria food was surprisingly tasty, though.",Brian Rivera,Wallace-Hamilton,Christopher Juarez -633,2477,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Wallace-Hamilton,Matthew Watkins -767,7323,"The hospital facilities were outdated, and the lack of modern equipment was noticeable. However, the medical staff was dedicated and provided good care.",Karl Bruce,Wallace-Hamilton,Dalton Oconnell -525,8152,"Unfortunately, my hospital experience was subpar. The nursing staff seemed overwhelmed, and the facilities were outdated. Communication regarding my treatment plan was lacking, leaving me feeling uneasy.",George Lee,Wallace-Hamilton,Tracy Murray -933,952,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Raymond Berry,Wallace-Hamilton,William Garza -931,4575,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jennifer Roberts,Wallace-Hamilton,Cynthia Welch -733,1950,"The doctors were knowledgeable and took the time to answer my questions. The outdated medical equipment, however, was a concern.",Crystal Cruz,Wallace-Hamilton,Kelly Stevens -840,2472,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Miss Valerie George,Wallace-Hamilton,Lynn Smith -751,672,"The doctors were skilled, and the hospital had a clean environment. The constant interruptions during the night, however, affected my ability to rest.",Karen Smith,Wallace-Hamilton,Jesse Tucker -756,5717,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Heidi Melton,Wallace-Hamilton,Jason Mcdowell -856,2331,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Steven Smith,Wallace-Hamilton,Jesse Marquez -1001,3240,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Ronald Hernandez Jr.,Wallace-Hamilton,Jacob Smith -1,761,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Vicki Foster,"Bell, Mcknight and Willis",Loretta Schmitt -658,7151,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Robert Davis,"Bell, Mcknight and Willis",Richard Parker -585,4525,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Robert Pratt,"Bell, Mcknight and Willis",Kristin Evans -821,5920,"I am grateful for the care I received from the hospital staff. They were attentive and explained everything thoroughly. However, the billing process was confusing.",Erika Ingram,"Bell, Mcknight and Willis",Dr. Barbara Foster -954,1077,"Unfortunately, my experience at the hospital was less than satisfactory. The communication among the staff was poor, and it led to confusion about my treatment plan.",Mark Martin,"Bell, Mcknight and Willis",Daniel Harris -76,9171,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Logan Hansen,"Bell, Mcknight and Willis",Anna Graves -693,5246,"My overall experience was positive, thanks to the skilled medical team and their prompt response to my needs. The only downside was the limited parking space, causing inconvenience for visitors.",Tara Harris,"Bell, Mcknight and Willis",Kathleen Chambers -463,3607,The hospital's commitment to patient satisfaction was evident. They actively sought feedback and made adjustments to improve the overall experience.,Terry Leon,"Bell, Mcknight and Willis",Melissa Jefferson -132,1564,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Antonio Campbell,"Bell, Mcknight and Willis",John Atkinson -439,7131,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,"Bell, Mcknight and Willis",Regina Waters -686,6970,"The hospital's commitment to patient education was commendable. The medical staff took the time to explain my condition and treatment plan thoroughly, empowering me to actively participate in my recovery.",Tamara Potter,"Bell, Mcknight and Willis",Amy Dunlap -974,5714,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Danielle Herring,"Bell, Mcknight and Willis",Aaron Owen -700,8728,I was disappointed with the lack of privacy in the shared hospital rooms. The constant noise and lack of personal space made it challenging to rest and recover peacefully.,Troy Wilson,"Bell, Mcknight and Willis",Charles Martinez -380,4544,"I had a mixed experience. The medical care was excellent, but the noise levels in the ward were disruptive, making it challenging to rest.",Courtney Walton,"Bell, Mcknight and Willis",Ricky Burns -218,3173,"The hospital's facilities were modern and well-equipped, creating a comfortable environment. However, the lack of communication about potential side effects of medications was a concern during my stay.",Michael Bates,"Bell, Mcknight and Willis",Stephen Jones -847,1544,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Bernard Miller,Cunningham and Sons,Stephen Jones -223,5436,"The hospital's medical team was knowledgeable and caring, ensuring a smooth recovery process. However, the limited options for vegetarian meals in the cafeteria were disappointing.",William Bailey,"Bell, Mcknight and Willis",Michaela Smith -551,849,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Bryan Jones,"Bell, Mcknight and Willis",Linda Collins -249,6791,"The hospital facilities were top-notch, and the medical team was highly skilled. Unfortunately, the cafeteria food left much to be desired in terms of taste and variety.",John Novak,"Bell, Mcknight and Willis",William Davis -335,1263,"The hospital's facilities were top-notch, and the rooms were comfortable. However, the bureaucratic red tape made simple tasks, like scheduling appointments, unnecessarily complicated.",Michelle Williams,"Bell, Mcknight and Willis",John York -353,2124,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Thomas Harrell,"Bell, Mcknight and Willis",John Adams -393,4431,"The medical team was compassionate, and the hospital provided a comfortable environment. Unfortunately, the TV in my room was malfunctioning.",James Jackson,"Bell, Mcknight and Willis",Jon Steele -962,9376,The hospital staff went above and beyond to accommodate my needs. I appreciate their dedication to patient care.,Sean Best,"Bell, Mcknight and Willis",Brian Pollard -341,5275,"The hospital staff was attentive and caring, ensuring my comfort during the stay. Yet, the billing process was confusing, and I received multiple invoices with different amounts.",Tracy Garza,"Bell, Mcknight and Willis",Sean Harris -753,7086,"The medical care was outstanding, and the hospital had a welcoming atmosphere. Unfortunately, the cafeteria food was subpar and lacked variety.",Karl Bruce,"Bell, Mcknight and Willis",Kevin Cruz -988,700,"The hospital's commitment to providing affordable healthcare services to all was evident. However, the long wait times in the emergency room were a drawback.",Robert Thomas,"Bell, Mcknight and Willis",Cindy Lowe -568,8556,"My experience at the hospital was overall positive. The staff was attentive, and the modern facilities contributed to a comfortable stay.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -673,8556,"The hospital staff went above and beyond to make me feel comfortable during my stay. The modern facilities and state-of-the-art equipment were reassuring, and I felt well taken care of.",Matthew Perez,"Bell, Mcknight and Willis",Roger Fuller -623,6837,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Phillip Weaver,"Bell, Mcknight and Willis",James Fox -666,3619,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Ashley Pena,"Bell, Mcknight and Willis",Tonya Perkins -999,9810,"The hospital's emergency response was swift and effective. However, the lack of follow-up after discharge left me feeling a bit abandoned.",Dorothy Palmer,"Bell, Mcknight and Willis",Thomas Underwood -844,3514,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Vicki Foster,Burch-White,Jose Mullen -156,9406,"The medical team demonstrated expertise and empathy. Despite the high-quality care, the outdated decor and uncomfortable beds made the stay less pleasant than it could have been.",Jesse Gordon,Burch-White,Anna Golden -321,1618,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Robert Pratt,Burch-White,Christine Chavez -556,1068,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Jenna Taylor,Burch-White,Danielle Andrews -51,8031,The hospital's commitment to patient safety was evident in their strict adherence to infection control measures. I felt reassured knowing that my well-being was a top priority for the medical team.,Scott Rivera,Burch-White,David Sawyer -55,7308,The hospital's billing process was confusing and left me with unexpected expenses. Transparent and clear billing practices are essential to avoid financial stress for patients already dealing with health issues.,Kelly Scott MD,Burch-White,Brianna Johnson -571,1186,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",Kelly Scott MD,Burch-White,Nancy Lee -107,7953,"The hospital provided top-notch medical care, and the facilities were modern and clean. The entire staff, from doctors to janitors, contributed to a positive and comfortable environment.",Sara Lopez,Burch-White,Jose Johnson -402,1029,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Mr. Justin Bryant,Burch-White,Rachel Vaughan -620,2441,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Kimberly Oliver,Burch-White,Nicole Mcdonald -211,5247,"The hospital provided comprehensive care, and the nursing staff was exceptional. Yet, the delayed response to calls for assistance was a minor inconvenience during my stay.",Courtney Walton,Burch-White,Taylor Smith -610,9372,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Marc Romero,Burch-White,Matthew Hansen -225,2142,"The hospital provided excellent care, and the nursing staff was compassionate. On the downside, the lack of coordination between shifts resulted in some confusion about my treatment plan.",Kayla Lawson,Burch-White,Dawn Nielsen -870,3976,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Kayla Lawson,Burch-White,Karen Walker -768,9212,"The hospital staff was caring and understanding, which made my stay more bearable. The facilities, though, could use some improvement.",Erin Oliver,Burch-White,Joshua Cook -478,3666,"I am grateful for the incredible care I received at the hospital. The medical team was skilled, and the cleanliness of the facilities exceeded my expectations.",Alex Anderson,Burch-White,Elizabeth Mata -272,9685,"I appreciate the hospital's commitment to cleanliness and hygiene. However, the lack of communication about changes in my treatment plan created unnecessary stress.",Joshua Brewer,Burch-White,Karen Henry -884,3927,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Kevin Warner,Burch-White,Anna Green -282,6611,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",Jasmine Perkins,Burch-White,Brian Montgomery -310,616,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Vicki Foster,Burch-White,George Allison -322,5533,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Rebecca Mckinney,Burch-White,Laura Cruz -339,7078,"The hospital's cleanliness standards were exceptional, and the nursing staff provided excellent care. However, the parking situation was inconvenient, and finding a spot was always a hassle.",Gabriela Garcia,Burch-White,Mr. Gregory Pitts -713,9853,"I had a mixed experience. While the doctors were competent, the waiting times were quite long. The facility was clean and organized.",Molly Dean,Burch-White,Brian Johnson -373,2240,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were clean and comfortable.",Lauren Williams,Burch-White,Elizabeth Green DDS -656,2586,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Steven Watson,Burch-White,Nathan Bailey DDS -619,3042,"The nursing staff was top-notch, and the cleanliness of the hospital was impressive. On the downside, the Wi-Fi was unreliable and frustrating.",Jonathan Lucas,Burch-White,Keith Smith -572,9262,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Amy Daniels,Burch-White,Joshua Villa -705,8421,"The medical staff's expertise and dedication to patient care were evident throughout my stay. However, the outdated hospital equipment raised concerns about the institution's commitment to staying current with medical advancements.",Kelly Massey,Burch-White,Deborah Leonard -584,4426,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Jonathan Decker,Burch-White,Allen Jackson -663,8243,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Kyle Campbell,Burch-White,Julia Combs -876,197,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Robert Haynes,Burch-White,Heidi Parker -787,3350,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alan Watkins,Burch-White,Jason Eaton -945,1961,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Ronald Hernandez Jr.,Burch-White,Jesus Myers -964,371,"The hospital had a warm and welcoming environment. The support from the nursing staff was exceptional, making my stay more pleasant.",Rick Herrera,Burch-White,Jordan Nelson -2,5067,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Kathy Smith,Mcneil-Ali,Gordon Thompson -124,1331,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Matthew Marks,Mcneil-Ali,Anthony Butler -983,3460,"The hospital's dedication to community outreach and health education was impressive. However, the outdated magazines in the waiting area could use an upgrade.",Joy Yoder,Mcneil-Ali,Oscar Allen -82,6933,"I'm grateful for the compassionate care I received at the hospital. The medical team was thorough in their approach, and the facilities were clean and comfortable.",Ashley Goodwin,Mcneil-Ali,Dennis Gray -299,7073,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Mr. Adrian Pittman II,Mcneil-Ali,Manuel Black -481,7424,"The hospital staff was courteous, and the rooms were clean and comfortable. Unfortunately, the noise level at night was quite disruptive, affecting my sleep.",Amy Daniels,Mcneil-Ali,Anthony Miller -682,6863,"I appreciated the hospital's efforts to create a patient-friendly atmosphere. The recreational activities and support groups provided a sense of community, making the hospital feel less clinical and more comforting.",Tina Wall,Mcneil-Ali,Gregory Bentley -494,1004,"I had a positive experience at the hospital. The staff was friendly, and the medical care was top-notch. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Isaac Walker,Mcneil-Ali,Paul Davidson -774,6702,"The hospital had a welcoming environment, and the staff was accommodating. The medical care was satisfactory, but the facilities could use some modernization.",Mary Owens,Mcneil-Ali,Holly Carter -163,583,"The hospital staff was responsive and caring. Yet, the outdated magazines in the waiting area and the lack of entertainment options made the long waits more tedious.",Kimberly Oliver,Mcneil-Ali,Amber Carter -816,5427,"My stay at the hospital was excellent. The medical team was compassionate, and the facility was clean and well-maintained.",James Cooper,Mcneil-Ali,Erin Mclean -973,1663,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Perez,Mcneil-Ali,Joseph Frazier -523,4622,"I encountered both positives and negatives during my hospital stay. The medical care was satisfactory, but the administrative processes were confusing and led to unnecessary stress.",Kevin Warner,Mcneil-Ali,Anna Wilkerson -291,9046,"The hospital staff was professional, and the facilities were well-maintained. Unfortunately, the billing process was confusing, and it took a long time to sort out the financial aspects of my stay.",James Allen,Mcneil-Ali,Sally Hudson -827,5858,The hospital facilities were modern and well-equipped. The only drawback was the lack of communication regarding the daily schedule and procedures.,Kathleen Evans,Mcneil-Ali,James Warner -660,9563,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",David Lopez,Mcneil-Ali,John Silva -769,9563,"I had a positive experience overall. The medical team was knowledgeable, and the facilities were well-maintained. However, the food options were limited and not very appetizing.",David Lopez,Mcneil-Ali,John Silva -801,4792,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michelle Williams,Brown-Golden,John Silva -596,1088,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Tracy Garza,Mcneil-Ali,Brandon Thornton -612,1123,"The nursing staff was attentive and caring, and the hospital's commitment to patient well-being was evident. However, the paperwork process was cumbersome.",Michael Miranda,Mcneil-Ali,Brian Charles -532,3341,"I appreciated the efforts of the hospital staff in ensuring my well-being. The medical care was satisfactory, but the facilities could use some updating for a more modern and comfortable experience.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -683,3341,"The hospital's dedication to innovation was evident in the advanced technology used for diagnostics. My treatment felt personalized, and I left with confidence in the medical team's expertise.",Michael Gibbs,Mcneil-Ali,Cheryl Burke -886,1809,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Jason Merritt,Mcneil-Ali,Jeffrey Nelson -407,968,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Dean Hart,Mcneil-Ali,Jonathan Herring -416,9621,"The hospital had a comfortable environment, and the medical team was thorough in their examinations. Unfortunately, the Wi-Fi was slow and unreliable.",Sarah Brewer,Mcneil-Ali,Mary Pacheco -428,1915,"My stay at the hospital was fantastic. The medical team was compassionate, and the room had a beautiful view. I couldn't have asked for better care.",Jennifer Walker,Mcneil-Ali,Rachel Bray -462,5215,"I had a positive experience at the hospital overall. The medical team was attentive, and the support staff made every effort to ensure my comfort.",Brittany Harris,Mcneil-Ali,Lorraine Key -719,5931,"The medical care was excellent, and the amenities were good. Unfortunately, the lack of communication between departments caused some issues with my treatment plan.",Renee Young,Mcneil-Ali,Benjamin King -605,6008,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Steven Rivera,Mcneil-Ali,Edward Reed -872,6008,"The medical team was attentive and answered all my questions. However, the lack of personalized attention from the support staff left me feeling overlooked during my stay.",Steven Rivera,Mcneil-Ali,Edward Reed -812,6599,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Candice Manning,Mcneil-Ali,Mike Garcia -587,3413,"The hospital staff was responsive and caring. However, the lack of privacy in the shared rooms was a drawback.",Raymond Berry,Mcneil-Ali,Stacy Moody -621,8512,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Lisa Esparza,Mcneil-Ali,Julie Becker -649,3036,"I had a generally positive experience at the hospital. The medical care was excellent, but the noise from other patients was disruptive.",Jonathan Baker,Mcneil-Ali,Rachel Schroeder -960,5083,"The administrative staff at the hospital were efficient, and the check-in process was smooth. However, the billing department made errors that took weeks to rectify.",Destiny Lloyd,Mcneil-Ali,Douglas Yates -858,4010,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Pamela Hendrix,Mcneil-Ali,Michael Myers -887,3448,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Heather Anderson,Mcneil-Ali,Thomas Klein -940,4812,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Willie Gutierrez,Mcneil-Ali,Scott Wong -235,8678,"The hospital provided exceptional care, and the nursing staff was compassionate. However, the lack of communication about potential side effects of medications was a concern during my stay.",Kathy Smith,"Malone, Thompson and Mejia",Frank Rogers -7,4107,"The nurses were exceptional in providing personalized care. Unfortunately, the outdated facilities were a drawback, and the hospital could benefit from modernizing its infrastructure.",Heather Fisher,"Malone, Thompson and Mejia",Ellen Mccoy -788,4114,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Chase Mcpherson Jr.,"Malone, Thompson and Mejia",Kristi Cox -14,4985,"The hospital's staff demonstrated professionalism and empathy, making my stay more bearable. The cafeteria, though, lacked variety in food options, affecting the overall patient experience.",Christina Anderson,"Malone, Thompson and Mejia",Randy Anthony -728,4785,"The medical staff was professional and caring. The lack of privacy in the shared rooms, however, made the stay less comfortable.",Laura Hamilton,"Malone, Thompson and Mejia",Ronald James -40,8654,"The hospital's technology and equipment were state-of-the-art, contributing to an accurate diagnosis and effective treatment. The investment in modern medical technology positively impacted my recovery.",Joanne Hernandez,"Malone, Thompson and Mejia",Robert Wong -98,5875,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Kathy Watkins,"Malone, Thompson and Mejia",Rebecca Buchanan -734,4975,"The nursing staff was attentive and caring. The lack of a comfortable waiting area for family members, though, was disappointing.",Cathy Church,"Malone, Thompson and Mejia",Jeremy Johnson -289,5266,"The hospital provided excellent care, and the communication between the medical team and me was clear. However, the food options were limited and not very appetizing.",Megan Guzman,Vaughn PLC,Jeremy Johnson -154,6491,"The level of care I received from the nurses exceeded my expectations. However, the billing process afterward was confusing, and it took multiple calls to resolve the issues.",Tamara Potter,"Malone, Thompson and Mejia",Mark Morgan -594,6232,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Julie Walker,"Malone, Thompson and Mejia",Christopher Nguyen MD -784,6194,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",John Henderson,"Malone, Thompson and Mejia",Dr. Brittany Hill -598,7330,"I received outstanding care from the hospital staff. The facilities were state-of-the-art, but the cafeteria options were limited.",David Fisher,"Malone, Thompson and Mejia",Angela Osborn -292,5279,"The hospital staff went above and beyond to make me comfortable. The facilities were modern and clean, and the medical care exceeded my expectations.",Thomas Harrell,"Malone, Thompson and Mejia",Stephanie Blake -916,5090,"The hospital's emergency services were prompt and efficient. However, the follow-up care was not as thorough as I expected, leaving me with unanswered questions.",Jason Johnston,"Malone, Thompson and Mejia",Jordan Finley -328,3561,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Sean Best,"Malone, Thompson and Mejia",Pamela Martinez -675,359,"Kudos to the efficient and friendly nursing staff who made my recovery journey much smoother. The hospital's commitment to patient care is evident, and I left feeling grateful for the positive experience.",Ryan Gutierrez,"Malone, Thompson and Mejia",Mrs. Kristine Hall MD -641,7046,"The hospital staff was compassionate and caring, but the lack of clear signage made it challenging to navigate the large facility.",Catherine Howard,"Malone, Thompson and Mejia",Katelyn Ryan -896,4957,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Jason Merritt,"Malone, Thompson and Mejia",Autumn Cardenas -902,1782,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Amanda James,"Malone, Thompson and Mejia",Larry Mitchell -715,4213,"The hospital had a welcoming atmosphere, and the rooms were comfortable. However, the billing process was confusing and frustrating.",Tammy Hart,"Malone, Thompson and Mejia",Tracy Hill -564,9525,"The medical team was efficient and professional. However, the billing process was confusing and took a long time to resolve.",Jamie Wiley,"Malone, Thompson and Mejia",Charles Smith -625,4736,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Toni Caldwell,"Malone, Thompson and Mejia",Rebecca Delgado -1004,3573,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Krystal Webb,"Malone, Thompson and Mejia",Jose Wilson -828,9769,"The medical staff was efficient, and the hospital rooms were clean and comfortable. On the downside, the cafeteria food was bland, and the menu was repetitive.",Kristopher Wiley Jr.,"Malone, Thompson and Mejia",James Gutierrez -845,9444,"The hospital staff was compassionate, and the facilities were clean and comfortable. However, the lack of coordination between departments led to delays in my treatment.",Crystal Cruz,"Malone, Thompson and Mejia",Tammy Ware -797,323,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Angelica Houston,"Malone, Thompson and Mejia",Jacqueline Sanchez -949,3392,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Matthew Nelson,"Malone, Thompson and Mejia",Susan Watkins -269,9429,"The hospital provided excellent medical care, and the nursing staff was attentive and supportive. However, the lack of communication about the expected recovery timeline was a drawback.",Kathy Smith,"Jones, Brown and Murray",Samantha Woodard -15,4723,"I had an excellent experience with the dedicated nursing staff. Unfortunately, the outdated entertainment options for patients made the recovery period more tedious than necessary.",Christine Perkins,"Jones, Brown and Murray",Cheryl Lynch -17,1061,"The hospital's commitment to community outreach and education impressed me. However, the lack of adequate parking facilities added unnecessary stress to my visits.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -317,1061,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Ann Joseph,"Jones, Brown and Murray",Angela Copeland -477,8671,"The hospital staff was outstanding. They were empathetic, caring, and made me feel at ease. However, the wait times were a bit too long, causing some frustration.",Alexis Nolan,"Jones, Brown and Murray",Karen Pruitt -41,8264,I was disappointed by the lack of follow-up care after my discharge. It left me feeling unsupported in my recovery journey. Comprehensive post-discharge care is vital for patients' overall well-being.,Sandra Porter,"Jones, Brown and Murray",Dustin Myers -644,7674,"The hospital provided exceptional care, but the billing process was confusing and frustrating. Clearer communication about costs would have been appreciated.",Sandra Porter,"Jones, Brown and Murray",Catherine Walsh -50,8664,"The hospital's facilities were outdated and in need of renovation. The environment did not feel conducive to healing, and modernization is essential to provide a comfortable and welcoming space for patients.",Chelsey Davis,"Jones, Brown and Murray",Emily Johnson -252,5219,"The nursing staff was exceptional, providing both medical expertise and emotional support. Unfortunately, the hospital's Wi-Fi connectivity was unreliable and frustrating.",Andrew Bates,"Jones, Brown and Murray",Lindsay Johnson -77,4563,"The hospital staff were accommodating and supportive, making my stay as comfortable as possible. The attention to detail and personalized care contributed to a positive experience.",Stephanie Vargas,"Jones, Brown and Murray",Bobby Hurst -642,4994,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of amenities for families made it difficult for my loved ones.",Alexander Jimenez,"Jones, Brown and Murray",Tara Murray -152,7133,"I encountered a mix of experiences during my stay. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays and disorganization.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -183,7133,"The hospital provided quality care, and the staff was accommodating. On the downside, the limited visitation hours made it challenging for family members to spend time with me.",Carla Miller,"Jones, Brown and Murray",Natalie Sanders -563,5223,"The hospital had a warm and welcoming atmosphere. The only downside was the noise, which made it difficult to rest at times.",Ronald Taylor,"Jones, Brown and Murray",Christine Jones -158,8765,"The facilities were clean, and the nurses were attentive to my needs. Unfortunately, the Wi-Fi was unreliable, making it challenging to stay connected with loved ones during my stay.",Michael Delgado,"Jones, Brown and Murray",Michelle Holmes -232,3758,"The hospital's medical team was attentive and thorough, ensuring a successful recovery. However, the limited availability of certain medical specialists was a drawback to an otherwise positive experience.",Ashley Young,"Jones, Brown and Murray",Jeffrey Bell -239,4232,I was disappointed with the lack of communication from the medical team. It felt like I was constantly in the dark about my treatment plan and prognosis.,Ivan Doyle,"Jones, Brown and Murray",Mason Phelps -549,6443,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Katherine Jones,"Jones, Brown and Murray",Jesse Cochran -298,8013,"I am grateful for the compassionate care I received during my hospital stay. The medical team was knowledgeable, and the facilities were comfortable.",Joe Mendoza,"Jones, Brown and Murray",Sheryl Hudson -312,9243,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Allison Steele,"Jones, Brown and Murray",Zachary Cantrell -857,950,"I had a mixed experience at the hospital. The medical care was good, but the lack of clear communication about the billing process created confusion and frustration.",Michael Watson,"Jones, Brown and Murray",Christopher Barron -761,1683,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Austin Alvarado,"Jones, Brown and Murray",Richard Gonzalez -396,4845,"I had a satisfactory experience. The medical care was good, but the parking situation at the hospital was inconvenient for both patients and visitors.",Jason Merritt,"Jones, Brown and Murray",Gregory Adams -452,1506,"The hospital's commitment to a holistic approach to healing was evident. They offered complementary therapies like art and music, contributing positively to my recovery.",Ryan Craig,"Jones, Brown and Murray",Lauren Williamson -466,4064,"The hospital had a friendly and supportive nursing staff. On the downside, the lack of clear communication about post-discharge care instructions was a bit concerning.",Andre Johnson,"Jones, Brown and Murray",Nicholas Stewart -474,9793,"The hospital provided excellent care, and the nursing staff was compassionate. However, the limited visiting hours made it difficult for my family to offer consistent support.",Renee Young,"Jones, Brown and Murray",Brett Stark -714,6816,"The nurses were amazing, providing excellent care. Unfortunately, the food options were limited and not very appetizing.",Matthew Perez,"Jones, Brown and Murray",Lauren Johnson -678,9840,"The hospital's commitment to patient safety was evident in their strict adherence to hygiene protocols. I felt secure throughout my stay, and the staff's dedication to cleanliness did not go unnoticed.",Kristopher Wiley Jr.,"Jones, Brown and Murray",Jason Shepard -971,2384,I appreciated the hospital's emphasis on patient education. The doctors took the time to explain my condition and treatment options in a way that was easy to understand.,Derek Edwards,"Jones, Brown and Murray",Joshua Berry -848,1427,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Gary Baldwin,"Jones, Brown and Murray",Virginia Morgan -984,3919,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Gary Baldwin,"Jones, Brown and Murray",Stephanie Powers -868,2294,"The hospital had state-of-the-art equipment, and the medical staff was highly professional. However, the lack of parking space and confusing signage made navigating the facility a challenge.",Sarah Lane,"Jones, Brown and Murray",Michael Spears -975,7060,"The hospital's dedication to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Katrina Torres,"Jones, Brown and Murray",Michael Gray -379,4988,"The cleanliness of the hospital impressed me, and the medical staff took the time to explain procedures thoroughly.",Kathy Smith,"Burke, Griffin and Cooper",Justin Peterson -227,1604,"The hospital's facilities were clean and well-maintained, creating a comfortable environment for recovery. However, the limited options for dietary restrictions made it challenging to find suitable meals.",Ashley Goodwin,"Burke, Griffin and Cooper",Victor Thomas -12,9911,"I encountered a few hiccups in the billing process, which caused unnecessary stress during an already challenging time. Improved transparency and communication regarding financial matters are essential.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -717,9911,"The hospital environment was calming, and the support staff was helpful. On the downside, the Wi-Fi connection was unreliable.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -811,9911,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Andrew King,"Burke, Griffin and Cooper",Ashley Johnson -1000,730,"The hospital's dedication to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Thomas Middleton,"Burke, Griffin and Cooper",Erik Wood -25,1827,"The hospital's commitment to diversity and inclusion was evident in their culturally sensitive approach to patient care. However, the administrative delays in processing paperwork created unnecessary stress during my admission.",Mr. Adrian Pittman II,"Burke, Griffin and Cooper",Stanley Crane -34,1134,"The medical team at the hospital demonstrated exceptional professionalism. They took the time to explain my treatment plan thoroughly, and I felt confident in their expertise. A commendable level of care.",Rebecca Wallace,"Burke, Griffin and Cooper",Luke Lowery -39,5070,"I had a mixed experience at the hospital. While some nurses were exceptional, others seemed disinterested in providing quality care. Consistency in the level of care is crucial for patient satisfaction.",Jenna Taylor,"Burke, Griffin and Cooper",Peter Bishop -186,4840,"The hospital staff was friendly and professional, providing excellent medical care. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",April Bailey,"Burke, Griffin and Cooper",Jonathon Perez -56,8058,I was disappointed with the lack of coordination among the different departments at the hospital. It resulted in unnecessary delays in my treatment and a less-than-optimal overall experience.,Renee Brown,"Burke, Griffin and Cooper",Robert Williams -593,2785,"The hospital's medical team was efficient and professional. However, the lack of communication about my treatment plan was frustrating.",Matthew Perez,Shea LLC,Robert Williams -631,6535,"The hospital's medical expertise is commendable. Unfortunately, the bureaucratic red tape made the admission process lengthy and tedious.",Amy Daniels,"Burke, Griffin and Cooper",Tamara Smith -329,7204,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Tanya Mccarty,"Burke, Griffin and Cooper",Mark Fisher -103,6940,"The hospital staff was incredibly supportive during my stay. They made sure I felt comfortable and well-cared for, which made a significant difference in my recovery.",Lisa Wilkinson,"Burke, Griffin and Cooper",Catherine Anderson -541,9263,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Alexander Jimenez,"Burke, Griffin and Cooper",David Carlson -143,5602,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Ryan Thomas,"Burke, Griffin and Cooper",Beth Perry -202,6847,"I was impressed by the hospital's state-of-the-art equipment and technology. However, the lack of communication about the treatment plan was a bit frustrating at times.",Sabrina Rodriguez,"Burke, Griffin and Cooper",Evelyn Bowman -177,3401,"The hospital staff was professional and caring, providing excellent medical care. However, the cafeteria food was subpar, and the options were limited.",Patricia Stewart,"Burke, Griffin and Cooper",Alex Patel -346,3431,"The medical team was thorough and efficient in their care. However, the lack of available amenities for families made it challenging for my loved ones during the extended hospital stay.",Patricia Stewart,"Burke, Griffin and Cooper",Melissa Weaver -421,3942,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Burke, Griffin and Cooper",Jason Bailey -829,7313,"I had a mixed experience at the hospital. The doctors were skilled, but the administrative processes were confusing, leading to frustration and delays.",James Cooper,"Burke, Griffin and Cooper",James Nunez -201,174,"The hospital's medical team was outstanding, providing thorough explanations and personalized care. On the downside, the cafeteria food left much to be desired in terms of taste and variety.",Julie Walker,"Burke, Griffin and Cooper",Michael Morgan -881,9736,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Joseph Jackson,"Burke, Griffin and Cooper",Stephanie Garza MD -371,4453,"I had a positive overall experience at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the lack of a dedicated support system for mental health was a missed opportunity.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -771,4453,"I was disappointed with the cleanliness of the hospital. The staff was friendly, but the lack of hygiene was a concern for me.",Teresa Brown,"Burke, Griffin and Cooper",Kara Gilbert -251,1467,"The hospital's cleanliness and hygiene standards were impressive. However, the communication between different departments could be more streamlined for better coordination.",Joseph Jones,"Burke, Griffin and Cooper",Sarah Sanders -261,8074,"The hospital's medical team was skilled, and the facilities were modern. However, the administrative processes were confusing, leading to delays in my treatment.",Sheri Howard,"Burke, Griffin and Cooper",Kimberly Cruz -323,6418,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Michael Watson,"Burke, Griffin and Cooper",Matthew Little -331,1505,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable, and the support staff was friendly. The food, however, left much to be desired.",Charles Kim,"Burke, Griffin and Cooper",Brandy Cross -342,5479,"The hospital's infrastructure was modern and well-maintained. However, the lack of coordination between different departments led to delays in my treatment.",Zachary Campbell,"Burke, Griffin and Cooper",Timothy Martinez -465,7492,"The hospital staff was accommodating, and the facilities were well-maintained. Unfortunately, the limited TV channels in the patient rooms made leisure time less enjoyable.",Karl Bruce,"Burke, Griffin and Cooper",Kyle Rivera -486,7341,"The hospital staff was compassionate, and the doctors were thorough in their examinations. On the downside, the waiting area was crowded, making it uncomfortable for patients and their families.",Jonathan Lucas,"Burke, Griffin and Cooper",Jill Knight -498,4774,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were slow and disorganized, leading to some frustration.",Gary Swanson,"Burke, Griffin and Cooper",Zachary Williams -950,3712,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Jonathan Obrien DDS,"Burke, Griffin and Cooper",Melanie Richardson -688,5683,The hospital's state-of-the-art equipment and modern facilities were reassuring. The medical team's expertise and dedication to patient care made my stay as comfortable as possible.,Ryan Jarvis,"Burke, Griffin and Cooper",James Jones -655,9,"The hospital staff was friendly and helpful, but the lack of parking spaces was a major inconvenience for both patients and visitors.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -889,9,"The hospital had a comforting atmosphere, and the medical staff was attentive. However, the lack of clear communication about the post-discharge care plan was a source of frustration.",Emily Lucas,"Burke, Griffin and Cooper",Sharon Perez -731,2881,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Richard Garcia,"Burke, Griffin and Cooper",Valerie Simpson -958,5418,"I had a mixed experience at the hospital. While the medical care was top-notch, the waiting times were frustratingly long.",Derek Phillips,"Burke, Griffin and Cooper",Mark Sanders -383,6747,"The hospital had a friendly and supportive environment. Unfortunately, the discharge process was slow and took longer than expected.",Kathy Smith,"Wheeler, Bryant and Johns",Robert Turner -786,3839,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Teresa Frost,"Wheeler, Bryant and Johns",Darryl Martin -13,2185,"The hospital's state-of-the-art technology greatly contributed to the accuracy of my diagnosis. However, the lack of emotional support from the medical team made the overall experience less comforting.",Lauren Williams,"Wheeler, Bryant and Johns",Thomas Erickson -790,5488,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Christina Anderson,"Wheeler, Bryant and Johns",Kimberly Perry -735,6764,"The hospital had a clean and organized environment. The constant beeping of machines in the ward, however, was disruptive to my rest.",Natalie Mitchell,"Wheeler, Bryant and Johns",Michael Bennett -737,6019,"The hospital had a welcoming atmosphere, and the medical staff was efficient. The limited menu options in the cafeteria, however, were a downside.",Victor Dean,"Wheeler, Bryant and Johns",Alex Maynard -616,3288,"The hospital staff was compassionate and understanding. However, the food options were limited and not very appetizing.",Tasha Griffin,"Wheeler, Bryant and Johns",Tyler Jackson -170,1652,"The nursing staff was caring, making my hospital stay more bearable. However, the outdated TV in the room and limited channel options made leisure time less enjoyable.",Renee Brown,"Wheeler, Bryant and Johns",Christina George -148,5124,"The nursing staff was compassionate and attentive. However, the lack of communication between shifts caused some confusion about my treatment plan.",Elaine Page DVM,"Wheeler, Bryant and Johns",Lynn Koch -471,1860,"The hospital's commitment to patient safety was evident. However, the lack of clear signage made it challenging to find specific departments within the facility.",Aaron Graves,"Wheeler, Bryant and Johns",Peggy Moody -120,4804,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Lisa Brewer,"Wheeler, Bryant and Johns",Hannah Cruz -91,9652,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Michael Bennett,"Wheeler, Bryant and Johns",Martin Miller -112,918,"My hospital stay was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Kimberly Johnson,"Wheeler, Bryant and Johns",Marissa Dixon -122,7490,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Isaac Walker,"Wheeler, Bryant and Johns",Mr. Dustin Thomas -241,6881,"I appreciate the hospital's efforts in ensuring a safe and clean environment. The hygiene protocols were strictly followed, which gave me peace of mind.",Danielle Herring,"Wheeler, Bryant and Johns",Michael Caldwell -368,6157,"The nursing staff was compassionate and attentive, ensuring my needs were met. Unfortunately, the administrative processes were a bit convoluted, causing confusion and delays in my treatment.",Jennifer Evans,"Wheeler, Bryant and Johns",Brian Duncan -214,9505,"The medical team at the hospital was efficient and caring, ensuring a smooth recovery process. However, the lack of privacy in shared patient rooms was a drawback to an otherwise positive stay.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -397,9505,"The hospital had a welcoming atmosphere, and the medical team was thorough in their examinations. However, the wait times for appointments were long.",Teresa Brown,"Wheeler, Bryant and Johns",Amy Pierce -533,1043,"The hospital staff was accommodating and understanding of my needs. However, the cleanliness of the facilities was questionable, and that detracted from an otherwise positive experience.",Joseph Johnson,"Wheeler, Bryant and Johns",David Wilson -268,4175,"The hospital's medical team was dedicated and caring, providing personalized attention. However, the administrative delays in processing paperwork were frustrating.",Logan Diaz,"Wheeler, Bryant and Johns",Courtney Moore -418,6723,"The cleanliness and hygiene standards at the hospital were commendable. However, the lack of variety in the hospital menu made meals repetitive.",Lisa Anderson,"Wheeler, Bryant and Johns",Chad Pruitt -779,9942,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Andre Johnson,"Wheeler, Bryant and Johns",Marisa Jennings -503,3150,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of clear communication about the treatment plan was a bit frustrating.",William Soto,"Wheeler, Bryant and Johns",Gary Smith -566,8543,"The hospital provided excellent care, but the lack of communication between the departments led to some misunderstandings.",Johnny Morgan,"Wheeler, Bryant and Johns",Victor Davidson -934,1910,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Raymond Berry,"Wheeler, Bryant and Johns",Stephanie Pratt -738,3181,"The nursing staff provided excellent care, and the hospital was well-maintained. The noise from construction outside, though, made it difficult to rest.",Edgar Harris,"Wheeler, Bryant and Johns",Holly Sanford -854,9269,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Amy Payne,"Wheeler, Bryant and Johns",Carl Stone -915,2303,"The hospital had a comforting ambiance, and the nursing staff was exceptional. Unfortunately, the outdated entertainment options made the stay a bit dull.",Amber Parker MD,"Wheeler, Bryant and Johns",Malik Serrano -3,4858,"Unfortunately, my stay was marred by a lack of cleanliness in the facilities. It's essential for the hospital to maintain a hygienic environment to prevent infections and ensure patient well-being.",Teresa Frost,Vaughn PLC,Donald Sparks -16,6120,"The hospital's commitment to holistic care was evident in the inclusion of alternative therapies. However, the limited availability of these services hindered my access to complementary treatments.",Robert Davis,Vaughn PLC,Melissa Davis -759,9905,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Robert Davis,Vaughn PLC,Paul Henry -506,2629,"I had a mixed experience at the hospital. The medical care was exceptional, but the noise level in the ward was higher than expected, affecting my rest.",Jesse Gordon,Vaughn PLC,Justin Robertson -762,2974,"My stay at the hospital was excellent. The medical team was professional, and the facilities were clean and comfortable.",Monique Hall,Vaughn PLC,Gregory Baker -324,508,"I had a positive experience overall at the hospital. The medical staff was knowledgeable, and the facilities were well-maintained.",Elizabeth Henderson,Vaughn PLC,Monica Hampton -71,7675,"The hospital staff were professional and caring. They took the time to explain my treatment plan and address any concerns I had, making me feel confident in the care I was receiving.",Rebecca Hernandez,Vaughn PLC,Jacob Gibson -355,7974,"The hospital's medical team was thorough in their examinations and treatments. However, the lack of a proper explanation of the billing process left me feeling confused and frustrated.",Benjamin Stevens,Vaughn PLC,Mitchell Hampton -78,4535,"My stay at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Craig Brooks,Vaughn PLC,Andrea Chavez -113,7127,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Connie Tucker,Vaughn PLC,Reginald Miller -128,7150,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Nathan Davis,Vaughn PLC,Rodney Clark -233,232,"I appreciate the hospital's dedication to patient well-being, and the facilities were modern and well-equipped. However, the administrative processes, particularly the billing, were confusing and time-consuming.",Ronald Taylor,Vaughn PLC,Matthew Russell -664,7198,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Lance Gonzalez,Vaughn PLC,Edward Sheppard -835,9650,"I had a positive experience with the medical team. The hospital rooms were comfortable, but the cafeteria food options were limited, and the quality was mediocre.",Miranda Hunt,Vaughn PLC,Michael Knight -406,1481,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Cristina Ortega,Vaughn PLC,Matthew Barton -810,7433,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Danielle Herring,Vaughn PLC,Beth Williams -775,6072,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of personal attention from the staff was disappointing.",Amy Smith,Vaughn PLC,Michael Lindsey -180,755,"The medical team was knowledgeable, and the facilities were clean. However, the lack of privacy curtains in the shared rooms affected my sense of personal space.",Carol Sanchez,Vaughn PLC,Karen Butler -187,9428,"The nursing staff was attentive and caring, making my hospital stay more comfortable. However, the lack of a bedside table made it challenging to keep personal items organized.",Vickie Collins,Vaughn PLC,Heather Smith -624,1210,"I received prompt and efficient care at the hospital. The only drawback was the outdated decor in the rooms, which could use a facelift.",Erin Oliver,Vaughn PLC,Brendan Cross -823,107,"The hospital staff was friendly and professional. The cleanliness and hygiene standards were impressive. However, the discharge process felt rushed and disorganized.",Logan Diaz,Vaughn PLC,Allison White -441,2238,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. However, the administrative staff seemed overwhelmed, leading to delays in paperwork.",Jesus Snyder,Vaughn PLC,Angela Gomez -495,3777,"The hospital staff was caring and attentive. The facilities were clean, and the medical care was excellent. However, the noise level in the ward was higher than expected, affecting my rest.",Michael Watson,Vaughn PLC,Mrs. Kelly Berry DVM -333,7583,"I appreciate the hospital's effort to maintain a clean environment. The janitorial staff did an excellent job. On the downside, the waiting times for tests were longer than expected.",Christopher Webster,Vaughn PLC,Lorraine Scott -608,3870,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Gabriela Garcia,Vaughn PLC,Erica Walker -360,9276,"I appreciate the hospital's commitment to patient well-being. However, the lack of a designated quiet area for relaxation and meditation made it difficult to find moments of peace during my stay.",Lori Burns,Vaughn PLC,Ian Brooks -865,5659,"The hospital staff was friendly and efficient. The cleanliness and hygiene were impressive. Unfortunately, the Wi-Fi was unreliable, making it difficult to stay connected with loved ones.",Lauren Williams,Vaughn PLC,Michael Cook -377,4,I am grateful for the attentive care I received during my stay. The hospital environment was calm and conducive to healing.,Mark Vang,Vaughn PLC,Mrs. Brandy Flowers -424,6978,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",Amy Bryant,Vaughn PLC,Paige Young -484,364,"The hospital staff was friendly and attentive. The facilities were clean, and the medical care was top-notch. However, the cafeteria food was subpar, and more diverse options would be appreciated.",Matthew Ward,Vaughn PLC,Douglas Myers -639,5729,"The hospital provided great care, but the lack of communication between different departments led to some confusion about my treatment plan.",Matthew Perez,Vaughn PLC,Hector Barajas -711,3086,"My stay at the hospital was outstanding. The medical team was skilled, and the facilities were top-notch. I felt well taken care of.",Jamie Marks,Vaughn PLC,Bryan Newton -258,81,"I had a mixed experience at the hospital. The medical care was adequate, but the lack of privacy in the shared rooms made it challenging to rest and recover.",Teresa Frost,Rose Inc,Douglas Crawford -130,4786,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Michael Morales,Rose Inc,Olivia Walsh -599,726,"The hospital provided excellent medical care, but the lack of privacy in the shared rooms was a downside.",Joy Yoder,Rose Inc,Thomas Rodriguez -27,9062,"The hospital's commitment to patient privacy and confidentiality was reassuring. However, the lack of communication about the potential side effects of prescribed medications left me feeling uninformed about my treatment plan.",Doris Rodriguez,Rose Inc,Chelsea Miller -651,6746,"The hospital staff was compassionate and understanding, but the lack of clear communication about my treatment plan was frustrating.",Victor Dean,Rose Inc,Scott Murillo -697,6964,The hospital's commitment to community outreach and health education was admirable. It reflected a genuine desire to improve the overall well-being of the community beyond just treating illnesses.,Rebecca Wallace,Rose Inc,Gloria Taylor -712,1120,"The hospital staff was friendly and compassionate. However, the noise level in the ward made it challenging to rest properly.",Nicole Keith,Rose Inc,Anthony Steele -990,5456,"The hospital's commitment to continuous improvement was evident in the ongoing renovations. However, the construction noise during my stay was bothersome.",Chelsey Davis,Rose Inc,Tracy Coleman -681,6915,"The medical team was fantastic, providing top-notch care. However, the lack of communication between shifts led to misunderstandings about my treatment plan. Coordination needs improvement.",Shelley Cobb,Rose Inc,Chloe Scott -64,3983,"I had a mixed experience at the hospital. While the medical care was satisfactory, the administrative process was confusing, and it took a long time to get answers to my questions.",Amy Daniels,Rose Inc,Doris Bray -420,6895,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Amy Daniels,Rose Inc,John Lewis -65,886,"The hospital staff were friendly and empathetic. They made me feel heard and supported, which greatly contributed to my overall positive experience during a challenging time.",Elaine Page DVM,Rose Inc,Robert Trevino -479,2975,"The hospital atmosphere was welcoming, and the nurses were always available to address my concerns. However, the billing process was confusing, and it took a while to sort out.",Andrew Bates,Rose Inc,Amy Soto -115,6629,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Alexander Jimenez,Rose Inc,Kathy Campbell -141,9908,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Robert Clements,Rose Inc,Michelle Young -164,5152,"The medical team was knowledgeable, and the facilities were clean. Unfortunately, the loud announcements over the intercom were disruptive and made it challenging to rest.",Lance Gonzalez,Rose Inc,Matthew Williams -948,1785,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Leslie Williams,Castaneda-Hardy,Matthew Williams -179,4416,"I appreciate the dedication of the hospital staff in ensuring my well-being. Nonetheless, the lack of variety in the hospital menu made the dining experience monotonous.",Erin Ramirez,Rose Inc,April Bridges -736,118,"The medical team was thorough, and the facilities were modern. Unfortunately, the lack of communication about my treatment plan was frustrating.",Vickie Collins,Rose Inc,Martha Franklin -555,4964,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Rhonda Diaz,Rose Inc,Kevin King MD -220,8531,"I appreciate the hospital's commitment to patient well-being, and the medical staff was attentive. However, the administrative processes, especially the discharge paperwork, were time-consuming and confusing.",Jo Beard,Rose Inc,Russell Mata -559,2421,"My stay at the hospital was excellent. The medical team was responsive, and the facilities were clean and comfortable.",Kayla Lawson,Rose Inc,Jennifer Davidson -755,5775,"The doctors were knowledgeable, and the hospital had a clean environment. The lack of privacy in the shared rooms, however, was a drawback.",Yvonne Jacobs,Rose Inc,Cassandra Chan -250,9873,"I felt like a priority at the hospital, thanks to the attentive medical staff. However, the lack of communication about the potential side effects of my medication was concerning.",Dustin Griffin,Rose Inc,Chad Nguyen -255,8276,"The hospital's medical team was knowledgeable and efficient, but the lack of clear communication about my treatment plan left me feeling anxious and uncertain.",Kyle Campbell,Rose Inc,Breanna Nielsen -414,3056,"The nursing staff at the hospital was compassionate and supportive. However, the billing process was confusing and took a while to resolve.",April Shea,Rose Inc,Tamara Suarez -279,7844,"I had a positive experience overall at the hospital. The nursing staff was caring and attentive, and the facilities were modern and well-equipped.",Tara Payne,Rose Inc,Bridget King -306,3129,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",Victoria Chavez,Rose Inc,Gary Robinson -903,3200,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jason Johnston,Rose Inc,Melissa Malone -577,6289,"The hospital staff was efficient, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Edgar Harris,Rose Inc,Megan Allison -457,4724,"The hospital's commitment to cleanliness was evident. However, the lack of greenery and natural light in the patient rooms made the environment feel a bit sterile.",Karen Klein,Rose Inc,Brendan Garrett -838,6450,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of coordination between departments led to delays in my treatment.",Sara Newman,Rose Inc,Ashley Vincent -825,5980,"The hospital provided excellent care, and the doctors were thorough in their examinations. However, the parking situation was inconvenient, and the fees added up quickly.",Eric Patton,Rose Inc,Shane Drake -704,8255,I appreciated the hospital's emphasis on preventive care and wellness. The educational materials provided valuable insights into maintaining a healthy lifestyle beyond just treating illnesses.,Mary Medina,Rose Inc,Daniel Barrett -745,5250,"The medical care was exceptional, and the hospital was well-equipped. The noisy neighbors in the shared room, though, affected my ability to rest.",Kristin Phillips,Rose Inc,Ryan Espinoza -891,5725,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Andrew Miller,Rose Inc,Allison Woods -925,9446,"The hospital's facilities were impressive, and the medical staff was professional. However, the lack of communication about my discharge plan caused some anxiety.",Joshua Guerrero,Rose Inc,Douglas Moore -364,6471,"The nursing staff provided excellent care, and the medical facilities were modern and well-equipped. However, the lack of coordination between different departments led to delays in my treatment plan.",Teresa Frost,Taylor and Sons,David Johnson -470,8814,"The hospital staff was compassionate, and the facilities were modern. However, the lack of Wi-Fi in the patient rooms made it challenging to stay connected with loved ones.",Robert Davis,Taylor and Sons,Rebecca Young -32,1695,"I cannot thank the hospital staff enough for their kindness and dedication. The doctors were knowledgeable, and the nurses made sure I felt supported every step of the way. A truly positive experience.",Shawn Bryant,Taylor and Sons,Cameron Ross -38,8701,The hospital staff displayed genuine empathy and compassion. It made a significant difference in my overall experience. I felt like more than just a patient; I felt cared for as an individual.,Ryan Curry,Taylor and Sons,Adam Lyons -45,9499,My experience at the hospital was overshadowed by the unavailability of essential medications. This oversight significantly impacted my recovery and raised concerns about the hospital's pharmacy management.,Dustin Perez,Taylor and Sons,Tammy Adams -147,9499,"My stay at the hospital was a breeze. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout.",Dustin Perez,Taylor and Sons,Tammy Adams -60,9657,"The medical staff at the hospital were incredibly attentive and supportive during my stay. The facilities were top-notch, making my recovery comfortable and smooth.",Elizabeth Henderson,Taylor and Sons,Shane Colon -62,5353,"I'm grateful for the exceptional care I received at the hospital. The doctors were thorough in explaining my condition, and the compassionate nurses made my recovery a positive experience.",Mark Martin,Taylor and Sons,Tanya Robinson -536,7640,"The hospital staff was exceptional in their care and attention. The facilities were modern and clean, contributing to a positive overall experience during my stay.",Maria Thompson,Taylor and Sons,Samantha Murray -560,9335,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the waiting times were a bit frustrating.",Shawn Ellis,Taylor and Sons,Gloria Kelly -951,1760,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Logan Hansen,Taylor and Sons,Andrea King -109,4728,"The hospital staff was attentive and compassionate, making my stay more bearable. However, the long wait times for certain procedures were a significant drawback to my overall experience.",Christie Kelly,Taylor and Sons,Tricia Wells -172,1157,"The hospital staff was friendly and caring, creating a positive atmosphere. However, the lack of proper signage made it challenging to navigate the large hospital building.",Lindsay Martinez,Taylor and Sons,Chelsea Henderson -131,5704,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Elaine Medina,Taylor and Sons,Daniel Palmer -138,4318,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Lisa Wallace,Taylor and Sons,Shelby Brown -188,5469,"I received quality care from the medical team, and the facilities were clean. However, the lack of a designated relaxation space for patients was a missed opportunity.",Robert Clements,Taylor and Sons,Kristine Wilson -589,6323,"The hospital provided top-notch medical care, and the facilities were modern and comfortable. However, the parking situation was inconvenient.",Elizabeth Meyer,Taylor and Sons,Denise Tanner -161,7224,"The hospital staff was friendly and accommodating, but the lack of transparency in billing was frustrating. Clearer communication about costs would have improved the overall experience.",Melissa Conway,Taylor and Sons,James Johnson -165,7782,"The nursing staff was fantastic, providing emotional support during a challenging time. However, the lack of aftercare information and resources was a downside.",Linda Morris,Taylor and Sons,Dr. Christian Lee -888,8978,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Courtney Walton,Taylor and Sons,Miss Holly Freeman -288,198,"I had a positive experience overall. The medical staff was competent, and the facilities were clean. The only downside was the noisy environment, which made it challenging to rest.",Nathan Smith,Taylor and Sons,Lori Anderson -561,4619,"The hospital staff was compassionate, but the outdated facilities made the overall experience less pleasant.",Michelle Williams,Taylor and Sons,Thomas Long -607,4584,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Katherine Jones,Taylor and Sons,Charles Anderson -320,8133,"I had a mixed experience at the hospital. The medical care was good, but the facilities were outdated and in need of renovation.",David Lopez,Taylor and Sons,Mr. Matthew Murray -325,5116,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Melissa Paul,Taylor and Sons,Sarah Calhoun -352,4457,"The hospital's medical team was dedicated to providing quality care. Unfortunately, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Madison Hardin,Taylor and Sons,Jonathan Bryant -690,4457,"The hospital's focus on holistic care, including mental health support, was a pleasant surprise. The counseling services provided added a valuable dimension to my recovery journey.",Madison Hardin,Taylor and Sons,Jonathan Bryant -427,4855,"I had a mixed experience. The medical care was good, but the hospital's administrative processes were confusing and time-consuming.",Anthony Phillips,Taylor and Sons,Lindsay Oneill -963,821,My hospital experience was marred by the unavailability of essential medications. This created unnecessary stress during my recovery.,Jared Diaz,Taylor and Sons,Laura Schmidt -443,9105,"I appreciated the personalized care I received from the hospital staff. They took the time to explain procedures and answer my questions, making me feel well-informed.",Carolyn Clark,Taylor and Sons,Michael Conway -454,2181,"The hospital staff was friendly and attentive, creating a positive atmosphere. However, the lack of clear signage made it challenging to navigate the hospital's expansive layout.",Patrick Williams,Taylor and Sons,Misty Palmer -665,3853,"The hospital's cleanliness and organization were impressive, but the lack of a play area for children made the stay challenging for families.",Brittany Harris,Taylor and Sons,Sandra Robinson -475,369,"My stay at the hospital was fantastic. The doctors were knowledgeable, and the nurses were very kind and supportive. The facilities were top-notch, making my recovery comfortable.",Steven Rivera,Taylor and Sons,Eric Price -550,6966,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",William Soto,Taylor and Sons,Shane Franklin -535,1930,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Kathryn Johnson,Taylor and Sons,Felicia Patterson MD -548,4522,"My hospital stay was marked by excellent medical care and a supportive nursing staff. However, the outdated facilities could use some renovation to provide a more comfortable environment for patients.",Tammy Hart,Taylor and Sons,Lindsay Evans -569,7243,"I had a challenging experience at the hospital. The medical care was satisfactory, but the administrative process was a nightmare.",Jessica Matthews,Taylor and Sons,Julie Patel -699,219,The hospital's commitment to sustainability and eco-friendly practices was evident. It was refreshing to see an institution in the healthcare sector taking steps to reduce its environmental impact.,Mary Mahoney,Taylor and Sons,Thomas Lopez -864,7999,"I can't express my gratitude enough for the excellent care I received. The medical team was exceptional, but the noise from the construction outside my room was unbearable.",Abigail Fuller,Taylor and Sons,Amy Townsend -653,6185,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Donna Mcintyre,Taylor and Sons,Jessica Brown -882,1628,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Tamara Potter,Taylor and Sons,Christopher Bray -574,7162,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Teresa Frost,Walton LLC,Kelsey Mills -469,3085,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were confusing, leading to delays in my treatment.",Joy Yoder,Walton LLC,Luke Lee -546,7801,"The hospital staff was understanding and accommodating, contributing to a positive experience during my stay. However, the outdated facilities could use some improvement for a more modern and comfortable environment.",Ashley Goodwin,Walton LLC,Teresa Zimmerman -36,3263,"I was pleasantly surprised by the quality of food provided at the hospital. It exceeded my expectations, and the dietary staff accommodated my special requests. A positive aspect of my stay.",Todd Mccormick,Walton LLC,Shannon Long -46,5926,"The hospital's physical therapy team was outstanding. They tailored my exercises to my needs, monitored my progress closely, and played a crucial role in expediting my recovery. Highly commendable.",Renee Hicks,Walton LLC,Jonathan Sanford -49,9630,"I experienced a delay in receiving test results, causing anxiety during an already stressful time. Timely communication of results is crucial for patients' peace of mind and overall well-being.",Gerald Smith,Walton LLC,Patrick Cook -89,1810,"The hospital staff were friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable and efficient, contributing to a smooth recovery.",Shelley Cobb,Walton LLC,Larry Herrera -215,1774,"I had a satisfactory experience at the hospital, with the medical team addressing my concerns promptly. Yet, the limited options for dietary restrictions made it challenging to find suitable meals.",Amy Daniels,Walton LLC,Christopher Robinson -70,6140,"My experience at the hospital was a rollercoaster. The medical care was excellent, but the lack of coordination among different departments led to confusion and delays in my treatment.",Kelsey Dillon,Walton LLC,Ryan Jenkins -83,4946,"The hospital staff were accommodating, and the medical team provided excellent care. However, there were issues with the billing process that added unnecessary stress to my overall experience.",Richard Carter,Walton LLC,Rodney Zimmerman -450,5994,"The hospital had a comforting environment, and the medical team was proactive in addressing my concerns. However, the limited visiting hours were a drawback for family support.",Natalie Browning,Walton LLC,Nathan Jackson -400,5638,"The hospital staff was kind and attentive. However, the outdated hospital gowns made me feel uncomfortable during my stay.",Linda Morris,Walton LLC,Henry Wagner -173,3285,"The medical team was attentive, and the facilities were clean. Unfortunately, the lack of natural light in the rooms made the environment feel a bit dreary.",Cristina Ortega,Walton LLC,Kevin Daniel -741,3284,"The nursing staff was compassionate, and the hospital had a modern feel. The slow response time for requests, though, was a drawback.",James Cooper,Walton LLC,Matthew Davis -676,7976,"The hospital's atmosphere was warm and welcoming, but the outdated infrastructure was a letdown. The facility could benefit from some renovations to match the quality of care provided.",Joseph Jones,Walton LLC,Patrick Nelson -685,3873,"My stay was overshadowed by the lack of transparency in billing. Unexpected charges left me frustrated, and the financial aspect of the hospital's services needs to be more straightforward.",Megan Guzman,Walton LLC,Mrs. Karen Garza -425,2476,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Ryan Gutierrez,Walton LLC,Andrew Flores -348,6691,"The hospital's commitment to patient comfort was commendable, with spacious rooms and modern amenities. Nevertheless, the cafeteria hours were limited, and late-night snacks were hard to come by.",Casey Reyes,Walton LLC,Christina Barajas -362,5169,"The medical team at the hospital was professional and thorough in their care. Unfortunately, the lack of parking spaces for visitors made it inconvenient for my family during their visits.",Molly Dean,Walton LLC,Elizabeth Johnson -451,754,I was impressed by the hospital's commitment to patient education. The doctors took the time to explain my condition and treatment options in detail.,Melissa Garrett,Boyd PLC,Elizabeth Johnson -423,3215,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Louis Sullivan,Walton LLC,Alan Fields -614,5326,"My stay at the hospital was fantastic. The nurses were kind and attentive, and the facilities were clean and comfortable.",Patrick Williams,Walton LLC,Mariah Dalton -456,3693,I had a challenging experience at the hospital due to a mix-up in scheduling appointments. This caused delays in my treatment and added unnecessary stress to my recovery.,Kayla Hunter DDS,Walton LLC,Daniel Moreno -670,3693,"Unfortunately, my experience was marred by a lack of communication among the medical staff. It seemed like they were not on the same page, leading to some confusion about my treatment plan.",Kayla Hunter DDS,Walton LLC,Daniel Moreno -531,7407,"My hospital stay was comfortable, thanks to the attentive nursing staff and clean facilities. However, the lack of coordination between different departments created some communication gaps in my treatment.",Kyle Nichols,Walton LLC,Heather Austin -853,3439,"I had a positive experience overall. The nurses were caring, and the hospital facilities were clean. The only downside was the lack of variety in the meal options.",Kathryn Johnson,Walton LLC,Patrick Rodriguez -539,6244,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Aaron Johnson,Walton LLC,Phyllis Bell -966,1003,The hospital had a well-organized system in place for patient care. The medical team collaborated efficiently to provide comprehensive treatment.,Scott Barton,Walton LLC,Jonathan Moore -820,1162,"The hospital environment was welcoming, and the rooms were comfortable. Unfortunately, the food options were limited, and the quality was subpar.",Johnny White MD,Walton LLC,Kimberly Taylor -941,4353,"The hospital's medical care was top-notch, and the staff was compassionate. Unfortunately, the noise level in the shared rooms made it difficult to rest properly.",Julie Long,Walton LLC,Wendy Davis -4,5410,The hospital staff went above and beyond to make me feel comfortable and informed about my treatment. The positive attitude of the medical team greatly contributed to my overall well-being.,Matthew Marks,Little-Spencer,Kayla Hughes -725,3950,"The medical care was excellent, and the cleanliness was impressive. However, the receptionist at the front desk was unhelpful and unfriendly.",Michael Morales,Little-Spencer,John Jordan -326,1690,"I am grateful for the compassionate care I received during my hospital stay. The medical team was attentive, and the facilities were comfortable.",Shawn Bryant,Little-Spencer,Greg Webster -247,4182,"I had a mixed experience. The medical care was satisfactory, but the administrative delays in processing paperwork added unnecessary stress to my stay.",Sandra Porter,Little-Spencer,Valerie Willis -48,6822,"The hospital's support staff, including janitorial and administrative personnel, were friendly and helpful. Their positive attitude contributed to a more pleasant overall experience during my stay.",April Bailey,Little-Spencer,Nicole Lane -73,7696,"I had a frustrating experience at the hospital. The communication between the medical staff and me was unclear, leading to misunderstandings about my treatment plan. Improvement is needed in this area.",Maria Thompson,Little-Spencer,Terri Smith -74,8367,"The hospital provided exceptional care, and the nursing staff was attentive and kind. The well-organized approach to my treatment contributed to a positive overall experience.",Shawn Ellis,Little-Spencer,Tracy Dalton -372,3552,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Craig Brooks,Little-Spencer,Patrick Swanson -534,949,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Barbara Warner,Little-Spencer,Daniel Branch -818,949,"The hospital provided top-notch medical care. The nurses were friendly and efficient, making my recovery process smoother.",Barbara Warner,Little-Spencer,Daniel Branch -554,1374,"My hospital experience was a mix of positives and negatives. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uneasy and uninformed.",Trevor Cook,Little-Spencer,Justin Lewis -222,1749,"My overall experience at the hospital was positive, thanks to the dedicated medical team. Nevertheless, the outdated decor in the patient rooms could use a refresh for a more pleasant atmosphere.",Jesse Hall,Little-Spencer,Jake Matthews -106,2466,"My stay at the hospital was challenging. The medical care was adequate, but the lack of attention from the nursing staff left me feeling a bit neglected and frustrated.",Robert Chen,Little-Spencer,Christopher Taylor -327,7382,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Jackson,"Jones, Taylor and Garcia",Christopher Taylor -108,9732,"I had a mix of positive and negative experiences at the hospital. While the medical care was good, the administrative processes were confusing, leading to unnecessary stress.",James Sparks,Little-Spencer,Michelle James -914,9732,"The hospital's medical team was outstanding, but the billing process was a nightmare. It took multiple calls to resolve an overcharge issue on my bill.",James Sparks,Little-Spencer,Michelle James -540,4408,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",James Sparks,Little-Spencer,Carmen Horne -126,764,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Terry Leon,Little-Spencer,Brenda James -732,7499,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Carla Miller,Little-Spencer,Timothy Taylor -203,1724,"The hospital staff was efficient and courteous, making my stay comfortable. Yet, the noise levels in the patient rooms were high, impacting the overall experience.",Joseph Jackson,Little-Spencer,Jaime Santiago -316,5787,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Joseph Jackson,Little-Spencer,Tamara Hart -219,1642,"The medical team at the hospital was knowledgeable and thorough, ensuring a successful recovery. On the other hand, the limited recreational activities for patients made the stay less enjoyable.",Timothy Martinez,Little-Spencer,Jennifer Mejia -286,5578,"I am grateful for the excellent care I received during my stay. The doctors were knowledgeable, and the nurses were kind and attentive.",William Bailey,Little-Spencer,Dave Bass -229,7917,"The nursing staff at the hospital was exceptional, providing personalized care. However, the lack of communication about the post-discharge care plan was a point of concern for me.",Miranda Meza,Little-Spencer,Tonya Gentry -622,7917,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Miranda Meza,Little-Spencer,Tonya Gentry -259,1969,"The hospital's medical staff was exceptional, providing personalized care. However, the lack of communication about the potential side effects of my medication was concerning.",Beverly Jordan,Little-Spencer,Jacob Gallagher -643,5815,"The hospital staff was attentive, and the cleanliness was commendable. Unfortunately, the cafeteria food left much to be desired.",Tara Payne,Little-Spencer,Christy Gregory -997,876,"The hospital's commitment to research and innovation in healthcare was impressive. Unfortunately, the outdated decor in the rooms did not match the advanced medical technology.",Mr. Andrew Keller,Little-Spencer,Daniel Murray -859,8999,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",James Mckinney,Little-Spencer,Dr. Jacob Hart -793,7173,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Charles Kim,Little-Spencer,Kyle Byrd -877,3901,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Jared Diaz,Little-Spencer,Mr. Bobby Johnson -464,953,"The medical team at the hospital was exceptional. However, the lack of accessible charging outlets in the patient rooms made it difficult to keep electronic devices charged.",Ashley Jackson,Little-Spencer,Bernard Gibbs -978,7644,"The hospital's commitment to sustainability and eco-friendly practices was commendable. However, the Wi-Fi connection in the rooms was unreliable.",Jonathan Decker,Little-Spencer,Kevin Ferguson -654,1638,"The doctors were knowledgeable and took the time to explain my condition. However, the noise level in the hospital made it challenging to rest and recover.",Krystal Webb,Little-Spencer,Arthur James -637,4511,"The hospital's medical team was top-notch, but the outdated entertainment options in the rooms could use an upgrade.",Jacqueline Mcneil DVM,Little-Spencer,Stephanie Dixon -781,6658,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Destiny Lloyd,Little-Spencer,Emily Hodges -862,7237,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",Barbara Warner,Little-Spencer,Tony Woods -985,78,"The hospital's commitment to patient privacy was reassuring. However, the outdated television in the room was a minor inconvenience during my stay.",Sally Jones,Little-Spencer,David Sanchez -307,268,"The hospital staff was compassionate, and the medical care was excellent. However, the lack of amenities for patients, such as entertainment options, made the stay a bit dull.",Matthew Marks,Brown-Golden,Ashley Armstrong -338,7312,"I was impressed with the professionalism of the medical staff. The only downside was the lack of variety in the hospital menu, which made dining options monotonous.",Julia Lam,Brown-Golden,Jennifer Cochran -403,7312,"The hospital had a friendly and welcoming environment. However, the long wait times for routine check-ups were frustrating.",Julia Lam,Brown-Golden,Jennifer Cochran -10,1504,"My overall experience was positive, thanks to the attentive nursing staff. However, the noisy environment in the shared rooms affected my ability to rest and recover peacefully.",Ashley Goodwin,Brown-Golden,Anna Morrison -160,5209,"The hospital environment was calming, and the medical team was thorough in their assessments. On the downside, the cafeteria food left much to be desired, with limited healthy options.",Andrew King,Brown-Golden,Mathew Reilly -502,8912,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Renee Brown,Brown-Golden,Kristin Garcia -671,1454,"The nursing team was exceptional, providing compassionate care throughout my stay. The hospital's environment was comforting, and the amenities offered helped make my recovery more bearable.",Tanya Mccarty,Brown-Golden,Allison Hill -129,8609,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Rebecca Hernandez,Brown-Golden,Garrett Acosta -72,6581,"My hospital stay was a positive one. The medical team was efficient, and the facilities were clean and well-maintained. The overall atmosphere contributed to a smooth and comfortable recovery.",Jennifer Johnson,Brown-Golden,Brian Chen -86,7797,"The hospital provided exceptional care, and the medical team was thorough in their approach. The facilities were modern and clean, contributing to a positive overall experience.",Lisa Brewer,Brown-Golden,Ariana Hansen -104,2206,"My experience at the hospital was a bit of a letdown. The facilities were outdated, and the communication between the medical staff and me was not as clear as I would have liked.",Brent Brewer,Brown-Golden,Thomas Torres MD -231,5213,"My stay at the hospital was marked by the efficient and caring nature of the nursing staff. However, the lack of communication about the potential side effects of medications was concerning.",Cheryl Smith,Brown-Golden,Tiffany Stewart -453,6551,"The medical team at the hospital was skilled and efficient. Unfortunately, the outdated entertainment options in the patient rooms made the recovery period less enjoyable.",Elizabeth Meyer,Brown-Golden,John Jensen -334,134,"The nursing staff was exceptional, providing personalized care. However, the lack of communication between departments led to some confusion regarding my treatment plan.",Christine Rogers,Brown-Golden,John Edwards -162,3452,"I received prompt and effective medical care during my stay. However, the constant beeping of machines in the ward was bothersome and made it difficult to get quality rest.",Carla Miller,Brown-Golden,Heather Lewis -706,7684,The hospital's dedication to patient comfort was evident in the well-designed private rooms and comfortable furnishings. It made my recovery more bearable and contributed to an overall positive experience.,Mary Owens,Brown-Golden,Jasmine Patel DDS -530,5268,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Stephen Johnson,Brown-Golden,Brooke Robinson -199,2647,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Marc Romero,Brown-Golden,Travis Kelly DVM -207,3969,"My stay at the hospital was marked by the caring nature of the nursing staff. On the flip side, the limited visiting hours made it challenging for my family to spend time with me.",Joel Copeland,Brown-Golden,Charles Alvarez -901,2551,"I had a positive overall experience at the hospital. The facilities were modern, and the medical team was thorough. The only drawback was the noise from other patients in the shared room.",Melissa Garrett,Brown-Golden,Michael Rodriguez -953,5441,"My stay at the hospital was excellent. The doctors were knowledgeable, and the nurses were compassionate. I felt well taken care of.",Rachel Oneill,Brown-Golden,Kristin Jones -278,9041,"The hospital's medical team was efficient and knowledgeable, providing excellent care. However, the lack of communication about the potential side effects of my medication was concerning.",Jeffrey Williams,Brown-Golden,Bryan Willis -927,2614,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",James Jackson,Brown-Golden,Miranda Frey -332,2725,"The medical team was outstanding - compassionate, understanding, and highly skilled. Unfortunately, the noise level in the shared rooms made it difficult to get a good night's sleep.",Sean Williams,Brown-Golden,Ashley Solis -419,8315,"I appreciate the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Abigail Cummings,Brown-Golden,Elizabeth Robertson -365,513,"The hospital's facilities were clean and modern, creating a comfortable environment. On the downside, the lack of Wi-Fi in the rooms made it challenging to stay connected and entertained.",Molly Dean,Brown-Golden,Jeremy Whitney -363,3842,"The hospital's commitment to patient care was evident, with a responsive medical team. However, the lack of variety in the cafeteria menu made dining options repetitive and uninspiring.",Edward Miller,Brown-Golden,Matthew Carter -576,1612,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Ashley Torres,Brown-Golden,Nathaniel Nichols -500,9862,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only downside was the limited entertainment options in the patient rooms.",Jonathan Obrien DDS,Brown-Golden,Christopher Tucker -583,3957,"The hospital provided thorough and compassionate care. However, the billing process was confusing, and it took a while to sort out.",Katie Huber,Brown-Golden,Mikayla Hood -707,4533,"I encountered some issues with the nursing staff's communication. It seemed like there was a lack of coordination, leading to confusion about my medication schedule and treatment plan.",Joseph Gonzales,Brown-Golden,Makayla Reynolds -937,7581,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Eric Marquez,Brown-Golden,Amanda Gonzales -885,6709,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Adrienne Johnson,Brown-Golden,John May -5,5953,"I had a mixed experience during my stay. While the medical care was satisfactory, the administrative process felt disorganized and resulted in unnecessary delays in my treatment.",Michael Morales,Castaneda-Hardy,Megan Short -28,166,"The hospital's dedication to staff training and development was evident in the professionalism of the medical team. Still, the limited availability of support services for mental health was a notable gap in their holistic approach.",Derrick Krause,Castaneda-Hardy,David Casey -37,3585,"The hospital's administrative processes need improvement. I faced challenges with billing and paperwork, causing unnecessary stress during an already difficult time. Streamlining these processes is essential.",Keith Reed,Castaneda-Hardy,Robert Black -153,8988,"The hospital facilities were state-of-the-art, and the medical team was efficient. Unfortunately, the noise levels in the ward were disruptive, affecting my ability to rest.",Keith Reed,Castaneda-Hardy,Anthony Young -609,5025,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Nicole Keith,Castaneda-Hardy,Stacey Cohen -59,7774,"The hospital's nursing staff were a mixed bag. While some were compassionate and attentive, others seemed disinterested and inattentive. Consistent training and expectations are necessary for quality patient care.",Colleen Ward,Castaneda-Hardy,Sarah Thomas -196,4073,"I am grateful for the excellent care I received during my stay. The nursing staff was attentive, and the hospital's commitment to patient well-being was evident in every aspect of their service.",Richard Carter,Castaneda-Hardy,Ms. Gina Ross -437,6371,"The hospital had state-of-the-art equipment, and the medical team was highly skilled. Unfortunately, the billing process was confusing, and I received multiple incorrect invoices.",Richard Carter,Castaneda-Hardy,Carol Warner -92,4928,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Jennifer Quinn,Castaneda-Hardy,Amy Nichols -182,5534,"I received excellent medical care during my stay, and the nursing staff was attentive. Unfortunately, the lack of clear communication about the discharge process caused some anxiety.",Jennifer Quinn,Castaneda-Hardy,Victoria Arroyo -116,8941,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Miss Maria King,Castaneda-Hardy,John Arnold -119,5771,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Cathy Church,Castaneda-Hardy,Jacob Rodriguez -149,1480,"I appreciate the efforts of the hospital staff in providing quality care. The cleanliness and hygiene standards were commendable, contributing to a comfortable environment.",Russell Morris,Castaneda-Hardy,Spencer Good -159,5256,"I am grateful for the dedicated nurses who provided exceptional care. However, the administrative processes were bureaucratic, causing unnecessary delays in scheduling tests.",Amy Rios,Castaneda-Hardy,Alexander Henderson -168,3467,"The hospital provided excellent care, and the staff was compassionate. However, the lack of greenery or outdoor spaces for patients to relax was a downside.",Sabrina Rodriguez,Castaneda-Hardy,Willie Brewer -409,7582,"I appreciate the excellent medical care I received. Still, the noise levels in the hallway outside my room were disruptive and affected my rest.",Jennifer Evans,Castaneda-Hardy,Sarah Love -194,3912,"I had a mixed experience at the hospital. While the doctors were knowledgeable and caring, the wait times were quite long, and the administrative staff seemed disorganized.",James Cooper,Castaneda-Hardy,Richard Morrow -206,9253,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Denise Perez,Castaneda-Hardy,Tara Knight -440,6624,The hospital's commitment to patient well-being was evident. The support groups and counseling services offered were beneficial during my recovery.,Jessica Anderson,Castaneda-Hardy,Emily Harrington -237,1829,"I had a frustrating experience at the hospital. The waiting times were ridiculously long, and the staff seemed overwhelmed and disorganized.",Jason Little,Castaneda-Hardy,Richard Cole -260,2676,"I appreciate the hospital's efforts in maintaining a clean and safe environment. However, the lengthy wait times for routine tests were frustrating and inconvenient.",James Brown,Castaneda-Hardy,Matthew Hall -262,4115,"The hospital provided excellent medical care, and the nursing staff was attentive. Unfortunately, the cafeteria food options were limited and not very appetizing.",Timothy Riley,Castaneda-Hardy,Carlos Ruiz -270,4585,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of clear communication about my treatment plan left me feeling uncertain.",David Fisher,Castaneda-Hardy,Kenneth Rios -274,1092,"I had a positive experience overall at the hospital. The medical staff was compassionate, and the facilities were clean and well-maintained.",David Perez,Castaneda-Hardy,Autumn Proctor -357,9058,"The nursing staff provided excellent care and support during my stay. However, the outdated TV sets in the rooms and limited channel selection left much to be desired in terms of entertainment.",Thomas Harrell,Castaneda-Hardy,Dylan Hart -929,63,"The hospital provided excellent care, but the billing department's lack of transparency was frustrating and led to unexpected financial stress.",Jason Johnston,Castaneda-Hardy,Amanda Stein DVM -319,3107,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Jesus Snyder,Castaneda-Hardy,Jessica Estes DVM -347,8571,"The hospital's medical staff provided excellent care, and the facilities were clean and well-maintained. Unfortunately, the lack of a proper bedside manner from one of the doctors was disappointing.",Breanna Cruz,Castaneda-Hardy,Jessica Noble -804,2524,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",William Hart,Castaneda-Hardy,Lisa Baker -537,4830,"I had a challenging experience at the hospital. While the medical care was satisfactory, the lack of clear communication about my treatment plan left me feeling uncertain and anxious.",Michael Miranda,Castaneda-Hardy,Carlos Graham -667,6690,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Bryan Smith,Castaneda-Hardy,Dan Nash -657,8864,"The hospital's amenities were impressive, and the staff was accommodating. Unfortunately, the discharge process felt rushed and disorganized.",Virginia Robinson,Castaneda-Hardy,Michelle Brown -851,6707,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the lack of coordination between departments led to delays in my treatment.",Richard Garcia,Castaneda-Hardy,Audrey Howard -806,5549,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Timothy Gibson,Castaneda-Hardy,Allen Gibson -791,269,"The hospital staff was friendly and compassionate. The medical care was excellent, but the facilities were a bit dated.",Michael Morales,Pugh-Rogers,Jacob Meyers -369,7259,"The hospital's commitment to cleanliness and hygiene was commendable, with well-maintained facilities. On the downside, the lack of vegetarian options in the cafeteria limited my meal choices.",Heather Fisher,Pugh-Rogers,Nicholas Cook -8,5259,"I appreciate the dedication of the hospital staff, but the lack of coordination among different departments led to confusion about my treatment plan. Streamlining communication is crucial for patient satisfaction.",Joy Yoder,Pugh-Rogers,Nicole Anderson -21,8517,"I appreciate the hospital's commitment to continuous improvement, as seen in their responsive feedback system. However, the lack of emotional support during my recovery was a notable gap in the overall care.",Ann Joseph,Pugh-Rogers,Melinda Dunn -632,3421,"I had a generally positive experience at the hospital. The medical team was attentive, but the noise from neighboring rooms was disruptive to my recovery.",Robert Pratt,Pugh-Rogers,Nicole Bradley -980,3421,"The hospital's commitment to diversity and inclusion was evident in its staff. However, the lack of translation services for non-English speakers created challenges for some patients.",Robert Pratt,Pugh-Rogers,Nicole Bradley -35,1367,I had a difficult time at the hospital due to the noise level in the shared rooms. It impacted my ability to rest and recover. Consideration for patients' need for rest is crucial in a hospital setting.,Mr. Adrian Pittman II,Pugh-Rogers,Tyler Sanders DVM -760,8307,"The nursing staff was caring, and the hospital had a modern feel. The lack of vegetarian options in the cafeteria, however, was a disappointment.",Doris Rodriguez,Pugh-Rogers,James Murray -431,6184,"The facilities were clean, and the medical team was efficient. However, the constant beeping of machines in the ward was quite annoying and made it difficult to rest.",Joanne Hernandez,Pugh-Rogers,Shane Joseph III -826,3302,"The nursing staff was exceptional, providing personalized care. Unfortunately, the outdated entertainment options in the rooms left much to be desired.",Erika Ingram,Pugh-Rogers,Rickey Payne -47,7429,I encountered some issues with the scheduling of tests and procedures at the hospital. The lack of coordination resulted in unnecessary delays and added stress to an already challenging situation.,Jason Martinez,Pugh-Rogers,Joseph Brown -524,7429,"The hospital staff was exceptional in providing care and support. The facility was clean, and the medical team ensured I understood my treatment plan thoroughly. Overall, a positive experience.",Jason Martinez,Pugh-Rogers,Joseph Brown -832,9279,"The hospital staff was caring and attentive, making me feel well-supported during my stay. Unfortunately, the waiting times for tests were longer than expected.",Ashley Le,Pugh-Rogers,Justin Mitchell -570,3998,The hospital staff was friendly and supportive throughout my stay. The only drawback was the limited parking space.,Stephanie Vargas,Pugh-Rogers,Cassandra Myers -944,2450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Lindsay Martinez,Pugh-Rogers,Michael Kelly -505,5325,"The hospital staff was friendly and made my stay comfortable. The medical care was excellent, but the administrative processes were a bit confusing, leading to some frustration.",Alexander Jimenez,Pugh-Rogers,Joshua Simpson -386,6801,"The hospital was clean, and the staff was friendly. However, the waiting times for test results were longer than I anticipated.",Antonio Campbell,Pugh-Rogers,Kyle Arnold -157,7274,"The hospital staff went above and beyond to make me feel comfortable. Nevertheless, the lack of privacy in the shared rooms was a drawback, hindering my recovery.",Mary Owens,Pugh-Rogers,Dylan Smith -468,5402,"The hospital had a comprehensive approach to mental health, offering counseling services. However, the limited outdoor spaces for patients to relax were a missed opportunity.",Kimberly Oliver,Pugh-Rogers,Deanna Deleon -253,9591,"The hospital had a warm and welcoming atmosphere, but the billing process was confusing and took an excessive amount of time to resolve.",Sabrina Rodriguez,Pugh-Rogers,Matthew Pacheco -411,1441,"The medical team at the hospital was knowledgeable and caring. Unfortunately, the cafeteria food did not meet my dietary preferences.",James Cooper,Pugh-Rogers,Maria Williams -628,5159,"The hospital's cleanliness and hygiene standards were impeccable. On the flip side, the lack of bedside manner from a few nurses was disheartening.",Sheri Howard,Pugh-Rogers,Robert Cooper -763,586,"I was impressed with the level of care I received. The doctors took the time to explain everything thoroughly, and the nurses were compassionate.",Joel Copeland,"Smith, Edwards and Obrien",Robert Cooper -687,6305,"I had a positive experience overall. The medical staff was attentive, and the cleanliness of the facility was impressive. However, the cafeteria food left much to be desired, impacting the overall satisfaction of my stay.",Michelle Williams,Pugh-Rogers,Traci Carpenter -287,3066,"The hospital environment was sterile and cold. The medical care was satisfactory, but the lack of a warm and welcoming atmosphere made the experience less pleasant.",Greg Clark,Pugh-Rogers,Thomas Cabrera -300,9363,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -426,9363,"The hospital staff was accommodating, but the lack of clear communication about my treatment plan left me feeling anxious and confused.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -586,9363,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Marissa Shepherd,Pugh-Rogers,Jamie Jones -408,459,"The hospital had a clean and well-maintained environment. However, the lack of family-friendly spaces in the waiting area was a downside.",Catherine Howard,Pugh-Rogers,Richard Johnson -458,2471,"The medical team at the hospital was compassionate and attentive. The only downside was the limited options in the hospital cafeteria, making it difficult to find healthy choices.",Richard Miller,Pugh-Rogers,Mark Griffin -472,8840,"I had a positive experience at the hospital. The medical team was thorough, and the support staff went out of their way to make my stay as comfortable as possible.",Robert Thomas,Pugh-Rogers,Jordan Reyes -482,5421,"I had a mixed experience. The medical care was excellent, but the communication between the staff and patients could be improved. Clearer instructions would have been helpful.",Sara Newman,Pugh-Rogers,Dawn Barry -709,4397,"My experience was soured by the lack of parking availability. The inconvenience of finding parking spaces, especially during peak hours, added unnecessary stress to my hospital visit.",Shaun Little,Pugh-Rogers,Mark Solomon -724,1193,"The hospital had a warm and inviting ambiance. Unfortunately, the lack of coordination between departments led to confusion about my treatment plan.",Anthony Lowery,Pugh-Rogers,Jacqueline Adams -898,8351,"I appreciate the professionalism of the medical staff, but the lack of privacy in the shared room was a downside. The hospital should consider offering more private accommodation options.",Hannah Roberts,Pugh-Rogers,Thomas Garcia -6,416,"The hospital's emergency response team was quick and efficient when I was admitted. However, the follow-up care left much to be desired, with long waits for routine check-ups and consultations.",Julia Lam,Lewis-Nelson,Heather Turner -99,8385,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Julia Lam,Lewis-Nelson,Thomas Kelly -24,7628,"The cleanliness and hygiene standards at the hospital were exceptional, contributing to a sense of safety. However, the lack of family-friendly accommodations limited the support system available during my stay.",Robert Pratt,Lewis-Nelson,James Lynch -31,4342,"My experience at the hospital was less than satisfactory. The wait times were unbearable, and the lack of communication from the staff was frustrating. Improvement is definitely needed in their efficiency.",Laura Hamilton,Lewis-Nelson,Alexander Sellers -461,7793,"The hospital had a warm and inviting atmosphere. The only drawback was the noise levels in the shared rooms, making it challenging to rest and recover.",Kelly Scott MD,Lewis-Nelson,Michelle Walls -575,3197,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -615,3197,"I had a mixed experience at the hospital. While the medical care was excellent, the waiting times were frustratingly long.",Benjamin Stevens,Lewis-Nelson,Sandra Smith -296,4326,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Stephanie Vargas,Lewis-Nelson,Linda Allen -144,9762,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Christine Rogers,Lewis-Nelson,William Valencia -635,482,"The hospital staff was friendly and compassionate, but the limited visiting hours were inconvenient for my family and friends.",Amy Rios,Lewis-Nelson,Micheal Duran -996,7556,I encountered some issues with the billing department at the hospital. It took multiple calls to resolve the errors in my invoice.,Erin Ramirez,Lewis-Nelson,Sara House -190,5214,"I appreciate the excellent care I received from the medical team. Unfortunately, the outdated entertainment options in the room made the recovery period less enjoyable.",Timothy Wilson,Lewis-Nelson,Joseph Schneider -344,5414,"The hospital's commitment to patient well-being was evident, with a responsive medical team. On the downside, the TV channels in the rooms were limited, and the entertainment options were lacking.",Andrew James,Lewis-Nelson,Ashley Greene -204,5979,"The hospital's medical team was knowledgeable and attentive, but the billing process was confusing and required multiple follow-ups to resolve discrepancies.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -234,5979,"The medical team at the hospital was knowledgeable and caring, making my stay comfortable. On the other hand, the lack of coordination between departments led to some delays in my treatment plan.",Samantha Barrett,Lewis-Nelson,Jeremy Fernandez -285,8608,"The hospital staff was friendly and compassionate. However, the wait times were quite long, and it was frustrating to spend so much time waiting for tests and consultations.",Alexis Hutchinson,Lewis-Nelson,Gregory Oliver -796,9193,"The hospital staff was friendly and accommodating. The medical care was satisfactory, but the facilities could use some improvement.",Mark Vang,Lewis-Nelson,Thomas Roberts -723,6720,The doctors were attentive and explained things clearly. The noise from other patients made it difficult to get a good night's sleep.,Miguel Davidson,Lewis-Nelson,Kayla Gardner -455,9730,"The hospital's commitment to patient privacy was commendable. The staff ensured confidentiality, creating a safe space for open communication about health concerns.",Brian Rivera,Lewis-Nelson,Stephanie Wallace -878,5975,"The hospital's medical team was outstanding, providing top-notch care. Unfortunately, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Renee Young,Lewis-Nelson,Linda Neal -485,7292,"I had a positive experience overall. The medical team was efficient, and the facilities were well-maintained. The only downside was the lack of information provided about the treatment plan.",David Carter,Lewis-Nelson,Eric Schwartz -669,4461,My stay at the hospital was remarkable. The doctors were not only knowledgeable but also took the time to explain everything in detail. The cleanliness and organization of the facility were impressive.,Jennifer Roberts,Lewis-Nelson,William Grant -684,4486,"The staff's empathy and kindness were a silver lining during a challenging time. Despite the hospital's aging infrastructure, the genuine care provided by the nurses and doctors made the overall experience positive.",Eric Marquez,Lewis-Nelson,Joshua Duncan -819,1766,"I had a mixed experience at the hospital. The doctors were knowledgeable, but the administrative staff seemed overwhelmed, leading to delays in paperwork.",Angela Stein,Lewis-Nelson,Joshua Fitzgerald -861,5,"The medical care I received was excellent, and the hospital facilities were modern. However, the lack of clear communication about the daily schedule and procedures was a drawback.",Jennifer Baldwin MD,Lewis-Nelson,Patrick Parker -860,5018,"I appreciate the care I received from the nursing staff. The hospital was clean, but the lack of clear communication about the post-discharge care plan was a concern.",Heather Fisher,Boyd PLC,Samantha Morgan -178,615,"The nursing staff was empathetic and supportive throughout my stay. Unfortunately, the lack of communication about changes to my treatment plan was a source of frustration.",Derrick Krause,Boyd PLC,Luis Cooper -513,615,"I had a mixed experience at the hospital. The medical care was exceptional, but the communication between different departments was lacking, leading to some confusion.",Derrick Krause,Boyd PLC,Luis Cooper -42,7264,"The hospital's environment was welcoming, and the volunteers went out of their way to make patients feel comfortable. A friendly and supportive atmosphere that contributed positively to my overall experience.",Robin Rose,Boyd PLC,Anthony Thomas -54,3636,"I had a positive experience with the hospital's rehabilitation services. The therapists were knowledgeable, and the rehabilitation plan was tailored to my specific needs. A crucial aspect of my recovery.",Monique Hall,Boyd PLC,Jessica Ross -381,776,"The hospital staff was accommodating and made sure I felt comfortable. However, the billing process was confusing and took a while to resolve.",Anthony Lynch,Boyd PLC,Annette Mitchell -843,776,"The hospital provided excellent medical care. The nursing staff was attentive, but the administrative processes were cumbersome and could be streamlined for efficiency.",Anthony Lynch,Boyd PLC,Annette Mitchell -378,4892,"The hospital had state-of-the-art equipment, but the lack of communication between the medical team and patients was frustrating.",Mark Martin,Boyd PLC,Erica Roberts -176,1456,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Scott Scott,Boyd PLC,Victoria Mathews -90,2434,"My hospital stay was challenging due to a lack of coordination among the staff. The medical care was competent, but the disorganization and delays in my treatment were frustrating.",Trevor Cook,Boyd PLC,Christopher Carson -117,6659,"My stay at the hospital was a mix of highs and lows. The medical care was competent, but the lack of communication about changes in my treatment plan left me feeling uneasy.",Drew Sanchez,Boyd PLC,Anthony Wood -558,6659,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",Drew Sanchez,Boyd PLC,Anthony Wood -668,6659,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Drew Sanchez,Boyd PLC,Anthony Wood -125,7637,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amanda Rogers,Boyd PLC,Alexandria Jones -133,7328,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Christy Huff,Boyd PLC,Jon Williamson -422,1498,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Ryan Thomas,Boyd PLC,Michael Delgado -167,3015,"I appreciated the personalized care from the doctors, but the constant changing of nurses during shifts led to inconsistent communication about my treatment plan.",Larry Campbell,Boyd PLC,Seth Smith -490,5675,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Joseph Jackson,Boyd PLC,Debra Lee -679,7180,"I encountered some issues with the administrative staff, who seemed disorganized and overwhelmed. This affected the overall efficiency of the hospital, and improvements in this area are essential.",Joel Copeland,Pearson LLC,Debra Lee -545,4017,"My hospital stay was comfortable, thanks to the caring nursing staff and well-maintained facilities. However, the lack of clear communication about my treatment plan was a source of stress and confusion.",John Henderson,Boyd PLC,Maria Cisneros -238,9507,"The hospital staff went above and beyond to make me feel comfortable during my stay. The facilities were clean, and the food was surprisingly good.",Erin Oliver,Boyd PLC,Christopher Gonzalez -557,6005,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Nathan Smith,Boyd PLC,Donna Singleton -528,4173,"The hospital staff was friendly and caring, making my stay pleasant. However, the administrative processes were slow and disorganized, causing unnecessary delays and frustration.",Beverly Jordan,Boyd PLC,Dr. Janet Ramos -293,7784,"I had a mixed experience at the hospital. The medical care was excellent, but the administrative staff was unhelpful and seemed disinterested in addressing my concerns.",Donna Williams,Boyd PLC,Michael Gutierrez -932,532,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Michael Watson,Boyd PLC,Heather Walters -783,4911,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Edward Miller,Boyd PLC,Sarah Lopez -909,8406,"The nursing staff was incredibly compassionate and attentive, but the administrative staff seemed overwhelmed and disorganized.",Sarah Brewer,Boyd PLC,Erik Fletcher -627,7329,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Krystal Webb,Boyd PLC,Eric Moore -634,7231,"The doctors were knowledgeable and caring, but the lack of privacy in the shared rooms was a drawback to the overall experience.",Abigail Fuller,Boyd PLC,Lisa Ramirez -680,1310,"The hospital's serene environment and friendly staff positively impacted my recovery. The bright and airy rooms, coupled with the caring nurses, made my stay as pleasant as it could be under the circumstances.",Bernard Miller,Boyd PLC,Donna Weaver -846,1310,"The medical team at the hospital was knowledgeable and attentive. Unfortunately, the outdated technology in some areas of the facility was a downside to an otherwise positive experience.",Bernard Miller,Boyd PLC,Donna Weaver -578,2639,"I appreciated the thorough care provided by the hospital staff. The facilities were comfortable, but the cafeteria food was subpar.",Joy Yoder,Garcia Ltd,Dylan Brown -508,5605,"My overall experience was positive. The hospital staff was friendly, and the medical care was exceptional. The only drawback was the limited variety in the hospital menu.",Chase Mcpherson Jr.,Garcia Ltd,Robert Decker -834,3899,"The hospital provided good care overall. The nurses were compassionate, but the administrative processes were confusing and added unnecessary stress.",Mark Nichols,Garcia Ltd,Jo Ramirez -33,7503,My stay at the hospital was marred by a lack of cleanliness in my room. It was evident that the facilities were not properly maintained. Disappointing given the importance of hygiene in a healthcare setting.,Victor Dean,Garcia Ltd,Stacy Lindsey -746,3985,"The hospital had a modern and clean environment, and the medical staff was attentive. The slow response time for basic requests, however, was frustrating.",Rebecca Wallace,Garcia Ltd,Cathy Chavez -538,4977,"My hospital stay was satisfactory, with competent medical care and a helpful nursing staff. However, the facilities seemed outdated and in need of renovation for a more comfortable environment.",Ryan Curry,Garcia Ltd,Regina Vargas -226,4415,"My experience at the hospital was positive overall. The medical team was thorough and caring, but the lack of transparency about the billing process was a point of frustration.",Scott Rivera,Garcia Ltd,Monica Romero -991,5856,"I appreciated the hospital's efforts to create a child-friendly environment in the pediatric ward. The play area, though, could use more interactive and educational toys.",Renee Brown,Garcia Ltd,John Avery -739,5123,"The medical care was top-notch, and the hospital had a calm ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Jennifer Johnson,Garcia Ltd,Dr. Christopher Rogers -691,630,"The nursing staff was exceptional, providing attentive and personalized care. However, the administrative processes were confusing, and the lack of clear communication about my treatment plan left me anxious.",Craig Brooks,Garcia Ltd,Sherry Williams -79,6024,"I had a positive experience at the hospital. The medical staff was competent and caring, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Aaron Graves,Garcia Ltd,Jessica Rogers -354,6360,"The nursing staff was kind and supportive, ensuring my needs were met. Yet, the constant construction noise outside the hospital disrupted the peace and quiet needed for recovery.",Tina Wall,Garcia Ltd,Christopher Brown -716,6598,"I received prompt attention from the medical staff, and the technology used for diagnosis was impressive. The cleanliness, however, left much to be desired.",Brent Brewer,Garcia Ltd,Allison Elliott -121,7157,"I had a mix of positive and negative experiences at the hospital. The medical care was competent, but the administrative processes were confusing, leading to unnecessary stress.",Cheryl Smith,Garcia Ltd,Michael Johnson -582,7157,"I received excellent care at the hospital. The staff was knowledgeable and caring, but the outdated decor in the rooms was a drawback.",Cheryl Smith,Garcia Ltd,Michael Johnson -145,2432,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Geoffrey Jacobson,Garcia Ltd,Susan Ward -893,1990,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Amy Rios,Garcia Ltd,Dr. Charles Burton MD -175,7007,"The hospital provided quality care, and the nursing staff was attentive. However, the constant temperature fluctuations in the room made it challenging to get a good night's sleep.",Amy Smith,Garcia Ltd,Stacy Jennings -789,3581,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",Joseph Jackson,Garcia Ltd,David Crawford -240,2817,"The hospital environment was welcoming, and the support staff was always ready to assist. However, the billing process was confusing and stressful.",William Bailey,Garcia Ltd,Eric Williams -935,9450,"The hospital's medical team was knowledgeable, and the facilities were impressive. However, the lack of follow-up after my discharge made me feel a bit abandoned.",Logan Diaz,Garcia Ltd,Mark Robinson -358,5687,"The hospital's medical team was knowledgeable and efficient in their care. Unfortunately, the frequent interruptions for routine checks made it challenging to get a good night's sleep.",Erik Guerrero,Garcia Ltd,Ryan Dodson -432,9805,"My time at the hospital was challenging, but the nursing staff made all the difference. Their kindness and patience truly made the experience more bearable.",Steven Watson,Garcia Ltd,George Barnes -476,8120,"I had a mixed experience at the hospital. The medical care was excellent, but the food quality left much to be desired. It's crucial to consider both aspects for a holistic view.",Candice Manning,Garcia Ltd,Christina Andrews -938,6267,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Candice Manning,Garcia Ltd,Tammy Benson DVM -519,4046,"I had a mixed experience at the hospital. The nursing staff was kind and caring, but there were delays in getting test results, causing some anxiety. The facility, however, was top-notch.",Terry Chan,Garcia Ltd,Jimmy Johnson -906,5658,"The hospital staff was exceptional, and I received excellent care. However, the lack of communication between departments led to some confusion about my treatment plan.",George Lee,Garcia Ltd,Matthew Montgomery -748,3520,"The nursing staff was compassionate, and the hospital facilities were top-notch. The limited visiting hours, though, made it challenging for my family to be present.",Michael Robinson,Garcia Ltd,Mario Stone -907,205,"I was impressed by the cleanliness and organization of the hospital. The medical team was efficient and caring, making my recovery smoother.",Timothy Gibson,Garcia Ltd,Rachel Williams -921,8944,"The medical staff was attentive and caring, providing quality care. Unfortunately, the noise from construction outside my room was disruptive and affected my rest.",Timothy Gibson,Garcia Ltd,Natalie Rojas -852,3226,"The hospital provided top-notch medical care. However, the administrative processes were slow, and the lack of clear communication about the post-discharge care plan was a concern.",Steven Smith,Garcia Ltd,Amber Stout -981,2127,"I appreciated the hospital's efforts to create a comfortable environment for patients. However, the noise from construction in the adjacent building was disruptive.",Taylor Williams PhD,Garcia Ltd,Tasha Dunn -85,55,"I had a challenging experience at the hospital. The medical care was adequate, but the lack of communication between the staff and me made me feel isolated and frustrated.",Andrew King,"Rush, Owens and Johnson",Frank Reid -398,8800,"I appreciated the efforts of the hospital staff, but the noise levels in the shared rooms were disruptive, affecting the overall quality of my stay.",Andrew King,"Rush, Owens and Johnson",William Foster -895,1840,"The hospital facilities were clean and comfortable, and the medical staff was knowledgeable. Unfortunately, the constant buzzing of fluorescent lights in the hallway was a bit irritating.",Thomas Middleton,"Rush, Owens and Johnson",Thomas Jacobs -943,9081,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Dustin Perez,"Rush, Owens and Johnson",Blake Martin -611,5881,"I had a positive experience overall at the hospital. The medical staff was skilled, and the facilities were modern. The only downside was the limited menu in the cafeteria.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -782,5881,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Mark Martin,"Rush, Owens and Johnson",Tina Allison -171,6286,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were confusing and resulted in billing errors that took weeks to resolve.",Robert Chen,"Rush, Owens and Johnson",Gregory Salazar -375,5366,"The nursing staff at the hospital was exceptional, providing compassionate care. However, the food options were limited and not great.",James Sparks,"Rush, Owens and Johnson",Jesus Griffin -213,6249,"The hospital's facilities were modern and well-maintained, contributing to a positive overall experience. Unfortunately, the billing process was confusing and required extensive clarification.",Veronica Moore,"Rush, Owens and Johnson",Heather Ferguson -343,2532,"The nursing staff was compassionate, and the medical facilities were up to par. Nonetheless, the cafeteria food left much to be desired, and I found myself ordering from outside frequently.",Robert Clements,"Rush, Owens and Johnson",Phyllis Waters -273,5700,"The hospital's medical staff was skilled and caring, providing excellent care. Unfortunately, the noise levels in the shared rooms made it challenging to rest and recover.",Geoffrey Jacobson,"Rush, Owens and Johnson",Timothy Avila -501,6523,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Russell Morris,"Rush, Owens and Johnson",John Martinez -833,6067,"The medical care I received was excellent, and the facilities were clean. However, the lack of communication between shifts caused confusion about my treatment plan.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -976,6067,"The hospital's location was convenient, and the shuttle service for patients was a thoughtful touch. However, the noise from construction nearby disrupted my rest.",Jennifer Murray,"Rush, Owens and Johnson",Randy Rodriguez -613,3089,"I had a mixed experience at the hospital. The medical care was good, but the noise level in the shared room was disruptive.",Linda Morris,"Rush, Owens and Johnson",Kaitlin Miller -617,9533,"I appreciate the professionalism of the doctors, but the lack of communication about my treatment plan left me feeling anxious.",Amy Smith,"Rush, Owens and Johnson",Cheryl Watts -193,177,"My stay at the hospital was exceptional. The medical team was prompt, and the facilities were top-notch. I felt well taken care of throughout my time there.",Andrew James,"Rush, Owens and Johnson",Scott Nicholson -473,6462,"The hospital had a welcoming atmosphere, and the medical team was attentive. On the downside, the noise levels in the hallway made it challenging to rest during the night.",Andrew James,"Rush, Owens and Johnson",Matthew Walsh -600,827,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew James,"Rush, Owens and Johnson",Carolyn Nguyen DVM -210,579,"I had a positive experience with the hospital's medical staff, who went above and beyond to ensure my comfort. The only drawback was the limited availability of certain medical specialists.",Julie Walker,"Rush, Owens and Johnson",Leslie Kennedy -412,3377,"I had a positive overall experience at the hospital. The medical staff was attentive, and the facilities were well-maintained.",Melissa Garrett,"Rush, Owens and Johnson",James Villanueva -815,7948,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Jason Little,"Rush, Owens and Johnson",Melissa Barnes -243,2874,"I had a positive experience with the skilled and compassionate healthcare professionals. However, the outdated facilities could use some modernization.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -309,2874,"The hospital staff was caring and attentive, and the facilities were clean. However, the lack of parking options made it difficult for my family to visit me.",Nathan Smith,"Rush, Owens and Johnson",Robert Conley -401,2561,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",David Fisher,"Rush, Owens and Johnson",Christopher Collins -809,3058,"My stay at the hospital was comfortable. The medical team was efficient, and the facilities were clean and well-maintained.",James Allen,"Rush, Owens and Johnson",Jacqueline Cooper -520,3379,"The hospital staff went above and beyond to ensure my comfort and well-being. The doctors were thorough in explaining my condition, making me feel informed and at ease throughout my stay.",Marissa Shepherd,"Rush, Owens and Johnson",Timothy Hill -918,5640,"The hospital staff went above and beyond to make me feel comfortable. On the downside, the parking situation was chaotic, and finding a spot was a daily struggle.",Carmen Larsen,"Rush, Owens and Johnson",Gene Anderson -435,4134,"I am grateful for the exceptional care I received at the hospital. The nurses were not only skilled but also empathetic, making a significant impact on my recovery.",Jared Diaz,"Rush, Owens and Johnson",Angie Murphy -496,1401,"I am grateful for the care I received at the hospital. The medical team was compassionate, and the facilities were well-maintained. The only downside was the limited visiting hours.",Candice Manning,"Rush, Owens and Johnson",Tonya Ferguson -773,6383,"I encountered some communication issues during my stay. The medical staff seemed disorganized, and it led to confusion about my treatment plan.",Jacqueline Johnson,"Rush, Owens and Johnson",Jessica Mays -677,1787,"I had mixed feelings about my stay. While the medical team was skilled and attentive, the lack of follow-up after discharge left me feeling a bit neglected. A simple check-in would have been appreciated.",Christopher Stanley,"Rush, Owens and Johnson",Shaun Tran -917,3104,"I encountered both positive and negative aspects during my hospital stay. The medical care was excellent, but the facility could benefit from more patient-friendly amenities.",Kristopher Wiley Jr.,"Rush, Owens and Johnson",Jeffrey Wilkerson -752,9328,"The nursing staff was caring, and the hospital had a modern feel. The lack of clear communication about my treatment plan, however, was frustrating.",Julia Hoffman,"Rush, Owens and Johnson",David Jones -67,9399,"The hospital's medical team was exceptional, providing thorough and personalized care. The modern facilities and state-of-the-art equipment added to the overall positive atmosphere.",Christina Anderson,"Smith, Edwards and Obrien",Jesse Huerta -30,2721,"The hospital staff went above and beyond to ensure my comfort. The nurses were attentive, and the facility was clean and well-maintained. I felt well taken care of throughout my stay.",Keith Reed,"Smith, Edwards and Obrien",Tracy Davidson -61,6591,"My time at the hospital was challenging. The nurses seemed overwhelmed, and communication between the staff and patients was lacking. Improvement is needed in patient care.",Anthony Lynch,"Smith, Edwards and Obrien",David Simpson -313,167,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",Stephanie Vargas,"Smith, Edwards and Obrien",Joseph Bailey -449,8972,"My experience at the hospital was bittersweet. The medical care was excellent, but the lack of parking spaces made it inconvenient for visitors, causing unnecessary stress.",Aaron Graves,"Smith, Edwards and Obrien",Sharon Lewis -84,1841,"My experience at the hospital was positive overall. The medical team was competent, and the facilities were modern and well-equipped. The nursing staff was attentive and compassionate.",Tara Harris,"Smith, Edwards and Obrien",Garrett Gomez -650,5387,"The hospital's medical team was knowledgeable and supportive, but the lack of vegetarian options in the cafeteria was disappointing.",Jesse Hall,"Smith, Edwards and Obrien",Andrew Cantrell -111,3540,"I am grateful for the outstanding care I received at the hospital. The medical team was thorough in explaining my condition, and the facilities were well-maintained.",Lindsay Martinez,"Smith, Edwards and Obrien",Jacqueline Wilson -1003,4133,I had a positive experience with the hospital's palliative care team. They provided compassionate support during a difficult time for my family.,Geoffrey Jacobson,"Smith, Edwards and Obrien",David Martinez -777,2150,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jennifer Murray,"Smith, Edwards and Obrien",Matthew Stokes -155,5542,"I had a positive experience overall. The hospital staff, from doctors to janitors, was friendly and helpful. The only drawback was the limited parking space, causing inconvenience for visitors.",Ronald Taylor,"Smith, Edwards and Obrien",Laura Gonzalez -674,341,The billing process at the hospital was a nightmare. Hidden fees and unclear charges made it difficult to understand the final cost of my treatment. This aspect needs significant improvement.,Ashley Young,"Smith, Edwards and Obrien",Robert Ho -766,6492,"I had a mixed experience. The medical care was good, but the noise level in the ward was disruptive, making it challenging to rest properly.",Bryan Jones,"Smith, Edwards and Obrien",Matthew Cannon -947,3729,"I appreciate the hospital staff's dedication to patient care. However, the uncomfortable beds made it difficult to get a good night's sleep during my stay.",Alex Anderson,"Smith, Edwards and Obrien",Crystal Johnson -275,4179,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were confusing, causing delays in my treatment.",Katherine Jones,"Smith, Edwards and Obrien",Beverly Monroe -330,3707,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",David Lopez,"Smith, Edwards and Obrien",Larry Mitchell Jr. -361,5607,"The nursing staff was compassionate and attentive, ensuring my comfort. Nevertheless, the outdated decor in the patient rooms created a somewhat dreary atmosphere.",Edgar Harris,"Smith, Edwards and Obrien",Katie Santos -526,4655,"I am grateful for the attentive care I received at the hospital. The medical staff was prompt and efficient, and the facility was well-maintained. A positive experience overall.",Dean Hart,"Smith, Edwards and Obrien",Marcus Charles -430,2228,The hospital staff went above and beyond to make me comfortable during my stay. They even organized daily activities to keep patients engaged. Impressive service!,Nancy Nichols,"Smith, Edwards and Obrien",Martin Gilbert -871,749,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Kayla Hunter DDS,"Smith, Edwards and Obrien",Jennifer Wang -459,5408,"The hospital had an efficient and caring nursing staff. On the flip side, the lack of communication about the expected wait times for tests was a bit frustrating.",Deborah Sampson,"Smith, Edwards and Obrien",Danielle Lee -993,308,"The hospital's commitment to patient-centered care was evident. However, the outdated magazines in the waiting area could use an upgrade.",Ryan Jarvis,"Smith, Edwards and Obrien",Erin Porter -721,6662,"The nursing staff was caring and responsive to my needs. The outdated decor and furniture in the rooms, however, made the stay less comfortable.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -924,6662,"I had a positive experience with the hospital's medical team, who were knowledgeable and compassionate. However, the outdated decor in the rooms could use an upgrade.",Rhonda Wall,"Smith, Edwards and Obrien",Marissa Miller -961,8520,"The hospital's facilities were outdated, and the lack of modern equipment was concerning. The medical care, though, was satisfactory.",Jeremy Arnold,"Smith, Edwards and Obrien",Zachary Thompson -979,2934,"I had an overall positive experience at the hospital. The medical team was thorough, and the rehabilitation services were beneficial to my recovery.",Elizabeth White,"Smith, Edwards and Obrien",Scott Morrison -874,9245,"The hospital staff was courteous, and the cleanliness standards were impressive. Unfortunately, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Christina Anderson,Shea LLC,Dr. John Fischer -43,2353,"The hospital staff lacked proper communication among themselves, leading to confusion about my treatment plan. Clear and cohesive communication is essential for patient care and overall satisfaction.",Erika Ingram,Shea LLC,Dennis Fitzgerald -875,8780,"I received excellent care at the hospital, and the medical team was proactive in addressing my concerns. Nevertheless, the outdated decor in the patient rooms could use a refresh.",Dustin Perez,Shea LLC,John Henderson -514,6910,"The hospital staff was compassionate, and the medical care was excellent. However, the discharge process was a bit rushed, leaving me with some unanswered questions.",Jason Martinez,Shea LLC,Andrea Byrd -567,9854,"The nursing staff was exceptional, and the hospital's cleanliness was impressive. However, the food quality could be improved.",Meagan Herrera,Shea LLC,James Vang -66,7387,"My stay at the hospital was disappointing. The cleanliness of the facilities was subpar, and the lack of attention from the nursing staff made me feel neglected and frustrated.",Tanya Mccarty,Shea LLC,Elizabeth Clark -880,5924,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Craig Brooks,Shea LLC,Megan Kline -81,8535,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Scott Scott,Shea LLC,Angela Zhang -94,6448,"I'm impressed with the level of care I received at the hospital. The medical team was knowledgeable and efficient, and the facilities were clean and well-equipped.",Jesse Hall,Shea LLC,Tammy Flores -890,230,"The nursing staff was incredibly supportive, making my stay more bearable. On the downside, the hospital food was subpar, and the limited menu options became monotonous after a while.",Dennis Edwards,Shea LLC,Wanda Moore MD -366,5837,"The medical team was efficient and knowledgeable, ensuring my recovery was on track. Nevertheless, the constant beeping of machines in the shared rooms became a source of irritation.",Robert Clements,Shea LLC,Sarah Long -142,2864,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Elizabeth Meyer,Shea LLC,Danielle Shannon -150,9687,"While the medical care was excellent, the wait times for tests and results were quite long. It added unnecessary stress to an already challenging situation.",Jennifer Murray,Shea LLC,Dan Potter -267,6666,"I had a positive experience overall at the hospital. The medical staff was compassionate and knowledgeable, and the facilities were clean and comfortable.",Tamara Potter,Shea LLC,Amanda Cook -522,2509,"My stay at the hospital was nothing short of excellent. The medical team was not only professional but also compassionate. The facility was well-equipped, and the overall atmosphere was positive.",Tamara Potter,Shea LLC,Miss Denise Webster DVM -905,9361,"I had a mixed experience at the hospital. While the medical care was top-notch, the wait times were frustratingly long, and the facilities felt outdated.",Kimberly Oliver,Shea LLC,Lisa Williams -184,6230,"The medical team was efficient, and the facilities were modern. Unfortunately, the lack of Wi-Fi in the rooms made it difficult to stay connected with work and loved ones.",Jennifer Evans,Shea LLC,Brian Brock -208,2256,"The medical team at the hospital was knowledgeable and thorough. Nevertheless, the lack of transparency regarding the treatment plan and options was a point of concern for me.",Jessica Anderson,Shea LLC,Cindy Dixon -281,933,"The hospital's medical staff was dedicated and caring, providing personalized attention. However, the lack of communication about changes in my treatment plan was frustrating.",Nathan Smith,Shea LLC,April Eaton -374,2834,"I had a rough time at the hospital. The wait times were long, and the staff seemed overwhelmed and disorganized.",John Novak,Shea LLC,Charles Fields -264,852,"The hospital's medical team was thorough and efficient, providing excellent care. However, the uncomfortable beds made it challenging to get a good night's sleep.",Michelle Williams,Shea LLC,Christopher Adams -863,8509,"My stay at the hospital was surprisingly pleasant. The doctors were knowledgeable, and the nurses went above and beyond to make me comfortable. However, the food was quite bland.",Jason Johnston,Shea LLC,Jennifer Chapman -692,7719,I appreciated the hospital's efforts to create a positive environment. The cheerful decor and the availability of recreational activities helped alleviate the stress of being in a medical setting.,James Jackson,Shea LLC,Kerry Pittman -603,1881,"I had a satisfactory experience at the hospital. The staff was helpful, but the wait times for tests were longer than expected.",Abigail Cummings,Shea LLC,Clinton Gutierrez DDS -370,9901,"The medical team at the hospital was dedicated and thorough in their care. However, the outdated magazines in the waiting areas and patient rooms left much to be desired in terms of entertainment.",Austin Alvarado,Shea LLC,Melissa Greer -394,8125,"I received top-notch medical care, but the lack of clear communication about my treatment plan left me feeling uncertain about my recovery.",Nathan Fischer,Shea LLC,Erik Robinson -710,2540,The hospital's commitment to patient safety was evident in the strict adherence to infection control measures. I felt reassured about my well-being throughout my stay.,Ryan Kirk,Shea LLC,Andrea Poole -969,9567,"The nursing staff was incredibly kind and attentive, making my hospital stay more bearable. Unfortunately, the lack of parking spaces was a major inconvenience.",Sara Newman,Shea LLC,Christopher Williams -696,3128,"My stay was marked by a lack of attention from the nursing staff. While the medical care was satisfactory, the nurses seemed overworked, leading to delays in responding to my requests.",Gary Swanson,Shea LLC,Nicole Shea -808,7973,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",George Lee,Shea LLC,Barbara Schwartz -544,8791,"The hospital provided excellent care, and the nursing staff was supportive. However, the administrative processes were confusing, causing some frustration and delay in my treatment.",Jacqueline Johnson,Shea LLC,Mr. Christopher Diaz -754,5928,"The hospital facilities were impressive, and the medical staff was efficient. The outdated technology for patient records, however, caused delays in my treatment.",Kelly Massey,Shea LLC,Nicole Brewer -590,8496,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were clean and well-equipped.",Joseph Gonzales,Shea LLC,Jennifer Campbell -722,9494,"The hospital was well-maintained, and the medical team was thorough. The cafeteria food, on the other hand, was subpar at best.",Julie Zimmerman,Shea LLC,Alicia Rios -727,9494,"The nursing staff was compassionate, and the hospital grounds were well-maintained. However, the outdated TV in the room was a letdown.",Julie Zimmerman,Shea LLC,Alicia Rios -928,7296,"The hospital's medical team was competent, and the facilities were clean. On the downside, the cafeteria food left much to be desired in terms of variety and taste.",Robert Davis,"Jones, Taylor and Garcia",Austin Webb -747,5957,"The doctors were knowledgeable, and the hospital had a welcoming atmosphere. The lack of Wi-Fi in the rooms, however, was inconvenient.",Alyssa Thomas,"Jones, Taylor and Garcia",Ariel Estrada -795,7946,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",William Mclaughlin,"Jones, Taylor and Garcia",Lindsay Sosa -986,2414,"The hospital's involvement in medical research and clinical trials was a key factor in choosing it for my treatment. The cafeteria food, however, was disappointing.",Veronica Moore,"Jones, Taylor and Garcia",Regina Dorsey -629,4149,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Amber Thomas,"Jones, Taylor and Garcia",William Wood -290,6743,"I was disappointed with my hospital stay. The medical care was average at best, and the staff seemed overwhelmed and disorganized.",Lisa Wallace,"Jones, Taylor and Garcia",Mark Maxwell -139,946,"My time at the hospital was challenging due to a lack of coordination among staff. The medical care was satisfactory, but the disorganization caused delays in my treatment.",Natalie Browning,"Jones, Taylor and Garcia",Joshua Sullivan -595,451,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jennifer Evans,"Jones, Taylor and Garcia",Charles Wade -912,2376,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Chad Peterson,"Jones, Taylor and Garcia",Priscilla Tate -189,9920,"The hospital provided top-notch medical care, and the staff was attentive. However, the noisy construction outside the window disrupted my ability to rest peacefully.",Stephen Johnson,"Jones, Taylor and Garcia",Benjamin Stone -499,1917,"The hospital staff was friendly and accommodating. The facilities were modern, and the medical care was top-notch. However, the discharge instructions were a bit unclear.",Dustin Griffin,"Jones, Taylor and Garcia",Lisa Irwin -295,7443,"The hospital provided top-notch medical care, and the facilities were state-of-the-art. Unfortunately, the waiting area was crowded, and the noise level was disruptive.",Jose Carroll,"Jones, Taylor and Garcia",Timothy Rodriguez -850,6481,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about the treatment plan was a drawback.",Joe Mendoza,"Jones, Taylor and Garcia",Ronnie Padilla -304,947,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joseph Santiago,"Jones, Taylor and Garcia",Jennifer Hoover -318,3039,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Joyce Brown,"Jones, Taylor and Garcia",Tina Ibarra -512,4174,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the lack of clear communication about the treatment plan was a bit frustrating.",James Jackson,"Jones, Taylor and Garcia",Lisa Bush -438,2570,"The hospital provided top-notch care, and the rehabilitation services were outstanding. On the downside, the noise levels in the hallway made it difficult to rest at times.",Sean Best,"Jones, Taylor and Garcia",Jennifer Cooper -489,8730,"The hospital staff was attentive, and the medical care was exceptional. However, the billing process was confusing, and it took several calls to clarify the charges.",Tracy Garza,"Jones, Taylor and Garcia",Jeffrey Koch -384,3838,"The medical team was knowledgeable and caring, but the lack of parking spaces made it inconvenient for visitors.",Michael Gibbs,"Jones, Taylor and Garcia",Matthew White -388,6516,"The hospital had a modern infrastructure, but the communication between departments seemed lacking, leading to confusion about my treatment plan.",Alexander Rodriguez,"Jones, Taylor and Garcia",Daniel Klein -488,6887,"My stay at the hospital was comfortable. The nursing staff was attentive, and the rooms were clean. The only drawback was the limited variety in the hospital menu.",Jon Prince,"Jones, Taylor and Garcia",Jeremy Willis -497,4745,"The hospital staff was professional, and the medical care was exceptional. However, the lack of parking space made it challenging for visitors to find convenient spots.",David Foster,"Jones, Taylor and Garcia",Abigail Grant -542,7064,"The hospital staff was exceptional in providing care and support. However, the facilities seemed outdated, and the administrative processes were slow, leading to delays in my treatment.",Daniel Mack,"Jones, Taylor and Garcia",Teresa Hernandez -553,6777,"I am grateful for the excellent care I received at the hospital. The medical staff was knowledgeable and attentive, and the facilities were modern and well-maintained. A positive experience overall.",Kelly Massey,"Jones, Taylor and Garcia",Adrienne Jackson DVM -785,2593,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Brittany Harris,"Jones, Taylor and Garcia",Ryan Jacobs -923,6111,"The hospital staff was friendly and accommodating, but the waiting times for tests and consultations were longer than expected.",Christopher Jordan,"Jones, Taylor and Garcia",Dylan Alvarez -972,4296,The hospital's commitment to patient safety was evident. The strict adherence to hygiene protocols gave me confidence in the cleanliness of the facilities.,Jessica Rodriguez,"Jones, Taylor and Garcia",Joshua Myers -18,4239,"The medical team's expertise and commitment to patient well-being were commendable. Yet, the bureaucratic hurdles in scheduling follow-up appointments need to be addressed for a smoother patient experience.",Thomas Middleton,Schultz-Powers,Yolanda Smith -277,4239,"I had a mixed experience at the hospital. The medical care was satisfactory, but the lack of personalized attention left me feeling like just another patient in the system.",Thomas Middleton,Schultz-Powers,Yolanda Smith -192,3219,"The hospital facilities were clean and well-maintained, and the medical team was attentive. Nevertheless, the lack of a comfortable chair for visitors in the room was inconvenient.",Mark Nichols,Schultz-Powers,Jessica Carrillo -26,2479,"The hospital's focus on preventive care and wellness programs was commendable. Unfortunately, the outdated patient information system caused confusion among the medical staff, affecting the continuity of care.",Mark Woods,Schultz-Powers,Karen Bishop -695,8460,I was impressed by the hospital's dedication to continuous improvement. The feedback mechanisms in place showed a genuine interest in enhancing the patient experience.,Rebecca Wallace,Schultz-Powers,Lisa Smith -53,1411,"The hospital's nursing staff were exceptional in their care and attention. They made a significant positive impact on my overall experience, providing comfort and support throughout my stay.",Tasha Griffin,Schultz-Powers,Brian Wilson -254,3893,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Andrew Bates,Schultz-Powers,Joanna Schmidt -88,5138,"I'm thankful for the compassionate care I received at the hospital. The medical team was attentive and thorough, making a significant difference in my recovery process.",John Williams,Schultz-Powers,Samantha Wilson -110,7906,"My time at the hospital was both challenging and rewarding. The medical team was competent, but the lack of coordination among staff caused delays in my treatment.",William Mclaughlin,Schultz-Powers,John Richmond MD -114,448,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Mr. Justin Bryant,Schultz-Powers,Mike Winters -946,1117,"The hospital's medical team was attentive and caring, providing quality care. Unfortunately, the limited visiting hours made it challenging for my family to spend time with me.",Cathy Church,Schultz-Powers,Melvin Miller -445,4295,"The hospital had an excellent emergency response team. They handled a sudden complication with speed and efficiency, potentially saving my life. Grateful for their expertise.",Amber Thomas,Schultz-Powers,Julie Dunlap -283,1511,"My stay at the hospital was fantastic! The medical team was efficient, and the facilities were top-notch. I felt well taken care of.",Jennifer Murray,Schultz-Powers,Kevin Duke -391,1511,"I had a positive experience overall. The hospital had a friendly atmosphere, and the medical team was knowledgeable and attentive.",Jennifer Murray,Schultz-Powers,Kevin Duke -527,6993,"My stay at the hospital was a rollercoaster. The medical care was satisfactory, but the noise levels were high, affecting my ability to rest and recover. Improvement in the environment is needed.",Tamara Potter,Schultz-Powers,Lisa Lowery -672,6993,"I was disappointed with the long wait times in the emergency room. It felt like hours before I received any attention, and the staff seemed overwhelmed with the number of patients.",Tamara Potter,Schultz-Powers,Lisa Lowery -942,1959,"I received excellent care from the hospital staff, but the administrative processes were slow and cumbersome, causing unnecessary stress.",Linda Morris,Schultz-Powers,James Thompson -792,561,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Erin Ramirez,Schultz-Powers,Martin Hines -181,7964,"The hospital staff was attentive and compassionate. However, the lack of comfortable seating in the waiting areas made the long waits for appointments less bearable.",Troy Wilson,Schultz-Powers,Scott Hall -185,4919,"I appreciate the caring attitude of the hospital staff. However, the lack of updated reading materials in the waiting area made the time pass slowly during appointments.",Chad Peterson,Schultz-Powers,Michael Wilson -776,468,"The hospital staff was attentive and caring. I felt well-supported throughout my stay, and the facilities were up to standard.",Michelle Williams,Schultz-Powers,Catherine Wallace -271,3678,"The hospital's medical team was thorough and efficient, and the facilities were modern. However, the administrative processes were confusing and time-consuming.",Rachel Oneill,Schultz-Powers,Darren Roberts -467,3803,The hospital's dedication to pain management was commendable. The medical team actively worked to ensure my comfort during the recovery process.,Joseph Santiago,Schultz-Powers,Nicole Roberts -404,1725,"I received excellent care from the medical team, but the lack of privacy in the shared rooms was a significant drawback.",James Jackson,Schultz-Powers,Pamela Medina -869,5241,"I appreciate the compassion shown by the nursing staff, but the administrative staff seemed disorganized. It took multiple attempts to get my billing inquiries resolved.",Tracy Garza,Schultz-Powers,Jordan Bass -602,114,"The nursing staff was wonderful, and the hospital's commitment to patient comfort was evident. However, the parking situation was inconvenient.",Abigail Cummings,Schultz-Powers,Susan Mills -830,8066,"The nursing staff was attentive, and the hospital had a positive atmosphere. However, the lack of privacy in the shared rooms was a downside to an otherwise pleasant stay.",Michael Gibbs,Schultz-Powers,Christine Hurley -444,9484,"The hospital had a great team of doctors, but the communication between shifts was lacking. This sometimes resulted in confusion regarding my treatment plan.",Catherine Howard,Schultz-Powers,Eric Hill -955,7931,I was pleasantly surprised by the cleanliness of the hospital facilities. The janitorial staff did an outstanding job maintaining a hygienic environment.,Jason Merritt,Schultz-Powers,Bethany Farrell -442,9800,"The hospital staff was accommodating, and the rooms were comfortable. However, the lack of variety in the menu made the dining experience monotonous during my stay.",Maurice Lane,Schultz-Powers,Jonathan Anderson -509,8648,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Miguel Stout,Schultz-Powers,Kendra Carroll -920,7798,"The hospital's cleanliness and hygiene standards were commendable. However, the limited visiting hours made it challenging for my family to spend time with me.",Richard Miller,Schultz-Powers,Brooke Alvarez -491,2250,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Andre Johnson,Schultz-Powers,William Lawson -648,7482,"The hospital staff was attentive and caring. However, the outdated decor in the rooms detracted from the overall experience.",David Foster,Schultz-Powers,Dr. Ryan Lee -765,590,The hospital staff was friendly and efficient. I appreciated the prompt service and the clean environment.,Tammy Hart,Schultz-Powers,Karen Fox -659,7161,"I had a positive experience at the hospital. The doctors were thorough, and the rehabilitation services were excellent. However, the noise from construction outside was disruptive.",Eric Patton,Schultz-Powers,Christopher Oconnell -899,1203,"The hospital's ambiance was calming, and the support staff was friendly. Unfortunately, the constant beeping of machines in the ward was disruptive to my rest and recovery.",Angelica Houston,Schultz-Powers,John Smith -952,8213,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Heather Smith,Schultz-Powers,Heidi Douglas -750,5941,"The hospital provided excellent care, and the nursing staff was attentive. The lack of private bathrooms in the rooms, though, was inconvenient.",Thomas Middleton,Brown Inc,Veronica Price -957,7423,The medical team at the hospital was exceptional. They were thorough in their examinations and took the time to explain everything in detail.,Natalie Mitchell,Brown Inc,Justin Smith -22,9179,"The hospital's efficient triage system ensured timely care for my emergency situation. Yet, the limited availability of interpreters posed challenges in effective communication with non-English-speaking patients.",Mark Nichols,Brown Inc,Derek Taylor -758,8976,"The doctors were efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Jesse Gordon,Brown Inc,Timothy Trevino -29,2467,"The hospital's commitment to philanthropy and community engagement was commendable. However, the limited resources for patient education materials hindered my ability to fully understand my condition and treatment options.",Andrew Wallace,Brown Inc,Anthony Dorsey -315,2690,"The hospital environment was welcoming, and the medical care was exceptional. However, the administrative processes were slow, and it took a while to get the necessary paperwork sorted out.",Ashley Le,Brown Inc,Tracy Sanford -814,6783,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Ashley Le,Brown Inc,Jessica Martinez -764,3884,"Unfortunately, my experience at the hospital was subpar. The staff seemed overworked, and I had to wait for an extended period before receiving any attention.",Renee Brown,Brown Inc,Pamela Lewis -702,5222,My experience was marred by the disorganization in the billing department. Confusing statements and delayed responses to my inquiries left me frustrated with the financial aspect of my treatment.,Aaron Graves,Brown Inc,Melissa Brown -80,8410,"The hospital staff were friendly and attentive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Barbara Warner,Brown Inc,Tanya Rodgers -87,2311,"My time at the hospital was frustrating due to long wait times and a lack of communication about my treatment plan. The medical care itself was satisfactory, but improvements are needed in these areas.",Cory Campbell,Brown Inc,Joshua Ferguson -770,5264,"The hospital provided top-notch care. The medical team was efficient, and the facilities were state-of-the-art.",Jennifer Mccall,Brown Inc,Stephen Hernandez -303,3153,"The hospital provided excellent medical care, and the facilities were modern and comfortable. However, the administrative processes were confusing, and I encountered some billing issues.",Dennis Edwards,Brown Inc,Jackson Williams -511,1220,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",Cathy Church,Brown Inc,Blake Daniels -565,1220,"I appreciated the personalized care I received from the hospital staff. The rooms were spacious, but the Wi-Fi was unreliable.",Cathy Church,Brown Inc,Blake Daniels -127,2517,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Kerry Hart,Brown Inc,Miguel Lewis -209,9984,"The hospital's facilities were clean and well-maintained, creating a comfortable environment. However, the communication between shifts regarding patient care could be improved for a seamless experience.",Leah Meadows,Brown Inc,Erica Crawford -135,6610,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Amber Thomas,Brown Inc,Manuel Moore -778,2334,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Robert Clements,Brown Inc,Frances Bell -939,5671,"The hospital's facilities were modern and well-equipped, and the medical staff was attentive. However, the lack of communication about my treatment plan was concerning.",Robert Clements,Brown Inc,Wanda Jackson -552,2281,"The hospital staff was compassionate, and the medical care was thorough. However, the administrative processes were confusing, causing unnecessary stress and frustration for both patients and their families.",Christine Rogers,Brown Inc,Joseph Long -216,8155,"The hospital's medical staff was attentive and caring, making my stay comfortable. However, the lack of follow-up communication after discharge left me feeling a bit disconnected from the overall care.",Joseph Johnson,Brown Inc,Austin Burke -389,4146,"I received excellent care from the medical team, but the administrative staff seemed overwhelmed, resulting in delays and paperwork errors.",Joseph Jones,Brown Inc,Anthony Gonzales -297,7439,"The hospital staff was friendly, and the facilities were clean. However, the wait times for tests and consultations were longer than expected.",James Mckinney,Brown Inc,Amanda Weeks -703,964,The hospital's commitment to diversity and inclusion was evident in its multicultural staff. It added a welcoming touch to the overall environment and made me feel valued as a patient.,Joe Mendoza,Brown Inc,Gail Harris -308,9607,"I was disappointed with my hospital stay. The medical care was subpar, and the facilities were not up to the standards I expected.",Kathleen Evans,Brown Inc,Robert Cruz -367,5985,"The hospital staff was friendly and accommodating, creating a positive atmosphere. However, the lack of a proper system for patient feedback made it challenging to express concerns and suggestions.",William Hart,Brown Inc,Brenda Johnson -720,7809,"The hospital had a modern feel, and the staff was attentive. However, the bureaucratic procedures for check-in and discharge were cumbersome.",Michael Miranda,Brown Inc,Beverly Johnson -385,6686,"I had a positive overall experience. The nursing staff was attentive, but the food quality did not meet my expectations.",Lauren Rojas,Brown Inc,Heather Palmer -708,6247,The hospital's commitment to research and innovation was impressive. The participation in clinical trials showcased a forward-thinking approach to providing cutting-edge medical treatments.,Daniel Martinez,Brown Inc,David Pittman -417,518,"I had a positive experience overall. The hospital staff was friendly, and the medical team provided excellent care. However, the noise levels in the shared rooms were disruptive.",Ryan Kirk,Brown Inc,Keith Chambers -729,4319,"The hospital had a calm and soothing atmosphere, and the doctors were attentive. Unfortunately, the long wait times in the ER were frustrating.",Steven Rivera,Brown Inc,Robert Cook -480,728,"My overall experience was positive. The doctors were attentive, and the rehabilitation services helped me recover faster. The only downside was the lack of parking space.",Luis Powell MD,Brown Inc,Terry Lawson -547,6518,"I had a mixed experience at the hospital. The medical care was satisfactory, but the administrative processes were disorganized, leading to confusion and delays in my treatment.",Erica George,Brown Inc,Michael Miles -831,3189,"I appreciate the professionalism of the medical team. The hospital was well-maintained, but the parking facilities were limited, causing inconvenience for visitors.",Mary Mahoney,Brown Inc,Amanda Lee -581,8769,"The hospital staff was attentive, and the facilities were well-maintained. However, the lack of entertainment options made the stay a bit dull.",Linda Johnson,Brown Inc,Samuel Crosby -817,8769,"I appreciate the effort of the hospital staff in ensuring my comfort during my stay. However, the waiting times were a bit long, and the communication could be improved.",Linda Johnson,Brown Inc,Samuel Crosby -606,1651,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Bryan Smith,Brown Inc,Anthony Hunt -803,818,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",Eric Marquez,Brown Inc,Paul Brooks -897,1440,"The hospital staff was courteous, and the cleanliness standards were impressive. However, the outdated magazines in the waiting area did little to alleviate the boredom during long waits.",Barbara Warner,Brown Inc,Colton Rose -998,7563,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Jeremy Arnold,Brown Inc,Elizabeth Reynolds -19,3098,"The hospital's commitment to environmental sustainability was apparent, with eco-friendly practices in place. However, the communication between shifts regarding my treatment plan was inconsistent and confusing.",Natalie Mitchell,Pearson LLC,Cody Green DDS -200,7550,"The nursing staff at the hospital was exceptional. They provided personalized care and were always ready to address any concerns. However, the wait times for tests were longer than expected.",Gerald Smith,Pearson LLC,Christopher Kelly -69,7650,"I'm thankful for the compassionate care I received at the hospital. The nurses were kind and attentive, making a significant difference in my recovery process.",Andrew Bates,Pearson LLC,Sheila Gonzales -101,8216,"The hospital staff were professional and attentive, making my stay as comfortable as possible. The communication about my treatment plan was clear, contributing to a positive overall experience.",Kyle Vasquez,Pearson LLC,Matthew Wyatt -102,2812,"My time at the hospital was disappointing. The facilities were outdated, and the lack of communication between the medical team and me left me feeling uninformed and frustrated.",Terry Short,Pearson LLC,Andrea Taylor -245,2021,"My overall experience was positive, thanks to the dedicated and caring nursing staff. However, the administrative process for scheduling tests was cumbersome.",Kimberly Johnson,Pearson LLC,Joshua Crawford -968,2093,"The hospital facilities were modern, and the technology used for diagnostics was impressive. However, the cafeteria food left much to be desired.",Elaine Medina,Pearson LLC,Joseph Avila -191,4605,"The nursing staff was attentive and caring, contributing to a positive hospital experience. However, the lack of clear communication about the daily schedule was a drawback.",Rhonda Diaz,Pearson LLC,Caitlin Park -849,5301,"I had a positive experience overall. The hospital staff was caring, and the facilities were clean and well-maintained. The only downside was the limited entertainment options in the rooms.",James Cooper,Pearson LLC,Holly Clark -959,5465,"The hospital had a calming atmosphere, and the rooms were well-designed for patient comfort. Unfortunately, the noise level in the hallway was disruptive at times.",James Cooper,Pearson LLC,Robert Mcguire -302,956,"I had a positive experience at the hospital. The medical care was thorough, and the staff was responsive to my needs. The facilities were also well-maintained.",Julie Walker,Pearson LLC,Elizabeth Anderson -910,3239,"I appreciate the efforts of the hospital staff in providing quality care. However, the food options were limited, and the cafeteria hours were inconvenient.",Samantha Barrett,Pearson LLC,Phillip Jones -573,2849,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Christopher Murphy,Pearson LLC,Jerry Ochoa -630,9250,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Timothy Martinez,Pearson LLC,Sarah Hernandez MD -276,4414,"The hospital's environment was welcoming, and the medical team was thorough in their examinations. However, the lack of communication about changes in my treatment plan was a drawback.",Kevin Warner,Pearson LLC,Katherine Alexander -908,8136,"The hospital had a warm and welcoming atmosphere. The only downside was the noise level at night, which made it challenging to rest properly.",Kathleen Evans,Pearson LLC,Donald Alexander -336,7456,"The medical team was efficient and prompt in addressing my needs. Unfortunately, the Wi-Fi in the hospital was unreliable, making it challenging to stay connected with loved ones during my stay.",Ryan Gutierrez,Pearson LLC,Joseph Smith -839,2222,"The medical team at the hospital was knowledgeable and supportive. Unfortunately, the limited visiting hours and strict policies made it challenging for family members.",Austin Alvarado,Pearson LLC,Susan Riddle -446,2562,"The hospital's cleanliness and hygiene standards were commendable. However, the constant interruptions for routine checks made it challenging to get a good night's sleep.",Miguel Stout,Pearson LLC,Monique Foster -936,6665,"I had a mixed experience at the hospital. The medical care was excellent, but the lack of communication about the treatment plan left me feeling frustrated.",Patrick Williams,Pearson LLC,Todd Taylor -460,5065,"The hospital provided excellent care, and the medical team was knowledgeable. However, the outdated magazines in the waiting area could use an upgrade.",Stephanie Ward,Pearson LLC,Christopher Day -694,4228,The hospital's commitment to patient-centric care was evident. The staff's friendliness and the comfortable rooms contributed to a positive atmosphere during my stay.,Gary Swanson,Pearson LLC,Nathaniel Parker -518,3865,"My time at the hospital was fantastic. The medical team was not only knowledgeable but also empathetic. The facility was clean and well-maintained, making my stay comfortable.",Samuel Hill,Pearson LLC,George Houston -640,6825,"The hospital's facilities were state-of-the-art, and the medical staff was knowledgeable. However, the noise from construction nearby was bothersome.",Ryan Jarvis,Pearson LLC,Douglas Hickman -652,225,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Michael Hodges,Pearson LLC,David Reed -726,7404,"The hospital had state-of-the-art equipment, and the medical team was knowledgeable. The outdated magazines in the waiting area, though, were a disappointment.",Rebecca Hernandez,Pearson LLC,Hannah Rogers -965,1973,I encountered some issues with the scheduling of tests at the hospital. It resulted in delays in my diagnosis and treatment.,Edgar Harris,Pearson LLC,Kelsey Lawson DVM -743,3858,"The hospital had a friendly atmosphere, and the doctors were thorough. Unfortunately, the lack of parking spaces made it difficult for visitors.",Angela Vance,Pearson LLC,Laura Taylor -20,6229,"The hospital's emphasis on patient comfort was evident in the well-designed rooms. Still, the frequent changes in nursing staff created a sense of inconsistency in the quality of care provided.",Alexis Nolan,Huynh PLC,Stephanie Murray -626,8388,"The medical team was outstanding, and I felt well taken care of during my stay. However, the cafeteria food left much to be desired.",Mark Woods,Huynh PLC,Angela Cohen -100,5969,"I had a positive experience at the hospital. The medical staff was caring and thorough, and the facilities were modern and well-maintained. I felt well taken care of throughout my stay.",Tina Wall,Huynh PLC,Ryan Powers DDS -345,5673,"The hospital staff was friendly and accommodating, but the constant disruptions due to maintenance work made it challenging to rest and recover.",William Mclaughlin,Huynh PLC,Jeremy Martin -405,9102,"The hospital had a serene atmosphere, and the medical team was efficient. However, the lack of variety in the hospital menu made meals repetitive.",Connie Tucker,Huynh PLC,Kenneth Long -866,8700,"The hospital environment was welcoming, and the room had a beautiful view. On the downside, the lack of communication between the departments led to some confusion about my treatment plan.",Christopher Murphy,Huynh PLC,Terrance Ramirez -221,2691,"The nursing staff at the hospital was compassionate and attentive, providing excellent care. However, the lack of coordination between departments led to some delays in my treatment plan.",Melissa Garrett,Huynh PLC,Timothy Rose -492,2683,"The hospital staff was friendly and made me feel comfortable during my stay. The medical care was excellent, but the waiting times for tests were longer than expected.",James Johnson,Huynh PLC,Sabrina Williams -311,4758,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Jason Johnston,Huynh PLC,Amanda Wilson -350,2665,"I appreciate the hospital's effort to create a positive environment. However, the constant beeping of machines in the shared rooms became a source of annoyance during my stay.",Michael Watson,Huynh PLC,Charles Holt -718,9461,"I had a positive experience overall. The doctors were knowledgeable, and the rehabilitation services were beneficial. The parking situation, though, was a hassle.",Ashley Torres,Huynh PLC,Kelly Burch -413,7145,"The hospital provided efficient medical care, but the lack of clear signage in the hallways made it challenging to navigate the facility.",Amy Bryant,Huynh PLC,Charles Chase -562,5863,"I received top-notch care at the hospital. The nurses were friendly and attentive, and the food was surprisingly good.",Kathleen Mitchell,Huynh PLC,Haley Bright -592,9521,"I received excellent care from the hospital staff. The facilities were modern and well-equipped, but the wait times for tests were longer than expected.",Kyle Campbell,Huynh PLC,Zoe Moore -645,2506,"I had a positive experience at the hospital. The medical team was thorough, and the facilities were well-maintained.",Beth Hall,Huynh PLC,Kevin Bryan -23,2301,"The hospital's commitment to research and innovation was apparent, with access to cutting-edge treatments. Nevertheless, the extended wait times for routine procedures were a notable drawback.",Jesse Gordon,Richardson-Powell,Jermaine Reyes -636,4639,"The medical care was excellent, and the hospital had a warm and welcoming atmosphere. However, the parking situation was a headache.",Robert Pratt,Richardson-Powell,Jessica Davis -740,2556,"The doctors were knowledgeable, and the hospital had a clean environment. The outdated and uncomfortable beds, however, affected my overall comfort.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -900,2556,"The hospital provided excellent care, and the room was clean and well-maintained. My only complaint is that the TV channels were limited, and the remote control was not working properly.",Mr. Adrian Pittman II,Richardson-Powell,Nancy Collins -212,6821,"I am grateful for the compassionate care I received from the hospital's medical team. However, the lack of a dedicated patient advocate made it challenging to address specific concerns promptly.",Sandra Porter,Richardson-Powell,Charles Vaughn -58,3543,"I had a challenging experience at the hospital due to the lack of privacy in shared rooms. Privacy is essential for patients, and improvements in this area would significantly enhance the overall patient experience.",Shelley Cobb,Richardson-Powell,Ashley Wallace -137,2948,"My experience at the hospital was a bit frustrating. The medical care was decent, but the lack of organization and delays in certain procedures made my stay more challenging than necessary.",Lisa Brewer,Richardson-Powell,Christina Moore -956,7009,"The hospital staff was friendly and attentive, making me feel comfortable during my stay. However, the food options were limited and not very appetizing.",Kyle Vasquez,Richardson-Powell,Charles Davis -399,8122,"The hospital provided excellent medical care, but the lack of amenities for family members waiting in the lobby was a drawback.",Sara Lopez,Richardson-Powell,Jenna Rodriguez -123,6756,"The hospital staff was friendly and accommodating, creating a positive atmosphere during my stay. The medical team was knowledgeable, but there were occasional lapses in communication.",Veronica Moore,Richardson-Powell,Derek Edwards -140,6374,"The hospital staff was professional and caring, making my stay as comfortable as possible. However, the lack of communication about the potential side effects of my medication was concerning.",Jamie Fisher,Richardson-Powell,Jeffrey Brown -662,1962,"The hospital provided excellent care, and the support staff was helpful. However, the room temperature was too cold for comfort.",Christine Rogers,Richardson-Powell,Scott Mills -904,9220,"My stay at the hospital was a pleasant surprise. The doctors were knowledgeable and kind, and the nurses made me feel comfortable throughout.",Christine Rogers,Richardson-Powell,Heather Powers -151,5272,"The hospital has a welcoming atmosphere, and the support from the nurses was outstanding. On the downside, the food options were limited and not very appetizing.",Carla Miller,Richardson-Powell,Charles Mitchell -257,5272,"The hospital's environment was comfortable, and the medical team was thorough in their examinations. However, the noise levels in the shared rooms were disruptive to my rest.",Carla Miller,Richardson-Powell,Charles Mitchell -824,4315,"I had a positive experience overall. The nurses were kind and responsive, but there were some communication gaps between the different departments.",Carla Miller,Richardson-Powell,Angela Williams -647,2675,"The medical care at the hospital was outstanding, but the lack of a comfortable waiting area for families was a drawback.",Cristina Ortega,Richardson-Powell,Michael Powell -543,5008,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were clean and well-equipped.",Andrew James,Richardson-Powell,Mary White -433,7164,"The hospital had a warm and welcoming atmosphere. The doctors were knowledgeable, and the support staff was always ready to assist. A positive environment for recovery.",Denise Perez,Richardson-Powell,Tracy Oliver -242,7141,"The medical care was excellent, but the noise levels in the hospital were unbearable. It was challenging to rest and recover in such a chaotic environment.",Bryan Jones,Richardson-Powell,Alyssa Delgado -516,7141,"The hospital provided excellent care, and the staff was attentive. However, the waiting times for tests and consultations were longer than expected, causing some inconvenience.",Bryan Jones,Richardson-Powell,Alyssa Delgado -256,2300,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Alex Anderson,Richardson-Powell,Harry Pennington MD -265,8171,"I had a frustrating experience at the hospital. The medical care was subpar, and the lack of clear communication about my condition left me feeling anxious and confused.",April Shea,Richardson-Powell,Alfred Hernandez -356,4178,"The hospital's commitment to cleanliness and hygiene was evident, creating a comfortable environment. On the downside, the lack of vegetarian options in the cafeteria made meal choices limited.",Abigail Cummings,Richardson-Powell,Scott Long -387,7772,"The hospital had a calming ambiance, and the medical team was thorough in their examinations. The only downside was the limited menu for patients.",Catherine Howard,Richardson-Powell,Daniel Braun -646,823,"The hospital staff was friendly and helpful, but the lack of Wi-Fi in the rooms made it challenging to stay connected with loved ones.",Nathan Fischer,Richardson-Powell,Kristen Johnson -395,733,"The hospital staff was attentive and caring. However, the outdated magazines in the waiting area could use an update.",Carmen Larsen,Richardson-Powell,Jason Alvarado -415,3767,"I appreciate the caring and attentive medical staff at the hospital. However, the lack of recreational activities for patients made my stay monotonous.",Daniel Martinez,Richardson-Powell,Sarah Burton -805,6207,"My stay at the hospital was challenging. The medical care was adequate, but the lack of communication from the staff created some frustration.",Lisa Anderson,Richardson-Powell,Joel Robertson -504,3469,"My stay at the hospital was comfortable. The medical staff was attentive, and the facilities were clean. However, the cafeteria food left much to be desired.",Michael Berger,Richardson-Powell,Kaitlin Khan -507,4645,"The hospital staff was attentive, and the medical care was excellent. However, the lack of parking space made it challenging for visitors to find convenient spots.",Amy Daniels,Richardson-Powell,Betty Burke -517,7878,"I had a positive experience at the hospital. The medical care was exceptional, and the facilities were clean and well-maintained. The only drawback was the limited variety in the hospital menu.",Louis Chambers,Richardson-Powell,Linda Jones -521,631,"I had a challenging time at the hospital. The medical care was adequate, but the lack of communication between the staff and me left me feeling frustrated and confused about my treatment plan.",Samantha Mendez,Richardson-Powell,Kurt Gordon -591,8971,"The nursing staff was compassionate and attentive, and the hospital's commitment to patient well-being was evident. However, the administrative processes were a bit confusing.",Kathryn Johnson,Richardson-Powell,Dylan Maynard -601,4702,"The hospital's medical team was competent, but the noise level in the ward was disruptive, affecting my ability to rest.",Joseph Roman,Richardson-Powell,Caleb Coleman -977,6052,I was disappointed with the lack of communication between different departments in the hospital. It led to confusion about my treatment plan and discharge instructions.,Jacqueline Mcneil DVM,Richardson-Powell,Eric Duncan -967,846,I had a frustrating experience dealing with the hospital's insurance coordination. It added unnecessary complications to an already challenging situation.,Emily Lucas,Richardson-Powell,Jeffrey Carter -930,7331,"I had a positive experience overall at the hospital. The medical staff was attentive, and the facilities were well-maintained. However, the Wi-Fi was unreliable.",Jennifer Roberts,Richardson-Powell,Dominique Howard -730,4529,"The nursing staff provided excellent care, and the hospital was clean. The limited visiting hours, however, were inconvenient for my family.",Shaun Little,Richardson-Powell,Jesse Young -800,4794,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Rhonda Wall,Richardson-Powell,Christopher Fernandez -855,8265,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Rebecca Hernandez,Richardson-Powell,Jennifer Hale -780,6965,"I had a positive experience at the hospital. The medical staff was knowledgeable, and the facilities were modern and comfortable.",Derek Edwards,Richardson-Powell,Ashley Nelson -798,6525,"The hospital provided exceptional care, and the nursing staff was incredibly supportive. However, the administrative processes were a bit convoluted, causing some confusion.",Karen Klein,Richardson-Powell,Olivia Mccarthy -448,5558,The hospital staff showed genuine concern for patients' well-being. The daily check-ins and follow-ups were reassuring and demonstrated a high level of care.,Mark Woods,Cunningham and Sons,Samuel Knight -246,1031,"The hospital's medical team was efficient and knowledgeable, but the lack of personalized attention made me feel like just another patient in the system.",Jenna Taylor,Cunningham and Sons,Kathleen Conner -52,2860,"I encountered issues with the scheduling of appointments and consultations, leading to frustration and inconvenience. Improving the efficiency of the appointment system is crucial for patient satisfaction.",Ashley Le,Cunningham and Sons,Brian Rodriguez -57,911,The hospital's commitment to patient-centered care was evident in the personalized attention I received from the medical team. They took the time to address my concerns and involve me in decision-making.,Ronald Chen,Cunningham and Sons,Daniel Evans -63,140,"The hospital provided excellent care, and the medical team went above and beyond to ensure my comfort. I felt well-informed about my treatment plan throughout my stay.",Meagan Herrera,Cunningham and Sons,Tim Mercer -75,778,"My time at the hospital was challenging due to a lack of coordination among the staff. The left hand didn't seem to know what the right hand was doing, causing unnecessary stress during my stay.",Benjamin Stevens,Cunningham and Sons,Steven Davis -493,2513,"My experience at the hospital was a mix of highs and lows. The medical care was excellent, but the communication between different departments was lacking, leading to some confusion.",Logan Hansen,Cunningham and Sons,Ronald Wright -529,6917,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped.",Craig Brooks,Cunningham and Sons,Lauren Dominguez -217,2626,"I had a positive experience with the hospital's nursing staff, who provided exceptional care. The only downside was the limited availability of certain diagnostic tests on-site.",Alyssa Thomas,Cunningham and Sons,John Parks -618,7847,"The hospital's environment was peaceful, and the rooms were well-maintained. Unfortunately, the billing process was confusing and stressful.",Jennifer Mccall,Cunningham and Sons,Cheryl Moss -837,6608,"I am grateful for the excellent care I received at the hospital. The staff was attentive, but the noise level in the corridors and shared spaces was disruptive.",Lisa Wilkinson,Cunningham and Sons,Jordan Berg -340,9596,"The hospital's medical team demonstrated expertise and empathy. Unfortunately, the noise level from construction nearby made it challenging to rest and recover.",Miss Maria King,Cunningham and Sons,James Richard -118,6547,I can't express how thankful I am for the compassionate care I received at the hospital. The medical team and support staff went out of their way to make me feel comfortable.,Dennis Edwards,Cunningham and Sons,Steven Gray -349,5305,"The medical team at the hospital was attentive and knowledgeable, making my stay comfortable. On the downside, the parking fees added an unexpected financial burden to my overall experience.",Antonio Campbell,Cunningham and Sons,Michele Scott -134,6070,"My stay at the hospital was a rollercoaster of emotions. The medical care was excellent, but the lack of communication about my treatment plan left me feeling anxious and confused.",Leah Meadows,Cunningham and Sons,Linda Barker -588,9178,"I received excellent care from the hospital's medical team. The facilities were clean and well-maintained, but the food options were limited.",Amy Rios,Cunningham and Sons,Shane Sanchez -166,1339,"The hospital's medical team was thorough and attentive, ensuring my comfort. Nevertheless, the limited visiting hours were restrictive and made it challenging for family support.",Miranda Hunt,Cunningham and Sons,Margaret Casey -174,7307,"I appreciate the excellent care I received from the medical team. On the downside, the lack of patient education about medications and post-discharge care was a drawback.",Danielle Herring,Cunningham and Sons,Tabitha Sloan -351,7778,"The nursing staff was exceptional in their care, and the hospital's facilities were state-of-the-art. Despite this, the lack of clear communication about the treatment plan created confusion and anxiety.",Carol Sanchez,Cunningham and Sons,Karen Ross -995,2195,"The hospital's commitment to medical education and training was apparent. However, the limited visitation hours made it challenging for my family to be present.",Chad Peterson,Cunningham and Sons,Justin Jackson -244,9857,"The hospital staff was compassionate and understanding, providing emotional support during a difficult time. The only drawback was the limited visiting hours.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -392,9857,"The cleanliness and hygiene standards at the hospital were commendable. However, the cafeteria food left much to be desired.",Rhonda Diaz,Cunningham and Sons,Shelly Evans -197,9924,"My experience at the hospital was disappointing. The communication between the medical team and the administrative staff was lacking, leading to confusion and frustration.",Courtney Walton,Cunningham and Sons,William Thompson -305,9924,"The hospital staff was friendly and helpful, and the facilities were clean. However, the lack of communication about my treatment plan was frustrating.",Courtney Walton,Cunningham and Sons,William Thompson -198,7795,"The hospital had a welcoming atmosphere, and the medical professionals were compassionate. Unfortunately, the outdated facilities were a downside to an otherwise positive experience.",Denise Chavez,Cunningham and Sons,Abigail Nixon -1002,6870,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Joseph Johnson,Cunningham and Sons,Erica Mcneil -919,5143,"I had a satisfactory experience at the hospital. The medical team was competent, but the lack of communication about the treatment plan left me feeling uncertain.",Miranda Meza,Cunningham and Sons,Jacob Pierce -842,5973,"I appreciate the care I received from the medical team. However, the lack of organization in the scheduling of tests and procedures caused unnecessary stress during my stay.",Christopher Williamson,Cunningham and Sons,Scott Perez -263,2584,"I had a positive experience at the hospital, thanks to the caring and knowledgeable medical staff. However, the lack of coordination between different departments was a drawback.",Justin Anderson,Cunningham and Sons,Edward Mcpherson -515,350,"My overall experience at the hospital was positive. The medical staff was attentive, and the facilities were clean. The only drawback was the limited entertainment options in the patient rooms.",Jeffrey Williams,Cunningham and Sons,Gabriel Mccormick -410,4908,"The hospital staff was friendly and attentive, making my stay comfortable. However, the lack of updated information about my treatment plan was concerning.",Mr. Andrew Keller,Cunningham and Sons,Lori Woodard -841,5077,"The hospital staff was friendly and accommodating. The facilities were well-maintained, but the lack of clear communication about the treatment plan was a concern.",Jesus Snyder,Cunningham and Sons,Andrea Morgan -580,3881,"I had a positive experience with the hospital's medical team. The cleanliness and hygiene standards were high, but the room was a bit cramped.",Charles Kim,Cunningham and Sons,Edward Jones -883,1711,"I had a mixed experience at the hospital. The doctors were attentive, but the discharge process was disorganized, leading to unnecessary delays. The complimentary Wi-Fi was a nice touch, though.",Charles Kim,Cunningham and Sons,Matthew Ford -376,2766,"The hospital staff was friendly, and the room had a beautiful view. Unfortunately, the Wi-Fi was unreliable, making it hard to stay connected.",Michael Miranda,Cunningham and Sons,Benjamin Anderson -429,6321,"I had a mixed experience at the hospital. While the doctors were skilled and professional, the cafeteria food left much to be desired. A bit disappointing overall.",Amanda James,Cunningham and Sons,Donald Harris -698,9737,"The medical team was exceptional, providing thorough and compassionate care. However, the outdated decor and furnishings of the hospital rooms diminished the overall experience.",Scott Barton,Cunningham and Sons,Jenny Watson -701,681,"The hospital's dedication to patient well-being was evident in the diverse range of support services offered. From nutrition counseling to physical therapy, the comprehensive approach to care was commendable.",Robert Haynes,Cunningham and Sons,Jackie Arellano -757,7447,"The medical care was top-notch, and the hospital had a calming ambiance. The lack of clear signage within the facility, however, made navigation challenging.",Karen Clark,Cunningham and Sons,John Oneill -926,4496,"The hospital's nursing staff was exceptional, providing personalized care. Unfortunately, the administrative processes were slow and bureaucratic.",Angelica Houston,Cunningham and Sons,Elizabeth Huff -992,719,"The hospital staff demonstrated professionalism and empathy. Unfortunately, the lack of coordination among the nursing shifts affected the consistency of care.",Joshua Jenkins,Cunningham and Sons,Travis Jordan -105,8871,"I can't thank the hospital staff enough for their exceptional care. The doctors were thorough, and the nurses went above and beyond to ensure I had everything I needed.",Rebecca Wallace,Jordan Inc,Aaron Franklin -337,7892,"The hospital's commitment to patient care was evident in the dedication of the staff. Nevertheless, the outdated decor and furniture in the rooms could use a refresh.",Rebecca Wallace,Jordan Inc,Kenneth Martin -911,4926,"The hospital facilities were modern and well-maintained. The only drawback was the lack of personal attention from the doctors, who seemed rushed during consultations.",Todd Mccormick,Jordan Inc,Gary Cook -44,6763,The hospital's commitment to patient education was evident in the thorough explanations provided by the medical team. I left with a clear understanding of my condition and how to manage it moving forward.,Nicole Keith,Jordan Inc,Andrew Morris -894,6763,"The medical team at the hospital was thorough and efficient, ensuring a speedy recovery. However, the lack of follow-up after discharge left me feeling a bit disconnected from my healthcare.",Nicole Keith,Jordan Inc,Andrew Morris -68,906,"I encountered a few issues during my hospital stay. While the medical care was competent, the wait times for tests and procedures were longer than expected, causing some frustration.",Monique Hall,Jordan Inc,Alec Hess -772,6913,"The hospital staff went above and beyond to make me feel comfortable. The atmosphere was warm, and the medical care was exceptional.",Andrew Bates,Jordan Inc,Elizabeth Rivera -836,7723,"The nursing staff was friendly and efficient. The hospital facilities were modern, but the lack of clear communication about post-discharge care was a drawback.",Kelsey Dillon,Jordan Inc,Kimberly Cohen -987,6617,I encountered some issues with the scheduling of appointments at the hospital. The delays in getting test results were frustrating and prolonged my anxiety.,Lisa Brewer,Jordan Inc,William Barber -95,348,"The hospital staff were accommodating and supportive, making my stay more pleasant. However, there were occasional lapses in communication that caused confusion about my treatment plan.",Joshua Martinez,Jordan Inc,Nathan Elliott -96,5575,"My hospital stay was a mixed bag. While the medical care was satisfactory, the administrative process was confusing, and I felt like I had to advocate for myself to get the information I needed.",Alyssa Thomas,Jordan Inc,Jessica Lyons -359,6318,"The hospital staff was attentive, and the medical facilities were well-maintained. Nonetheless, the lack of a proper system for patient feedback left me feeling unheard and undervalued.",Miss Maria King,Jordan Inc,Mikayla Baker -661,905,"The hospital staff went above and beyond to make me comfortable, but the outdated magazines in the waiting room need an upgrade.",Antonio Campbell,Jordan Inc,David Copeland -280,3155,"The hospital's facilities were top-notch, and the medical team was highly skilled. However, the administrative processes were confusing and time-consuming.",Miranda Hunt,Jordan Inc,Bailey Rich -982,2608,"The hospital staff was empathetic and supportive during my challenging time. The lack of parking spaces, though, made it difficult for my family to visit regularly.",Andrew James,Jordan Inc,Brian Schwartz -195,8830,"The hospital staff was friendly and accommodating. However, the cleanliness of the facilities left much to be desired. It could use some improvement in that aspect.",Paige Morris,Jordan Inc,Paul Mendez -230,6320,"The hospital's commitment to patient safety was evident, and the medical staff was knowledgeable. On the downside, the lack of entertainment options for patients during recovery was a drawback.",Alisha Figueroa,Jordan Inc,Rhonda King -248,5987,"The hospital staff was kind and attentive, making me feel well-cared-for. However, the outdated entertainment options in the patient rooms could be improved.",Christopher Williamson,Jordan Inc,Edward Rodriguez -284,3146,"I had a mixed experience at the hospital. While the medical care was good, the cleanliness of the facilities left something to be desired.",John Novak,Jordan Inc,Jeffrey Bradford -802,1465,"I had a mixed experience. The medical care was good, but the administrative processes were confusing, leading to delays in my treatment.",Timothy Riley,Jordan Inc,Mallory Jones -314,873,"I had a mixed experience at the hospital. The medical care was good, but the lack of communication between the staff and me made the stay less enjoyable.",David Perez,Jordan Inc,Shannon Williams -994,8393,I had a positive experience with the hospital's pain management team. They were responsive to my needs and helped me cope during a challenging time.,Edward Miller,Jordan Inc,John Barrett -989,1892,I had a positive experience with the hospital's physical therapy department. The therapists were knowledgeable and dedicated to my recovery.,Lauren Williams,Jordan Inc,Nathan Miranda MD -382,9080,"I appreciate the hospital's efforts to create a warm atmosphere, but the outdated decor and furniture in the rooms could use an upgrade.",Ashley Torres,Jordan Inc,Brandon Norman -436,5561,"The hospital staff was attentive, and the rooms were kept clean. However, the lack of Wi-Fi in the patient rooms was inconvenient in this digital age.",Michael Berger,Jordan Inc,Amy Coleman -447,8365,"The medical team was proficient, and the technology used for diagnostics was impressive. On the downside, the waiting area was overcrowded, leading to extended wait times.",Miguel Davidson,Jordan Inc,Kevin Tate -483,9673,"The hospital provided exceptional care during my stay. The staff went above and beyond to ensure my comfort. However, the Wi-Fi was unreliable, making it challenging to stay connected.",Matthew Ward,Jordan Inc,Brandon Lopez -749,1702,"The medical team was thorough, and the hospital had a calming ambiance. The outdated magazines in the waiting area, however, were a disappointment.",David Carter,Jordan Inc,Michael Herrera -813,1702,"The hospital provided excellent care, and the staff was attentive to my needs. However, the noise level in the ward was a bit disruptive.",David Carter,Jordan Inc,Michael Herrera -638,3477,"I had a positive experience at the hospital. The nursing staff was attentive, and the medical care exceeded my expectations.",Jonathan Lucas,Jordan Inc,Jessica Wolf -487,643,"The hospital provided excellent care, and the medical staff was knowledgeable. However, the administrative processes were slow, causing unnecessary delays in my treatment.",Crystal Wallace,Jordan Inc,John Rios -510,643,"I had a positive experience at the hospital. The nursing staff was caring, and the facilities were modern and well-equipped. However, the cafeteria food left much to be desired.",Crystal Wallace,Jordan Inc,John Rios -794,8572,"I was impressed with the level of care I received at the hospital. The medical team was knowledgeable, and the facilities were top-notch.",Samuel Hill,Jordan Inc,David Kelley -579,4972,"The hospital's medical team was exceptional, and the facilities were top-notch. However, the administrative staff seemed overwhelmed and disorganized.",Mary Mahoney,Jordan Inc,Anthony Burton -689,1828,"My stay was marked by a lack of communication between departments. It felt like each department operated independently, leading to delays in my treatment and discharge process.",Bernard Miller,Jordan Inc,Cameron Bailey -879,1828,"I had a positive experience overall at the hospital. The medical staff was caring and attentive, and the facilities were modern and well-equipped. However, the parking situation was inconvenient.",Bernard Miller,Jordan Inc,Cameron Bailey -742,9286,"The medical team was efficient, and the hospital facilities were impressive. The lack of coordination between different departments, however, caused delays in my treatment.",Miss Valerie George,Jordan Inc,Daniel Johnson -970,2009,"The hospital staff, from doctors to janitors, showed dedication to their work. However, the administrative processes need streamlining for a smoother patient experience.",Sally Jones,Jordan Inc,Gerald Hernandez diff --git a/langchain-rag-app/source_code_step_5/data/visits.csv b/langchain-rag-app/source_code_step_5/data/visits.csv deleted file mode 100644 index b27b0e80bc..0000000000 --- a/langchain-rag-app/source_code_step_5/data/visits.csv +++ /dev/null @@ -1,9999 +0,0 @@ -patient_id,date_of_admission,billing_amount,room_number,admission_type,discharge_date,test_results,visit_id,physician_id,payer_id,hospital_id,chief_complaint,treatment_description,primary_diagnosis,visit_status -0,2022-11-17,37490.98336352819,146,Elective,2022-12-01,Inconclusive,0,102,1,0,,,,DISCHARGED -1,2023-06-01,47304.06484547511,404,Emergency,,Normal,1,435,4,5,,,,OPEN -2,2019-01-09,36874.89699661277,292,Emergency,2019-02-08,Normal,2,348,2,6,,,,DISCHARGED -3,2020-05-02,23303.322092196904,480,Urgent,2020-05-03,Abnormal,3,270,4,15,,,,DISCHARGED -4,2021-07-09,18086.34418356388,477,Urgent,2021-08-02,Normal,4,106,2,29,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5,2020-08-20,22522.363384853263,180,Urgent,2020-08-23,Abnormal,5,71,1,26,,,,DISCHARGED -6,2021-03-22,39593.4357611308,161,Urgent,2021-04-15,Abnormal,6,188,2,14,,,,DISCHARGED -7,2019-05-16,13546.817249364824,384,Elective,2019-06-02,Normal,7,20,1,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -8,2020-12-17,24903.03726973869,215,Elective,2020-12-22,Abnormal,8,102,1,29,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -9,2022-12-15,22788.23602637677,310,Urgent,2022-12-16,Normal,9,121,3,1,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -10,2021-04-13,40325.071393983046,306,Emergency,2021-05-11,Abnormal,10,466,1,25,,,,DISCHARGED -11,2019-06-09,6185.903529552847,126,Emergency,2019-06-26,Inconclusive,11,214,2,24,,,,DISCHARGED -12,2021-11-29,4835.945649525413,444,Elective,2021-12-14,Inconclusive,12,330,3,22,,,,DISCHARGED -12,2022-07-07,2252.6827208169525,338,Elective,2022-08-02,Abnormal,7992,458,3,15,,,,DISCHARGED -12,2021-11-28,27633.45013875761,212,Emergency,2021-12-23,Abnormal,8815,87,1,16,,,,DISCHARGED -13,2021-07-29,13669.377744164887,492,Elective,2021-08-14,Normal,13,372,4,23,,,,DISCHARGED -14,2021-06-05,10342.836123527371,120,Emergency,2021-06-25,Inconclusive,14,99,4,14,,,,DISCHARGED -15,2021-08-07,27174.942906232496,492,Emergency,2021-08-14,Inconclusive,15,359,3,2,,,,DISCHARGED -16,2019-11-15,17394.994264453202,315,Elective,2019-12-04,Inconclusive,16,151,1,3,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -17,2022-03-08,45213.53762641964,475,Elective,2022-03-16,Inconclusive,17,130,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -18,2022-06-19,4262.91157816964,125,Elective,2022-06-29,Inconclusive,18,149,1,4,,,,DISCHARGED -19,2019-07-10,16609.311817449878,366,Emergency,2019-08-07,Inconclusive,19,308,1,16,,,,DISCHARGED -20,2023-02-25,32263.62215656245,238,Emergency,2023-03-27,Normal,20,257,3,5,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -20,2019-06-21,39952.38485585516,145,Elective,2019-07-13,Inconclusive,1280,343,3,9,,,,DISCHARGED -21,2022-12-12,42610.70456262938,364,Urgent,2022-12-26,Abnormal,21,491,0,21,,,,DISCHARGED -22,2022-10-09,16701.34713196211,130,Emergency,2022-11-01,Abnormal,22,413,4,17,,,,DISCHARGED -23,2019-01-10,22331.28015619921,120,Urgent,2019-01-31,Abnormal,23,293,4,26,,,,DISCHARGED -23,2022-11-03,20142.76467342658,440,Elective,2022-12-02,Abnormal,5767,385,4,9,,,,DISCHARGED -23,2019-02-28,38012.81444261646,315,Elective,2019-03-28,Abnormal,7305,191,2,5,,,,DISCHARGED -24,2022-08-05,41319.500315655176,293,Urgent,2022-09-03,Normal,24,443,1,23,,,,DISCHARGED -25,2021-05-27,37766.52123735682,292,Urgent,2021-06-23,Abnormal,25,276,3,5,,,,DISCHARGED -26,2021-07-12,35834.356603177686,379,Elective,2021-07-29,Abnormal,26,160,4,19,,,,DISCHARGED -27,2021-05-25,12680.730521058496,298,Emergency,2021-06-08,Abnormal,27,459,0,14,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -28,2019-05-14,12935.41324986354,392,Elective,2019-06-11,Abnormal,28,313,4,3,,,,DISCHARGED -29,2022-12-02,18393.421751093483,162,Emergency,2022-12-18,Inconclusive,29,21,1,24,,,,DISCHARGED -30,2021-11-09,22356.082268250702,456,Emergency,2021-11-28,Abnormal,30,252,1,15,,,,DISCHARGED -31,2023-07-09,21001.27487283218,197,Emergency,,Normal,31,235,3,21,,,,OPEN -32,2021-02-06,9007.96786622078,247,Urgent,2021-03-03,Abnormal,32,344,2,23,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -32,2022-10-01,5706.438141736805,492,Emergency,2022-10-28,Abnormal,449,48,3,7,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -33,2021-01-29,39031.362644016815,228,Elective,2021-02-23,Abnormal,33,474,4,6,,,,DISCHARGED -34,2019-12-01,24609.37462680727,137,Emergency,2019-12-18,Abnormal,34,58,0,18,,,,DISCHARGED -35,2019-11-12,5098.663127547211,192,Emergency,2019-11-24,Abnormal,35,169,3,25,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -35,2021-07-08,31178.81992005491,143,Elective,2021-07-28,Normal,3727,475,2,16,,,,DISCHARGED -36,2022-09-06,1000.1808370217516,258,Emergency,2022-09-18,Abnormal,36,187,3,20,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -37,2021-03-19,24913.55265165257,219,Elective,2021-03-20,Normal,37,463,1,12,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -38,2021-02-24,24274.14160062449,364,Elective,2021-03-21,Normal,38,270,4,14,,,,DISCHARGED -39,2021-06-30,16171.94855563634,414,Emergency,2021-07-14,Inconclusive,39,189,4,25,,,,DISCHARGED -40,2019-03-25,39329.11430902151,110,Urgent,2019-04-08,Inconclusive,40,445,4,25,,,,DISCHARGED -41,2021-08-15,22519.33617812455,465,Emergency,2021-09-06,Inconclusive,41,174,4,1,,,,DISCHARGED -42,2023-03-03,1996.3107212810503,469,Urgent,2023-03-05,Inconclusive,42,445,4,27,,,,DISCHARGED -43,2021-08-07,5470.20968689125,182,Emergency,2021-08-09,Inconclusive,43,50,4,9,,,,DISCHARGED -44,2019-06-06,16036.109990023424,119,Emergency,2019-06-30,Normal,44,363,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -45,2019-10-13,10803.730343659594,388,Emergency,2019-10-29,Inconclusive,45,54,2,17,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -45,2021-10-05,9881.807963117068,433,Emergency,2021-10-30,Abnormal,6773,243,4,29,,,,DISCHARGED -46,2022-10-20,38872.64522272379,412,Elective,2022-11-04,Abnormal,46,319,2,22,,,,DISCHARGED -46,2023-03-30,7264.670968184325,212,Emergency,2023-04-22,Inconclusive,7173,130,4,10,,,,DISCHARGED -47,2019-06-26,34132.623000118074,182,Emergency,2019-07-24,Normal,47,484,3,12,,,,DISCHARGED -48,2020-04-03,25948.507189184053,359,Emergency,2020-04-06,Normal,48,306,4,18,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -49,2021-02-18,46461.82252356185,186,Urgent,2021-03-06,Abnormal,49,134,1,28,,,,DISCHARGED -50,2019-06-14,10705.098399640798,437,Emergency,2019-07-13,Inconclusive,50,20,0,23,,,,DISCHARGED -51,2022-11-26,49576.87403288612,132,Elective,2022-12-08,Abnormal,51,328,3,24,,,,DISCHARGED -52,2023-08-25,8005.828337056341,271,Urgent,2023-09-12,Inconclusive,52,166,3,29,,,,DISCHARGED -53,2022-03-29,41295.399748056494,361,Emergency,2022-04-02,Normal,53,273,1,28,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -54,2021-07-04,20080.29764490514,303,Emergency,2021-07-29,Normal,54,387,4,23,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -55,2019-11-04,1888.0021112903448,317,Emergency,2019-11-19,Inconclusive,55,88,0,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -56,2021-12-28,44935.26969698472,439,Emergency,2022-01-09,Abnormal,56,315,3,4,,,,DISCHARGED -57,2022-10-27,10724.033246931533,153,Urgent,2022-11-18,Normal,57,13,0,2,,,,DISCHARGED -58,2023-04-06,14691.25004225776,438,Elective,2023-04-22,Inconclusive,58,241,3,18,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -58,2022-04-26,4927.534646772167,421,Elective,2022-05-18,Abnormal,1239,264,4,22,,,,DISCHARGED -58,2019-08-19,49228.707833991495,271,Emergency,2019-08-26,Inconclusive,1845,345,3,12,,,,DISCHARGED -58,2019-09-03,39154.24733174383,271,Urgent,2019-09-23,Abnormal,4802,52,3,4,,,,DISCHARGED -59,2020-01-19,47508.00017915965,120,Urgent,2020-01-24,Inconclusive,59,385,2,11,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -59,2020-09-29,15488.364529936747,195,Emergency,2020-10-02,Abnormal,9480,339,4,13,,,,DISCHARGED -60,2020-02-29,2628.94781998456,380,Emergency,2020-03-12,Normal,60,91,1,5,,,,DISCHARGED -61,2021-04-29,13794.720442081489,194,Urgent,2021-05-06,Inconclusive,61,366,1,29,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -61,2021-09-21,26987.12137071019,375,Elective,2021-09-26,Normal,3425,443,4,21,,,,DISCHARGED -62,2021-02-07,9991.074445541251,199,Emergency,2021-03-06,Normal,62,454,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -63,2023-10-28,18904.738199568317,404,Urgent,,Inconclusive,63,427,4,16,,,,OPEN -64,2020-08-08,44423.095535829976,301,Elective,2020-08-29,Normal,64,263,1,7,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -64,2020-03-30,48195.51281350375,220,Elective,2020-04-08,Abnormal,3882,430,2,25,,,,DISCHARGED -65,2023-07-09,22749.28413876537,223,Elective,2023-07-30,Inconclusive,65,34,1,12,,,,DISCHARGED -66,2021-06-13,21965.07965627856,410,Emergency,2021-06-23,Abnormal,66,205,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -67,2022-11-23,8311.397389222286,205,Urgent,2022-11-29,Abnormal,67,80,4,4,,,,DISCHARGED -68,2020-12-31,43547.77222226695,134,Urgent,2021-01-06,Abnormal,68,419,0,28,,,,DISCHARGED -69,2020-02-20,24509.041814010277,407,Urgent,2020-02-27,Inconclusive,69,49,0,21,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -69,2019-06-14,36026.53829069928,148,Emergency,2019-06-18,Inconclusive,5545,359,4,21,,,,DISCHARGED -70,2020-12-30,1997.332761270466,188,Urgent,2021-01-18,Normal,70,387,2,16,,,,DISCHARGED -71,2020-03-28,6575.139467900149,213,Emergency,2020-04-03,Abnormal,71,1,1,2,,,,DISCHARGED -72,2020-05-07,37421.29665993603,405,Emergency,2020-06-04,Abnormal,72,389,2,27,,,,DISCHARGED -73,2022-04-24,4679.119038677208,358,Elective,2022-05-22,Normal,73,53,0,5,,,,DISCHARGED -74,2021-07-30,22787.2792441943,147,Urgent,2021-08-27,Abnormal,74,105,4,13,,,,DISCHARGED -75,2023-08-12,33925.02014329144,115,Elective,2023-08-29,Normal,75,259,4,14,,,,DISCHARGED -76,2021-07-07,42685.19000354352,436,Emergency,2021-07-16,Abnormal,76,309,2,13,,,,DISCHARGED -77,2020-08-24,9029.126290619311,263,Emergency,2020-09-05,Normal,77,476,2,10,,,,DISCHARGED -78,2019-07-27,6777.229313799993,493,Emergency,2019-08-08,Inconclusive,78,190,1,10,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -78,2021-10-05,18232.7682106744,422,Urgent,2021-10-20,Abnormal,2603,401,3,8,,,,DISCHARGED -79,2023-08-19,28792.631974631822,460,Emergency,2023-09-07,Inconclusive,79,217,3,5,,,,DISCHARGED -80,2021-01-15,22081.278260597264,356,Emergency,2021-01-26,Abnormal,80,43,1,14,,,,DISCHARGED -81,2023-08-16,26440.396725683902,142,Elective,2023-09-15,Abnormal,81,161,3,11,,,,DISCHARGED -82,2019-10-22,46144.93971840711,392,Emergency,2019-11-10,Normal,82,201,0,28,,,,DISCHARGED -83,2018-12-28,5319.542762776323,139,Elective,2019-01-27,Abnormal,83,445,3,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -84,2019-01-12,44047.14424188422,482,Elective,2019-02-11,Normal,84,483,1,0,,,,DISCHARGED -84,2022-06-04,17592.873248294633,330,Elective,2022-07-02,Normal,7745,269,3,24,,,,DISCHARGED -85,2019-06-30,47452.441876165394,141,Urgent,2019-07-20,Abnormal,85,350,4,15,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -86,2020-12-12,34056.929869869935,397,Emergency,2020-12-29,Normal,86,303,2,19,,,,DISCHARGED -87,2019-10-21,17241.1163626356,347,Urgent,2019-10-22,Abnormal,87,270,0,14,,,,DISCHARGED -88,2021-02-10,18898.603555373968,245,Elective,2021-02-21,Inconclusive,88,455,4,1,,,,DISCHARGED -89,2020-08-15,35869.40641203239,143,Elective,2020-08-29,Normal,89,461,4,16,,,,DISCHARGED -90,2022-03-17,23559.596143840925,405,Emergency,2022-04-09,Inconclusive,90,214,1,2,,,,DISCHARGED -91,2021-10-23,23777.795524651938,142,Elective,2021-11-21,Abnormal,91,251,2,2,,,,DISCHARGED -92,2021-09-22,16931.636008434823,108,Emergency,2021-10-22,Normal,92,189,2,4,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -93,2021-03-28,13073.28802256408,268,Emergency,2021-04-06,Normal,93,295,0,16,,,,DISCHARGED -94,2018-11-18,5092.74967506549,182,Urgent,2018-12-08,Inconclusive,94,212,1,22,,,,DISCHARGED -95,2020-02-26,22577.60260775006,119,Elective,2020-03-18,Abnormal,95,207,0,28,,,,DISCHARGED -96,2020-12-10,11057.975641406209,176,Emergency,2021-01-09,Abnormal,96,236,3,16,,,,DISCHARGED -97,2022-10-15,1923.9067941825535,462,Elective,2022-10-19,Abnormal,97,337,4,19,,,,DISCHARGED -98,2023-07-03,33776.79958830402,484,Urgent,2023-07-19,Inconclusive,98,366,0,5,,,,DISCHARGED -99,2023-04-23,38450.62746287311,329,Urgent,2023-05-01,Normal,99,52,4,0,,,,DISCHARGED -100,2020-10-05,48379.06255904229,335,Urgent,2020-11-03,Inconclusive,100,279,1,6,,,,DISCHARGED -101,2021-09-12,40340.5304226113,201,Emergency,2021-09-27,Inconclusive,101,409,3,25,,,,DISCHARGED -102,2022-10-31,18161.75197765212,309,Emergency,2022-11-29,Inconclusive,102,216,1,14,,,,DISCHARGED -103,2020-12-28,23517.461851862125,389,Urgent,2021-01-14,Normal,103,251,3,6,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -104,2019-08-25,24116.59972560668,217,Urgent,2019-09-23,Inconclusive,104,187,3,18,,,,DISCHARGED -105,2020-02-16,8895.137287821723,137,Elective,2020-02-27,Abnormal,105,379,4,19,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -106,2022-06-14,48995.04883877174,299,Emergency,2022-07-13,Inconclusive,106,492,1,21,,,,DISCHARGED -107,2021-08-16,17835.950541843562,275,Urgent,2021-09-01,Normal,107,40,1,29,,,,DISCHARGED -108,2023-03-02,36379.94714743435,181,Emergency,2023-03-27,Abnormal,108,156,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -109,2021-01-22,23684.915547098724,401,Emergency,2021-02-19,Abnormal,109,14,1,22,,,,DISCHARGED -110,2023-05-25,20312.769821444414,263,Elective,2023-06-15,Inconclusive,110,300,0,13,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -111,2020-11-11,47999.806126673175,214,Elective,2020-11-14,Normal,111,64,2,12,,,,DISCHARGED -112,2019-12-05,41814.42446823161,267,Emergency,2019-12-13,Inconclusive,112,344,2,19,,,,DISCHARGED -113,2021-05-31,25436.99471967156,211,Urgent,2021-06-01,Inconclusive,113,326,2,25,,,,DISCHARGED -113,2023-05-19,40484.25712271965,462,Elective,2023-05-20,Normal,4400,8,1,26,,,,DISCHARGED -114,2020-03-08,22139.971997018227,247,Elective,2020-04-06,Normal,114,343,1,24,,,,DISCHARGED -115,2019-06-21,39666.240550571936,482,Elective,2019-07-20,Inconclusive,115,128,0,8,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -116,2022-03-27,26051.414457974857,184,Emergency,2022-04-07,Inconclusive,116,491,3,8,,,,DISCHARGED -117,2019-09-13,19279.260214819587,140,Emergency,2019-09-16,Abnormal,117,135,0,15,,,,DISCHARGED -118,2022-03-23,32007.35285877332,416,Elective,2022-04-04,Inconclusive,118,471,2,11,,,,DISCHARGED -119,2020-06-19,36823.92825999236,179,Elective,2020-07-04,Normal,119,62,0,9,,,,DISCHARGED -120,2021-07-09,36946.000267329895,115,Urgent,2021-07-10,Normal,120,138,3,5,,,,DISCHARGED -121,2020-01-14,3345.703488808345,292,Elective,2020-02-05,Inconclusive,121,498,1,17,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -122,2022-11-01,21591.836167692487,289,Elective,2022-11-24,Abnormal,122,80,0,1,,,,DISCHARGED -123,2021-08-24,13080.66532485659,293,Elective,2021-09-06,Abnormal,123,391,2,26,,,,DISCHARGED -124,2023-04-28,31008.47930812416,350,Urgent,2023-05-04,Abnormal,124,162,2,19,,,,DISCHARGED -125,2021-11-14,31546.52020237202,104,Urgent,2021-11-26,Abnormal,125,418,1,8,,,,DISCHARGED -126,2020-07-16,9824.265046284614,238,Emergency,2020-08-05,Abnormal,126,288,0,18,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -127,2022-04-28,44419.985424088765,220,Elective,2022-05-20,Normal,127,378,3,5,,,,DISCHARGED -128,2023-08-03,13759.843812407513,464,Urgent,,Inconclusive,128,260,1,1,,,,OPEN -129,2022-04-30,22862.208504756825,215,Urgent,2022-05-11,Normal,129,489,0,14,,,,DISCHARGED -130,2020-10-20,40372.11674045899,419,Urgent,2020-10-23,Normal,130,230,4,16,,,,DISCHARGED -131,2020-08-07,37867.019332053904,445,Emergency,2020-08-28,Normal,131,40,2,15,,,,DISCHARGED -132,2022-12-01,42968.27269849119,401,Emergency,2022-12-04,Normal,132,27,3,27,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -133,2019-03-04,23907.335315170323,247,Elective,2019-03-24,Inconclusive,133,134,3,20,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -133,2019-11-27,15299.234835051224,481,Emergency,2019-12-08,Abnormal,5468,200,3,7,,,,DISCHARGED -134,2020-05-31,17415.97576710672,398,Emergency,2020-06-18,Normal,134,327,2,9,,,,DISCHARGED -134,2023-02-04,10042.06121892342,198,Emergency,,Normal,8968,267,0,9,,,,OPEN -135,2020-07-29,49219.20954307443,146,Elective,2020-08-20,Inconclusive,135,417,1,17,,,,DISCHARGED -136,2023-04-18,6171.457067712023,153,Emergency,,Abnormal,136,32,0,9,,,,OPEN -137,2020-08-20,31644.800997890783,336,Emergency,2020-08-22,Normal,137,47,1,8,,,,DISCHARGED -138,2023-07-09,44535.25303619564,413,Emergency,2023-07-17,Normal,138,406,3,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -139,2023-08-19,10591.269644030772,115,Emergency,2023-08-27,Inconclusive,139,61,0,23,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -140,2021-05-09,43535.60904445826,145,Emergency,2021-05-24,Normal,140,215,3,18,,,,DISCHARGED -141,2019-04-21,41058.23387378459,148,Urgent,2019-05-09,Abnormal,141,292,4,0,,,,DISCHARGED -142,2021-06-23,7154.956699857513,432,Emergency,2021-07-03,Inconclusive,142,98,3,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -143,2022-04-30,46131.07031578395,430,Emergency,2022-05-18,Normal,143,171,3,23,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -144,2021-04-01,16487.676785652297,406,Elective,2021-05-01,Abnormal,144,359,1,2,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -145,2023-04-27,31583.5527912602,214,Emergency,,Abnormal,145,213,4,9,,,,OPEN -146,2021-08-20,29289.6526009692,295,Elective,2021-08-28,Abnormal,146,474,3,11,,,,DISCHARGED -147,2019-12-04,27022.82692689431,175,Urgent,2019-12-19,Normal,147,34,3,17,,,,DISCHARGED -148,2020-08-20,13962.427775097512,409,Urgent,2020-09-14,Inconclusive,148,448,4,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -149,2021-12-16,18991.073222521736,424,Emergency,2021-12-26,Normal,149,226,4,19,,,,DISCHARGED -150,2019-06-25,8851.608731170869,168,Elective,2019-06-29,Inconclusive,150,100,0,5,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -151,2020-04-02,31670.263275760328,136,Emergency,2020-04-22,Inconclusive,151,430,1,20,,,,DISCHARGED -152,2020-03-17,25129.17595189029,459,Emergency,2020-04-06,Inconclusive,152,461,4,1,,,,DISCHARGED -153,2022-07-31,6787.533990371548,110,Urgent,2022-08-20,Inconclusive,153,130,4,9,,,,DISCHARGED -154,2022-04-09,5974.970205241097,238,Emergency,2022-04-13,Inconclusive,154,256,2,1,,,,DISCHARGED -155,2022-03-31,18200.75799706072,261,Elective,2022-04-06,Abnormal,155,4,4,29,,,,DISCHARGED -156,2019-11-27,10753.757615365406,145,Urgent,2019-12-14,Normal,156,217,1,8,,,,DISCHARGED -157,2022-03-02,28004.34153668766,261,Elective,2022-03-25,Abnormal,157,254,3,26,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -158,2022-07-13,41890.24643937346,257,Emergency,2022-07-26,Inconclusive,158,397,3,9,,,,DISCHARGED -159,2020-04-28,23961.069814057933,170,Elective,2020-05-24,Inconclusive,159,358,3,1,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -160,2021-10-21,42051.09409357057,219,Emergency,2021-11-09,Abnormal,160,282,3,7,,,,DISCHARGED -161,2023-04-02,32613.241610463538,186,Elective,2023-04-25,Abnormal,161,392,2,23,,,,DISCHARGED -162,2023-05-19,36745.210455298446,451,Elective,,Abnormal,162,206,4,16,,,,OPEN -163,2020-02-02,21341.238842723888,372,Emergency,2020-02-18,Normal,163,14,3,16,,,,DISCHARGED -164,2022-02-18,26060.673368682383,202,Emergency,2022-02-23,Abnormal,164,345,0,28,,,,DISCHARGED -164,2023-03-13,37318.52253084823,372,Urgent,,Normal,186,41,3,3,,,,OPEN -164,2020-02-02,38972.20553391844,312,Emergency,2020-02-11,Normal,6871,379,4,17,,,,DISCHARGED -165,2020-04-29,23968.31691825013,245,Elective,2020-05-18,Normal,165,460,3,11,,,,DISCHARGED -166,2022-02-01,25926.948542070604,394,Elective,2022-02-15,Normal,166,178,2,16,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -167,2023-10-08,13981.11261300321,372,Elective,2023-10-27,Abnormal,167,62,1,8,,,,DISCHARGED -168,2023-05-24,21470.41773819721,264,Elective,2023-05-27,Inconclusive,168,351,1,28,,,,DISCHARGED -169,2018-12-23,45391.284642001214,398,Urgent,2019-01-13,Normal,169,230,4,18,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -170,2020-03-04,20926.29797947113,279,Emergency,2020-04-01,Abnormal,170,240,1,13,,,,DISCHARGED -171,2019-08-24,14029.206950528902,260,Emergency,2019-09-05,Abnormal,171,51,1,13,,,,DISCHARGED -172,2020-12-04,47034.49402476752,499,Emergency,2020-12-12,Normal,172,95,0,29,,,,DISCHARGED -173,2019-05-18,48782.85631566246,452,Emergency,2019-05-31,Normal,173,387,4,16,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -174,2022-09-23,40262.31151423387,365,Urgent,2022-10-19,Inconclusive,174,221,4,1,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -174,2019-09-27,12540.246991303611,386,Emergency,2019-10-14,Inconclusive,1365,484,1,7,,,,DISCHARGED -174,2021-01-28,10914.944587775164,260,Urgent,2021-02-13,Inconclusive,6775,406,1,4,,,,DISCHARGED -175,2022-12-18,17902.64639380951,267,Urgent,2023-01-05,Inconclusive,175,230,1,26,,,,DISCHARGED -176,2020-05-13,15773.901182914306,340,Emergency,2020-06-03,Inconclusive,176,236,2,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -177,2020-11-03,31155.40427129732,360,Emergency,2020-11-07,Inconclusive,177,142,3,21,,,,DISCHARGED -178,2020-03-25,7140.773832777042,290,Urgent,2020-04-10,Normal,178,170,2,28,,,,DISCHARGED -179,2023-05-02,21901.826644158733,103,Urgent,2023-05-27,Inconclusive,179,28,4,15,,,,DISCHARGED -180,2022-12-07,36744.03787993472,187,Urgent,2022-12-22,Abnormal,180,35,0,15,,,,DISCHARGED -180,2019-07-14,8754.548885920169,452,Urgent,2019-08-11,Inconclusive,5771,12,3,16,,,,DISCHARGED -181,2020-05-26,37006.72482949869,378,Elective,2020-06-05,Inconclusive,181,159,0,21,,,,DISCHARGED -182,2022-06-27,42431.39127028394,334,Elective,2022-07-02,Normal,182,326,4,26,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -182,2019-11-12,4825.244065937908,340,Elective,2019-11-29,Normal,7627,186,4,6,,,,DISCHARGED -183,2020-07-10,14578.913011822762,470,Urgent,2020-08-04,Normal,183,242,0,19,,,,DISCHARGED -183,2019-08-30,14027.139384365915,486,Urgent,2019-09-15,Abnormal,8295,85,0,7,,,,DISCHARGED -184,2021-12-12,30845.782022184423,252,Elective,2021-12-18,Inconclusive,184,283,0,7,,,,DISCHARGED -185,2023-06-01,14876.215477845824,162,Emergency,,Abnormal,185,65,4,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -187,2019-07-15,5727.338103033213,450,Elective,2019-07-31,Abnormal,187,169,1,10,,,,DISCHARGED -188,2022-11-17,38068.85215268489,106,Emergency,2022-11-26,Abnormal,188,44,0,14,,,,DISCHARGED -189,2019-01-23,21198.65472662128,259,Urgent,2019-02-02,Abnormal,189,61,3,17,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -190,2022-03-25,35415.68222692115,344,Urgent,2022-04-04,Normal,190,440,4,5,,,,DISCHARGED -191,2022-10-25,3673.0429478707465,489,Urgent,2022-10-28,Normal,191,133,2,21,,,,DISCHARGED -192,2018-11-21,1608.691792689302,153,Urgent,2018-11-29,Abnormal,192,283,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -193,2022-09-30,24357.6078664628,276,Urgent,2022-10-05,Abnormal,193,27,3,14,,,,DISCHARGED -194,2022-02-24,28710.513951078006,134,Elective,2022-02-26,Abnormal,194,107,1,27,,,,DISCHARGED -195,2019-12-30,7942.853285893594,155,Emergency,2020-01-26,Abnormal,195,43,0,22,,,,DISCHARGED -196,2018-11-09,3623.40823141465,361,Urgent,2018-11-19,Abnormal,196,339,4,5,,,,DISCHARGED -197,2021-06-02,5516.704185371408,155,Urgent,2021-06-14,Abnormal,197,285,0,17,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -198,2021-11-12,1452.0538192226131,120,Emergency,2021-11-28,Abnormal,198,445,4,23,,,,DISCHARGED -199,2019-10-30,19630.673492911475,455,Urgent,2019-11-13,Inconclusive,199,330,2,19,,,,DISCHARGED -200,2023-09-18,7061.842439551254,425,Urgent,,Abnormal,200,127,0,8,,,,OPEN -201,2019-07-21,48659.59883179092,108,Urgent,2019-08-10,Normal,201,347,3,7,,,,DISCHARGED -202,2021-02-13,4357.928046957646,361,Emergency,2021-03-02,Abnormal,202,472,1,13,,,,DISCHARGED -203,2020-02-12,17166.802113751983,181,Elective,2020-03-06,Abnormal,203,230,3,18,,,,DISCHARGED -203,2020-11-16,48634.28489530816,352,Elective,2020-12-06,Normal,2326,189,1,18,,,,DISCHARGED -203,2021-03-06,31829.563417226123,192,Emergency,2021-03-25,Normal,3189,224,0,7,,,,DISCHARGED -203,2019-06-14,41920.04967706079,152,Elective,2019-07-08,Normal,6757,384,0,1,,,,DISCHARGED -204,2023-07-11,34595.32839489074,205,Elective,,Abnormal,204,376,1,24,,,,OPEN -205,2023-01-17,4871.013184133684,400,Elective,,Abnormal,205,282,2,3,,,,OPEN -206,2022-08-12,24714.11476217247,127,Emergency,2022-08-28,Inconclusive,206,445,4,5,,,,DISCHARGED -207,2021-03-28,25146.966653393283,148,Emergency,2021-04-04,Normal,207,120,3,2,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -208,2019-05-14,1523.106019881822,333,Elective,2019-05-15,Normal,208,115,3,2,,,,DISCHARGED -209,2021-03-29,42208.79874931622,162,Elective,2021-04-25,Inconclusive,209,460,3,18,,,,DISCHARGED -210,2019-05-12,17656.0383962488,119,Urgent,2019-05-25,Normal,210,232,0,10,,,,DISCHARGED -211,2021-05-24,19286.481815291507,456,Elective,2021-06-21,Normal,211,258,3,28,,,,DISCHARGED -212,2022-08-28,12580.88842813392,443,Elective,2022-09-20,Normal,212,358,4,9,,,,DISCHARGED -213,2022-07-26,24153.70930246234,129,Urgent,2022-08-21,Normal,213,197,4,11,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -214,2020-06-28,33771.61714774528,292,Elective,2020-07-23,Normal,214,455,1,13,,,,DISCHARGED -215,2021-05-06,35774.256988922985,164,Emergency,2021-05-30,Inconclusive,215,410,0,29,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -216,2018-11-10,26660.61244403476,486,Elective,2018-11-14,Abnormal,216,136,4,29,,,,DISCHARGED -217,2021-10-29,12586.402694767605,440,Elective,2021-11-12,Inconclusive,217,317,2,27,,,,DISCHARGED -218,2021-02-23,36936.78774160133,275,Elective,2021-03-06,Abnormal,218,164,0,17,,,,DISCHARGED -219,2020-01-06,3973.849432100773,265,Urgent,2020-01-10,Abnormal,219,224,0,23,,,,DISCHARGED -220,2022-08-11,7377.715552608968,459,Elective,2022-08-23,Normal,220,306,4,8,,,,DISCHARGED -221,2019-11-15,41708.40918418684,193,Urgent,2019-12-12,Normal,221,233,2,14,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -222,2021-11-27,39323.85130398303,309,Emergency,2021-12-11,Inconclusive,222,171,1,23,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -223,2019-03-19,45969.61025007398,222,Emergency,2019-04-18,Normal,223,151,4,25,,,,DISCHARGED -224,2020-10-17,37374.02613608901,488,Emergency,2020-11-14,Abnormal,224,462,2,2,,,,DISCHARGED -225,2023-05-17,39086.98787283012,472,Emergency,,Normal,225,314,0,22,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -226,2020-10-05,40530.70254051108,391,Urgent,2020-10-16,Normal,226,373,2,10,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -227,2021-11-07,11571.570777611638,295,Elective,2021-11-22,Inconclusive,227,159,0,9,,,,DISCHARGED -228,2018-11-05,44256.64930794812,186,Urgent,2018-11-18,Normal,228,95,4,17,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -229,2019-12-06,11113.373663116638,162,Urgent,2019-12-17,Abnormal,229,471,4,3,,,,DISCHARGED -230,2021-03-20,19660.006933679557,179,Elective,2021-04-03,Inconclusive,230,232,3,27,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -231,2020-01-03,45434.40973278368,230,Urgent,2020-01-30,Abnormal,231,179,3,12,,,,DISCHARGED -232,2019-02-28,49035.20692704052,460,Urgent,2019-03-26,Inconclusive,232,112,3,29,,,,DISCHARGED -233,2023-06-25,43321.06324132443,322,Elective,2023-06-28,Normal,233,317,4,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -234,2022-01-03,44033.88631580622,272,Emergency,2022-01-12,Abnormal,234,496,1,5,,,,DISCHARGED -235,2021-08-20,36912.186705469736,452,Emergency,2021-09-01,Normal,235,441,4,26,,,,DISCHARGED -236,2021-02-03,23391.79405275708,301,Urgent,2021-03-05,Inconclusive,236,51,2,20,,,,DISCHARGED -237,2022-04-09,12547.100881090744,154,Elective,2022-05-05,Normal,237,267,4,12,,,,DISCHARGED -238,2020-02-02,28792.05062080646,416,Emergency,2020-02-15,Abnormal,238,294,4,24,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -239,2022-07-30,48047.65258952828,414,Urgent,2022-08-13,Inconclusive,239,385,0,25,,,,DISCHARGED -240,2021-04-11,18782.95572717789,236,Elective,2021-04-21,Abnormal,240,386,0,19,,,,DISCHARGED -241,2023-07-06,3866.337052231231,375,Emergency,,Abnormal,241,112,0,4,,,,OPEN -242,2021-05-08,23016.760104322355,141,Urgent,2021-05-26,Normal,242,100,4,19,,,,DISCHARGED -243,2022-06-17,10159.670834409591,221,Urgent,2022-07-04,Inconclusive,243,112,1,13,,,,DISCHARGED -244,2021-12-29,2212.477918683048,244,Emergency,2022-01-18,Normal,244,439,2,12,,,,DISCHARGED -245,2020-08-14,34789.57595578117,201,Emergency,2020-08-30,Inconclusive,245,80,2,13,,,,DISCHARGED -246,2022-07-20,49488.20077925565,287,Urgent,2022-07-27,Normal,246,186,1,7,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -247,2021-01-11,30304.65384984076,129,Urgent,2021-01-29,Inconclusive,247,112,1,15,,,,DISCHARGED -248,2023-10-28,24559.75928726179,179,Emergency,2023-11-02,Abnormal,248,1,2,12,,,,DISCHARGED -249,2020-12-04,13318.195486021532,181,Elective,2020-12-30,Abnormal,249,129,3,23,,,,DISCHARGED -250,2023-03-16,30570.902071926805,243,Elective,2023-04-14,Normal,250,219,0,14,,,,DISCHARGED -251,2020-03-24,12831.046557387592,370,Elective,2020-03-28,Inconclusive,251,53,0,18,,,,DISCHARGED -252,2021-10-22,2684.4017211574974,147,Elective,2021-11-04,Inconclusive,252,342,2,0,,,,DISCHARGED -253,2021-04-17,43535.02257204043,237,Elective,2021-05-16,Inconclusive,253,484,1,21,,,,DISCHARGED -254,2020-07-20,41414.986529871,292,Urgent,2020-08-09,Abnormal,254,223,3,1,,,,DISCHARGED -254,2020-10-01,27011.078263229403,357,Urgent,2020-10-17,Inconclusive,1492,224,2,17,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -255,2022-04-28,16085.737509110111,465,Elective,2022-05-25,Normal,255,384,0,18,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -256,2021-03-24,15847.440245823502,264,Urgent,2021-04-12,Inconclusive,256,402,4,7,,,,DISCHARGED -256,2020-10-27,24033.86381194272,215,Urgent,2020-10-31,Normal,9268,125,1,2,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -257,2021-04-14,33811.6857725144,234,Elective,2021-04-28,Abnormal,257,129,4,22,,,,DISCHARGED -258,2022-11-22,31911.129134091283,458,Urgent,2022-12-09,Normal,258,52,2,25,,,,DISCHARGED -259,2021-09-30,15801.842288402857,226,Urgent,2021-10-28,Abnormal,259,171,0,13,,,,DISCHARGED -260,2020-12-09,22815.891209293797,478,Urgent,2020-12-17,Abnormal,260,217,3,25,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -261,2023-03-29,26525.99380537169,204,Urgent,2023-04-22,Abnormal,261,159,4,8,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -262,2019-03-08,22985.616664913257,366,Urgent,2019-03-25,Inconclusive,262,197,3,28,,,,DISCHARGED -263,2023-08-24,39573.52145151389,196,Emergency,2023-09-21,Inconclusive,263,415,0,7,,,,DISCHARGED -264,2021-12-23,37246.81915431043,294,Elective,2022-01-07,Normal,264,246,4,16,,,,DISCHARGED -264,2022-09-04,18258.38213425475,476,Elective,2022-09-11,Inconclusive,7455,323,3,22,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -265,2022-12-08,49359.79206170607,462,Emergency,2022-12-16,Abnormal,265,438,3,22,,,,DISCHARGED -266,2022-07-10,42621.44964684069,297,Urgent,2022-07-28,Inconclusive,266,202,4,23,,,,DISCHARGED -267,2021-03-27,23660.216628296115,280,Elective,2021-04-07,Normal,267,183,0,15,,,,DISCHARGED -268,2021-12-23,35791.956328527325,238,Urgent,2022-01-10,Inconclusive,268,122,3,9,,,,DISCHARGED -269,2022-08-08,43882.56194900586,374,Elective,2022-08-14,Abnormal,269,400,2,20,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -270,2022-05-23,22979.213540298944,216,Emergency,2022-06-11,Abnormal,270,254,4,9,,,,DISCHARGED -271,2021-09-19,37360.639585599776,135,Elective,2021-09-29,Normal,271,293,1,24,,,,DISCHARGED -272,2022-05-16,40757.910944602416,303,Urgent,2022-06-09,Inconclusive,272,279,1,24,,,,DISCHARGED -273,2023-01-27,23331.281203322746,225,Elective,,Abnormal,273,324,0,23,,,,OPEN -274,2020-12-14,6628.356138570429,152,Elective,2020-12-16,Abnormal,274,371,2,5,,,,DISCHARGED -275,2020-09-26,12470.76959830422,444,Emergency,2020-10-18,Abnormal,275,97,3,21,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -276,2022-02-24,7364.750960595123,270,Urgent,2022-03-05,Inconclusive,276,197,1,16,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -277,2022-06-02,1939.3191021634184,454,Elective,2022-06-18,Normal,277,469,0,28,,,,DISCHARGED -277,2022-12-31,36463.28133462362,220,Urgent,2023-01-25,Inconclusive,2408,394,2,15,,,,DISCHARGED -278,2020-01-30,4002.824156525608,425,Urgent,2020-02-01,Inconclusive,278,239,2,14,,,,DISCHARGED -279,2022-06-08,28394.39906646661,442,Emergency,2022-07-08,Normal,279,143,0,21,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -280,2023-09-01,47295.55751295883,189,Emergency,2023-09-07,Normal,280,96,0,13,,,,DISCHARGED -281,2022-06-16,13749.968280129424,487,Emergency,2022-06-24,Normal,281,200,3,3,,,,DISCHARGED -282,2019-02-13,42550.621840623455,119,Urgent,2019-02-23,Abnormal,282,123,0,3,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -283,2020-08-27,42182.74976501221,356,Elective,2020-09-17,Normal,283,186,3,29,,,,DISCHARGED -284,2018-12-15,5901.145156327686,104,Urgent,2018-12-19,Inconclusive,284,325,3,1,,,,DISCHARGED -285,2018-12-10,10333.001823102266,184,Urgent,2018-12-22,Inconclusive,285,463,4,28,,,,DISCHARGED -286,2021-11-06,7164.88617166191,130,Urgent,2021-11-25,Normal,286,348,2,10,,,,DISCHARGED -287,2020-07-18,15622.693687190786,485,Elective,2020-07-22,Abnormal,287,258,2,29,,,,DISCHARGED -287,2019-02-10,3167.4111565989388,201,Emergency,2019-02-25,Abnormal,5585,147,2,3,,,,DISCHARGED -288,2020-05-31,20699.813436150755,218,Elective,2020-06-17,Inconclusive,288,251,4,20,,,,DISCHARGED -289,2019-01-27,25420.21123802783,445,Urgent,2019-02-08,Abnormal,289,442,3,28,,,,DISCHARGED -290,2018-12-15,17531.212779067297,111,Emergency,2018-12-28,Inconclusive,290,419,3,27,,,,DISCHARGED -291,2019-04-12,17743.96851930109,119,Emergency,2019-04-25,Abnormal,291,402,0,20,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -292,2020-10-31,45477.90913864933,482,Emergency,2020-11-27,Normal,292,345,4,15,,,,DISCHARGED -293,2023-04-16,26633.450415065217,105,Emergency,2023-05-08,Inconclusive,293,450,0,20,,,,DISCHARGED -294,2022-11-09,41995.872277153765,362,Urgent,2022-11-20,Normal,294,146,4,3,,,,DISCHARGED -295,2019-04-12,29696.19164140571,425,Elective,2019-05-08,Normal,295,147,0,0,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -295,2022-11-06,49234.3216039978,302,Urgent,2022-11-28,Inconclusive,7747,351,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -296,2021-03-02,10033.766921269436,347,Urgent,2021-03-07,Abnormal,296,198,2,25,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -297,2019-09-19,41417.84433902557,230,Elective,2019-10-18,Abnormal,297,307,2,23,,,,DISCHARGED -298,2020-03-06,16592.012152966505,223,Emergency,2020-03-22,Abnormal,298,488,3,18,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -299,2021-08-18,7858.398730971636,199,Emergency,2021-09-09,Abnormal,299,416,1,1,,,,DISCHARGED -300,2021-10-02,8487.438712109812,497,Elective,2021-10-15,Inconclusive,300,423,2,8,,,,DISCHARGED -301,2021-09-19,32142.99757357748,420,Elective,2021-09-28,Normal,301,127,3,22,,,,DISCHARGED -301,2021-12-15,17594.974880421043,464,Urgent,2021-12-26,Normal,5445,38,1,24,,,,DISCHARGED -302,2019-07-03,43311.75941534955,432,Emergency,2019-07-21,Normal,302,337,2,12,,,,DISCHARGED -303,2020-01-02,26419.324812573923,483,Emergency,2020-01-30,Inconclusive,303,359,0,17,,,,DISCHARGED -304,2019-04-27,11548.830510952335,162,Elective,2019-05-16,Normal,304,128,4,15,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -305,2018-11-14,27593.64508218064,161,Elective,2018-12-01,Abnormal,305,266,1,15,,,,DISCHARGED -306,2023-07-02,8129.35849870258,436,Emergency,,Abnormal,306,475,3,24,,,,OPEN -307,2021-12-10,44941.23044388389,485,Emergency,2021-12-12,Inconclusive,307,440,1,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -308,2019-04-25,18364.414653784555,288,Elective,2019-05-20,Abnormal,308,472,3,8,,,,DISCHARGED -309,2019-11-12,42007.24435061608,440,Emergency,2019-12-07,Normal,309,433,1,10,,,,DISCHARGED -310,2022-06-24,34747.27007791632,133,Emergency,2022-07-03,Inconclusive,310,150,3,24,,,,DISCHARGED -311,2023-06-14,4740.109026437096,425,Emergency,,Abnormal,311,414,2,25,,,,OPEN -312,2019-09-11,31600.77207749116,237,Emergency,2019-09-21,Normal,312,477,0,28,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -312,2023-10-30,49872.58407396083,210,Urgent,2023-11-19,Abnormal,2030,297,2,25,,,,DISCHARGED -313,2020-03-15,25429.83077727948,104,Elective,2020-04-11,Abnormal,313,98,0,3,,,,DISCHARGED -313,2018-12-29,13718.963947484735,429,Urgent,2019-01-10,Inconclusive,3144,262,2,9,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -314,2023-07-10,44724.88270722428,114,Emergency,2023-08-04,Abnormal,314,251,2,2,,,,DISCHARGED -315,2023-09-06,29673.008474633425,253,Urgent,2023-09-30,Abnormal,315,143,1,5,,,,DISCHARGED -316,2022-12-25,46868.40818401109,244,Urgent,2022-12-31,Normal,316,345,4,2,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -317,2021-10-24,14496.083089014775,458,Elective,2021-11-12,Inconclusive,317,111,3,26,,,,DISCHARGED -318,2020-03-19,36496.77564422509,286,Elective,2020-04-05,Normal,318,499,3,8,,,,DISCHARGED -318,2023-04-26,10949.732176868753,199,Urgent,2023-05-11,Abnormal,4102,59,3,2,,,,DISCHARGED -319,2021-01-10,6850.97280044338,270,Elective,2021-01-20,Inconclusive,319,368,0,17,,,,DISCHARGED -319,2022-06-25,25098.403979328043,380,Emergency,2022-07-06,Normal,4879,1,3,7,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -320,2021-08-28,1256.479071739218,265,Urgent,2021-09-22,Abnormal,320,384,3,21,,,,DISCHARGED -321,2021-05-06,9731.395318301362,109,Elective,2021-05-13,Inconclusive,321,303,1,7,,,,DISCHARGED -322,2023-07-06,11610.39348971673,390,Urgent,,Abnormal,322,253,2,14,,,,OPEN -323,2023-02-22,21859.77342142722,207,Urgent,2023-03-18,Normal,323,139,3,12,,,,DISCHARGED -324,2020-09-19,26442.358750239266,442,Emergency,2020-10-18,Abnormal,324,452,4,6,,,,DISCHARGED -325,2019-08-20,12287.139440438472,384,Elective,2019-09-07,Inconclusive,325,36,3,18,,,,DISCHARGED -326,2020-05-09,40449.84643340579,411,Emergency,2020-06-05,Normal,326,159,0,7,,,,DISCHARGED -327,2018-11-25,35939.431931536754,324,Emergency,2018-12-17,Normal,327,8,0,9,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -327,2023-09-05,38471.19575373122,245,Elective,2023-09-09,Abnormal,7987,232,0,16,,,,DISCHARGED -328,2021-11-12,14230.466490795783,357,Elective,2021-11-28,Normal,328,98,3,0,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -329,2022-08-27,3380.7723809302533,153,Elective,2022-09-13,Inconclusive,329,146,1,12,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -330,2020-06-07,37081.46098786112,283,Emergency,2020-06-11,Inconclusive,330,303,4,28,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -331,2020-03-15,22268.034662054877,315,Urgent,2020-04-04,Inconclusive,331,207,3,25,,,,DISCHARGED -331,2022-09-07,24034.51877562933,192,Urgent,2022-09-12,Inconclusive,7077,130,1,12,,,,DISCHARGED -332,2023-07-28,37744.299585288834,471,Elective,2023-07-29,Abnormal,332,403,1,23,,,,DISCHARGED -333,2023-06-29,33399.46560693334,274,Urgent,,Abnormal,333,151,3,15,,,,OPEN -334,2022-05-21,34173.02524058562,353,Elective,2022-06-04,Abnormal,334,53,3,28,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -335,2020-09-15,45825.97889539125,311,Urgent,2020-09-25,Normal,335,119,1,8,,,,DISCHARGED -336,2022-10-29,30203.557649485752,490,Emergency,2022-11-20,Inconclusive,336,160,1,9,,,,DISCHARGED -337,2020-01-23,24305.53370218853,135,Urgent,2020-01-28,Inconclusive,337,407,1,5,,,,DISCHARGED -338,2022-03-29,45444.29373533064,368,Elective,2022-04-21,Abnormal,338,115,3,4,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -339,2021-02-04,2534.7004700955627,284,Elective,2021-02-22,Inconclusive,339,74,1,1,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -340,2019-02-07,27676.337232617487,242,Urgent,2019-02-22,Normal,340,112,0,10,,,,DISCHARGED -341,2018-12-08,5674.214337465009,209,Urgent,2018-12-15,Abnormal,341,455,3,8,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -342,2019-12-11,43475.28509858285,404,Elective,2019-12-13,Abnormal,342,419,0,5,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -343,2019-07-30,7237.040594808773,442,Emergency,2019-08-28,Normal,343,421,2,7,,,,DISCHARGED -344,2021-10-08,45537.19439445536,110,Urgent,2021-11-01,Normal,344,103,3,8,,,,DISCHARGED -345,2021-10-02,37113.07025273272,226,Elective,2021-10-07,Inconclusive,345,339,2,8,,,,DISCHARGED -346,2023-03-29,30730.893293449484,400,Urgent,,Inconclusive,346,253,1,7,,,,OPEN -347,2022-02-06,22773.131100555293,433,Emergency,2022-02-21,Normal,347,226,1,11,,,,DISCHARGED -348,2021-11-25,31303.64786842636,116,Elective,2021-12-24,Abnormal,348,111,4,25,,,,DISCHARGED -348,2021-04-15,8270.489262945997,362,Elective,2021-05-09,Normal,9482,472,1,7,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -349,2020-01-02,37527.711514253766,247,Urgent,2020-01-27,Inconclusive,349,98,2,2,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -349,2021-07-26,12372.907407008051,196,Emergency,2021-07-29,Normal,3087,152,1,12,,,,DISCHARGED -350,2022-06-07,29986.11627858563,439,Emergency,2022-06-10,Inconclusive,350,348,3,18,,,,DISCHARGED -351,2023-06-10,23360.65861318663,460,Elective,,Inconclusive,351,401,1,1,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",OPEN -352,2022-04-15,27065.747046561937,275,Elective,2022-05-12,Normal,352,383,4,16,,,,DISCHARGED -353,2019-07-29,34465.82487563732,361,Emergency,2019-08-27,Inconclusive,353,365,1,15,,,,DISCHARGED -354,2019-02-02,36439.07844953238,303,Emergency,2019-02-05,Abnormal,354,337,2,3,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -355,2023-05-19,46161.70793060004,278,Elective,2023-06-13,Abnormal,355,193,2,17,,,,DISCHARGED -356,2022-10-14,48192.6486063671,490,Urgent,2022-11-03,Inconclusive,356,309,1,13,,,,DISCHARGED -357,2022-07-24,5061.5932847128415,249,Emergency,2022-07-28,Normal,357,162,2,29,,,,DISCHARGED -358,2020-09-14,11784.94142268194,176,Elective,2020-09-27,Abnormal,358,207,2,1,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -359,2019-09-26,6442.96821664964,498,Urgent,2019-10-02,Inconclusive,359,444,4,12,,,,DISCHARGED -360,2019-06-13,13591.04308748773,240,Emergency,2019-07-02,Inconclusive,360,168,3,26,,,,DISCHARGED -361,2023-08-26,19710.535332992906,107,Emergency,2023-09-16,Inconclusive,361,483,4,26,,,,DISCHARGED -362,2021-11-15,20846.38332202797,407,Elective,2021-11-21,Normal,362,160,0,20,,,,DISCHARGED -362,2022-09-18,16965.96207064319,320,Elective,2022-10-06,Inconclusive,5565,67,4,19,,,,DISCHARGED -362,2019-05-08,34732.26290846109,155,Urgent,2019-06-05,Normal,7564,288,1,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -362,2023-05-23,6711.307078454929,236,Elective,2023-05-24,Normal,9878,397,3,14,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -363,2018-12-05,24261.16168217426,383,Urgent,2018-12-16,Normal,363,276,1,24,,,,DISCHARGED -364,2019-08-01,43495.23034505423,493,Urgent,2019-08-23,Abnormal,364,303,0,29,,,,DISCHARGED -365,2023-06-26,34698.50261708388,338,Urgent,,Inconclusive,365,403,3,19,,,,OPEN -366,2020-06-14,18524.74395050052,115,Elective,2020-06-28,Normal,366,383,2,4,,,,DISCHARGED -367,2021-05-27,17061.046663657253,357,Urgent,2021-06-12,Abnormal,367,391,4,6,,,,DISCHARGED -368,2023-04-25,3535.011881247826,130,Elective,,Abnormal,368,134,1,17,,,,OPEN -369,2020-11-24,31359.518931029103,262,Urgent,2020-12-17,Abnormal,369,194,0,23,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -370,2021-05-20,37419.01662386105,496,Elective,2021-06-08,Inconclusive,370,400,2,10,,,,DISCHARGED -371,2021-06-03,22697.41582654181,447,Emergency,2021-06-20,Inconclusive,371,127,4,17,,,,DISCHARGED -372,2019-10-12,20649.3872071603,246,Urgent,2019-10-17,Abnormal,372,32,2,26,,,,DISCHARGED -373,2019-02-10,29737.635840160445,275,Elective,2019-02-16,Abnormal,373,175,4,25,,,,DISCHARGED -374,2023-07-04,44019.07744764769,111,Urgent,2023-07-15,Inconclusive,374,459,3,4,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -375,2020-05-30,21864.01000742826,406,Elective,2020-06-15,Inconclusive,375,442,2,12,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -376,2022-02-10,15469.681276723895,305,Elective,2022-03-06,Abnormal,376,370,2,27,,,,DISCHARGED -377,2023-09-02,27667.126598927283,252,Urgent,,Abnormal,377,469,2,17,,,,OPEN -378,2022-04-17,26172.07906359765,155,Emergency,2022-05-04,Inconclusive,378,374,3,1,,,,DISCHARGED -379,2020-08-25,44643.05436145811,152,Elective,2020-09-06,Inconclusive,379,21,0,19,,,,DISCHARGED -380,2021-05-24,39533.37820142007,315,Urgent,2021-06-13,Normal,380,237,4,3,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -381,2022-01-20,29878.881332256024,479,Elective,2022-01-22,Abnormal,381,157,2,12,,,,DISCHARGED -382,2023-07-04,34386.58635397911,462,Elective,2023-07-26,Normal,382,37,3,23,,,,DISCHARGED -383,2023-08-01,44655.69907542223,363,Emergency,2023-08-16,Inconclusive,383,229,0,28,,,,DISCHARGED -384,2021-05-07,29272.274469788208,153,Emergency,2021-05-19,Inconclusive,384,364,4,15,,,,DISCHARGED -385,2020-12-05,24181.19275845464,394,Emergency,2020-12-18,Abnormal,385,50,3,5,,,,DISCHARGED -386,2020-10-16,18089.133069620937,239,Emergency,2020-11-02,Normal,386,437,4,25,,,,DISCHARGED -387,2021-03-30,2485.616432157961,145,Emergency,2021-04-17,Normal,387,263,2,7,,,,DISCHARGED -388,2023-06-13,16118.166535916958,192,Urgent,2023-07-11,Abnormal,388,282,0,15,,,,DISCHARGED -389,2023-03-11,21025.566735250803,142,Urgent,2023-04-01,Abnormal,389,26,3,12,,,,DISCHARGED -390,2022-03-07,22624.00546071185,158,Emergency,2022-03-09,Normal,390,225,0,22,,,,DISCHARGED -391,2023-09-10,4098.8542028788615,168,Elective,2023-09-18,Inconclusive,391,276,2,28,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -392,2022-06-12,19955.344980387046,379,Emergency,2022-06-13,Inconclusive,392,285,0,25,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -393,2019-11-21,10179.756432705788,126,Emergency,2019-12-09,Abnormal,393,96,0,3,,,,DISCHARGED -394,2022-10-31,17185.194410454264,369,Emergency,2022-11-26,Normal,394,283,1,1,,,,DISCHARGED -395,2023-04-11,5411.414545512917,270,Elective,,Normal,395,366,0,8,,,,OPEN -395,2022-12-24,11866.015881332352,335,Emergency,2023-01-06,Abnormal,1051,447,4,17,,,,DISCHARGED -396,2022-08-29,35307.19747887386,229,Urgent,2022-09-07,Abnormal,396,480,3,16,,,,DISCHARGED -397,2022-01-26,10492.799553848816,497,Emergency,2022-02-06,Normal,397,452,1,7,,,,DISCHARGED -398,2019-02-17,13271.716783215192,425,Elective,2019-02-27,Inconclusive,398,316,3,25,,,,DISCHARGED -399,2019-02-23,7219.466253041419,483,Urgent,2019-03-06,Normal,399,303,3,14,,,,DISCHARGED -400,2020-01-09,6098.460276413218,372,Urgent,2020-01-17,Normal,400,146,2,8,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -401,2021-08-20,29285.344053736582,162,Emergency,2021-09-15,Abnormal,401,3,2,16,,,,DISCHARGED -402,2023-03-17,35490.26267380252,403,Urgent,,Abnormal,402,34,1,22,,,,OPEN -403,2021-02-14,28835.35019006271,205,Emergency,2021-02-24,Abnormal,403,191,2,1,,,,DISCHARGED -404,2020-01-29,11300.527273565993,497,Urgent,2020-02-15,Abnormal,404,48,2,5,,,,DISCHARGED -405,2022-12-07,15988.782443956656,353,Emergency,2022-12-29,Inconclusive,405,16,2,28,,,,DISCHARGED -406,2021-06-17,30137.59626994503,196,Emergency,2021-07-04,Normal,406,171,3,26,,,,DISCHARGED -407,2022-03-05,10045.003229310056,349,Urgent,2022-04-03,Normal,407,219,1,4,,,,DISCHARGED -408,2020-10-22,48716.28910714937,476,Emergency,2020-11-19,Normal,408,157,3,16,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -409,2022-04-27,47881.28110741898,144,Urgent,2022-05-12,Abnormal,409,476,4,1,,,,DISCHARGED -410,2023-07-08,31587.212506815024,406,Urgent,2023-07-17,Abnormal,410,45,3,17,,,,DISCHARGED -411,2019-07-06,19425.9678150406,257,Emergency,2019-07-25,Normal,411,372,4,9,,,,DISCHARGED -412,2023-09-03,38734.81354183516,259,Elective,,Abnormal,412,5,0,9,,,,OPEN -413,2019-03-07,39757.64872636877,330,Elective,2019-03-20,Normal,413,98,0,5,,,,DISCHARGED -414,2019-06-24,9199.668301340776,291,Elective,2019-07-09,Abnormal,414,379,4,26,,,,DISCHARGED -414,2022-08-21,11786.019631084911,210,Elective,2022-08-28,Abnormal,3866,232,4,11,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -415,2022-10-17,22111.45567806985,334,Emergency,2022-11-09,Abnormal,415,36,3,16,,,,DISCHARGED -416,2023-09-16,11391.122160265388,180,Urgent,2023-09-27,Inconclusive,416,279,4,26,,,,DISCHARGED -417,2021-03-09,33952.609194823075,407,Emergency,2021-04-08,Inconclusive,417,348,1,12,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -418,2022-12-17,39875.2158788523,230,Elective,2023-01-11,Inconclusive,418,496,0,19,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -418,2019-08-01,34302.73469258127,452,Urgent,2019-08-07,Normal,6495,301,0,27,,,,DISCHARGED -419,2020-10-29,46133.54164833743,325,Elective,2020-11-08,Inconclusive,419,180,4,15,,,,DISCHARGED -420,2020-02-13,19528.40176294773,268,Elective,2020-02-20,Inconclusive,420,94,2,9,,,,DISCHARGED -421,2023-03-10,45925.07177264269,224,Elective,,Abnormal,421,98,2,26,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -421,2019-09-14,46700.05126801022,272,Elective,2019-10-03,Inconclusive,3580,187,4,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -422,2023-10-11,18272.82553900976,359,Emergency,2023-10-27,Abnormal,422,480,1,1,,,,DISCHARGED -423,2022-10-31,32052.22463067412,213,Emergency,2022-11-16,Abnormal,423,115,2,1,,,,DISCHARGED -424,2019-02-09,18605.860442632416,433,Emergency,2019-02-25,Normal,424,190,4,22,,,,DISCHARGED -425,2022-03-06,45565.74980582937,340,Elective,2022-03-29,Inconclusive,425,252,1,6,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -426,2022-02-27,49213.851670692,406,Elective,2022-03-21,Inconclusive,426,468,1,5,,,,DISCHARGED -427,2019-12-12,41767.21232826044,286,Emergency,2019-12-16,Inconclusive,427,415,3,0,,,,DISCHARGED -428,2022-01-27,28158.32776555694,374,Urgent,2022-02-15,Abnormal,428,470,1,11,,,,DISCHARGED -429,2022-04-14,23888.35667902367,336,Urgent,2022-04-19,Abnormal,429,160,2,12,,,,DISCHARGED -430,2023-04-29,3991.755828825399,252,Elective,2023-05-18,Abnormal,430,255,2,11,,,,DISCHARGED -431,2023-09-04,22314.393944570365,386,Elective,2023-09-17,Abnormal,431,322,4,18,,,,DISCHARGED -432,2019-07-26,49619.86254685744,428,Elective,2019-08-25,Abnormal,432,127,4,8,,,,DISCHARGED -433,2021-06-24,47695.93306826968,439,Emergency,2021-07-11,Inconclusive,433,17,1,9,,,,DISCHARGED -434,2022-08-19,4377.60198677737,265,Elective,2022-09-09,Abnormal,434,280,0,16,,,,DISCHARGED -435,2020-11-09,33919.88146222602,153,Elective,2020-11-17,Abnormal,435,489,3,17,,,,DISCHARGED -436,2021-01-19,26017.318073241207,264,Urgent,2021-02-14,Inconclusive,436,222,0,7,,,,DISCHARGED -437,2020-08-05,24371.732446723752,234,Emergency,2020-08-13,Normal,437,53,1,6,,,,DISCHARGED -437,2020-09-23,31717.16699091609,398,Urgent,2020-10-19,Abnormal,2180,57,1,8,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -438,2022-04-02,12723.420482916645,174,Elective,2022-04-09,Inconclusive,438,322,0,9,,,,DISCHARGED -439,2023-02-05,4433.950956325497,445,Emergency,2023-02-18,Abnormal,439,359,3,11,,,,DISCHARGED -440,2019-09-29,6849.015274052991,110,Urgent,2019-10-24,Inconclusive,440,173,0,14,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -441,2021-02-07,17219.17249139119,101,Urgent,2021-02-21,Abnormal,441,279,4,14,,,,DISCHARGED -442,2020-06-21,13137.632496612798,145,Urgent,2020-07-20,Abnormal,442,113,2,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -443,2022-07-06,49528.92118252973,382,Elective,2022-07-13,Inconclusive,443,287,4,3,,,,DISCHARGED -444,2021-05-05,39734.99511709112,496,Emergency,2021-05-14,Abnormal,444,430,2,3,,,,DISCHARGED -444,2020-07-01,38587.5803444483,150,Emergency,2020-07-17,Normal,3315,341,1,22,,,,DISCHARGED -445,2020-08-26,1926.8812784193387,485,Urgent,2020-09-19,Normal,445,150,3,0,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -446,2023-07-29,26531.698294090373,375,Elective,2023-08-10,Abnormal,446,449,0,25,,,,DISCHARGED -447,2020-07-15,32573.7247492396,435,Urgent,2020-08-14,Normal,447,126,3,11,,,,DISCHARGED -448,2019-07-02,9880.393141552431,235,Emergency,2019-07-18,Normal,448,154,0,24,,,,DISCHARGED -450,2019-11-15,28473.03123070652,353,Urgent,2019-11-25,Abnormal,450,489,4,1,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -451,2023-10-24,41787.1881271981,474,Urgent,,Abnormal,451,385,4,14,,,,OPEN -452,2022-07-02,42419.10894481873,443,Urgent,2022-07-22,Abnormal,452,473,0,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -453,2020-07-30,1769.47942259644,344,Urgent,2020-08-04,Abnormal,453,272,3,6,,,,DISCHARGED -454,2019-05-28,22938.061375785877,363,Elective,2019-06-12,Normal,454,103,0,5,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -455,2020-03-28,29149.76226273954,301,Emergency,2020-04-11,Abnormal,455,416,1,11,,,,DISCHARGED -456,2021-12-13,35725.015997528026,246,Elective,2021-12-22,Abnormal,456,392,4,18,,,,DISCHARGED -457,2023-07-03,45968.66601088508,242,Elective,,Abnormal,457,298,1,0,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",OPEN -458,2022-07-31,47633.19611828846,467,Elective,2022-08-10,Inconclusive,458,245,4,27,,,,DISCHARGED -459,2022-03-24,11837.391382902972,439,Emergency,2022-04-13,Inconclusive,459,175,4,20,,,,DISCHARGED -459,2022-07-02,33329.166580649966,374,Emergency,2022-07-17,Abnormal,4961,38,2,25,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -460,2023-06-10,34295.81941924599,435,Urgent,2023-07-10,Normal,460,476,1,13,,,,DISCHARGED -461,2019-02-15,41665.42359867156,146,Elective,2019-03-11,Inconclusive,461,169,1,3,,,,DISCHARGED -462,2021-06-08,31726.59716065663,118,Elective,2021-07-04,Abnormal,462,246,2,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -463,2022-06-02,12798.354436372836,206,Elective,2022-06-15,Inconclusive,463,25,3,0,,,,DISCHARGED -464,2022-11-07,13364.28478214961,233,Emergency,2022-11-21,Normal,464,354,1,0,,,,DISCHARGED -465,2019-10-07,9198.071177894664,158,Elective,2019-10-29,Inconclusive,465,305,0,20,,,,DISCHARGED -466,2020-09-26,45218.39685568974,269,Elective,2020-10-05,Inconclusive,466,408,2,5,,,,DISCHARGED -466,2019-11-26,4117.6167256256,451,Emergency,2019-12-01,Inconclusive,7860,407,1,4,,,,DISCHARGED -467,2022-08-25,7813.239088644965,422,Emergency,2022-08-27,Abnormal,467,12,3,1,,,,DISCHARGED -468,2020-09-07,14722.06486979564,441,Urgent,2020-09-21,Inconclusive,468,315,1,24,,,,DISCHARGED -469,2020-08-06,28414.392830500576,136,Elective,2020-08-30,Normal,469,390,4,20,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -470,2019-11-07,23600.111033537287,289,Emergency,2019-11-10,Normal,470,312,0,26,,,,DISCHARGED -471,2020-02-16,22065.281396557828,320,Elective,2020-03-07,Abnormal,471,35,2,26,,,,DISCHARGED -472,2021-12-21,28830.35043862421,173,Elective,2021-12-25,Abnormal,472,172,4,4,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -473,2022-07-16,11169.299479570573,269,Urgent,2022-08-02,Abnormal,473,19,3,25,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -474,2023-10-30,37904.3953340171,359,Elective,2023-11-08,Abnormal,474,320,4,8,,,,DISCHARGED -475,2023-01-24,17370.67402887645,334,Emergency,2023-02-18,Abnormal,475,263,4,18,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -476,2023-10-16,42494.658488975496,180,Urgent,2023-10-29,Abnormal,476,493,3,20,,,,DISCHARGED -476,2020-12-26,19166.455614682505,220,Urgent,2020-12-28,Normal,6663,399,4,14,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -477,2023-05-24,3717.532768174956,412,Elective,2023-06-12,Normal,477,141,2,12,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -478,2021-07-14,5181.797329471285,277,Urgent,2021-07-21,Normal,478,459,1,11,,,,DISCHARGED -479,2019-10-31,38384.83383994121,423,Elective,2019-11-29,Inconclusive,479,370,4,4,,,,DISCHARGED -480,2019-11-11,1872.6240696749564,249,Emergency,2019-12-04,Normal,480,470,2,1,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -480,2023-09-10,11877.554813326786,290,Emergency,,Normal,5414,142,1,26,,,,OPEN -481,2021-08-27,26642.91852973562,265,Emergency,2021-09-06,Inconclusive,481,91,1,3,,,,DISCHARGED -482,2019-11-16,12517.38311628151,112,Elective,2019-11-17,Abnormal,482,353,4,26,,,,DISCHARGED -483,2018-11-25,2095.1559258625894,433,Elective,2018-12-18,Abnormal,483,321,2,26,,,,DISCHARGED -484,2019-08-10,1733.3650274449624,139,Urgent,2019-08-16,Abnormal,484,287,4,17,,,,DISCHARGED -484,2020-04-10,30453.29256083368,481,Emergency,2020-05-10,Inconclusive,934,214,3,20,,,,DISCHARGED -485,2023-07-15,47022.68531585785,304,Urgent,2023-08-03,Abnormal,485,446,1,9,,,,DISCHARGED -486,2022-03-04,37784.19228834623,120,Urgent,2022-03-12,Inconclusive,486,341,4,12,,,,DISCHARGED -487,2021-08-17,48166.4649733162,215,Emergency,2021-09-04,Inconclusive,487,50,1,11,,,,DISCHARGED -488,2021-02-17,8771.405136422072,478,Emergency,2021-03-03,Abnormal,488,152,2,1,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -489,2019-02-27,29401.01362275602,450,Elective,2019-03-22,Normal,489,185,0,25,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -490,2022-06-05,25768.14923325117,105,Emergency,2022-06-25,Normal,490,62,4,14,,,,DISCHARGED -491,2021-12-07,24931.510709500853,129,Urgent,2021-12-25,Normal,491,189,4,13,,,,DISCHARGED -492,2021-12-22,25403.265432304517,436,Urgent,2022-01-15,Normal,492,124,1,24,,,,DISCHARGED -493,2022-08-21,4872.52203867796,300,Emergency,2022-08-23,Normal,493,149,2,9,,,,DISCHARGED -494,2021-03-07,16579.523111324743,181,Elective,2021-03-14,Abnormal,494,313,3,21,,,,DISCHARGED -495,2019-07-31,36267.53004591016,359,Elective,2019-08-08,Inconclusive,495,57,2,7,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -496,2019-04-17,14630.921981044075,243,Elective,2019-04-19,Inconclusive,496,341,4,24,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -497,2021-03-06,20948.868408245267,451,Elective,2021-03-08,Inconclusive,497,304,3,14,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,DISCHARGED -498,2019-06-25,16520.40104282614,454,Emergency,2019-07-06,Abnormal,498,179,2,12,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -499,2021-02-08,40894.21213974231,324,Urgent,2021-03-03,Abnormal,499,169,0,7,,,,DISCHARGED -500,2022-11-29,21763.63091730142,413,Elective,2022-12-20,Abnormal,500,325,1,20,,,,DISCHARGED -500,2022-03-12,3091.861153836057,351,Emergency,2022-04-07,Normal,1441,270,2,20,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -501,2019-08-20,19095.93781532436,233,Urgent,2019-09-06,Abnormal,501,53,2,21,,,,DISCHARGED -502,2023-04-12,36653.518666295786,279,Urgent,2023-05-10,Normal,502,490,0,13,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -503,2021-10-30,7425.021655104772,257,Elective,2021-11-14,Normal,503,443,4,0,,,,DISCHARGED -504,2022-05-31,7971.315646371439,227,Elective,2022-06-24,Inconclusive,504,100,1,12,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -505,2020-06-28,39914.27607055036,458,Urgent,2020-07-09,Inconclusive,505,480,2,26,,,,DISCHARGED -506,2020-10-10,7114.390324960495,209,Urgent,2020-10-14,Normal,506,263,3,7,,,,DISCHARGED -506,2019-05-12,40593.27133069669,202,Elective,2019-05-24,Inconclusive,4062,52,2,17,,,,DISCHARGED -506,2021-01-10,8802.237166078168,260,Emergency,2021-02-05,Normal,9089,59,1,21,,,,DISCHARGED -507,2019-11-17,35155.664221050734,148,Urgent,2019-11-18,Abnormal,507,491,2,29,,,,DISCHARGED -508,2019-06-05,2940.4267013198146,121,Elective,2019-06-23,Inconclusive,508,107,0,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -509,2021-09-25,20832.681283156555,461,Emergency,2021-10-21,Inconclusive,509,4,2,8,,,,DISCHARGED -510,2022-07-03,26790.38571886688,228,Urgent,2022-07-12,Normal,510,102,2,12,,,,DISCHARGED -511,2020-06-30,7075.04249268287,216,Elective,2020-07-25,Inconclusive,511,195,3,2,,,,DISCHARGED -512,2021-10-06,41813.39958512251,302,Urgent,2021-10-21,Abnormal,512,261,0,17,,,,DISCHARGED -513,2019-08-16,26925.89517815298,266,Elective,2019-09-12,Inconclusive,513,364,0,9,,,,DISCHARGED -514,2019-04-11,34710.04305373714,115,Emergency,2019-04-12,Inconclusive,514,479,2,4,,,,DISCHARGED -515,2022-05-10,24406.045621389712,417,Emergency,2022-05-27,Abnormal,515,371,3,26,,,,DISCHARGED -516,2020-03-13,32681.888295183657,450,Urgent,2020-04-01,Normal,516,349,2,24,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -516,2022-05-12,38857.2600632808,441,Emergency,2022-06-01,Inconclusive,9884,46,2,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -517,2022-04-30,6070.790387328666,283,Urgent,2022-05-09,Inconclusive,517,354,1,29,,,,DISCHARGED -518,2022-12-27,8144.499917205368,369,Emergency,2023-01-11,Normal,518,310,1,7,,,,DISCHARGED -519,2019-04-18,33700.44951446174,227,Urgent,2019-05-12,Inconclusive,519,423,3,23,,,,DISCHARGED -520,2018-12-13,23147.662039422623,121,Emergency,2018-12-16,Inconclusive,520,307,4,6,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -521,2021-05-20,4779.894357051111,382,Urgent,2021-05-29,Abnormal,521,143,1,20,,,,DISCHARGED -522,2021-08-12,35536.83539932699,231,Elective,2021-08-22,Normal,522,268,4,17,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -523,2022-03-21,9548.401159450852,384,Emergency,2022-04-19,Normal,523,369,0,13,,,,DISCHARGED -524,2021-08-03,37589.305795129854,171,Urgent,2021-08-17,Normal,524,123,1,14,,,,DISCHARGED -525,2021-04-18,11480.50809386221,150,Elective,2021-05-06,Normal,525,105,1,9,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -526,2021-10-29,48934.26926430396,224,Elective,2021-11-09,Abnormal,526,157,3,25,,,,DISCHARGED -527,2021-06-08,41867.42276599655,292,Elective,2021-06-13,Normal,527,146,4,20,,,,DISCHARGED -527,2021-08-07,18030.99760957841,188,Urgent,2021-08-11,Inconclusive,5471,144,1,11,,,,DISCHARGED -528,2020-09-07,30326.548123541277,464,Urgent,2020-10-02,Abnormal,528,119,1,6,,,,DISCHARGED -528,2023-05-02,9069.588120614291,251,Emergency,,Inconclusive,7124,318,3,27,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -528,2019-05-14,19162.047514277485,109,Emergency,2019-05-28,Inconclusive,8772,274,3,27,,,,DISCHARGED -529,2019-02-15,15650.89136366234,323,Emergency,2019-03-13,Abnormal,529,91,4,6,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -529,2020-12-28,22369.397932161075,312,Urgent,2021-01-11,Abnormal,3782,57,0,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -529,2023-02-05,22591.60146174062,334,Emergency,2023-02-24,Abnormal,5193,438,0,12,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -529,2023-08-28,47327.88276694965,438,Elective,2023-09-26,Abnormal,6700,345,2,14,,,,DISCHARGED -530,2023-07-07,23674.450003124257,457,Emergency,2023-07-08,Normal,530,228,1,17,,,,DISCHARGED -531,2020-02-26,4327.007176437091,443,Urgent,2020-03-07,Abnormal,531,473,4,6,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -532,2021-03-15,29642.72166436872,349,Urgent,2021-03-28,Abnormal,532,116,1,5,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -533,2019-06-30,23708.64705040193,358,Emergency,2019-07-23,Abnormal,533,317,4,22,,,,DISCHARGED -534,2019-05-01,25553.108423598303,449,Urgent,2019-05-18,Abnormal,534,278,4,10,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -535,2021-09-20,2843.9567706199905,223,Emergency,2021-10-12,Inconclusive,535,126,4,7,,,,DISCHARGED -536,2023-08-02,17514.335725622943,418,Emergency,2023-09-01,Normal,536,392,1,19,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -536,2020-06-01,38987.91525101814,489,Emergency,2020-06-04,Normal,3997,395,3,0,,,,DISCHARGED -536,2022-02-27,2615.279110410856,361,Emergency,2022-03-20,Normal,9607,128,1,7,,,,DISCHARGED -537,2020-01-30,13176.78745609465,220,Urgent,2020-02-01,Abnormal,537,57,4,7,,,,DISCHARGED -537,2019-04-12,12524.607133670266,167,Urgent,2019-04-17,Inconclusive,4875,121,2,18,,,,DISCHARGED -538,2019-04-26,26984.7214350776,370,Urgent,2019-05-17,Normal,538,0,0,2,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -539,2022-08-08,6972.148003460449,270,Urgent,2022-09-02,Inconclusive,539,238,4,4,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -540,2022-06-16,23127.21955713945,489,Emergency,2022-07-06,Abnormal,540,289,2,29,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -541,2022-02-10,49053.356073379015,383,Emergency,2022-02-26,Normal,541,95,3,2,,,,DISCHARGED -542,2021-02-18,26673.32884194635,151,Elective,2021-02-25,Abnormal,542,125,4,14,,,,DISCHARGED -543,2019-10-22,26730.533030935014,475,Elective,2019-11-14,Normal,543,117,2,13,,,,DISCHARGED -544,2018-12-30,1273.5634892546543,193,Emergency,2019-01-09,Inconclusive,544,47,4,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -544,2019-03-11,6584.543834592671,271,Elective,2019-03-14,Inconclusive,858,88,1,14,,,,DISCHARGED -545,2019-10-07,9530.447755726893,130,Emergency,2019-10-17,Normal,545,487,2,23,,,,DISCHARGED -546,2021-03-12,41468.33201755068,486,Urgent,2021-03-13,Inconclusive,546,236,1,16,,,,DISCHARGED -547,2018-11-29,29471.338578563355,195,Emergency,2018-12-29,Normal,547,372,1,17,,,,DISCHARGED -548,2023-07-28,13566.273821021534,370,Urgent,2023-08-02,Inconclusive,548,384,2,1,,,,DISCHARGED -549,2020-01-06,44848.3132673048,394,Emergency,2020-01-12,Normal,549,271,0,11,,,,DISCHARGED -549,2019-07-12,34345.70828955726,449,Emergency,2019-08-04,Abnormal,9072,188,2,15,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -550,2021-03-17,45032.998617150966,332,Urgent,2021-04-02,Normal,550,486,0,3,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -551,2022-11-05,35815.45584647932,183,Emergency,2022-12-04,Normal,551,191,4,24,,,,DISCHARGED -552,2019-06-24,19532.53278723472,482,Urgent,2019-07-12,Abnormal,552,446,4,1,,,,DISCHARGED -553,2019-12-04,45970.0253982044,349,Urgent,2019-12-31,Abnormal,553,68,2,27,,,,DISCHARGED -554,2021-02-03,31603.464289996395,129,Urgent,2021-03-03,Inconclusive,554,277,4,13,,,,DISCHARGED -555,2022-04-20,46859.300809502565,101,Urgent,2022-05-05,Normal,555,348,3,10,,,,DISCHARGED -555,2020-11-07,34600.54375101597,413,Emergency,2020-11-23,Abnormal,1650,246,1,12,,,,DISCHARGED -555,2021-08-19,11018.936252881129,239,Emergency,2021-09-08,Abnormal,4177,450,1,27,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -556,2021-11-28,12442.5573858006,437,Urgent,2021-12-12,Normal,556,75,0,24,,,,DISCHARGED -557,2021-12-11,30663.060917614795,350,Elective,2021-12-18,Abnormal,557,153,4,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -558,2019-04-08,46515.22909192982,309,Emergency,2019-05-04,Inconclusive,558,143,0,9,,,,DISCHARGED -559,2023-02-09,11124.064664015672,114,Urgent,2023-02-22,Inconclusive,559,434,1,23,,,,DISCHARGED -559,2020-06-22,29305.80150045741,409,Urgent,2020-07-07,Normal,8306,484,1,0,,,,DISCHARGED -560,2021-06-30,47627.27783828069,394,Urgent,2021-07-09,Inconclusive,560,85,4,28,,,,DISCHARGED -560,2022-06-17,29711.44848855328,171,Elective,2022-07-12,Abnormal,642,184,3,20,,,,DISCHARGED -561,2020-04-11,31263.33812260269,359,Urgent,2020-04-21,Abnormal,561,284,3,24,,,,DISCHARGED -562,2022-02-03,28352.41473171589,469,Emergency,2022-02-20,Inconclusive,562,461,4,27,,,,DISCHARGED -563,2022-05-12,42655.64205587303,366,Emergency,2022-06-05,Normal,563,219,4,3,,,,DISCHARGED -564,2020-06-23,22269.55697399366,158,Emergency,2020-07-08,Abnormal,564,68,0,17,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -565,2021-05-08,42727.06257920989,424,Emergency,2021-05-16,Inconclusive,565,46,4,5,,,,DISCHARGED -566,2019-06-05,33632.929738282095,359,Elective,2019-06-27,Inconclusive,566,496,3,1,,,,DISCHARGED -567,2021-05-13,35921.24997513281,312,Elective,2021-05-20,Normal,567,93,4,2,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -567,2023-09-22,39038.30212916092,301,Emergency,2023-09-30,Abnormal,7463,237,0,13,,,,DISCHARGED -568,2019-04-10,29057.33788783523,292,Urgent,2019-04-16,Inconclusive,568,445,0,7,,,,DISCHARGED -568,2020-08-08,48015.68909005,437,Elective,2020-08-27,Abnormal,4633,499,0,15,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -569,2020-02-23,11798.272635112471,120,Urgent,2020-02-29,Normal,569,452,0,18,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -570,2019-02-05,29004.148319391294,172,Elective,2019-02-09,Abnormal,570,203,2,17,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -571,2022-08-03,35302.0542529773,285,Elective,2022-08-30,Inconclusive,571,399,4,5,,,,DISCHARGED -572,2023-06-01,40930.33670034296,269,Elective,,Abnormal,572,217,1,13,,,,OPEN -573,2020-10-13,18198.873724591896,353,Urgent,2020-11-04,Abnormal,573,473,4,2,,,,DISCHARGED -574,2020-02-04,2169.8000252912543,250,Emergency,2020-02-17,Abnormal,574,431,2,15,,,,DISCHARGED -575,2023-09-04,22325.85848784263,494,Emergency,,Normal,575,340,0,0,,,,OPEN -576,2020-07-17,39300.53214001592,148,Urgent,2020-07-22,Normal,576,38,2,11,,,,DISCHARGED -576,2022-01-10,7061.616018176291,403,Emergency,2022-01-26,Inconclusive,5017,99,3,29,,,,DISCHARGED -577,2021-09-09,48637.890352783135,489,Urgent,2021-09-30,Inconclusive,577,288,3,13,,,,DISCHARGED -578,2019-10-21,11455.638278335364,299,Elective,2019-11-07,Abnormal,578,253,4,18,,,,DISCHARGED -579,2023-08-14,29736.48579821002,333,Urgent,,Normal,579,221,4,21,,,,OPEN -580,2023-09-19,31546.04034452285,118,Emergency,2023-09-23,Inconclusive,580,356,1,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -581,2023-03-11,29531.96894938637,194,Urgent,2023-04-07,Abnormal,581,22,1,8,,,,DISCHARGED -582,2020-11-08,27793.874151156982,354,Elective,2020-12-07,Abnormal,582,249,3,6,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -583,2022-12-21,25651.524166615734,210,Urgent,2022-12-27,Abnormal,583,9,0,13,,,,DISCHARGED -584,2019-06-20,2633.7930984837817,459,Urgent,2019-07-11,Abnormal,584,245,2,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -585,2019-10-18,36200.574823271,150,Elective,2019-11-07,Inconclusive,585,324,1,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -586,2022-09-17,27740.621895862027,419,Elective,2022-09-25,Abnormal,586,99,1,8,,,,DISCHARGED -586,2020-10-26,17265.95313814678,173,Urgent,2020-11-10,Inconclusive,5159,289,0,20,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -587,2023-06-17,10942.246708037756,308,Urgent,2023-07-05,Normal,587,179,0,6,,,,DISCHARGED -588,2022-09-27,1580.5238993603143,385,Emergency,2022-10-05,Normal,588,222,4,8,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -589,2021-08-22,4430.935757891534,283,Urgent,2021-09-12,Abnormal,589,393,2,3,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -590,2020-05-22,47716.54155932406,150,Elective,2020-05-29,Abnormal,590,249,0,24,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -591,2023-07-15,6907.865086316721,298,Emergency,,Normal,591,146,1,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,OPEN -592,2023-04-26,37718.965979142384,349,Urgent,2023-05-09,Inconclusive,592,441,1,11,,,,DISCHARGED -593,2020-08-16,20190.8093362639,287,Emergency,2020-09-01,Normal,593,95,3,5,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -594,2019-09-27,8957.21032146065,486,Elective,2019-10-18,Inconclusive,594,256,0,17,,,,DISCHARGED -595,2022-10-02,1621.74136483954,124,Elective,2022-10-30,Abnormal,595,324,4,7,,,,DISCHARGED -596,2018-12-17,14870.627251261443,493,Elective,2019-01-12,Inconclusive,596,492,2,20,,,,DISCHARGED -597,2022-10-06,17325.665238130157,356,Elective,2022-10-07,Inconclusive,597,3,4,14,,,,DISCHARGED -598,2020-08-14,17171.201075165605,471,Emergency,2020-09-07,Normal,598,15,1,2,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -599,2019-09-04,1720.1186557995557,197,Elective,2019-09-14,Normal,599,279,4,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -599,2023-07-21,25090.970740519588,255,Elective,2023-08-17,Normal,9871,335,1,23,,,,DISCHARGED -599,2021-01-02,42473.727572099335,459,Emergency,2021-01-18,Abnormal,9885,246,1,22,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -600,2021-12-22,43169.871554592566,190,Urgent,2021-12-30,Abnormal,600,257,1,8,,,,DISCHARGED -601,2021-02-28,21815.834706117395,497,Urgent,2021-03-15,Normal,601,496,1,7,,,,DISCHARGED -602,2022-12-28,15723.024459754026,104,Emergency,2023-01-26,Normal,602,475,1,26,,,,DISCHARGED -603,2019-08-17,25943.140950768706,386,Urgent,2019-08-30,Normal,603,383,3,3,,,,DISCHARGED -604,2021-08-25,43137.28068250206,291,Urgent,2021-08-30,Normal,604,159,4,1,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -605,2019-04-29,20480.127366492598,194,Emergency,2019-05-04,Normal,605,474,3,13,,,,DISCHARGED -606,2022-11-08,41749.141427979725,358,Urgent,2022-11-17,Abnormal,606,339,3,28,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -607,2021-08-31,25944.58736990828,163,Urgent,2021-09-29,Abnormal,607,151,0,1,,,,DISCHARGED -608,2021-04-18,7898.41039505423,152,Emergency,2021-05-03,Inconclusive,608,395,0,1,,,,DISCHARGED -609,2018-12-01,26652.02629964267,339,Emergency,2018-12-02,Inconclusive,609,177,0,29,,,,DISCHARGED -610,2018-11-20,22964.513025846525,142,Urgent,2018-12-07,Normal,610,162,2,26,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -611,2022-10-30,40088.25191410642,445,Emergency,2022-11-24,Abnormal,611,379,0,27,,,,DISCHARGED -612,2020-06-18,21643.0988673552,441,Urgent,2020-07-18,Inconclusive,612,32,4,21,,,,DISCHARGED -613,2020-09-25,45847.121454257394,303,Elective,2020-10-04,Abnormal,613,416,3,6,,,,DISCHARGED -614,2020-02-01,21787.94821260656,221,Emergency,2020-02-25,Normal,614,444,4,11,,,,DISCHARGED -615,2019-07-14,1308.4505111228175,203,Urgent,2019-07-15,Abnormal,615,178,0,5,,,,DISCHARGED -616,2022-08-12,16653.861241303515,233,Elective,2022-09-08,Abnormal,616,426,2,17,,,,DISCHARGED -617,2021-03-07,4890.952697087665,355,Emergency,2021-04-05,Abnormal,617,100,2,3,,,,DISCHARGED -617,2019-11-03,5822.149830631723,346,Emergency,2019-11-08,Inconclusive,6584,267,3,18,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -618,2021-09-05,3672.3107384173054,287,Urgent,2021-09-13,Inconclusive,618,322,4,26,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -619,2022-07-02,2754.2413838719704,496,Urgent,2022-07-25,Abnormal,619,64,1,12,,,,DISCHARGED -620,2022-03-04,7375.7026775905215,469,Urgent,2022-03-20,Normal,620,416,4,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -621,2018-12-21,17774.51346033581,315,Emergency,2018-12-28,Normal,621,167,0,20,,,,DISCHARGED -622,2022-06-01,37817.35473895176,245,Urgent,2022-06-29,Abnormal,622,329,1,22,,,,DISCHARGED -623,2022-10-29,35327.49680593469,187,Elective,2022-11-05,Abnormal,623,42,2,29,,,,DISCHARGED -624,2020-02-24,7515.106726165153,118,Urgent,2020-03-18,Abnormal,624,43,3,24,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -625,2022-12-25,26191.855680458164,250,Elective,2022-12-30,Inconclusive,625,284,3,26,,,,DISCHARGED -626,2020-09-15,40368.63078527363,467,Emergency,2020-09-28,Abnormal,626,396,2,1,,,,DISCHARGED -627,2021-10-12,12318.402603786715,444,Elective,2021-10-23,Abnormal,627,11,0,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -627,2021-12-27,33140.021561048576,393,Urgent,2022-01-20,Normal,4993,94,2,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -627,2021-07-17,40729.93029548378,246,Urgent,2021-07-19,Abnormal,9855,301,0,8,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -628,2019-12-22,25682.58667785405,500,Elective,2020-01-03,Abnormal,628,385,1,25,,,,DISCHARGED -629,2023-07-03,1166.7713188498326,212,Elective,2023-08-02,Abnormal,629,252,2,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -630,2022-11-24,26137.14802036306,405,Urgent,2022-12-18,Normal,630,498,0,3,,,,DISCHARGED -631,2022-10-18,30496.5510232852,270,Elective,2022-11-08,Abnormal,631,241,1,15,,,,DISCHARGED -632,2020-02-01,22805.877722145397,226,Urgent,2020-02-22,Abnormal,632,34,2,18,,,,DISCHARGED -633,2019-05-07,49270.072507326775,133,Elective,2019-05-13,Abnormal,633,214,3,9,,,,DISCHARGED -634,2020-03-26,4858.182480607207,261,Urgent,2020-04-03,Abnormal,634,336,2,5,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -635,2019-03-09,9221.570265611015,415,Elective,2019-03-16,Abnormal,635,89,4,15,,,,DISCHARGED -636,2021-06-06,7277.398359386279,450,Emergency,2021-06-24,Abnormal,636,263,2,9,,,,DISCHARGED -637,2023-03-29,46231.732510155394,153,Emergency,2023-04-26,Normal,637,92,4,12,,,,DISCHARGED -638,2019-10-16,4159.8516752477735,240,Elective,2019-11-15,Inconclusive,638,409,1,8,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -639,2022-02-27,39008.29088176689,231,Emergency,2022-03-23,Abnormal,639,457,2,6,,,,DISCHARGED -640,2020-06-13,5859.633336178047,136,Emergency,2020-06-24,Abnormal,640,89,1,3,,,,DISCHARGED -641,2018-11-07,11504.243525500084,304,Emergency,2018-11-17,Abnormal,641,417,1,18,,,,DISCHARGED -643,2022-07-11,12779.4190671751,139,Urgent,2022-07-15,Normal,643,114,0,25,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -644,2021-07-14,37031.667951122414,464,Elective,2021-07-24,Normal,644,104,1,3,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -645,2019-03-22,35296.60739748208,478,Elective,2019-04-12,Inconclusive,645,390,1,18,,,,DISCHARGED -646,2020-11-29,13251.93066792951,272,Urgent,2020-12-11,Normal,646,195,2,27,,,,DISCHARGED -646,2022-04-12,36688.41362234406,493,Urgent,2022-05-02,Inconclusive,5599,313,2,18,,,,DISCHARGED -647,2019-06-18,10398.841431365803,263,Elective,2019-07-14,Abnormal,647,113,3,11,,,,DISCHARGED -648,2018-11-21,35824.27718337132,147,Emergency,2018-12-17,Abnormal,648,492,0,29,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -649,2021-10-29,25646.982769784863,384,Emergency,2021-11-04,Normal,649,74,1,12,,,,DISCHARGED -650,2023-08-11,38797.57016070035,443,Emergency,,Inconclusive,650,412,0,24,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",OPEN -650,2021-11-27,42999.48515017059,478,Emergency,2021-12-27,Inconclusive,5021,375,4,3,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -651,2022-09-23,39298.31397906687,499,Emergency,2022-09-29,Normal,651,419,1,24,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -652,2022-01-31,13906.86947145366,254,Urgent,2022-02-21,Abnormal,652,216,0,27,,,,DISCHARGED -653,2018-12-05,3240.3099231891383,310,Urgent,2018-12-12,Inconclusive,653,276,3,9,,,,DISCHARGED -654,2020-11-12,18890.599993942385,323,Emergency,2020-12-11,Inconclusive,654,248,3,20,,,,DISCHARGED -655,2021-10-21,1832.966602057094,308,Urgent,2021-11-14,Abnormal,655,163,1,6,,,,DISCHARGED -656,2021-10-10,9781.227877151165,145,Elective,2021-10-14,Abnormal,656,393,4,29,,,,DISCHARGED -657,2020-08-26,3484.9172789396234,287,Elective,2020-09-21,Normal,657,356,3,4,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -658,2021-07-07,28319.6755694606,223,Elective,2021-07-21,Normal,658,456,3,16,,,,DISCHARGED -659,2021-08-19,22706.167498746145,253,Emergency,2021-08-22,Abnormal,659,407,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -660,2020-01-11,8941.46951865727,155,Emergency,2020-01-17,Abnormal,660,191,0,10,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -661,2020-08-23,6537.146944177454,213,Urgent,2020-09-12,Inconclusive,661,226,3,14,,,,DISCHARGED -662,2021-01-04,2089.9212968616207,287,Emergency,2021-01-15,Inconclusive,662,176,2,20,,,,DISCHARGED -663,2021-06-25,6786.999888529623,451,Elective,2021-07-22,Inconclusive,663,98,3,21,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -664,2020-07-28,7135.088456734516,413,Emergency,2020-08-11,Normal,664,495,0,6,,,,DISCHARGED -665,2019-06-01,38992.27217140143,471,Elective,2019-06-15,Normal,665,35,0,17,,,,DISCHARGED -666,2019-05-01,24341.76247166152,288,Elective,2019-05-04,Normal,666,465,1,25,,,,DISCHARGED -667,2022-10-24,38397.633513422974,381,Emergency,2022-10-27,Normal,667,496,2,24,,,,DISCHARGED -667,2020-12-10,3818.595075203345,221,Emergency,2021-01-05,Normal,3686,486,0,5,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -668,2020-10-31,19815.01793877015,225,Emergency,2020-11-11,Inconclusive,668,95,4,17,,,,DISCHARGED -669,2021-10-23,43750.163335970974,131,Urgent,2021-11-10,Inconclusive,669,151,2,15,,,,DISCHARGED -670,2022-05-05,32288.973244691417,191,Elective,2022-05-25,Inconclusive,670,150,2,1,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -671,2020-11-20,21005.63444737728,425,Emergency,2020-12-12,Normal,671,189,4,18,,,,DISCHARGED -672,2019-06-16,34855.727260136984,233,Urgent,2019-07-05,Normal,672,223,3,0,,,,DISCHARGED -673,2022-08-06,26510.62830691177,135,Urgent,2022-09-04,Inconclusive,673,36,4,24,,,,DISCHARGED -674,2021-07-07,12042.408939254816,385,Elective,2021-07-08,Inconclusive,674,267,4,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -675,2020-04-04,41216.67692224184,178,Urgent,2020-04-28,Abnormal,675,368,3,25,,,,DISCHARGED -676,2019-06-07,6752.416370961948,405,Urgent,2019-06-11,Normal,676,182,3,10,,,,DISCHARGED -676,2018-12-17,12802.501487818598,397,Urgent,2018-12-22,Abnormal,6093,12,3,19,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -677,2023-03-09,24865.147652104934,411,Emergency,2023-03-22,Inconclusive,677,278,3,4,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -678,2021-06-01,44480.89614627855,423,Elective,2021-06-29,Normal,678,216,3,15,,,,DISCHARGED -679,2020-03-05,35699.31152905354,329,Urgent,2020-03-18,Normal,679,354,4,22,,,,DISCHARGED -680,2020-10-03,23327.64271375108,121,Emergency,2020-10-18,Normal,680,360,1,0,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -681,2023-01-15,48488.17808785007,213,Emergency,2023-01-23,Abnormal,681,285,1,18,,,,DISCHARGED -682,2021-02-10,44147.79354614219,315,Emergency,2021-03-09,Normal,682,272,0,13,,,,DISCHARGED -683,2023-02-19,43699.09339220958,460,Emergency,2023-03-06,Abnormal,683,368,1,2,,,,DISCHARGED -684,2019-12-04,34573.60212639306,366,Elective,2019-12-12,Abnormal,684,61,1,1,,,,DISCHARGED -685,2019-09-13,25726.29888730881,493,Emergency,2019-09-20,Inconclusive,685,83,4,23,,,,DISCHARGED -685,2021-07-16,37424.896712974136,357,Emergency,2021-07-22,Inconclusive,8664,367,3,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -686,2023-03-23,28751.33243401702,326,Emergency,2023-04-18,Normal,686,216,3,16,,,,DISCHARGED -687,2022-09-27,26553.981812972223,268,Elective,2022-10-27,Abnormal,687,341,4,27,,,,DISCHARGED -688,2019-08-02,34730.2311812142,441,Emergency,2019-08-25,Inconclusive,688,396,1,17,,,,DISCHARGED -689,2020-06-22,33563.15886344288,310,Elective,2020-07-13,Inconclusive,689,186,4,0,,,,DISCHARGED -690,2021-03-28,40482.86091982188,173,Elective,2021-04-13,Inconclusive,690,18,0,14,,,,DISCHARGED -691,2020-08-21,10100.077988372932,229,Elective,2020-08-31,Normal,691,176,3,21,,,,DISCHARGED -692,2023-01-29,2397.2433727984144,193,Urgent,,Normal,692,99,2,8,,,,OPEN -692,2019-12-27,7843.407417399141,494,Emergency,2020-01-01,Abnormal,7451,395,0,26,,,,DISCHARGED -692,2023-08-24,13046.980253989215,350,Elective,,Abnormal,7456,444,0,22,,,,OPEN -692,2020-01-09,3621.536449748656,392,Emergency,2020-01-26,Abnormal,8662,232,4,4,,,,DISCHARGED -693,2020-01-02,6264.5528465513535,483,Emergency,2020-01-24,Inconclusive,693,402,1,27,,,,DISCHARGED -694,2019-10-26,26193.20859270649,324,Urgent,2019-10-28,Inconclusive,694,75,3,12,,,,DISCHARGED -695,2023-04-05,26875.03408023667,103,Urgent,,Inconclusive,695,264,2,18,,,,OPEN -696,2023-06-04,20789.857274019647,179,Elective,2023-06-17,Inconclusive,696,454,0,27,,,,DISCHARGED -697,2021-01-10,44300.24972189319,334,Emergency,2021-01-21,Normal,697,283,2,27,,,,DISCHARGED -698,2022-09-18,8515.07868571556,189,Emergency,2022-09-21,Inconclusive,698,205,1,23,,,,DISCHARGED -699,2022-09-27,32934.47275227343,357,Elective,2022-10-26,Abnormal,699,222,1,9,,,,DISCHARGED -700,2020-07-05,43134.404352418045,138,Urgent,2020-07-27,Abnormal,700,383,2,19,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -701,2022-05-27,26655.77099731245,405,Emergency,2022-06-18,Abnormal,701,51,3,24,,,,DISCHARGED -702,2020-02-09,30328.08155057094,381,Urgent,2020-02-12,Normal,702,338,1,20,,,,DISCHARGED -703,2023-09-19,48960.84096432827,241,Urgent,2023-10-05,Inconclusive,703,366,2,13,,,,DISCHARGED -704,2020-01-24,29381.57959955362,478,Emergency,2020-02-05,Abnormal,704,143,0,21,,,,DISCHARGED -705,2022-02-18,42307.77965279135,306,Elective,2022-02-24,Normal,705,372,2,20,,,,DISCHARGED -706,2021-06-23,27564.35972719125,244,Elective,2021-06-26,Inconclusive,706,68,2,25,,,,DISCHARGED -707,2021-11-26,20131.64987884304,478,Emergency,2021-12-01,Abnormal,707,98,4,11,,,,DISCHARGED -708,2020-08-05,10643.351924430925,444,Urgent,2020-08-14,Abnormal,708,395,1,10,,,,DISCHARGED -709,2021-10-28,39053.62294380567,481,Elective,2021-11-04,Abnormal,709,24,3,22,,,,DISCHARGED -710,2022-11-03,19760.56870428288,347,Elective,2022-11-09,Abnormal,710,435,3,6,,,,DISCHARGED -710,2022-06-29,3304.226375100389,313,Urgent,2022-07-28,Abnormal,2800,378,4,16,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -711,2022-03-26,27726.72587782294,313,Elective,2022-04-23,Abnormal,711,468,3,17,,,,DISCHARGED -712,2019-07-08,34328.250210011785,313,Emergency,2019-07-18,Abnormal,712,483,2,6,,,,DISCHARGED -713,2023-01-02,7452.926275865916,161,Urgent,,Abnormal,713,52,4,23,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",OPEN -713,2022-01-29,9762.152487460102,378,Elective,2022-02-11,Abnormal,1084,150,0,19,,,,DISCHARGED -714,2019-03-08,35381.34910117897,460,Elective,2019-03-24,Normal,714,143,1,5,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -715,2023-09-30,29898.894423810558,164,Elective,2023-10-02,Abnormal,715,56,1,10,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -716,2021-09-11,22542.047911364465,350,Elective,2021-10-11,Inconclusive,716,38,1,11,,,,DISCHARGED -717,2020-01-10,36610.928816561405,445,Urgent,2020-01-25,Normal,717,108,2,25,,,,DISCHARGED -718,2023-04-03,19789.25254162127,413,Urgent,2023-04-07,Normal,718,180,0,15,,,,DISCHARGED -719,2021-12-17,16479.89691558537,156,Elective,2021-12-27,Normal,719,41,4,18,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -720,2021-09-02,2023.521819580016,499,Emergency,2021-09-27,Abnormal,720,185,4,22,,,,DISCHARGED -721,2021-03-06,8596.554415684222,498,Emergency,2021-03-31,Inconclusive,721,422,1,26,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -722,2021-09-01,17282.783447122092,210,Urgent,2021-09-11,Inconclusive,722,397,0,18,,,,DISCHARGED -723,2019-10-18,45839.002243320174,175,Elective,2019-10-22,Abnormal,723,222,0,10,,,,DISCHARGED -724,2019-04-10,43865.89991922462,360,Urgent,2019-05-09,Normal,724,121,0,15,,,,DISCHARGED -725,2021-02-06,5290.39706178965,362,Emergency,2021-02-13,Inconclusive,725,132,3,22,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -725,2023-09-14,10031.63094138683,148,Emergency,,Inconclusive,8012,162,3,27,,,,OPEN -725,2018-12-27,45268.70600762127,329,Elective,2019-01-25,Inconclusive,8257,214,1,26,,,,DISCHARGED -726,2019-02-10,41850.87495762621,180,Urgent,2019-02-13,Normal,726,220,0,11,,,,DISCHARGED -727,2023-09-16,26642.36763976629,402,Emergency,2023-10-14,Abnormal,727,234,0,26,,,,DISCHARGED -728,2019-07-07,9976.235732053396,272,Elective,2019-07-23,Normal,728,330,4,7,,,,DISCHARGED -729,2020-03-09,22780.126968153894,155,Urgent,2020-03-26,Abnormal,729,145,4,2,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -730,2023-04-11,19037.819963447117,203,Urgent,2023-05-09,Abnormal,730,238,1,1,,,,DISCHARGED -731,2023-05-18,5936.85442788524,248,Emergency,2023-05-19,Inconclusive,731,75,0,27,,,,DISCHARGED -732,2021-09-11,33209.18551542296,331,Elective,2021-10-03,Abnormal,732,8,1,5,,,,DISCHARGED -733,2020-06-27,25489.361897336825,430,Emergency,2020-07-09,Normal,733,73,4,15,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -734,2020-12-07,49974.80659196992,390,Emergency,2020-12-28,Normal,734,441,4,19,,,,DISCHARGED -735,2021-10-09,21078.494919886787,154,Elective,2021-11-08,Abnormal,735,491,3,23,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -736,2023-03-07,33335.113067909144,341,Emergency,,Inconclusive,736,400,1,28,,,,OPEN -737,2021-08-29,42294.9053217139,401,Urgent,2021-08-30,Inconclusive,737,252,1,14,,,,DISCHARGED -738,2019-03-09,20485.05305682624,312,Urgent,2019-03-28,Normal,738,229,0,13,,,,DISCHARGED -739,2018-11-28,24362.3739604404,424,Urgent,2018-12-02,Abnormal,739,6,0,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -740,2023-06-04,30219.840568138978,248,Urgent,,Normal,740,173,3,19,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",OPEN -741,2020-12-15,16043.149171051742,231,Urgent,2020-12-31,Normal,741,140,2,17,,,,DISCHARGED -742,2021-02-28,47901.75283538637,336,Elective,2021-03-02,Inconclusive,742,167,2,13,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -743,2022-08-07,46411.59805250819,299,Elective,2022-09-02,Abnormal,743,169,2,17,,,,DISCHARGED -744,2019-04-18,5412.689044818573,495,Urgent,2019-05-06,Inconclusive,744,392,1,1,,,,DISCHARGED -745,2020-02-10,39094.68030580683,180,Emergency,2020-02-27,Abnormal,745,433,1,0,,,,DISCHARGED -746,2022-06-13,38597.00167876915,136,Urgent,2022-06-15,Abnormal,746,282,4,19,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -747,2020-03-09,28429.30705666029,211,Elective,2020-04-07,Inconclusive,747,121,1,1,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -748,2021-08-11,44226.342901836,338,Elective,2021-09-09,Normal,748,193,1,8,,,,DISCHARGED -749,2023-03-14,24428.30168772113,470,Elective,,Abnormal,749,4,1,8,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",OPEN -750,2023-05-10,19925.36121455757,381,Emergency,2023-06-03,Inconclusive,750,28,3,15,,,,DISCHARGED -751,2023-06-08,20592.203163869275,230,Elective,2023-06-30,Inconclusive,751,164,1,10,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -752,2020-12-04,9812.179824131505,262,Urgent,2020-12-13,Abnormal,752,421,0,26,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -753,2019-11-28,19972.934865547548,139,Emergency,2019-12-12,Normal,753,338,0,22,,,,DISCHARGED -754,2022-08-15,41120.09899603738,208,Emergency,2022-08-30,Inconclusive,754,135,4,5,,,,DISCHARGED -754,2021-05-02,16581.515286624075,131,Urgent,2021-05-20,Abnormal,3396,495,3,11,,,,DISCHARGED -754,2022-07-10,49951.26176069349,476,Emergency,2022-08-06,Inconclusive,5169,364,0,2,,,,DISCHARGED -755,2023-10-12,11287.415506639492,447,Urgent,2023-10-21,Abnormal,755,320,3,29,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -756,2023-01-26,31740.491338369888,174,Emergency,,Inconclusive,756,341,3,11,,,,OPEN -757,2022-06-07,13376.239619834629,240,Elective,2022-06-29,Normal,757,499,4,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -758,2022-03-14,27639.326063183085,162,Elective,2022-03-27,Abnormal,758,144,3,22,,,,DISCHARGED -759,2019-08-16,19180.35768120774,469,Elective,2019-09-10,Normal,759,326,1,0,,,,DISCHARGED -760,2021-08-08,40812.4540565021,374,Elective,2021-08-22,Normal,760,216,3,8,,,,DISCHARGED -761,2022-02-15,17426.341356949,341,Elective,2022-03-10,Inconclusive,761,300,4,19,,,,DISCHARGED -762,2020-03-03,44982.00041483668,299,Emergency,2020-03-18,Abnormal,762,131,4,21,,,,DISCHARGED -763,2018-11-30,47650.80969466829,364,Elective,2018-12-15,Abnormal,763,291,4,5,,,,DISCHARGED -764,2020-02-16,6103.389063833198,369,Elective,2020-03-11,Normal,764,69,0,10,,,,DISCHARGED -765,2019-01-23,24921.315633679584,235,Emergency,2019-02-11,Normal,765,251,1,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -766,2018-12-13,1032.2630866161535,377,Urgent,2018-12-14,Normal,766,414,0,3,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -767,2019-09-15,42103.26303322263,366,Urgent,2019-10-07,Normal,767,274,2,28,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -768,2021-12-13,24954.7311360958,343,Urgent,2022-01-08,Normal,768,444,1,26,,,,DISCHARGED -769,2021-04-19,9326.034946567304,144,Elective,2021-05-09,Inconclusive,769,363,3,9,,,,DISCHARGED -769,2021-07-07,5276.557815435547,266,Urgent,2021-08-01,Inconclusive,8198,181,4,18,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -770,2021-05-27,25362.31419278356,148,Urgent,2021-06-26,Inconclusive,770,166,2,28,,,,DISCHARGED -771,2019-08-24,44336.26915459241,401,Urgent,2019-09-07,Inconclusive,771,90,1,5,,,,DISCHARGED -772,2022-03-12,5538.761874127573,277,Emergency,2022-03-27,Normal,772,201,0,0,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -773,2022-10-19,16280.90909814606,199,Urgent,2022-10-31,Inconclusive,773,345,4,7,,,,DISCHARGED -774,2022-02-08,8508.149556513565,183,Urgent,2022-02-10,Normal,774,18,0,7,,,,DISCHARGED -775,2020-01-03,10230.631506124004,481,Urgent,2020-01-30,Normal,775,38,1,24,,,,DISCHARGED -776,2019-02-11,41051.670280796825,329,Emergency,2019-02-21,Normal,776,125,1,5,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -777,2019-07-04,23274.304046522768,427,Urgent,2019-07-23,Inconclusive,777,450,2,16,,,,DISCHARGED -778,2023-04-13,37722.50942761079,257,Emergency,2023-05-06,Abnormal,778,172,3,18,,,,DISCHARGED -778,2022-01-05,48627.34760569774,300,Urgent,2022-01-10,Normal,784,140,0,0,,,,DISCHARGED -779,2020-04-20,47030.328586837946,467,Emergency,2020-05-10,Abnormal,779,241,2,14,,,,DISCHARGED -780,2023-01-31,32654.99224589677,289,Elective,,Abnormal,780,219,4,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",OPEN -781,2019-04-04,29497.37402678459,244,Elective,2019-04-26,Normal,781,125,3,20,,,,DISCHARGED -782,2019-05-18,27302.715218910147,375,Emergency,2019-05-29,Abnormal,782,57,2,2,,,,DISCHARGED -783,2020-11-24,47704.5817939048,296,Urgent,2020-11-29,Inconclusive,783,147,0,29,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -785,2019-04-17,35343.11175166781,189,Emergency,2019-05-03,Abnormal,785,475,1,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -786,2019-12-01,41082.61487121857,359,Elective,2019-12-07,Normal,786,455,4,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -787,2021-11-05,34712.191114828,104,Elective,2021-11-11,Abnormal,787,316,0,8,,,,DISCHARGED -788,2019-08-25,23918.812512706263,165,Elective,2019-09-20,Abnormal,788,382,3,26,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -789,2022-06-26,8749.923730892473,295,Emergency,2022-07-12,Inconclusive,789,360,3,15,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -790,2020-07-17,25970.86613875968,235,Elective,2020-07-25,Inconclusive,790,422,1,23,,,,DISCHARGED -791,2019-07-14,20536.00918132653,119,Urgent,2019-08-13,Normal,791,0,1,12,,,,DISCHARGED -792,2020-12-26,17232.967197593738,143,Urgent,2021-01-08,Inconclusive,792,386,4,18,,,,DISCHARGED -793,2023-08-05,22420.439275320496,200,Urgent,,Inconclusive,793,460,4,26,,,,OPEN -794,2022-01-24,43237.62811458214,472,Elective,2022-02-05,Normal,794,347,1,17,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -795,2023-01-29,11296.566023574776,123,Elective,2023-02-11,Abnormal,795,189,1,20,,,,DISCHARGED -796,2019-01-01,8476.740871912792,262,Urgent,2019-01-24,Normal,796,190,3,11,,,,DISCHARGED -797,2021-12-15,36408.22625238741,135,Elective,2022-01-10,Inconclusive,797,368,1,27,,,,DISCHARGED -798,2022-02-28,19484.05123974328,242,Elective,2022-03-29,Inconclusive,798,408,2,28,,,,DISCHARGED -799,2020-11-19,13608.178967324164,304,Emergency,2020-12-15,Inconclusive,799,311,0,11,,,,DISCHARGED -800,2021-07-17,25004.26860951412,416,Emergency,2021-07-18,Inconclusive,800,416,1,0,,,,DISCHARGED -801,2021-01-29,37667.41225733959,468,Emergency,2021-02-15,Inconclusive,801,421,4,19,,,,DISCHARGED -802,2019-02-16,16236.094943725762,273,Urgent,2019-03-18,Normal,802,116,2,7,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -803,2022-03-14,41603.68076690758,396,Elective,2022-04-11,Normal,803,133,4,16,,,,DISCHARGED -804,2021-05-24,30732.69838336576,292,Elective,2021-06-19,Inconclusive,804,57,2,20,,,,DISCHARGED -805,2019-07-08,29222.32718305689,355,Emergency,2019-07-26,Inconclusive,805,43,1,27,,,,DISCHARGED -806,2020-06-25,39541.66394307452,351,Emergency,2020-07-11,Normal,806,172,0,19,,,,DISCHARGED -807,2019-05-02,44595.209917483306,240,Emergency,2019-05-17,Normal,807,159,4,21,,,,DISCHARGED -808,2020-05-12,11167.18406266578,395,Emergency,2020-06-07,Inconclusive,808,172,2,6,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -809,2020-09-26,42381.33687268156,194,Elective,2020-10-05,Normal,809,316,3,8,,,,DISCHARGED -810,2022-03-21,11523.996974043888,319,Urgent,2022-03-27,Normal,810,302,1,16,,,,DISCHARGED -811,2022-03-12,38730.91328230767,130,Elective,2022-03-24,Normal,811,148,0,26,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -812,2020-03-02,16887.30253383948,340,Urgent,2020-03-20,Inconclusive,812,79,1,9,,,,DISCHARGED -813,2022-03-03,34572.735332712386,393,Urgent,2022-03-16,Abnormal,813,373,3,3,,,,DISCHARGED -814,2023-07-06,47900.18864530278,440,Urgent,,Normal,814,212,0,21,,,,OPEN -815,2019-09-05,24048.26659662773,370,Emergency,2019-09-11,Normal,815,202,3,25,,,,DISCHARGED -816,2023-07-29,41011.11902185864,268,Elective,,Inconclusive,816,251,1,6,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",OPEN -817,2020-06-19,9100.186853541489,303,Elective,2020-07-05,Inconclusive,817,228,2,6,,,,DISCHARGED -818,2023-06-21,35435.875071456,363,Emergency,2023-07-16,Inconclusive,818,163,1,7,,,,DISCHARGED -819,2023-05-09,28265.168342965186,119,Urgent,2023-06-06,Normal,819,226,1,29,,,,DISCHARGED -820,2019-08-24,1318.430280551725,129,Emergency,2019-09-05,Inconclusive,820,146,1,25,,,,DISCHARGED -820,2020-12-10,28266.4288766217,165,Emergency,2020-12-22,Abnormal,7244,19,4,23,,,,DISCHARGED -821,2022-09-21,43949.34658226591,278,Emergency,2022-09-30,Inconclusive,821,440,3,23,,,,DISCHARGED -822,2021-03-12,17245.167346985596,290,Emergency,2021-03-18,Abnormal,822,401,3,7,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -823,2023-03-16,19562.89780892543,326,Emergency,,Inconclusive,823,46,3,15,,,,OPEN -824,2021-01-24,32220.03922731605,201,Emergency,2021-02-04,Normal,824,232,4,11,,,,DISCHARGED -825,2023-07-25,33854.29689630168,461,Elective,,Abnormal,825,304,2,14,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -826,2019-06-04,45936.95113416006,244,Elective,2019-06-18,Normal,826,13,1,7,,,,DISCHARGED -827,2022-06-05,33301.630993388186,464,Urgent,2022-06-18,Abnormal,827,142,2,21,,,,DISCHARGED -828,2021-03-28,2634.757862571336,210,Urgent,2021-04-08,Normal,828,414,4,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -829,2023-09-19,43274.06974916167,268,Elective,2023-10-14,Normal,829,0,3,2,,,,DISCHARGED -830,2020-02-06,1606.2851913733862,491,Elective,2020-02-16,Inconclusive,830,372,1,21,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -831,2019-06-24,44358.02707896767,108,Emergency,2019-07-15,Inconclusive,831,53,0,20,,,,DISCHARGED -832,2023-07-21,25817.69518494261,163,Emergency,2023-07-22,Abnormal,832,373,0,15,,,,DISCHARGED -833,2018-11-03,43952.390215232524,343,Urgent,2018-11-13,Inconclusive,833,258,2,14,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -834,2023-04-10,23210.81233488537,443,Urgent,2023-04-25,Abnormal,834,143,3,23,,,,DISCHARGED -835,2021-10-22,47469.083166671415,355,Elective,2021-11-18,Inconclusive,835,470,0,3,,,,DISCHARGED -836,2019-02-24,8945.823548135064,146,Urgent,2019-03-23,Abnormal,836,440,2,19,,,,DISCHARGED -837,2019-04-01,45779.07518868438,232,Urgent,2019-04-24,Normal,837,458,4,28,,,,DISCHARGED -838,2021-12-14,14964.071601818474,376,Elective,2022-01-10,Inconclusive,838,11,2,15,,,,DISCHARGED -838,2022-07-29,25037.67180078681,231,Elective,2022-08-20,Normal,9322,329,2,9,,,,DISCHARGED -839,2022-03-16,32000.19585303313,292,Emergency,2022-03-31,Normal,839,223,2,10,,,,DISCHARGED -840,2023-01-29,18696.998297113296,266,Emergency,,Normal,840,271,1,25,,,,OPEN -841,2023-07-06,13108.510887048702,209,Elective,,Abnormal,841,455,2,28,,,,OPEN -842,2019-08-23,17892.930585551392,230,Elective,2019-09-15,Inconclusive,842,357,2,4,,,,DISCHARGED -843,2023-01-08,32942.42402901524,395,Elective,2023-01-23,Normal,843,459,1,10,,,,DISCHARGED -843,2023-06-03,21495.738111991657,310,Emergency,,Abnormal,8227,407,1,28,,,,OPEN -843,2020-02-29,21584.28724643771,249,Emergency,2020-03-04,Normal,8643,155,4,12,,,,DISCHARGED -844,2022-11-26,43613.48843229857,315,Emergency,2022-12-04,Inconclusive,844,372,3,14,,,,DISCHARGED -845,2023-02-20,19989.16791824609,449,Urgent,2023-03-14,Abnormal,845,7,0,5,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -846,2022-04-05,45853.988019674616,401,Urgent,2022-04-21,Normal,846,121,0,15,,,,DISCHARGED -847,2019-01-21,20230.445508408902,473,Elective,2019-02-06,Normal,847,347,2,14,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -848,2022-12-31,33070.80494268545,265,Elective,2023-01-18,Normal,848,163,4,10,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -849,2020-09-01,26105.14343227611,185,Emergency,2020-09-11,Normal,849,89,2,19,,,,DISCHARGED -850,2020-12-30,19835.730466945995,289,Elective,2021-01-03,Normal,850,135,0,1,,,,DISCHARGED -851,2019-08-09,36906.24048364317,417,Urgent,2019-08-28,Abnormal,851,185,1,27,,,,DISCHARGED -852,2022-04-30,30810.30608675105,429,Emergency,2022-05-25,Normal,852,315,3,27,,,,DISCHARGED -853,2019-10-04,9766.823867104662,133,Emergency,2019-10-12,Abnormal,853,177,4,29,,,,DISCHARGED -854,2019-05-18,36594.910736133126,453,Elective,2019-05-27,Normal,854,27,1,1,,,,DISCHARGED -855,2021-11-05,30615.00910167529,332,Emergency,2021-12-05,Inconclusive,855,219,3,11,,,,DISCHARGED -856,2020-04-08,42871.49405310083,374,Elective,2020-05-01,Normal,856,356,4,15,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -857,2022-05-19,43266.509988288686,435,Elective,2022-06-06,Abnormal,857,40,4,18,,,,DISCHARGED -859,2023-05-03,14317.380703337723,186,Urgent,2023-05-23,Normal,859,227,0,1,,,,DISCHARGED -860,2023-09-09,43128.45216346048,495,Emergency,2023-10-01,Normal,860,191,1,16,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -861,2019-09-18,43281.86685234736,452,Urgent,2019-10-05,Abnormal,861,410,4,13,,,,DISCHARGED -862,2021-03-12,22223.745822063414,118,Emergency,2021-03-29,Inconclusive,862,446,4,23,,,,DISCHARGED -863,2021-06-06,16817.144711016495,228,Emergency,2021-07-06,Abnormal,863,144,3,27,,,,DISCHARGED -863,2018-11-21,20367.622838115523,287,Urgent,2018-12-04,Inconclusive,1257,200,0,15,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -863,2020-04-07,2378.1039321950675,473,Emergency,2020-04-13,Inconclusive,1497,416,2,4,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -863,2022-02-24,12041.40099992239,117,Elective,2022-03-22,Abnormal,3367,211,0,9,,,,DISCHARGED -864,2021-09-05,34122.433884829334,120,Emergency,2021-09-19,Normal,864,460,2,16,,,,DISCHARGED -865,2022-07-07,25511.207481400503,348,Elective,2022-08-05,Inconclusive,865,219,1,12,,,,DISCHARGED -866,2020-09-05,37736.47265419371,232,Urgent,2020-10-01,Inconclusive,866,239,1,15,,,,DISCHARGED -867,2019-02-16,32010.07869799625,258,Urgent,2019-03-06,Inconclusive,867,412,4,8,,,,DISCHARGED -868,2022-04-07,42041.61274595943,455,Urgent,2022-04-14,Normal,868,396,1,23,,,,DISCHARGED -869,2023-06-22,37221.71893792978,382,Urgent,2023-07-15,Inconclusive,869,45,4,3,,,,DISCHARGED -869,2020-11-25,19218.478593176973,262,Urgent,2020-12-05,Normal,961,34,0,23,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -870,2021-04-23,25159.923894608342,233,Elective,2021-05-22,Abnormal,870,252,1,28,,,,DISCHARGED -871,2020-04-06,27165.33484701917,215,Emergency,2020-04-26,Normal,871,389,0,27,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -872,2023-03-31,49401.13272733071,263,Emergency,2023-04-02,Inconclusive,872,81,0,28,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -873,2021-07-04,24982.046872796636,475,Urgent,2021-07-10,Normal,873,370,1,25,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -874,2023-09-24,4861.598349460129,483,Emergency,2023-10-14,Normal,874,255,0,15,,,,DISCHARGED -875,2019-01-14,39645.26780450172,277,Emergency,2019-02-07,Normal,875,196,1,22,,,,DISCHARGED -875,2020-10-06,7811.272407607505,424,Urgent,2020-10-20,Abnormal,3345,302,1,26,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -876,2021-03-13,10776.4006344024,430,Emergency,2021-04-07,Normal,876,408,1,10,,,,DISCHARGED -877,2022-12-02,15731.156626312792,340,Emergency,2022-12-07,Normal,877,449,2,6,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -878,2019-10-02,38598.05972204022,120,Emergency,2019-10-10,Inconclusive,878,9,0,16,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -879,2023-06-03,41324.84835503696,132,Urgent,2023-06-07,Normal,879,311,3,21,,,,DISCHARGED -880,2021-11-25,24578.1849883086,437,Emergency,2021-12-16,Normal,880,285,1,12,,,,DISCHARGED -880,2021-12-21,38942.641928085446,322,Emergency,2022-01-03,Inconclusive,5393,241,0,3,,,,DISCHARGED -881,2020-05-05,36750.88798882281,457,Elective,2020-06-03,Inconclusive,881,250,4,13,,,,DISCHARGED -882,2023-10-02,9305.999962141696,332,Elective,,Normal,882,364,1,9,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,OPEN -883,2018-11-14,39472.19375652928,337,Elective,2018-11-25,Inconclusive,883,4,1,9,,,,DISCHARGED -884,2021-07-01,21707.77774066421,380,Urgent,2021-07-27,Abnormal,884,118,3,9,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -885,2021-06-15,23549.230665817217,398,Urgent,2021-07-06,Abnormal,885,288,2,26,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -886,2023-08-18,17745.867166260814,312,Emergency,2023-08-20,Inconclusive,886,373,2,11,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -887,2019-11-01,36443.7655273581,497,Emergency,2019-11-06,Normal,887,64,1,1,,,,DISCHARGED -888,2021-04-17,30101.679007294177,269,Urgent,2021-05-03,Inconclusive,888,145,0,25,,,,DISCHARGED -889,2019-06-26,25974.55282800295,317,Elective,2019-07-05,Inconclusive,889,223,4,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -890,2023-10-10,8381.32835687946,175,Urgent,2023-10-26,Normal,890,238,4,8,,,,DISCHARGED -891,2022-01-04,1897.45540969458,247,Elective,2022-01-21,Normal,891,176,0,28,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -892,2019-04-29,10160.57927857945,236,Emergency,2019-05-24,Inconclusive,892,266,1,4,,,,DISCHARGED -893,2020-04-30,16774.2745145328,255,Emergency,2020-05-14,Inconclusive,893,340,4,7,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -894,2022-11-02,20293.670726972658,247,Urgent,2022-11-19,Abnormal,894,281,2,20,,,,DISCHARGED -895,2019-10-05,5223.958945218635,143,Emergency,2019-10-25,Abnormal,895,62,0,13,,,,DISCHARGED -895,2019-11-28,25172.36391680856,299,Urgent,2019-12-25,Inconclusive,8812,216,3,6,,,,DISCHARGED -896,2021-09-30,39148.113565753534,417,Urgent,2021-10-05,Inconclusive,896,341,1,6,,,,DISCHARGED -897,2021-08-28,31040.18118413378,291,Urgent,2021-09-01,Normal,897,314,0,8,,,,DISCHARGED -898,2020-01-02,18793.673611654864,184,Urgent,2020-01-09,Normal,898,282,4,2,,,,DISCHARGED -899,2020-09-25,26851.736552517534,233,Urgent,2020-10-21,Inconclusive,899,176,1,13,,,,DISCHARGED -900,2020-08-09,16011.956739589308,253,Emergency,2020-08-23,Inconclusive,900,460,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -901,2022-01-19,30711.59869089186,370,Elective,2022-02-17,Abnormal,901,416,1,17,,,,DISCHARGED -902,2020-02-03,39174.53901940646,434,Urgent,2020-02-28,Abnormal,902,97,1,11,,,,DISCHARGED -903,2019-12-14,47813.995206288746,382,Elective,2019-12-29,Inconclusive,903,104,2,21,,,,DISCHARGED -904,2023-01-28,32125.16340235134,170,Urgent,2023-02-21,Abnormal,904,98,2,13,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -905,2022-05-23,5244.507979694919,463,Elective,2022-06-13,Inconclusive,905,384,1,25,,,,DISCHARGED -906,2023-07-16,35954.78656801338,470,Urgent,,Normal,906,404,2,25,,,,OPEN -907,2019-12-30,33571.51657135808,178,Urgent,2020-01-07,Inconclusive,907,495,0,27,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -908,2019-09-20,27603.99620970626,139,Urgent,2019-10-19,Inconclusive,908,310,2,12,,,,DISCHARGED -909,2023-09-05,38216.1304996964,394,Emergency,,Inconclusive,909,5,2,13,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",OPEN -910,2021-10-12,14083.523234672955,443,Urgent,2021-11-03,Inconclusive,910,475,1,8,,,,DISCHARGED -911,2020-06-19,4865.551837410914,386,Elective,2020-06-28,Normal,911,464,0,18,,,,DISCHARGED -912,2023-09-04,41477.44480839696,102,Elective,2023-09-21,Normal,912,196,3,25,,,,DISCHARGED -913,2021-10-23,35830.27002097727,383,Emergency,2021-10-27,Abnormal,913,350,3,1,,,,DISCHARGED -914,2018-11-01,29563.97141899037,232,Urgent,2018-11-05,Normal,914,132,4,10,,,,DISCHARGED -915,2020-08-27,22616.997534497696,195,Emergency,2020-09-21,Abnormal,915,357,2,16,,,,DISCHARGED -916,2019-07-09,32362.671074725786,290,Emergency,2019-07-13,Normal,916,258,2,1,,,,DISCHARGED -917,2020-01-13,10669.98505124486,317,Urgent,2020-02-08,Abnormal,917,436,0,18,,,,DISCHARGED -918,2019-04-05,2936.565609257423,172,Emergency,2019-04-23,Abnormal,918,22,3,6,,,,DISCHARGED -919,2021-03-25,21498.0280853457,193,Emergency,2021-04-18,Abnormal,919,484,4,17,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -919,2021-06-28,38306.006058053696,338,Emergency,2021-07-14,Abnormal,5133,52,0,12,,,,DISCHARGED -920,2020-11-20,42322.8899013448,148,Urgent,2020-11-26,Inconclusive,920,164,2,4,,,,DISCHARGED -921,2023-03-27,3345.578641233508,467,Emergency,2023-04-13,Abnormal,921,201,3,17,,,,DISCHARGED -922,2019-12-05,49142.72430759861,230,Elective,2020-01-04,Inconclusive,922,457,4,22,,,,DISCHARGED -923,2022-01-24,10571.488648119745,316,Emergency,2022-02-04,Inconclusive,923,82,1,25,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -924,2019-09-03,45454.86612459802,146,Emergency,2019-09-14,Inconclusive,924,144,3,23,,,,DISCHARGED -925,2022-10-13,22547.49600417364,491,Emergency,2022-10-21,Inconclusive,925,84,4,23,,,,DISCHARGED -926,2020-01-18,28481.45552991867,216,Urgent,2020-02-17,Inconclusive,926,77,0,28,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -926,2019-08-18,48559.37637880373,160,Emergency,2019-08-19,Inconclusive,9844,456,1,15,,,,DISCHARGED -927,2019-03-05,22508.974337063948,453,Emergency,2019-03-07,Normal,927,365,4,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -928,2019-11-01,5767.5005933531065,126,Emergency,2019-11-04,Normal,928,0,4,7,,,,DISCHARGED -929,2023-07-10,19068.02251914365,269,Elective,2023-07-12,Abnormal,929,50,2,25,,,,DISCHARGED -930,2020-08-12,7878.617814509283,145,Emergency,2020-08-27,Normal,930,172,3,14,,,,DISCHARGED -931,2019-06-20,25286.452650626565,360,Emergency,2019-06-28,Normal,931,204,2,24,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -932,2019-09-14,46304.035954818726,230,Elective,2019-09-25,Normal,932,259,1,0,,,,DISCHARGED -933,2021-11-12,3552.858736293684,345,Elective,2021-11-30,Inconclusive,933,445,4,27,,,,DISCHARGED -935,2021-12-01,47788.8009909394,354,Urgent,2021-12-13,Normal,935,448,2,16,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -935,2019-12-21,11346.018564147746,315,Emergency,2020-01-10,Abnormal,2538,368,3,29,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -936,2023-02-05,11876.302287752913,399,Urgent,2023-02-11,Abnormal,936,487,1,14,,,,DISCHARGED -937,2021-03-20,40247.68976367777,401,Urgent,2021-03-24,Inconclusive,937,287,0,13,,,,DISCHARGED -938,2022-10-26,47776.28688258328,247,Emergency,2022-11-06,Normal,938,33,2,13,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -939,2021-12-03,28830.111661622268,293,Urgent,2021-12-27,Normal,939,347,1,9,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -940,2020-04-16,32979.14624516548,313,Elective,2020-05-06,Abnormal,940,94,0,1,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -941,2020-03-31,25359.56450450433,468,Emergency,2020-04-13,Inconclusive,941,71,2,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -941,2022-06-05,25953.25397070174,119,Urgent,2022-06-14,Abnormal,7095,38,1,5,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -942,2023-04-21,6651.500496220246,124,Urgent,2023-05-11,Normal,942,153,1,29,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -943,2022-07-25,43965.77871435453,470,Urgent,2022-08-14,Abnormal,943,249,2,16,,,,DISCHARGED -944,2022-04-29,9964.062953370332,375,Emergency,2022-04-30,Normal,944,161,1,4,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -945,2019-10-16,37502.40471040786,449,Emergency,2019-11-03,Abnormal,945,437,4,4,,,,DISCHARGED -946,2021-09-30,28440.88139197424,500,Elective,2021-10-26,Inconclusive,946,117,2,14,,,,DISCHARGED -947,2020-01-11,18225.08407736348,422,Urgent,2020-01-26,Abnormal,947,258,1,14,,,,DISCHARGED -948,2023-08-18,47902.6238348975,314,Emergency,,Normal,948,378,0,19,,,,OPEN -949,2022-08-21,11762.22363373898,237,Elective,2022-09-13,Abnormal,949,305,0,10,,,,DISCHARGED -950,2021-11-25,11272.087766056598,349,Urgent,2021-12-04,Normal,950,267,4,4,,,,DISCHARGED -951,2018-12-21,26589.43327035366,443,Emergency,2018-12-26,Normal,951,448,2,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -952,2021-03-29,44765.71675128714,437,Elective,2021-04-02,Abnormal,952,53,1,0,,,,DISCHARGED -953,2021-06-09,30217.25113277229,295,Emergency,2021-06-28,Normal,953,235,1,10,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -954,2021-11-25,12617.485301244877,408,Emergency,2021-12-18,Abnormal,954,388,0,10,,,,DISCHARGED -955,2020-12-06,42052.52487859687,308,Elective,2021-01-05,Normal,955,477,4,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -956,2020-12-22,49125.15774544177,430,Elective,2021-01-02,Inconclusive,956,221,0,22,,,,DISCHARGED -956,2021-05-17,22623.172376866787,484,Urgent,2021-05-20,Inconclusive,3188,250,0,7,,,,DISCHARGED -957,2020-04-01,17704.741580046102,127,Emergency,2020-04-22,Abnormal,957,312,4,1,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -958,2022-08-25,39459.43626937456,188,Emergency,2022-09-17,Abnormal,958,400,2,14,,,,DISCHARGED -959,2021-06-01,6897.100320164001,164,Emergency,2021-06-24,Abnormal,959,111,1,22,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -960,2021-10-23,33283.28469600307,257,Elective,2021-11-06,Normal,960,254,2,21,,,,DISCHARGED -962,2019-06-15,14267.909879475064,159,Urgent,2019-07-04,Normal,962,302,3,8,,,,DISCHARGED -963,2019-03-19,11289.8475918743,481,Urgent,2019-04-03,Normal,963,406,3,14,,,,DISCHARGED -964,2022-09-30,49565.02133019294,125,Urgent,2022-10-18,Abnormal,964,206,3,7,,,,DISCHARGED -965,2020-10-22,9932.191489694784,135,Emergency,2020-11-07,Inconclusive,965,228,4,29,,,,DISCHARGED -966,2020-10-17,2737.6761092319102,370,Urgent,2020-10-23,Normal,966,340,0,15,,,,DISCHARGED -967,2023-05-18,39737.3294795954,144,Emergency,2023-06-03,Abnormal,967,397,2,26,Frequent headaches and light sensitivity,"Identify triggers and recommend lifestyle changes, prescribe pain relievers, and explore preventive medications.","G43.9 - Migraine, unspecified",DISCHARGED -968,2019-07-13,32465.12851802168,500,Urgent,2019-07-26,Normal,968,65,1,13,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -969,2023-08-01,49666.60565020357,251,Emergency,2023-08-11,Abnormal,969,74,3,14,,,,DISCHARGED -970,2021-10-12,3975.074524601444,310,Emergency,2021-11-03,Normal,970,434,2,19,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -971,2022-09-29,35582.755821957675,473,Emergency,2022-10-26,Abnormal,971,102,3,29,,,,DISCHARGED -971,2023-06-17,43440.69354324734,158,Elective,2023-06-22,Normal,5309,421,3,12,,,,DISCHARGED -972,2023-07-03,22722.00032027516,232,Elective,,Inconclusive,972,191,1,8,,,,OPEN -973,2021-07-19,37662.66962013407,308,Urgent,2021-08-01,Abnormal,973,251,4,0,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -974,2021-04-10,10035.332962985063,489,Emergency,2021-04-27,Normal,974,225,0,26,,,,DISCHARGED -975,2020-07-12,26153.389223171765,199,Elective,2020-07-26,Normal,975,293,4,5,,,,DISCHARGED -976,2022-01-31,3882.070120919608,284,Elective,2022-02-02,Abnormal,976,305,2,7,,,,DISCHARGED -977,2020-03-07,39221.77786876479,304,Elective,2020-03-20,Abnormal,977,97,4,26,,,,DISCHARGED -978,2023-09-28,20707.31963302498,261,Elective,2023-10-08,Normal,978,337,2,26,,,,DISCHARGED -979,2020-02-02,47443.9975967796,210,Elective,2020-02-26,Normal,979,285,2,19,,,,DISCHARGED -980,2022-08-15,34241.75892783715,262,Urgent,2022-09-02,Normal,980,334,0,17,,,,DISCHARGED -981,2018-11-17,31097.836432076627,285,Emergency,2018-12-08,Abnormal,981,346,1,26,,,,DISCHARGED -982,2018-12-04,18290.27653676672,141,Urgent,2018-12-15,Abnormal,982,434,0,17,,,,DISCHARGED -983,2020-10-12,42685.20052126965,333,Urgent,2020-10-22,Normal,983,446,4,25,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -984,2021-11-11,16471.376988443008,413,Urgent,2021-12-04,Normal,984,481,2,16,,,,DISCHARGED -985,2019-10-25,6982.392907502469,157,Emergency,2019-11-08,Abnormal,985,307,3,20,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -986,2021-10-07,13650.48758976079,465,Emergency,2021-11-03,Inconclusive,986,248,3,15,,,,DISCHARGED -987,2019-06-04,37771.75899331921,169,Elective,2019-06-12,Normal,987,165,2,12,,,,DISCHARGED -988,2019-03-02,44947.469977418456,155,Urgent,2019-03-17,Abnormal,988,480,0,21,,,,DISCHARGED -989,2019-10-13,49910.077615104696,152,Elective,2019-10-24,Inconclusive,989,471,1,3,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -990,2021-01-09,36183.54547596295,343,Urgent,2021-01-24,Inconclusive,990,334,0,3,,,,DISCHARGED -990,2020-03-24,25848.39479521417,428,Elective,2020-04-17,Abnormal,6426,29,2,20,,,,DISCHARGED -991,2020-11-22,12248.576952205853,178,Urgent,2020-11-27,Inconclusive,991,246,2,13,,,,DISCHARGED -992,2019-04-12,6852.501054774294,159,Elective,2019-04-22,Normal,992,105,1,4,,,,DISCHARGED -993,2019-07-24,13393.83069877322,387,Urgent,2019-08-19,Normal,993,50,4,15,,,,DISCHARGED -994,2020-02-04,47549.05086457916,418,Emergency,2020-02-06,Inconclusive,994,80,4,13,,,,DISCHARGED -995,2020-02-02,21293.018508273275,487,Urgent,2020-02-22,Abnormal,995,132,1,29,,,,DISCHARGED -996,2023-04-22,46888.66110954936,266,Urgent,2023-05-20,Normal,996,284,4,13,,,,DISCHARGED -997,2019-10-08,46323.269465520345,142,Emergency,2019-10-18,Abnormal,997,387,3,13,,,,DISCHARGED -998,2021-01-12,47792.23068731463,338,Urgent,2021-02-02,Abnormal,998,137,4,24,,,,DISCHARGED -999,2022-06-14,16530.72821577357,147,Elective,2022-06-27,Inconclusive,999,183,4,23,,,,DISCHARGED -1000,2022-10-31,16003.554363360294,448,Urgent,2022-11-04,Inconclusive,1000,400,4,24,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -1001,2021-03-01,38471.52971748169,123,Urgent,2021-03-16,Normal,1001,329,3,28,,,,DISCHARGED -1002,2020-07-17,19121.37769183429,391,Urgent,2020-08-08,Normal,1002,272,4,13,,,,DISCHARGED -1002,2021-04-17,46258.71307876149,373,Urgent,2021-04-27,Normal,7788,339,3,18,,,,DISCHARGED -1002,2019-12-29,24471.780221569203,453,Urgent,2020-01-13,Inconclusive,7956,471,1,29,,,,DISCHARGED -1003,2020-08-16,17214.85030012984,249,Emergency,2020-09-07,Inconclusive,1003,68,0,2,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1003,2022-11-07,39549.44744884395,185,Urgent,2022-11-11,Inconclusive,9728,33,1,16,,,,DISCHARGED -1004,2021-06-13,30395.38016403744,323,Elective,2021-06-16,Normal,1004,261,0,13,,,,DISCHARGED -1005,2023-03-24,12583.37724666549,138,Urgent,,Normal,1005,52,1,9,,,,OPEN -1005,2021-04-02,24645.5888707156,362,Urgent,2021-04-11,Normal,9741,449,0,12,,,,DISCHARGED -1006,2019-11-04,29672.584690197866,344,Emergency,2019-12-03,Abnormal,1006,204,0,21,,,,DISCHARGED -1007,2022-03-19,29093.794921313485,456,Urgent,2022-04-09,Normal,1007,125,2,3,,,,DISCHARGED -1008,2021-10-01,5327.951953059953,106,Elective,2021-10-03,Abnormal,1008,234,0,10,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1009,2019-11-19,30883.54910563144,179,Urgent,2019-11-20,Inconclusive,1009,42,0,14,,,,DISCHARGED -1010,2020-02-29,44183.98783342684,442,Emergency,2020-03-29,Inconclusive,1010,239,2,14,,,,DISCHARGED -1011,2019-09-06,32279.41242028469,204,Urgent,2019-10-02,Normal,1011,458,4,29,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1012,2019-03-08,14443.89639254573,464,Urgent,2019-03-11,Inconclusive,1012,370,4,23,,,,DISCHARGED -1013,2019-03-03,46044.10392192208,283,Elective,2019-03-28,Normal,1013,110,2,1,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1014,2020-08-10,38551.13450179261,230,Elective,2020-08-21,Inconclusive,1014,248,3,10,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1015,2023-05-10,37858.7038223006,469,Urgent,2023-05-30,Normal,1015,150,0,1,,,,DISCHARGED -1016,2022-04-01,15579.67656848146,462,Urgent,2022-04-06,Inconclusive,1016,182,0,22,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1017,2022-08-14,1427.2402451149244,331,Elective,2022-08-23,Inconclusive,1017,335,2,28,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1018,2023-08-11,13150.658308907794,451,Elective,2023-08-14,Normal,1018,94,2,4,,,,DISCHARGED -1019,2022-11-26,12276.789807472896,156,Urgent,2022-12-14,Inconclusive,1019,458,3,12,,,,DISCHARGED -1020,2023-08-21,13066.624159091592,174,Emergency,,Normal,1020,373,4,0,,,,OPEN -1021,2023-01-24,45391.450019714095,368,Urgent,,Normal,1021,399,1,6,,,,OPEN -1022,2023-02-06,13280.426895480943,462,Elective,2023-02-17,Abnormal,1022,7,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -1023,2021-09-20,18317.992713206717,467,Urgent,2021-10-14,Abnormal,1023,387,0,9,,,,DISCHARGED -1024,2023-06-03,44578.6597471159,253,Urgent,2023-06-26,Normal,1024,359,2,5,,,,DISCHARGED -1025,2023-01-01,29716.842497167323,230,Elective,,Normal,1025,387,3,19,,,,OPEN -1026,2020-11-20,44421.37049001882,153,Urgent,2020-11-21,Abnormal,1026,183,4,11,,,,DISCHARGED -1027,2023-06-12,20528.41951121232,400,Urgent,,Normal,1027,280,3,12,,,,OPEN -1028,2021-10-02,25161.661687536573,136,Emergency,2021-10-23,Abnormal,1028,194,4,23,,,,DISCHARGED -1028,2020-01-23,27722.667560162197,299,Elective,2020-02-09,Abnormal,5837,351,0,27,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1028,2019-05-04,8364.857568959138,375,Elective,2019-05-14,Inconclusive,6053,194,1,10,,,,DISCHARGED -1029,2019-01-20,20452.85316313485,431,Emergency,2019-02-16,Normal,1029,154,3,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -1030,2019-08-30,4091.350555563202,257,Emergency,2019-09-11,Abnormal,1030,92,3,1,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -1030,2023-07-21,14486.055387009932,281,Urgent,,Normal,4099,159,1,15,,,,OPEN -1030,2018-12-03,37918.21675397432,112,Urgent,2018-12-13,Normal,9281,433,3,1,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1031,2023-01-25,38877.33284293997,366,Urgent,,Normal,1031,60,3,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -1032,2019-01-01,24469.18264098984,222,Elective,2019-01-27,Normal,1032,121,4,5,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -1033,2021-08-24,1776.283726777765,482,Elective,2021-09-06,Abnormal,1033,50,4,0,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -1034,2021-01-22,10664.308196736294,440,Emergency,2021-02-19,Normal,1034,402,1,10,,,,DISCHARGED -1035,2022-07-17,2226.816011507629,223,Emergency,2022-08-13,Abnormal,1035,276,0,17,,,,DISCHARGED -1036,2021-10-17,44774.41192264778,404,Elective,2021-11-06,Normal,1036,4,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1037,2021-09-01,23738.851128162096,468,Urgent,2021-09-05,Abnormal,1037,465,0,17,,,,DISCHARGED -1038,2019-01-22,36909.15835854595,262,Emergency,2019-01-29,Inconclusive,1038,91,1,29,,,,DISCHARGED -1039,2019-04-07,9804.144829260367,157,Elective,2019-05-05,Normal,1039,169,1,27,,,,DISCHARGED -1039,2021-10-16,17558.771795464298,290,Urgent,2021-10-17,Abnormal,3293,316,4,0,,,,DISCHARGED -1040,2023-07-22,11277.168487143856,395,Elective,2023-07-26,Inconclusive,1040,21,3,18,,,,DISCHARGED -1041,2020-02-11,38109.40028920199,344,Emergency,2020-02-13,Normal,1041,404,2,15,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1042,2022-03-16,37537.0934864418,115,Emergency,2022-04-01,Abnormal,1042,325,1,25,,,,DISCHARGED -1043,2022-10-01,32755.08364614499,498,Emergency,2022-10-05,Normal,1043,0,3,6,,,,DISCHARGED -1044,2023-10-09,12639.613943913071,129,Urgent,,Inconclusive,1044,132,0,14,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -1045,2019-09-21,9533.901075690825,385,Elective,2019-09-23,Inconclusive,1045,232,4,28,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1046,2021-09-16,32026.06579071749,480,Elective,2021-10-06,Abnormal,1046,11,0,0,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -1047,2019-11-15,45667.404262042925,187,Emergency,2019-11-27,Inconclusive,1047,345,1,22,,,,DISCHARGED -1048,2020-05-19,49828.86971328996,451,Urgent,2020-06-09,Normal,1048,45,1,20,,,,DISCHARGED -1049,2023-08-14,29466.305618018185,104,Urgent,2023-08-20,Normal,1049,33,0,8,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1050,2021-08-16,13253.460095166196,106,Elective,2021-09-12,Normal,1050,432,1,1,,,,DISCHARGED -1052,2022-06-20,13725.585572467988,218,Emergency,2022-06-28,Normal,1052,77,3,16,,,,DISCHARGED -1053,2020-12-30,47970.554912473664,389,Urgent,2021-01-25,Abnormal,1053,217,1,24,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1054,2020-09-28,16874.34385786162,149,Emergency,2020-10-10,Inconclusive,1054,300,4,23,,,,DISCHARGED -1055,2022-11-23,3980.950877472487,472,Emergency,2022-12-19,Abnormal,1055,410,3,9,,,,DISCHARGED -1056,2023-06-13,30279.07586104645,419,Urgent,,Abnormal,1056,72,2,5,,,,OPEN -1057,2021-11-21,48363.46949168556,317,Emergency,2021-11-25,Abnormal,1057,281,1,4,,,,DISCHARGED -1058,2021-08-30,9142.466559530152,437,Emergency,2021-09-04,Abnormal,1058,248,1,7,,,,DISCHARGED -1059,2021-06-15,25761.41803889061,282,Urgent,2021-06-26,Abnormal,1059,46,4,7,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1060,2019-02-26,10540.626324518766,319,Urgent,2019-02-27,Abnormal,1060,120,4,29,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1061,2023-07-22,30243.63012895959,449,Elective,2023-08-08,Normal,1061,213,0,4,,,,DISCHARGED -1062,2023-05-04,8156.690305870477,410,Urgent,,Abnormal,1062,238,0,11,,,,OPEN -1063,2021-12-25,24424.22559421633,264,Emergency,2022-01-17,Abnormal,1063,55,0,6,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -1064,2018-12-22,35172.5191017441,343,Urgent,2019-01-02,Abnormal,1064,349,4,12,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1065,2023-02-10,41657.17672978149,347,Urgent,2023-03-01,Inconclusive,1065,106,0,12,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1066,2020-08-17,44920.1547233997,467,Elective,2020-09-14,Abnormal,1066,318,0,16,,,,DISCHARGED -1067,2020-03-11,32077.001406178097,198,Elective,2020-04-06,Inconclusive,1067,47,2,3,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1068,2019-09-26,25381.415091573832,396,Elective,2019-10-20,Abnormal,1068,60,0,17,,,,DISCHARGED -1068,2021-07-19,28628.99097100425,407,Urgent,2021-07-26,Abnormal,3705,336,1,9,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1069,2021-11-04,46898.20096350798,445,Elective,2021-11-23,Inconclusive,1069,25,4,2,,,,DISCHARGED -1070,2020-02-07,46575.69231142742,249,Emergency,2020-03-02,Normal,1070,291,3,11,,,,DISCHARGED -1071,2020-03-28,43951.99192963962,151,Urgent,2020-03-29,Inconclusive,1071,256,2,0,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -1071,2022-08-09,23904.01991837312,299,Urgent,2022-08-31,Normal,2080,7,4,26,,,,DISCHARGED -1072,2022-02-10,46193.03652568125,290,Elective,2022-02-16,Abnormal,1072,112,4,10,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -1073,2022-01-06,37450.27203193296,348,Elective,2022-01-26,Normal,1073,354,1,17,,,,DISCHARGED -1074,2019-03-06,14720.929669349263,462,Emergency,2019-03-14,Inconclusive,1074,252,0,12,,,,DISCHARGED -1075,2023-04-18,8632.347576091594,482,Emergency,,Abnormal,1075,179,1,16,,,,OPEN -1076,2020-07-24,36803.18173741968,182,Urgent,2020-07-31,Abnormal,1076,206,0,7,,,,DISCHARGED -1077,2020-10-01,47733.26472412944,369,Emergency,2020-10-14,Normal,1077,302,0,19,,,,DISCHARGED -1077,2020-04-03,22908.642678849417,292,Urgent,2020-04-14,Normal,2343,126,4,18,,,,DISCHARGED -1077,2022-02-12,29685.310988178346,418,Urgent,2022-02-13,Inconclusive,9571,55,0,16,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -1078,2019-07-11,25099.690427998063,176,Elective,2019-08-02,Abnormal,1078,213,2,1,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1079,2023-10-19,12447.996620982372,202,Elective,,Inconclusive,1079,13,2,2,,,,OPEN -1080,2019-05-16,49267.52595702954,344,Emergency,2019-06-03,Abnormal,1080,473,2,2,,,,DISCHARGED -1081,2023-05-22,27719.14087727544,452,Urgent,,Abnormal,1081,27,4,5,,,,OPEN -1082,2022-03-15,33080.820074953386,455,Urgent,2022-03-19,Normal,1082,470,1,9,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -1083,2019-05-27,48609.473182639726,283,Emergency,2019-06-08,Normal,1083,77,3,23,,,,DISCHARGED -1085,2019-06-13,23958.47661600233,129,Emergency,2019-06-20,Abnormal,1085,215,0,21,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -1086,2020-01-07,19382.086973287744,134,Urgent,2020-01-28,Inconclusive,1086,385,3,17,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1087,2022-11-04,14226.518027129663,472,Elective,2022-11-13,Inconclusive,1087,364,1,17,,,,DISCHARGED -1088,2022-11-03,26674.5612548506,317,Urgent,2022-11-19,Abnormal,1088,153,1,13,,,,DISCHARGED -1089,2023-04-16,31470.56944624252,392,Elective,2023-05-08,Abnormal,1089,13,4,15,,,,DISCHARGED -1090,2021-06-04,45081.410725158734,287,Elective,2021-06-15,Inconclusive,1090,186,2,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1091,2019-08-28,40959.45695498407,313,Emergency,2019-09-14,Abnormal,1091,311,2,0,,,,DISCHARGED -1092,2022-11-28,24230.372278766685,307,Urgent,2022-12-11,Inconclusive,1092,370,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -1093,2018-11-05,16694.51505391854,281,Emergency,2018-12-03,Abnormal,1093,6,4,22,,,,DISCHARGED -1094,2021-05-10,31626.636262441792,149,Elective,2021-05-24,Normal,1094,2,4,24,,,,DISCHARGED -1095,2020-12-25,12335.809240705576,125,Emergency,2021-01-24,Abnormal,1095,110,0,4,,,,DISCHARGED -1096,2020-10-05,2987.5399188342394,382,Emergency,2020-10-17,Inconclusive,1096,406,2,26,,,,DISCHARGED -1097,2018-12-05,20832.09607910485,255,Urgent,2018-12-06,Inconclusive,1097,237,1,0,,,,DISCHARGED -1098,2019-01-02,39624.18294525288,396,Urgent,2019-01-07,Inconclusive,1098,362,3,20,,,,DISCHARGED -1099,2021-11-12,36578.7696378829,110,Elective,2021-11-18,Inconclusive,1099,238,2,26,,,,DISCHARGED -1099,2020-06-07,36414.4418703498,308,Elective,2020-07-01,Normal,2992,492,0,16,,,,DISCHARGED -1099,2020-01-19,41992.04300672076,363,Emergency,2020-01-26,Inconclusive,8021,273,4,9,,,,DISCHARGED -1099,2021-10-29,28768.908112164,410,Elective,2021-11-01,Inconclusive,9009,293,1,11,,,,DISCHARGED -1100,2023-04-10,34658.16021565173,138,Elective,2023-04-17,Abnormal,1100,226,2,24,,,,DISCHARGED -1101,2019-03-24,7244.795094079022,373,Urgent,2019-04-10,Inconclusive,1101,370,3,19,,,,DISCHARGED -1102,2021-12-09,39957.22771485021,364,Elective,2021-12-23,Inconclusive,1102,14,0,24,,,,DISCHARGED -1103,2023-07-10,21935.7261253434,422,Emergency,,Inconclusive,1103,191,0,1,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -1104,2021-01-12,49745.81197663535,301,Elective,2021-02-08,Normal,1104,472,2,22,,,,DISCHARGED -1105,2023-01-15,31022.66273851671,383,Urgent,2023-01-21,Inconclusive,1105,118,3,15,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1105,2021-03-06,11184.769841216035,394,Emergency,2021-03-28,Inconclusive,4982,484,0,14,,,,DISCHARGED -1106,2021-11-22,2501.263990397233,207,Elective,2021-11-25,Abnormal,1106,27,1,27,,,,DISCHARGED -1107,2021-01-30,7624.264538383552,188,Elective,2021-02-02,Abnormal,1107,201,0,12,,,,DISCHARGED -1108,2022-08-13,21308.016492603358,154,Elective,2022-08-20,Inconclusive,1108,38,3,17,,,,DISCHARGED -1109,2021-01-16,29610.20697209234,173,Emergency,2021-01-19,Normal,1109,440,4,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1110,2020-03-13,12858.329680820654,358,Elective,2020-03-19,Inconclusive,1110,272,4,19,,,,DISCHARGED -1111,2020-03-03,29766.39782791405,371,Elective,2020-03-09,Inconclusive,1111,230,2,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1112,2021-01-12,46610.82527232745,426,Urgent,2021-02-02,Inconclusive,1112,85,3,13,,,,DISCHARGED -1113,2021-07-30,32756.384594698724,358,Elective,2021-08-24,Inconclusive,1113,473,0,17,,,,DISCHARGED -1114,2020-05-14,12185.838007240294,491,Elective,2020-05-27,Normal,1114,125,0,1,,,,DISCHARGED -1115,2019-08-29,11914.798281312733,494,Elective,2019-09-07,Abnormal,1115,299,4,1,,,,DISCHARGED -1115,2023-09-01,29792.12675672413,205,Urgent,2023-09-29,Inconclusive,8445,24,4,2,,,,DISCHARGED -1116,2020-02-10,29644.047440000428,177,Urgent,2020-03-11,Inconclusive,1116,144,1,4,,,,DISCHARGED -1117,2022-03-18,25598.76277485741,358,Emergency,2022-04-04,Normal,1117,12,4,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1118,2019-01-17,18241.188379800034,289,Emergency,2019-02-06,Normal,1118,211,1,15,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1119,2020-02-07,9714.900553776992,192,Elective,2020-02-27,Inconclusive,1119,24,0,21,,,,DISCHARGED -1119,2021-04-02,16013.55212148886,411,Elective,2021-04-05,Normal,6296,67,1,14,,,,DISCHARGED -1120,2019-10-01,21455.183704736453,181,Elective,2019-10-30,Normal,1120,393,1,11,,,,DISCHARGED -1120,2023-06-04,25989.15288712472,219,Elective,2023-06-08,Abnormal,6509,66,2,29,,,,DISCHARGED -1121,2022-11-22,35612.34900248359,108,Emergency,2022-12-22,Abnormal,1121,232,4,8,,,,DISCHARGED -1122,2018-12-22,2747.307506827188,471,Urgent,2019-01-02,Abnormal,1122,108,1,25,,,,DISCHARGED -1123,2020-04-24,31326.014175631877,495,Elective,2020-04-29,Normal,1123,145,0,13,,,,DISCHARGED -1124,2019-01-13,16580.587544365553,277,Urgent,2019-01-28,Abnormal,1124,110,3,28,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -1125,2023-01-04,47289.62818797012,222,Elective,2023-01-25,Abnormal,1125,227,1,20,,,,DISCHARGED -1126,2021-12-15,48662.63619695368,445,Urgent,2022-01-14,Inconclusive,1126,110,4,15,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1127,2021-09-20,15534.477911539512,151,Elective,2021-10-14,Normal,1127,469,2,10,,,,DISCHARGED -1128,2019-03-23,40822.83972098153,158,Emergency,2019-03-28,Abnormal,1128,33,0,5,,,,DISCHARGED -1129,2019-01-29,13911.047059608863,284,Emergency,2019-02-27,Inconclusive,1129,110,2,9,,,,DISCHARGED -1130,2022-07-27,14043.472437604536,271,Urgent,2022-07-28,Abnormal,1130,263,3,27,,,,DISCHARGED -1131,2023-04-14,33590.344357905844,479,Elective,2023-05-13,Abnormal,1131,423,1,7,,,,DISCHARGED -1132,2022-10-01,1431.34717755332,320,Emergency,2022-10-24,Normal,1132,368,1,15,,,,DISCHARGED -1133,2019-05-14,11831.63541715834,260,Elective,2019-06-01,Abnormal,1133,235,4,2,,,,DISCHARGED -1134,2023-02-09,17234.199011547676,225,Urgent,2023-02-11,Normal,1134,82,1,1,,,,DISCHARGED -1135,2019-05-02,25703.085582405663,253,Emergency,2019-05-14,Normal,1135,41,0,15,,,,DISCHARGED -1136,2022-07-28,8755.079539022758,221,Urgent,2022-07-29,Normal,1136,424,3,18,,,,DISCHARGED -1137,2022-02-05,32719.902818172577,460,Elective,2022-02-27,Normal,1137,100,2,29,,,,DISCHARGED -1138,2022-06-21,37487.55650359803,224,Elective,2022-07-19,Inconclusive,1138,5,3,8,,,,DISCHARGED -1139,2022-05-30,14141.449775284633,306,Elective,2022-06-19,Inconclusive,1139,179,1,15,,,,DISCHARGED -1140,2020-03-18,4218.245750381788,414,Elective,2020-04-08,Abnormal,1140,281,2,21,,,,DISCHARGED -1141,2023-05-16,49113.45390922478,350,Emergency,2023-06-14,Inconclusive,1141,319,4,25,,,,DISCHARGED -1142,2021-06-02,45128.64225953589,157,Elective,2021-06-18,Abnormal,1142,225,3,27,,,,DISCHARGED -1142,2018-12-17,38191.59485354582,461,Urgent,2019-01-04,Abnormal,3581,442,2,3,,,,DISCHARGED -1143,2020-09-18,4217.629177861016,312,Urgent,2020-10-12,Inconclusive,1143,439,2,9,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1144,2019-05-05,17346.7018010093,130,Urgent,2019-05-26,Inconclusive,1144,314,2,18,,,,DISCHARGED -1145,2023-01-23,2504.6657409856825,345,Emergency,2023-02-06,Inconclusive,1145,364,0,12,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -1146,2021-06-06,36225.04466984435,456,Urgent,2021-06-10,Normal,1146,453,3,17,,,,DISCHARGED -1147,2021-10-04,18013.00440749451,393,Urgent,2021-10-25,Abnormal,1147,228,2,14,,,,DISCHARGED -1148,2018-12-01,1776.0583134019848,119,Elective,2018-12-18,Normal,1148,376,3,29,,,,DISCHARGED -1149,2020-06-19,20608.23506557948,358,Urgent,2020-07-10,Abnormal,1149,288,2,3,,,,DISCHARGED -1150,2023-02-02,4057.9869338217113,436,Emergency,2023-02-23,Normal,1150,436,4,8,,,,DISCHARGED -1151,2022-08-09,33228.59669417098,326,Emergency,2022-08-27,Inconclusive,1151,149,4,3,,,,DISCHARGED -1152,2019-10-03,33962.70062173823,493,Urgent,2019-10-04,Normal,1152,276,4,28,,,,DISCHARGED -1153,2021-09-24,22699.013322843228,133,Urgent,2021-10-11,Abnormal,1153,197,1,15,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -1154,2023-10-15,30355.58692744464,465,Urgent,2023-10-25,Inconclusive,1154,69,2,27,,,,DISCHARGED -1155,2022-06-27,44116.83924275791,352,Urgent,2022-07-16,Normal,1155,111,1,20,,,,DISCHARGED -1156,2023-04-24,3801.621321126084,207,Emergency,,Abnormal,1156,3,3,14,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -1157,2018-11-20,20679.393198854417,462,Emergency,2018-11-27,Abnormal,1157,349,1,23,,,,DISCHARGED -1158,2020-03-30,15819.015810341827,336,Elective,2020-04-28,Normal,1158,330,3,1,,,,DISCHARGED -1159,2021-04-28,4586.164218134851,138,Emergency,2021-05-01,Abnormal,1159,445,3,27,,,,DISCHARGED -1160,2022-05-17,19260.10883332154,384,Urgent,2022-05-20,Inconclusive,1160,317,3,26,,,,DISCHARGED -1161,2023-07-03,31763.598391234664,390,Elective,,Normal,1161,349,1,13,,,,OPEN -1162,2019-01-20,26004.681469192798,144,Emergency,2019-02-03,Normal,1162,94,2,2,,,,DISCHARGED -1162,2023-08-26,25423.86355443825,194,Emergency,2023-09-15,Normal,4235,151,1,21,,,,DISCHARGED -1163,2021-04-04,20701.251937371657,424,Emergency,2021-04-07,Normal,1163,310,2,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1164,2019-07-09,43953.82009825218,344,Elective,2019-07-24,Normal,1164,136,2,22,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1165,2019-05-18,41091.16086805388,236,Emergency,2019-05-28,Abnormal,1165,246,3,3,,,,DISCHARGED -1166,2019-03-30,15338.723337240062,294,Elective,2019-04-15,Normal,1166,386,1,29,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1167,2023-06-24,33664.1720915906,406,Urgent,,Abnormal,1167,242,2,0,,,,OPEN -1168,2021-11-23,42956.34212029266,373,Elective,2021-12-10,Inconclusive,1168,30,4,22,,,,DISCHARGED -1168,2021-03-06,17879.64869722793,188,Elective,2021-03-09,Normal,6204,39,2,27,,,,DISCHARGED -1169,2020-03-04,43394.57614947869,158,Urgent,2020-03-23,Normal,1169,228,4,8,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1169,2022-02-09,26631.29428026452,406,Elective,2022-02-17,Inconclusive,8988,35,1,16,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -1170,2022-06-30,14654.938259882,446,Elective,2022-07-30,Normal,1170,407,1,13,,,,DISCHARGED -1171,2022-02-05,48526.46284013904,124,Emergency,2022-02-25,Normal,1171,222,1,16,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1172,2019-01-25,8209.733596227736,306,Urgent,2019-02-24,Inconclusive,1172,5,2,0,,,,DISCHARGED -1173,2022-09-28,38661.43020213124,393,Urgent,2022-10-08,Inconclusive,1173,321,0,9,,,,DISCHARGED -1174,2020-11-23,21983.59675363703,408,Emergency,2020-12-19,Abnormal,1174,467,2,22,,,,DISCHARGED -1175,2020-05-26,7438.198774811782,421,Urgent,2020-06-01,Normal,1175,219,2,15,,,,DISCHARGED -1176,2023-05-04,43050.38925496119,159,Elective,2023-05-27,Normal,1176,74,3,26,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -1177,2021-05-25,40800.26104034731,182,Urgent,2021-05-30,Inconclusive,1177,3,3,24,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1178,2023-06-29,23788.44155249145,171,Emergency,2023-07-08,Inconclusive,1178,334,2,18,,,,DISCHARGED -1179,2020-07-02,2329.716838181408,301,Elective,2020-07-14,Abnormal,1179,133,4,23,,,,DISCHARGED -1180,2019-06-05,18322.625425350245,371,Urgent,2019-06-10,Inconclusive,1180,117,3,24,,,,DISCHARGED -1181,2022-02-04,14597.652841025869,385,Emergency,2022-02-23,Normal,1181,368,2,2,,,,DISCHARGED -1182,2022-09-23,13170.475125703775,109,Elective,2022-10-12,Inconclusive,1182,93,0,27,,,,DISCHARGED -1183,2019-06-30,16353.425227300277,385,Elective,2019-07-12,Normal,1183,485,4,11,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -1184,2020-02-29,10161.065595707933,315,Emergency,2020-03-02,Abnormal,1184,434,1,2,,,,DISCHARGED -1184,2020-11-05,15045.975502391975,476,Emergency,2020-12-03,Normal,9030,61,2,14,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1185,2019-01-14,34922.38297085735,214,Elective,2019-02-11,Inconclusive,1185,440,2,16,,,,DISCHARGED -1186,2019-08-17,40388.82742198076,488,Elective,2019-08-31,Abnormal,1186,193,4,17,,,,DISCHARGED -1187,2021-05-17,29050.357961553014,204,Elective,2021-05-21,Normal,1187,334,3,6,,,,DISCHARGED -1188,2023-01-06,18485.08744282802,414,Elective,2023-01-12,Normal,1188,202,3,18,,,,DISCHARGED -1189,2020-05-08,40928.72103454187,220,Urgent,2020-05-21,Inconclusive,1189,391,3,6,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -1190,2023-10-27,16145.513989435149,206,Emergency,,Abnormal,1190,25,1,4,,,,OPEN -1191,2020-03-21,18997.964142483488,490,Elective,2020-04-18,Abnormal,1191,434,4,25,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1192,2020-08-25,33666.10151448994,399,Emergency,2020-09-03,Normal,1192,172,4,7,,,,DISCHARGED -1193,2021-11-19,21273.63857138902,394,Urgent,2021-12-06,Normal,1193,299,3,20,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -1194,2018-11-16,30593.594112356463,307,Elective,2018-11-25,Abnormal,1194,132,3,15,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -1195,2023-10-18,36081.012362831054,268,Emergency,2023-11-16,Normal,1195,325,0,15,,,,DISCHARGED -1196,2020-04-12,48155.10651485851,231,Urgent,2020-04-24,Normal,1196,409,0,18,,,,DISCHARGED -1197,2021-04-24,6082.668147055431,251,Emergency,2021-05-01,Inconclusive,1197,117,2,24,,,,DISCHARGED -1198,2023-03-14,18848.72342535029,386,Urgent,,Inconclusive,1198,323,2,14,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -1199,2020-03-08,33087.17146681565,470,Elective,2020-03-29,Abnormal,1199,274,4,6,,,,DISCHARGED -1199,2023-03-25,33622.46196643783,390,Urgent,2023-03-26,Inconclusive,7488,211,4,4,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1200,2022-01-08,23371.83356117796,119,Urgent,2022-01-23,Normal,1200,224,1,22,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1201,2022-05-08,30979.10331267826,330,Urgent,2022-05-17,Inconclusive,1201,19,1,10,,,,DISCHARGED -1202,2021-12-06,22143.025098365524,478,Emergency,2021-12-14,Abnormal,1202,112,0,9,,,,DISCHARGED -1203,2021-12-30,29935.023949114915,212,Emergency,2022-01-13,Normal,1203,139,2,24,,,,DISCHARGED -1203,2022-12-14,45342.83358565388,123,Elective,2023-01-12,Abnormal,1676,46,0,20,,,,DISCHARGED -1203,2018-12-24,26840.033335812244,381,Urgent,2019-01-05,Abnormal,2855,0,0,22,,,,DISCHARGED -1203,2021-06-25,17690.804342238753,165,Emergency,2021-07-05,Normal,8553,89,2,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -1204,2021-05-18,24397.050394984235,267,Urgent,2021-06-14,Normal,1204,141,1,8,,,,DISCHARGED -1205,2022-06-08,12449.000455630903,414,Elective,2022-07-07,Inconclusive,1205,319,2,0,,,,DISCHARGED -1206,2021-01-15,1104.5444222297997,226,Elective,2021-02-13,Abnormal,1206,37,3,19,,,,DISCHARGED -1207,2019-11-12,20771.09576182276,245,Urgent,2019-11-29,Inconclusive,1207,292,3,0,,,,DISCHARGED -1207,2018-12-10,28783.157593200434,171,Emergency,2018-12-21,Abnormal,2282,381,3,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1208,2020-05-22,47923.56136113807,126,Emergency,2020-06-02,Normal,1208,138,4,2,,,,DISCHARGED -1209,2019-07-27,16408.96691858919,278,Elective,2019-08-16,Normal,1209,355,1,1,,,,DISCHARGED -1210,2022-08-08,49690.697911435294,421,Emergency,2022-08-15,Normal,1210,332,1,29,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -1211,2020-05-01,4296.00837447991,182,Emergency,2020-05-13,Abnormal,1211,490,4,3,,,,DISCHARGED -1212,2021-08-02,13061.152620069335,425,Elective,2021-08-20,Inconclusive,1212,258,0,26,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1213,2022-06-29,22714.291173502483,206,Urgent,2022-07-11,Abnormal,1213,160,3,18,,,,DISCHARGED -1213,2022-03-06,44814.38625120392,433,Emergency,2022-04-02,Inconclusive,4593,389,3,10,,,,DISCHARGED -1213,2021-07-13,45312.51788790039,430,Emergency,2021-08-04,Abnormal,9478,177,0,4,,,,DISCHARGED -1214,2019-11-18,26194.244322673203,307,Emergency,2019-12-08,Normal,1214,9,2,28,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -1215,2021-03-07,21357.20858686988,321,Elective,2021-03-08,Abnormal,1215,260,2,23,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -1216,2022-07-22,23936.09270790532,377,Emergency,2022-08-13,Inconclusive,1216,406,1,9,,,,DISCHARGED -1217,2023-09-23,32406.750771743336,320,Elective,2023-10-14,Inconclusive,1217,137,4,23,,,,DISCHARGED -1218,2021-05-07,14524.707446284056,116,Elective,2021-06-03,Inconclusive,1218,171,1,26,,,,DISCHARGED -1219,2020-02-16,26047.705097458056,124,Emergency,2020-02-22,Normal,1219,385,2,22,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1220,2022-04-07,37384.843343099536,177,Urgent,2022-04-13,Abnormal,1220,12,0,7,,,,DISCHARGED -1221,2022-08-07,1521.590578414325,267,Urgent,2022-08-21,Normal,1221,167,1,12,,,,DISCHARGED -1222,2020-02-12,1185.2138790636018,175,Emergency,2020-03-02,Inconclusive,1222,129,3,28,,,,DISCHARGED -1223,2022-09-23,35550.2218680213,289,Elective,2022-10-20,Normal,1223,83,3,4,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -1224,2022-05-30,27851.777932834848,433,Emergency,2022-06-28,Inconclusive,1224,320,0,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1225,2021-11-16,35849.42724682361,135,Urgent,2021-11-30,Normal,1225,318,2,25,,,,DISCHARGED -1226,2022-09-26,18595.633277089997,383,Urgent,2022-10-16,Abnormal,1226,100,3,26,,,,DISCHARGED -1227,2023-05-23,43709.13461108844,200,Urgent,2023-06-12,Normal,1227,328,3,11,,,,DISCHARGED -1228,2019-08-07,36820.77074553299,400,Urgent,2019-08-23,Abnormal,1228,272,4,26,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1229,2021-04-22,12593.553327817548,234,Elective,2021-05-09,Normal,1229,264,1,12,,,,DISCHARGED -1230,2020-10-13,42545.92068919371,311,Emergency,2020-11-09,Abnormal,1230,458,2,21,,,,DISCHARGED -1231,2021-03-22,11561.811843317191,468,Urgent,2021-03-28,Inconclusive,1231,398,1,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -1232,2019-10-21,16971.83619790432,229,Urgent,2019-11-01,Inconclusive,1232,407,2,14,,,,DISCHARGED -1233,2023-10-25,28280.36006787648,439,Emergency,2023-11-17,Inconclusive,1233,37,3,12,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -1233,2021-10-28,39519.36419704959,486,Emergency,2021-10-29,Inconclusive,5862,418,4,0,,,,DISCHARGED -1234,2021-05-21,49898.23155845238,339,Elective,2021-05-28,Normal,1234,93,1,21,,,,DISCHARGED -1235,2020-06-02,10592.25566233709,255,Elective,2020-06-24,Inconclusive,1235,94,3,5,,,,DISCHARGED -1236,2019-08-08,18826.741718490663,409,Elective,2019-08-22,Inconclusive,1236,304,2,10,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1237,2023-10-17,18193.27476480426,183,Elective,2023-10-27,Inconclusive,1237,68,1,12,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -1238,2021-05-04,15446.76075706385,418,Emergency,2021-05-25,Inconclusive,1238,317,1,20,,,,DISCHARGED -1240,2022-07-13,7629.581899678145,437,Elective,2022-08-12,Abnormal,1240,443,3,19,,,,DISCHARGED -1241,2022-10-19,13676.34886679554,193,Elective,2022-10-27,Normal,1241,235,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -1241,2020-02-12,9794.33798335858,310,Emergency,2020-02-14,Normal,2677,433,4,10,,,,DISCHARGED -1242,2019-01-31,16330.95706627832,274,Urgent,2019-02-08,Abnormal,1242,333,4,25,,,,DISCHARGED -1243,2021-01-15,36324.42753075232,358,Emergency,2021-02-12,Inconclusive,1243,372,3,10,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1244,2021-06-05,39832.71072190877,181,Elective,2021-06-06,Abnormal,1244,375,2,7,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1245,2023-02-17,42520.49073184942,486,Elective,,Normal,1245,458,3,21,,,,OPEN -1246,2023-03-06,47225.56689242021,283,Urgent,,Inconclusive,1246,136,4,2,,,,OPEN -1247,2021-08-09,2813.0521460089017,185,Urgent,2021-08-21,Abnormal,1247,417,0,27,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -1248,2018-11-14,3380.081744533818,223,Emergency,2018-12-09,Abnormal,1248,75,0,18,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1248,2021-06-07,7380.28809480587,474,Urgent,2021-06-19,Normal,5027,482,1,11,,,,DISCHARGED -1249,2020-08-08,3680.684870384705,252,Elective,2020-08-22,Normal,1249,34,1,5,,,,DISCHARGED -1250,2022-09-17,22505.27524413041,399,Emergency,2022-10-06,Abnormal,1250,0,0,27,,,,DISCHARGED -1251,2022-11-01,44542.30167895572,226,Elective,2022-11-30,Abnormal,1251,295,4,22,,,,DISCHARGED -1252,2022-12-09,10786.778256915602,256,Urgent,2022-12-18,Inconclusive,1252,319,1,7,,,,DISCHARGED -1253,2022-02-17,23021.113540007093,364,Emergency,2022-03-02,Inconclusive,1253,405,3,4,,,,DISCHARGED -1254,2019-07-14,39452.70869998484,208,Urgent,2019-07-21,Normal,1254,59,3,9,,,,DISCHARGED -1255,2019-09-24,45411.31237886845,257,Urgent,2019-10-03,Abnormal,1255,319,4,21,,,,DISCHARGED -1256,2018-11-19,12472.402228018342,459,Emergency,2018-11-29,Normal,1256,348,1,15,,,,DISCHARGED -1258,2020-12-23,30726.948945926037,189,Emergency,2021-01-03,Inconclusive,1258,327,3,11,,,,DISCHARGED -1259,2023-10-14,40386.51935783964,415,Elective,2023-10-29,Normal,1259,266,1,16,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -1260,2019-05-22,28785.336133155757,295,Urgent,2019-06-13,Inconclusive,1260,360,1,5,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1261,2020-04-19,41556.09406666805,143,Urgent,2020-04-25,Normal,1261,228,3,8,,,,DISCHARGED -1262,2021-01-31,12068.35929733992,174,Urgent,2021-03-01,Abnormal,1262,269,0,9,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -1263,2022-01-31,24954.6035244282,112,Urgent,2022-02-05,Abnormal,1263,315,3,19,,,,DISCHARGED -1264,2021-02-10,29575.060941490698,248,Emergency,2021-02-25,Inconclusive,1264,285,4,13,,,,DISCHARGED -1265,2021-04-17,44756.11246332132,377,Emergency,2021-04-22,Abnormal,1265,290,2,13,,,,DISCHARGED -1266,2021-03-08,20416.930256632604,201,Urgent,2021-03-31,Inconclusive,1266,212,3,25,,,,DISCHARGED -1267,2020-10-29,7658.078012170146,154,Urgent,2020-11-18,Inconclusive,1267,164,1,28,,,,DISCHARGED -1268,2023-06-16,3475.838524777997,187,Elective,2023-06-17,Inconclusive,1268,4,1,16,,,,DISCHARGED -1269,2022-12-01,36147.16225697457,150,Elective,2022-12-07,Normal,1269,338,3,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1270,2022-03-11,6564.677593833786,159,Emergency,2022-04-03,Inconclusive,1270,378,2,26,,,,DISCHARGED -1271,2021-06-01,42030.47334133956,329,Urgent,2021-06-18,Inconclusive,1271,77,3,24,,,,DISCHARGED -1272,2023-01-16,4614.166449747308,456,Urgent,2023-02-05,Normal,1272,409,2,15,,,,DISCHARGED -1273,2020-09-12,14948.727919776426,145,Elective,2020-09-16,Normal,1273,61,2,3,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1274,2019-12-13,12937.336655226634,206,Emergency,2019-12-21,Inconclusive,1274,131,4,1,,,,DISCHARGED -1275,2020-11-16,12684.631588335356,341,Emergency,2020-12-06,Normal,1275,88,1,15,,,,DISCHARGED -1275,2019-04-01,34809.32560140672,499,Elective,2019-04-04,Abnormal,2882,236,1,0,,,,DISCHARGED -1276,2023-04-08,4426.441900370795,400,Emergency,2023-04-27,Normal,1276,41,2,2,,,,DISCHARGED -1277,2020-04-26,27763.51164659517,285,Elective,2020-05-20,Inconclusive,1277,88,1,22,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -1278,2022-04-28,23163.8125463224,312,Emergency,2022-04-30,Normal,1278,401,0,10,,,,DISCHARGED -1279,2021-03-27,46220.425450589,230,Elective,2021-04-20,Normal,1279,295,2,15,,,,DISCHARGED -1281,2020-04-25,13816.96822453083,308,Urgent,2020-05-14,Abnormal,1281,327,1,25,,,,DISCHARGED -1281,2019-12-31,30416.09488723861,184,Emergency,2020-01-05,Normal,1289,294,0,17,,,,DISCHARGED -1281,2022-06-26,44132.98157271498,466,Elective,2022-07-02,Inconclusive,6404,103,4,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -1282,2020-12-28,32779.85373503364,219,Elective,2021-01-08,Normal,1282,13,1,8,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -1282,2021-11-24,29191.81853669066,340,Elective,2021-12-09,Inconclusive,5519,287,0,11,,,,DISCHARGED -1283,2018-11-28,20205.83968806844,167,Emergency,2018-12-19,Normal,1283,178,3,28,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1284,2020-10-04,12900.760488393376,184,Emergency,2020-10-18,Inconclusive,1284,124,3,26,,,,DISCHARGED -1285,2020-06-22,30861.775957667694,402,Urgent,2020-06-27,Normal,1285,421,0,17,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -1285,2022-10-05,32177.77606626569,428,Elective,2022-10-24,Abnormal,3708,352,2,4,,,,DISCHARGED -1286,2023-05-12,49450.89339700137,405,Emergency,,Normal,1286,22,2,23,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",OPEN -1287,2022-08-08,5427.744304314314,333,Emergency,2022-08-17,Inconclusive,1287,62,1,28,,,,DISCHARGED -1288,2021-12-09,37926.04072482408,229,Elective,2022-01-05,Abnormal,1288,142,3,28,,,,DISCHARGED -1290,2021-04-28,25082.84787911366,244,Urgent,2021-05-02,Abnormal,1290,480,2,27,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1291,2023-05-19,18473.76612752954,311,Elective,2023-05-24,Normal,1291,152,2,25,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -1292,2022-10-18,4336.557614920836,266,Emergency,2022-10-23,Inconclusive,1292,144,3,7,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -1293,2018-11-09,18763.54096410252,116,Urgent,2018-11-10,Normal,1293,224,4,2,,,,DISCHARGED -1294,2019-05-07,26175.373784489304,296,Emergency,2019-05-08,Normal,1294,494,2,1,,,,DISCHARGED -1294,2019-11-12,1020.337790368703,308,Elective,2019-11-24,Abnormal,4866,449,0,24,,,,DISCHARGED -1295,2022-02-18,27744.82871129207,230,Emergency,2022-02-26,Abnormal,1295,461,1,18,,,,DISCHARGED -1296,2022-03-01,32114.2051477691,151,Elective,2022-03-31,Inconclusive,1296,308,2,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1297,2020-01-03,17802.893119476135,234,Urgent,2020-01-21,Normal,1297,103,2,1,,,,DISCHARGED -1298,2022-07-23,34186.35420136755,122,Urgent,2022-08-03,Inconclusive,1298,103,4,18,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -1299,2022-04-27,14251.922318501358,250,Emergency,2022-05-25,Abnormal,1299,434,0,0,,,,DISCHARGED -1300,2022-05-24,24898.83671104919,304,Emergency,2022-06-12,Inconclusive,1300,38,1,29,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -1301,2021-10-06,1837.0960878260496,164,Elective,2021-11-03,Normal,1301,434,2,26,,,,DISCHARGED -1302,2019-07-31,8319.88193476987,428,Urgent,2019-08-06,Inconclusive,1302,197,1,21,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -1303,2019-07-13,48030.108538739965,209,Urgent,2019-08-09,Inconclusive,1303,133,3,12,,,,DISCHARGED -1304,2022-08-31,18949.34708044389,375,Urgent,2022-09-19,Abnormal,1304,66,2,22,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -1305,2022-07-30,33793.81315855958,140,Emergency,2022-08-26,Normal,1305,390,2,19,,,,DISCHARGED -1306,2019-08-09,7841.799282829665,450,Urgent,2019-08-29,Abnormal,1306,178,3,16,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -1307,2019-04-27,34655.80214795067,462,Urgent,2019-05-27,Abnormal,1307,455,4,2,,,,DISCHARGED -1308,2019-11-17,34967.32611078716,492,Elective,2019-11-26,Normal,1308,41,2,8,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -1309,2019-05-15,35017.44604976795,474,Emergency,2019-06-03,Inconclusive,1309,447,1,4,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1310,2023-07-06,6765.461424476579,122,Elective,2023-07-21,Abnormal,1310,499,0,5,,,,DISCHARGED -1311,2023-04-01,36441.78294344234,411,Urgent,2023-04-26,Normal,1311,14,1,3,,,,DISCHARGED -1311,2022-09-27,39055.06447916271,337,Elective,2022-10-11,Inconclusive,4876,110,4,16,,,,DISCHARGED -1312,2022-11-01,8747.39959765486,151,Emergency,2022-11-08,Inconclusive,1312,156,0,29,,,,DISCHARGED -1313,2023-09-15,12449.34885065373,360,Emergency,2023-10-11,Normal,1313,288,1,20,,,,DISCHARGED -1314,2021-07-14,46983.283342800525,379,Elective,2021-07-18,Inconclusive,1314,499,1,20,,,,DISCHARGED -1315,2020-05-06,47059.5432872028,332,Emergency,2020-05-24,Abnormal,1315,477,3,20,,,,DISCHARGED -1316,2023-02-17,9526.488495913578,317,Urgent,2023-03-16,Inconclusive,1316,230,4,15,,,,DISCHARGED -1317,2020-02-15,42765.054657454704,140,Urgent,2020-03-03,Normal,1317,410,3,15,,,,DISCHARGED -1318,2021-10-07,1297.337603370916,297,Urgent,2021-10-25,Inconclusive,1318,419,0,21,,,,DISCHARGED -1318,2019-12-27,5694.385456881819,101,Emergency,2020-01-06,Inconclusive,8837,156,3,10,,,,DISCHARGED -1319,2019-09-17,30754.00902981249,461,Urgent,2019-10-14,Abnormal,1319,37,4,1,,,,DISCHARGED -1320,2021-10-26,30102.211581868505,112,Emergency,2021-11-13,Normal,1320,440,2,16,,,,DISCHARGED -1321,2022-09-21,27788.64223060028,314,Urgent,2022-10-01,Normal,1321,96,2,14,,,,DISCHARGED -1322,2021-05-15,13263.73829565018,470,Elective,2021-05-18,Normal,1322,484,0,17,,,,DISCHARGED -1323,2022-02-12,5645.578310371213,179,Emergency,2022-03-07,Normal,1323,410,2,28,,,,DISCHARGED -1324,2019-06-29,42292.83341927076,480,Emergency,2019-07-23,Abnormal,1324,438,3,9,,,,DISCHARGED -1324,2022-10-22,25039.32458007894,387,Urgent,2022-11-14,Normal,2952,288,0,5,,,,DISCHARGED -1325,2021-05-24,31035.355260224784,492,Emergency,2021-06-06,Inconclusive,1325,253,4,20,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -1326,2022-06-12,6372.419173600877,385,Elective,2022-06-27,Normal,1326,195,0,15,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1327,2023-10-24,21361.96180425918,333,Urgent,,Abnormal,1327,85,0,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -1328,2018-11-25,40094.83617804797,216,Urgent,2018-12-13,Inconclusive,1328,321,1,11,,,,DISCHARGED -1329,2022-10-14,13784.807039715315,476,Urgent,2022-11-10,Inconclusive,1329,9,1,27,,,,DISCHARGED -1330,2019-05-23,4668.921063194623,116,Emergency,2019-06-08,Normal,1330,4,0,5,,,,DISCHARGED -1331,2023-09-01,14835.440745608956,436,Elective,2023-09-06,Abnormal,1331,122,2,13,,,,DISCHARGED -1331,2020-03-16,6843.934455712214,141,Emergency,2020-03-17,Normal,2816,329,1,25,,,,DISCHARGED -1332,2023-04-02,10685.946269722144,342,Urgent,2023-04-16,Normal,1332,352,4,22,,,,DISCHARGED -1333,2022-01-07,10883.97184434871,239,Urgent,2022-01-16,Abnormal,1333,117,3,15,,,,DISCHARGED -1334,2021-04-23,24593.80209908757,185,Elective,2021-04-28,Inconclusive,1334,293,1,24,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -1335,2022-01-06,44259.74180523009,256,Emergency,2022-01-13,Normal,1335,396,0,6,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -1336,2018-12-30,21804.132185126196,180,Emergency,2019-01-19,Abnormal,1336,158,2,1,,,,DISCHARGED -1337,2019-09-07,7079.1786056247065,140,Elective,2019-10-07,Abnormal,1337,302,3,5,,,,DISCHARGED -1337,2020-12-03,10659.663346045125,134,Emergency,2020-12-20,Abnormal,6436,227,1,8,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1337,2019-09-13,18409.45073823073,291,Elective,2019-09-25,Normal,8457,364,2,6,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -1338,2021-08-14,15092.169812163856,196,Emergency,2021-09-12,Abnormal,1338,215,2,1,,,,DISCHARGED -1339,2021-05-15,37275.94576375411,251,Elective,2021-06-11,Abnormal,1339,435,2,18,,,,DISCHARGED -1340,2019-01-02,15412.399249958517,219,Elective,2019-01-11,Inconclusive,1340,183,0,7,,,,DISCHARGED -1341,2021-04-25,41714.72931861722,199,Emergency,2021-04-29,Normal,1341,14,4,10,,,,DISCHARGED -1341,2019-12-03,42261.106845215625,210,Elective,2020-01-02,Normal,1691,156,2,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1342,2023-10-24,35536.80934367094,255,Elective,2023-11-03,Normal,1342,135,3,3,,,,DISCHARGED -1343,2020-06-01,27514.05218284695,470,Elective,2020-06-14,Abnormal,1343,260,1,15,,,,DISCHARGED -1344,2021-01-18,29342.925787595734,431,Emergency,2021-01-23,Abnormal,1344,156,3,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -1345,2023-06-29,9702.677381655449,448,Elective,2023-07-02,Abnormal,1345,46,0,17,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1346,2022-10-22,9775.692599447482,132,Elective,2022-10-30,Normal,1346,323,0,12,,,,DISCHARGED -1347,2023-01-29,13393.255800566814,400,Emergency,2023-02-04,Normal,1347,331,3,26,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1348,2020-04-01,20614.09441339475,145,Emergency,2020-04-04,Abnormal,1348,172,4,4,,,,DISCHARGED -1348,2020-08-10,17683.872010708623,158,Elective,2020-08-16,Abnormal,8277,129,0,26,,,,DISCHARGED -1349,2019-11-21,30419.75223392837,483,Emergency,2019-12-06,Abnormal,1349,410,0,1,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -1350,2022-04-17,49853.76511681912,357,Urgent,2022-05-16,Abnormal,1350,94,3,10,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -1351,2023-05-18,33738.62525044173,416,Emergency,,Abnormal,1351,114,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",OPEN -1352,2020-05-07,40942.005631729386,113,Urgent,2020-05-14,Inconclusive,1352,242,4,12,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -1353,2022-02-21,48270.69141645253,453,Emergency,2022-03-14,Inconclusive,1353,419,4,29,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -1354,2023-02-17,16292.432929931489,134,Emergency,2023-02-19,Normal,1354,291,4,4,,,,DISCHARGED -1355,2020-04-09,26386.82263435522,158,Emergency,2020-04-22,Normal,1355,281,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1356,2020-05-03,32862.3870842997,470,Urgent,2020-05-27,Inconclusive,1356,298,4,13,,,,DISCHARGED -1356,2019-05-22,28071.47714454473,319,Emergency,2019-05-28,Normal,6990,282,4,12,,,,DISCHARGED -1357,2020-12-26,40100.42931606188,147,Elective,2021-01-25,Abnormal,1357,68,1,6,,,,DISCHARGED -1357,2020-05-05,41931.183707035794,178,Emergency,2020-05-06,Inconclusive,9160,147,2,7,,,,DISCHARGED -1358,2023-05-05,2079.178611168977,335,Urgent,2023-05-29,Normal,1358,10,0,17,,,,DISCHARGED -1359,2019-11-02,30348.487459544685,157,Elective,2019-11-28,Abnormal,1359,253,4,6,"Reports a persistent, nagging pain in the jaw.",Evaluate for temporomandibular joint (TMJ) disorder or dental issues; recommend pain relievers and jaw exercises.,R10.4 - Other and unspecified abdominal pain,DISCHARGED -1360,2023-03-09,42072.0237379467,298,Emergency,2023-03-18,Normal,1360,329,0,19,,,,DISCHARGED -1360,2021-05-27,25006.88674513295,476,Elective,2021-06-15,Normal,9413,359,3,16,,,,DISCHARGED -1361,2022-11-24,17528.85649141689,488,Urgent,2022-12-17,Normal,1361,37,0,15,,,,DISCHARGED -1362,2023-02-12,28564.792331379434,370,Urgent,,Abnormal,1362,133,1,10,,,,OPEN -1362,2019-06-21,30193.36847627906,156,Urgent,2019-07-05,Abnormal,5131,199,0,18,,,,DISCHARGED -1363,2020-12-16,32097.859166555794,213,Urgent,2020-12-17,Inconclusive,1363,22,0,26,,,,DISCHARGED -1364,2019-03-17,15945.961367968866,247,Urgent,2019-03-26,Abnormal,1364,302,0,27,,,,DISCHARGED -1366,2020-06-04,14618.054341992476,220,Elective,2020-06-10,Abnormal,1366,345,2,0,,,,DISCHARGED -1367,2019-09-01,39707.08205512446,227,Urgent,2019-09-10,Normal,1367,301,2,20,,,,DISCHARGED -1368,2022-12-06,38582.84223966761,366,Emergency,2022-12-28,Normal,1368,362,3,28,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1369,2020-11-18,48273.44967462655,220,Emergency,2020-11-23,Abnormal,1369,395,1,7,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -1369,2019-10-21,30414.234531776783,449,Urgent,2019-10-28,Inconclusive,2955,217,0,0,,,,DISCHARGED -1369,2020-05-29,4691.08529498244,482,Emergency,2020-06-09,Abnormal,4936,140,0,29,,,,DISCHARGED -1369,2021-05-23,39115.84611259714,450,Urgent,2021-06-11,Inconclusive,8259,103,0,8,,,,DISCHARGED -1370,2021-01-15,2254.6992373283547,411,Elective,2021-02-12,Inconclusive,1370,445,0,18,,,,DISCHARGED -1371,2021-11-19,14018.183322932537,119,Emergency,2021-12-17,Abnormal,1371,209,2,20,,,,DISCHARGED -1372,2022-06-01,17975.293295405925,309,Urgent,2022-06-08,Abnormal,1372,472,3,8,,,,DISCHARGED -1372,2019-08-08,46106.06030651323,420,Emergency,2019-08-09,Normal,3012,480,4,20,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1372,2019-06-17,18676.714498391782,468,Emergency,2019-07-01,Normal,3617,110,1,24,,,,DISCHARGED -1373,2021-04-10,19107.62806985715,336,Elective,2021-04-14,Normal,1373,103,0,9,,,,DISCHARGED -1373,2018-11-28,11888.154593877976,402,Elective,2018-12-04,Normal,4619,315,3,23,,,,DISCHARGED -1373,2020-09-11,35901.92354336211,178,Emergency,2020-10-05,Inconclusive,7079,170,4,22,,,,DISCHARGED -1374,2022-01-31,44696.84341738928,409,Urgent,2022-02-23,Normal,1374,459,3,10,,,,DISCHARGED -1375,2021-04-14,16826.908105432085,444,Elective,2021-04-25,Abnormal,1375,491,2,0,,,,DISCHARGED -1376,2023-10-13,25260.59018586082,377,Emergency,,Normal,1376,355,4,19,,,,OPEN -1377,2023-03-07,43176.1713041612,122,Urgent,2023-03-23,Inconclusive,1377,495,3,24,,,,DISCHARGED -1378,2023-08-18,4953.799293288754,219,Elective,2023-09-12,Inconclusive,1378,323,2,25,,,,DISCHARGED -1379,2022-12-03,11125.163396528716,144,Emergency,2022-12-11,Abnormal,1379,132,3,7,,,,DISCHARGED -1379,2023-08-06,31385.14586292253,386,Urgent,2023-08-18,Abnormal,9631,375,3,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1380,2022-03-15,12716.043597710464,181,Elective,2022-03-16,Abnormal,1380,292,4,11,,,,DISCHARGED -1381,2022-08-21,15835.854309550064,130,Urgent,2022-08-31,Abnormal,1381,327,2,0,,,,DISCHARGED -1382,2021-01-12,41279.31592714954,442,Urgent,2021-01-20,Inconclusive,1382,126,0,9,,,,DISCHARGED -1383,2020-04-11,2839.861412218511,165,Elective,2020-04-24,Normal,1383,105,1,3,,,,DISCHARGED -1384,2019-01-20,2117.911193018509,314,Elective,2019-02-02,Normal,1384,496,4,14,,,,DISCHARGED -1385,2023-03-12,43647.08174336824,457,Urgent,2023-04-09,Inconclusive,1385,91,2,18,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -1385,2020-03-31,23455.934726748477,309,Urgent,2020-04-20,Normal,6751,286,3,5,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1386,2022-04-10,25357.52536212509,241,Elective,2022-04-16,Abnormal,1386,377,2,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -1387,2021-10-08,28462.868455274573,259,Urgent,2021-11-02,Normal,1387,392,1,4,,,,DISCHARGED -1388,2021-09-24,1606.5171857414905,310,Emergency,2021-10-14,Normal,1388,50,1,4,,,,DISCHARGED -1389,2022-01-09,4310.323262295909,334,Emergency,2022-02-03,Inconclusive,1389,28,0,17,,,,DISCHARGED -1390,2020-09-13,34728.988387154386,195,Urgent,2020-10-06,Abnormal,1390,461,0,27,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1391,2020-03-06,44858.631528777136,371,Elective,2020-03-16,Inconclusive,1391,295,1,2,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1392,2020-11-28,1741.1202167185404,129,Emergency,2020-12-07,Normal,1392,296,4,26,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1393,2020-04-16,39550.62926049432,403,Elective,2020-05-15,Inconclusive,1393,213,4,21,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1394,2019-09-05,11827.366098753697,246,Emergency,2019-09-29,Abnormal,1394,266,3,1,,,,DISCHARGED -1395,2018-11-04,2665.3704556912858,266,Elective,2018-11-30,Abnormal,1395,406,0,3,,,,DISCHARGED -1396,2020-03-26,42047.04277967537,316,Elective,2020-04-11,Normal,1396,256,3,17,,,,DISCHARGED -1397,2019-08-03,2441.8910180895077,225,Emergency,2019-08-05,Abnormal,1397,301,0,8,Frequent hiccups,"Identify the underlying cause, prescribe medications if necessary, and recommend lifestyle changes.",R11 - Nausea and vomiting,DISCHARGED -1398,2020-09-27,39439.2358950029,256,Emergency,2020-10-16,Abnormal,1398,100,1,18,,,,DISCHARGED -1399,2019-04-14,9817.682605035849,292,Urgent,2019-04-26,Inconclusive,1399,404,4,25,,,,DISCHARGED -1400,2018-11-02,2012.02631439907,105,Elective,2018-12-01,Inconclusive,1400,345,4,9,,,,DISCHARGED -1401,2019-11-03,22991.51524053853,496,Elective,2019-11-07,Normal,1401,109,1,21,,,,DISCHARGED -1402,2023-10-26,30187.40550164447,247,Emergency,,Normal,1402,419,3,14,,,,OPEN -1403,2019-05-04,47165.29916522435,417,Emergency,2019-06-02,Inconclusive,1403,181,3,0,,,,DISCHARGED -1403,2022-07-25,32270.15203671778,284,Urgent,2022-08-14,Normal,1979,470,2,28,,,,DISCHARGED -1403,2019-10-16,31132.66929952767,248,Emergency,2019-11-13,Inconclusive,7935,312,0,10,,,,DISCHARGED -1404,2023-10-18,21076.97085530908,462,Urgent,2023-11-14,Normal,1404,0,3,13,,,,DISCHARGED -1405,2019-05-19,38584.13621471236,493,Elective,2019-05-29,Abnormal,1405,318,1,9,,,,DISCHARGED -1406,2022-04-16,47519.370031681705,169,Elective,2022-05-11,Abnormal,1406,437,3,18,,,,DISCHARGED -1407,2021-01-02,15437.549708269484,331,Elective,2021-01-27,Normal,1407,54,4,23,,,,DISCHARGED -1408,2023-08-13,36346.61752846077,312,Urgent,,Abnormal,1408,370,0,20,,,,OPEN -1408,2022-03-01,20042.38385555324,251,Elective,2022-03-31,Normal,2675,423,2,15,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1409,2020-09-29,5253.616012329089,261,Emergency,2020-10-15,Abnormal,1409,398,0,7,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -1410,2022-01-11,19484.01734967431,425,Urgent,2022-01-16,Abnormal,1410,148,4,1,,,,DISCHARGED -1410,2019-10-12,49573.399903411984,177,Urgent,2019-10-27,Normal,2634,430,4,22,,,,DISCHARGED -1411,2019-06-21,17698.27973352936,484,Emergency,2019-07-12,Normal,1411,456,4,24,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -1412,2019-11-03,31901.68206656949,153,Elective,2019-11-24,Inconclusive,1412,308,4,6,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1412,2022-01-11,31842.627595819275,457,Elective,2022-02-09,Abnormal,9237,136,1,18,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1413,2019-03-22,4771.650508572607,360,Elective,2019-03-25,Abnormal,1413,201,2,6,,,,DISCHARGED -1413,2020-11-11,46930.69946037082,484,Emergency,2020-11-15,Abnormal,8235,435,4,14,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1414,2023-08-24,34753.239049473814,282,Elective,2023-09-16,Normal,1414,312,4,7,,,,DISCHARGED -1415,2019-04-24,45302.70126572699,446,Emergency,2019-04-26,Normal,1415,116,3,13,,,,DISCHARGED -1416,2019-08-19,26665.901699254176,287,Emergency,2019-08-27,Abnormal,1416,153,2,0,,,,DISCHARGED -1417,2020-12-06,45499.04021381226,113,Elective,2020-12-13,Abnormal,1417,424,0,28,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -1418,2022-07-21,31427.659167171816,255,Urgent,2022-08-16,Abnormal,1418,290,2,12,,,,DISCHARGED -1419,2020-05-08,26649.65348563137,465,Emergency,2020-06-07,Normal,1419,62,2,2,,,,DISCHARGED -1419,2018-11-08,38150.36697658243,366,Emergency,2018-12-08,Abnormal,9360,243,2,20,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1420,2022-09-24,18092.40030006162,407,Elective,2022-10-12,Inconclusive,1420,24,4,27,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1421,2021-01-04,12784.843889181002,243,Elective,2021-01-17,Abnormal,1421,89,4,5,,,,DISCHARGED -1422,2023-08-30,9661.473049903942,437,Urgent,,Abnormal,1422,74,1,18,,,,OPEN -1423,2021-03-10,7765.808456352994,349,Elective,2021-03-12,Abnormal,1423,293,0,14,,,,DISCHARGED -1424,2022-08-06,25955.496274861285,295,Emergency,2022-08-22,Abnormal,1424,385,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1425,2023-10-10,39456.79757345628,302,Elective,,Abnormal,1425,390,2,20,,,,OPEN -1426,2023-06-11,43070.47038936852,215,Elective,2023-06-27,Inconclusive,1426,209,0,2,,,,DISCHARGED -1426,2021-10-20,12469.12414019698,323,Emergency,2021-11-03,Inconclusive,5658,474,0,3,,,,DISCHARGED -1427,2021-03-20,22444.633462416918,377,Urgent,2021-03-21,Inconclusive,1427,417,1,4,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1428,2022-12-31,36233.19537438693,222,Elective,2023-01-10,Inconclusive,1428,346,3,17,,,,DISCHARGED -1428,2019-03-07,23440.663892346656,461,Emergency,2019-03-17,Inconclusive,9735,16,2,25,,,,DISCHARGED -1429,2023-03-20,21741.70650863805,355,Elective,2023-03-30,Abnormal,1429,127,3,24,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -1430,2019-08-17,32477.750363689145,485,Emergency,2019-09-14,Inconclusive,1430,426,1,9,,,,DISCHARGED -1431,2022-02-09,45335.88699464429,242,Elective,2022-03-05,Abnormal,1431,442,4,7,,,,DISCHARGED -1432,2023-01-23,15451.5159912924,499,Urgent,2023-01-31,Normal,1432,363,0,11,,,,DISCHARGED -1433,2022-03-14,2371.4185014294544,228,Elective,2022-03-30,Inconclusive,1433,250,2,21,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -1434,2020-09-23,18301.32584245176,448,Elective,2020-10-22,Inconclusive,1434,178,4,25,,,,DISCHARGED -1435,2022-08-21,22734.364435997264,316,Emergency,2022-09-16,Normal,1435,181,1,26,,,,DISCHARGED -1436,2023-03-06,44027.39730508172,477,Emergency,2023-03-20,Normal,1436,151,3,2,,,,DISCHARGED -1437,2022-05-09,49071.6153727576,169,Urgent,2022-05-10,Normal,1437,24,0,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1438,2020-10-27,14571.144107607395,428,Urgent,2020-10-29,Abnormal,1438,454,2,17,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1439,2021-10-07,26424.20607939292,114,Emergency,2021-10-29,Normal,1439,179,4,22,,,,DISCHARGED -1440,2019-11-15,14923.14708562106,472,Urgent,2019-12-05,Normal,1440,197,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1442,2023-10-11,29485.75542112056,213,Elective,2023-10-14,Abnormal,1442,343,0,25,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -1443,2021-12-01,10791.325616137889,317,Emergency,2021-12-02,Abnormal,1443,160,3,0,,,,DISCHARGED -1443,2023-08-20,42274.32778501501,235,Elective,2023-09-13,Inconclusive,2714,176,1,13,,,,DISCHARGED -1444,2021-10-16,30317.09975741035,488,Urgent,2021-11-06,Normal,1444,284,3,21,,,,DISCHARGED -1445,2020-07-12,29767.975467313696,478,Urgent,2020-08-06,Abnormal,1445,62,3,22,,,,DISCHARGED -1446,2019-12-03,4721.403200353537,284,Emergency,2019-12-05,Normal,1446,490,3,12,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -1447,2023-02-02,18062.52811261929,181,Emergency,2023-02-05,Inconclusive,1447,149,0,24,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -1448,2023-06-08,4916.296358886948,397,Emergency,2023-07-06,Abnormal,1448,153,0,11,,,,DISCHARGED -1449,2022-10-13,42499.60908630285,281,Elective,2022-11-04,Abnormal,1449,155,1,2,,,,DISCHARGED -1450,2019-01-30,27664.075375883356,111,Urgent,2019-02-25,Normal,1450,369,3,17,,,,DISCHARGED -1451,2019-12-20,43877.65177032784,486,Urgent,2019-12-25,Normal,1451,468,0,20,,,,DISCHARGED -1452,2021-09-06,15696.96699355709,314,Emergency,2021-09-30,Abnormal,1452,48,1,12,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -1453,2020-10-28,28548.355248954325,187,Urgent,2020-10-31,Normal,1453,454,1,14,,,,DISCHARGED -1454,2020-10-11,24120.18404388413,286,Elective,2020-10-16,Inconclusive,1454,336,3,9,,,,DISCHARGED -1454,2021-11-29,9889.490744950002,473,Emergency,2021-12-06,Abnormal,2600,83,2,0,,,,DISCHARGED -1455,2022-09-26,7474.711087373894,325,Urgent,2022-10-13,Abnormal,1455,360,3,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -1456,2021-02-05,24634.73033601485,206,Emergency,2021-02-10,Normal,1456,176,2,5,,,,DISCHARGED -1457,2020-10-28,44104.56514798776,282,Elective,2020-11-21,Inconclusive,1457,147,1,8,,,,DISCHARGED -1458,2021-08-11,14390.020913011787,494,Urgent,2021-09-06,Inconclusive,1458,117,0,9,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1459,2020-11-24,20067.42030581381,131,Elective,2020-12-12,Normal,1459,341,4,14,,,,DISCHARGED -1460,2023-08-23,24156.82001598274,208,Emergency,2023-09-19,Inconclusive,1460,475,1,8,,,,DISCHARGED -1461,2019-08-31,45354.73409867554,181,Emergency,2019-09-02,Abnormal,1461,62,0,22,,,,DISCHARGED -1461,2019-07-15,22135.735416199044,356,Elective,2019-08-10,Abnormal,5216,188,1,13,,,,DISCHARGED -1462,2019-09-07,33576.844385190285,406,Emergency,2019-09-14,Abnormal,1462,359,3,10,,,,DISCHARGED -1463,2021-02-04,36094.08668049679,163,Elective,2021-02-11,Inconclusive,1463,48,2,6,,,,DISCHARGED -1464,2022-04-21,5114.73256005197,485,Urgent,2022-05-03,Abnormal,1464,326,1,23,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1465,2023-04-03,15417.000001193475,423,Urgent,2023-04-10,Normal,1465,256,0,25,,,,DISCHARGED -1466,2022-07-09,14966.189831628875,131,Emergency,2022-08-06,Inconclusive,1466,223,3,29,,,,DISCHARGED -1467,2023-10-02,18283.993899372657,298,Elective,2023-10-06,Inconclusive,1467,140,4,1,,,,DISCHARGED -1468,2019-10-06,30304.375081587805,474,Elective,2019-10-19,Abnormal,1468,477,3,13,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1469,2021-10-13,29356.275590938763,171,Elective,2021-10-25,Normal,1469,214,2,5,,,,DISCHARGED -1470,2020-12-01,34472.084194001654,422,Urgent,2020-12-16,Normal,1470,434,3,4,,,,DISCHARGED -1471,2021-08-17,38743.88147789532,355,Urgent,2021-08-20,Normal,1471,378,4,4,,,,DISCHARGED -1472,2020-05-17,5110.232728208756,349,Urgent,2020-05-22,Inconclusive,1472,439,0,28,,,,DISCHARGED -1472,2021-06-30,14044.392060190456,217,Emergency,2021-07-27,Abnormal,5563,210,1,18,,,,DISCHARGED -1472,2021-07-08,29210.176374035756,126,Emergency,2021-07-15,Abnormal,9026,317,2,18,,,,DISCHARGED -1473,2021-08-15,7536.747469676526,470,Urgent,2021-08-22,Normal,1473,31,4,5,,,,DISCHARGED -1474,2021-12-06,17944.24264921578,430,Emergency,2021-12-16,Normal,1474,157,2,27,,,,DISCHARGED -1475,2021-07-04,47384.05104293734,178,Urgent,2021-07-29,Abnormal,1475,284,3,25,,,,DISCHARGED -1476,2020-09-06,47527.2226044018,272,Urgent,2020-09-27,Abnormal,1476,304,2,28,,,,DISCHARGED -1477,2022-03-28,44490.20985706157,228,Urgent,2022-04-26,Abnormal,1477,428,4,9,,,,DISCHARGED -1478,2022-05-31,48098.55655167212,466,Elective,2022-06-07,Normal,1478,476,1,22,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1479,2023-04-13,33333.405400636926,148,Elective,2023-04-27,Inconclusive,1479,285,1,13,,,,DISCHARGED -1480,2019-04-11,1599.8748640537535,223,Elective,2019-04-23,Inconclusive,1480,143,2,16,,,,DISCHARGED -1481,2019-01-27,30291.16313443074,106,Urgent,2019-02-16,Abnormal,1481,423,0,29,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -1482,2021-11-11,24458.10656430833,320,Emergency,2021-12-04,Normal,1482,18,2,2,,,,DISCHARGED -1483,2020-05-11,29896.74820134905,157,Elective,2020-05-15,Abnormal,1483,17,3,27,,,,DISCHARGED -1484,2022-02-02,41940.65611297242,253,Elective,2022-02-28,Normal,1484,256,1,0,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -1485,2023-05-31,28835.0472876612,421,Urgent,2023-06-10,Abnormal,1485,77,1,9,,,,DISCHARGED -1486,2020-06-04,6150.015684868643,458,Elective,2020-06-29,Abnormal,1486,370,1,2,,,,DISCHARGED -1487,2023-06-19,26457.314733062405,154,Elective,2023-07-15,Normal,1487,174,0,4,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1488,2022-05-20,7198.770967286122,497,Urgent,2022-05-29,Abnormal,1488,497,0,24,,,,DISCHARGED -1489,2019-12-25,45306.601749417714,402,Urgent,2020-01-19,Inconclusive,1489,193,4,18,,,,DISCHARGED -1490,2019-01-13,17738.069851981614,297,Urgent,2019-01-29,Abnormal,1490,475,2,9,,,,DISCHARGED -1491,2020-05-24,24742.714097824395,258,Urgent,2020-05-28,Inconclusive,1491,112,2,29,,,,DISCHARGED -1493,2020-10-01,49141.0230566944,161,Urgent,2020-10-27,Abnormal,1493,113,3,25,,,,DISCHARGED -1494,2019-03-31,3396.323894291608,144,Emergency,2019-04-11,Inconclusive,1494,221,1,24,,,,DISCHARGED -1495,2021-11-30,49974.16045847918,441,Emergency,2021-12-16,Abnormal,1495,165,0,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1496,2019-07-05,44847.52526813831,137,Urgent,2019-07-11,Normal,1496,434,3,0,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -1498,2020-09-30,20086.904045989628,139,Elective,2020-10-03,Normal,1498,318,3,5,,,,DISCHARGED -1499,2022-04-19,13391.602986508997,308,Urgent,2022-05-15,Inconclusive,1499,131,0,8,,,,DISCHARGED -1500,2019-09-04,29167.79216874884,164,Urgent,2019-09-07,Abnormal,1500,384,2,27,,,,DISCHARGED -1501,2019-05-24,37176.7800806692,121,Elective,2019-06-19,Abnormal,1501,263,1,4,,,,DISCHARGED -1502,2021-12-01,18137.14824526985,351,Urgent,2021-12-12,Normal,1502,412,2,26,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1503,2023-04-11,48554.94871358728,249,Urgent,2023-04-15,Inconclusive,1503,54,3,13,,,,DISCHARGED -1504,2020-08-03,5483.7073453562025,346,Urgent,2020-08-08,Normal,1504,358,1,9,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1505,2019-05-28,46026.91105722429,422,Elective,2019-06-21,Abnormal,1505,130,4,1,,,,DISCHARGED -1506,2020-06-25,42941.61067262114,500,Urgent,2020-07-09,Inconclusive,1506,287,3,4,,,,DISCHARGED -1507,2023-06-23,6718.587381240304,292,Urgent,2023-07-14,Normal,1507,265,2,0,,,,DISCHARGED -1508,2019-06-22,5001.402102076398,147,Elective,2019-07-07,Abnormal,1508,457,2,24,,,,DISCHARGED -1508,2021-06-01,5780.596079973189,414,Elective,2021-06-15,Normal,2759,466,2,9,,,,DISCHARGED -1509,2019-03-25,49877.89864721778,283,Emergency,2019-04-23,Normal,1509,365,0,28,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1510,2019-10-12,44074.03564553098,301,Elective,2019-10-18,Inconclusive,1510,161,3,25,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1511,2021-08-09,5471.482228615109,363,Elective,2021-08-20,Inconclusive,1511,379,1,24,,,,DISCHARGED -1512,2019-07-13,33067.77166015609,263,Elective,2019-08-09,Inconclusive,1512,480,2,21,,,,DISCHARGED -1513,2021-01-17,34596.27497179083,241,Elective,2021-01-31,Inconclusive,1513,86,2,26,,,,DISCHARGED -1513,2022-02-17,21420.41760462032,265,Elective,2022-03-06,Normal,3011,54,0,8,,,,DISCHARGED -1513,2021-04-26,18677.676500513757,366,Elective,2021-05-23,Normal,5961,475,1,29,,,,DISCHARGED -1514,2023-02-24,46542.01178268709,106,Elective,2023-03-22,Abnormal,1514,287,3,2,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1515,2020-07-27,13318.406346446598,379,Urgent,2020-08-03,Inconclusive,1515,177,4,14,,,,DISCHARGED -1516,2020-09-15,29869.756045200484,265,Urgent,2020-09-21,Inconclusive,1516,390,0,3,,,,DISCHARGED -1517,2022-06-09,18176.316545724745,416,Elective,2022-06-16,Normal,1517,348,3,12,,,,DISCHARGED -1518,2021-11-19,43000.54119978862,101,Emergency,2021-12-05,Abnormal,1518,7,4,5,,,,DISCHARGED -1519,2019-08-07,41312.72078255848,222,Urgent,2019-08-11,Abnormal,1519,320,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -1520,2019-04-21,7079.09301546943,345,Urgent,2019-05-11,Abnormal,1520,312,2,16,,,,DISCHARGED -1521,2022-01-17,30326.74369682075,372,Urgent,2022-02-14,Abnormal,1521,246,1,22,,,,DISCHARGED -1521,2022-08-30,46952.67115575456,249,Emergency,2022-09-10,Abnormal,2114,322,4,4,,,,DISCHARGED -1521,2020-12-15,11192.328207796692,114,Emergency,2020-12-18,Normal,9428,471,2,29,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -1522,2020-08-09,35316.192399242354,498,Emergency,2020-08-18,Inconclusive,1522,470,2,14,,,,DISCHARGED -1523,2020-03-04,8511.769699943969,387,Elective,2020-03-20,Normal,1523,442,1,7,,,,DISCHARGED -1524,2022-10-19,36495.692531056055,319,Urgent,2022-11-10,Abnormal,1524,254,3,24,,,,DISCHARGED -1525,2019-12-30,49484.04094772212,336,Elective,2020-01-23,Abnormal,1525,327,2,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1526,2021-01-15,6717.731122851445,471,Urgent,2021-02-05,Abnormal,1526,53,0,23,,,,DISCHARGED -1526,2023-10-11,3414.1350419937626,243,Elective,2023-10-23,Normal,1777,248,0,12,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -1527,2020-04-10,13829.91480382067,474,Urgent,2020-04-22,Normal,1527,238,3,0,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1528,2020-08-20,32230.718790583487,435,Emergency,2020-08-30,Inconclusive,1528,228,4,0,,,,DISCHARGED -1529,2021-04-06,29074.919762426194,198,Elective,2021-04-12,Normal,1529,66,1,6,,,,DISCHARGED -1529,2022-05-10,8473.007721982092,179,Urgent,2022-05-27,Normal,6859,50,0,21,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -1530,2021-03-09,4247.833298255256,488,Urgent,2021-03-10,Abnormal,1530,96,0,4,,,,DISCHARGED -1531,2021-05-30,20566.599437552028,381,Elective,2021-06-03,Normal,1531,91,3,13,,,,DISCHARGED -1532,2020-10-02,44047.51836034425,299,Emergency,2020-10-06,Normal,1532,494,4,14,,,,DISCHARGED -1533,2023-08-26,27599.383578136498,286,Urgent,2023-09-03,Inconclusive,1533,263,4,20,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -1534,2019-03-04,48209.00770432499,232,Elective,2019-03-31,Abnormal,1534,417,3,29,,,,DISCHARGED -1534,2020-05-18,14433.475723397838,235,Urgent,2020-06-07,Inconclusive,2659,290,0,24,,,,DISCHARGED -1535,2020-09-26,14709.21819915168,201,Elective,2020-10-02,Abnormal,1535,95,1,16,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -1536,2021-10-14,16246.589848734411,237,Elective,2021-10-19,Inconclusive,1536,87,0,23,,,,DISCHARGED -1537,2019-02-04,44113.84667491173,167,Emergency,2019-02-14,Normal,1537,77,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1538,2021-04-11,24403.631086452955,444,Urgent,2021-04-15,Inconclusive,1538,287,0,6,,,,DISCHARGED -1539,2022-07-10,22076.602536944843,460,Emergency,2022-08-01,Inconclusive,1539,119,1,21,,,,DISCHARGED -1540,2021-11-08,4535.095021149562,426,Elective,2021-11-21,Inconclusive,1540,301,2,25,,,,DISCHARGED -1541,2021-12-31,30952.25860746648,227,Emergency,2022-01-05,Inconclusive,1541,490,0,17,,,,DISCHARGED -1542,2018-11-02,24441.2028671702,355,Urgent,2018-11-23,Inconclusive,1542,399,3,27,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1543,2022-07-26,13329.44088048892,255,Emergency,2022-08-17,Inconclusive,1543,451,2,28,,,,DISCHARGED -1544,2023-02-07,17970.747199969097,484,Elective,2023-02-10,Normal,1544,499,3,18,,,,DISCHARGED -1544,2020-03-18,48533.68532838184,241,Elective,2020-04-14,Abnormal,3173,164,3,19,,,,DISCHARGED -1545,2022-05-27,31080.43363296485,136,Emergency,2022-05-30,Normal,1545,181,3,6,,,,DISCHARGED -1546,2019-06-05,9819.675917973173,133,Urgent,2019-06-30,Normal,1546,468,0,7,,,,DISCHARGED -1547,2023-10-07,39156.5539168982,379,Elective,2023-10-16,Inconclusive,1547,397,4,12,,,,DISCHARGED -1548,2020-07-29,39561.77312013998,189,Emergency,2020-08-08,Abnormal,1548,222,2,26,,,,DISCHARGED -1549,2021-01-09,10841.461394664037,447,Elective,2021-01-18,Normal,1549,310,1,17,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1550,2022-12-25,40821.40976421033,105,Elective,2022-12-31,Abnormal,1550,431,4,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -1551,2022-02-01,19119.443166478944,499,Elective,2022-03-02,Normal,1551,465,0,10,,,,DISCHARGED -1552,2020-01-04,23204.4704391058,258,Urgent,2020-01-16,Inconclusive,1552,6,3,8,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -1553,2021-06-27,21941.00828878537,223,Emergency,2021-07-07,Inconclusive,1553,329,1,22,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -1554,2018-12-18,13172.351914492096,382,Emergency,2019-01-02,Normal,1554,262,2,0,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -1555,2021-11-26,28491.10773226692,278,Elective,2021-12-01,Abnormal,1555,160,4,21,,,,DISCHARGED -1556,2021-03-07,20362.240661541942,331,Elective,2021-03-17,Abnormal,1556,150,4,7,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1557,2023-08-05,1659.8865598222835,218,Elective,2023-08-20,Abnormal,1557,84,1,20,,,,DISCHARGED -1558,2023-07-16,39075.600712803,296,Emergency,2023-08-13,Abnormal,1558,146,0,11,,,,DISCHARGED -1559,2021-07-27,16999.53176991475,379,Urgent,2021-08-08,Normal,1559,111,2,1,,,,DISCHARGED -1560,2020-01-08,5460.202691148909,486,Emergency,2020-01-10,Inconclusive,1560,380,1,14,,,,DISCHARGED -1561,2022-06-20,46635.08420770996,250,Emergency,2022-07-11,Inconclusive,1561,402,3,20,,,,DISCHARGED -1561,2021-05-06,22422.542811681844,428,Emergency,2021-05-13,Abnormal,5566,35,2,23,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1561,2023-02-20,40146.70724141927,448,Emergency,2023-03-22,Abnormal,7083,284,4,17,,,,DISCHARGED -1561,2020-03-22,36636.92126992474,184,Emergency,2020-04-19,Abnormal,7570,187,1,16,,,,DISCHARGED -1562,2023-08-19,43362.62942467006,440,Elective,2023-08-21,Normal,1562,81,4,14,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -1563,2021-11-04,18562.037225599644,268,Urgent,2021-12-03,Normal,1563,1,4,19,,,,DISCHARGED -1564,2021-01-29,4610.07353428681,155,Elective,2021-02-15,Inconclusive,1564,384,4,19,,,,DISCHARGED -1565,2022-05-01,11120.327138856614,141,Urgent,2022-05-21,Inconclusive,1565,302,0,8,,,,DISCHARGED -1566,2020-06-07,14214.74078190503,447,Elective,2020-07-04,Inconclusive,1566,196,4,2,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -1567,2021-03-17,3988.9770316574472,232,Emergency,2021-04-02,Inconclusive,1567,403,3,19,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1567,2021-02-23,27596.398901714227,426,Emergency,2021-03-24,Abnormal,5973,10,3,18,,,,DISCHARGED -1568,2019-10-15,19055.30829084292,177,Urgent,2019-10-28,Abnormal,1568,233,2,17,,,,DISCHARGED -1569,2021-07-21,3962.3585451220542,151,Emergency,2021-08-04,Inconclusive,1569,385,4,19,,,,DISCHARGED -1570,2022-02-02,7792.850186638831,361,Elective,2022-03-04,Abnormal,1570,194,4,29,,,,DISCHARGED -1571,2021-12-10,14718.8206639204,288,Elective,2022-01-04,Abnormal,1571,470,1,7,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -1572,2020-01-20,20367.02596402093,189,Emergency,2020-02-12,Abnormal,1572,118,0,0,,,,DISCHARGED -1573,2020-07-14,10183.27104472155,473,Urgent,2020-07-20,Abnormal,1573,395,2,23,,,,DISCHARGED -1574,2020-03-25,40537.16596847549,414,Elective,2020-03-30,Abnormal,1574,19,4,23,,,,DISCHARGED -1575,2021-10-27,32676.253443271053,357,Emergency,2021-11-10,Abnormal,1575,260,1,14,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1576,2020-05-19,39659.26128947385,459,Emergency,2020-06-03,Inconclusive,1576,292,0,18,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1577,2020-12-17,8071.724988758223,248,Emergency,2021-01-07,Abnormal,1577,421,2,29,,,,DISCHARGED -1578,2022-04-30,44305.12563629532,257,Urgent,2022-05-23,Abnormal,1578,255,2,25,,,,DISCHARGED -1579,2020-10-31,37522.7936316438,500,Elective,2020-11-09,Abnormal,1579,221,4,9,,,,DISCHARGED -1580,2021-08-19,26124.181564033926,243,Elective,2021-09-01,Inconclusive,1580,392,2,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1581,2021-08-26,49201.887875779714,335,Urgent,2021-09-25,Abnormal,1581,225,1,27,,,,DISCHARGED -1582,2019-06-14,34813.197208903104,323,Urgent,2019-06-21,Abnormal,1582,52,2,5,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1583,2020-11-23,16905.648702683087,121,Elective,2020-12-11,Normal,1583,427,3,28,,,,DISCHARGED -1584,2018-11-27,49405.83723633517,282,Urgent,2018-12-23,Abnormal,1584,354,1,12,,,,DISCHARGED -1585,2019-11-15,8408.061478502012,202,Urgent,2019-11-22,Inconclusive,1585,499,0,3,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -1586,2023-02-14,40698.308204961126,483,Urgent,2023-03-09,Inconclusive,1586,341,0,12,,,,DISCHARGED -1587,2022-08-09,9059.383911757295,286,Emergency,2022-08-18,Abnormal,1587,363,4,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -1588,2020-08-04,32550.981092199014,230,Urgent,2020-08-31,Inconclusive,1588,279,4,29,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -1589,2020-01-01,25062.904694820525,303,Emergency,2020-01-07,Inconclusive,1589,80,3,0,,,,DISCHARGED -1590,2019-06-19,45419.86480615151,368,Emergency,2019-07-09,Abnormal,1590,201,0,4,,,,DISCHARGED -1590,2022-06-04,39064.003103802985,459,Elective,2022-07-03,Normal,6065,157,0,27,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1591,2020-12-06,44771.85624926054,130,Urgent,2020-12-26,Normal,1591,119,0,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -1592,2023-08-28,13357.176322480962,446,Elective,,Abnormal,1592,58,0,16,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1593,2022-11-07,30030.42019546245,339,Emergency,2022-11-28,Normal,1593,493,2,17,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -1593,2019-06-13,42187.0691878531,127,Emergency,2019-06-21,Abnormal,2140,214,1,6,,,,DISCHARGED -1593,2019-08-06,27363.455929256776,305,Urgent,2019-08-20,Normal,5666,127,1,15,,,,DISCHARGED -1594,2022-03-19,28582.90276413069,247,Elective,2022-03-23,Inconclusive,1594,223,3,7,,,,DISCHARGED -1595,2020-01-07,4661.97592514057,489,Elective,2020-01-14,Abnormal,1595,208,2,11,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1596,2022-05-07,49898.20827675171,140,Emergency,2022-06-05,Normal,1596,369,0,13,,,,DISCHARGED -1596,2021-12-12,14276.452978951447,322,Elective,2021-12-28,Abnormal,2820,114,0,18,,,,DISCHARGED -1597,2021-04-17,10594.497573444967,222,Elective,2021-04-25,Abnormal,1597,208,4,10,,,,DISCHARGED -1598,2021-12-25,7799.003444567236,203,Urgent,2022-01-06,Abnormal,1598,13,4,11,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -1599,2019-09-14,43533.68721416263,239,Elective,2019-09-30,Abnormal,1599,8,3,12,,,,DISCHARGED -1600,2023-05-11,44350.5286952169,261,Elective,2023-05-28,Inconclusive,1600,39,0,7,,,,DISCHARGED -1601,2021-03-11,41913.25053234611,173,Urgent,2021-03-19,Abnormal,1601,449,3,0,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -1602,2021-10-29,34623.58127952162,428,Emergency,2021-11-14,Abnormal,1602,236,2,8,,,,DISCHARGED -1603,2022-04-06,47618.35565392174,159,Elective,2022-05-06,Abnormal,1603,280,1,27,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -1604,2023-08-20,3730.572416681823,206,Urgent,,Normal,1604,358,0,1,,,,OPEN -1605,2023-04-11,8337.67786285797,480,Urgent,2023-04-30,Normal,1605,200,2,13,,,,DISCHARGED -1606,2023-03-24,16449.288806209093,354,Urgent,2023-04-06,Inconclusive,1606,245,0,12,,,,DISCHARGED -1607,2022-11-21,43756.01489579732,226,Urgent,2022-12-14,Normal,1607,277,4,15,,,,DISCHARGED -1608,2022-12-20,49028.82867743158,335,Urgent,2022-12-24,Abnormal,1608,234,3,1,,,,DISCHARGED -1609,2018-12-28,34385.611931837746,469,Elective,2019-01-03,Abnormal,1609,493,4,3,,,,DISCHARGED -1610,2020-07-24,40304.11805818253,449,Elective,2020-08-20,Inconclusive,1610,3,1,11,,,,DISCHARGED -1611,2019-07-06,31352.567947138643,388,Urgent,2019-07-28,Abnormal,1611,153,4,15,,,,DISCHARGED -1612,2019-10-06,21616.487340415264,187,Urgent,2019-11-03,Normal,1612,441,0,9,,,,DISCHARGED -1613,2022-04-18,11546.685093469854,337,Emergency,2022-05-12,Inconclusive,1613,28,4,2,,,,DISCHARGED -1614,2022-09-17,9990.811232952174,243,Urgent,2022-09-18,Inconclusive,1614,108,0,3,,,,DISCHARGED -1615,2019-09-20,14838.197617728732,101,Urgent,2019-09-25,Normal,1615,97,1,5,,,,DISCHARGED -1616,2022-02-04,6600.128643976353,132,Emergency,2022-02-07,Abnormal,1616,214,4,22,,,,DISCHARGED -1617,2023-08-24,13939.455633533002,475,Urgent,2023-09-20,Inconclusive,1617,292,3,4,,,,DISCHARGED -1618,2020-06-17,22622.770977671207,238,Urgent,2020-06-26,Abnormal,1618,74,3,17,,,,DISCHARGED -1618,2022-12-29,32144.19291591066,465,Urgent,2023-01-28,Normal,4240,325,3,2,,,,DISCHARGED -1619,2022-11-11,9732.832837619077,237,Urgent,2022-12-01,Normal,1619,145,4,9,,,,DISCHARGED -1619,2023-10-16,7004.712221292044,179,Emergency,2023-11-05,Normal,8015,127,4,10,,,,DISCHARGED -1620,2022-06-07,46651.11799627453,234,Emergency,2022-06-30,Abnormal,1620,340,4,18,,,,DISCHARGED -1621,2019-02-10,28587.75781766353,253,Elective,2019-02-23,Abnormal,1621,41,0,13,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -1622,2022-03-27,17210.356394974835,440,Urgent,2022-04-06,Normal,1622,355,1,20,,,,DISCHARGED -1623,2019-11-16,48063.48989423363,121,Urgent,2019-11-26,Inconclusive,1623,40,3,27,,,,DISCHARGED -1624,2021-03-19,17960.330687829704,478,Urgent,2021-04-06,Abnormal,1624,421,0,10,,,,DISCHARGED -1625,2022-10-21,21001.131138557284,164,Emergency,2022-11-18,Abnormal,1625,33,3,27,,,,DISCHARGED -1626,2022-01-23,39720.17072696117,204,Emergency,2022-02-18,Normal,1626,16,0,20,,,,DISCHARGED -1627,2023-08-08,44924.82665964953,108,Urgent,,Abnormal,1627,164,4,3,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,OPEN -1628,2021-10-01,9929.680402414138,373,Urgent,2021-10-08,Normal,1628,152,3,23,,,,DISCHARGED -1629,2019-06-18,38008.59422479103,220,Emergency,2019-06-24,Abnormal,1629,485,4,21,,,,DISCHARGED -1630,2023-02-10,30444.0359381278,287,Emergency,,Normal,1630,377,3,5,,,,OPEN -1631,2019-07-28,6109.029245576259,401,Elective,2019-08-03,Normal,1631,75,2,16,,,,DISCHARGED -1632,2020-06-23,9032.24588452845,458,Emergency,2020-06-25,Normal,1632,86,0,21,,,,DISCHARGED -1633,2020-02-18,30737.58690067896,286,Urgent,2020-03-06,Inconclusive,1633,116,2,18,,,,DISCHARGED -1634,2021-01-16,19428.59802448125,468,Emergency,2021-02-10,Normal,1634,361,0,12,,,,DISCHARGED -1635,2020-10-11,33636.86245968776,444,Urgent,2020-11-08,Inconclusive,1635,341,1,21,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1636,2021-04-12,29244.57786835185,184,Elective,2021-05-01,Abnormal,1636,468,3,9,,,,DISCHARGED -1637,2023-02-17,33066.425715574056,173,Emergency,2023-03-10,Normal,1637,26,1,28,,,,DISCHARGED -1638,2023-02-13,11767.73144327441,251,Elective,2023-03-07,Inconclusive,1638,312,1,10,,,,DISCHARGED -1639,2020-12-01,42020.81237998765,425,Elective,2020-12-21,Normal,1639,286,0,28,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -1640,2020-02-20,28249.404302956627,348,Elective,2020-03-12,Inconclusive,1640,133,2,5,,,,DISCHARGED -1640,2020-10-18,2127.119775493846,164,Emergency,2020-11-12,Abnormal,3431,218,4,1,,,,DISCHARGED -1641,2023-02-06,7111.758125266638,174,Elective,,Abnormal,1641,167,0,0,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,OPEN -1642,2019-07-06,22635.866617515952,292,Urgent,2019-07-14,Inconclusive,1642,97,4,10,,,,DISCHARGED -1643,2023-05-15,13340.210052651226,351,Elective,2023-06-03,Inconclusive,1643,267,1,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -1644,2023-05-21,33533.5820435409,477,Emergency,2023-06-04,Abnormal,1644,236,4,2,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1645,2022-03-31,40549.54544932743,463,Emergency,2022-04-02,Abnormal,1645,308,2,4,,,,DISCHARGED -1646,2021-05-14,31284.744541393306,382,Elective,2021-05-20,Inconclusive,1646,454,0,14,,,,DISCHARGED -1647,2020-08-01,9763.439082978002,396,Urgent,2020-08-02,Inconclusive,1647,393,2,14,,,,DISCHARGED -1648,2019-10-03,40844.41203928748,226,Urgent,2019-10-06,Inconclusive,1648,172,2,3,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -1649,2023-09-03,21921.308292920243,267,Emergency,2023-09-29,Normal,1649,400,0,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1649,2023-06-04,15803.855756430356,320,Elective,,Inconclusive,7318,409,2,3,,,,OPEN -1651,2020-11-08,15821.832530223495,437,Emergency,2020-12-05,Inconclusive,1651,468,3,7,,,,DISCHARGED -1652,2019-06-26,39582.886674268826,162,Emergency,2019-07-09,Normal,1652,475,3,6,,,,DISCHARGED -1653,2018-12-31,3325.889943715688,110,Urgent,2019-01-23,Normal,1653,189,3,25,,,,DISCHARGED -1654,2023-02-08,1539.4352789185646,262,Urgent,2023-02-09,Abnormal,1654,121,4,24,,,,DISCHARGED -1655,2018-12-09,15901.473686414514,179,Emergency,2018-12-20,Abnormal,1655,45,2,16,,,,DISCHARGED -1656,2023-10-05,6407.487406102353,413,Urgent,2023-11-01,Abnormal,1656,63,0,14,,,,DISCHARGED -1657,2023-03-23,30413.431082880103,474,Urgent,2023-04-04,Abnormal,1657,129,0,4,,,,DISCHARGED -1658,2022-02-08,28154.494737076755,433,Urgent,2022-02-13,Abnormal,1658,309,4,12,,,,DISCHARGED -1658,2022-10-08,11190.70399174364,168,Emergency,2022-10-27,Inconclusive,8450,362,0,3,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -1659,2021-06-06,48143.46994562864,384,Urgent,2021-07-04,Abnormal,1659,192,3,21,,,,DISCHARGED -1660,2020-10-11,35948.56128447213,339,Urgent,2020-11-09,Normal,1660,306,2,16,,,,DISCHARGED -1661,2022-09-23,5079.581673657241,435,Urgent,2022-10-20,Normal,1661,180,0,21,,,,DISCHARGED -1662,2022-02-16,32616.817755984383,136,Elective,2022-02-25,Inconclusive,1662,291,0,16,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -1663,2022-05-14,8653.46498716628,262,Emergency,2022-05-20,Inconclusive,1663,370,1,13,,,,DISCHARGED -1664,2020-02-15,31203.922135856315,189,Elective,2020-03-12,Normal,1664,281,1,13,,,,DISCHARGED -1665,2023-03-17,48876.96397776978,267,Elective,,Abnormal,1665,28,1,16,,,,OPEN -1666,2023-06-06,22267.19192755914,168,Urgent,,Inconclusive,1666,148,2,7,,,,OPEN -1667,2020-11-04,32824.66280310961,157,Elective,2020-12-03,Normal,1667,266,3,1,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1667,2021-04-10,44641.18763242762,331,Elective,2021-04-21,Normal,7988,295,3,25,,,,DISCHARGED -1668,2022-06-07,36296.85633357853,415,Emergency,2022-06-20,Normal,1668,10,3,12,,,,DISCHARGED -1669,2020-02-21,25760.993504867,350,Urgent,2020-03-10,Inconclusive,1669,163,2,29,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1670,2021-01-17,3361.70180983459,142,Urgent,2021-01-22,Normal,1670,112,2,21,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1671,2021-05-22,46730.33343528532,312,Elective,2021-06-20,Inconclusive,1671,186,1,15,,,,DISCHARGED -1671,2022-02-16,4980.572045257291,499,Elective,2022-03-13,Normal,4731,294,0,29,,,,DISCHARGED -1671,2019-04-15,4426.005007154834,262,Urgent,2019-04-30,Abnormal,9764,231,4,15,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -1672,2020-12-16,4001.108014179361,200,Emergency,2021-01-07,Abnormal,1672,226,4,5,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1673,2023-04-20,30930.41716660681,490,Urgent,2023-05-01,Normal,1673,309,0,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -1674,2020-01-13,23598.86083668433,115,Urgent,2020-01-22,Inconclusive,1674,97,1,23,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -1675,2019-11-18,5052.2292107646335,312,Emergency,2019-12-12,Abnormal,1675,54,0,3,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -1677,2023-07-03,43031.03142926738,120,Urgent,,Inconclusive,1677,110,0,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -1678,2022-11-20,42300.672082277386,405,Elective,2022-11-30,Normal,1678,151,4,5,,,,DISCHARGED -1679,2019-10-06,43144.08589750818,235,Emergency,2019-10-28,Abnormal,1679,245,1,3,,,,DISCHARGED -1680,2020-05-16,21697.23315609584,122,Emergency,2020-06-01,Abnormal,1680,405,2,17,,,,DISCHARGED -1681,2018-12-03,19067.614144283914,222,Urgent,2018-12-15,Abnormal,1681,68,4,5,,,,DISCHARGED -1682,2019-04-12,4578.992476601186,199,Emergency,2019-04-25,Normal,1682,311,2,25,,,,DISCHARGED -1683,2020-12-09,2684.244773265752,379,Elective,2020-12-12,Abnormal,1683,288,1,4,,,,DISCHARGED -1684,2019-01-16,5296.7476449354535,495,Emergency,2019-01-24,Inconclusive,1684,249,0,26,,,,DISCHARGED -1685,2021-02-18,27219.886327918648,229,Urgent,2021-03-16,Abnormal,1685,35,3,8,,,,DISCHARGED -1685,2020-09-27,27049.019366713183,212,Elective,2020-10-12,Normal,8611,238,3,10,,,,DISCHARGED -1686,2023-10-22,17485.032450769977,199,Emergency,,Inconclusive,1686,147,1,5,,,,OPEN -1687,2020-09-01,40419.15509498384,471,Emergency,2020-09-02,Abnormal,1687,466,3,29,,,,DISCHARGED -1688,2021-05-12,23695.64148451712,295,Urgent,2021-06-05,Normal,1688,226,2,15,,,,DISCHARGED -1689,2019-10-19,22819.965042485725,172,Urgent,2019-11-04,Abnormal,1689,243,3,18,,,,DISCHARGED -1690,2022-10-11,26331.99711885888,177,Elective,2022-10-22,Abnormal,1690,490,1,10,,,,DISCHARGED -1692,2022-06-19,40026.5742483302,231,Urgent,2022-07-19,Inconclusive,1692,336,1,20,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -1693,2021-05-20,28808.713152131677,461,Elective,2021-06-19,Inconclusive,1693,445,2,14,,,,DISCHARGED -1694,2020-07-18,33327.360290063094,453,Elective,2020-07-24,Abnormal,1694,364,3,25,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -1695,2021-11-21,49668.60364698613,430,Emergency,2021-12-11,Normal,1695,490,3,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -1696,2023-09-06,46838.34345875178,180,Elective,2023-10-02,Abnormal,1696,481,0,8,,,,DISCHARGED -1697,2023-07-05,6192.463358169395,404,Urgent,2023-07-15,Abnormal,1697,200,4,23,,,,DISCHARGED -1698,2023-10-17,9109.467333036298,119,Emergency,2023-11-06,Abnormal,1698,153,1,18,,,,DISCHARGED -1699,2019-07-30,11746.0548177155,429,Emergency,2019-08-10,Normal,1699,449,0,24,,,,DISCHARGED -1700,2019-08-02,49627.27990683305,151,Urgent,2019-08-26,Normal,1700,72,1,18,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -1701,2022-02-26,33058.53436262671,457,Elective,2022-03-18,Normal,1701,200,0,23,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -1702,2022-10-21,46028.33662326605,170,Urgent,2022-11-13,Abnormal,1702,295,4,25,,,,DISCHARGED -1703,2021-08-31,12728.619152147832,105,Urgent,2021-09-19,Inconclusive,1703,16,0,8,,,,DISCHARGED -1703,2023-03-11,44477.16899635639,162,Emergency,2023-04-03,Normal,8136,128,1,22,,,,DISCHARGED -1704,2023-05-02,1585.6029307854085,272,Emergency,2023-06-01,Inconclusive,1704,216,3,3,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -1705,2019-05-14,33284.41190849319,322,Elective,2019-05-31,Normal,1705,60,1,9,,,,DISCHARGED -1706,2022-01-30,23552.031014676013,440,Urgent,2022-02-15,Normal,1706,426,2,8,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -1707,2023-04-07,41482.60068515046,172,Urgent,2023-04-12,Normal,1707,103,2,18,,,,DISCHARGED -1708,2022-05-28,16679.02069074319,496,Urgent,2022-06-17,Abnormal,1708,41,2,14,,,,DISCHARGED -1709,2023-05-19,22822.99016277693,476,Emergency,2023-06-16,Inconclusive,1709,24,2,18,,,,DISCHARGED -1710,2020-01-08,28339.711203225117,302,Emergency,2020-01-10,Inconclusive,1710,38,4,1,,,,DISCHARGED -1710,2019-11-17,11818.093252196604,214,Urgent,2019-11-24,Abnormal,3753,290,3,9,,,,DISCHARGED -1711,2021-09-07,43572.41576362039,299,Urgent,2021-09-13,Normal,1711,130,3,18,,,,DISCHARGED -1712,2022-12-08,20289.62379154284,494,Urgent,2023-01-06,Normal,1712,497,1,16,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1713,2021-02-17,23931.500144936585,294,Urgent,2021-03-07,Normal,1713,228,0,19,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -1714,2020-03-29,31946.37749623787,211,Elective,2020-04-06,Normal,1714,107,1,23,,,,DISCHARGED -1715,2022-10-15,39535.03588260112,182,Elective,2022-10-31,Normal,1715,171,1,20,,,,DISCHARGED -1716,2022-04-01,49155.40764559618,184,Urgent,2022-04-21,Inconclusive,1716,434,1,1,,,,DISCHARGED -1717,2021-05-16,3128.3358006571398,481,Elective,2021-05-31,Abnormal,1717,477,1,18,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1718,2019-02-26,19607.48740318562,174,Urgent,2019-02-27,Abnormal,1718,101,3,16,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -1719,2020-04-07,39106.76178026233,263,Elective,2020-04-08,Abnormal,1719,353,0,17,,,,DISCHARGED -1720,2021-12-14,42165.45122652554,382,Elective,2021-12-20,Inconclusive,1720,11,1,16,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -1721,2023-04-21,17490.76997039526,239,Emergency,2023-05-08,Abnormal,1721,274,3,1,,,,DISCHARGED -1722,2020-12-24,30681.39829776015,179,Emergency,2021-01-15,Inconclusive,1722,100,1,18,,,,DISCHARGED -1723,2021-05-18,19508.68023534052,408,Emergency,2021-05-21,Abnormal,1723,43,2,0,,,,DISCHARGED -1724,2019-09-28,33708.3837467538,120,Urgent,2019-10-08,Abnormal,1724,442,1,10,,,,DISCHARGED -1725,2020-02-25,41605.48316912713,440,Urgent,2020-03-11,Inconclusive,1725,304,1,24,,,,DISCHARGED -1725,2019-01-01,5545.337874746683,495,Urgent,2019-01-31,Normal,4534,444,4,9,,,,DISCHARGED -1726,2022-04-13,42895.64382232488,308,Elective,2022-04-26,Abnormal,1726,16,2,4,,,,DISCHARGED -1727,2022-04-30,32287.266485462696,405,Emergency,2022-05-27,Normal,1727,329,0,15,,,,DISCHARGED -1728,2020-11-14,20089.26616869234,288,Emergency,2020-12-12,Abnormal,1728,56,1,23,,,,DISCHARGED -1729,2019-07-26,49014.336975744256,387,Emergency,2019-08-02,Inconclusive,1729,310,0,4,,,,DISCHARGED -1730,2022-10-20,13087.863934527351,193,Emergency,2022-11-12,Abnormal,1730,496,2,23,,,,DISCHARGED -1731,2020-02-02,25850.433904634367,155,Urgent,2020-02-17,Inconclusive,1731,302,1,22,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -1732,2021-04-09,37095.79224097199,199,Emergency,2021-04-11,Abnormal,1732,11,4,11,,,,DISCHARGED -1733,2021-08-04,41069.89692189269,474,Elective,2021-08-14,Abnormal,1733,317,3,3,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -1734,2022-04-11,9736.793113344374,202,Urgent,2022-04-18,Abnormal,1734,79,4,22,,,,DISCHARGED -1735,2020-01-30,47967.04292224845,136,Urgent,2020-02-01,Normal,1735,215,4,5,,,,DISCHARGED -1736,2021-02-06,25917.92370801676,278,Emergency,2021-02-11,Abnormal,1736,338,3,18,,,,DISCHARGED -1737,2019-08-13,16520.248829823708,491,Urgent,2019-09-03,Abnormal,1737,263,3,8,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -1738,2020-12-11,29055.40372254097,238,Elective,2020-12-26,Normal,1738,478,3,11,,,,DISCHARGED -1739,2019-03-05,8741.897068889895,341,Elective,2019-03-28,Abnormal,1739,148,1,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1740,2020-07-31,44432.74777932138,189,Elective,2020-08-24,Inconclusive,1740,80,0,14,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1740,2022-01-31,46231.48230771744,167,Elective,2022-03-01,Normal,7027,214,0,15,,,,DISCHARGED -1741,2021-04-14,14289.055290364904,344,Urgent,2021-04-25,Abnormal,1741,484,3,12,,,,DISCHARGED -1742,2021-01-29,32855.941966081904,247,Elective,2021-02-23,Normal,1742,373,4,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1743,2022-07-03,24956.22097763945,489,Emergency,2022-07-16,Abnormal,1743,463,2,29,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -1744,2020-10-27,49672.33501232845,422,Elective,2020-10-30,Normal,1744,197,3,20,,,,DISCHARGED -1744,2021-02-13,49544.01210865921,133,Elective,2021-03-14,Abnormal,5591,199,4,23,,,,DISCHARGED -1745,2019-10-10,19952.60298426153,335,Urgent,2019-11-05,Normal,1745,24,4,6,,,,DISCHARGED -1746,2023-04-28,14412.032243801204,225,Urgent,2023-05-20,Abnormal,1746,465,1,24,,,,DISCHARGED -1746,2022-07-22,41801.92684003736,239,Urgent,2022-08-17,Normal,6051,88,1,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1747,2020-04-13,33590.01511294825,275,Emergency,2020-05-08,Inconclusive,1747,267,0,19,,,,DISCHARGED -1748,2021-03-08,49930.03160105285,236,Elective,2021-03-15,Inconclusive,1748,142,0,3,,,,DISCHARGED -1749,2018-12-19,15662.350217555424,486,Urgent,2019-01-06,Abnormal,1749,58,2,10,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -1750,2023-06-07,31285.156892657167,432,Elective,2023-06-09,Inconclusive,1750,409,2,7,,,,DISCHARGED -1751,2022-04-29,22959.82683395974,262,Urgent,2022-05-20,Inconclusive,1751,488,2,5,,,,DISCHARGED -1752,2020-07-10,44726.75416710159,385,Urgent,2020-07-23,Abnormal,1752,364,2,24,,,,DISCHARGED -1753,2019-08-23,12445.396520202778,132,Elective,2019-08-27,Abnormal,1753,25,4,29,Patient reports a history of frequent urinary tract infections.,Prescribe antibiotics for current infection and provide guidance on preventive measures.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1754,2023-03-10,24735.61941327937,222,Urgent,2023-03-29,Abnormal,1754,46,4,9,,,,DISCHARGED -1755,2022-07-25,18401.776355382084,381,Urgent,2022-08-05,Inconclusive,1755,287,0,29,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -1756,2022-02-08,22792.62736010912,452,Urgent,2022-03-04,Normal,1756,265,1,6,,,,DISCHARGED -1757,2023-08-17,23703.43028844692,299,Emergency,2023-08-31,Abnormal,1757,15,1,6,,,,DISCHARGED -1758,2020-07-31,18613.166209777763,261,Emergency,2020-08-02,Normal,1758,198,3,3,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -1759,2023-01-09,47477.9076836322,428,Urgent,,Abnormal,1759,400,4,2,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,OPEN -1760,2019-07-02,24239.16822315615,108,Urgent,2019-07-20,Normal,1760,406,2,23,,,,DISCHARGED -1761,2022-06-13,37559.36514392631,205,Elective,2022-06-25,Abnormal,1761,281,2,6,,,,DISCHARGED -1762,2021-05-09,12050.859518625664,326,Emergency,2021-05-12,Inconclusive,1762,468,3,3,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1763,2021-03-16,36518.67081941626,348,Emergency,2021-03-29,Abnormal,1763,85,1,12,,,,DISCHARGED -1764,2023-10-23,19298.38207896289,349,Elective,2023-11-21,Abnormal,1764,249,2,19,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -1765,2019-12-13,2605.136395514628,146,Elective,2019-12-26,Abnormal,1765,390,1,16,,,,DISCHARGED -1766,2021-06-12,44045.00829624264,184,Elective,2021-06-22,Inconclusive,1766,269,3,26,,,,DISCHARGED -1767,2023-03-13,10187.720543271913,463,Elective,2023-04-09,Normal,1767,334,1,6,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1767,2021-03-13,36544.75046404455,311,Elective,2021-03-17,Normal,4218,116,1,16,,,,DISCHARGED -1768,2020-04-24,11766.05827492471,377,Urgent,2020-05-05,Abnormal,1768,6,1,25,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1769,2019-12-24,47630.10051566829,141,Urgent,2020-01-03,Normal,1769,136,2,25,,,,DISCHARGED -1770,2022-06-27,15887.717804693268,234,Urgent,2022-07-12,Abnormal,1770,370,0,3,,,,DISCHARGED -1770,2019-05-08,48466.61597695912,129,Urgent,2019-06-03,Inconclusive,7521,175,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -1771,2019-07-19,4918.746364425382,413,Emergency,2019-08-11,Normal,1771,327,1,29,,,,DISCHARGED -1772,2022-06-17,38030.58842549773,300,Elective,2022-07-10,Normal,1772,497,1,2,,,,DISCHARGED -1773,2020-10-23,45926.57863866224,383,Elective,2020-11-12,Abnormal,1773,314,1,10,,,,DISCHARGED -1774,2022-04-26,17586.22313133439,464,Emergency,2022-05-24,Normal,1774,214,0,2,,,,DISCHARGED -1774,2021-02-15,42636.21118049487,185,Elective,2021-02-25,Inconclusive,8086,476,3,11,,,,DISCHARGED -1775,2021-01-20,8883.185798579063,111,Emergency,2021-02-19,Abnormal,1775,81,2,0,,,,DISCHARGED -1776,2021-12-05,35807.01215756193,419,Urgent,2021-12-27,Inconclusive,1776,222,0,3,,,,DISCHARGED -1778,2023-08-28,13668.24552120096,221,Emergency,,Normal,1778,477,1,13,,,,OPEN -1779,2023-07-06,45716.32803350753,260,Emergency,2023-07-24,Normal,1779,371,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -1780,2021-09-26,45528.0743677317,442,Urgent,2021-10-08,Abnormal,1780,422,0,13,,,,DISCHARGED -1781,2023-04-27,23860.374485493845,284,Emergency,,Abnormal,1781,482,0,12,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -1782,2022-05-25,38729.127161801,230,Urgent,2022-06-02,Abnormal,1782,401,3,12,,,,DISCHARGED -1783,2023-04-02,40983.25246829903,260,Emergency,,Normal,1783,442,4,23,,,,OPEN -1784,2020-08-20,25637.02724477805,389,Emergency,2020-09-02,Abnormal,1784,489,2,14,,,,DISCHARGED -1785,2023-03-23,8831.530945090177,462,Elective,,Abnormal,1785,102,3,16,,,,OPEN -1785,2019-11-13,43570.11250217532,468,Emergency,2019-12-05,Inconclusive,5152,272,3,11,Persistent bad breath,"Dental hygiene measures, treatment of underlying dental or oral conditions, and lifestyle changes.","K02.9 - Dental caries, unspecified",DISCHARGED -1786,2021-12-23,43208.57344830517,296,Urgent,2022-01-03,Abnormal,1786,13,4,29,,,,DISCHARGED -1787,2023-04-25,44382.55840928534,251,Elective,2023-05-16,Inconclusive,1787,158,3,21,,,,DISCHARGED -1788,2019-09-01,44916.09826864657,353,Urgent,2019-09-28,Inconclusive,1788,151,0,22,,,,DISCHARGED -1789,2021-04-12,49104.60691172034,332,Emergency,2021-05-05,Inconclusive,1789,482,0,25,,,,DISCHARGED -1790,2020-11-09,39509.626037714654,471,Emergency,2020-11-14,Abnormal,1790,107,1,13,,,,DISCHARGED -1791,2021-06-03,7531.642746334843,470,Emergency,2021-06-19,Abnormal,1791,187,3,11,,,,DISCHARGED -1792,2019-12-27,6588.512196506966,132,Urgent,2020-01-16,Abnormal,1792,300,1,17,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1793,2022-11-21,2295.1865231349657,353,Emergency,2022-12-20,Inconclusive,1793,97,2,3,,,,DISCHARGED -1794,2020-06-19,18566.443042045958,399,Emergency,2020-06-24,Inconclusive,1794,130,0,26,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -1795,2022-09-26,37641.013848260205,253,Elective,2022-10-21,Inconclusive,1795,292,2,13,,,,DISCHARGED -1796,2021-02-23,31396.935064698115,481,Elective,2021-03-06,Inconclusive,1796,170,4,18,,,,DISCHARGED -1797,2023-01-06,19899.698202309253,450,Emergency,2023-01-16,Abnormal,1797,423,0,28,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -1798,2019-02-25,15752.505577282309,431,Elective,2019-03-03,Normal,1798,473,2,12,,,,DISCHARGED -1798,2019-05-01,17471.81601389419,401,Elective,2019-05-20,Normal,1988,182,4,24,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -1799,2022-04-28,7140.174881829507,271,Emergency,2022-05-23,Normal,1799,470,2,29,,,,DISCHARGED -1800,2019-11-29,34353.53541581946,433,Urgent,2019-12-22,Normal,1800,363,4,22,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -1801,2018-11-05,34521.47185557458,178,Elective,2018-12-04,Inconclusive,1801,38,4,17,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1801,2021-05-26,31408.13641635991,187,Urgent,2021-05-31,Abnormal,4620,14,0,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -1801,2022-02-16,6786.236349478734,472,Emergency,2022-03-11,Abnormal,5315,375,1,27,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -1802,2021-12-16,22897.344520048595,184,Elective,2022-01-05,Inconclusive,1802,496,4,5,,,,DISCHARGED -1803,2023-01-05,2554.6947434757785,366,Emergency,,Abnormal,1803,3,4,8,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",OPEN -1804,2023-08-21,9753.597653821844,375,Elective,2023-09-12,Normal,1804,348,0,11,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -1805,2019-09-13,47419.87576436537,326,Elective,2019-10-05,Inconclusive,1805,469,1,18,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1806,2022-09-19,38071.57683517128,337,Elective,2022-10-17,Abnormal,1806,408,3,13,,,,DISCHARGED -1807,2019-07-17,5532.607821408728,270,Emergency,2019-07-31,Normal,1807,396,3,14,,,,DISCHARGED -1807,2021-08-20,17436.021757767616,277,Urgent,2021-09-16,Inconclusive,3032,209,1,10,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1808,2018-12-09,4700.425956265227,276,Emergency,2019-01-08,Inconclusive,1808,160,2,5,,,,DISCHARGED -1809,2022-06-19,29103.992572609222,435,Emergency,2022-06-21,Abnormal,1809,15,0,13,,,,DISCHARGED -1810,2021-05-01,11777.147357721204,315,Urgent,2021-05-27,Inconclusive,1810,492,1,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -1811,2021-09-21,32646.69447758125,161,Emergency,2021-09-30,Inconclusive,1811,425,3,18,,,,DISCHARGED -1812,2021-06-22,35611.2194280443,226,Emergency,2021-07-04,Inconclusive,1812,107,4,19,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1813,2021-09-28,35022.835383073776,187,Elective,2021-10-26,Abnormal,1813,381,3,24,,,,DISCHARGED -1813,2019-07-23,32166.612051579497,379,Urgent,2019-08-03,Inconclusive,2987,449,4,10,,,,DISCHARGED -1813,2023-04-05,10586.566650090606,324,Elective,2023-04-14,Normal,5167,310,0,28,,,,DISCHARGED -1814,2020-12-03,46675.02746064535,447,Elective,2020-12-24,Inconclusive,1814,226,4,23,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -1815,2023-03-03,46339.13594657636,199,Elective,2023-03-16,Inconclusive,1815,169,1,16,,,,DISCHARGED -1816,2022-11-06,48879.34401722974,139,Urgent,2022-11-26,Abnormal,1816,33,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -1817,2020-01-16,9606.90312498718,127,Emergency,2020-01-23,Normal,1817,413,2,27,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -1818,2021-03-22,49142.04233175327,163,Emergency,2021-04-17,Inconclusive,1818,250,1,26,,,,DISCHARGED -1818,2020-01-02,6005.408027048361,411,Elective,2020-01-30,Normal,3084,246,0,16,,,,DISCHARGED -1819,2022-10-15,40451.95928616724,497,Emergency,2022-11-04,Inconclusive,1819,268,1,22,,,,DISCHARGED -1820,2021-07-11,20185.63560666859,431,Elective,2021-07-31,Inconclusive,1820,140,2,2,,,,DISCHARGED -1821,2021-10-11,12387.11981438794,151,Urgent,2021-10-24,Abnormal,1821,273,0,13,,,,DISCHARGED -1822,2023-10-16,39747.99908426908,156,Elective,,Abnormal,1822,415,3,26,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",OPEN -1823,2020-04-30,10645.75325129062,399,Emergency,2020-05-26,Inconclusive,1823,95,2,6,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -1824,2022-07-21,15742.940946263932,347,Emergency,2022-07-30,Inconclusive,1824,226,0,24,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -1825,2020-02-14,40433.10369339495,122,Elective,2020-02-27,Inconclusive,1825,378,4,18,,,,DISCHARGED -1826,2020-01-27,14557.977822890807,106,Emergency,2020-02-03,Abnormal,1826,38,1,2,,,,DISCHARGED -1827,2021-04-20,19844.044740370973,278,Emergency,2021-05-12,Abnormal,1827,301,0,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -1828,2022-11-15,38074.05939662491,355,Elective,2022-11-17,Abnormal,1828,499,1,25,,,,DISCHARGED -1829,2019-07-04,15488.79306105153,432,Elective,2019-08-03,Abnormal,1829,28,4,16,,,,DISCHARGED -1830,2019-03-09,31240.501992157708,426,Emergency,2019-04-05,Inconclusive,1830,445,0,8,,,,DISCHARGED -1831,2023-04-17,17959.755087190377,365,Urgent,2023-04-25,Abnormal,1831,496,3,21,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -1832,2022-05-02,39247.26840902522,496,Elective,2022-06-01,Abnormal,1832,476,2,5,,,,DISCHARGED -1833,2020-06-02,37119.01527783798,305,Elective,2020-06-19,Abnormal,1833,317,0,23,,,,DISCHARGED -1834,2022-02-28,46994.167365844194,451,Emergency,2022-03-10,Abnormal,1834,244,4,26,,,,DISCHARGED -1835,2019-09-25,19894.73879602928,208,Urgent,2019-10-03,Normal,1835,235,0,20,,,,DISCHARGED -1836,2019-04-13,16339.485108133296,346,Urgent,2019-05-09,Normal,1836,184,1,8,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -1837,2021-08-18,8722.9907593805,253,Emergency,2021-09-04,Normal,1837,271,0,26,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -1838,2021-06-03,32316.35635606747,303,Urgent,2021-06-06,Abnormal,1838,439,3,4,,,,DISCHARGED -1839,2023-06-02,4348.041193289953,388,Urgent,,Normal,1839,235,0,1,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",OPEN -1840,2019-02-16,17002.03878733363,449,Emergency,2019-03-06,Inconclusive,1840,238,2,21,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -1840,2019-09-08,31484.254282814152,497,Urgent,2019-09-14,Abnormal,3773,376,0,14,,,,DISCHARGED -1841,2023-04-13,46295.82039528607,498,Urgent,,Normal,1841,265,1,8,,,,OPEN -1842,2023-07-20,40410.80646270186,238,Urgent,2023-08-15,Normal,1842,413,0,18,,,,DISCHARGED -1842,2023-03-08,19327.59177761065,476,Urgent,2023-03-09,Normal,5646,408,3,9,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -1843,2022-03-24,4284.597728195915,213,Urgent,2022-04-04,Abnormal,1843,358,4,3,,,,DISCHARGED -1844,2023-03-27,20774.565915105068,482,Urgent,2023-04-03,Abnormal,1844,339,0,9,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -1846,2019-12-15,46711.698029371306,394,Elective,2020-01-12,Normal,1846,388,0,26,,,,DISCHARGED -1847,2021-10-23,33509.58365506775,400,Urgent,2021-10-31,Abnormal,1847,64,2,7,,,,DISCHARGED -1848,2023-09-28,10338.40689083627,322,Elective,2023-10-26,Inconclusive,1848,477,3,21,,,,DISCHARGED -1848,2018-11-02,22533.32023233502,147,Elective,2018-11-20,Normal,1919,176,4,12,,,,DISCHARGED -1849,2021-10-30,8601.427725112477,121,Urgent,2021-11-03,Inconclusive,1849,2,1,6,,,,DISCHARGED -1850,2020-06-03,40317.75495926055,141,Urgent,2020-06-07,Abnormal,1850,428,0,6,,,,DISCHARGED -1851,2019-09-19,36394.03514975964,437,Urgent,2019-09-30,Inconclusive,1851,141,4,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -1852,2020-06-07,2943.0267782070614,195,Emergency,2020-06-13,Inconclusive,1852,375,1,14,,,,DISCHARGED -1853,2023-04-02,33696.09719762407,156,Emergency,,Inconclusive,1853,157,3,11,,,,OPEN -1854,2023-02-25,13441.01963869145,348,Emergency,2023-03-09,Abnormal,1854,497,3,15,,,,DISCHARGED -1855,2023-01-23,25622.162798918784,332,Urgent,2023-02-05,Abnormal,1855,323,4,5,,,,DISCHARGED -1856,2020-06-14,9920.695809958854,351,Elective,2020-07-07,Normal,1856,145,1,27,,,,DISCHARGED -1857,2021-02-07,28425.22694268,479,Elective,2021-02-19,Inconclusive,1857,445,3,8,,,,DISCHARGED -1858,2018-11-25,24452.80579696671,291,Elective,2018-12-21,Normal,1858,292,4,2,,,,DISCHARGED -1859,2020-08-04,47317.310855331016,453,Emergency,2020-08-08,Normal,1859,152,3,7,,,,DISCHARGED -1860,2019-04-24,22999.625918643214,121,Elective,2019-05-22,Normal,1860,431,3,6,,,,DISCHARGED -1861,2023-02-16,28562.1130136861,382,Elective,2023-02-26,Inconclusive,1861,192,3,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -1862,2022-02-20,49559.84190109701,288,Urgent,2022-03-05,Inconclusive,1862,436,2,25,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -1863,2020-01-07,11008.533386828947,266,Emergency,2020-01-28,Inconclusive,1863,493,1,12,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -1864,2019-07-01,44139.10380111014,397,Urgent,2019-07-08,Abnormal,1864,462,4,18,,,,DISCHARGED -1864,2020-11-19,46178.69739013859,167,Emergency,2020-11-30,Normal,7770,72,4,29,,,,DISCHARGED -1865,2023-01-11,7105.675175599059,467,Emergency,,Normal,1865,398,1,6,,,,OPEN -1866,2023-02-25,41242.35173047311,154,Urgent,,Inconclusive,1866,304,1,9,,,,OPEN -1867,2023-10-15,3072.338808929336,231,Urgent,2023-10-19,Normal,1867,376,1,24,,,,DISCHARGED -1868,2021-11-01,16417.387415955425,280,Elective,2021-11-30,Normal,1868,343,1,11,,,,DISCHARGED -1868,2019-03-15,39242.05464486015,156,Elective,2019-04-01,Normal,4641,451,0,25,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -1869,2021-06-23,20359.316840134477,254,Urgent,2021-06-30,Abnormal,1869,139,4,2,,,,DISCHARGED -1870,2022-07-28,4630.373225070944,287,Elective,2022-08-07,Abnormal,1870,186,0,25,,,,DISCHARGED -1871,2020-07-23,20754.495290162788,427,Emergency,2020-08-22,Normal,1871,292,3,24,,,,DISCHARGED -1872,2019-09-15,28695.928883616696,142,Elective,2019-10-15,Inconclusive,1872,60,3,28,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -1873,2019-07-19,43919.10652521338,106,Emergency,2019-07-24,Inconclusive,1873,484,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1874,2019-03-10,27564.73570021476,162,Urgent,2019-04-02,Normal,1874,426,3,11,,,,DISCHARGED -1875,2022-03-10,9731.910735275478,349,Elective,2022-03-12,Inconclusive,1875,379,1,18,,,,DISCHARGED -1876,2021-06-18,7843.536505201325,127,Urgent,2021-06-20,Normal,1876,197,0,14,,,,DISCHARGED -1877,2021-06-09,31934.68531826172,393,Emergency,2021-06-29,Abnormal,1877,294,1,7,,,,DISCHARGED -1878,2021-05-18,48910.62014398547,105,Elective,2021-06-07,Abnormal,1878,439,3,11,,,,DISCHARGED -1879,2019-09-14,41199.28111607103,140,Elective,2019-10-01,Normal,1879,318,0,19,,,,DISCHARGED -1880,2019-08-18,26881.39320250615,482,Elective,2019-08-26,Inconclusive,1880,301,1,5,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -1881,2019-06-18,19397.21079566613,278,Elective,2019-06-20,Abnormal,1881,343,4,27,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -1882,2023-09-29,41082.13669718514,484,Elective,2023-10-13,Abnormal,1882,10,1,9,,,,DISCHARGED -1883,2019-07-28,18696.09480430217,163,Emergency,2019-07-29,Inconclusive,1883,61,3,1,,,,DISCHARGED -1884,2019-07-08,6663.714835225604,484,Emergency,2019-08-03,Normal,1884,332,0,23,,,,DISCHARGED -1885,2020-08-27,28977.6463860359,181,Elective,2020-09-16,Abnormal,1885,225,4,12,,,,DISCHARGED -1886,2020-05-06,17769.120841650492,191,Emergency,2020-05-31,Inconclusive,1886,152,0,24,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -1887,2022-12-27,42385.43544997359,398,Emergency,2023-01-13,Normal,1887,198,4,6,,,,DISCHARGED -1888,2023-06-15,45793.97348687594,370,Elective,2023-07-04,Normal,1888,51,0,7,,,,DISCHARGED -1889,2019-07-14,12326.52289143118,492,Elective,2019-07-22,Inconclusive,1889,259,3,22,,,,DISCHARGED -1890,2021-02-01,44194.43935454828,310,Elective,2021-02-09,Normal,1890,58,4,15,,,,DISCHARGED -1891,2020-01-22,1708.0346828317952,157,Elective,2020-02-14,Abnormal,1891,71,2,10,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -1892,2019-07-11,32186.121115637376,381,Elective,2019-08-10,Abnormal,1892,147,0,25,,,,DISCHARGED -1893,2020-05-29,29718.08361296356,424,Urgent,2020-06-10,Normal,1893,348,0,3,,,,DISCHARGED -1894,2021-06-19,19433.579581121485,345,Emergency,2021-06-22,Abnormal,1894,62,1,16,,,,DISCHARGED -1895,2019-04-12,27781.642165398494,141,Elective,2019-04-18,Abnormal,1895,309,4,15,,,,DISCHARGED -1896,2020-09-16,45518.72508291688,408,Emergency,2020-10-05,Normal,1896,372,2,18,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -1897,2021-12-27,14969.634638600914,463,Elective,2022-01-08,Inconclusive,1897,242,3,22,,,,DISCHARGED -1898,2023-08-12,11847.724675739692,473,Emergency,,Inconclusive,1898,492,1,26,,,,OPEN -1899,2019-09-27,1376.2348507610157,498,Emergency,2019-10-25,Normal,1899,365,2,10,,,,DISCHARGED -1900,2022-04-27,11580.471042970674,460,Emergency,2022-05-26,Inconclusive,1900,329,4,6,,,,DISCHARGED -1900,2022-03-25,8071.719887739294,397,Urgent,2022-04-19,Abnormal,9193,106,2,26,,,,DISCHARGED -1901,2018-12-31,21757.650788310628,171,Elective,2019-01-16,Normal,1901,225,0,12,,,,DISCHARGED -1901,2021-03-15,24380.98707844641,354,Urgent,2021-03-24,Abnormal,7949,312,0,18,,,,DISCHARGED -1902,2019-02-21,23058.760460206624,413,Urgent,2019-03-18,Inconclusive,1902,217,1,16,,,,DISCHARGED -1903,2021-02-28,39792.83306932154,329,Elective,2021-03-01,Abnormal,1903,424,4,25,,,,DISCHARGED -1904,2021-11-22,35540.05493652951,482,Urgent,2021-12-04,Normal,1904,240,4,24,,,,DISCHARGED -1905,2019-09-02,29942.22167699223,214,Emergency,2019-09-08,Abnormal,1905,258,2,27,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -1906,2020-06-04,9854.047808583182,473,Emergency,2020-07-01,Normal,1906,375,1,21,,,,DISCHARGED -1907,2019-12-24,36121.9405302333,144,Emergency,2020-01-04,Inconclusive,1907,261,4,12,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -1908,2019-11-28,33913.757284865686,153,Urgent,2019-12-27,Normal,1908,4,0,28,,,,DISCHARGED -1909,2023-05-17,27543.518758783204,199,Emergency,,Normal,1909,260,2,11,,,,OPEN -1910,2020-11-07,1535.7776483752568,113,Elective,2020-11-25,Inconclusive,1910,53,3,6,,,,DISCHARGED -1911,2020-08-19,12551.33538683973,428,Emergency,2020-08-30,Inconclusive,1911,46,0,0,,,,DISCHARGED -1912,2020-12-17,47502.03291856158,300,Urgent,2020-12-28,Normal,1912,214,1,0,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -1913,2023-02-18,11116.763831547913,234,Elective,,Abnormal,1913,176,4,19,,,,OPEN -1914,2020-07-23,18089.911803438685,344,Urgent,2020-08-10,Abnormal,1914,8,0,22,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -1915,2018-11-17,10170.08559278319,206,Emergency,2018-11-20,Inconclusive,1915,98,3,13,,,,DISCHARGED -1916,2023-05-03,13252.430586321976,406,Emergency,,Abnormal,1916,19,3,26,,,,OPEN -1917,2021-09-17,41458.66099156509,211,Elective,2021-10-10,Inconclusive,1917,377,1,14,,,,DISCHARGED -1918,2023-08-12,36576.6201263894,222,Emergency,,Abnormal,1918,240,0,10,,,,OPEN -1920,2021-11-10,49140.93556123616,140,Emergency,2021-11-28,Inconclusive,1920,60,2,23,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -1921,2022-08-05,25154.13254782006,386,Elective,2022-08-11,Normal,1921,378,0,25,,,,DISCHARGED -1921,2019-08-27,34689.41647819316,447,Urgent,2019-09-13,Abnormal,7638,489,3,8,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1922,2021-03-02,40011.51641921789,421,Urgent,2021-03-24,Normal,1922,418,1,16,,,,DISCHARGED -1923,2019-08-03,45713.36467994517,324,Urgent,2019-08-26,Normal,1923,177,1,3,,,,DISCHARGED -1924,2019-02-04,46673.20401727847,331,Emergency,2019-02-16,Abnormal,1924,337,2,19,,,,DISCHARGED -1925,2022-05-18,49467.41146821703,492,Emergency,2022-05-31,Inconclusive,1925,61,1,18,,,,DISCHARGED -1926,2019-01-30,42234.98979534442,258,Elective,2019-02-28,Abnormal,1926,144,1,6,,,,DISCHARGED -1927,2019-05-29,42561.29694819286,288,Emergency,2019-06-20,Inconclusive,1927,215,1,0,,,,DISCHARGED -1928,2022-08-03,21587.36159991745,246,Urgent,2022-08-16,Normal,1928,2,1,8,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -1929,2020-08-10,5184.076303545168,467,Emergency,2020-08-28,Normal,1929,159,1,12,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -1930,2020-11-07,42582.56961924691,171,Elective,2020-11-30,Abnormal,1930,226,3,23,,,,DISCHARGED -1931,2022-10-01,9350.316427765074,195,Urgent,2022-10-25,Inconclusive,1931,485,0,1,,,,DISCHARGED -1931,2021-05-09,19307.396751309218,117,Urgent,2021-06-06,Inconclusive,5425,268,4,1,,,,DISCHARGED -1931,2022-06-22,4712.908215969233,311,Elective,2022-07-09,Normal,5553,119,1,23,,,,DISCHARGED -1932,2022-04-08,28435.24023485244,498,Urgent,2022-04-20,Normal,1932,380,4,26,,,,DISCHARGED -1933,2020-06-18,29578.80018017523,103,Emergency,2020-07-03,Normal,1933,494,4,29,,,,DISCHARGED -1934,2023-08-24,10779.594504172885,224,Emergency,2023-09-15,Inconclusive,1934,88,3,14,,,,DISCHARGED -1934,2022-10-01,49066.3508760399,104,Urgent,2022-10-05,Inconclusive,7120,328,1,16,,,,DISCHARGED -1935,2018-12-31,30744.71202458943,213,Urgent,2019-01-16,Normal,1935,67,4,12,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -1935,2023-08-10,12955.51857584719,423,Emergency,2023-08-30,Abnormal,7023,397,1,6,,,,DISCHARGED -1936,2023-09-01,48012.95577113939,140,Emergency,2023-09-03,Normal,1936,356,2,8,,,,DISCHARGED -1937,2021-10-17,19321.8685798229,176,Urgent,2021-10-27,Inconclusive,1937,97,2,11,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -1938,2018-11-14,23469.70102115066,107,Elective,2018-11-30,Inconclusive,1938,266,2,2,,,,DISCHARGED -1939,2021-01-20,42667.44926077702,165,Urgent,2021-01-29,Abnormal,1939,104,4,22,,,,DISCHARGED -1940,2022-05-19,6844.30269955517,462,Emergency,2022-06-10,Inconclusive,1940,439,2,21,,,,DISCHARGED -1941,2020-12-15,4186.133942069935,208,Emergency,2020-12-17,Abnormal,1941,322,3,14,,,,DISCHARGED -1942,2021-05-28,44681.11732429371,330,Emergency,2021-06-04,Inconclusive,1942,122,3,6,,,,DISCHARGED -1943,2023-03-14,42797.493004043965,179,Emergency,2023-03-16,Inconclusive,1943,475,4,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -1944,2022-05-10,48005.89190873987,312,Elective,2022-05-30,Abnormal,1944,28,1,25,,,,DISCHARGED -1945,2021-07-15,24522.665638630267,116,Elective,2021-07-29,Inconclusive,1945,136,0,0,,,,DISCHARGED -1946,2023-03-03,9934.100792799354,138,Emergency,,Abnormal,1946,194,1,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",OPEN -1947,2020-10-01,34720.03167714135,323,Elective,2020-10-29,Normal,1947,408,1,18,,,,DISCHARGED -1948,2021-10-31,17613.03226914178,230,Elective,2021-11-15,Inconclusive,1948,225,1,15,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -1949,2018-11-07,11281.55527316713,192,Urgent,2018-11-15,Inconclusive,1949,331,1,9,,,,DISCHARGED -1950,2021-10-13,16824.263823389083,127,Urgent,2021-10-18,Normal,1950,169,0,0,,,,DISCHARGED -1951,2022-08-30,18360.45321422453,201,Elective,2022-09-23,Normal,1951,8,2,4,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -1951,2023-08-31,17611.86285714769,191,Urgent,2023-09-28,Normal,2708,462,1,2,,,,DISCHARGED -1952,2020-07-09,2406.864973537379,329,Elective,2020-07-22,Inconclusive,1952,39,3,16,,,,DISCHARGED -1953,2018-12-09,9898.757583020364,176,Elective,2018-12-20,Normal,1953,24,4,17,,,,DISCHARGED -1954,2021-12-06,3428.4048839912057,128,Elective,2021-12-20,Abnormal,1954,260,4,25,,,,DISCHARGED -1955,2023-05-03,42042.27409647247,129,Urgent,2023-06-01,Inconclusive,1955,394,3,20,,,,DISCHARGED -1956,2023-03-06,7754.467222462754,163,Elective,2023-03-21,Inconclusive,1956,442,1,26,,,,DISCHARGED -1957,2023-06-18,45173.32323819144,131,Emergency,2023-06-27,Normal,1957,225,0,18,,,,DISCHARGED -1958,2023-10-17,14200.79791915669,217,Urgent,,Inconclusive,1958,471,2,21,,,,OPEN -1959,2020-03-28,37892.66794147765,305,Emergency,2020-04-03,Abnormal,1959,123,4,24,,,,DISCHARGED -1960,2021-06-16,42858.29550284436,360,Urgent,2021-07-12,Inconclusive,1960,462,2,21,,,,DISCHARGED -1961,2022-05-12,21138.61470352916,170,Urgent,2022-05-24,Normal,1961,37,0,17,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -1962,2022-08-17,9588.89347540396,417,Emergency,2022-08-22,Inconclusive,1962,327,4,15,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -1963,2020-04-25,4878.929466918511,386,Urgent,2020-05-18,Abnormal,1963,250,2,1,,,,DISCHARGED -1964,2023-08-19,38415.98461518616,168,Emergency,2023-09-16,Normal,1964,388,0,14,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -1965,2021-06-18,29906.83494316573,340,Emergency,2021-06-29,Normal,1965,175,2,12,,,,DISCHARGED -1966,2022-06-08,28905.452630692063,360,Urgent,2022-06-09,Normal,1966,89,1,12,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -1967,2021-09-09,34476.619431206105,183,Urgent,2021-09-12,Inconclusive,1967,401,0,15,,,,DISCHARGED -1968,2018-11-02,1566.8945187909271,319,Urgent,2018-11-11,Normal,1968,453,2,7,,,,DISCHARGED -1969,2023-03-12,35933.799906807515,473,Elective,,Abnormal,1969,36,1,10,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,OPEN -1970,2019-09-06,13793.893093478908,281,Elective,2019-09-30,Normal,1970,315,1,7,,,,DISCHARGED -1971,2019-09-25,34066.04478907022,126,Elective,2019-10-21,Abnormal,1971,175,0,21,,,,DISCHARGED -1972,2019-11-29,7688.95366865212,453,Emergency,2019-12-04,Normal,1972,460,3,9,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -1973,2022-02-08,35929.75453249108,191,Elective,2022-02-11,Normal,1973,283,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -1974,2019-12-01,2634.3452079374347,141,Urgent,2019-12-19,Abnormal,1974,452,0,0,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -1975,2021-10-17,41769.83077168575,259,Elective,2021-11-07,Inconclusive,1975,460,1,11,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -1976,2021-06-08,36799.51692561363,496,Elective,2021-07-03,Normal,1976,80,1,8,,,,DISCHARGED -1977,2023-02-13,47961.68199869757,393,Urgent,2023-02-18,Inconclusive,1977,113,0,4,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -1978,2022-04-28,35550.18738299962,162,Elective,2022-05-26,Inconclusive,1978,39,3,8,,,,DISCHARGED -1980,2021-11-17,22090.139286092104,337,Elective,2021-11-27,Abnormal,1980,300,4,15,,,,DISCHARGED -1981,2021-01-04,16385.282344828614,160,Elective,2021-01-21,Abnormal,1981,223,2,17,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1982,2021-01-20,9098.922491055697,240,Urgent,2021-02-17,Abnormal,1982,317,0,29,,,,DISCHARGED -1983,2021-11-01,27646.57878743372,173,Urgent,2021-11-22,Normal,1983,348,4,7,,,,DISCHARGED -1984,2018-12-27,4990.600989418026,418,Urgent,2019-01-10,Normal,1984,114,4,22,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -1985,2020-09-04,32909.25647965637,249,Elective,2020-09-22,Inconclusive,1985,185,1,10,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -1986,2018-10-30,46316.393646287564,378,Elective,2018-11-10,Inconclusive,1986,322,2,29,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -1987,2019-04-23,34730.572446504884,220,Elective,2019-04-26,Abnormal,1987,55,0,19,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -1989,2022-09-23,5814.698960747643,176,Urgent,2022-10-18,Inconclusive,1989,39,1,18,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -1990,2023-01-15,48900.028144822645,426,Elective,,Inconclusive,1990,353,1,3,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,OPEN -1991,2022-08-06,49387.20965576066,324,Emergency,2022-08-14,Inconclusive,1991,39,3,19,,,,DISCHARGED -1992,2020-07-20,47932.91760613315,287,Urgent,2020-07-29,Abnormal,1992,346,4,25,,,,DISCHARGED -1993,2021-08-21,14849.3602948883,127,Urgent,2021-08-24,Normal,1993,460,0,9,,,,DISCHARGED -1993,2018-11-17,32225.36731480178,398,Elective,2018-11-28,Abnormal,4151,236,0,23,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -1993,2022-09-25,18024.03197837031,243,Elective,2022-09-28,Inconclusive,5911,288,0,12,,,,DISCHARGED -1993,2019-08-11,39647.521929729446,158,Urgent,2019-08-13,Normal,8208,261,1,28,,,,DISCHARGED -1994,2018-12-12,8999.511383111498,381,Urgent,2018-12-23,Normal,1994,215,3,19,,,,DISCHARGED -1995,2022-05-15,11937.70044994392,220,Elective,2022-06-12,Inconclusive,1995,146,2,13,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -1996,2021-08-29,24318.936183062666,184,Elective,2021-09-25,Inconclusive,1996,335,1,20,,,,DISCHARGED -1996,2019-04-06,48588.4877518146,443,Urgent,2019-04-18,Normal,6616,167,2,1,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -1997,2019-08-16,18255.99630654858,270,Urgent,2019-09-04,Abnormal,1997,91,3,28,,,,DISCHARGED -1998,2023-10-22,34897.339312040254,217,Emergency,2023-11-06,Normal,1998,352,4,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -1999,2019-06-19,14839.536433999165,245,Elective,2019-07-15,Inconclusive,1999,58,0,6,,,,DISCHARGED -1999,2018-12-17,35469.8700217584,446,Emergency,2019-01-08,Normal,5841,58,2,18,,,,DISCHARGED -2000,2022-03-16,10407.995137039889,427,Elective,2022-03-24,Inconclusive,2000,303,1,29,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2001,2023-08-19,14823.582168557352,315,Emergency,2023-09-05,Normal,2001,168,2,29,,,,DISCHARGED -2002,2020-02-27,7505.183786862262,351,Urgent,2020-03-28,Normal,2002,268,4,16,,,,DISCHARGED -2003,2018-11-26,24259.419486427603,267,Urgent,2018-12-10,Abnormal,2003,362,0,15,,,,DISCHARGED -2004,2021-10-13,40297.07275956278,174,Elective,2021-10-19,Normal,2004,44,2,12,,,,DISCHARGED -2005,2021-09-03,36238.50343741295,314,Urgent,2021-09-15,Abnormal,2005,344,4,23,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -2006,2021-06-16,2700.555676511574,234,Elective,2021-06-29,Normal,2006,180,1,23,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2007,2020-12-28,31137.503276117357,262,Emergency,2021-01-03,Inconclusive,2007,169,3,21,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2008,2022-03-19,48876.89504731091,317,Elective,2022-03-25,Abnormal,2008,355,1,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -2009,2021-02-17,27650.223057620424,179,Urgent,2021-02-25,Inconclusive,2009,190,0,25,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -2010,2020-08-10,27246.935549930426,446,Elective,2020-09-04,Normal,2010,154,1,26,,,,DISCHARGED -2011,2021-10-17,8549.06438901529,321,Urgent,2021-11-10,Normal,2011,421,1,17,,,,DISCHARGED -2012,2019-01-03,41076.0628395771,358,Elective,2019-01-26,Inconclusive,2012,187,1,20,,,,DISCHARGED -2013,2019-05-29,42272.42958083964,355,Elective,2019-06-09,Normal,2013,6,1,11,,,,DISCHARGED -2014,2020-08-15,19975.2298527301,398,Urgent,2020-08-27,Abnormal,2014,132,0,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2015,2022-08-21,2719.602968915492,439,Elective,2022-09-12,Normal,2015,234,4,24,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2016,2022-02-01,40753.16388517093,356,Elective,2022-03-01,Normal,2016,44,2,0,,,,DISCHARGED -2017,2022-05-30,27626.17716229101,195,Emergency,2022-06-19,Abnormal,2017,313,3,14,,,,DISCHARGED -2018,2021-04-23,16246.593072989095,107,Elective,2021-04-28,Normal,2018,248,2,2,,,,DISCHARGED -2019,2019-04-04,45281.985279707456,114,Emergency,2019-05-02,Normal,2019,498,2,5,,,,DISCHARGED -2020,2021-12-19,9260.447952279146,483,Elective,2022-01-15,Normal,2020,30,3,13,,,,DISCHARGED -2021,2023-05-16,1071.456127337255,360,Emergency,2023-06-02,Abnormal,2021,22,0,22,,,,DISCHARGED -2022,2020-08-20,32388.093844520277,214,Elective,2020-09-10,Inconclusive,2022,425,3,5,,,,DISCHARGED -2023,2023-08-22,37191.461034564745,276,Emergency,,Inconclusive,2023,393,0,0,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -2024,2021-12-02,22831.381895438542,446,Urgent,2021-12-19,Normal,2024,159,2,19,,,,DISCHARGED -2025,2021-06-28,45513.53067008454,263,Emergency,2021-07-02,Inconclusive,2025,362,0,5,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2026,2019-05-01,13800.490493355994,205,Urgent,2019-05-22,Inconclusive,2026,436,4,7,,,,DISCHARGED -2026,2019-05-03,5905.662071404492,108,Urgent,2019-05-22,Abnormal,4090,157,3,25,,,,DISCHARGED -2027,2022-04-24,48673.839489838894,269,Emergency,2022-05-20,Inconclusive,2027,38,4,14,,,,DISCHARGED -2027,2019-10-31,24587.021678844783,415,Urgent,2019-11-23,Inconclusive,2550,414,2,13,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2028,2023-10-19,41322.48311537493,247,Emergency,,Abnormal,2028,81,3,15,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -2029,2023-08-21,23590.442974111906,240,Emergency,2023-09-15,Inconclusive,2029,355,2,19,,,,DISCHARGED -2031,2023-05-11,2314.8431806592434,158,Elective,2023-05-24,Normal,2031,257,4,22,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2032,2019-01-29,22780.579535368885,109,Elective,2019-02-21,Normal,2032,205,2,15,,,,DISCHARGED -2033,2019-01-19,11583.245672978226,370,Emergency,2019-02-17,Inconclusive,2033,76,3,26,,,,DISCHARGED -2034,2021-04-05,20276.82439225447,282,Urgent,2021-05-01,Inconclusive,2034,476,3,18,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2035,2022-08-19,16532.926665381274,450,Urgent,2022-08-23,Normal,2035,11,2,23,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2036,2019-04-22,10363.253008887945,183,Emergency,2019-05-21,Abnormal,2036,294,3,0,,,,DISCHARGED -2037,2020-01-11,38265.866503436126,103,Elective,2020-01-18,Inconclusive,2037,449,3,3,,,,DISCHARGED -2038,2019-09-19,20246.780500469053,269,Elective,2019-10-16,Abnormal,2038,223,2,23,,,,DISCHARGED -2039,2020-06-25,45306.20768750641,413,Elective,2020-07-10,Abnormal,2039,12,4,9,,,,DISCHARGED -2040,2023-03-31,41406.32685394251,447,Elective,2023-04-03,Abnormal,2040,45,3,19,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2041,2020-03-14,4275.88415481029,305,Elective,2020-04-03,Inconclusive,2041,154,3,17,,,,DISCHARGED -2042,2020-05-26,49758.882336384384,270,Urgent,2020-06-11,Normal,2042,112,3,1,,,,DISCHARGED -2043,2021-08-28,5540.501871673423,163,Elective,2021-09-03,Inconclusive,2043,232,3,3,,,,DISCHARGED -2043,2023-03-01,15615.09297550578,156,Urgent,2023-03-05,Normal,3294,16,2,14,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -2044,2020-11-21,23419.25780163656,203,Urgent,2020-12-18,Abnormal,2044,359,4,28,,,,DISCHARGED -2044,2021-06-14,15804.647106077038,303,Urgent,2021-06-17,Inconclusive,3490,222,4,3,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -2045,2019-03-21,31536.83911458599,320,Emergency,2019-04-10,Inconclusive,2045,353,0,15,,,,DISCHARGED -2046,2021-03-12,10827.12339915266,469,Urgent,2021-03-18,Abnormal,2046,187,3,14,,,,DISCHARGED -2047,2022-04-02,26351.518306921786,256,Elective,2022-04-14,Normal,2047,447,3,17,,,,DISCHARGED -2048,2022-06-27,5348.734302659625,457,Emergency,2022-07-05,Normal,2048,343,0,6,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2049,2020-12-28,48362.08001340964,101,Elective,2021-01-03,Abnormal,2049,364,4,14,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2050,2021-07-25,21854.0146281259,375,Emergency,2021-08-02,Abnormal,2050,162,1,21,,,,DISCHARGED -2051,2020-12-08,9925.67313429751,341,Urgent,2020-12-26,Normal,2051,495,1,10,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2052,2020-11-14,15959.371385755869,170,Urgent,2020-11-21,Abnormal,2052,325,4,18,,,,DISCHARGED -2053,2023-08-24,41368.118978286926,500,Elective,,Abnormal,2053,466,3,7,,,,OPEN -2054,2021-10-16,48541.850205770046,371,Elective,2021-11-15,Normal,2054,413,1,23,,,,DISCHARGED -2055,2023-03-14,8377.553044992927,419,Elective,2023-03-22,Normal,2055,454,2,0,,,,DISCHARGED -2056,2022-04-10,39921.51704733342,245,Urgent,2022-04-21,Inconclusive,2056,73,2,2,,,,DISCHARGED -2057,2022-05-24,14789.310597157544,261,Urgent,2022-05-31,Normal,2057,232,0,4,,,,DISCHARGED -2058,2020-11-06,45704.80291242897,158,Emergency,2020-11-13,Inconclusive,2058,223,4,17,,,,DISCHARGED -2059,2022-11-23,4393.604264030067,440,Emergency,2022-12-01,Inconclusive,2059,481,4,11,,,,DISCHARGED -2059,2020-06-14,2463.007275796864,234,Urgent,2020-07-08,Inconclusive,6407,318,1,11,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -2059,2021-07-14,5942.493531111142,479,Elective,2021-08-06,Abnormal,8232,411,3,20,,,,DISCHARGED -2060,2023-06-11,4592.647390434896,263,Emergency,2023-07-03,Inconclusive,2060,59,4,26,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2061,2019-09-20,47896.26204049533,266,Emergency,2019-10-03,Inconclusive,2061,334,1,25,,,,DISCHARGED -2062,2020-12-11,28348.199914675934,407,Emergency,2020-12-14,Normal,2062,221,1,18,,,,DISCHARGED -2063,2022-01-15,46165.750045048815,117,Elective,2022-02-09,Inconclusive,2063,36,4,8,,,,DISCHARGED -2064,2022-03-19,9903.23897126594,314,Elective,2022-04-16,Normal,2064,476,1,10,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2065,2021-06-15,13242.462452917662,295,Elective,2021-06-16,Inconclusive,2065,277,0,16,,,,DISCHARGED -2065,2021-02-21,35567.087908688714,442,Urgent,2021-03-23,Abnormal,7512,195,0,15,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -2066,2022-10-09,48524.95848727584,214,Elective,2022-10-10,Normal,2066,403,4,3,,,,DISCHARGED -2067,2020-12-06,11168.75532876516,394,Emergency,2020-12-24,Normal,2067,351,3,9,,,,DISCHARGED -2068,2022-01-14,24677.399998237463,218,Urgent,2022-02-03,Normal,2068,483,0,21,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2069,2020-12-31,25973.43439934297,164,Emergency,2021-01-01,Inconclusive,2069,241,0,14,,,,DISCHARGED -2070,2018-12-04,32670.46186780801,316,Urgent,2018-12-11,Normal,2070,323,4,24,,,,DISCHARGED -2071,2021-01-16,2559.8303424174137,168,Elective,2021-01-24,Normal,2071,218,2,18,,,,DISCHARGED -2072,2023-06-08,30534.64537201438,354,Urgent,2023-06-18,Normal,2072,191,1,2,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2073,2021-03-06,16893.29456822989,248,Emergency,2021-04-05,Abnormal,2073,16,0,27,,,,DISCHARGED -2074,2023-02-10,46201.73209791707,207,Emergency,,Inconclusive,2074,11,2,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -2075,2022-09-25,16914.794113676413,162,Elective,2022-10-10,Inconclusive,2075,405,3,22,,,,DISCHARGED -2076,2021-08-04,47836.62063419884,229,Urgent,2021-08-16,Normal,2076,400,2,29,,,,DISCHARGED -2077,2019-12-26,38766.63318687199,236,Urgent,2020-01-24,Abnormal,2077,393,4,4,,,,DISCHARGED -2078,2022-12-09,46465.22968326172,449,Elective,2022-12-15,Abnormal,2078,373,3,10,,,,DISCHARGED -2078,2021-09-16,31926.505122881703,453,Urgent,2021-10-08,Inconclusive,3052,192,3,23,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2079,2022-10-22,48586.78122604569,206,Emergency,2022-10-30,Inconclusive,2079,21,2,4,,,,DISCHARGED -2081,2023-03-06,30149.34788755248,104,Emergency,2023-03-21,Inconclusive,2081,473,4,6,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2082,2020-01-11,23138.25897659856,427,Urgent,2020-02-02,Abnormal,2082,119,0,5,,,,DISCHARGED -2083,2021-05-15,3027.8217962428744,417,Emergency,2021-06-12,Inconclusive,2083,209,2,29,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2084,2020-09-28,41102.94377939528,305,Elective,2020-10-06,Inconclusive,2084,305,0,25,,,,DISCHARGED -2084,2020-11-26,34007.44060822871,342,Emergency,2020-12-16,Normal,6180,269,2,12,,,,DISCHARGED -2085,2022-09-17,42363.4239882424,452,Urgent,2022-10-13,Normal,2085,191,0,1,,,,DISCHARGED -2085,2021-01-18,6485.970306762875,271,Emergency,2021-02-02,Abnormal,9924,174,2,18,,,,DISCHARGED -2086,2020-04-18,25463.780987742743,499,Elective,2020-05-01,Normal,2086,284,3,10,,,,DISCHARGED -2087,2019-11-30,34282.97716556832,487,Elective,2019-12-26,Normal,2087,203,1,26,,,,DISCHARGED -2088,2018-11-03,33690.585342013335,357,Elective,2018-11-07,Abnormal,2088,163,3,19,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2089,2022-02-23,46771.21849161071,223,Elective,2022-03-10,Abnormal,2089,250,0,4,,,,DISCHARGED -2090,2023-01-11,28542.96933360632,255,Emergency,2023-01-26,Normal,2090,226,4,8,,,,DISCHARGED -2091,2022-01-12,24919.01818340537,356,Elective,2022-02-10,Abnormal,2091,435,3,5,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -2092,2019-11-29,44923.26265703136,442,Elective,2019-12-26,Abnormal,2092,380,1,16,,,,DISCHARGED -2092,2023-01-19,16601.87170171211,251,Elective,2023-01-24,Normal,7242,459,0,18,,,,DISCHARGED -2093,2022-05-12,46708.80823788788,142,Urgent,2022-05-26,Abnormal,2093,6,3,22,,,,DISCHARGED -2094,2021-05-27,37079.56782331316,298,Urgent,2021-06-10,Normal,2094,28,2,7,,,,DISCHARGED -2096,2020-07-24,10732.59435232566,456,Elective,2020-07-30,Inconclusive,2096,394,4,6,,,,DISCHARGED -2097,2019-05-23,44174.16773087699,199,Urgent,2019-06-15,Abnormal,2097,32,0,4,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2098,2022-12-13,37826.68147158112,374,Emergency,2022-12-14,Abnormal,2098,133,3,14,,,,DISCHARGED -2099,2019-11-26,45584.49829060876,162,Emergency,2019-12-04,Inconclusive,2099,366,0,9,,,,DISCHARGED -2100,2019-09-12,25856.356275460454,297,Elective,2019-10-06,Normal,2100,78,2,23,,,,DISCHARGED -2101,2023-09-26,38455.99547786433,196,Urgent,2023-09-29,Abnormal,2101,415,1,15,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2102,2023-07-09,40134.479606453664,392,Urgent,2023-08-03,Abnormal,2102,434,3,8,,,,DISCHARGED -2103,2020-07-31,12587.52217060346,106,Urgent,2020-08-15,Normal,2103,458,0,6,,,,DISCHARGED -2104,2019-04-28,7588.420163231811,429,Emergency,2019-05-03,Normal,2104,57,0,10,,,,DISCHARGED -2105,2021-12-06,26929.921355979764,437,Urgent,2021-12-28,Abnormal,2105,470,0,8,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -2106,2022-09-09,9327.259870044523,479,Emergency,2022-09-11,Abnormal,2106,25,1,16,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2107,2023-03-30,32596.973552053438,256,Urgent,,Normal,2107,481,0,29,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",OPEN -2108,2022-11-16,11989.362204519535,486,Urgent,2022-11-18,Normal,2108,429,4,8,,,,DISCHARGED -2109,2020-05-03,34827.815240902244,201,Urgent,2020-05-31,Normal,2109,225,4,2,,,,DISCHARGED -2109,2019-07-30,18790.112311173714,110,Elective,2019-08-28,Normal,2407,284,0,21,,,,DISCHARGED -2110,2019-11-11,32155.997682675246,397,Elective,2019-11-23,Normal,2110,3,4,7,,,,DISCHARGED -2111,2019-12-02,48837.91662444725,346,Emergency,2019-12-07,Normal,2111,464,3,18,,,,DISCHARGED -2112,2022-07-22,38033.32261578057,172,Elective,2022-07-28,Inconclusive,2112,98,4,19,,,,DISCHARGED -2113,2023-10-05,27077.69337474183,139,Urgent,2023-10-30,Normal,2113,396,0,15,,,,DISCHARGED -2115,2020-11-25,45613.74976944374,402,Elective,2020-12-13,Inconclusive,2115,488,2,6,,,,DISCHARGED -2115,2019-04-29,4162.294299482434,117,Emergency,2019-05-14,Inconclusive,3509,38,3,27,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -2115,2023-04-14,13481.843601490198,470,Elective,2023-05-07,Abnormal,6605,270,1,6,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2116,2021-03-17,14480.20800156411,108,Elective,2021-04-16,Normal,2116,374,0,19,,,,DISCHARGED -2117,2023-08-08,22610.05069166719,474,Urgent,2023-08-18,Normal,2117,284,1,24,,,,DISCHARGED -2118,2022-07-20,49041.83712488501,110,Emergency,2022-08-19,Abnormal,2118,156,2,12,,,,DISCHARGED -2119,2023-01-20,44784.72199270345,442,Emergency,,Normal,2119,74,1,2,,,,OPEN -2120,2023-10-13,7684.685521442606,248,Urgent,2023-11-04,Abnormal,2120,371,0,11,,,,DISCHARGED -2121,2021-02-04,34397.71731295817,242,Emergency,2021-02-07,Normal,2121,287,0,23,,,,DISCHARGED -2122,2020-03-20,44738.75152787779,289,Elective,2020-04-05,Normal,2122,129,2,7,,,,DISCHARGED -2123,2020-11-15,45539.99655393264,117,Elective,2020-12-09,Inconclusive,2123,174,0,12,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2124,2019-06-08,7219.30369394389,353,Urgent,2019-06-20,Inconclusive,2124,461,2,19,,,,DISCHARGED -2125,2023-07-23,5274.440716905491,117,Urgent,2023-07-26,Normal,2125,83,2,15,,,,DISCHARGED -2126,2022-08-15,19909.398010864497,154,Urgent,2022-08-22,Inconclusive,2126,21,0,6,,,,DISCHARGED -2127,2019-05-18,40530.53507937405,351,Emergency,2019-06-11,Inconclusive,2127,458,4,3,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -2128,2023-02-10,21243.07467193288,223,Urgent,2023-03-08,Inconclusive,2128,26,2,28,,,,DISCHARGED -2129,2023-07-07,3083.1600740083354,127,Emergency,2023-08-03,Inconclusive,2129,194,0,11,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2130,2021-02-13,32997.127608599854,105,Emergency,2021-02-24,Normal,2130,336,4,16,,,,DISCHARGED -2131,2023-09-16,48777.68007258824,493,Emergency,2023-10-09,Inconclusive,2131,381,2,0,,,,DISCHARGED -2132,2022-11-02,27821.708687409784,448,Elective,2022-11-12,Normal,2132,235,4,29,,,,DISCHARGED -2133,2019-04-15,41220.75412978184,489,Emergency,2019-05-09,Inconclusive,2133,439,3,16,,,,DISCHARGED -2134,2021-04-08,29606.4245184412,260,Emergency,2021-04-29,Normal,2134,91,3,1,,,,DISCHARGED -2135,2023-03-06,13657.607499957252,221,Emergency,2023-03-16,Normal,2135,476,4,5,,,,DISCHARGED -2136,2019-05-12,4358.754081952631,128,Elective,2019-05-26,Normal,2136,20,2,11,,,,DISCHARGED -2137,2023-02-21,8012.236285130733,137,Elective,2023-03-07,Normal,2137,302,0,25,,,,DISCHARGED -2138,2022-02-24,14246.813650252376,232,Urgent,2022-03-14,Inconclusive,2138,463,1,10,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -2139,2019-05-04,47300.362049135685,335,Elective,2019-06-03,Normal,2139,356,0,20,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2141,2021-03-17,19438.067002583404,116,Urgent,2021-04-07,Inconclusive,2141,442,1,10,,,,DISCHARGED -2142,2019-05-05,41993.05395013485,136,Elective,2019-06-01,Inconclusive,2142,83,1,17,,,,DISCHARGED -2143,2022-06-16,36167.21869272584,123,Urgent,2022-07-12,Normal,2143,261,2,7,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -2144,2020-04-16,22361.41406399233,254,Emergency,2020-05-07,Normal,2144,146,4,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -2145,2020-09-06,48208.99674501512,263,Emergency,2020-09-25,Inconclusive,2145,440,0,6,,,,DISCHARGED -2146,2023-07-23,17525.474760021036,331,Emergency,2023-07-27,Abnormal,2146,452,4,27,,,,DISCHARGED -2147,2020-10-20,23795.476602545383,416,Urgent,2020-11-13,Normal,2147,386,3,13,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -2148,2022-10-25,37693.909176755216,320,Urgent,2022-11-20,Abnormal,2148,256,2,15,,,,DISCHARGED -2149,2021-01-18,4699.461084400098,122,Emergency,2021-02-03,Inconclusive,2149,57,2,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -2150,2019-06-18,18489.543619802986,106,Urgent,2019-07-15,Normal,2150,379,3,8,,,,DISCHARGED -2151,2022-01-15,16024.907097217285,488,Elective,2022-02-09,Inconclusive,2151,421,0,19,,,,DISCHARGED -2152,2023-04-03,28584.572382521823,260,Urgent,2023-04-17,Inconclusive,2152,14,3,28,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2153,2022-12-02,46986.42214523118,244,Elective,2022-12-11,Abnormal,2153,161,0,22,,,,DISCHARGED -2153,2021-08-30,14040.74378787196,224,Elective,2021-09-22,Inconclusive,2899,444,1,20,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2154,2019-04-15,27866.763666625666,325,Elective,2019-05-15,Abnormal,2154,162,2,15,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2155,2020-01-30,46989.64577927644,429,Emergency,2020-02-01,Normal,2155,319,0,20,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -2156,2021-06-27,10624.533398155232,434,Emergency,2021-07-25,Inconclusive,2156,496,4,18,,,,DISCHARGED -2157,2021-04-06,16327.105345642376,364,Elective,2021-04-27,Normal,2157,280,4,15,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2158,2019-03-09,9935.432220366523,286,Urgent,2019-03-11,Abnormal,2158,279,2,8,,,,DISCHARGED -2158,2020-08-10,41080.77719781172,303,Emergency,2020-08-24,Abnormal,6304,11,3,12,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2159,2020-08-15,8034.445956925054,454,Emergency,2020-08-31,Normal,2159,273,3,25,,,,DISCHARGED -2160,2022-12-03,29295.887722246087,125,Elective,2022-12-28,Abnormal,2160,270,0,4,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -2161,2020-04-28,33877.32845187741,301,Urgent,2020-05-05,Inconclusive,2161,491,3,21,,,,DISCHARGED -2162,2021-10-25,41565.46945826818,217,Urgent,2021-11-13,Normal,2162,207,2,18,,,,DISCHARGED -2163,2019-07-15,20720.024952434516,152,Urgent,2019-08-04,Abnormal,2163,26,0,9,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -2164,2022-11-17,30051.834844619694,426,Emergency,2022-12-02,Inconclusive,2164,71,1,6,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2165,2021-03-01,48244.6217501954,470,Elective,2021-03-03,Normal,2165,59,3,8,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2166,2020-08-17,9701.398771828128,328,Elective,2020-08-29,Abnormal,2166,429,3,24,,,,DISCHARGED -2166,2021-07-15,27167.536177824102,389,Urgent,2021-07-19,Abnormal,9647,472,0,13,,,,DISCHARGED -2167,2020-05-31,16318.3748057804,481,Emergency,2020-06-11,Abnormal,2167,144,4,14,,,,DISCHARGED -2168,2023-09-06,31102.403444031337,287,Urgent,2023-09-10,Inconclusive,2168,92,3,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -2169,2020-05-30,26491.544721336537,398,Elective,2020-06-05,Normal,2169,308,2,9,,,,DISCHARGED -2170,2019-07-30,45191.83947535334,130,Urgent,2019-08-17,Normal,2170,7,3,13,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2171,2023-02-24,7089.890882975364,451,Emergency,2023-03-20,Inconclusive,2171,78,1,25,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2172,2020-11-29,42689.62507377686,375,Emergency,2020-12-10,Abnormal,2172,26,3,20,,,,DISCHARGED -2173,2021-09-24,9328.425283767998,387,Emergency,2021-10-15,Abnormal,2173,173,4,22,,,,DISCHARGED -2174,2022-11-17,26071.391361872087,449,Urgent,2022-12-12,Inconclusive,2174,49,3,28,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2175,2022-05-30,48841.62507533279,108,Urgent,2022-06-19,Abnormal,2175,499,0,11,,,,DISCHARGED -2175,2020-11-20,34231.802301135336,270,Elective,2020-12-07,Normal,7474,198,3,27,,,,DISCHARGED -2176,2019-04-02,38039.931417765954,298,Emergency,2019-05-01,Abnormal,2176,386,4,28,,,,DISCHARGED -2177,2023-01-29,36420.171145492684,237,Urgent,2023-02-24,Inconclusive,2177,348,0,18,,,,DISCHARGED -2178,2020-10-14,33442.613173148435,139,Emergency,2020-11-08,Abnormal,2178,447,2,5,,,,DISCHARGED -2179,2020-01-07,37510.40832339441,495,Elective,2020-02-01,Inconclusive,2179,427,0,11,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -2181,2020-01-05,3558.2116770570674,253,Emergency,2020-01-11,Abnormal,2181,180,1,23,,,,DISCHARGED -2182,2022-05-01,20375.112495147718,224,Urgent,2022-05-04,Abnormal,2182,23,0,12,,,,DISCHARGED -2183,2021-12-06,16435.53529602935,351,Emergency,2021-12-30,Abnormal,2183,315,2,7,Chief complaint is a burning sensation in the stomach.,Investigate for possible gastritis or gastroesophageal reflux disease (GERD); recommend lifestyle changes and medications.,K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2183,2019-04-12,4497.485582304684,302,Emergency,2019-05-12,Inconclusive,6609,377,3,15,,,,DISCHARGED -2184,2021-09-01,19007.95482455334,336,Emergency,2021-09-26,Inconclusive,2184,386,0,1,,,,DISCHARGED -2184,2023-07-03,1604.5156094182737,217,Emergency,2023-08-01,Abnormal,5292,403,0,21,,,,DISCHARGED -2185,2023-03-16,21034.30127545525,254,Elective,,Abnormal,2185,45,0,6,,,,OPEN -2186,2021-03-04,6510.634653794687,367,Emergency,2021-03-25,Abnormal,2186,14,0,11,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2187,2021-09-07,21459.08895558849,348,Elective,2021-09-11,Abnormal,2187,152,2,6,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2188,2019-03-29,28419.730877250546,114,Urgent,2019-04-09,Inconclusive,2188,221,4,18,,,,DISCHARGED -2189,2020-05-28,39880.93402704448,498,Elective,2020-06-06,Abnormal,2189,205,4,13,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2190,2021-11-11,11147.440158012116,162,Elective,2021-12-04,Abnormal,2190,454,0,29,,,,DISCHARGED -2191,2022-07-27,6805.932821423738,199,Elective,2022-08-02,Abnormal,2191,272,2,8,,,,DISCHARGED -2192,2021-07-17,13055.20938644427,172,Urgent,2021-07-19,Inconclusive,2192,381,2,17,,,,DISCHARGED -2193,2022-04-14,29291.418771579654,234,Elective,2022-04-15,Inconclusive,2193,235,0,10,,,,DISCHARGED -2194,2020-10-21,8550.233798177182,188,Elective,2020-11-13,Normal,2194,339,1,15,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2195,2020-08-23,10829.294133240646,334,Emergency,2020-08-24,Inconclusive,2195,227,0,18,,,,DISCHARGED -2196,2023-02-10,13016.534179786677,272,Emergency,2023-03-11,Abnormal,2196,8,1,10,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2197,2020-04-29,48277.99264983504,463,Elective,2020-05-14,Abnormal,2197,165,0,17,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -2198,2020-04-01,18012.555199870225,388,Emergency,2020-04-04,Abnormal,2198,431,1,10,,,,DISCHARGED -2199,2019-05-23,19935.255593786685,477,Urgent,2019-06-18,Abnormal,2199,443,1,24,,,,DISCHARGED -2200,2023-10-24,8622.922700028972,274,Emergency,2023-11-13,Normal,2200,318,0,3,,,,DISCHARGED -2201,2023-03-17,40845.32373768378,485,Elective,2023-04-03,Inconclusive,2201,213,1,17,,,,DISCHARGED -2202,2023-01-22,45676.41931605696,220,Urgent,2023-02-08,Inconclusive,2202,116,3,18,,,,DISCHARGED -2203,2022-02-27,45509.01703294312,177,Elective,2022-03-12,Abnormal,2203,385,4,12,,,,DISCHARGED -2204,2023-10-19,14182.60134285872,393,Urgent,,Normal,2204,343,2,3,,,,OPEN -2205,2021-03-11,31712.37366238892,290,Urgent,2021-04-07,Normal,2205,71,1,29,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2206,2022-12-31,5873.404176707509,406,Emergency,2023-01-05,Abnormal,2206,394,1,9,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2207,2020-04-16,41926.89350820833,122,Urgent,2020-05-08,Inconclusive,2207,63,2,28,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -2208,2023-10-25,28067.00809181435,227,Urgent,2023-11-02,Inconclusive,2208,204,1,21,,,,DISCHARGED -2209,2019-11-10,26891.8236745223,134,Elective,2019-11-19,Normal,2209,208,2,4,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -2210,2020-01-03,2618.0554336839377,499,Urgent,2020-01-11,Abnormal,2210,71,0,2,,,,DISCHARGED -2210,2019-02-17,13536.247320570566,401,Elective,2019-03-01,Abnormal,3817,276,3,15,,,,DISCHARGED -2210,2019-12-08,14748.686149267092,246,Elective,2019-12-31,Inconclusive,8639,273,3,25,,,,DISCHARGED -2211,2020-01-18,15533.986929155004,376,Emergency,2020-02-09,Normal,2211,477,4,7,,,,DISCHARGED -2212,2021-11-30,47487.60674557146,481,Emergency,2021-12-06,Normal,2212,319,1,23,,,,DISCHARGED -2213,2020-08-23,2232.198069361695,425,Emergency,2020-09-13,Abnormal,2213,337,4,6,,,,DISCHARGED -2214,2021-01-20,39010.29434319447,400,Elective,2021-02-18,Abnormal,2214,365,0,18,,,,DISCHARGED -2215,2023-07-23,35705.871387620224,305,Elective,2023-08-10,Normal,2215,494,3,13,,,,DISCHARGED -2216,2023-03-31,37633.68565942969,105,Urgent,2023-04-12,Abnormal,2216,94,0,14,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2217,2020-04-21,12504.283118633872,390,Urgent,2020-05-03,Normal,2217,165,0,16,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -2218,2021-03-19,22263.70051785285,192,Urgent,2021-03-23,Abnormal,2218,31,1,20,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2219,2018-12-05,19855.806653142357,338,Emergency,2018-12-29,Abnormal,2219,10,0,0,,,,DISCHARGED -2220,2021-02-06,49843.46711295076,240,Emergency,2021-03-03,Abnormal,2220,300,3,5,,,,DISCHARGED -2221,2018-12-27,39058.03104473268,386,Emergency,2019-01-09,Inconclusive,2221,216,4,26,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2222,2022-08-02,15477.941903278392,282,Elective,2022-08-06,Abnormal,2222,288,3,22,,,,DISCHARGED -2223,2023-05-12,29603.251983868628,455,Urgent,,Abnormal,2223,101,1,14,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,OPEN -2224,2020-11-30,46371.328836617104,123,Urgent,2020-12-16,Inconclusive,2224,424,3,11,,,,DISCHARGED -2224,2022-04-27,8335.993583094772,286,Urgent,2022-05-16,Inconclusive,9255,391,2,20,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -2225,2023-01-20,37770.92297524949,337,Emergency,,Normal,2225,266,4,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -2226,2019-10-16,49108.90302824396,257,Elective,2019-11-08,Inconclusive,2226,213,2,1,,,,DISCHARGED -2227,2021-01-17,36135.620638551576,112,Urgent,2021-02-09,Inconclusive,2227,178,2,4,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -2228,2021-11-27,21432.51922344282,180,Urgent,2021-12-15,Abnormal,2228,87,1,8,,,,DISCHARGED -2229,2023-07-08,43399.97889794341,129,Elective,2023-07-10,Normal,2229,40,0,19,,,,DISCHARGED -2230,2019-11-09,45798.93970582484,281,Urgent,2019-11-16,Normal,2230,400,2,13,,,,DISCHARGED -2231,2020-05-27,37530.24466016462,349,Urgent,2020-05-29,Abnormal,2231,75,3,17,,,,DISCHARGED -2232,2020-09-08,40272.61746946961,134,Elective,2020-10-03,Abnormal,2232,376,0,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -2233,2020-05-30,22963.611941278225,157,Emergency,2020-06-07,Inconclusive,2233,45,3,21,,,,DISCHARGED -2234,2022-08-12,6879.395005204989,447,Urgent,2022-08-16,Abnormal,2234,159,3,7,,,,DISCHARGED -2235,2021-08-10,16438.247326267134,188,Urgent,2021-09-03,Normal,2235,462,0,1,,,,DISCHARGED -2236,2021-06-10,48635.95469476706,184,Emergency,2021-06-15,Normal,2236,79,0,8,,,,DISCHARGED -2237,2022-04-11,32385.32845907817,207,Urgent,2022-04-16,Abnormal,2237,309,3,6,,,,DISCHARGED -2238,2019-12-13,30222.777507948547,269,Urgent,2019-12-27,Inconclusive,2238,85,1,29,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -2239,2022-10-05,1004.4168971245352,102,Elective,2022-11-04,Abnormal,2239,91,4,28,,,,DISCHARGED -2240,2021-04-26,28086.62867948905,165,Emergency,2021-05-04,Normal,2240,147,4,17,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2241,2020-04-10,17634.373636304907,325,Elective,2020-04-14,Normal,2241,160,1,26,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -2242,2020-02-21,10740.62405697596,490,Urgent,2020-02-28,Abnormal,2242,201,0,15,,,,DISCHARGED -2243,2022-04-05,26653.66414302477,175,Urgent,2022-04-07,Normal,2243,423,3,20,,,,DISCHARGED -2244,2021-04-22,14592.356305414123,316,Urgent,2021-05-20,Inconclusive,2244,415,4,4,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -2245,2022-12-27,18173.04510327892,245,Urgent,2023-01-24,Abnormal,2245,241,3,22,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -2245,2022-07-05,39230.21347524349,286,Urgent,2022-08-01,Inconclusive,5284,352,1,28,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2246,2019-12-19,46916.54683516452,477,Urgent,2019-12-21,Abnormal,2246,1,3,14,,,,DISCHARGED -2247,2023-08-18,10151.614679361466,240,Urgent,2023-08-20,Abnormal,2247,224,1,4,,,,DISCHARGED -2248,2021-11-30,13258.570331758508,348,Elective,2021-12-12,Normal,2248,288,0,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -2249,2021-06-19,4067.955799860332,390,Urgent,2021-06-30,Abnormal,2249,232,1,29,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2249,2023-04-08,16229.170609028886,320,Emergency,2023-04-28,Inconclusive,3379,460,1,21,,,,DISCHARGED -2249,2022-01-09,33857.486093274936,293,Urgent,2022-01-30,Abnormal,7263,413,4,13,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2250,2019-10-10,26557.291356562248,143,Urgent,2019-10-15,Inconclusive,2250,416,3,24,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -2251,2021-08-03,10088.441961099885,447,Urgent,2021-08-18,Inconclusive,2251,76,4,18,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2252,2021-09-19,49936.073748394425,423,Elective,2021-09-21,Abnormal,2252,115,2,2,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -2253,2021-12-29,13837.49574373598,300,Emergency,2022-01-11,Abnormal,2253,153,1,23,,,,DISCHARGED -2254,2021-12-23,36666.61381452589,210,Elective,2022-01-04,Abnormal,2254,405,2,9,,,,DISCHARGED -2255,2020-09-07,43299.943085823,499,Emergency,2020-09-18,Abnormal,2255,102,4,27,,,,DISCHARGED -2255,2021-11-16,13610.31855717903,415,Emergency,2021-11-30,Inconclusive,6292,193,3,5,,,,DISCHARGED -2256,2023-06-29,6207.834879564895,235,Elective,,Abnormal,2256,165,4,27,,,,OPEN -2257,2020-09-21,25083.79189395908,259,Urgent,2020-10-18,Inconclusive,2257,358,3,25,,,,DISCHARGED -2258,2021-08-12,27846.01598254566,477,Urgent,2021-08-15,Inconclusive,2258,89,3,2,,,,DISCHARGED -2259,2019-11-11,10204.894507932186,386,Emergency,2019-12-04,Normal,2259,173,0,1,,,,DISCHARGED -2259,2022-05-12,36353.37927751284,158,Elective,2022-06-02,Abnormal,7658,121,1,12,,,,DISCHARGED -2260,2020-04-12,21081.51233583161,422,Emergency,2020-04-30,Normal,2260,497,4,17,,,,DISCHARGED -2261,2019-07-07,3041.931672303549,427,Emergency,2019-08-04,Normal,2261,142,3,1,,,,DISCHARGED -2262,2019-05-25,44575.62574675339,390,Elective,2019-06-03,Normal,2262,481,4,14,,,,DISCHARGED -2263,2022-05-29,5738.5177622039255,197,Elective,2022-06-27,Abnormal,2263,105,4,4,,,,DISCHARGED -2264,2022-12-01,29155.229941151385,295,Elective,2022-12-23,Abnormal,2264,374,3,14,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2265,2020-09-30,14104.90520641113,246,Elective,2020-10-11,Inconclusive,2265,427,2,27,,,,DISCHARGED -2266,2023-04-06,13936.745716455896,182,Urgent,,Inconclusive,2266,304,1,20,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",OPEN -2267,2019-11-09,36208.42347482683,311,Elective,2019-11-12,Normal,2267,359,1,16,,,,DISCHARGED -2268,2021-10-09,33695.97320850632,346,Urgent,2021-11-06,Normal,2268,458,0,1,,,,DISCHARGED -2269,2022-03-18,39605.76515552316,439,Urgent,2022-04-14,Normal,2269,316,0,17,,,,DISCHARGED -2270,2023-02-14,1663.0484002373282,197,Urgent,2023-03-07,Inconclusive,2270,450,0,14,,,,DISCHARGED -2271,2022-02-13,38618.586930833095,144,Elective,2022-03-09,Abnormal,2271,122,1,19,,,,DISCHARGED -2271,2023-04-22,36371.68331885953,333,Urgent,2023-04-25,Inconclusive,8982,389,2,22,,,,DISCHARGED -2272,2019-04-23,6345.96900233399,330,Urgent,2019-05-20,Normal,2272,8,1,2,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2273,2021-05-16,1469.3568232657483,262,Elective,2021-05-23,Abnormal,2273,261,1,4,,,,DISCHARGED -2274,2021-03-12,48786.20598923016,396,Emergency,2021-04-11,Inconclusive,2274,72,1,10,,,,DISCHARGED -2275,2023-01-28,32013.08394283032,347,Urgent,2023-02-09,Inconclusive,2275,358,1,8,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -2276,2022-11-22,33993.736166348615,466,Urgent,2022-12-06,Inconclusive,2276,222,2,4,,,,DISCHARGED -2276,2020-03-05,47211.79630226493,131,Urgent,2020-03-18,Inconclusive,6118,415,0,24,,,,DISCHARGED -2277,2021-01-01,19094.737388529287,365,Elective,2021-01-19,Abnormal,2277,40,4,0,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2278,2022-05-26,14345.93278636867,244,Elective,2022-06-03,Abnormal,2278,369,0,24,,,,DISCHARGED -2279,2020-08-30,2359.1499409367643,122,Emergency,2020-09-23,Inconclusive,2279,203,0,13,,,,DISCHARGED -2280,2022-08-05,36786.38483100933,329,Urgent,2022-08-21,Abnormal,2280,263,4,4,,,,DISCHARGED -2281,2023-01-16,6711.086768488117,448,Urgent,2023-02-11,Abnormal,2281,327,1,7,,,,DISCHARGED -2283,2021-11-21,2633.189003094448,160,Emergency,2021-12-02,Inconclusive,2283,177,2,20,,,,DISCHARGED -2284,2019-01-07,30208.612385383854,414,Emergency,2019-01-22,Normal,2284,347,2,13,,,,DISCHARGED -2285,2023-04-06,18223.34113885301,403,Elective,2023-04-22,Abnormal,2285,317,0,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2286,2020-11-22,16667.598315013645,386,Elective,2020-11-30,Inconclusive,2286,83,4,15,,,,DISCHARGED -2287,2023-08-01,3568.1713752587416,387,Elective,2023-08-03,Abnormal,2287,317,3,5,,,,DISCHARGED -2288,2019-04-24,39731.42706785454,239,Urgent,2019-05-10,Abnormal,2288,110,1,7,,,,DISCHARGED -2289,2022-05-21,20839.647840054804,255,Emergency,2022-06-18,Abnormal,2289,250,0,1,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -2290,2022-02-01,19975.10973788638,169,Urgent,2022-02-20,Inconclusive,2290,382,2,18,,,,DISCHARGED -2291,2022-04-22,28882.73765923182,181,Emergency,2022-05-21,Inconclusive,2291,6,4,26,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -2292,2019-11-11,7373.567584956037,130,Urgent,2019-11-24,Normal,2292,458,4,8,,,,DISCHARGED -2293,2022-03-16,10959.395742733132,398,Urgent,2022-03-20,Normal,2293,83,0,4,,,,DISCHARGED -2294,2020-04-06,45917.33018818768,499,Urgent,2020-04-11,Inconclusive,2294,207,3,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -2295,2021-05-21,16075.748025604604,424,Emergency,2021-06-08,Abnormal,2295,387,2,24,,,,DISCHARGED -2296,2020-11-03,15263.9813639346,318,Elective,2020-11-27,Abnormal,2296,389,0,25,,,,DISCHARGED -2297,2023-01-25,10317.887835533937,365,Elective,,Inconclusive,2297,313,3,18,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",OPEN -2298,2022-04-27,16342.055683539633,165,Emergency,2022-05-08,Inconclusive,2298,21,4,29,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2299,2022-05-19,4712.685522762482,388,Emergency,2022-06-13,Inconclusive,2299,409,1,3,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2300,2020-05-16,43718.4297223795,219,Urgent,2020-05-28,Normal,2300,382,2,15,,,,DISCHARGED -2301,2019-02-16,25170.352557946007,228,Urgent,2019-03-11,Inconclusive,2301,2,2,15,,,,DISCHARGED -2302,2021-05-01,33119.394464649544,208,Elective,2021-05-29,Inconclusive,2302,126,3,15,,,,DISCHARGED -2303,2020-10-04,16200.410932547786,407,Elective,2020-10-10,Normal,2303,296,0,6,,,,DISCHARGED -2304,2021-08-10,25930.072373980896,490,Urgent,2021-08-30,Abnormal,2304,187,4,17,,,,DISCHARGED -2305,2023-07-06,2861.193169953277,367,Elective,2023-07-24,Abnormal,2305,361,3,23,,,,DISCHARGED -2306,2020-04-22,28932.177878259987,323,Urgent,2020-05-08,Normal,2306,13,1,20,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2307,2023-08-25,11428.0432828395,346,Urgent,2023-09-08,Inconclusive,2307,458,1,0,,,,DISCHARGED -2308,2022-07-06,16791.356543482056,316,Emergency,2022-07-11,Abnormal,2308,465,1,2,,,,DISCHARGED -2309,2022-12-23,30994.68289081718,396,Urgent,2023-01-16,Normal,2309,11,3,24,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2310,2021-04-30,44373.26861025433,427,Emergency,2021-05-10,Inconclusive,2310,86,4,20,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2311,2020-09-17,34201.51521616795,118,Emergency,2020-09-27,Normal,2311,11,2,7,,,,DISCHARGED -2312,2019-10-25,16806.53914284886,460,Emergency,2019-11-08,Abnormal,2312,396,0,0,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -2313,2020-07-14,17930.808495119258,498,Emergency,2020-07-29,Abnormal,2313,24,2,29,,,,DISCHARGED -2314,2021-12-30,3884.099762499568,104,Urgent,2022-01-21,Inconclusive,2314,300,4,6,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2315,2021-09-08,46998.90423250482,321,Elective,2021-09-24,Abnormal,2315,242,2,6,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -2316,2023-05-11,48959.71386836236,405,Elective,,Inconclusive,2316,121,3,7,,,,OPEN -2317,2019-02-18,6572.955455675588,362,Emergency,2019-02-27,Inconclusive,2317,146,1,18,,,,DISCHARGED -2318,2020-11-11,18673.30199706926,281,Urgent,2020-11-24,Inconclusive,2318,54,4,16,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -2319,2022-07-11,35275.92374896492,140,Urgent,2022-07-17,Normal,2319,237,4,10,,,,DISCHARGED -2320,2023-06-15,1118.997432630481,283,Urgent,2023-06-24,Inconclusive,2320,355,2,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -2321,2021-08-26,28491.069181388608,143,Urgent,2021-09-04,Normal,2321,172,3,8,,,,DISCHARGED -2322,2020-10-11,41057.71919588235,374,Emergency,2020-11-03,Inconclusive,2322,391,2,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2323,2019-12-21,29357.987181561923,216,Elective,2020-01-14,Abnormal,2323,220,2,10,,,,DISCHARGED -2324,2021-08-05,11837.898342336484,396,Urgent,2021-08-17,Abnormal,2324,118,4,5,,,,DISCHARGED -2325,2018-11-15,12093.477203602828,383,Elective,2018-11-20,Abnormal,2325,308,2,8,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -2327,2020-02-05,25694.422324704847,432,Emergency,2020-02-10,Inconclusive,2327,182,1,29,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -2328,2022-10-24,30641.502934203352,464,Emergency,2022-11-10,Normal,2328,287,2,17,,,,DISCHARGED -2328,2022-01-31,4355.584887515309,358,Urgent,2022-02-03,Abnormal,5179,306,1,19,,,,DISCHARGED -2328,2020-07-12,40922.66596426085,374,Emergency,2020-08-03,Abnormal,9889,299,4,1,Sudden onset of muscle weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2329,2021-10-25,1150.0385412114915,210,Emergency,2021-10-31,Abnormal,2329,81,3,3,,,,DISCHARGED -2329,2020-06-19,43307.802870540574,270,Elective,2020-07-06,Inconclusive,7297,453,1,17,,,,DISCHARGED -2330,2023-03-15,47530.95681156473,409,Elective,2023-03-26,Abnormal,2330,401,3,27,,,,DISCHARGED -2331,2022-09-12,39608.70209810854,142,Urgent,2022-09-21,Abnormal,2331,210,3,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2332,2022-10-04,42851.17690394441,302,Emergency,2022-10-19,Inconclusive,2332,149,1,10,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -2333,2021-04-15,45730.30140913316,213,Urgent,2021-05-02,Normal,2333,36,4,2,,,,DISCHARGED -2334,2021-12-05,4571.611661079727,194,Urgent,2021-12-23,Inconclusive,2334,351,0,7,,,,DISCHARGED -2335,2019-10-09,25721.31443907016,476,Emergency,2019-10-30,Inconclusive,2335,311,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -2336,2020-09-09,30864.42954409565,307,Emergency,2020-10-03,Inconclusive,2336,360,3,19,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2336,2023-07-08,38285.36347317979,145,Emergency,2023-07-22,Abnormal,6027,58,4,20,,,,DISCHARGED -2337,2018-12-02,14701.08535879573,198,Elective,2018-12-21,Inconclusive,2337,130,4,21,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -2338,2021-08-02,18208.46143394193,341,Elective,2021-08-13,Normal,2338,411,2,21,,,,DISCHARGED -2339,2020-10-14,43043.98520400591,429,Urgent,2020-10-26,Normal,2339,201,4,4,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2340,2023-05-17,11140.941341541358,424,Urgent,2023-05-24,Normal,2340,242,3,27,,,,DISCHARGED -2341,2019-02-15,5194.221904638795,218,Urgent,2019-02-22,Normal,2341,34,1,10,,,,DISCHARGED -2342,2022-07-25,45406.158712173776,474,Emergency,2022-08-04,Normal,2342,444,0,11,,,,DISCHARGED -2344,2019-07-22,43980.19100267912,261,Urgent,2019-07-25,Inconclusive,2344,92,2,21,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -2345,2021-07-31,49038.78501409282,101,Emergency,2021-08-19,Inconclusive,2345,437,1,8,,,,DISCHARGED -2346,2022-08-29,41605.84629859976,464,Urgent,2022-09-17,Normal,2346,446,0,20,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2347,2021-07-17,46472.464608285765,342,Emergency,2021-07-28,Abnormal,2347,206,0,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2348,2019-04-21,24875.20478551069,153,Emergency,2019-04-24,Inconclusive,2348,352,0,21,,,,DISCHARGED -2349,2022-10-08,40118.65938226198,266,Elective,2022-10-26,Abnormal,2349,390,1,19,,,,DISCHARGED -2350,2018-12-14,45298.38118329326,219,Emergency,2018-12-24,Normal,2350,331,2,28,,,,DISCHARGED -2351,2021-09-30,11573.046617163329,457,Elective,2021-10-27,Normal,2351,304,2,2,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2352,2019-04-06,9358.753378174602,292,Emergency,2019-04-14,Inconclusive,2352,349,0,12,,,,DISCHARGED -2353,2021-08-13,22397.464256220595,333,Emergency,2021-09-04,Inconclusive,2353,212,1,27,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -2354,2021-05-16,24258.90963660196,146,Elective,2021-05-27,Abnormal,2354,158,0,21,,,,DISCHARGED -2355,2018-12-08,23746.080450451056,386,Elective,2018-12-31,Abnormal,2355,441,4,10,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -2356,2023-05-12,26765.097634779537,210,Urgent,2023-05-20,Normal,2356,444,2,10,,,,DISCHARGED -2357,2020-07-12,38202.82923434137,390,Urgent,2020-08-08,Inconclusive,2357,23,3,20,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -2358,2022-08-14,47777.21505946255,432,Emergency,2022-09-09,Normal,2358,403,0,19,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -2359,2019-03-11,20929.38642144212,189,Emergency,2019-03-27,Inconclusive,2359,292,4,20,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2360,2022-04-27,46271.862132410766,331,Elective,2022-05-25,Normal,2360,3,2,6,,,,DISCHARGED -2361,2022-07-08,38515.42563814221,492,Urgent,2022-07-22,Inconclusive,2361,219,1,16,,,,DISCHARGED -2362,2019-12-15,35294.06997299388,435,Urgent,2019-12-23,Abnormal,2362,363,2,15,,,,DISCHARGED -2363,2021-10-10,14939.983172651551,124,Elective,2021-10-18,Inconclusive,2363,381,1,13,,,,DISCHARGED -2364,2019-07-20,26548.300531705896,346,Urgent,2019-08-15,Abnormal,2364,19,1,0,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2365,2019-11-05,33998.31629916556,150,Elective,2019-12-03,Inconclusive,2365,443,0,10,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -2366,2022-04-18,17851.783001176973,495,Elective,2022-04-23,Abnormal,2366,151,0,12,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -2367,2022-08-30,31822.97412474739,373,Emergency,2022-09-09,Inconclusive,2367,49,2,0,,,,DISCHARGED -2368,2018-11-11,5650.422298570675,269,Emergency,2018-11-26,Inconclusive,2368,176,4,1,,,,DISCHARGED -2369,2020-10-13,44765.58716091066,115,Emergency,2020-10-24,Inconclusive,2369,434,2,8,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -2370,2020-01-24,31154.085244403264,133,Emergency,2020-02-17,Inconclusive,2370,95,3,12,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -2371,2022-02-15,41189.99688014055,233,Elective,2022-02-20,Normal,2371,104,1,4,,,,DISCHARGED -2372,2022-06-12,24410.65050679472,172,Urgent,2022-06-16,Abnormal,2372,419,1,29,,,,DISCHARGED -2373,2019-04-28,4518.748954945522,286,Urgent,2019-05-25,Normal,2373,249,0,8,,,,DISCHARGED -2374,2020-10-14,2414.020915480637,218,Urgent,2020-10-20,Inconclusive,2374,116,4,12,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2375,2020-12-19,24941.410274328853,419,Urgent,2021-01-03,Abnormal,2375,353,0,4,,,,DISCHARGED -2376,2020-06-01,32562.70351950048,212,Emergency,2020-06-07,Normal,2376,227,3,14,,,,DISCHARGED -2377,2022-09-05,41347.98857123617,276,Urgent,2022-09-08,Inconclusive,2377,65,2,29,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -2378,2023-08-15,39553.32456079616,278,Elective,2023-08-25,Abnormal,2378,334,2,6,,,,DISCHARGED -2379,2022-07-18,19755.373031721934,402,Emergency,2022-07-29,Normal,2379,417,4,13,,,,DISCHARGED -2380,2020-05-02,37531.703847054814,183,Elective,2020-05-05,Inconclusive,2380,419,0,29,,,,DISCHARGED -2381,2021-07-05,19901.46012085634,154,Urgent,2021-08-01,Inconclusive,2381,261,0,15,,,,DISCHARGED -2381,2018-12-25,13286.217132280082,249,Elective,2019-01-22,Inconclusive,3726,294,3,5,,,,DISCHARGED -2381,2022-04-03,11936.684518157424,225,Elective,2022-04-17,Abnormal,9410,425,2,1,,,,DISCHARGED -2382,2019-12-12,15475.123417755798,317,Emergency,2019-12-17,Normal,2382,242,0,15,,,,DISCHARGED -2383,2021-05-23,4253.658485597198,230,Urgent,2021-06-12,Inconclusive,2383,370,4,18,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2384,2018-11-06,32160.31232827805,333,Elective,2018-11-21,Abnormal,2384,185,2,4,,,,DISCHARGED -2385,2021-12-20,30200.854989668474,171,Emergency,2022-01-06,Abnormal,2385,245,3,3,,,,DISCHARGED -2386,2020-08-06,43652.54938453201,322,Urgent,2020-08-29,Inconclusive,2386,124,4,13,,,,DISCHARGED -2387,2019-06-27,3695.774905599485,335,Urgent,2019-07-25,Abnormal,2387,267,1,26,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -2388,2019-03-20,36441.792541175215,146,Emergency,2019-04-13,Normal,2388,130,3,5,,,,DISCHARGED -2389,2019-04-14,22599.918354897974,180,Emergency,2019-04-24,Abnormal,2389,236,4,7,,,,DISCHARGED -2390,2023-04-22,3841.4445514061263,265,Urgent,,Abnormal,2390,17,0,23,,,,OPEN -2391,2023-10-11,23239.465338603477,384,Elective,2023-10-24,Inconclusive,2391,39,1,2,,,,DISCHARGED -2392,2020-01-25,21155.17101002852,375,Emergency,2020-02-24,Inconclusive,2392,20,3,3,,,,DISCHARGED -2393,2022-06-30,28782.55631491791,237,Elective,2022-07-12,Normal,2393,398,0,0,,,,DISCHARGED -2394,2021-12-12,48724.403799461856,309,Elective,2021-12-25,Inconclusive,2394,224,1,1,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2395,2019-08-29,21231.60183244362,448,Emergency,2019-09-04,Normal,2395,354,2,12,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -2396,2019-04-04,48265.43167528375,120,Urgent,2019-05-02,Abnormal,2396,281,0,8,,,,DISCHARGED -2397,2022-12-16,30971.332011789167,181,Emergency,2022-12-17,Abnormal,2397,7,4,11,,,,DISCHARGED -2398,2019-08-28,29508.544951269727,301,Elective,2019-09-13,Normal,2398,99,3,9,,,,DISCHARGED -2399,2021-04-03,35239.642723172175,139,Urgent,2021-04-09,Abnormal,2399,239,1,9,,,,DISCHARGED -2400,2023-08-16,18718.386094436544,175,Emergency,2023-09-02,Inconclusive,2400,477,0,17,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2400,2023-09-26,7060.340799098249,391,Urgent,2023-10-12,Inconclusive,3538,86,2,11,,,,DISCHARGED -2401,2022-03-14,5958.399674826673,329,Urgent,2022-03-26,Abnormal,2401,297,3,21,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2402,2020-10-23,26235.62790564147,348,Emergency,2020-11-13,Normal,2402,427,3,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -2403,2022-01-22,15019.554181198337,431,Elective,2022-02-12,Normal,2403,13,0,15,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2404,2019-04-12,21708.336790396603,455,Emergency,2019-04-27,Abnormal,2404,333,2,22,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2405,2022-11-13,9746.567052411929,310,Emergency,2022-11-22,Abnormal,2405,1,1,5,,,,DISCHARGED -2406,2021-10-08,48205.951813282685,121,Elective,2021-10-25,Normal,2406,374,0,23,,,,DISCHARGED -2409,2022-12-27,31329.855277068917,155,Urgent,2023-01-17,Abnormal,2409,292,1,24,,,,DISCHARGED -2410,2021-08-04,47936.2800005293,395,Elective,2021-08-16,Abnormal,2410,324,3,23,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2411,2023-10-15,19260.66177930895,393,Elective,2023-10-22,Abnormal,2411,421,1,20,,,,DISCHARGED -2412,2022-07-10,47777.3761609721,185,Urgent,2022-07-14,Inconclusive,2412,492,2,23,,,,DISCHARGED -2413,2020-12-02,28971.34179109367,367,Emergency,2020-12-24,Normal,2413,40,4,9,,,,DISCHARGED -2414,2019-10-17,26390.525806142625,478,Elective,2019-11-13,Inconclusive,2414,317,2,14,,,,DISCHARGED -2415,2022-04-02,3907.408582108694,399,Elective,2022-04-28,Inconclusive,2415,315,1,25,,,,DISCHARGED -2416,2022-05-01,45860.2366883881,284,Urgent,2022-05-15,Normal,2416,380,0,8,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -2417,2019-12-14,36706.498065552645,463,Emergency,2019-12-19,Abnormal,2417,110,3,29,,,,DISCHARGED -2418,2022-09-26,42697.14994896471,236,Elective,2022-10-05,Abnormal,2418,13,4,23,,,,DISCHARGED -2419,2020-02-23,40329.82331813814,189,Emergency,2020-03-01,Normal,2419,230,0,1,,,,DISCHARGED -2420,2021-11-07,19474.37857921707,275,Urgent,2021-12-06,Abnormal,2420,472,0,17,,,,DISCHARGED -2421,2022-06-16,41513.49610937837,259,Elective,2022-07-15,Normal,2421,83,2,11,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2421,2019-06-09,13969.259804359022,442,Emergency,2019-07-03,Normal,5518,129,1,2,,,,DISCHARGED -2422,2019-11-18,45186.29949207065,345,Emergency,2019-12-09,Inconclusive,2422,230,2,6,,,,DISCHARGED -2423,2022-10-13,41920.69500328894,369,Urgent,2022-11-07,Abnormal,2423,325,1,8,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2424,2019-06-07,8839.557139021788,257,Emergency,2019-06-09,Abnormal,2424,144,2,7,,,,DISCHARGED -2425,2018-11-21,45789.5706959931,123,Elective,2018-12-11,Abnormal,2425,378,0,24,,,,DISCHARGED -2426,2023-02-17,23437.707981805444,477,Elective,2023-03-12,Inconclusive,2426,344,3,5,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2427,2022-12-22,30037.19193716713,305,Emergency,2023-01-04,Inconclusive,2427,27,1,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -2428,2020-01-06,20629.109799307986,169,Emergency,2020-01-24,Normal,2428,65,4,13,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2429,2022-05-20,16590.439272803203,313,Urgent,2022-06-04,Abnormal,2429,162,4,15,,,,DISCHARGED -2430,2020-06-10,32071.67937736797,140,Elective,2020-07-02,Inconclusive,2430,228,0,27,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2431,2022-06-22,11013.209220994297,330,Emergency,2022-07-01,Inconclusive,2431,260,2,15,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2432,2019-03-18,16924.127913348588,205,Urgent,2019-03-24,Inconclusive,2432,448,2,3,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2433,2023-07-13,14742.926042628931,497,Elective,2023-07-28,Inconclusive,2433,423,0,28,,,,DISCHARGED -2434,2019-05-31,11245.848532158388,246,Elective,2019-06-19,Inconclusive,2434,459,4,5,,,,DISCHARGED -2434,2021-10-03,34128.92877588977,338,Emergency,2021-10-07,Inconclusive,3626,439,4,14,,,,DISCHARGED -2435,2019-06-18,5018.831061409541,356,Elective,2019-07-12,Inconclusive,2435,163,2,27,,,,DISCHARGED -2436,2019-09-26,2241.951751163587,178,Urgent,2019-10-08,Inconclusive,2436,300,1,21,,,,DISCHARGED -2437,2022-03-13,6371.920728262035,310,Urgent,2022-04-11,Normal,2437,406,3,7,,,,DISCHARGED -2438,2019-12-15,40145.24000138376,117,Emergency,2019-12-17,Normal,2438,302,1,0,,,,DISCHARGED -2439,2019-05-14,39839.63860765666,422,Emergency,2019-06-13,Abnormal,2439,286,4,12,,,,DISCHARGED -2440,2023-08-09,42673.708187137694,435,Elective,2023-09-07,Inconclusive,2440,394,1,26,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -2441,2023-03-13,10830.14210525292,275,Elective,2023-04-08,Inconclusive,2441,9,3,17,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -2442,2019-02-12,21320.117258521143,165,Elective,2019-02-23,Normal,2442,194,1,17,,,,DISCHARGED -2443,2022-01-20,29603.05970719841,407,Elective,2022-02-06,Inconclusive,2443,117,1,12,,,,DISCHARGED -2444,2021-04-20,22130.223479035947,196,Elective,2021-05-06,Normal,2444,269,1,21,,,,DISCHARGED -2445,2022-06-24,20064.509542107084,174,Urgent,2022-07-19,Abnormal,2445,79,1,29,,,,DISCHARGED -2446,2019-07-07,7156.415792828478,485,Emergency,2019-07-24,Abnormal,2446,457,0,13,,,,DISCHARGED -2447,2022-10-06,5157.15398660283,256,Elective,2022-10-18,Inconclusive,2447,92,4,10,,,,DISCHARGED -2448,2021-03-31,5438.366580021159,258,Elective,2021-04-07,Abnormal,2448,265,3,6,,,,DISCHARGED -2449,2020-06-26,43897.651310667614,275,Urgent,2020-07-06,Abnormal,2449,331,4,17,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -2450,2021-08-17,14013.744275075303,376,Urgent,2021-08-27,Abnormal,2450,349,0,20,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -2450,2019-04-22,16362.17600643445,360,Urgent,2019-05-14,Abnormal,9038,360,0,21,,,,DISCHARGED -2451,2020-09-17,39521.41561682892,327,Urgent,2020-10-16,Inconclusive,2451,256,0,3,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -2452,2022-01-10,3273.499068275321,385,Emergency,2022-02-07,Abnormal,2452,132,0,16,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -2453,2023-01-02,28194.600073883343,333,Emergency,2023-01-09,Inconclusive,2453,275,1,18,,,,DISCHARGED -2454,2023-04-12,45984.47445143882,445,Emergency,,Inconclusive,2454,263,4,13,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",OPEN -2455,2019-03-06,5397.666347489107,374,Emergency,2019-03-28,Normal,2455,170,2,9,,,,DISCHARGED -2455,2021-04-06,35939.43169113827,467,Urgent,2021-04-30,Abnormal,9304,459,3,24,,,,DISCHARGED -2456,2021-07-17,6200.695529873992,458,Urgent,2021-08-07,Inconclusive,2456,0,0,28,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -2457,2019-09-08,16011.779350249855,120,Emergency,2019-09-17,Inconclusive,2457,312,4,5,,,,DISCHARGED -2458,2019-11-29,8161.201023922842,152,Urgent,2019-12-06,Inconclusive,2458,63,0,17,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -2459,2022-11-29,16188.837522892652,457,Urgent,2022-12-19,Inconclusive,2459,373,0,24,,,,DISCHARGED -2460,2022-08-20,11901.589746095648,276,Urgent,2022-09-15,Abnormal,2460,467,0,3,,,,DISCHARGED -2461,2021-06-20,15380.13437328461,419,Urgent,2021-06-28,Inconclusive,2461,283,0,10,,,,DISCHARGED -2461,2019-12-03,29806.891947953394,191,Urgent,2019-12-27,Normal,6354,120,0,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2462,2020-12-26,46700.03560980359,473,Elective,2021-01-07,Abnormal,2462,106,3,7,,,,DISCHARGED -2463,2022-04-29,37780.69359828156,259,Elective,2022-05-01,Abnormal,2463,420,4,9,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -2464,2022-07-31,16219.584011911596,165,Urgent,2022-08-08,Inconclusive,2464,174,0,22,,,,DISCHARGED -2465,2022-11-18,8442.245213122707,221,Elective,2022-11-28,Normal,2465,484,0,27,,,,DISCHARGED -2466,2022-06-10,42220.478409769945,248,Urgent,2022-06-22,Inconclusive,2466,203,0,10,,,,DISCHARGED -2466,2021-11-22,18293.22504138837,311,Elective,2021-12-18,Inconclusive,5952,164,0,2,,,,DISCHARGED -2466,2023-09-03,22506.327469888354,153,Emergency,2023-09-16,Normal,7382,304,1,14,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2467,2019-05-02,27335.91992123,342,Elective,2019-05-25,Abnormal,2467,496,1,7,,,,DISCHARGED -2468,2020-12-23,2517.450463083744,379,Emergency,2021-01-21,Abnormal,2468,119,2,19,,,,DISCHARGED -2469,2019-01-11,45402.997497176286,341,Urgent,2019-01-20,Inconclusive,2469,43,0,17,,,,DISCHARGED -2470,2020-11-22,22476.741759452263,213,Urgent,2020-11-30,Inconclusive,2470,311,2,26,,,,DISCHARGED -2471,2019-12-24,22918.0911148914,475,Urgent,2020-01-19,Inconclusive,2471,155,3,20,,,,DISCHARGED -2472,2021-09-03,29395.418118566435,437,Emergency,2021-10-02,Inconclusive,2472,366,2,0,,,,DISCHARGED -2472,2022-11-04,13838.988236861156,158,Elective,2022-11-30,Abnormal,6303,206,4,28,,,,DISCHARGED -2473,2022-06-09,47399.457605142845,155,Emergency,2022-07-09,Normal,2473,389,1,23,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2474,2022-12-09,49003.46904928367,208,Urgent,2022-12-29,Abnormal,2474,107,1,29,,,,DISCHARGED -2475,2022-01-24,33718.96556538412,288,Elective,2022-02-19,Inconclusive,2475,250,0,7,,,,DISCHARGED -2476,2023-04-07,28229.15208168493,308,Elective,2023-05-05,Abnormal,2476,444,0,2,,,,DISCHARGED -2477,2019-03-09,24297.349844283555,389,Elective,2019-03-22,Abnormal,2477,403,3,0,,,,DISCHARGED -2478,2022-01-06,39336.78760601399,416,Elective,2022-01-31,Normal,2478,369,3,19,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -2479,2023-03-21,12470.10454188172,333,Elective,,Inconclusive,2479,333,4,24,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,OPEN -2480,2019-06-26,1333.1894640653377,493,Elective,2019-07-22,Normal,2480,129,0,15,,,,DISCHARGED -2481,2020-09-09,33872.49276820652,287,Emergency,2020-09-28,Abnormal,2481,456,0,8,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -2482,2022-11-19,13891.42976370759,497,Emergency,2022-12-19,Inconclusive,2482,292,3,16,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2483,2018-11-09,38436.50156984787,186,Urgent,2018-12-02,Abnormal,2483,19,3,26,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2484,2020-10-21,34070.15288761023,208,Urgent,2020-11-01,Normal,2484,281,3,15,,,,DISCHARGED -2485,2019-09-02,1797.8955498038824,248,Urgent,2019-09-07,Normal,2485,284,1,22,,,,DISCHARGED -2485,2019-02-13,49611.00275801964,240,Elective,2019-03-09,Inconclusive,8116,0,2,5,,,,DISCHARGED -2486,2019-03-10,42331.91830144021,416,Urgent,2019-03-25,Abnormal,2486,118,2,29,,,,DISCHARGED -2487,2022-04-07,37053.19919361424,164,Emergency,2022-04-16,Inconclusive,2487,34,0,22,,,,DISCHARGED -2488,2021-08-07,36351.927384573646,183,Elective,2021-09-04,Inconclusive,2488,197,1,6,,,,DISCHARGED -2489,2019-10-04,16567.23352595263,141,Urgent,2019-10-20,Abnormal,2489,484,3,23,,,,DISCHARGED -2490,2022-06-03,30202.06210754691,312,Emergency,2022-06-30,Abnormal,2490,244,0,15,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2491,2023-10-12,33626.74015820449,207,Urgent,2023-11-07,Normal,2491,58,1,7,,,,DISCHARGED -2492,2019-06-05,3966.212163117587,433,Urgent,2019-06-24,Abnormal,2492,324,4,9,,,,DISCHARGED -2493,2022-01-30,5342.107255750262,376,Emergency,2022-02-25,Abnormal,2493,160,1,13,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2494,2022-07-25,36815.52831938813,401,Emergency,2022-08-23,Abnormal,2494,496,0,10,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -2495,2020-03-10,47964.57112290667,353,Elective,2020-03-23,Inconclusive,2495,178,2,1,,,,DISCHARGED -2496,2021-10-27,37411.45896100474,122,Urgent,2021-11-06,Normal,2496,205,3,11,,,,DISCHARGED -2497,2019-03-29,43465.7415969958,362,Elective,2019-04-10,Inconclusive,2497,11,4,27,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2498,2022-04-10,32981.51555712364,363,Urgent,2022-04-16,Normal,2498,489,1,27,,,,DISCHARGED -2499,2020-08-29,9245.538029929652,322,Elective,2020-09-16,Inconclusive,2499,275,0,19,,,,DISCHARGED -2500,2023-07-16,5105.853256042749,357,Emergency,2023-07-26,Abnormal,2500,180,0,19,,,,DISCHARGED -2501,2020-07-10,47869.53814099664,401,Urgent,2020-07-14,Inconclusive,2501,241,3,12,,,,DISCHARGED -2501,2022-04-17,9343.708181058417,470,Elective,2022-05-16,Normal,3213,215,0,14,,,,DISCHARGED -2501,2021-03-13,39161.047336248914,304,Elective,2021-03-27,Abnormal,4190,250,0,26,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -2502,2019-08-26,16825.748562014633,124,Emergency,2019-09-22,Abnormal,2502,298,3,25,,,,DISCHARGED -2503,2021-10-01,10274.286916230649,276,Urgent,2021-10-18,Abnormal,2503,125,4,11,,,,DISCHARGED -2504,2018-11-25,17191.66553889664,376,Urgent,2018-11-29,Normal,2504,481,2,12,,,,DISCHARGED -2504,2023-05-15,8736.107586721815,370,Urgent,2023-05-19,Inconclusive,4554,216,2,7,,,,DISCHARGED -2504,2022-08-30,19213.05053111153,272,Elective,2022-09-24,Normal,7836,305,1,15,,,,DISCHARGED -2505,2020-11-01,45405.45615036273,417,Urgent,2020-11-25,Normal,2505,284,4,29,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -2506,2020-09-28,24065.96392060597,187,Urgent,2020-10-07,Abnormal,2506,184,1,28,,,,DISCHARGED -2507,2022-05-08,12117.904737790255,223,Urgent,2022-06-05,Abnormal,2507,38,2,28,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2508,2022-03-25,22918.081572843308,210,Urgent,2022-03-29,Abnormal,2508,222,3,2,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2509,2023-04-28,1280.5533033794738,453,Elective,2023-05-06,Normal,2509,183,0,27,,,,DISCHARGED -2510,2020-03-09,41518.73435076176,477,Elective,2020-03-25,Inconclusive,2510,494,2,28,,,,DISCHARGED -2511,2021-03-13,3184.197956562955,232,Emergency,2021-04-12,Abnormal,2511,426,4,12,,,,DISCHARGED -2512,2021-03-22,19444.70474129962,197,Emergency,2021-03-26,Inconclusive,2512,177,2,11,,,,DISCHARGED -2513,2020-10-09,19453.264438587303,122,Urgent,2020-10-20,Normal,2513,406,4,18,,,,DISCHARGED -2514,2023-01-18,47142.33250958913,111,Urgent,,Normal,2514,427,4,28,,,,OPEN -2515,2019-10-20,16045.514403996984,349,Urgent,2019-11-17,Abnormal,2515,293,4,1,,,,DISCHARGED -2516,2022-05-18,31303.77519176569,301,Emergency,2022-06-07,Inconclusive,2516,339,1,0,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2517,2021-08-14,13380.82012275722,276,Emergency,2021-08-20,Abnormal,2517,150,3,7,,,,DISCHARGED -2518,2020-05-29,46252.60201181317,298,Emergency,2020-06-13,Inconclusive,2518,383,2,29,,,,DISCHARGED -2519,2022-06-23,39677.64886553293,456,Elective,2022-07-20,Abnormal,2519,125,3,8,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2520,2019-12-02,35353.55407132734,285,Elective,2019-12-18,Abnormal,2520,300,0,24,,,,DISCHARGED -2521,2021-01-19,42439.58283142851,429,Elective,2021-01-29,Abnormal,2521,307,2,26,,,,DISCHARGED -2522,2021-12-04,19534.98898999367,189,Emergency,2021-12-21,Normal,2522,335,3,7,,,,DISCHARGED -2523,2019-03-23,19292.71224178668,436,Elective,2019-03-25,Inconclusive,2523,433,3,20,,,,DISCHARGED -2524,2020-02-27,40323.77260816338,229,Elective,2020-03-04,Inconclusive,2524,233,0,16,,,,DISCHARGED -2525,2021-09-27,37382.58099687849,405,Elective,2021-10-04,Normal,2525,379,4,8,,,,DISCHARGED -2526,2023-01-20,3943.2140265605167,370,Elective,2023-02-03,Abnormal,2526,374,2,5,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2526,2019-01-03,6196.06882368655,133,Elective,2019-02-01,Abnormal,4578,7,2,27,,,,DISCHARGED -2527,2020-07-29,46162.23254088883,452,Urgent,2020-08-18,Inconclusive,2527,497,0,14,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2528,2019-04-16,36618.12059934924,335,Urgent,2019-05-12,Abnormal,2528,340,4,22,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -2529,2020-02-14,35048.373020686005,109,Emergency,2020-03-08,Abnormal,2529,128,2,23,,,,DISCHARGED -2530,2022-05-22,2437.047667190419,233,Urgent,2022-05-29,Inconclusive,2530,263,2,12,,,,DISCHARGED -2531,2021-04-26,16773.726335059444,495,Elective,2021-05-09,Abnormal,2531,156,2,20,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -2532,2022-08-16,3750.387256178306,147,Elective,2022-08-21,Abnormal,2532,351,4,21,,,,DISCHARGED -2533,2021-11-09,33030.10172775421,128,Urgent,2021-12-04,Abnormal,2533,357,0,11,,,,DISCHARGED -2534,2021-12-12,7097.149276795404,277,Urgent,2021-12-16,Normal,2534,4,2,12,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -2535,2021-07-23,17078.678064416912,145,Emergency,2021-08-18,Normal,2535,494,3,6,,,,DISCHARGED -2536,2022-12-30,18488.790818903144,426,Urgent,2023-01-01,Normal,2536,85,4,22,,,,DISCHARGED -2536,2020-12-01,43694.59262070149,411,Emergency,2020-12-04,Normal,5247,174,1,17,,,,DISCHARGED -2537,2023-05-15,11996.354746497836,190,Elective,,Inconclusive,2537,289,0,13,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",OPEN -2539,2021-04-25,29311.23157184468,179,Urgent,2021-05-10,Abnormal,2539,192,3,10,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2540,2019-06-29,44225.21987041013,158,Elective,2019-07-19,Abnormal,2540,310,2,27,,,,DISCHARGED -2541,2020-02-14,8241.939392050404,290,Elective,2020-03-15,Inconclusive,2541,118,1,13,,,,DISCHARGED -2542,2020-02-21,47901.3316383337,389,Elective,2020-03-21,Inconclusive,2542,217,0,16,,,,DISCHARGED -2543,2023-05-05,23997.405126439808,127,Emergency,,Abnormal,2543,426,4,23,,,,OPEN -2544,2023-08-17,13121.031808802823,137,Emergency,2023-09-14,Inconclusive,2544,457,1,20,,,,DISCHARGED -2545,2022-04-18,16828.6060406219,152,Emergency,2022-05-05,Normal,2545,413,1,25,,,,DISCHARGED -2546,2018-11-16,34992.70272714538,365,Urgent,2018-11-24,Inconclusive,2546,113,3,1,,,,DISCHARGED -2547,2022-12-23,11818.71890906016,397,Emergency,2022-12-27,Abnormal,2547,465,0,18,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2548,2021-11-29,27985.709146391677,491,Urgent,2021-12-15,Abnormal,2548,144,3,15,,,,DISCHARGED -2549,2021-02-02,3487.9251836506346,136,Elective,2021-02-10,Abnormal,2549,25,3,21,,,,DISCHARGED -2551,2021-06-14,16729.618723782067,307,Urgent,2021-07-11,Abnormal,2551,135,2,9,,,,DISCHARGED -2551,2023-10-27,36780.69863519063,122,Emergency,,Inconclusive,4283,302,4,21,,,,OPEN -2552,2021-06-08,24137.80095281537,481,Elective,2021-07-01,Inconclusive,2552,231,1,7,,,,DISCHARGED -2552,2022-02-18,35069.38994550068,471,Urgent,2022-03-10,Normal,2917,368,0,20,,,,DISCHARGED -2552,2022-12-10,42792.80326171994,347,Elective,2023-01-07,Inconclusive,8069,75,4,4,,,,DISCHARGED -2553,2020-01-18,16508.91894696419,134,Urgent,2020-02-16,Abnormal,2553,474,4,6,,,,DISCHARGED -2554,2022-05-05,24310.931965028103,314,Elective,2022-05-09,Inconclusive,2554,327,0,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -2555,2021-01-12,42424.75551118867,176,Urgent,2021-01-14,Normal,2555,344,4,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2556,2018-12-06,21512.8504555352,356,Emergency,2018-12-21,Normal,2556,301,2,15,,,,DISCHARGED -2557,2023-03-28,2325.240554341675,228,Urgent,2023-03-30,Abnormal,2557,451,4,29,,,,DISCHARGED -2558,2019-08-22,10898.879544198791,226,Elective,2019-09-09,Abnormal,2558,288,2,4,,,,DISCHARGED -2559,2019-04-22,29788.209360541117,280,Urgent,2019-05-16,Inconclusive,2559,0,1,15,,,,DISCHARGED -2559,2023-10-12,10950.748180557635,424,Elective,2023-10-17,Normal,4321,146,1,14,,,,DISCHARGED -2560,2019-12-05,10939.259060025885,142,Urgent,2019-12-09,Abnormal,2560,286,3,8,,,,DISCHARGED -2561,2023-10-20,5517.214581572903,129,Urgent,2023-10-22,Abnormal,2561,463,2,21,,,,DISCHARGED -2562,2021-09-15,22315.03437321993,294,Urgent,2021-10-05,Normal,2562,141,1,22,,,,DISCHARGED -2563,2023-02-27,8753.971870005033,272,Elective,,Inconclusive,2563,52,4,11,,,,OPEN -2564,2021-02-17,34523.12900685982,134,Urgent,2021-03-19,Inconclusive,2564,303,0,7,,,,DISCHARGED -2564,2018-10-30,42709.355599637136,204,Emergency,2018-11-22,Normal,5864,68,0,12,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -2565,2021-08-09,40510.29083835007,416,Urgent,2021-08-24,Abnormal,2565,360,2,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -2566,2023-10-26,21561.346235408444,486,Urgent,,Normal,2566,89,3,13,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -2567,2022-04-09,18949.370091854224,212,Elective,2022-04-26,Normal,2567,445,4,15,,,,DISCHARGED -2568,2022-12-11,16753.26329814126,158,Elective,2022-12-31,Normal,2568,219,2,10,,,,DISCHARGED -2568,2019-10-06,45524.116371496086,282,Urgent,2019-10-09,Normal,7609,449,0,19,,,,DISCHARGED -2569,2021-01-05,27643.351260859155,366,Emergency,2021-02-03,Abnormal,2569,497,2,11,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2570,2022-10-10,37092.66802185113,113,Urgent,2022-10-31,Normal,2570,191,4,14,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2570,2021-04-05,17588.862554785428,416,Emergency,2021-04-08,Abnormal,4494,453,1,23,,,,DISCHARGED -2571,2020-03-26,19985.102277601043,466,Emergency,2020-04-05,Abnormal,2571,62,4,11,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -2572,2023-08-02,24291.275911118257,354,Elective,2023-08-24,Normal,2572,72,1,25,,,,DISCHARGED -2573,2022-04-09,28287.58615407271,422,Elective,2022-04-21,Normal,2573,160,1,8,,,,DISCHARGED -2573,2020-06-23,42314.383839214206,139,Urgent,2020-07-21,Inconclusive,7761,168,1,0,,,,DISCHARGED -2574,2021-03-13,10535.29051168389,326,Emergency,2021-04-10,Abnormal,2574,88,2,2,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -2575,2019-12-31,22770.96299438292,181,Urgent,2020-01-05,Inconclusive,2575,175,0,11,,,,DISCHARGED -2575,2023-04-21,10428.656829988846,318,Urgent,2023-04-22,Inconclusive,9110,268,2,19,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -2576,2021-03-28,36414.60739840357,429,Elective,2021-04-12,Abnormal,2576,72,0,12,,,,DISCHARGED -2576,2022-09-06,25225.370249528787,339,Urgent,2022-09-12,Inconclusive,7951,244,4,22,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -2577,2020-05-03,36337.22925933667,119,Elective,2020-05-25,Inconclusive,2577,76,3,5,,,,DISCHARGED -2578,2019-02-23,16890.898064171648,177,Elective,2019-03-05,Inconclusive,2578,158,4,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -2579,2019-02-07,22940.532321347528,272,Urgent,2019-03-03,Normal,2579,488,2,9,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -2580,2022-11-22,44172.58206463089,479,Elective,2022-12-12,Normal,2580,458,2,15,,,,DISCHARGED -2581,2020-01-14,34261.43004173457,170,Urgent,2020-02-06,Inconclusive,2581,323,0,26,,,,DISCHARGED -2582,2020-04-03,45874.633130404414,266,Urgent,2020-04-15,Abnormal,2582,97,2,0,,,,DISCHARGED -2583,2022-07-08,18203.36690870457,342,Emergency,2022-07-25,Abnormal,2583,380,1,15,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -2583,2023-06-29,33971.08328566391,403,Urgent,,Normal,3248,101,2,3,,,,OPEN -2583,2021-06-17,48520.13280392152,142,Elective,2021-07-01,Normal,6370,493,0,5,,,,DISCHARGED -2584,2020-04-15,2753.453007872876,371,Elective,2020-05-08,Abnormal,2584,131,0,18,,,,DISCHARGED -2585,2021-03-20,30290.43210670009,256,Emergency,2021-04-07,Inconclusive,2585,101,1,1,,,,DISCHARGED -2586,2019-12-23,12668.5311373092,452,Emergency,2019-12-26,Inconclusive,2586,18,0,17,,,,DISCHARGED -2587,2022-05-07,10269.930800726186,369,Elective,2022-05-26,Abnormal,2587,453,3,9,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -2588,2019-03-31,5449.098927619556,149,Urgent,2019-04-06,Inconclusive,2588,481,4,27,,,,DISCHARGED -2589,2022-09-13,23777.217496608027,376,Urgent,2022-09-16,Inconclusive,2589,81,2,27,,,,DISCHARGED -2590,2020-04-07,5205.633624565028,209,Emergency,2020-05-05,Normal,2590,396,3,3,,,,DISCHARGED -2591,2022-08-07,24656.194454012835,366,Urgent,2022-09-04,Normal,2591,488,2,28,,,,DISCHARGED -2592,2021-01-31,5124.0239662893255,166,Emergency,2021-02-27,Inconclusive,2592,278,3,0,,,,DISCHARGED -2593,2021-05-30,15802.581219986732,324,Elective,2021-06-01,Abnormal,2593,338,2,14,,,,DISCHARGED -2594,2019-04-14,20322.081075998063,314,Emergency,2019-05-13,Inconclusive,2594,364,1,9,,,,DISCHARGED -2595,2023-04-10,18404.55616353791,175,Urgent,2023-04-13,Inconclusive,2595,330,0,17,,,,DISCHARGED -2596,2019-01-16,27748.854813861133,174,Elective,2019-01-23,Normal,2596,128,0,15,,,,DISCHARGED -2597,2021-02-11,2128.746992472857,393,Urgent,2021-02-12,Abnormal,2597,343,1,12,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -2598,2019-06-14,1604.020084840759,450,Urgent,2019-07-01,Inconclusive,2598,309,3,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -2599,2019-01-22,19175.262325931897,449,Elective,2019-02-20,Inconclusive,2599,454,4,14,,,,DISCHARGED -2601,2020-11-29,45875.76239815678,205,Emergency,2020-12-18,Abnormal,2601,88,3,1,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -2602,2023-09-17,29710.279562313823,438,Elective,2023-09-19,Normal,2602,212,0,19,,,,DISCHARGED -2604,2019-12-11,46757.77721032385,338,Elective,2019-12-30,Abnormal,2604,142,4,3,,,,DISCHARGED -2605,2020-12-30,17488.630668604463,447,Urgent,2021-01-15,Inconclusive,2605,64,2,0,,,,DISCHARGED -2606,2021-08-11,21378.161052862783,253,Emergency,2021-08-14,Abnormal,2606,75,4,6,,,,DISCHARGED -2607,2023-02-07,26156.21340416225,118,Urgent,2023-03-09,Inconclusive,2607,198,3,22,,,,DISCHARGED -2608,2021-06-06,41587.356487703895,159,Elective,2021-06-18,Normal,2608,142,1,25,,,,DISCHARGED -2609,2020-04-20,39700.12825686741,139,Emergency,2020-05-13,Inconclusive,2609,404,2,10,,,,DISCHARGED -2610,2020-03-17,21493.926930527858,461,Emergency,2020-03-27,Abnormal,2610,402,3,25,,,,DISCHARGED -2611,2019-06-05,31067.32279879445,256,Elective,2019-06-25,Abnormal,2611,315,2,9,,,,DISCHARGED -2611,2022-01-20,42627.36748949484,285,Emergency,2022-02-03,Inconclusive,7183,92,4,0,,,,DISCHARGED -2612,2020-05-07,31431.37795725211,229,Urgent,2020-05-14,Inconclusive,2612,472,0,10,,,,DISCHARGED -2613,2022-04-25,21130.38580866285,192,Elective,2022-05-13,Normal,2613,416,3,23,,,,DISCHARGED -2614,2022-01-20,46774.61327973702,276,Urgent,2022-02-10,Inconclusive,2614,304,1,9,,,,DISCHARGED -2615,2020-05-04,25326.805551241006,186,Emergency,2020-06-01,Inconclusive,2615,223,4,13,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -2615,2022-07-15,24657.16436140522,228,Emergency,2022-08-01,Abnormal,9231,496,3,13,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -2616,2021-05-25,16596.40959939637,473,Emergency,2021-06-15,Inconclusive,2616,290,1,6,,,,DISCHARGED -2617,2019-09-08,28388.89773724963,309,Urgent,2019-09-24,Inconclusive,2617,427,3,22,,,,DISCHARGED -2618,2023-10-26,45192.478435696845,177,Emergency,2023-11-24,Abnormal,2618,101,4,10,,,,DISCHARGED -2619,2018-12-11,16201.08187161045,259,Urgent,2018-12-14,Inconclusive,2619,473,3,21,,,,DISCHARGED -2620,2023-07-04,15586.469385382026,186,Urgent,,Abnormal,2620,266,2,27,,,,OPEN -2621,2021-04-20,16056.137654425404,316,Emergency,2021-05-08,Inconclusive,2621,354,4,3,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -2622,2020-12-06,16966.697481629963,286,Emergency,2021-01-03,Normal,2622,455,3,26,,,,DISCHARGED -2623,2019-07-25,46543.059854375446,484,Emergency,2019-08-11,Abnormal,2623,109,0,23,,,,DISCHARGED -2624,2020-11-25,35825.549077410506,327,Elective,2020-12-18,Inconclusive,2624,461,3,1,,,,DISCHARGED -2625,2021-09-21,45997.69734643205,237,Urgent,2021-09-27,Abnormal,2625,329,2,6,,,,DISCHARGED -2626,2023-08-21,14412.417240606432,340,Elective,2023-09-18,Normal,2626,449,1,18,,,,DISCHARGED -2627,2020-04-04,34410.59339808295,347,Urgent,2020-04-21,Abnormal,2627,429,1,13,,,,DISCHARGED -2628,2019-08-23,31824.652031549685,290,Emergency,2019-09-01,Normal,2628,264,1,18,,,,DISCHARGED -2629,2022-03-27,32730.688123574422,362,Urgent,2022-04-02,Inconclusive,2629,2,0,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -2630,2022-01-13,35907.47268697924,321,Urgent,2022-02-01,Normal,2630,84,2,6,,,,DISCHARGED -2631,2020-09-25,8968.205000066286,145,Emergency,2020-10-08,Inconclusive,2631,281,4,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -2632,2021-03-30,33589.54809361052,420,Elective,2021-04-07,Abnormal,2632,327,1,2,,,,DISCHARGED -2633,2019-06-07,40528.69758526562,336,Elective,2019-06-28,Abnormal,2633,303,2,14,,,,DISCHARGED -2635,2021-07-17,33646.086468719484,496,Emergency,2021-08-03,Abnormal,2635,449,3,4,,,,DISCHARGED -2636,2023-10-10,43858.15051704504,363,Urgent,2023-11-07,Abnormal,2636,453,0,7,,,,DISCHARGED -2637,2020-11-12,25148.143290112694,451,Urgent,2020-12-01,Abnormal,2637,411,2,13,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2638,2022-06-01,46143.49120340079,115,Urgent,2022-06-24,Normal,2638,116,2,28,,,,DISCHARGED -2639,2020-01-24,25816.652579251037,249,Urgent,2020-01-31,Normal,2639,220,4,3,,,,DISCHARGED -2640,2023-01-26,49627.900560233335,273,Elective,2023-02-08,Abnormal,2640,153,2,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2641,2023-01-29,27448.79884487662,228,Elective,2023-02-06,Normal,2641,152,4,6,,,,DISCHARGED -2642,2022-12-29,14624.18251822247,443,Urgent,2023-01-01,Inconclusive,2642,11,0,17,,,,DISCHARGED -2643,2019-06-02,31746.51382694793,496,Elective,2019-06-29,Inconclusive,2643,132,0,13,,,,DISCHARGED -2644,2019-09-29,45440.45113479933,326,Urgent,2019-10-25,Inconclusive,2644,481,3,7,,,,DISCHARGED -2645,2021-11-05,49595.45512501731,113,Urgent,2021-11-21,Inconclusive,2645,303,4,25,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -2646,2023-09-09,38452.72163675825,220,Urgent,2023-09-24,Normal,2646,292,4,11,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2647,2021-09-05,9611.825597121388,173,Elective,2021-09-17,Normal,2647,462,1,9,,,,DISCHARGED -2648,2019-04-12,32849.11542128452,415,Urgent,2019-04-24,Abnormal,2648,299,1,13,,,,DISCHARGED -2649,2019-02-03,31484.94663382468,460,Emergency,2019-02-11,Abnormal,2649,227,3,8,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -2650,2019-05-28,44276.6527731187,449,Urgent,2019-06-11,Inconclusive,2650,270,0,5,,,,DISCHARGED -2651,2023-06-19,34589.838918051944,157,Emergency,2023-07-14,Normal,2651,42,1,29,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -2652,2019-07-07,26250.001156473834,450,Elective,2019-07-22,Inconclusive,2652,431,2,4,,,,DISCHARGED -2653,2020-04-10,48554.75967562424,247,Urgent,2020-04-27,Abnormal,2653,342,0,0,,,,DISCHARGED -2654,2021-05-07,30495.81558397598,142,Urgent,2021-05-26,Inconclusive,2654,325,2,0,,,,DISCHARGED -2655,2022-04-11,19773.31086724356,162,Emergency,2022-04-26,Normal,2655,301,4,24,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2656,2022-06-04,49243.31736311424,155,Urgent,2022-06-25,Inconclusive,2656,497,0,29,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -2657,2019-08-01,43853.46495822737,327,Urgent,2019-08-28,Normal,2657,363,3,19,,,,DISCHARGED -2658,2020-04-11,21565.64773420869,275,Elective,2020-04-19,Abnormal,2658,378,4,16,,,,DISCHARGED -2658,2020-12-17,44745.091652500014,491,Elective,2021-01-06,Normal,2814,426,4,10,,,,DISCHARGED -2660,2023-07-07,1224.7683293587252,171,Urgent,,Normal,2660,492,2,25,,,,OPEN -2661,2019-05-31,44698.51398555716,268,Urgent,2019-06-30,Inconclusive,2661,20,4,11,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2662,2020-09-28,3238.597219924224,237,Elective,2020-10-14,Inconclusive,2662,406,1,2,,,,DISCHARGED -2662,2020-12-06,14881.14401904717,235,Elective,2020-12-23,Normal,3178,106,0,5,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2663,2019-08-08,22812.18829110568,381,Emergency,2019-08-20,Inconclusive,2663,335,1,29,,,,DISCHARGED -2664,2022-10-05,40316.7266858093,265,Urgent,2022-10-07,Normal,2664,302,2,10,,,,DISCHARGED -2665,2022-12-29,11894.212185549626,488,Emergency,2022-12-31,Inconclusive,2665,116,2,28,,,,DISCHARGED -2666,2020-08-10,34615.82116266479,362,Emergency,2020-08-25,Normal,2666,123,0,12,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2666,2019-11-08,16623.73887826834,412,Emergency,2019-12-05,Inconclusive,4011,398,4,10,,,,DISCHARGED -2667,2019-01-24,36144.26068598602,391,Elective,2019-02-22,Normal,2667,280,3,7,,,,DISCHARGED -2668,2021-05-27,23415.35059970277,128,Urgent,2021-06-13,Inconclusive,2668,291,2,28,,,,DISCHARGED -2669,2020-04-14,1070.0152701252623,314,Elective,2020-04-27,Inconclusive,2669,202,0,9,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2670,2022-11-14,22466.57238432296,348,Elective,2022-12-02,Abnormal,2670,50,3,1,,,,DISCHARGED -2671,2020-11-26,6572.018221397711,350,Urgent,2020-12-18,Inconclusive,2671,270,4,23,,,,DISCHARGED -2672,2022-11-24,21391.50300648184,468,Elective,2022-12-20,Inconclusive,2672,323,2,13,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -2673,2022-08-25,47684.128222771,486,Emergency,2022-09-06,Inconclusive,2673,276,0,28,,,,DISCHARGED -2674,2021-11-23,28475.719188407154,108,Elective,2021-12-23,Abnormal,2674,140,0,15,,,,DISCHARGED -2676,2019-02-08,47916.97137531408,386,Elective,2019-02-13,Normal,2676,469,0,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -2678,2020-07-07,9098.047006680728,132,Elective,2020-07-28,Normal,2678,274,2,10,,,,DISCHARGED -2679,2023-05-16,49886.80518133734,164,Elective,2023-06-08,Normal,2679,289,3,1,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -2680,2019-06-29,26016.39516799301,319,Elective,2019-07-11,Abnormal,2680,333,0,23,,,,DISCHARGED -2681,2021-08-04,20978.27301712258,156,Elective,2021-08-12,Normal,2681,380,4,22,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -2682,2019-09-24,3497.985735905508,239,Elective,2019-10-17,Inconclusive,2682,451,0,4,,,,DISCHARGED -2683,2021-11-28,9562.630856484042,146,Emergency,2021-12-15,Abnormal,2683,495,3,28,,,,DISCHARGED -2684,2020-04-28,48153.64845556705,266,Emergency,2020-05-22,Inconclusive,2684,372,2,15,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -2685,2023-05-10,37013.349524948026,212,Emergency,2023-05-15,Inconclusive,2685,51,0,15,,,,DISCHARGED -2686,2019-07-03,27567.010108749924,336,Urgent,2019-07-20,Normal,2686,493,0,25,,,,DISCHARGED -2687,2023-01-08,46810.65399466919,380,Emergency,,Normal,2687,26,4,1,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",OPEN -2687,2021-05-25,12396.767504893176,404,Elective,2021-06-17,Abnormal,8969,156,4,15,,,,DISCHARGED -2688,2021-09-14,19206.843543271243,192,Emergency,2021-09-29,Normal,2688,238,0,24,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -2689,2019-01-29,2923.3523499111266,481,Emergency,2019-02-20,Normal,2689,155,0,4,,,,DISCHARGED -2690,2022-10-21,8223.075180072163,400,Elective,2022-11-06,Normal,2690,290,4,7,,,,DISCHARGED -2691,2023-05-29,7612.570071770008,400,Emergency,,Abnormal,2691,135,3,28,,,,OPEN -2692,2022-02-26,47341.359352970445,272,Elective,2022-03-13,Inconclusive,2692,143,1,19,,,,DISCHARGED -2693,2020-01-07,7379.19719874067,315,Emergency,2020-01-20,Abnormal,2693,105,1,13,,,,DISCHARGED -2694,2020-08-13,9273.07521282235,231,Elective,2020-08-22,Inconclusive,2694,419,0,24,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -2694,2021-06-06,25428.73608378493,208,Elective,2021-06-09,Abnormal,9791,157,4,9,,,,DISCHARGED -2695,2020-06-25,20768.155117512622,132,Elective,2020-07-14,Abnormal,2695,145,2,22,,,,DISCHARGED -2696,2022-02-14,48074.67424049616,347,Emergency,2022-02-26,Abnormal,2696,1,2,1,,,,DISCHARGED -2697,2019-11-30,39852.316817586485,485,Emergency,2019-12-24,Abnormal,2697,432,1,2,,,,DISCHARGED -2698,2021-03-18,46606.33580616222,307,Urgent,2021-03-27,Abnormal,2698,76,3,29,,,,DISCHARGED -2699,2021-07-05,48480.84076646032,477,Emergency,2021-07-27,Abnormal,2699,131,1,17,,,,DISCHARGED -2700,2020-08-07,41260.63255479157,278,Emergency,2020-08-10,Inconclusive,2700,89,0,20,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2701,2020-06-01,8830.276603596452,320,Emergency,2020-06-25,Inconclusive,2701,344,3,1,,,,DISCHARGED -2702,2020-12-07,29794.59655175787,428,Urgent,2021-01-06,Abnormal,2702,349,2,20,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -2703,2021-03-07,10887.125155561322,207,Urgent,2021-03-10,Normal,2703,458,4,28,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2704,2021-04-21,35504.50843479947,122,Emergency,2021-04-24,Normal,2704,262,4,8,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -2705,2021-08-31,6505.01598313251,365,Elective,2021-09-17,Abnormal,2705,350,0,1,,,,DISCHARGED -2706,2020-08-30,15358.605407396972,221,Emergency,2020-09-21,Normal,2706,107,1,24,,,,DISCHARGED -2707,2019-01-21,31421.56568458885,246,Urgent,2019-01-23,Normal,2707,73,0,6,,,,DISCHARGED -2709,2022-01-27,6464.030538793739,381,Elective,2022-02-20,Normal,2709,38,4,6,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -2710,2022-04-23,43791.44016415779,313,Emergency,2022-05-22,Normal,2710,396,2,13,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -2711,2020-08-12,9003.212102835145,261,Urgent,2020-09-01,Normal,2711,158,4,4,,,,DISCHARGED -2712,2022-02-20,12862.89614233099,235,Emergency,2022-03-01,Normal,2712,70,3,7,,,,DISCHARGED -2713,2021-02-24,31042.870445592696,189,Urgent,2021-03-06,Inconclusive,2713,446,4,22,,,,DISCHARGED -2715,2020-04-13,4189.618979519723,173,Elective,2020-04-27,Normal,2715,311,4,21,,,,DISCHARGED -2716,2021-08-01,30930.958246546103,357,Elective,2021-08-10,Normal,2716,240,3,17,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -2717,2019-03-10,23862.62828645282,235,Urgent,2019-03-19,Normal,2717,425,1,5,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -2718,2021-10-20,31681.955706158325,373,Elective,2021-11-03,Abnormal,2718,444,4,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2719,2023-06-01,17362.370733930373,261,Urgent,2023-06-25,Inconclusive,2719,297,0,17,,,,DISCHARGED -2720,2020-11-19,26466.228350303747,250,Urgent,2020-11-20,Inconclusive,2720,439,4,16,,,,DISCHARGED -2721,2021-02-16,6621.786604561795,333,Urgent,2021-03-03,Normal,2721,35,0,8,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2722,2022-06-10,40376.64648190551,350,Elective,2022-06-30,Normal,2722,83,3,12,,,,DISCHARGED -2723,2019-11-06,29695.81444969184,303,Emergency,2019-11-09,Normal,2723,451,4,15,,,,DISCHARGED -2724,2021-11-23,43510.63384085477,316,Urgent,2021-12-16,Inconclusive,2724,373,3,20,,,,DISCHARGED -2725,2019-11-06,38103.27306468731,418,Elective,2019-11-29,Abnormal,2725,262,3,9,,,,DISCHARGED -2726,2019-01-02,26805.699317323106,216,Elective,2019-01-14,Normal,2726,309,1,9,,,,DISCHARGED -2727,2023-10-20,10296.634193472306,478,Emergency,2023-11-11,Abnormal,2727,384,4,3,,,,DISCHARGED -2728,2023-07-07,19683.04369786167,257,Elective,,Inconclusive,2728,171,0,11,,,,OPEN -2729,2023-02-02,35367.97350257922,397,Urgent,,Abnormal,2729,375,0,26,,,,OPEN -2730,2021-09-12,49780.12262476423,439,Urgent,2021-09-22,Abnormal,2730,172,4,7,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2731,2020-02-17,42426.78469449219,291,Emergency,2020-03-03,Abnormal,2731,361,1,14,,,,DISCHARGED -2732,2023-07-22,10813.7917472245,415,Emergency,2023-08-08,Abnormal,2732,46,1,20,,,,DISCHARGED -2732,2022-02-01,31465.622536521503,455,Elective,2022-02-09,Inconclusive,6929,378,1,29,,,,DISCHARGED -2733,2021-10-24,43621.17509150677,171,Urgent,2021-11-22,Abnormal,2733,140,0,22,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -2734,2022-01-29,3710.695852169433,371,Emergency,2022-02-06,Inconclusive,2734,374,3,18,,,,DISCHARGED -2735,2022-07-31,45892.14449481834,174,Elective,2022-08-05,Inconclusive,2735,405,1,14,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -2736,2019-12-21,45679.92740717956,417,Elective,2020-01-09,Inconclusive,2736,117,0,7,,,,DISCHARGED -2737,2020-03-07,14228.199580897486,425,Elective,2020-03-31,Normal,2737,276,0,7,,,,DISCHARGED -2738,2019-01-07,34535.89855179965,291,Emergency,2019-01-28,Normal,2738,213,3,18,,,,DISCHARGED -2739,2019-10-02,9049.02023730678,358,Emergency,2019-10-21,Abnormal,2739,219,4,8,,,,DISCHARGED -2739,2023-10-01,2528.15333252586,355,Urgent,,Normal,4513,392,4,29,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -2740,2021-06-15,16387.536557621414,414,Urgent,2021-06-28,Normal,2740,25,1,23,,,,DISCHARGED -2741,2020-05-10,46912.62153215373,348,Elective,2020-05-19,Inconclusive,2741,8,1,16,,,,DISCHARGED -2742,2022-04-27,15868.402899565615,443,Urgent,2022-05-14,Normal,2742,270,3,7,,,,DISCHARGED -2743,2019-02-13,5786.128457148991,224,Elective,2019-02-24,Normal,2743,9,1,11,,,,DISCHARGED -2744,2020-08-15,16583.476294370677,471,Emergency,2020-08-22,Abnormal,2744,471,3,26,,,,DISCHARGED -2745,2021-06-16,5959.017430660474,456,Elective,2021-07-09,Normal,2745,377,0,14,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -2746,2019-12-09,7941.331812193567,259,Urgent,2019-12-21,Inconclusive,2746,120,1,3,,,,DISCHARGED -2747,2022-08-31,20841.542772663983,124,Elective,2022-09-28,Abnormal,2747,124,0,5,,,,DISCHARGED -2748,2022-09-22,39941.460868015085,242,Elective,2022-09-23,Inconclusive,2748,169,2,29,,,,DISCHARGED -2749,2021-07-13,2059.1168232024597,482,Emergency,2021-08-10,Normal,2749,71,3,28,,,,DISCHARGED -2750,2022-02-20,11561.76068996926,374,Elective,2022-02-25,Normal,2750,151,2,15,,,,DISCHARGED -2751,2019-04-12,37167.89174429348,416,Emergency,2019-05-11,Abnormal,2751,207,1,25,,,,DISCHARGED -2752,2023-07-31,30119.178552689034,148,Elective,,Abnormal,2752,48,0,24,,,,OPEN -2753,2022-01-20,31083.046691416675,303,Emergency,2022-02-09,Inconclusive,2753,153,1,4,,,,DISCHARGED -2754,2020-02-03,1476.3616714080213,148,Emergency,2020-02-13,Inconclusive,2754,346,2,22,,,,DISCHARGED -2755,2022-05-29,7394.22654244488,346,Elective,2022-06-24,Abnormal,2755,292,1,12,,,,DISCHARGED -2756,2021-10-05,15549.407079465778,455,Elective,2021-10-31,Normal,2756,67,4,14,,,,DISCHARGED -2757,2021-09-05,7304.65645638417,189,Emergency,2021-10-05,Abnormal,2757,49,2,16,,,,DISCHARGED -2758,2020-02-02,35252.70824952037,281,Urgent,2020-02-04,Inconclusive,2758,151,1,24,,,,DISCHARGED -2760,2020-03-05,19664.91316122281,293,Urgent,2020-03-14,Abnormal,2760,18,0,29,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -2761,2022-03-06,15854.112781297526,278,Emergency,2022-03-08,Normal,2761,99,1,21,,,,DISCHARGED -2762,2022-12-03,2569.6717026285287,492,Urgent,2022-12-13,Inconclusive,2762,59,0,26,,,,DISCHARGED -2763,2020-02-15,38517.63643808982,278,Emergency,2020-02-16,Abnormal,2763,166,4,19,,,,DISCHARGED -2764,2023-09-28,35888.31813330963,263,Emergency,2023-10-14,Normal,2764,201,1,21,,,,DISCHARGED -2765,2021-03-13,29845.065139109603,238,Elective,2021-03-16,Normal,2765,344,4,4,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -2766,2019-02-19,39747.6488084627,358,Elective,2019-03-16,Inconclusive,2766,145,2,18,,,,DISCHARGED -2767,2020-11-14,40682.36380424722,335,Urgent,2020-12-12,Abnormal,2767,402,0,6,,,,DISCHARGED -2768,2019-09-01,49691.66266097402,482,Urgent,2019-09-15,Abnormal,2768,163,2,2,,,,DISCHARGED -2769,2022-07-09,8317.638478918132,105,Elective,2022-08-07,Abnormal,2769,457,0,12,,,,DISCHARGED -2770,2021-10-07,26414.852104688904,448,Urgent,2021-10-12,Inconclusive,2770,480,4,13,,,,DISCHARGED -2771,2021-02-15,4316.535914594049,376,Emergency,2021-03-04,Inconclusive,2771,438,3,15,,,,DISCHARGED -2772,2020-09-15,40002.89123307032,209,Emergency,2020-09-25,Abnormal,2772,241,1,12,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -2773,2022-09-23,30430.46649593099,116,Elective,2022-10-07,Inconclusive,2773,68,4,1,,,,DISCHARGED -2774,2019-03-23,44200.79236780894,335,Elective,2019-03-25,Normal,2774,174,0,13,,,,DISCHARGED -2775,2021-05-06,43560.7834682722,216,Elective,2021-05-30,Abnormal,2775,48,0,19,,,,DISCHARGED -2776,2022-08-11,23042.080749293244,364,Elective,2022-08-25,Abnormal,2776,482,0,6,,,,DISCHARGED -2776,2022-03-07,16635.45001974,164,Elective,2022-04-04,Normal,7740,107,0,4,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -2777,2022-02-13,14199.986999695731,284,Elective,2022-02-20,Normal,2777,225,1,13,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -2777,2022-01-23,43538.824649631126,184,Emergency,2022-02-18,Normal,6722,160,2,8,,,,DISCHARGED -2778,2020-06-08,6529.781129391422,226,Elective,2020-06-11,Normal,2778,118,3,9,,,,DISCHARGED -2779,2018-11-24,19694.33458154058,432,Emergency,2018-12-04,Normal,2779,148,1,6,,,,DISCHARGED -2780,2020-02-15,17261.56173301002,486,Emergency,2020-03-16,Abnormal,2780,464,0,27,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -2781,2019-02-11,39072.289987398166,163,Emergency,2019-03-07,Abnormal,2781,149,1,13,,,,DISCHARGED -2782,2023-08-29,13961.236827620032,374,Elective,,Abnormal,2782,431,4,24,,,,OPEN -2783,2020-08-03,33173.11688834193,382,Urgent,2020-08-23,Abnormal,2783,292,0,13,,,,DISCHARGED -2784,2021-04-24,25854.58908459076,391,Emergency,2021-05-01,Inconclusive,2784,142,3,24,,,,DISCHARGED -2785,2020-08-23,43728.109844877225,126,Urgent,2020-09-01,Normal,2785,418,0,27,,,,DISCHARGED -2785,2020-10-13,23761.98851861565,391,Urgent,2020-10-29,Normal,8058,475,3,1,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -2786,2023-09-24,10305.725457850498,287,Urgent,2023-10-10,Normal,2786,454,3,16,,,,DISCHARGED -2787,2019-05-10,36690.93535291785,312,Emergency,2019-06-07,Inconclusive,2787,159,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -2788,2022-12-08,15969.053710605976,160,Emergency,2023-01-05,Inconclusive,2788,10,2,19,,,,DISCHARGED -2789,2019-05-03,26019.28631643501,387,Urgent,2019-06-02,Normal,2789,137,1,3,,,,DISCHARGED -2790,2020-04-26,26247.006868587407,210,Urgent,2020-05-13,Inconclusive,2790,456,1,12,,,,DISCHARGED -2791,2023-10-12,12711.117889562702,448,Urgent,,Abnormal,2791,77,3,17,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",OPEN -2792,2022-04-03,30067.74773194783,290,Emergency,2022-05-03,Normal,2792,76,0,2,,,,DISCHARGED -2793,2021-10-04,25794.19511085218,269,Elective,2021-10-15,Normal,2793,440,4,18,,,,DISCHARGED -2794,2019-01-15,11369.271194317564,431,Elective,2019-01-30,Abnormal,2794,253,4,4,,,,DISCHARGED -2795,2019-03-30,3003.4182986089254,183,Emergency,2019-04-15,Abnormal,2795,408,0,0,,,,DISCHARGED -2796,2019-12-11,24389.03146697239,329,Urgent,2019-12-24,Abnormal,2796,257,0,8,,,,DISCHARGED -2797,2023-07-18,28482.889354541352,290,Elective,2023-07-25,Normal,2797,319,2,23,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -2797,2022-06-14,12709.40263523816,441,Emergency,2022-07-01,Abnormal,6783,290,4,7,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -2797,2022-07-25,48444.3272045554,134,Urgent,2022-08-05,Abnormal,8237,262,3,2,,,,DISCHARGED -2798,2020-02-13,31848.838525601222,116,Emergency,2020-03-08,Abnormal,2798,84,1,1,,,,DISCHARGED -2799,2020-11-07,17809.334490775673,277,Urgent,2020-11-14,Normal,2799,145,2,0,,,,DISCHARGED -2801,2019-08-06,2239.09193529874,113,Emergency,2019-08-23,Abnormal,2801,322,4,11,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -2802,2019-07-25,1331.5220834623442,175,Elective,2019-07-27,Normal,2802,41,0,21,,,,DISCHARGED -2803,2022-11-13,39527.42202089524,325,Elective,2022-12-08,Abnormal,2803,373,4,12,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -2804,2021-01-20,29564.32586286136,258,Urgent,2021-02-05,Inconclusive,2804,124,3,9,,,,DISCHARGED -2805,2021-06-19,41313.905039015845,491,Urgent,2021-06-20,Abnormal,2805,166,2,16,,,,DISCHARGED -2806,2021-02-13,44595.20545361234,360,Urgent,2021-02-23,Inconclusive,2806,424,0,29,,,,DISCHARGED -2807,2022-09-15,11962.53733110749,227,Elective,2022-09-27,Abnormal,2807,240,3,10,,,,DISCHARGED -2807,2022-01-01,22893.468375730023,242,Urgent,2022-01-09,Normal,6004,458,1,4,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -2808,2020-08-25,25507.92250820054,307,Emergency,2020-09-14,Abnormal,2808,486,2,24,,,,DISCHARGED -2808,2020-07-15,18171.488930128588,274,Urgent,2020-08-09,Normal,8385,279,3,26,,,,DISCHARGED -2809,2019-04-06,14701.65029614148,317,Elective,2019-04-19,Inconclusive,2809,187,3,8,,,,DISCHARGED -2809,2018-12-18,49608.86185798793,166,Emergency,2018-12-29,Normal,7546,301,0,12,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2810,2019-10-30,9422.808753446085,335,Elective,2019-11-18,Normal,2810,18,1,27,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -2811,2019-05-16,2871.9966903723034,445,Emergency,2019-05-28,Abnormal,2811,67,3,19,,,,DISCHARGED -2812,2023-03-27,16047.100582941934,374,Urgent,2023-04-17,Abnormal,2812,217,2,22,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -2813,2022-08-07,3684.546962126398,231,Urgent,2022-09-02,Inconclusive,2813,101,3,29,,,,DISCHARGED -2815,2019-05-20,6412.9993936596375,110,Urgent,2019-05-29,Abnormal,2815,41,4,10,,,,DISCHARGED -2815,2020-11-20,49563.699054646335,408,Emergency,2020-11-30,Inconclusive,8111,287,2,22,,,,DISCHARGED -2817,2020-02-11,42324.90946281877,155,Emergency,2020-02-14,Inconclusive,2817,166,2,3,,,,DISCHARGED -2818,2023-04-23,29416.275726819906,127,Urgent,2023-05-18,Abnormal,2818,108,3,20,,,,DISCHARGED -2819,2020-08-10,2529.504829248252,217,Elective,2020-08-13,Inconclusive,2819,493,0,10,,,,DISCHARGED -2821,2022-05-18,47812.00267143285,417,Urgent,2022-06-04,Inconclusive,2821,35,2,8,,,,DISCHARGED -2822,2020-07-10,36023.36940852515,434,Emergency,2020-07-24,Normal,2822,231,4,6,,,,DISCHARGED -2823,2021-04-01,12010.602313406109,479,Urgent,2021-04-05,Abnormal,2823,228,0,15,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -2824,2022-09-06,12791.400082799946,361,Elective,2022-10-03,Normal,2824,352,0,22,,,,DISCHARGED -2825,2021-07-16,7819.865130850051,487,Elective,2021-07-26,Normal,2825,163,0,25,,,,DISCHARGED -2826,2022-10-06,30578.1756242784,264,Urgent,2022-10-21,Normal,2826,386,2,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -2827,2020-08-14,27031.58900918547,336,Urgent,2020-09-01,Abnormal,2827,72,0,24,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -2828,2019-10-25,26980.60512297705,486,Urgent,2019-10-30,Abnormal,2828,135,3,4,,,,DISCHARGED -2829,2021-05-16,48894.47263732788,304,Emergency,2021-06-08,Inconclusive,2829,352,0,5,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -2830,2020-10-25,10515.801093991136,152,Urgent,2020-11-17,Abnormal,2830,378,4,18,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -2831,2019-11-21,9761.832762325304,120,Emergency,2019-11-29,Inconclusive,2831,69,1,0,,,,DISCHARGED -2832,2023-01-16,4528.491505428123,168,Emergency,,Inconclusive,2832,424,4,26,,,,OPEN -2833,2019-01-31,31242.871058442517,207,Emergency,2019-02-05,Inconclusive,2833,486,2,15,,,,DISCHARGED -2834,2022-03-01,46816.62105667426,351,Urgent,2022-03-10,Normal,2834,195,0,27,,,,DISCHARGED -2835,2018-12-26,26844.0449133044,353,Urgent,2019-01-21,Abnormal,2835,268,0,17,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2836,2023-01-04,21779.60320819814,189,Urgent,2023-02-03,Abnormal,2836,48,3,23,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -2836,2020-05-26,25212.627820308808,138,Urgent,2020-06-07,Abnormal,7298,315,0,12,,,,DISCHARGED -2837,2018-12-17,31856.87977887301,215,Elective,2019-01-01,Normal,2837,129,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -2837,2022-03-23,48018.19666102654,486,Elective,2022-04-17,Normal,3735,443,2,9,,,,DISCHARGED -2838,2020-02-27,7904.1010750952655,396,Emergency,2020-03-26,Normal,2838,4,1,6,,,,DISCHARGED -2839,2021-11-26,37003.44607163002,357,Elective,2021-12-02,Inconclusive,2839,427,0,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2840,2019-01-15,45649.76302093756,386,Emergency,2019-01-30,Inconclusive,2840,26,1,12,,,,DISCHARGED -2841,2021-12-26,12891.22129736089,471,Urgent,2022-01-01,Inconclusive,2841,159,0,21,,,,DISCHARGED -2842,2023-03-01,13578.711484300047,392,Elective,2023-03-23,Normal,2842,148,2,15,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -2843,2022-03-18,14030.76062849755,455,Urgent,2022-04-10,Inconclusive,2843,263,4,23,,,,DISCHARGED -2844,2020-09-24,21443.490898680808,311,Elective,2020-10-03,Inconclusive,2844,229,2,19,,,,DISCHARGED -2845,2020-04-27,12491.093676735409,132,Urgent,2020-05-24,Abnormal,2845,199,1,21,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -2846,2019-12-10,8796.601557896774,186,Elective,2019-12-11,Abnormal,2846,49,0,13,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -2847,2023-06-09,5464.209064769407,113,Elective,2023-06-28,Normal,2847,66,1,10,,,,DISCHARGED -2848,2023-01-04,6450.504929151317,318,Elective,2023-01-06,Abnormal,2848,299,4,18,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -2849,2019-05-19,15313.068184883476,172,Urgent,2019-06-04,Inconclusive,2849,380,2,22,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2850,2021-10-30,40143.082341842855,381,Emergency,2021-11-05,Abnormal,2850,57,1,1,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -2851,2019-09-26,32516.334385182075,200,Elective,2019-09-30,Normal,2851,258,1,27,,,,DISCHARGED -2852,2021-05-16,42803.889037352754,136,Emergency,2021-05-17,Inconclusive,2852,341,4,7,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -2853,2022-10-17,47108.90130063329,494,Elective,2022-11-04,Inconclusive,2853,325,0,12,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -2854,2019-01-20,46799.777271650906,425,Elective,2019-02-04,Inconclusive,2854,129,1,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -2854,2023-03-18,36258.23395184613,145,Urgent,2023-03-28,Abnormal,6895,214,4,11,,,,DISCHARGED -2856,2022-03-30,12004.67721803905,337,Urgent,2022-04-27,Inconclusive,2856,171,0,27,,,,DISCHARGED -2857,2021-01-29,41988.94962128474,224,Emergency,2021-01-30,Inconclusive,2857,257,0,7,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2858,2023-08-17,22916.32407791065,493,Urgent,2023-08-31,Abnormal,2858,101,2,15,,,,DISCHARGED -2859,2020-01-23,19355.54173786482,320,Urgent,2020-02-19,Normal,2859,208,4,17,,,,DISCHARGED -2860,2018-12-17,33447.1399745024,201,Elective,2019-01-06,Abnormal,2860,290,0,18,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -2861,2020-11-28,8178.68622069898,449,Elective,2020-12-14,Inconclusive,2861,353,2,27,,,,DISCHARGED -2862,2023-03-02,46353.77276306514,370,Elective,2023-03-23,Normal,2862,470,3,3,,,,DISCHARGED -2862,2023-03-23,1730.330943334328,220,Emergency,,Normal,7777,285,4,27,,,,OPEN -2863,2019-05-27,45267.70619719879,205,Emergency,2019-06-10,Normal,2863,115,3,24,,,,DISCHARGED -2864,2022-05-21,27623.26231415674,180,Elective,2022-06-07,Abnormal,2864,263,0,27,,,,DISCHARGED -2865,2021-04-26,33550.5374843005,423,Urgent,2021-05-04,Abnormal,2865,149,4,11,,,,DISCHARGED -2866,2021-09-25,10251.625538213197,143,Urgent,2021-10-20,Abnormal,2866,299,2,15,,,,DISCHARGED -2866,2021-10-14,28735.13569911025,169,Urgent,2021-11-07,Normal,7036,441,0,20,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2867,2023-09-08,17475.31606063893,196,Emergency,,Inconclusive,2867,35,4,21,,,,OPEN -2868,2022-11-28,20877.763427436632,147,Emergency,2022-11-30,Inconclusive,2868,452,4,16,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -2869,2021-06-08,38288.98917188614,305,Emergency,2021-06-25,Normal,2869,332,3,3,,,,DISCHARGED -2870,2021-11-07,24307.581437633224,105,Urgent,2021-11-11,Normal,2870,476,0,29,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -2870,2020-08-14,28949.749529813616,473,Urgent,2020-08-24,Abnormal,3691,286,2,19,,,,DISCHARGED -2871,2019-04-09,31396.319126919603,343,Emergency,2019-04-13,Abnormal,2871,302,2,25,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -2871,2021-07-29,26083.01225033725,414,Urgent,2021-08-06,Normal,6428,310,0,23,,,,DISCHARGED -2872,2020-02-25,33519.303331810224,157,Elective,2020-03-10,Abnormal,2872,207,0,23,,,,DISCHARGED -2873,2021-11-09,16980.91034772018,477,Emergency,2021-11-25,Abnormal,2873,105,1,25,,,,DISCHARGED -2874,2021-06-22,23020.70294219813,209,Emergency,2021-07-15,Inconclusive,2874,445,3,21,,,,DISCHARGED -2875,2022-03-11,16484.54752529387,187,Emergency,2022-03-27,Normal,2875,157,0,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -2876,2023-08-05,42466.16284400199,288,Emergency,2023-09-02,Inconclusive,2876,120,0,8,,,,DISCHARGED -2877,2019-07-16,21022.123524873357,292,Elective,2019-07-22,Abnormal,2877,54,1,4,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -2878,2021-05-06,34518.74037637507,397,Urgent,2021-05-23,Inconclusive,2878,399,1,16,,,,DISCHARGED -2879,2022-07-02,38326.46457880896,404,Emergency,2022-07-28,Abnormal,2879,11,4,16,,,,DISCHARGED -2880,2022-10-05,40479.25278872582,275,Elective,2022-10-28,Inconclusive,2880,144,2,1,,,,DISCHARGED -2881,2021-01-12,39433.90039493899,340,Emergency,2021-01-30,Inconclusive,2881,399,3,1,,,,DISCHARGED -2883,2018-12-22,46572.24114445912,224,Emergency,2018-12-24,Normal,2883,395,4,20,,,,DISCHARGED -2884,2022-01-05,9230.463305023608,286,Elective,2022-01-31,Normal,2884,135,0,22,,,,DISCHARGED -2885,2023-10-04,4956.577671849287,458,Elective,2023-10-24,Inconclusive,2885,467,1,6,,,,DISCHARGED -2886,2023-10-11,8964.129621558914,413,Urgent,2023-11-07,Inconclusive,2886,2,2,3,,,,DISCHARGED -2887,2019-01-04,1651.9871330403969,117,Elective,2019-01-19,Abnormal,2887,143,4,12,,,,DISCHARGED -2888,2020-08-04,37704.52516635386,446,Emergency,2020-08-23,Abnormal,2888,29,2,19,,,,DISCHARGED -2889,2018-11-30,23606.61067088948,108,Urgent,2018-12-08,Abnormal,2889,236,1,29,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -2890,2019-03-10,26377.985266195625,407,Urgent,2019-03-18,Inconclusive,2890,278,4,29,,,,DISCHARGED -2891,2021-03-12,3862.2393896543545,418,Urgent,2021-03-31,Normal,2891,347,4,10,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2892,2022-05-24,9936.92661889724,171,Urgent,2022-06-09,Abnormal,2892,114,2,25,,,,DISCHARGED -2893,2019-09-30,22875.68440432815,325,Elective,2019-10-05,Normal,2893,103,1,2,,,,DISCHARGED -2894,2019-09-16,8846.782103493011,430,Elective,2019-10-09,Abnormal,2894,117,0,26,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2895,2021-10-20,47936.01113456638,269,Elective,2021-11-02,Normal,2895,4,4,1,,,,DISCHARGED -2896,2020-08-21,49803.71473897572,118,Emergency,2020-09-17,Inconclusive,2896,467,0,15,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -2897,2023-09-05,25927.49593880047,371,Urgent,2023-09-11,Normal,2897,359,1,2,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -2898,2022-06-28,30370.135745196323,421,Urgent,2022-07-06,Inconclusive,2898,247,4,23,,,,DISCHARGED -2900,2022-01-20,14293.146317552424,413,Emergency,2022-02-03,Inconclusive,2900,363,4,14,,,,DISCHARGED -2901,2022-02-25,10191.002019557587,117,Urgent,2022-03-06,Normal,2901,320,0,16,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -2902,2022-11-03,28165.372595723635,480,Urgent,2022-11-25,Abnormal,2902,120,3,15,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -2903,2020-01-02,27415.693357581746,364,Urgent,2020-02-01,Normal,2903,285,0,19,,,,DISCHARGED -2904,2023-06-13,18985.31012916977,254,Urgent,,Inconclusive,2904,148,0,6,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -2905,2022-01-13,40427.3807535942,314,Emergency,2022-01-27,Abnormal,2905,83,3,15,,,,DISCHARGED -2906,2022-06-02,31042.06296651532,252,Urgent,2022-06-29,Inconclusive,2906,453,1,4,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -2907,2019-03-28,1308.8484077804392,346,Urgent,2019-04-05,Abnormal,2907,405,1,1,,,,DISCHARGED -2908,2019-09-10,37754.94853173979,414,Urgent,2019-09-14,Normal,2908,465,4,0,,,,DISCHARGED -2909,2019-07-29,49212.9812360171,308,Emergency,2019-08-24,Normal,2909,455,2,21,,,,DISCHARGED -2910,2020-09-09,7459.49323585117,237,Elective,2020-10-08,Normal,2910,230,2,28,,,,DISCHARGED -2911,2023-08-09,22211.107042908337,312,Elective,2023-09-04,Inconclusive,2911,287,4,12,,,,DISCHARGED -2911,2020-11-18,26458.58566962557,248,Urgent,2020-11-19,Inconclusive,3603,160,2,15,,,,DISCHARGED -2912,2019-09-24,37405.92287708711,247,Emergency,2019-10-09,Abnormal,2912,271,0,4,,,,DISCHARGED -2913,2023-03-04,9217.289527898129,265,Urgent,2023-03-10,Abnormal,2913,459,0,2,,,,DISCHARGED -2914,2020-01-12,20931.26587187037,470,Elective,2020-01-28,Normal,2914,37,3,26,,,,DISCHARGED -2915,2023-07-20,16352.643999845086,175,Urgent,2023-08-15,Normal,2915,499,3,26,,,,DISCHARGED -2916,2022-11-29,42773.88259138329,276,Elective,2022-12-03,Inconclusive,2916,225,4,14,,,,DISCHARGED -2918,2023-04-06,34428.87396129534,121,Emergency,2023-04-17,Normal,2918,141,4,15,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -2919,2021-08-05,41111.35104079901,443,Urgent,2021-08-21,Abnormal,2919,291,4,10,,,,DISCHARGED -2920,2021-01-18,3645.997971831631,419,Elective,2021-02-06,Inconclusive,2920,480,0,24,,,,DISCHARGED -2921,2020-09-05,30118.142401618472,424,Elective,2020-09-13,Inconclusive,2921,150,2,18,,,,DISCHARGED -2922,2020-03-21,32531.454667145452,248,Elective,2020-04-13,Inconclusive,2922,113,4,17,,,,DISCHARGED -2923,2021-05-20,43649.23443786718,343,Urgent,2021-06-02,Inconclusive,2923,236,4,20,,,,DISCHARGED -2924,2022-02-08,4717.099042758425,126,Elective,2022-03-01,Abnormal,2924,65,0,8,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -2925,2022-08-19,35633.76284338245,459,Emergency,2022-09-14,Inconclusive,2925,360,0,7,,,,DISCHARGED -2926,2020-10-29,49898.927542721096,190,Elective,2020-11-12,Normal,2926,340,0,21,,,,DISCHARGED -2927,2020-02-08,44388.46307394095,440,Elective,2020-02-21,Normal,2927,257,2,18,,,,DISCHARGED -2928,2023-04-09,24087.163418228494,372,Elective,,Normal,2928,474,4,21,,,,OPEN -2929,2023-09-20,46291.895571682464,455,Emergency,2023-10-06,Normal,2929,248,1,4,,,,DISCHARGED -2930,2023-01-04,39987.97357068673,266,Urgent,2023-01-26,Abnormal,2930,456,1,16,,,,DISCHARGED -2931,2022-01-14,7056.4164803428375,174,Elective,2022-01-24,Inconclusive,2931,448,4,4,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -2932,2019-09-29,37980.817859882816,123,Urgent,2019-10-05,Abnormal,2932,330,4,13,,,,DISCHARGED -2933,2021-06-22,24710.2079826386,233,Urgent,2021-06-24,Inconclusive,2933,322,4,6,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -2934,2020-01-27,29834.35443890922,410,Emergency,2020-02-13,Normal,2934,179,4,8,,,,DISCHARGED -2935,2021-10-05,25632.673267018392,289,Emergency,2021-10-24,Abnormal,2935,189,2,27,,,,DISCHARGED -2936,2022-04-27,13709.624590316684,462,Emergency,2022-05-18,Inconclusive,2936,406,1,16,,,,DISCHARGED -2937,2023-02-27,1736.4236432338753,102,Elective,2023-03-25,Inconclusive,2937,153,3,2,,,,DISCHARGED -2938,2023-01-28,11724.463049729951,257,Urgent,,Normal,2938,195,1,7,,,,OPEN -2939,2021-06-05,31809.720508298837,155,Elective,2021-07-04,Inconclusive,2939,465,1,21,,,,DISCHARGED -2940,2020-11-09,32858.73727013121,257,Emergency,2020-11-18,Abnormal,2940,310,0,12,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -2941,2022-09-13,15646.44029877776,113,Elective,2022-10-13,Abnormal,2941,261,4,15,,,,DISCHARGED -2942,2020-02-10,18139.93530962089,478,Elective,2020-02-15,Inconclusive,2942,418,4,20,,,,DISCHARGED -2943,2022-11-24,49921.37336494804,366,Urgent,2022-12-09,Abnormal,2943,405,4,28,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -2944,2022-07-11,41198.5514592896,291,Urgent,2022-08-10,Abnormal,2944,426,0,9,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -2945,2023-07-12,32157.769307478244,278,Urgent,,Normal,2945,142,2,17,,,,OPEN -2946,2019-09-02,18442.60092107172,413,Urgent,2019-09-07,Abnormal,2946,341,2,2,,,,DISCHARGED -2947,2021-05-19,5045.668652016222,289,Emergency,2021-05-22,Normal,2947,315,3,11,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -2948,2018-12-28,11531.518732078912,336,Urgent,2019-01-03,Inconclusive,2948,100,2,15,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -2949,2023-01-20,41496.96074658107,137,Elective,2023-01-28,Inconclusive,2949,243,2,17,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -2950,2022-09-21,47814.20577733297,284,Urgent,2022-10-06,Inconclusive,2950,489,4,16,,,,DISCHARGED -2951,2021-07-09,12349.93659393792,163,Elective,2021-08-01,Inconclusive,2951,11,1,6,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -2953,2020-02-03,4311.02370718698,446,Emergency,2020-02-23,Inconclusive,2953,238,2,29,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -2954,2022-02-02,35829.37346763172,384,Elective,2022-03-03,Normal,2954,48,2,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -2956,2021-08-24,40283.898745716295,483,Urgent,2021-08-29,Inconclusive,2956,41,0,22,,,,DISCHARGED -2957,2023-10-08,28993.967763989214,130,Urgent,2023-10-20,Abnormal,2957,165,3,27,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -2958,2023-07-20,35376.93073958734,254,Urgent,2023-08-13,Inconclusive,2958,81,0,22,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -2959,2020-07-12,25777.582555139605,156,Urgent,2020-07-26,Inconclusive,2959,428,4,7,,,,DISCHARGED -2960,2020-04-19,30331.860738152325,182,Emergency,2020-05-07,Inconclusive,2960,290,1,16,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -2961,2021-06-13,36154.28019266695,225,Emergency,2021-06-20,Normal,2961,157,3,20,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -2962,2020-09-01,12324.92302640782,168,Elective,2020-09-11,Normal,2962,215,0,25,,,,DISCHARGED -2963,2023-07-09,22270.7659790254,205,Elective,2023-07-10,Normal,2963,489,2,24,,,,DISCHARGED -2964,2020-10-06,4034.03849953964,488,Emergency,2020-10-08,Inconclusive,2964,157,2,27,,,,DISCHARGED -2965,2020-07-01,25005.57209349229,500,Emergency,2020-07-14,Inconclusive,2965,461,3,26,,,,DISCHARGED -2966,2022-11-14,26837.265500636124,116,Urgent,2022-12-09,Inconclusive,2966,133,2,6,,,,DISCHARGED -2967,2019-09-30,42939.52240904879,384,Elective,2019-10-13,Normal,2967,66,0,0,,,,DISCHARGED -2968,2020-04-13,9293.50028217882,201,Emergency,2020-05-05,Inconclusive,2968,335,0,7,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -2969,2023-04-15,14824.89980965191,198,Emergency,2023-05-01,Inconclusive,2969,6,2,18,,,,DISCHARGED -2970,2023-09-28,9202.248026537109,466,Emergency,,Normal,2970,435,2,28,,,,OPEN -2971,2022-03-30,7963.098011735559,260,Elective,2022-04-27,Abnormal,2971,13,4,19,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -2972,2019-10-03,8768.254699110723,247,Urgent,2019-10-17,Abnormal,2972,72,1,19,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -2973,2023-08-20,33484.65552824067,161,Urgent,,Normal,2973,398,3,9,,,,OPEN -2974,2019-10-23,44519.63025972372,212,Emergency,2019-10-24,Inconclusive,2974,404,0,29,,,,DISCHARGED -2975,2021-02-16,16290.493087858751,296,Urgent,2021-03-12,Abnormal,2975,162,3,11,,,,DISCHARGED -2976,2023-03-14,26604.24696035863,254,Urgent,,Normal,2976,65,4,23,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -2977,2022-11-09,44649.87567768599,309,Emergency,2022-11-17,Abnormal,2977,346,0,0,,,,DISCHARGED -2978,2020-10-07,39165.70608710915,185,Urgent,2020-10-12,Normal,2978,129,4,23,,,,DISCHARGED -2978,2020-05-07,28674.763844915786,297,Emergency,2020-05-21,Abnormal,5194,418,4,24,,,,DISCHARGED -2979,2022-04-18,46915.7452305632,294,Emergency,2022-04-26,Inconclusive,2979,465,2,24,,,,DISCHARGED -2980,2023-06-25,33605.78593977403,318,Urgent,,Abnormal,2980,205,3,20,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,OPEN -2981,2019-04-20,2486.420508579542,165,Emergency,2019-05-09,Inconclusive,2981,275,3,3,,,,DISCHARGED -2982,2020-10-27,4568.766167655131,494,Elective,2020-10-28,Normal,2982,465,2,3,,,,DISCHARGED -2983,2020-03-19,17559.644860598404,115,Urgent,2020-04-17,Normal,2983,255,3,8,,,,DISCHARGED -2984,2021-01-26,15883.043617516954,402,Urgent,2021-02-04,Inconclusive,2984,265,2,14,,,,DISCHARGED -2985,2019-10-28,18688.239896867817,476,Urgent,2019-11-05,Inconclusive,2985,24,0,23,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -2986,2020-05-03,28184.960626964414,340,Elective,2020-05-13,Normal,2986,449,4,25,,,,DISCHARGED -2988,2023-08-23,34730.83651230212,176,Urgent,2023-09-04,Inconclusive,2988,280,4,14,,,,DISCHARGED -2989,2019-06-10,15386.09958245291,345,Emergency,2019-07-09,Inconclusive,2989,252,3,25,,,,DISCHARGED -2990,2020-01-23,31729.848348469197,393,Emergency,2020-02-07,Inconclusive,2990,309,1,27,,,,DISCHARGED -2991,2022-11-09,19160.38465223552,219,Urgent,2022-11-16,Inconclusive,2991,288,4,6,,,,DISCHARGED -2993,2021-01-31,21350.88825421756,324,Urgent,2021-02-22,Normal,2993,163,2,11,,,,DISCHARGED -2994,2019-04-04,44719.9041719709,416,Urgent,2019-04-25,Normal,2994,94,1,2,,,,DISCHARGED -2995,2022-12-14,31666.544633220117,441,Elective,2022-12-17,Normal,2995,269,1,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -2996,2022-08-29,23486.27533506861,157,Emergency,2022-09-05,Abnormal,2996,320,4,8,,,,DISCHARGED -2997,2021-05-26,10983.650789386096,168,Emergency,2021-05-31,Inconclusive,2997,109,4,13,,,,DISCHARGED -2998,2023-05-08,29367.17656921782,118,Urgent,2023-06-03,Abnormal,2998,335,4,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -2999,2021-05-12,43876.917738175616,381,Urgent,2021-05-26,Abnormal,2999,309,2,23,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3000,2019-06-09,24158.600282604948,404,Urgent,2019-06-17,Normal,3000,237,1,27,,,,DISCHARGED -3001,2020-07-09,41430.01352558279,168,Elective,2020-07-14,Normal,3001,380,3,11,,,,DISCHARGED -3002,2023-10-17,41937.62699737799,196,Emergency,2023-11-02,Normal,3002,435,2,0,,,,DISCHARGED -3003,2020-03-25,48989.22046630025,376,Urgent,2020-04-24,Inconclusive,3003,386,0,18,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -3004,2020-06-19,19040.481555131708,294,Elective,2020-07-12,Normal,3004,482,4,29,,,,DISCHARGED -3005,2020-02-18,36042.70485117828,474,Emergency,2020-03-07,Abnormal,3005,424,1,15,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3006,2023-08-20,34550.43838235001,469,Urgent,2023-08-29,Inconclusive,3006,389,2,11,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -3007,2022-09-21,4330.41714647144,473,Elective,2022-09-29,Abnormal,3007,24,0,9,,,,DISCHARGED -3008,2020-05-16,29209.807921145988,396,Elective,2020-05-30,Inconclusive,3008,140,2,1,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -3009,2020-08-03,2612.544949852821,229,Elective,2020-08-31,Abnormal,3009,116,2,17,,,,DISCHARGED -3010,2022-08-10,44846.01372505414,415,Elective,2022-09-07,Normal,3010,481,3,12,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -3013,2022-04-01,39846.67451964181,406,Urgent,2022-04-28,Inconclusive,3013,391,3,28,,,,DISCHARGED -3014,2019-08-01,9644.697645505625,368,Urgent,2019-08-14,Inconclusive,3014,404,2,23,,,,DISCHARGED -3015,2021-06-21,45919.72391326319,312,Elective,2021-07-06,Normal,3015,481,0,5,,,,DISCHARGED -3016,2020-03-04,13974.701100337184,358,Emergency,2020-03-29,Normal,3016,451,1,11,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -3017,2022-07-23,22654.54406538556,114,Elective,2022-08-16,Inconclusive,3017,24,1,27,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3018,2023-07-13,43873.6342400572,427,Elective,2023-07-28,Abnormal,3018,78,4,27,,,,DISCHARGED -3019,2023-01-18,44179.0017280507,198,Emergency,2023-01-22,Normal,3019,67,4,28,,,,DISCHARGED -3020,2020-06-25,24124.109892544548,176,Emergency,2020-07-21,Abnormal,3020,172,1,21,,,,DISCHARGED -3021,2020-01-07,1082.4447136181125,351,Elective,2020-02-06,Normal,3021,443,2,3,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3022,2020-12-22,22529.01843543141,139,Elective,2021-01-02,Inconclusive,3022,11,2,0,,,,DISCHARGED -3023,2023-09-25,19570.61366262392,106,Elective,2023-10-03,Inconclusive,3023,287,3,10,,,,DISCHARGED -3024,2022-02-05,10302.962830167777,469,Elective,2022-02-09,Inconclusive,3024,127,3,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3025,2021-06-15,38761.28250167328,478,Elective,2021-07-06,Inconclusive,3025,95,4,7,,,,DISCHARGED -3026,2022-03-07,14069.63712363104,138,Elective,2022-03-15,Abnormal,3026,91,1,1,,,,DISCHARGED -3027,2021-08-26,46055.67211962495,104,Elective,2021-09-04,Abnormal,3027,140,2,1,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3028,2023-03-27,12520.853260333426,472,Emergency,2023-04-26,Normal,3028,30,1,15,,,,DISCHARGED -3029,2020-12-24,31329.92940572952,405,Elective,2020-12-31,Normal,3029,333,0,0,,,,DISCHARGED -3030,2022-04-21,26946.720983773488,101,Emergency,2022-04-30,Abnormal,3030,19,1,3,,,,DISCHARGED -3031,2022-10-05,22196.970495364298,328,Emergency,2022-10-24,Inconclusive,3031,145,0,5,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -3033,2022-06-16,15531.123788191884,372,Urgent,2022-06-26,Normal,3033,476,3,29,,,,DISCHARGED -3034,2019-06-22,17636.398985765925,401,Elective,2019-07-14,Abnormal,3034,315,3,20,,,,DISCHARGED -3035,2020-01-11,45829.667726548585,424,Elective,2020-01-14,Abnormal,3035,446,4,19,,,,DISCHARGED -3036,2019-12-29,47631.02169520548,214,Elective,2020-01-03,Abnormal,3036,389,1,13,,,,DISCHARGED -3037,2020-02-19,37304.68656576952,193,Urgent,2020-03-01,Normal,3037,159,1,19,,,,DISCHARGED -3038,2019-04-13,33885.89268271875,436,Urgent,2019-05-02,Inconclusive,3038,348,0,25,,,,DISCHARGED -3039,2018-12-30,4516.035128277084,300,Emergency,2019-01-13,Abnormal,3039,42,3,14,,,,DISCHARGED -3040,2020-02-02,12227.695798175866,295,Urgent,2020-02-09,Normal,3040,253,0,6,,,,DISCHARGED -3041,2022-01-09,37183.292628563,362,Urgent,2022-02-05,Abnormal,3041,129,3,6,,,,DISCHARGED -3042,2023-07-15,18471.86869157152,411,Emergency,,Inconclusive,3042,59,0,17,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,OPEN -3043,2021-07-13,45434.588371381615,230,Urgent,2021-08-05,Abnormal,3043,150,3,28,,,,DISCHARGED -3044,2022-11-23,48422.8873974993,210,Elective,2022-12-09,Inconclusive,3044,466,0,22,,,,DISCHARGED -3045,2022-09-29,27796.288193939152,191,Emergency,2022-10-23,Normal,3045,286,3,1,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -3046,2018-12-08,36491.20134196766,484,Elective,2019-01-05,Abnormal,3046,498,0,19,,,,DISCHARGED -3047,2019-06-03,36331.01260718015,396,Elective,2019-06-24,Inconclusive,3047,4,1,14,,,,DISCHARGED -3048,2019-10-31,19345.15411864992,470,Elective,2019-11-07,Abnormal,3048,466,4,0,,,,DISCHARGED -3049,2020-07-04,44240.44402929015,415,Emergency,2020-07-12,Normal,3049,417,0,20,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3050,2020-06-18,9501.933275648213,362,Emergency,2020-06-30,Inconclusive,3050,265,4,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -3051,2021-01-15,44132.58850675531,499,Elective,2021-01-21,Inconclusive,3051,344,1,19,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -3053,2022-07-19,27202.773196443453,366,Urgent,2022-07-27,Inconclusive,3053,129,1,28,,,,DISCHARGED -3054,2022-10-14,34218.87772413768,389,Elective,2022-10-29,Abnormal,3054,381,3,24,,,,DISCHARGED -3055,2020-10-07,21169.287555743744,273,Elective,2020-10-19,Inconclusive,3055,266,4,12,,,,DISCHARGED -3056,2023-04-24,45608.98980092845,197,Emergency,,Inconclusive,3056,177,2,11,,,,OPEN -3057,2022-05-25,39677.55395831862,391,Emergency,2022-05-27,Abnormal,3057,252,3,23,,,,DISCHARGED -3058,2020-06-07,30081.117853501204,305,Urgent,2020-06-22,Abnormal,3058,414,4,21,,,,DISCHARGED -3059,2021-10-31,4512.905076618146,393,Elective,2021-11-22,Abnormal,3059,55,0,14,,,,DISCHARGED -3060,2022-05-26,6118.350474381018,479,Emergency,2022-05-30,Inconclusive,3060,462,0,23,,,,DISCHARGED -3061,2020-08-06,25464.236363753706,207,Urgent,2020-08-07,Inconclusive,3061,456,1,4,Sudden onset of confusion,"Immediate medical attention, diagnostic tests to identify the cause of confusion, and treatment based on the diagnosis.","R41.82 - Altered mental status, unspecified",DISCHARGED -3061,2021-12-10,35260.80851419215,354,Emergency,2021-12-24,Abnormal,6215,470,2,6,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -3062,2022-01-05,16702.28967673392,157,Urgent,2022-01-12,Abnormal,3062,82,0,7,,,,DISCHARGED -3063,2019-06-17,6110.906995852158,126,Elective,2019-07-05,Abnormal,3063,392,4,22,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3064,2020-05-21,49699.92253455233,360,Emergency,2020-06-15,Abnormal,3064,98,4,13,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3065,2023-07-20,49487.502458254734,319,Urgent,,Inconclusive,3065,148,0,3,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",OPEN -3066,2018-11-25,47765.64859521717,214,Elective,2018-11-26,Normal,3066,328,4,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -3066,2023-02-18,35560.58259917567,415,Elective,2023-03-16,Abnormal,7147,155,4,28,,,,DISCHARGED -3067,2019-08-29,15080.873436235446,238,Emergency,2019-08-30,Inconclusive,3067,189,1,13,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3068,2020-02-18,7144.92593178088,487,Urgent,2020-03-02,Normal,3068,493,2,9,,,,DISCHARGED -3069,2020-04-25,24602.97015105977,417,Urgent,2020-05-01,Normal,3069,370,1,21,,,,DISCHARGED -3070,2020-07-14,44042.33711524014,422,Elective,2020-07-22,Abnormal,3070,262,2,29,,,,DISCHARGED -3071,2021-08-18,10108.849771821002,457,Emergency,2021-08-23,Normal,3071,79,4,29,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -3072,2021-06-16,8961.954526506668,405,Elective,2021-07-09,Normal,3072,399,2,27,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3073,2020-04-25,46125.00841454958,493,Elective,2020-05-03,Inconclusive,3073,251,4,15,,,,DISCHARGED -3074,2022-01-22,27785.76388876017,428,Emergency,2022-02-08,Normal,3074,96,4,10,,,,DISCHARGED -3075,2022-01-20,42826.25894958083,117,Emergency,2022-02-16,Inconclusive,3075,259,1,21,,,,DISCHARGED -3076,2021-11-21,25079.72068040528,292,Urgent,2021-12-14,Abnormal,3076,259,1,28,,,,DISCHARGED -3077,2020-03-30,4298.073633218277,282,Elective,2020-04-16,Abnormal,3077,102,3,24,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -3078,2020-02-02,13673.859270371644,258,Emergency,2020-02-24,Abnormal,3078,39,0,25,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -3079,2023-04-04,1993.936016917022,479,Elective,2023-04-07,Inconclusive,3079,272,3,13,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -3080,2023-07-26,17599.515910295057,295,Elective,,Abnormal,3080,100,3,13,,,,OPEN -3081,2018-11-11,19391.59385320598,283,Emergency,2018-11-25,Normal,3081,358,2,1,,,,DISCHARGED -3082,2019-05-12,48441.32562710593,187,Emergency,2019-05-15,Inconclusive,3082,379,4,21,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3083,2022-08-06,29576.501329415467,197,Elective,2022-08-17,Abnormal,3083,307,4,12,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3085,2020-10-19,27346.34215391318,480,Urgent,2020-11-01,Abnormal,3085,220,4,2,,,,DISCHARGED -3086,2021-04-13,28656.611074002816,145,Urgent,2021-05-08,Abnormal,3086,307,0,29,,,,DISCHARGED -3088,2022-05-29,21414.90214783391,268,Elective,2022-06-21,Inconclusive,3088,419,2,17,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3089,2022-08-29,13205.213429925288,333,Urgent,2022-09-15,Inconclusive,3089,123,2,21,,,,DISCHARGED -3090,2020-12-20,8325.723314836521,459,Elective,2021-01-17,Inconclusive,3090,421,4,3,,,,DISCHARGED -3091,2022-09-21,23471.083129657563,371,Urgent,2022-09-25,Inconclusive,3091,230,3,20,,,,DISCHARGED -3092,2021-11-23,1845.2985382286452,126,Urgent,2021-11-25,Inconclusive,3092,177,0,20,,,,DISCHARGED -3093,2020-07-17,29164.569730894804,366,Urgent,2020-08-08,Abnormal,3093,62,3,18,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3094,2022-06-16,20038.57798367889,113,Elective,2022-06-19,Inconclusive,3094,484,1,15,,,,DISCHARGED -3095,2023-05-29,14920.932452963854,392,Emergency,2023-06-17,Inconclusive,3095,115,2,27,,,,DISCHARGED -3096,2023-02-08,5984.385715350033,477,Emergency,2023-02-26,Inconclusive,3096,190,2,3,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3097,2020-06-30,29685.348383780743,323,Elective,2020-07-26,Normal,3097,61,3,18,,,,DISCHARGED -3098,2020-07-27,13691.821196220128,206,Emergency,2020-08-06,Abnormal,3098,255,0,22,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3099,2023-07-13,16539.28341079875,138,Emergency,,Inconclusive,3099,482,2,14,,,,OPEN -3100,2019-05-20,3856.792000521451,390,Elective,2019-06-08,Abnormal,3100,6,3,0,,,,DISCHARGED -3101,2019-06-23,36110.69377074615,467,Elective,2019-07-20,Inconclusive,3101,154,0,15,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3102,2022-04-25,44180.09037128022,162,Elective,2022-05-02,Abnormal,3102,91,3,14,,,,DISCHARGED -3103,2020-07-30,44710.80778346803,274,Elective,2020-08-14,Inconclusive,3103,469,0,15,,,,DISCHARGED -3104,2021-06-15,45880.3180357337,148,Urgent,2021-07-09,Abnormal,3104,13,4,21,,,,DISCHARGED -3105,2019-08-31,26831.020331981643,286,Emergency,2019-09-12,Abnormal,3105,454,0,19,,,,DISCHARGED -3106,2019-09-03,2789.481060551187,110,Emergency,2019-09-08,Normal,3106,228,1,0,,,,DISCHARGED -3107,2020-05-14,12366.0143402873,253,Urgent,2020-05-30,Inconclusive,3107,85,4,16,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -3108,2023-07-30,29111.15311139416,246,Emergency,,Abnormal,3108,132,3,4,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,OPEN -3109,2022-09-29,48112.9633141049,181,Elective,2022-10-19,Inconclusive,3109,182,4,29,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3110,2022-04-21,16107.21239207795,368,Elective,2022-05-17,Normal,3110,385,4,4,,,,DISCHARGED -3111,2021-03-26,31361.213328673588,195,Urgent,2021-04-22,Normal,3111,61,3,25,,,,DISCHARGED -3112,2020-06-24,11629.933807666624,212,Urgent,2020-07-21,Abnormal,3112,218,3,6,,,,DISCHARGED -3113,2019-08-05,25529.91324398358,475,Emergency,2019-08-28,Normal,3113,404,1,12,,,,DISCHARGED -3114,2022-03-17,41845.22454136264,423,Emergency,2022-03-26,Inconclusive,3114,245,3,11,,,,DISCHARGED -3115,2020-01-31,25843.909186557117,461,Urgent,2020-02-28,Abnormal,3115,229,2,3,,,,DISCHARGED -3115,2023-08-08,11839.734122631631,405,Elective,2023-09-03,Inconclusive,6537,78,2,29,,,,DISCHARGED -3116,2020-08-20,47546.80790379924,186,Urgent,2020-09-08,Abnormal,3116,148,1,24,,,,DISCHARGED -3117,2022-07-31,10689.521617328051,477,Urgent,2022-08-20,Inconclusive,3117,137,0,3,,,,DISCHARGED -3117,2022-01-03,25063.63101822934,438,Urgent,2022-01-09,Abnormal,5631,470,0,22,,,,DISCHARGED -3118,2019-07-04,5130.335389680576,467,Urgent,2019-07-18,Abnormal,3118,313,2,20,,,,DISCHARGED -3119,2020-05-29,25785.726314569,372,Urgent,2020-06-10,Inconclusive,3119,375,3,20,,,,DISCHARGED -3120,2023-07-03,49628.88362865496,149,Urgent,2023-07-09,Abnormal,3120,422,1,5,,,,DISCHARGED -3121,2019-05-19,10892.781978501498,254,Elective,2019-05-24,Normal,3121,388,0,23,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3122,2022-08-20,26507.87267420748,380,Emergency,2022-09-08,Abnormal,3122,64,0,14,,,,DISCHARGED -3122,2020-05-29,13026.56587594048,153,Elective,2020-06-27,Abnormal,5697,12,4,20,,,,DISCHARGED -3123,2019-10-28,4573.196281198502,234,Urgent,2019-11-24,Abnormal,3123,212,2,18,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -3124,2020-12-27,4567.635908501887,368,Urgent,2021-01-15,Normal,3124,473,3,5,,,,DISCHARGED -3125,2021-08-27,40970.2729576162,222,Urgent,2021-09-02,Normal,3125,241,1,29,,,,DISCHARGED -3126,2020-09-04,7792.578091689375,213,Emergency,2020-10-04,Normal,3126,492,0,11,,,,DISCHARGED -3127,2022-08-16,16305.762604435338,126,Emergency,2022-09-01,Inconclusive,3127,212,4,13,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3127,2022-08-04,44611.57088068633,359,Elective,2022-08-18,Abnormal,8196,180,2,17,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3128,2021-04-14,42606.41874967905,211,Emergency,2021-05-07,Inconclusive,3128,337,2,27,,,,DISCHARGED -3129,2020-06-24,46299.93837972343,320,Urgent,2020-07-21,Normal,3129,484,1,11,,,,DISCHARGED -3130,2022-10-07,22181.86539051473,301,Emergency,2022-10-30,Inconclusive,3130,172,0,23,,,,DISCHARGED -3131,2021-03-04,5276.057261871656,273,Elective,2021-03-25,Abnormal,3131,159,1,23,,,,DISCHARGED -3132,2019-11-29,14243.290672853327,303,Urgent,2019-12-18,Abnormal,3132,163,1,14,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3133,2021-06-22,45178.1949095743,365,Emergency,2021-07-12,Abnormal,3133,464,4,18,,,,DISCHARGED -3134,2021-03-28,28686.230988315205,198,Urgent,2021-04-04,Normal,3134,482,2,27,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3135,2021-04-06,23421.713367282933,296,Emergency,2021-04-12,Inconclusive,3135,496,3,7,,,,DISCHARGED -3136,2022-02-17,29503.44306549181,464,Elective,2022-02-28,Normal,3136,187,2,8,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3137,2021-10-16,13752.620285817738,298,Emergency,2021-11-11,Normal,3137,394,2,4,,,,DISCHARGED -3138,2020-09-17,12739.68886760918,482,Emergency,2020-09-26,Abnormal,3138,190,4,4,,,,DISCHARGED -3139,2022-05-09,25736.399042273544,143,Urgent,2022-06-02,Abnormal,3139,404,3,5,,,,DISCHARGED -3140,2021-11-04,20882.082372825043,110,Emergency,2021-11-26,Abnormal,3140,307,0,22,,,,DISCHARGED -3141,2023-08-10,24060.264332494145,361,Elective,,Abnormal,3141,255,3,2,,,,OPEN -3142,2020-04-19,11853.8753671024,144,Elective,2020-05-11,Abnormal,3142,182,0,4,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3143,2022-06-04,23286.747277142727,406,Emergency,2022-07-01,Abnormal,3143,116,3,0,,,,DISCHARGED -3145,2018-12-28,5301.168668052529,171,Emergency,2019-01-03,Abnormal,3145,281,1,10,,,,DISCHARGED -3146,2023-04-19,23855.890616892284,411,Emergency,2023-04-20,Abnormal,3146,195,3,25,,,,DISCHARGED -3147,2021-11-09,1009.4173268954232,491,Emergency,2021-11-15,Inconclusive,3147,33,4,20,,,,DISCHARGED -3148,2020-01-19,44533.03057844677,483,Urgent,2020-01-27,Normal,3148,51,0,19,,,,DISCHARGED -3149,2021-08-01,46283.58411492249,222,Urgent,2021-08-26,Abnormal,3149,111,2,0,,,,DISCHARGED -3150,2019-09-08,41482.51699787514,396,Emergency,2019-09-20,Inconclusive,3150,251,4,6,,,,DISCHARGED -3150,2022-04-17,42275.26743533238,240,Emergency,2022-05-08,Inconclusive,4264,81,0,14,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3151,2019-03-22,1585.7864332148283,223,Emergency,2019-04-16,Inconclusive,3151,231,0,16,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3152,2023-05-12,33544.429034004934,367,Elective,,Inconclusive,3152,226,2,28,,,,OPEN -3153,2021-06-02,28085.320523934377,387,Elective,2021-06-30,Normal,3153,232,1,7,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -3154,2023-06-23,33608.9744079182,387,Urgent,2023-07-19,Inconclusive,3154,220,4,29,,,,DISCHARGED -3155,2022-09-12,35522.495882133655,137,Elective,2022-10-09,Abnormal,3155,435,2,25,,,,DISCHARGED -3156,2021-07-02,44403.42406457306,226,Elective,2021-07-09,Abnormal,3156,412,2,27,,,,DISCHARGED -3156,2020-02-09,25327.09454938707,291,Elective,2020-02-18,Abnormal,7355,421,1,1,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3157,2022-10-30,19755.718355065816,254,Urgent,2022-11-26,Normal,3157,41,4,25,,,,DISCHARGED -3158,2019-02-04,2251.8982149833737,161,Emergency,2019-02-28,Normal,3158,20,2,12,,,,DISCHARGED -3159,2019-12-28,23482.818142155356,303,Emergency,2020-01-13,Inconclusive,3159,41,1,11,,,,DISCHARGED -3160,2020-07-26,5590.18573143374,121,Urgent,2020-08-03,Normal,3160,396,4,4,,,,DISCHARGED -3161,2020-05-22,42187.77989543769,328,Urgent,2020-06-10,Inconclusive,3161,112,3,12,,,,DISCHARGED -3162,2022-03-15,27887.520458215902,344,Urgent,2022-03-23,Normal,3162,104,0,5,,,,DISCHARGED -3163,2021-10-01,38020.68946207476,149,Elective,2021-10-04,Abnormal,3163,191,1,24,,,,DISCHARGED -3164,2020-01-13,33155.968159504744,166,Emergency,2020-01-28,Inconclusive,3164,16,0,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3165,2021-07-22,21152.556780714945,127,Elective,2021-08-01,Inconclusive,3165,119,3,29,,,,DISCHARGED -3166,2022-06-17,15797.127295506469,425,Emergency,2022-07-14,Inconclusive,3166,392,2,22,,,,DISCHARGED -3167,2021-04-15,23710.315085067414,418,Urgent,2021-04-27,Abnormal,3167,424,2,21,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3168,2021-04-17,25405.87141325083,349,Emergency,2021-05-04,Inconclusive,3168,128,4,20,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3169,2021-10-27,37885.40544481771,127,Emergency,2021-10-30,Inconclusive,3169,129,1,21,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -3170,2021-02-21,20725.284591065363,318,Elective,2021-03-07,Normal,3170,59,1,29,,,,DISCHARGED -3171,2022-01-01,22564.109614313336,403,Elective,2022-01-30,Normal,3171,47,4,10,,,,DISCHARGED -3172,2022-04-19,25217.78973513061,249,Urgent,2022-04-26,Abnormal,3172,28,0,3,,,,DISCHARGED -3174,2020-10-25,37797.67662244145,294,Elective,2020-11-08,Abnormal,3174,96,2,0,,,,DISCHARGED -3175,2021-11-29,41498.664297844734,171,Urgent,2021-12-06,Normal,3175,9,2,14,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3176,2021-02-19,35573.40891708377,356,Emergency,2021-03-01,Normal,3176,241,1,11,,,,DISCHARGED -3177,2019-07-15,30491.81722319993,113,Elective,2019-07-18,Inconclusive,3177,313,1,8,,,,DISCHARGED -3179,2020-08-26,29165.42831875853,171,Emergency,2020-09-12,Inconclusive,3179,443,4,10,,,,DISCHARGED -3180,2021-05-18,6779.595114468269,153,Elective,2021-06-09,Abnormal,3180,231,3,4,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3180,2023-06-22,8424.652221687034,239,Elective,,Abnormal,8996,276,0,23,,,,OPEN -3181,2022-03-06,10850.253817216151,261,Elective,2022-03-11,Abnormal,3181,283,3,6,,,,DISCHARGED -3182,2023-08-15,1046.9851593479789,167,Elective,2023-09-08,Normal,3182,202,3,7,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -3183,2020-07-05,15894.033974104748,114,Elective,2020-07-12,Normal,3183,246,1,0,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -3184,2020-11-08,20823.484544963747,254,Emergency,2020-12-02,Abnormal,3184,289,1,24,,,,DISCHARGED -3185,2019-11-19,13886.451403327366,344,Emergency,2019-12-04,Inconclusive,3185,263,1,0,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3186,2019-02-12,15710.353829840358,323,Urgent,2019-02-17,Normal,3186,442,3,2,,,,DISCHARGED -3187,2023-03-01,25961.30488418477,304,Elective,2023-03-17,Normal,3187,213,0,7,,,,DISCHARGED -3190,2020-04-30,44374.042747785854,113,Elective,2020-05-14,Normal,3190,199,1,27,,,,DISCHARGED -3191,2021-12-12,46664.288490969615,449,Elective,2021-12-26,Inconclusive,3191,432,2,10,,,,DISCHARGED -3192,2021-11-25,33266.7641262159,314,Elective,2021-12-13,Inconclusive,3192,78,0,0,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3193,2022-02-04,35328.78298808477,499,Elective,2022-02-08,Abnormal,3193,400,2,13,,,,DISCHARGED -3194,2020-04-13,30730.496854594345,341,Elective,2020-04-20,Abnormal,3194,443,0,0,,,,DISCHARGED -3195,2020-01-31,25308.38693229544,328,Emergency,2020-02-19,Abnormal,3195,342,1,5,,,,DISCHARGED -3196,2021-06-06,44957.68027934134,151,Emergency,2021-06-12,Normal,3196,343,4,20,,,,DISCHARGED -3197,2021-02-27,16486.72498509192,434,Elective,2021-03-26,Normal,3197,172,1,26,,,,DISCHARGED -3198,2022-01-06,17433.850826831138,496,Urgent,2022-01-31,Abnormal,3198,466,3,5,,,,DISCHARGED -3198,2019-01-06,48070.958802193374,486,Elective,2019-02-03,Inconclusive,4446,68,3,2,,,,DISCHARGED -3199,2020-03-16,42008.85626598571,391,Urgent,2020-04-02,Normal,3199,415,0,9,,,,DISCHARGED -3200,2018-12-25,41116.124766563495,411,Urgent,2019-01-11,Abnormal,3200,427,3,11,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3201,2022-06-12,39261.89574248604,326,Urgent,2022-07-12,Abnormal,3201,448,1,9,,,,DISCHARGED -3202,2021-06-26,17045.90059379294,440,Emergency,2021-07-25,Inconclusive,3202,86,2,21,,,,DISCHARGED -3203,2019-12-18,26799.03530934963,483,Elective,2020-01-12,Abnormal,3203,100,1,1,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -3203,2021-05-06,37784.22859772242,454,Elective,2021-05-15,Inconclusive,4905,7,0,23,,,,DISCHARGED -3204,2019-02-01,38038.8666966434,189,Urgent,2019-03-03,Inconclusive,3204,332,3,27,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3205,2020-02-11,35813.47918792423,159,Urgent,2020-02-26,Abnormal,3205,199,2,21,,,,DISCHARGED -3206,2020-03-06,31964.450065561323,414,Urgent,2020-03-08,Normal,3206,86,4,12,,,,DISCHARGED -3207,2022-10-01,31003.156018446414,185,Elective,2022-10-26,Inconclusive,3207,42,2,15,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -3208,2022-08-31,21846.13325548399,148,Elective,2022-09-12,Normal,3208,384,2,12,,,,DISCHARGED -3209,2022-02-17,6872.285240259911,148,Urgent,2022-02-22,Inconclusive,3209,108,1,3,,,,DISCHARGED -3210,2018-12-20,21143.94367655722,148,Elective,2019-01-07,Inconclusive,3210,434,4,3,,,,DISCHARGED -3211,2023-10-29,38696.62195728593,416,Urgent,2023-11-21,Inconclusive,3211,407,0,29,,,,DISCHARGED -3211,2023-09-14,17635.30737141264,218,Emergency,,Abnormal,3904,482,0,10,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",OPEN -3212,2022-12-08,7524.227987602171,357,Urgent,2022-12-20,Abnormal,3212,151,2,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -3214,2019-06-26,31390.23324087279,277,Emergency,2019-06-28,Abnormal,3214,16,2,13,,,,DISCHARGED -3215,2022-08-18,29963.78499238094,189,Elective,2022-09-14,Normal,3215,132,3,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,DISCHARGED -3216,2021-06-26,29618.637058229506,481,Elective,2021-07-02,Inconclusive,3216,147,4,26,,,,DISCHARGED -3217,2023-10-12,8176.785845277339,351,Urgent,,Abnormal,3217,276,2,18,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -3218,2020-01-27,7643.983675466972,296,Urgent,2020-02-16,Abnormal,3218,231,3,21,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -3219,2020-12-28,26920.753145962422,387,Emergency,2021-01-05,Inconclusive,3219,313,4,24,,,,DISCHARGED -3220,2019-05-13,25826.76970732778,447,Elective,2019-06-03,Abnormal,3220,414,0,0,,,,DISCHARGED -3221,2019-11-21,37934.43767465431,398,Urgent,2019-11-29,Inconclusive,3221,365,3,4,,,,DISCHARGED -3222,2021-10-23,45608.85733652583,398,Emergency,2021-11-16,Normal,3222,227,4,16,,,,DISCHARGED -3223,2023-03-28,35336.88433296851,149,Emergency,2023-04-09,Inconclusive,3223,138,3,0,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3224,2022-05-30,27739.05806271692,446,Elective,2022-06-14,Abnormal,3224,435,2,18,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3225,2019-04-10,19356.0784987492,477,Emergency,2019-04-19,Inconclusive,3225,398,1,18,,,,DISCHARGED -3226,2020-12-22,1612.237218417031,176,Emergency,2021-01-12,Abnormal,3226,210,0,3,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -3227,2021-05-11,31903.5209190799,252,Urgent,2021-05-12,Abnormal,3227,390,2,18,,,,DISCHARGED -3228,2020-07-15,32396.286501804367,349,Elective,2020-08-11,Normal,3228,498,2,5,,,,DISCHARGED -3229,2020-11-26,3778.593154268119,480,Emergency,2020-12-02,Normal,3229,27,4,27,,,,DISCHARGED -3230,2023-07-03,20754.467414027484,295,Emergency,2023-07-30,Inconclusive,3230,50,3,14,,,,DISCHARGED -3231,2023-04-13,10043.651437862873,300,Elective,2023-04-29,Inconclusive,3231,490,0,3,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -3232,2022-03-25,27280.358469317664,422,Elective,2022-04-10,Abnormal,3232,441,2,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -3233,2021-04-16,27017.947867812283,158,Emergency,2021-05-14,Abnormal,3233,260,4,0,,,,DISCHARGED -3234,2023-06-04,26858.572337353293,276,Emergency,2023-06-25,Normal,3234,260,0,23,,,,DISCHARGED -3235,2020-05-12,1145.877640832507,150,Elective,2020-06-07,Inconclusive,3235,349,3,26,,,,DISCHARGED -3236,2019-11-27,23692.49057682341,367,Emergency,2019-12-23,Abnormal,3236,351,2,16,,,,DISCHARGED -3237,2020-01-24,16780.44610672707,243,Urgent,2020-02-07,Abnormal,3237,7,2,10,,,,DISCHARGED -3238,2022-05-28,43362.9686184271,261,Elective,2022-06-25,Abnormal,3238,319,2,16,,,,DISCHARGED -3239,2020-06-05,16281.956722566789,466,Emergency,2020-06-11,Normal,3239,137,0,22,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3240,2021-09-01,5788.0848081727545,441,Urgent,2021-09-25,Inconclusive,3240,37,0,0,,,,DISCHARGED -3241,2020-08-14,37410.32687199458,344,Urgent,2020-09-13,Inconclusive,3241,110,0,8,,,,DISCHARGED -3242,2021-03-14,35885.29313317176,437,Urgent,2021-04-03,Inconclusive,3242,479,0,13,,,,DISCHARGED -3243,2021-02-07,44840.63064748123,132,Elective,2021-02-19,Abnormal,3243,367,4,14,,,,DISCHARGED -3244,2021-03-17,21860.39386882744,271,Urgent,2021-04-14,Normal,3244,219,1,23,,,,DISCHARGED -3245,2023-04-18,28780.04652388887,429,Urgent,2023-04-22,Abnormal,3245,336,4,28,,,,DISCHARGED -3246,2021-12-31,16558.886768473873,360,Emergency,2022-01-08,Abnormal,3246,222,2,0,,,,DISCHARGED -3246,2022-04-25,24218.861075714183,297,Emergency,2022-05-06,Inconclusive,4428,135,4,1,,,,DISCHARGED -3247,2020-02-24,28045.761477925036,469,Emergency,2020-03-16,Normal,3247,255,3,17,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3249,2020-05-27,35716.00264524215,264,Emergency,2020-05-30,Inconclusive,3249,359,0,17,,,,DISCHARGED -3249,2022-03-30,15872.81414829999,286,Emergency,2022-04-03,Abnormal,9986,408,3,5,,,,DISCHARGED -3250,2020-06-26,10997.706493275358,386,Elective,2020-07-15,Abnormal,3250,328,3,19,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3251,2022-02-13,22619.041333271965,412,Emergency,2022-03-07,Abnormal,3251,449,2,7,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -3251,2019-02-28,40432.98923209701,179,Elective,2019-03-18,Normal,4470,462,0,0,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3252,2021-11-13,34738.4757393712,423,Emergency,2021-11-19,Inconclusive,3252,433,3,14,,,,DISCHARGED -3253,2019-05-12,23249.14331882182,332,Elective,2019-05-14,Inconclusive,3253,450,2,9,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3254,2020-04-01,21484.342749153264,150,Urgent,2020-04-20,Inconclusive,3254,48,0,29,,,,DISCHARGED -3255,2023-05-11,1933.5109491668584,426,Emergency,2023-05-15,Inconclusive,3255,291,1,3,,,,DISCHARGED -3256,2020-11-05,49985.97306779267,483,Elective,2020-11-12,Inconclusive,3256,381,2,9,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -3257,2022-11-12,21746.883196345665,367,Elective,2022-11-18,Normal,3257,323,4,10,,,,DISCHARGED -3258,2019-03-20,36072.20748168289,367,Urgent,2019-04-09,Inconclusive,3258,77,0,4,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3259,2022-09-03,37707.33098213853,413,Urgent,2022-09-09,Inconclusive,3259,104,3,8,,,,DISCHARGED -3260,2022-07-10,44380.9080284068,424,Urgent,2022-07-24,Abnormal,3260,168,3,4,,,,DISCHARGED -3261,2019-05-20,9321.657575635762,432,Emergency,2019-06-18,Normal,3261,216,4,28,,,,DISCHARGED -3262,2021-05-16,21978.42205595812,286,Emergency,2021-05-19,Inconclusive,3262,377,4,10,,,,DISCHARGED -3263,2020-06-29,41468.7173083189,233,Emergency,2020-07-09,Normal,3263,118,3,2,,,,DISCHARGED -3264,2019-03-05,47271.72979486815,293,Elective,2019-04-02,Normal,3264,189,0,26,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -3265,2023-08-28,34564.10549295208,387,Urgent,2023-09-08,Abnormal,3265,254,2,3,,,,DISCHARGED -3266,2021-09-06,38613.98698003616,118,Elective,2021-09-15,Inconclusive,3266,369,4,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3266,2019-01-01,49957.99759953944,292,Emergency,2019-01-29,Inconclusive,4110,265,4,6,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -3267,2020-03-25,49511.294019079454,121,Elective,2020-03-31,Abnormal,3267,148,4,0,,,,DISCHARGED -3268,2021-09-26,47982.06903606661,259,Elective,2021-10-10,Inconclusive,3268,163,1,26,,,,DISCHARGED -3269,2023-09-12,18943.14387104386,307,Urgent,2023-09-19,Inconclusive,3269,139,0,5,,,,DISCHARGED -3270,2020-10-12,46362.20083499501,175,Urgent,2020-10-23,Abnormal,3270,346,0,7,Difficulty sleeping and feeling restless at night,"Sleep study, evaluation for sleep disorders, and lifestyle modifications for improved sleep hygiene.","G47.9 - Sleep disorder, unspecified",DISCHARGED -3271,2019-05-21,12712.308484659714,383,Emergency,2019-06-19,Abnormal,3271,487,0,16,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -3272,2022-03-25,49209.09795215244,380,Urgent,2022-04-02,Abnormal,3272,257,0,23,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -3273,2023-08-31,11349.820789752775,241,Emergency,2023-09-17,Normal,3273,373,0,6,,,,DISCHARGED -3274,2020-07-30,2852.6131636677305,388,Elective,2020-08-04,Inconclusive,3274,268,3,0,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -3275,2022-04-17,44888.79634589333,359,Elective,2022-04-26,Normal,3275,180,4,8,,,,DISCHARGED -3276,2019-08-17,24595.38528026276,371,Urgent,2019-08-24,Abnormal,3276,159,3,10,,,,DISCHARGED -3277,2023-10-14,22153.715664931697,244,Emergency,,Inconclusive,3277,350,1,18,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -3278,2022-03-10,37936.93276154094,288,Emergency,2022-03-11,Normal,3278,399,2,1,,,,DISCHARGED -3279,2021-05-31,36579.24363429243,367,Urgent,2021-06-30,Normal,3279,287,4,22,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -3280,2023-01-16,15313.4778265791,486,Elective,2023-02-05,Normal,3280,287,1,10,,,,DISCHARGED -3280,2022-01-08,2380.100783268822,470,Emergency,2022-02-05,Abnormal,6742,379,3,2,,,,DISCHARGED -3281,2019-01-16,30202.861642866203,257,Elective,2019-02-14,Abnormal,3281,225,2,16,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -3282,2022-05-02,24806.442863916604,376,Urgent,2022-05-20,Inconclusive,3282,10,1,9,,,,DISCHARGED -3283,2020-06-27,27613.975868401776,387,Elective,2020-07-19,Normal,3283,9,2,28,,,,DISCHARGED -3284,2022-12-08,22323.95941982574,416,Emergency,2022-12-10,Normal,3284,270,1,2,,,,DISCHARGED -3284,2019-07-14,20926.057966476288,341,Urgent,2019-08-06,Abnormal,8218,272,3,21,,,,DISCHARGED -3285,2019-04-12,22487.78681810708,337,Elective,2019-05-10,Abnormal,3285,423,2,2,,,,DISCHARGED -3286,2019-03-16,42479.67310893866,220,Elective,2019-04-06,Normal,3286,401,1,20,,,,DISCHARGED -3287,2018-11-22,26035.83638245789,481,Urgent,2018-12-02,Normal,3287,182,3,24,,,,DISCHARGED -3288,2023-05-27,18632.7174024214,321,Emergency,,Normal,3288,456,4,6,,,,OPEN -3289,2021-01-22,35234.444848625804,128,Emergency,2021-02-10,Normal,3289,152,3,1,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3290,2022-04-14,39291.231857185056,189,Urgent,2022-05-02,Inconclusive,3290,487,3,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3291,2018-12-21,47546.91601522359,453,Emergency,2019-01-05,Normal,3291,314,4,6,,,,DISCHARGED -3292,2022-10-14,48871.14301327921,101,Elective,2022-11-11,Normal,3292,333,3,19,,,,DISCHARGED -3295,2019-12-20,33491.07965974133,403,Elective,2020-01-09,Inconclusive,3295,123,4,10,,,,DISCHARGED -3296,2019-04-20,46585.34261721746,275,Emergency,2019-04-27,Abnormal,3296,472,4,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3297,2020-05-30,32681.48042414797,344,Elective,2020-06-04,Abnormal,3297,113,4,5,,,,DISCHARGED -3298,2021-04-22,4337.817550636108,346,Emergency,2021-05-06,Abnormal,3298,277,1,22,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3299,2022-05-21,27076.130766129187,264,Urgent,2022-06-18,Inconclusive,3299,499,2,3,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3300,2023-03-18,18821.827901947134,370,Urgent,2023-04-03,Abnormal,3300,413,1,18,,,,DISCHARGED -3301,2023-09-24,28122.19239722501,197,Emergency,2023-10-06,Abnormal,3301,467,4,27,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3302,2019-07-04,20925.57709484806,298,Urgent,2019-07-24,Abnormal,3302,212,2,20,,,,DISCHARGED -3303,2019-10-25,1227.6039151182374,190,Emergency,2019-11-05,Abnormal,3303,171,2,18,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3304,2021-02-10,31720.515822983893,272,Emergency,2021-02-21,Inconclusive,3304,287,4,13,,,,DISCHARGED -3305,2022-11-26,44452.49446864677,124,Urgent,2022-12-12,Abnormal,3305,434,2,2,,,,DISCHARGED -3306,2022-02-27,30133.778539861065,312,Urgent,2022-03-10,Abnormal,3306,173,2,3,,,,DISCHARGED -3307,2018-11-18,4607.047668176925,445,Emergency,2018-12-09,Inconclusive,3307,112,1,7,,,,DISCHARGED -3308,2019-04-27,28162.53906005136,419,Emergency,2019-05-02,Inconclusive,3308,375,2,17,,,,DISCHARGED -3309,2023-03-20,46240.92065486389,114,Urgent,,Inconclusive,3309,404,4,3,,,,OPEN -3310,2019-02-10,41960.70599802526,109,Emergency,2019-02-21,Inconclusive,3310,482,0,10,,,,DISCHARGED -3311,2019-08-25,4289.620748686794,377,Urgent,2019-09-22,Abnormal,3311,121,0,15,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3312,2020-06-15,30497.66708151659,183,Elective,2020-07-09,Abnormal,3312,31,0,2,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -3313,2022-01-13,33755.70476370381,107,Urgent,2022-01-25,Inconclusive,3313,221,4,6,,,,DISCHARGED -3314,2022-07-04,7834.138644823199,238,Elective,2022-07-30,Abnormal,3314,118,0,1,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3316,2020-06-23,19678.71421028297,149,Urgent,2020-07-11,Inconclusive,3316,38,1,0,,,,DISCHARGED -3317,2020-02-14,26120.29932490252,313,Urgent,2020-03-06,Inconclusive,3317,496,4,25,,,,DISCHARGED -3318,2020-10-28,23939.362734829123,457,Elective,2020-11-05,Inconclusive,3318,267,4,0,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -3319,2020-10-01,8916.915981115784,131,Elective,2020-10-07,Inconclusive,3319,232,4,5,,,,DISCHARGED -3319,2020-06-24,2575.063002420585,376,Emergency,2020-07-09,Inconclusive,9437,430,2,18,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3320,2023-01-11,13483.062064452874,114,Urgent,2023-02-05,Abnormal,3320,17,2,6,,,,DISCHARGED -3321,2022-09-06,19626.485714965373,443,Urgent,2022-09-30,Normal,3321,148,2,23,,,,DISCHARGED -3322,2023-06-22,33908.994881456034,180,Emergency,2023-07-06,Abnormal,3322,396,3,4,,,,DISCHARGED -3323,2021-04-07,14498.121478433712,463,Urgent,2021-05-05,Inconclusive,3323,148,1,20,,,,DISCHARGED -3324,2020-08-10,33009.32817895975,111,Emergency,2020-09-07,Normal,3324,125,4,27,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -3325,2020-10-14,13229.084373129046,107,Urgent,2020-10-18,Normal,3325,391,4,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3326,2021-02-11,43771.48296945317,379,Urgent,2021-02-17,Normal,3326,301,2,23,,,,DISCHARGED -3327,2022-07-17,26068.122441270298,407,Elective,2022-07-27,Normal,3327,359,4,25,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -3328,2021-03-04,32462.985066348632,355,Emergency,2021-03-10,Abnormal,3328,237,4,12,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3329,2021-01-09,17961.348523114542,311,Urgent,2021-01-21,Inconclusive,3329,134,0,0,,,,DISCHARGED -3330,2020-03-07,2249.4609234150203,358,Emergency,2020-04-03,Inconclusive,3330,150,4,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3330,2022-01-22,12229.38466040464,239,Emergency,2022-02-18,Abnormal,9068,235,3,8,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -3331,2019-04-06,10805.149953848457,330,Urgent,2019-04-24,Abnormal,3331,223,2,16,,,,DISCHARGED -3332,2020-12-25,20494.196815928663,145,Urgent,2021-01-05,Inconclusive,3332,202,1,0,,,,DISCHARGED -3333,2020-07-16,37737.13121588702,203,Urgent,2020-07-24,Inconclusive,3333,255,1,0,,,,DISCHARGED -3334,2022-01-18,39381.22252563776,109,Emergency,2022-02-14,Normal,3334,85,0,6,,,,DISCHARGED -3335,2019-06-23,47682.625945160245,116,Elective,2019-07-02,Inconclusive,3335,149,1,3,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -3336,2020-02-02,31911.055694805946,363,Urgent,2020-02-11,Inconclusive,3336,234,1,27,,,,DISCHARGED -3337,2020-07-10,29472.41757198453,272,Urgent,2020-07-11,Normal,3337,344,2,22,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -3338,2020-09-03,5864.301727790382,172,Emergency,2020-09-16,Abnormal,3338,21,2,20,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3339,2022-10-03,10410.225886704982,412,Emergency,2022-10-08,Abnormal,3339,347,3,11,,,,DISCHARGED -3340,2022-10-27,24366.91470782687,331,Urgent,2022-11-08,Inconclusive,3340,284,0,15,,,,DISCHARGED -3341,2019-02-27,49347.616196905896,295,Urgent,2019-03-27,Normal,3341,268,1,13,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -3342,2021-09-15,30127.933209010487,130,Emergency,2021-09-28,Inconclusive,3342,465,3,22,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3343,2023-09-13,30418.75143235032,353,Emergency,2023-09-17,Abnormal,3343,257,0,9,,,,DISCHARGED -3344,2019-03-23,4754.908285145275,121,Elective,2019-04-13,Normal,3344,28,1,13,,,,DISCHARGED -3346,2019-04-20,16965.886405992394,248,Emergency,2019-04-24,Inconclusive,3346,212,1,6,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -3347,2022-06-07,16259.79909830879,356,Urgent,2022-07-06,Normal,3347,462,2,3,,,,DISCHARGED -3348,2020-10-21,30799.23484824942,436,Elective,2020-10-25,Abnormal,3348,435,4,1,,,,DISCHARGED -3349,2021-10-18,13437.253293594791,420,Elective,2021-10-22,Normal,3349,282,0,23,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -3350,2021-06-19,34172.76394831471,473,Elective,2021-07-05,Inconclusive,3350,49,1,17,,,,DISCHARGED -3351,2020-05-10,31681.84172558551,294,Elective,2020-05-20,Inconclusive,3351,94,0,15,,,,DISCHARGED -3352,2019-04-20,33151.89825973076,374,Emergency,2019-05-03,Abnormal,3352,462,3,8,,,,DISCHARGED -3353,2022-10-27,20578.953671631123,420,Urgent,2022-10-29,Inconclusive,3353,498,3,4,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3354,2020-11-22,11929.801861130089,252,Emergency,2020-12-04,Inconclusive,3354,406,4,8,,,,DISCHARGED -3355,2020-05-23,5271.6898727734,284,Urgent,2020-06-13,Normal,3355,87,1,24,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3355,2019-02-25,3618.873750814807,459,Emergency,2019-03-01,Abnormal,7613,43,2,29,,,,DISCHARGED -3356,2022-01-13,46601.3223375237,174,Emergency,2022-01-28,Abnormal,3356,460,1,7,,,,DISCHARGED -3357,2021-10-26,45501.135081265245,273,Emergency,2021-11-09,Abnormal,3357,277,0,23,,,,DISCHARGED -3358,2019-03-22,45556.40566105657,159,Emergency,2019-03-30,Inconclusive,3358,170,3,19,,,,DISCHARGED -3358,2021-06-17,20322.99962739144,228,Elective,2021-07-02,Normal,7950,420,0,15,,,,DISCHARGED -3359,2020-09-06,15614.23985479929,308,Emergency,2020-09-12,Normal,3359,188,4,29,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -3360,2021-06-14,44504.92691274109,269,Elective,2021-06-15,Normal,3360,352,3,19,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -3361,2020-07-14,4903.778959452355,488,Urgent,2020-08-01,Inconclusive,3361,183,2,29,,,,DISCHARGED -3362,2022-01-25,11024.277548579958,302,Elective,2022-02-05,Abnormal,3362,2,3,17,,,,DISCHARGED -3363,2019-09-07,25348.498391827416,188,Urgent,2019-09-26,Inconclusive,3363,190,1,3,,,,DISCHARGED -3364,2020-04-03,37499.03246019616,260,Elective,2020-04-11,Inconclusive,3364,117,1,15,,,,DISCHARGED -3365,2023-02-26,3683.327487350728,378,Urgent,,Abnormal,3365,18,3,3,,,,OPEN -3366,2020-06-12,11405.333373376972,468,Emergency,2020-07-09,Abnormal,3366,22,4,5,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -3368,2023-05-10,6385.646035112982,278,Emergency,,Inconclusive,3368,412,1,2,,,,OPEN -3369,2021-05-01,41165.99414208907,280,Urgent,2021-05-28,Normal,3369,29,1,17,,,,DISCHARGED -3370,2021-01-04,1346.9296207404268,253,Urgent,2021-01-29,Inconclusive,3370,294,2,14,,,,DISCHARGED -3371,2020-04-25,12971.732636648836,300,Elective,2020-05-21,Inconclusive,3371,107,3,7,,,,DISCHARGED -3372,2021-11-02,40362.818512292906,399,Urgent,2021-11-16,Normal,3372,366,1,17,,,,DISCHARGED -3373,2022-04-21,4827.084342925591,371,Urgent,2022-04-23,Inconclusive,3373,280,4,23,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -3374,2022-03-21,26535.500058773512,191,Elective,2022-03-28,Abnormal,3374,127,0,22,,,,DISCHARGED -3375,2021-05-26,2215.2984504560272,169,Emergency,2021-06-12,Abnormal,3375,228,3,2,,,,DISCHARGED -3376,2022-05-24,18219.253441754143,270,Emergency,2022-06-17,Normal,3376,110,2,5,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3377,2020-01-27,17174.92757903986,215,Urgent,2020-02-03,Abnormal,3377,135,1,21,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -3378,2022-02-21,29519.277261243755,343,Elective,2022-03-22,Inconclusive,3378,361,4,25,,,,DISCHARGED -3380,2020-08-24,38418.635192447255,430,Urgent,2020-08-29,Normal,3380,185,3,29,,,,DISCHARGED -3381,2019-07-31,18476.21528771605,205,Emergency,2019-08-22,Inconclusive,3381,143,4,20,,,,DISCHARGED -3382,2022-09-24,17248.00592975247,499,Urgent,2022-10-17,Normal,3382,71,4,28,,,,DISCHARGED -3383,2019-07-17,20851.89997296965,391,Elective,2019-07-25,Normal,3383,128,2,23,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3383,2020-04-10,4936.911423895342,452,Emergency,2020-04-22,Normal,7093,363,3,14,,,,DISCHARGED -3384,2019-11-25,40278.11343001168,205,Elective,2019-12-02,Abnormal,3384,260,1,26,,,,DISCHARGED -3385,2021-01-30,41052.037806294815,300,Urgent,2021-02-22,Inconclusive,3385,2,2,11,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -3386,2018-12-13,34011.70946146866,331,Elective,2019-01-02,Abnormal,3386,448,1,4,,,,DISCHARGED -3387,2019-05-06,17217.398862575814,134,Urgent,2019-06-04,Inconclusive,3387,387,0,6,,,,DISCHARGED -3388,2021-09-25,10331.947838351234,344,Emergency,2021-09-29,Inconclusive,3388,103,4,21,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -3389,2023-07-15,8019.14606215162,175,Urgent,,Inconclusive,3389,482,0,26,,,,OPEN -3390,2022-03-14,16852.487836405468,149,Urgent,2022-03-17,Abnormal,3390,223,4,14,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -3391,2022-02-24,15064.14030760482,278,Elective,2022-03-09,Normal,3391,319,2,6,,,,DISCHARGED -3392,2023-07-09,16996.192397843213,411,Emergency,2023-07-31,Inconclusive,3392,361,1,12,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -3393,2020-09-19,36409.72082430181,216,Urgent,2020-09-21,Inconclusive,3393,353,1,24,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3394,2021-11-28,33388.11618449382,138,Elective,2021-12-27,Abnormal,3394,490,2,2,,,,DISCHARGED -3395,2021-04-10,45614.48039475993,390,Urgent,2021-05-07,Normal,3395,472,3,25,,,,DISCHARGED -3395,2022-04-16,23141.40317446856,319,Emergency,2022-04-27,Abnormal,7470,9,0,22,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3397,2019-10-08,46948.22518324076,167,Emergency,2019-10-12,Inconclusive,3397,404,0,12,,,,DISCHARGED -3398,2022-11-22,2017.8978177102272,278,Emergency,2022-12-11,Normal,3398,383,1,25,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3399,2022-05-11,4019.06892792972,298,Elective,2022-06-04,Abnormal,3399,301,1,2,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3400,2022-05-31,8840.70046360333,344,Elective,2022-06-21,Abnormal,3400,230,1,28,,,,DISCHARGED -3401,2020-01-17,43882.82254266742,483,Urgent,2020-02-13,Inconclusive,3401,218,2,1,,,,DISCHARGED -3402,2019-03-24,20021.302087784225,432,Elective,2019-04-20,Normal,3402,410,3,27,,,,DISCHARGED -3403,2020-05-15,35072.498577446066,295,Elective,2020-06-03,Abnormal,3403,65,0,22,,,,DISCHARGED -3404,2020-12-15,23197.90607450162,183,Urgent,2021-01-12,Abnormal,3404,424,4,3,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3405,2020-12-20,15482.1718780235,252,Urgent,2020-12-22,Abnormal,3405,111,2,16,,,,DISCHARGED -3406,2019-03-18,1952.487604996448,231,Urgent,2019-03-30,Inconclusive,3406,12,0,5,,,,DISCHARGED -3407,2022-10-11,39019.48505366825,106,Emergency,2022-11-01,Abnormal,3407,392,3,10,,,,DISCHARGED -3408,2020-03-19,46709.076193386536,189,Emergency,2020-04-08,Abnormal,3408,499,2,5,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -3409,2022-01-30,44204.36114992489,147,Elective,2022-01-31,Inconclusive,3409,419,0,21,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -3409,2020-09-22,34982.69465838882,263,Urgent,2020-10-17,Normal,7576,85,2,1,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3410,2022-10-30,32854.79718764628,313,Elective,2022-11-07,Inconclusive,3410,233,0,16,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -3411,2021-10-09,2048.205472466396,296,Elective,2021-10-13,Inconclusive,3411,89,0,2,,,,DISCHARGED -3412,2023-10-17,22962.31849695047,101,Elective,2023-10-27,Abnormal,3412,313,3,11,,,,DISCHARGED -3413,2022-11-26,5963.308402943647,348,Emergency,2022-12-26,Normal,3413,53,4,13,,,,DISCHARGED -3414,2021-03-12,25369.69510495335,183,Urgent,2021-03-31,Abnormal,3414,11,3,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3414,2019-01-29,8296.299322392893,308,Urgent,2019-02-04,Normal,9992,208,0,21,,,,DISCHARGED -3415,2019-11-15,2371.278983582703,279,Emergency,2019-11-22,Normal,3415,461,2,28,,,,DISCHARGED -3416,2019-03-14,15863.133289090902,274,Urgent,2019-03-29,Inconclusive,3416,13,3,27,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3416,2018-11-24,11617.56767336844,426,Emergency,2018-11-25,Abnormal,4162,120,4,21,,,,DISCHARGED -3417,2019-05-14,6252.471533099777,239,Emergency,2019-05-25,Normal,3417,417,0,28,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3418,2021-12-29,2507.6013532535844,489,Emergency,2022-01-18,Normal,3418,436,3,4,,,,DISCHARGED -3419,2019-02-28,43455.8076439202,118,Urgent,2019-03-24,Abnormal,3419,376,3,9,,,,DISCHARGED -3420,2022-06-26,17890.770585794602,128,Emergency,2022-06-27,Normal,3420,19,3,9,,,,DISCHARGED -3421,2023-04-09,39676.38444899642,350,Elective,2023-04-30,Abnormal,3421,74,3,20,,,,DISCHARGED -3422,2020-02-25,45324.349638153406,251,Elective,2020-03-11,Normal,3422,399,2,8,,,,DISCHARGED -3423,2022-08-15,38251.78008022902,122,Emergency,2022-09-07,Normal,3423,242,4,29,,,,DISCHARGED -3424,2019-12-08,26962.288220535254,323,Emergency,2019-12-15,Inconclusive,3424,222,4,20,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -3426,2020-01-31,19925.44145566827,432,Elective,2020-03-01,Normal,3426,69,0,12,,,,DISCHARGED -3427,2023-04-04,12532.312544371944,210,Elective,2023-04-05,Normal,3427,311,1,9,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -3428,2019-01-11,3411.6073048931976,476,Urgent,2019-01-29,Inconclusive,3428,210,2,5,,,,DISCHARGED -3429,2023-08-20,36237.93656006117,179,Emergency,2023-08-21,Inconclusive,3429,100,0,10,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -3430,2023-03-27,20416.742967794256,236,Urgent,2023-04-04,Abnormal,3430,185,0,3,,,,DISCHARGED -3432,2019-05-09,12704.57810572576,325,Emergency,2019-05-28,Abnormal,3432,131,3,25,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -3433,2022-10-27,14186.494485330904,140,Emergency,2022-11-20,Inconclusive,3433,110,1,13,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3434,2020-10-29,23041.23875125717,287,Elective,2020-11-17,Normal,3434,380,1,29,,,,DISCHARGED -3435,2020-06-18,12257.282496483933,143,Elective,2020-06-24,Inconclusive,3435,131,2,16,,,,DISCHARGED -3436,2019-11-23,33724.93638261652,290,Emergency,2019-11-25,Abnormal,3436,19,1,19,,,,DISCHARGED -3437,2021-04-13,36207.40850740152,458,Elective,2021-04-27,Normal,3437,393,0,1,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -3438,2020-04-27,1540.8688562790214,408,Emergency,2020-05-21,Normal,3438,23,1,9,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3439,2020-01-06,3278.53845376364,117,Elective,2020-01-19,Inconclusive,3439,226,1,2,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -3440,2023-07-04,1892.9675834340032,137,Emergency,2023-07-14,Normal,3440,153,4,6,,,,DISCHARGED -3441,2021-04-01,7051.331643394086,213,Emergency,2021-04-26,Abnormal,3441,292,0,6,,,,DISCHARGED -3442,2022-03-20,42573.01719112629,110,Urgent,2022-04-01,Normal,3442,229,1,0,,,,DISCHARGED -3443,2021-12-12,12656.469603455684,351,Elective,2021-12-19,Inconclusive,3443,468,1,7,,,,DISCHARGED -3444,2023-04-22,40753.34130488418,498,Elective,2023-05-10,Abnormal,3444,309,3,22,,,,DISCHARGED -3445,2023-05-12,38405.2173961076,386,Urgent,2023-06-08,Inconclusive,3445,487,1,0,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3446,2020-05-25,48338.53312087533,435,Elective,2020-06-21,Inconclusive,3446,358,1,7,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3447,2023-04-12,12863.313947483624,191,Urgent,2023-05-12,Abnormal,3447,404,4,13,,,,DISCHARGED -3448,2023-08-04,19322.99752144369,107,Urgent,2023-08-25,Normal,3448,201,0,13,,,,DISCHARGED -3449,2022-01-15,22293.33879360042,121,Urgent,2022-01-17,Abnormal,3449,37,2,1,,,,DISCHARGED -3450,2021-11-12,6340.089525400204,137,Emergency,2021-11-27,Normal,3450,429,0,7,,,,DISCHARGED -3451,2022-09-02,38190.55689690292,245,Urgent,2022-09-17,Abnormal,3451,259,3,18,,,,DISCHARGED -3452,2021-06-02,25682.71965319057,349,Emergency,2021-06-21,Abnormal,3452,187,0,9,,,,DISCHARGED -3453,2022-11-05,12905.961480710326,343,Emergency,2022-11-18,Normal,3453,56,1,6,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3454,2020-08-05,21495.44109921497,457,Elective,2020-08-18,Abnormal,3454,428,3,12,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3455,2019-03-01,6791.321000931511,187,Emergency,2019-03-09,Inconclusive,3455,19,0,21,,,,DISCHARGED -3456,2021-08-18,40407.452604081256,195,Elective,2021-08-23,Abnormal,3456,272,3,20,,,,DISCHARGED -3457,2022-09-10,16994.270191740652,176,Elective,2022-09-25,Inconclusive,3457,118,2,14,,,,DISCHARGED -3458,2023-02-28,45600.41159706999,171,Elective,2023-03-13,Abnormal,3458,70,0,10,,,,DISCHARGED -3459,2020-03-21,44953.29392391745,122,Emergency,2020-04-18,Normal,3459,3,1,25,,,,DISCHARGED -3460,2021-11-21,48000.46141702045,330,Elective,2021-12-05,Normal,3460,220,3,13,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -3461,2019-12-07,17213.31777812114,157,Elective,2019-12-21,Abnormal,3461,13,4,10,,,,DISCHARGED -3462,2019-06-21,48620.84366402592,143,Urgent,2019-06-28,Normal,3462,2,3,1,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -3463,2020-08-14,8983.024205208314,158,Elective,2020-09-09,Normal,3463,215,4,1,,,,DISCHARGED -3464,2019-01-05,4312.460671897877,249,Elective,2019-01-25,Normal,3464,228,1,28,,,,DISCHARGED -3465,2022-01-24,44456.83018969525,406,Urgent,2022-02-05,Abnormal,3465,335,2,11,,,,DISCHARGED -3466,2022-01-22,45537.48490740536,268,Emergency,2022-01-29,Inconclusive,3466,185,4,14,,,,DISCHARGED -3467,2019-12-24,28045.685027115527,380,Elective,2020-01-01,Normal,3467,54,2,16,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3468,2022-12-06,48965.44033912504,424,Emergency,2022-12-27,Abnormal,3468,499,3,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -3468,2022-09-22,45282.578642005086,345,Elective,2022-10-18,Abnormal,8263,387,1,24,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3469,2023-06-19,16609.248047843543,250,Emergency,2023-07-10,Inconclusive,3469,375,4,15,,,,DISCHARGED -3470,2019-11-09,3466.2389970598965,208,Emergency,2019-11-23,Normal,3470,253,3,26,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3471,2023-07-04,39862.53294477552,140,Elective,2023-07-31,Abnormal,3471,23,0,7,,,,DISCHARGED -3471,2021-11-08,36016.93835115629,271,Emergency,2021-11-15,Abnormal,6471,161,3,23,,,,DISCHARGED -3472,2021-05-02,4318.317110530047,214,Elective,2021-05-08,Normal,3472,157,2,16,,,,DISCHARGED -3473,2022-07-11,18531.628836860244,439,Emergency,2022-07-31,Inconclusive,3473,81,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3474,2022-12-18,33647.69029715338,244,Emergency,2022-12-27,Normal,3474,402,1,11,,,,DISCHARGED -3475,2022-11-28,7421.325596695157,306,Emergency,2022-12-06,Normal,3475,158,3,5,,,,DISCHARGED -3476,2020-07-26,45884.75906894886,451,Elective,2020-08-04,Normal,3476,187,0,17,,,,DISCHARGED -3477,2023-06-05,47369.37054758819,437,Urgent,2023-06-20,Abnormal,3477,59,2,25,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3478,2019-12-06,37405.16096157677,304,Elective,2019-12-25,Abnormal,3478,402,3,4,,,,DISCHARGED -3479,2021-10-17,16461.50097427297,184,Emergency,2021-11-05,Abnormal,3479,304,3,5,,,,DISCHARGED -3480,2023-08-17,2872.402642953097,320,Elective,,Abnormal,3480,318,1,8,,,,OPEN -3481,2020-04-05,3685.2613476564784,137,Urgent,2020-05-04,Abnormal,3481,365,2,14,,,,DISCHARGED -3482,2020-10-08,45207.42448593232,125,Urgent,2020-10-31,Abnormal,3482,210,0,9,,,,DISCHARGED -3483,2019-07-01,8647.898158600005,440,Urgent,2019-07-16,Abnormal,3483,405,1,16,,,,DISCHARGED -3484,2021-09-02,44153.05782471874,144,Urgent,2021-09-19,Inconclusive,3484,151,3,28,,,,DISCHARGED -3485,2023-10-03,21461.827861342743,441,Urgent,2023-10-22,Inconclusive,3485,108,1,25,,,,DISCHARGED -3486,2020-06-26,33792.83444231801,461,Elective,2020-07-17,Abnormal,3486,75,1,18,,,,DISCHARGED -3487,2020-11-15,22146.75564628472,455,Urgent,2020-12-14,Normal,3487,29,4,11,,,,DISCHARGED -3488,2020-08-10,46251.85938662369,308,Elective,2020-08-28,Inconclusive,3488,313,1,8,Blood in stool or urine,"Conduct tests to identify the source, prescribe medications or recommend surgical interventions, and monitor for improvement.",N95.1 - Menopausal and female climacteric states,DISCHARGED -3488,2019-02-16,32384.872703688827,207,Urgent,2019-03-10,Abnormal,4823,485,1,14,,,,DISCHARGED -3488,2022-10-02,32383.990986224228,253,Urgent,2022-10-13,Abnormal,9441,116,2,13,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -3489,2022-10-12,38641.88825874116,184,Elective,2022-10-18,Inconclusive,3489,414,1,0,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -3491,2021-02-25,47440.45326018285,194,Elective,2021-03-01,Abnormal,3491,355,0,16,,,,DISCHARGED -3492,2023-02-17,11064.879265311978,288,Emergency,2023-02-26,Normal,3492,191,3,0,,,,DISCHARGED -3493,2019-06-20,15456.260560579503,415,Urgent,2019-06-26,Inconclusive,3493,18,2,22,,,,DISCHARGED -3494,2019-09-25,16987.9481370126,228,Emergency,2019-10-13,Abnormal,3494,431,1,28,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -3495,2021-05-07,1964.9738235696973,447,Elective,2021-05-17,Abnormal,3495,172,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3496,2019-07-21,6208.836738717939,153,Emergency,2019-08-11,Abnormal,3496,227,3,21,,,,DISCHARGED -3497,2021-04-22,8234.952950200266,250,Elective,2021-05-02,Abnormal,3497,349,2,12,,,,DISCHARGED -3498,2019-10-15,30923.227607662287,198,Urgent,2019-10-17,Inconclusive,3498,182,0,29,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -3499,2020-02-14,42963.60781314,288,Emergency,2020-02-19,Normal,3499,112,1,7,,,,DISCHARGED -3500,2023-05-01,47964.40311180116,187,Emergency,2023-05-31,Inconclusive,3500,182,4,29,,,,DISCHARGED -3501,2023-09-25,15366.651157325045,181,Urgent,2023-10-10,Normal,3501,480,4,12,,,,DISCHARGED -3502,2020-08-22,42723.21750785108,337,Emergency,2020-09-12,Abnormal,3502,145,2,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -3503,2021-02-08,49465.38272475298,129,Urgent,2021-02-15,Abnormal,3503,318,0,1,,,,DISCHARGED -3504,2019-06-06,40406.55901017414,176,Urgent,2019-06-20,Normal,3504,115,3,12,,,,DISCHARGED -3505,2022-11-08,36124.6820091871,180,Elective,2022-11-29,Inconclusive,3505,112,0,17,,,,DISCHARGED -3506,2022-04-12,5927.019173671457,305,Urgent,2022-05-06,Normal,3506,250,4,2,,,,DISCHARGED -3507,2022-09-27,26198.091414724346,392,Urgent,2022-10-23,Inconclusive,3507,475,2,12,,,,DISCHARGED -3508,2020-05-22,34068.993110813586,481,Elective,2020-06-11,Abnormal,3508,250,1,18,,,,DISCHARGED -3510,2023-07-12,45555.50174333505,139,Elective,2023-07-31,Normal,3510,302,0,12,,,,DISCHARGED -3511,2021-12-11,18236.79555799032,486,Elective,2021-12-22,Inconclusive,3511,458,4,18,,,,DISCHARGED -3512,2022-04-26,33878.94618435066,293,Elective,2022-04-29,Inconclusive,3512,312,3,3,,,,DISCHARGED -3513,2018-11-14,42623.23472613382,470,Emergency,2018-11-27,Inconclusive,3513,117,2,18,,,,DISCHARGED -3514,2020-05-31,25186.273311781075,402,Emergency,2020-06-15,Abnormal,3514,300,1,17,,,,DISCHARGED -3515,2023-09-13,35769.71902637293,236,Urgent,2023-09-17,Inconclusive,3515,160,0,24,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3516,2022-06-05,37697.42533212277,403,Elective,2022-06-11,Abnormal,3516,400,3,5,,,,DISCHARGED -3517,2022-01-31,37643.03307451826,434,Emergency,2022-02-06,Abnormal,3517,197,1,18,,,,DISCHARGED -3518,2022-06-04,29042.530038262743,474,Emergency,2022-06-19,Inconclusive,3518,259,4,24,,,,DISCHARGED -3519,2022-05-04,3128.2539583617645,253,Urgent,2022-05-27,Inconclusive,3519,147,4,3,,,,DISCHARGED -3520,2022-08-25,31375.76984447867,187,Emergency,2022-09-08,Normal,3520,239,3,3,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -3521,2022-02-25,9809.568704338291,203,Elective,2022-03-19,Abnormal,3521,46,4,23,,,,DISCHARGED -3521,2020-01-15,45705.0048854744,427,Urgent,2020-01-18,Normal,6314,474,2,6,,,,DISCHARGED -3522,2023-06-09,16671.761552956243,388,Urgent,,Inconclusive,3522,398,3,6,,,,OPEN -3523,2019-01-16,48557.8285341362,300,Elective,2019-02-04,Normal,3523,197,4,25,,,,DISCHARGED -3524,2023-01-11,43105.77056999524,487,Urgent,2023-02-10,Inconclusive,3524,46,0,22,,,,DISCHARGED -3525,2020-03-15,9174.942347838409,192,Urgent,2020-03-21,Inconclusive,3525,77,4,25,,,,DISCHARGED -3526,2020-05-16,49974.299137554735,242,Emergency,2020-05-31,Abnormal,3526,123,2,15,,,,DISCHARGED -3526,2020-04-25,34797.94280096645,163,Urgent,2020-05-18,Normal,5180,74,1,26,,,,DISCHARGED -3526,2019-11-20,3647.307571615069,126,Elective,2019-11-24,Normal,5816,358,1,15,,,,DISCHARGED -3527,2018-11-05,39038.117416557325,457,Emergency,2018-12-01,Inconclusive,3527,136,4,4,,,,DISCHARGED -3528,2022-04-14,41469.76986812502,175,Elective,2022-05-14,Inconclusive,3528,89,1,14,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -3529,2019-08-26,24303.14270286408,230,Urgent,2019-09-14,Abnormal,3529,399,4,22,,,,DISCHARGED -3530,2022-12-12,4894.981267722751,248,Emergency,2022-12-31,Abnormal,3530,324,2,3,,,,DISCHARGED -3531,2019-03-03,39766.9734847552,199,Emergency,2019-03-15,Abnormal,3531,499,1,23,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -3532,2023-03-29,46676.762079426415,478,Emergency,2023-03-31,Abnormal,3532,60,0,24,,,,DISCHARGED -3533,2021-01-08,2831.828522572272,444,Elective,2021-01-29,Normal,3533,137,4,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -3534,2023-05-23,43521.32098509593,478,Elective,2023-06-14,Inconclusive,3534,49,1,27,,,,DISCHARGED -3535,2019-12-08,43988.41844501854,116,Emergency,2019-12-09,Abnormal,3535,258,2,18,,,,DISCHARGED -3536,2019-08-27,36127.85670703623,469,Elective,2019-09-16,Abnormal,3536,460,2,6,,,,DISCHARGED -3537,2022-06-24,26907.89229657558,404,Emergency,2022-07-01,Abnormal,3537,106,0,11,,,,DISCHARGED -3539,2022-04-10,31724.515745364377,398,Emergency,2022-05-08,Abnormal,3539,112,2,25,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -3540,2023-03-24,15248.657109002545,402,Urgent,,Inconclusive,3540,349,2,8,,,,OPEN -3541,2019-05-17,16846.000777644713,117,Emergency,2019-06-01,Normal,3541,253,1,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -3542,2019-03-30,18033.26011150181,370,Elective,2019-04-29,Abnormal,3542,117,4,1,,,,DISCHARGED -3543,2019-01-21,22137.160284523925,261,Urgent,2019-01-24,Normal,3543,492,3,15,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -3544,2019-10-17,20617.00381790932,186,Elective,2019-10-22,Inconclusive,3544,197,2,6,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2022-06-07,10059.578575601596,324,Urgent,2022-06-10,Inconclusive,4325,336,2,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -3544,2020-01-17,48496.52879693761,495,Elective,2020-02-05,Abnormal,8414,364,3,17,,,,DISCHARGED -3545,2022-05-11,23006.526347620696,448,Emergency,2022-05-29,Normal,3545,50,2,6,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -3546,2022-12-20,48437.439353530426,467,Elective,2023-01-17,Normal,3546,244,1,0,,,,DISCHARGED -3547,2023-05-07,3688.081496148474,412,Emergency,2023-06-02,Normal,3547,402,1,2,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3548,2021-01-03,4737.999900057215,438,Emergency,2021-01-26,Abnormal,3548,425,3,20,,,,DISCHARGED -3549,2023-06-16,18929.74353020977,322,Emergency,,Inconclusive,3549,34,2,29,,,,OPEN -3550,2022-08-30,43981.50118091351,397,Emergency,2022-09-29,Normal,3550,301,2,27,,,,DISCHARGED -3551,2023-01-22,13439.264949183447,188,Elective,2023-02-15,Normal,3551,409,4,29,,,,DISCHARGED -3552,2019-04-09,41807.36790346709,120,Emergency,2019-05-05,Abnormal,3552,498,2,10,,,,DISCHARGED -3553,2020-08-18,14611.617113662098,463,Urgent,2020-08-22,Normal,3553,68,1,21,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -3554,2022-12-03,11478.24721975272,431,Urgent,2022-12-05,Normal,3554,348,0,14,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3555,2021-01-27,25030.24456864383,183,Elective,2021-02-04,Inconclusive,3555,319,0,28,,,,DISCHARGED -3556,2022-12-22,46638.90926530671,243,Urgent,2023-01-12,Abnormal,3556,420,0,24,,,,DISCHARGED -3557,2019-09-12,17021.60895848836,400,Urgent,2019-09-30,Abnormal,3557,467,0,24,,,,DISCHARGED -3558,2021-01-12,16472.8733946559,383,Elective,2021-02-06,Abnormal,3558,48,2,2,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -3559,2023-03-25,12467.091334868228,226,Urgent,2023-04-13,Inconclusive,3559,404,2,29,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -3560,2019-07-05,38813.44871418475,142,Emergency,2019-07-16,Abnormal,3560,73,4,23,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -3561,2022-05-31,26238.375909206112,399,Urgent,2022-06-17,Inconclusive,3561,191,2,12,,,,DISCHARGED -3561,2021-05-15,10865.8979402336,117,Elective,2021-06-07,Normal,8820,260,0,3,,,,DISCHARGED -3562,2021-10-16,11702.51920815186,300,Urgent,2021-10-17,Normal,3562,355,3,22,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3563,2021-12-22,49024.22632757895,366,Emergency,2022-01-19,Normal,3563,69,3,21,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -3564,2021-07-22,16843.434202147546,214,Elective,2021-07-31,Normal,3564,89,1,7,,,,DISCHARGED -3565,2019-12-07,38672.562432232095,448,Urgent,2020-01-02,Inconclusive,3565,259,1,21,,,,DISCHARGED -3566,2019-06-12,26200.652879000478,327,Elective,2019-06-19,Inconclusive,3566,125,2,3,,,,DISCHARGED -3567,2019-01-28,44654.47525364047,476,Elective,2019-02-26,Inconclusive,3567,230,3,17,,,,DISCHARGED -3568,2021-03-20,41244.88823450371,216,Elective,2021-04-03,Inconclusive,3568,294,0,6,,,,DISCHARGED -3569,2020-06-05,27654.52250853423,393,Urgent,2020-06-29,Abnormal,3569,497,0,10,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -3570,2022-01-08,31172.57314163279,206,Elective,2022-01-15,Abnormal,3570,418,0,28,,,,DISCHARGED -3571,2021-02-27,16533.66010441121,395,Elective,2021-03-13,Inconclusive,3571,128,2,26,,,,DISCHARGED -3572,2018-12-06,9754.8346528051,339,Urgent,2018-12-15,Abnormal,3572,279,2,3,,,,DISCHARGED -3573,2021-06-01,31966.842021193883,171,Urgent,2021-06-11,Abnormal,3573,312,4,12,,,,DISCHARGED -3574,2020-05-21,47424.384505529306,106,Emergency,2020-05-25,Abnormal,3574,99,0,8,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3575,2019-07-23,18437.656681041568,177,Emergency,2019-08-14,Abnormal,3575,325,0,8,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3575,2022-08-02,31786.830979384533,289,Emergency,2022-08-06,Abnormal,4981,296,2,22,,,,DISCHARGED -3576,2021-07-07,29029.241237755134,285,Urgent,2021-07-25,Abnormal,3576,181,2,20,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -3577,2019-11-25,5810.421999423628,116,Emergency,2019-12-09,Normal,3577,173,4,18,,,,DISCHARGED -3578,2022-05-16,21610.42198655564,204,Elective,2022-06-09,Inconclusive,3578,315,4,2,"Frequent, watery diarrhea","Assessment for gastrointestinal infections or inflammatory conditions, supportive care, and anti-diarrheal medications.","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -3579,2020-12-31,39954.816368857,325,Elective,2021-01-16,Inconclusive,3579,363,1,24,,,,DISCHARGED -3582,2019-03-15,18151.000540565357,277,Elective,2019-03-27,Inconclusive,3582,187,3,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3582,2019-06-26,48433.8872092603,127,Elective,2019-07-19,Inconclusive,5221,56,0,11,,,,DISCHARGED -3582,2020-08-31,20450.730076552587,413,Elective,2020-09-20,Abnormal,5843,30,0,28,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -3582,2019-06-24,45163.33424177905,313,Elective,2019-06-30,Normal,5883,83,4,10,,,,DISCHARGED -3583,2020-06-19,25351.138805376617,143,Elective,2020-07-11,Normal,3583,151,4,19,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -3584,2020-03-21,10943.537229306772,315,Urgent,2020-04-10,Normal,3584,472,1,10,,,,DISCHARGED -3585,2020-04-12,29767.171907101078,435,Urgent,2020-05-03,Normal,3585,35,3,16,,,,DISCHARGED -3586,2023-05-09,20816.500880877276,467,Emergency,2023-05-23,Abnormal,3586,212,1,28,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3587,2019-03-24,42939.09014040129,160,Elective,2019-04-14,Normal,3587,413,3,25,,,,DISCHARGED -3588,2022-06-12,47751.17216037415,381,Urgent,2022-06-18,Inconclusive,3588,407,0,20,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3589,2022-04-27,45057.40233207381,382,Emergency,2022-05-11,Inconclusive,3589,363,1,13,,,,DISCHARGED -3590,2020-02-26,31080.992541012845,427,Urgent,2020-03-04,Normal,3590,105,4,15,,,,DISCHARGED -3591,2022-08-20,42322.95596482799,480,Elective,2022-09-08,Abnormal,3591,413,1,23,,,,DISCHARGED -3592,2022-09-15,26464.70766579044,240,Emergency,2022-10-04,Abnormal,3592,341,1,9,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -3593,2020-02-06,26954.72378444534,257,Urgent,2020-02-22,Abnormal,3593,219,0,3,,,,DISCHARGED -3594,2021-05-01,48106.17358851362,240,Urgent,2021-05-04,Abnormal,3594,390,4,9,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -3594,2022-05-13,10905.07365742909,214,Emergency,2022-06-07,Inconclusive,6913,162,4,25,,,,DISCHARGED -3595,2019-01-17,37386.1582373208,232,Emergency,2019-01-27,Normal,3595,438,2,19,,,,DISCHARGED -3596,2023-04-02,4306.629039810507,122,Emergency,,Inconclusive,3596,219,2,28,,,,OPEN -3597,2021-03-23,6397.66260157022,454,Elective,2021-03-28,Abnormal,3597,269,2,11,,,,DISCHARGED -3598,2018-12-06,28675.8283254028,428,Emergency,2018-12-24,Inconclusive,3598,119,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -3599,2020-06-17,24502.7322182767,178,Urgent,2020-07-13,Abnormal,3599,393,1,8,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -3600,2020-06-03,13292.984535340844,271,Urgent,2020-06-17,Abnormal,3600,335,4,14,,,,DISCHARGED -3601,2019-12-24,22581.1348260488,428,Emergency,2019-12-26,Inconclusive,3601,399,4,8,,,,DISCHARGED -3602,2020-09-19,21683.89031339856,379,Urgent,2020-10-14,Inconclusive,3602,181,1,6,,,,DISCHARGED -3604,2022-08-27,39385.627287534415,359,Emergency,2022-09-02,Normal,3604,478,4,25,,,,DISCHARGED -3604,2022-04-05,21164.260608267494,209,Urgent,2022-04-29,Normal,8064,105,1,23,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3605,2021-01-02,34170.639978306506,400,Emergency,2021-01-15,Normal,3605,216,0,11,,,,DISCHARGED -3606,2019-08-26,23384.291416228607,425,Emergency,2019-09-02,Abnormal,3606,204,0,27,,,,DISCHARGED -3607,2020-12-15,37237.97587655118,395,Emergency,2021-01-06,Abnormal,3607,69,0,19,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3608,2021-07-08,27334.93648018413,137,Urgent,2021-07-14,Inconclusive,3608,43,1,23,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -3609,2022-07-27,36350.83744328773,309,Urgent,2022-08-05,Abnormal,3609,328,1,13,,,,DISCHARGED -3610,2021-06-01,2877.780596408522,209,Elective,2021-06-09,Normal,3610,300,3,21,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -3610,2021-05-01,5196.805678236538,142,Emergency,2021-05-22,Inconclusive,8172,227,4,15,,,,DISCHARGED -3611,2021-10-14,48485.96340678633,281,Urgent,2021-10-24,Inconclusive,3611,183,4,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -3612,2022-12-29,41474.44307763255,223,Emergency,2022-12-31,Abnormal,3612,106,3,18,,,,DISCHARGED -3613,2021-08-19,8468.747008955077,488,Elective,2021-09-12,Abnormal,3613,83,3,22,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3614,2020-06-04,46585.258245597535,399,Emergency,2020-06-25,Abnormal,3614,337,0,2,,,,DISCHARGED -3615,2021-03-15,44975.82267585032,163,Elective,2021-03-18,Abnormal,3615,249,3,10,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3616,2020-07-18,39978.79724456784,340,Urgent,2020-08-06,Abnormal,3616,362,1,22,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -3618,2019-12-10,30901.09555661645,346,Urgent,2019-12-26,Normal,3618,440,2,20,,,,DISCHARGED -3619,2022-08-24,4635.669269285174,206,Urgent,2022-09-05,Normal,3619,20,1,19,,,,DISCHARGED -3620,2021-03-23,39882.64681703877,226,Emergency,2021-04-10,Inconclusive,3620,195,3,18,,,,DISCHARGED -3621,2021-08-31,6655.465654622017,142,Elective,2021-09-19,Inconclusive,3621,177,4,7,,,,DISCHARGED -3622,2019-08-04,25370.651820923376,448,Urgent,2019-08-24,Abnormal,3622,416,1,19,,,,DISCHARGED -3623,2022-01-20,7464.786260035436,381,Emergency,2022-02-19,Inconclusive,3623,474,4,7,,,,DISCHARGED -3623,2019-12-25,40676.69588495758,436,Urgent,2020-01-19,Abnormal,7430,6,1,25,,,,DISCHARGED -3624,2021-06-04,45504.47563851878,389,Urgent,2021-06-16,Normal,3624,69,4,2,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3625,2020-03-03,14253.111480418904,132,Elective,2020-03-29,Normal,3625,126,1,9,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -3627,2023-09-09,15229.714747678629,452,Elective,,Normal,3627,398,4,12,,,,OPEN -3628,2021-03-09,2696.036119046068,258,Elective,2021-03-14,Inconclusive,3628,465,2,8,,,,DISCHARGED -3629,2020-04-13,26425.002887696883,172,Emergency,2020-05-09,Abnormal,3629,159,0,5,,,,DISCHARGED -3630,2023-02-22,38674.49962150651,213,Urgent,2023-03-23,Abnormal,3630,247,1,14,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -3631,2019-07-28,40064.44455685532,408,Urgent,2019-08-09,Inconclusive,3631,202,2,15,,,,DISCHARGED -3632,2021-04-08,42002.00297038644,120,Elective,2021-04-26,Normal,3632,147,0,4,,,,DISCHARGED -3633,2023-06-10,42964.595890674114,353,Emergency,2023-07-06,Abnormal,3633,471,1,20,,,,DISCHARGED -3634,2019-04-29,9398.58770810248,388,Urgent,2019-05-16,Normal,3634,142,2,12,,,,DISCHARGED -3634,2021-10-04,28643.930677392425,391,Urgent,2021-10-12,Inconclusive,3846,431,2,18,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -3635,2021-05-04,32240.336506516443,134,Urgent,2021-05-20,Inconclusive,3635,198,2,1,,,,DISCHARGED -3636,2020-02-17,5531.909466901662,463,Elective,2020-02-18,Inconclusive,3636,404,3,5,,,,DISCHARGED -3637,2019-07-04,13381.613495107267,153,Urgent,2019-08-03,Normal,3637,425,4,26,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -3637,2019-04-28,40812.91890669756,184,Elective,2019-05-08,Inconclusive,9019,153,0,0,,,,DISCHARGED -3638,2020-09-23,4352.404190201662,401,Emergency,2020-10-17,Inconclusive,3638,491,4,14,,,,DISCHARGED -3639,2019-08-11,35150.24595386399,465,Emergency,2019-09-08,Inconclusive,3639,375,4,14,,,,DISCHARGED -3640,2019-10-16,17819.83777541087,155,Elective,2019-11-05,Abnormal,3640,383,4,13,,,,DISCHARGED -3641,2021-08-12,9395.590260263296,304,Urgent,2021-08-30,Inconclusive,3641,141,2,6,,,,DISCHARGED -3642,2023-07-05,46937.57000594674,370,Urgent,2023-07-10,Abnormal,3642,312,4,4,,,,DISCHARGED -3643,2023-09-22,23591.71924017739,252,Urgent,2023-10-20,Normal,3643,164,3,19,,,,DISCHARGED -3644,2021-07-16,29144.393550358716,372,Elective,2021-07-21,Normal,3644,313,1,24,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -3645,2019-05-18,41451.66478006305,120,Urgent,2019-05-26,Normal,3645,20,2,25,,,,DISCHARGED -3646,2019-09-25,36373.11894420004,467,Urgent,2019-09-30,Normal,3646,81,0,15,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3647,2018-12-15,9406.323686261296,477,Elective,2019-01-09,Inconclusive,3647,68,1,16,,,,DISCHARGED -3648,2019-07-09,5480.758178570149,317,Emergency,2019-08-01,Inconclusive,3648,130,1,10,,,,DISCHARGED -3649,2021-02-23,22995.757564881515,310,Emergency,2021-03-19,Inconclusive,3649,86,1,14,,,,DISCHARGED -3650,2019-12-27,25089.83557550444,258,Urgent,2019-12-28,Inconclusive,3650,217,4,19,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3651,2019-01-24,43736.34065963515,360,Emergency,2019-02-08,Abnormal,3651,420,4,15,,,,DISCHARGED -3652,2019-08-02,40039.25600004329,168,Emergency,2019-08-10,Normal,3652,471,2,2,,,,DISCHARGED -3653,2019-11-25,6387.663608833473,267,Elective,2019-12-17,Inconclusive,3653,304,4,5,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3654,2019-12-06,41919.70806784564,142,Elective,2020-01-03,Inconclusive,3654,402,4,20,,,,DISCHARGED -3655,2023-02-03,31347.129050444884,444,Elective,,Inconclusive,3655,370,4,22,,,,OPEN -3656,2023-08-15,30012.56367775242,266,Urgent,2023-08-20,Abnormal,3656,344,2,12,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -3657,2019-02-23,49269.73366913681,445,Elective,2019-03-03,Inconclusive,3657,340,2,0,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -3658,2021-04-22,8219.293262399719,385,Urgent,2021-05-16,Normal,3658,383,3,28,,,,DISCHARGED -3659,2022-06-14,18557.6677105462,432,Emergency,2022-06-29,Normal,3659,395,3,20,,,,DISCHARGED -3660,2023-02-17,36902.6337952106,358,Urgent,,Inconclusive,3660,444,3,13,,,,OPEN -3661,2021-10-23,20514.57636390076,419,Elective,2021-11-14,Normal,3661,424,3,1,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3662,2021-04-02,13919.318618726771,156,Emergency,2021-04-26,Abnormal,3662,160,1,1,,,,DISCHARGED -3663,2022-06-02,38603.55496230807,447,Emergency,2022-06-09,Abnormal,3663,177,1,26,,,,DISCHARGED -3664,2019-09-05,16903.942433850985,235,Urgent,2019-09-24,Normal,3664,116,3,14,,,,DISCHARGED -3665,2020-05-26,32987.16245169197,252,Emergency,2020-05-28,Normal,3665,195,3,26,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -3666,2023-01-24,40042.31376239035,249,Elective,2023-01-31,Inconclusive,3666,382,0,17,,,,DISCHARGED -3667,2021-07-09,24344.154000241604,470,Emergency,2021-08-08,Normal,3667,489,1,8,,,,DISCHARGED -3668,2022-08-29,7600.312671515739,499,Emergency,2022-09-04,Normal,3668,326,0,25,,,,DISCHARGED -3669,2019-01-24,29233.17368302868,400,Urgent,2019-02-01,Normal,3669,85,0,2,,,,DISCHARGED -3670,2022-10-05,3585.581082815545,489,Urgent,2022-10-15,Abnormal,3670,288,4,3,,,,DISCHARGED -3671,2019-05-19,32639.793950269468,136,Urgent,2019-06-05,Abnormal,3671,80,2,14,,,,DISCHARGED -3672,2022-03-19,12015.298795465156,103,Emergency,2022-04-14,Inconclusive,3672,151,1,4,,,,DISCHARGED -3673,2021-04-27,47332.68930916563,429,Emergency,2021-05-09,Normal,3673,60,3,29,,,,DISCHARGED -3674,2019-08-22,11264.907628983943,445,Emergency,2019-08-30,Normal,3674,60,3,19,,,,DISCHARGED -3675,2021-03-24,42865.4841964693,368,Emergency,2021-04-02,Normal,3675,353,2,19,,,,DISCHARGED -3675,2022-04-05,27910.712959002896,159,Emergency,2022-04-30,Normal,7913,27,1,4,,,,DISCHARGED -3676,2021-02-28,47684.404072998215,423,Elective,2021-03-20,Abnormal,3676,441,3,9,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3677,2019-09-08,2352.4826369607663,427,Emergency,2019-10-01,Normal,3677,42,3,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -3678,2022-06-14,3676.900636894232,319,Urgent,2022-06-20,Inconclusive,3678,168,4,24,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -3679,2021-09-14,20284.00396846153,151,Elective,2021-10-04,Normal,3679,422,0,11,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -3680,2020-05-08,36298.56025786638,412,Elective,2020-05-09,Inconclusive,3680,85,3,24,,,,DISCHARGED -3681,2023-10-15,36077.19710920713,352,Emergency,,Inconclusive,3681,176,1,29,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",OPEN -3682,2021-08-07,13726.94017754931,261,Emergency,2021-08-13,Abnormal,3682,16,2,13,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -3683,2019-02-17,19101.841049086677,307,Elective,2019-03-05,Normal,3683,97,4,21,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -3684,2019-09-14,20273.501201656258,278,Urgent,2019-10-14,Normal,3684,453,1,10,,,,DISCHARGED -3685,2022-09-16,29823.99297084404,277,Urgent,2022-10-06,Abnormal,3685,493,4,27,,,,DISCHARGED -3687,2022-04-04,1364.5716811116522,200,Urgent,2022-04-28,Normal,3687,197,0,29,,,,DISCHARGED -3688,2019-09-22,39407.640546151015,218,Elective,2019-10-13,Abnormal,3688,97,3,18,,,,DISCHARGED -3689,2019-12-05,3247.419389761777,118,Emergency,2019-12-16,Abnormal,3689,64,1,5,,,,DISCHARGED -3690,2020-08-28,26722.714872875986,283,Elective,2020-09-11,Inconclusive,3690,329,2,9,,,,DISCHARGED -3692,2022-01-24,10536.350519619164,167,Elective,2022-02-20,Abnormal,3692,340,0,19,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3693,2019-08-31,18249.705388971248,324,Urgent,2019-09-09,Inconclusive,3693,4,0,2,,,,DISCHARGED -3694,2020-08-19,14469.471240696908,174,Emergency,2020-08-29,Normal,3694,1,4,21,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -3695,2019-07-27,20720.5895982287,440,Emergency,2019-08-10,Inconclusive,3695,21,0,14,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -3696,2018-12-30,37200.57738765615,328,Elective,2019-01-22,Inconclusive,3696,111,1,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -3697,2023-02-01,2118.381299669269,206,Emergency,,Normal,3697,56,4,21,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -3698,2019-11-14,44520.32784556401,380,Emergency,2019-11-15,Normal,3698,65,0,1,,,,DISCHARGED -3699,2023-01-28,8237.045124834967,338,Elective,2023-02-16,Normal,3699,329,2,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -3700,2020-01-29,43819.674146926016,500,Elective,2020-02-02,Normal,3700,97,1,23,,,,DISCHARGED -3701,2021-09-18,24190.989723260704,457,Elective,2021-09-28,Inconclusive,3701,143,2,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -3702,2020-03-08,45620.66848026368,413,Elective,2020-03-24,Abnormal,3702,367,2,16,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3703,2022-04-08,24109.484049974093,326,Elective,2022-04-23,Abnormal,3703,434,4,27,,,,DISCHARGED -3704,2022-04-09,23633.249252123085,406,Urgent,2022-05-06,Abnormal,3704,124,3,17,,,,DISCHARGED -3706,2019-06-05,34186.162772907745,426,Urgent,2019-06-07,Normal,3706,166,4,3,,,,DISCHARGED -3706,2021-10-18,43861.885641574576,273,Urgent,2021-11-07,Normal,7670,85,1,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3707,2019-04-26,13456.890613960884,329,Elective,2019-05-21,Normal,3707,75,1,8,,,,DISCHARGED -3709,2021-10-06,19764.340240436464,457,Elective,2021-10-18,Normal,3709,343,4,9,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -3710,2019-11-27,48388.57212827295,341,Emergency,2019-12-24,Inconclusive,3710,494,3,20,,,,DISCHARGED -3711,2019-10-15,41821.3759585212,436,Emergency,2019-11-06,Inconclusive,3711,423,4,25,,,,DISCHARGED -3712,2019-05-28,37461.06447775906,121,Elective,2019-06-11,Normal,3712,293,1,1,,,,DISCHARGED -3713,2020-03-28,32875.58182712499,194,Emergency,2020-04-02,Inconclusive,3713,443,3,28,,,,DISCHARGED -3714,2019-04-14,9192.346557921228,184,Urgent,2019-05-11,Normal,3714,58,1,10,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -3715,2022-02-10,17485.035584738052,214,Elective,2022-02-18,Normal,3715,137,3,10,,,,DISCHARGED -3716,2021-06-15,7618.214262172099,420,Urgent,2021-06-25,Abnormal,3716,98,3,10,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -3717,2023-03-31,20189.610707746247,216,Emergency,,Abnormal,3717,191,4,0,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",OPEN -3718,2018-11-21,42988.61829370994,362,Elective,2018-12-02,Inconclusive,3718,242,4,25,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -3719,2023-07-31,26094.662876983173,174,Elective,2023-08-19,Inconclusive,3719,318,4,13,,,,DISCHARGED -3720,2020-01-25,48620.87137998923,269,Elective,2020-02-18,Normal,3720,48,3,28,,,,DISCHARGED -3721,2020-12-18,12994.39988524533,126,Emergency,2021-01-16,Normal,3721,447,3,29,,,,DISCHARGED -3722,2021-12-15,24360.072780161485,469,Elective,2021-12-27,Inconclusive,3722,31,1,0,,,,DISCHARGED -3723,2023-07-09,7551.620992670825,296,Urgent,2023-07-19,Inconclusive,3723,390,2,20,,,,DISCHARGED -3724,2021-08-08,27947.61014587241,282,Urgent,2021-09-07,Inconclusive,3724,276,4,29,,,,DISCHARGED -3725,2021-04-10,16486.59371419758,223,Elective,2021-04-24,Normal,3725,19,1,22,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -3728,2020-07-31,34066.56979142001,268,Elective,2020-08-21,Inconclusive,3728,153,1,24,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -3729,2022-02-12,47986.36698510451,139,Urgent,2022-02-15,Abnormal,3729,382,0,8,,,,DISCHARGED -3730,2021-08-31,39765.85762580165,341,Emergency,2021-09-23,Normal,3730,67,4,23,,,,DISCHARGED -3731,2019-05-26,9849.160982146752,186,Emergency,2019-06-14,Normal,3731,365,1,0,,,,DISCHARGED -3732,2021-07-09,40403.42003986442,173,Elective,2021-08-02,Abnormal,3732,371,0,20,,,,DISCHARGED -3733,2020-12-20,2546.932617228155,381,Elective,2021-01-08,Abnormal,3733,213,4,21,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -3734,2019-06-28,17930.74301947572,351,Urgent,2019-07-13,Abnormal,3734,142,3,21,,,,DISCHARGED -3736,2021-03-17,30598.090202147952,297,Emergency,2021-03-18,Inconclusive,3736,375,0,3,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -3737,2019-10-05,31291.05724793579,293,Urgent,2019-10-15,Abnormal,3737,231,3,0,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -3738,2022-05-11,45032.651270918046,238,Emergency,2022-06-01,Inconclusive,3738,212,2,18,,,,DISCHARGED -3739,2019-11-07,10039.270787156658,408,Urgent,2019-11-16,Abnormal,3739,78,2,9,,,,DISCHARGED -3740,2019-07-22,45641.16862808066,487,Urgent,2019-08-07,Inconclusive,3740,213,2,14,,,,DISCHARGED -3741,2021-06-24,38779.47429220685,135,Elective,2021-07-09,Normal,3741,115,2,19,,,,DISCHARGED -3742,2023-07-25,28609.525757792777,473,Elective,2023-08-06,Normal,3742,91,1,3,,,,DISCHARGED -3743,2022-09-21,28685.286106351337,332,Emergency,2022-10-11,Abnormal,3743,269,2,28,,,,DISCHARGED -3744,2022-01-04,13729.78334595889,164,Emergency,2022-02-03,Abnormal,3744,410,1,19,,,,DISCHARGED -3745,2023-07-21,11029.20457269175,289,Urgent,2023-07-23,Abnormal,3745,380,1,13,,,,DISCHARGED -3746,2023-03-30,19987.389381447418,295,Emergency,2023-04-22,Normal,3746,488,4,4,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -3747,2023-04-11,43076.57638376048,486,Elective,,Normal,3747,167,1,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,OPEN -3748,2021-06-07,11950.514468022331,254,Emergency,2021-07-03,Inconclusive,3748,57,1,14,,,,DISCHARGED -3749,2023-02-16,3648.805225942074,221,Elective,2023-03-13,Normal,3749,283,2,14,,,,DISCHARGED -3750,2021-03-11,19545.43598263267,226,Urgent,2021-03-23,Normal,3750,25,1,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -3751,2022-10-25,2883.139293946161,341,Emergency,2022-11-15,Abnormal,3751,368,3,24,,,,DISCHARGED -3752,2020-02-15,43190.82672278742,372,Urgent,2020-03-06,Abnormal,3752,446,2,15,,,,DISCHARGED -3752,2021-02-24,33332.57038511126,174,Emergency,2021-03-18,Abnormal,6670,65,0,15,,,,DISCHARGED -3754,2022-07-04,14451.502055847855,424,Elective,2022-07-20,Normal,3754,408,2,3,,,,DISCHARGED -3755,2020-06-02,30625.696879389976,269,Urgent,2020-06-28,Inconclusive,3755,247,1,24,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -3756,2021-06-08,13270.054338771151,187,Urgent,2021-07-07,Abnormal,3756,253,3,8,,,,DISCHARGED -3757,2022-11-22,4015.9983328764247,110,Emergency,2022-12-13,Normal,3757,386,2,0,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -3758,2022-08-12,46207.52890671006,401,Elective,2022-08-26,Inconclusive,3758,455,3,4,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3759,2021-07-21,20064.97994975416,279,Elective,2021-08-14,Abnormal,3759,43,0,8,,,,DISCHARGED -3760,2019-08-29,36029.194506450105,280,Elective,2019-08-31,Abnormal,3760,96,0,19,,,,DISCHARGED -3761,2021-02-28,17681.28905928407,411,Urgent,2021-03-02,Normal,3761,41,4,4,,,,DISCHARGED -3762,2019-09-09,18521.023687414927,318,Emergency,2019-09-19,Abnormal,3762,499,4,3,,,,DISCHARGED -3763,2021-04-07,32760.415635628426,156,Elective,2021-05-01,Abnormal,3763,226,2,28,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -3764,2021-12-28,33493.280093722366,316,Urgent,2022-01-22,Inconclusive,3764,261,4,15,,,,DISCHARGED -3765,2020-05-31,26876.23582038916,142,Emergency,2020-06-06,Inconclusive,3765,166,3,1,,,,DISCHARGED -3766,2019-06-05,7359.4980384759965,384,Elective,2019-06-16,Abnormal,3766,435,4,25,,,,DISCHARGED -3767,2018-11-05,27338.71694132319,479,Emergency,2018-11-17,Abnormal,3767,278,3,15,,,,DISCHARGED -3768,2021-03-10,29405.133882222635,316,Emergency,2021-03-23,Abnormal,3768,88,4,17,,,,DISCHARGED -3769,2020-11-11,1443.2385392245096,198,Elective,2020-11-17,Inconclusive,3769,378,4,1,,,,DISCHARGED -3770,2021-10-04,1582.646636467121,149,Urgent,2021-10-29,Inconclusive,3770,177,4,15,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -3771,2021-08-15,31110.7441071293,220,Urgent,2021-08-28,Inconclusive,3771,426,1,28,,,,DISCHARGED -3772,2019-07-18,29279.01250687594,399,Elective,2019-07-25,Abnormal,3772,402,1,0,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -3774,2021-07-29,30771.525024828767,468,Emergency,2021-08-26,Inconclusive,3774,196,4,15,,,,DISCHARGED -3775,2021-01-22,4391.112816775143,490,Emergency,2021-02-11,Abnormal,3775,306,3,2,,,,DISCHARGED -3776,2021-11-09,12557.45767860984,184,Urgent,2021-11-27,Abnormal,3776,266,2,14,,,,DISCHARGED -3777,2021-09-10,30764.87769385657,301,Urgent,2021-09-23,Inconclusive,3777,267,0,29,,,,DISCHARGED -3778,2022-05-19,37728.5103548652,195,Elective,2022-06-12,Normal,3778,73,1,10,,,,DISCHARGED -3779,2021-09-11,11989.52689952245,332,Elective,2021-10-06,Normal,3779,7,4,9,,,,DISCHARGED -3780,2022-03-26,37037.09203725311,473,Urgent,2022-04-20,Normal,3780,407,0,16,,,,DISCHARGED -3781,2021-01-04,40519.76355665847,439,Elective,2021-01-29,Inconclusive,3781,475,1,3,,,,DISCHARGED -3783,2021-05-11,32335.756396716923,281,Emergency,2021-05-27,Abnormal,3783,296,2,16,,,,DISCHARGED -3783,2021-05-03,48176.45015169483,231,Emergency,2021-05-20,Normal,5603,163,3,3,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -3784,2020-06-12,24271.006037696457,276,Emergency,2020-06-27,Normal,3784,484,4,18,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -3785,2019-05-26,45696.46066901234,229,Elective,2019-06-16,Abnormal,3785,84,2,24,,,,DISCHARGED -3786,2022-11-19,17640.46252248001,186,Urgent,2022-12-19,Inconclusive,3786,71,1,0,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3787,2019-03-27,42090.003019604446,123,Emergency,2019-04-03,Abnormal,3787,54,4,13,,,,DISCHARGED -3788,2020-08-31,19157.25147990573,456,Emergency,2020-09-08,Normal,3788,392,0,23,,,,DISCHARGED -3789,2021-09-30,39606.49750413241,410,Emergency,2021-10-29,Normal,3789,46,3,10,,,,DISCHARGED -3790,2020-06-26,17341.405257150178,154,Elective,2020-07-14,Normal,3790,398,1,24,,,,DISCHARGED -3791,2019-02-21,29117.225716495417,458,Elective,2019-03-08,Normal,3791,431,3,27,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -3792,2021-07-26,19434.23320910334,332,Emergency,2021-08-08,Abnormal,3792,237,4,6,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3793,2021-10-06,34445.9279143732,289,Emergency,2021-10-13,Inconclusive,3793,103,2,16,,,,DISCHARGED -3793,2023-07-07,37343.45840925794,299,Urgent,2023-07-19,Inconclusive,7187,209,3,3,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -3794,2021-12-17,34320.124884804536,381,Urgent,2022-01-13,Inconclusive,3794,41,0,9,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -3794,2020-02-16,40461.419915621766,346,Urgent,2020-02-24,Abnormal,7324,315,1,16,,,,DISCHARGED -3795,2019-09-13,36778.05910739757,115,Elective,2019-09-18,Inconclusive,3795,467,0,3,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -3796,2019-03-12,24744.46648116006,119,Urgent,2019-03-23,Inconclusive,3796,453,3,18,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -3797,2020-01-06,31400.00736467841,280,Elective,2020-01-28,Abnormal,3797,267,2,17,,,,DISCHARGED -3798,2022-02-17,3586.0660086947446,119,Elective,2022-03-03,Inconclusive,3798,385,2,16,,,,DISCHARGED -3799,2018-12-25,23250.103519663804,355,Emergency,2018-12-30,Abnormal,3799,262,0,5,,,,DISCHARGED -3800,2022-01-27,46771.38930461338,337,Elective,2022-02-08,Inconclusive,3800,335,4,27,,,,DISCHARGED -3801,2019-09-23,35881.34631982985,115,Emergency,2019-10-05,Abnormal,3801,386,4,6,,,,DISCHARGED -3802,2021-06-05,12242.10650075162,368,Elective,2021-06-16,Abnormal,3802,364,2,5,,,,DISCHARGED -3803,2019-09-03,30434.517428940737,380,Elective,2019-10-03,Normal,3803,258,0,24,,,,DISCHARGED -3804,2021-02-01,35023.37598373739,393,Emergency,2021-02-08,Normal,3804,282,0,11,,,,DISCHARGED -3805,2019-05-03,32034.29704627976,211,Elective,2019-05-27,Abnormal,3805,113,0,8,,,,DISCHARGED -3806,2020-05-13,2949.166173937724,339,Urgent,2020-05-24,Inconclusive,3806,362,3,17,,,,DISCHARGED -3807,2019-09-14,32510.06595042784,263,Elective,2019-10-10,Normal,3807,39,4,1,,,,DISCHARGED -3808,2019-01-23,41577.16528605794,197,Urgent,2019-02-12,Inconclusive,3808,485,4,24,,,,DISCHARGED -3809,2022-11-27,34196.512641192494,399,Emergency,2022-12-01,Inconclusive,3809,416,3,16,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3810,2020-11-28,44770.31633837437,357,Emergency,2020-12-02,Abnormal,3810,219,1,20,,,,DISCHARGED -3811,2021-06-26,30832.841350529477,145,Elective,2021-07-07,Inconclusive,3811,128,3,0,,,,DISCHARGED -3812,2020-05-30,27847.14467180365,119,Emergency,2020-06-05,Abnormal,3812,7,0,22,,,,DISCHARGED -3813,2022-09-25,42210.12831584641,289,Urgent,2022-10-21,Normal,3813,100,3,8,,,,DISCHARGED -3814,2022-06-04,23911.048795803003,185,Emergency,2022-06-07,Normal,3814,415,0,5,,,,DISCHARGED -3815,2023-01-04,7872.13733520285,207,Elective,,Abnormal,3815,379,2,29,,,,OPEN -3816,2019-10-01,20738.33653120527,192,Emergency,2019-10-12,Inconclusive,3816,175,0,1,,,,DISCHARGED -3818,2022-06-23,18933.83020252073,412,Emergency,2022-07-14,Normal,3818,106,4,5,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -3819,2022-09-02,2470.51101845269,390,Emergency,2022-09-11,Inconclusive,3819,100,3,8,,,,DISCHARGED -3820,2023-10-28,42183.6638644879,482,Urgent,,Inconclusive,3820,259,0,2,,,,OPEN -3821,2022-03-01,19428.56091892978,163,Elective,2022-03-08,Inconclusive,3821,477,1,15,,,,DISCHARGED -3822,2023-02-10,26911.52130540193,271,Emergency,2023-03-10,Normal,3822,453,2,24,,,,DISCHARGED -3823,2021-12-11,16286.162383424242,145,Elective,2022-01-06,Normal,3823,365,1,23,,,,DISCHARGED -3824,2020-01-14,23605.84871063761,296,Urgent,2020-01-31,Normal,3824,245,1,14,,,,DISCHARGED -3824,2021-04-08,41423.10765100516,466,Emergency,2021-05-03,Normal,7371,274,1,28,,,,DISCHARGED -3825,2020-09-08,41495.97114396475,358,Emergency,2020-09-11,Inconclusive,3825,31,2,11,,,,DISCHARGED -3826,2021-05-19,47658.04612178131,238,Emergency,2021-06-11,Inconclusive,3826,136,2,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -3827,2023-03-10,20510.58310956463,397,Elective,2023-03-30,Abnormal,3827,11,2,7,,,,DISCHARGED -3828,2020-04-16,2656.778684233969,167,Urgent,2020-04-21,Normal,3828,394,2,25,,,,DISCHARGED -3829,2021-12-03,19365.24368621488,367,Emergency,2021-12-21,Inconclusive,3829,301,1,5,,,,DISCHARGED -3830,2019-02-21,41041.84884139222,432,Emergency,2019-02-25,Abnormal,3830,374,4,2,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -3831,2022-10-16,48642.77474602781,319,Urgent,2022-10-31,Inconclusive,3831,15,4,22,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -3832,2023-07-24,45316.81843052264,230,Elective,2023-08-22,Abnormal,3832,128,2,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -3833,2023-07-03,8514.766709092019,455,Emergency,2023-07-28,Abnormal,3833,62,3,26,,,,DISCHARGED -3834,2023-05-25,25048.930069642534,271,Elective,2023-05-28,Inconclusive,3834,108,0,9,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -3835,2020-08-20,13481.72373755531,452,Elective,2020-08-28,Abnormal,3835,374,3,13,,,,DISCHARGED -3836,2020-06-27,12323.67397719975,267,Urgent,2020-07-09,Abnormal,3836,20,3,20,,,,DISCHARGED -3837,2021-07-31,47557.24329848317,455,Elective,2021-08-04,Inconclusive,3837,157,3,23,,,,DISCHARGED -3838,2023-04-30,42343.40934392996,378,Emergency,2023-05-26,Normal,3838,268,4,14,,,,DISCHARGED -3839,2019-09-09,24384.258244676992,332,Elective,2019-09-11,Abnormal,3839,161,0,6,,,,DISCHARGED -3840,2022-03-08,17499.031216129893,230,Urgent,2022-03-22,Abnormal,3840,259,3,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -3841,2023-04-05,18375.03080246838,175,Elective,2023-04-08,Abnormal,3841,411,2,7,,,,DISCHARGED -3842,2022-11-03,33529.966100828,172,Elective,2022-11-20,Abnormal,3842,101,4,9,,,,DISCHARGED -3843,2020-04-26,49614.102577248654,159,Elective,2020-05-23,Abnormal,3843,222,2,18,,,,DISCHARGED -3844,2023-03-04,27226.03442573905,194,Urgent,2023-03-05,Inconclusive,3844,58,2,18,,,,DISCHARGED -3845,2019-10-07,42866.05731102149,414,Emergency,2019-11-02,Abnormal,3845,246,3,1,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -3847,2021-10-14,17788.830863157677,151,Emergency,2021-11-01,Inconclusive,3847,127,2,14,,,,DISCHARGED -3848,2023-10-17,2785.6951543200403,319,Emergency,2023-11-11,Normal,3848,282,0,0,,,,DISCHARGED -3848,2022-08-21,42765.92579730368,190,Emergency,2022-09-06,Inconclusive,8538,324,2,9,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -3848,2019-08-10,9100.369929764409,358,Elective,2019-08-18,Normal,8942,24,3,5,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",DISCHARGED -3849,2023-05-25,8628.143559606928,342,Urgent,2023-06-11,Inconclusive,3849,130,2,21,,,,DISCHARGED -3850,2020-05-24,35979.679725886126,416,Elective,2020-06-10,Abnormal,3850,352,4,12,,,,DISCHARGED -3851,2021-09-05,34936.95850435869,381,Emergency,2021-09-28,Abnormal,3851,195,4,9,,,,DISCHARGED -3852,2022-01-17,19319.40761289952,132,Elective,2022-01-22,Abnormal,3852,280,4,11,,,,DISCHARGED -3853,2018-11-14,29101.685021880672,377,Emergency,2018-11-26,Normal,3853,403,1,23,,,,DISCHARGED -3854,2022-06-04,18057.88879497113,284,Urgent,2022-06-08,Normal,3854,417,4,29,,,,DISCHARGED -3854,2020-05-08,25213.05845341943,313,Elective,2020-05-20,Inconclusive,6636,153,4,5,,,,DISCHARGED -3855,2022-09-14,3296.148245456768,110,Urgent,2022-09-24,Abnormal,3855,381,1,5,,,,DISCHARGED -3856,2023-07-02,26158.336217848813,425,Elective,,Normal,3856,132,4,0,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",OPEN -3857,2020-12-07,28463.74647710118,342,Emergency,2020-12-08,Normal,3857,226,3,11,,,,DISCHARGED -3858,2022-03-03,40459.06481552834,251,Emergency,2022-03-16,Inconclusive,3858,188,4,22,,,,DISCHARGED -3859,2020-06-23,41009.649545467306,103,Elective,2020-07-15,Abnormal,3859,475,4,22,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -3860,2021-12-24,42734.6695732195,179,Elective,2022-01-04,Inconclusive,3860,476,1,9,,,,DISCHARGED -3861,2023-08-10,46990.22262081697,472,Elective,,Abnormal,3861,264,3,24,,,,OPEN -3862,2019-01-10,33165.530515743245,214,Emergency,2019-01-18,Inconclusive,3862,371,2,13,,,,DISCHARGED -3863,2020-01-22,33115.52334657452,224,Urgent,2020-01-24,Abnormal,3863,485,0,14,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -3864,2021-03-10,29131.68791184076,343,Urgent,2021-03-25,Abnormal,3864,433,3,27,,,,DISCHARGED -3865,2020-10-04,31113.976983774814,480,Elective,2020-10-06,Normal,3865,133,2,22,Irregular menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances. Regular monitoring of menstrual cycles and hormonal levels to assess treatment efficacy.",N95.0 - Postmenopausal bleeding,DISCHARGED -3867,2021-07-05,2060.5697049083537,266,Elective,2021-07-09,Abnormal,3867,210,3,23,,,,DISCHARGED -3868,2022-09-16,1953.4352258480728,395,Elective,2022-09-26,Normal,3868,59,2,3,,,,DISCHARGED -3869,2018-12-24,16225.101066585195,247,Urgent,2019-01-13,Normal,3869,427,2,24,,,,DISCHARGED -3870,2020-07-31,47886.1686090532,442,Emergency,2020-08-28,Inconclusive,3870,376,3,29,,,,DISCHARGED -3871,2021-02-25,10719.81835782693,128,Urgent,2021-03-12,Abnormal,3871,394,1,0,,,,DISCHARGED -3872,2021-02-17,5969.409197997437,324,Urgent,2021-02-27,Inconclusive,3872,449,3,7,,,,DISCHARGED -3873,2022-06-14,48521.18885872096,137,Emergency,2022-06-21,Normal,3873,430,3,2,,,,DISCHARGED -3874,2023-07-06,9053.578891464997,283,Emergency,2023-07-17,Inconclusive,3874,363,2,13,,,,DISCHARGED -3875,2020-06-24,23000.698126196985,225,Elective,2020-06-30,Normal,3875,363,0,16,,,,DISCHARGED -3876,2022-02-21,45763.56584901265,417,Urgent,2022-02-27,Inconclusive,3876,456,2,1,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -3877,2021-09-05,3975.289322624032,444,Emergency,2021-10-04,Abnormal,3877,212,4,14,,,,DISCHARGED -3878,2019-09-05,33453.73402484878,244,Emergency,2019-09-15,Inconclusive,3878,215,3,5,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -3879,2023-04-16,36102.38687809192,178,Elective,2023-04-19,Abnormal,3879,225,3,4,,,,DISCHARGED -3880,2021-04-10,16027.801413802095,230,Urgent,2021-04-14,Normal,3880,469,1,13,,,,DISCHARGED -3881,2020-11-02,16862.783661251284,455,Urgent,2020-11-12,Inconclusive,3881,130,2,18,,,,DISCHARGED -3883,2019-09-17,7338.191705441037,409,Urgent,2019-10-07,Abnormal,3883,75,1,8,,,,DISCHARGED -3884,2019-02-01,22297.61619329017,412,Elective,2019-02-24,Normal,3884,475,3,7,,,,DISCHARGED -3885,2021-09-04,41484.95102317372,294,Urgent,2021-09-19,Normal,3885,285,2,28,,,,DISCHARGED -3885,2022-09-16,41574.91651255788,449,Emergency,2022-09-20,Inconclusive,7538,473,2,2,,,,DISCHARGED -3885,2021-07-16,34547.08330500104,291,Urgent,2021-08-09,Abnormal,9377,495,4,17,,,,DISCHARGED -3886,2020-11-07,16822.46724129276,455,Emergency,2020-11-17,Abnormal,3886,276,4,7,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -3887,2020-01-05,31622.310763011203,481,Elective,2020-01-24,Abnormal,3887,155,0,15,,,,DISCHARGED -3888,2023-04-04,5762.325282999796,416,Elective,2023-04-25,Inconclusive,3888,247,4,29,,,,DISCHARGED -3889,2022-12-24,28077.12145305293,188,Urgent,2023-01-13,Inconclusive,3889,217,2,14,,,,DISCHARGED -3890,2021-06-14,25257.30991148984,128,Urgent,2021-06-19,Abnormal,3890,189,4,20,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -3891,2019-06-06,47385.322965355095,228,Urgent,2019-06-17,Normal,3891,416,0,14,,,,DISCHARGED -3892,2019-08-20,16320.884790906048,280,Elective,2019-08-29,Inconclusive,3892,468,3,15,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -3893,2022-09-21,45863.75604600143,173,Emergency,2022-10-08,Inconclusive,3893,162,4,24,,,,DISCHARGED -3894,2021-03-16,37749.471513937046,331,Urgent,2021-03-28,Abnormal,3894,179,2,0,,,,DISCHARGED -3895,2019-02-07,11022.559727378686,426,Elective,2019-03-09,Abnormal,3895,33,3,9,,,,DISCHARGED -3896,2022-07-08,12152.146932430454,358,Emergency,2022-07-09,Normal,3896,40,2,18,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -3897,2021-01-16,38950.91725817293,178,Emergency,2021-02-12,Inconclusive,3897,306,3,4,,,,DISCHARGED -3898,2019-08-17,47949.87225993205,283,Emergency,2019-08-28,Normal,3898,430,2,17,,,,DISCHARGED -3898,2021-07-19,48896.33851533526,307,Elective,2021-07-24,Normal,5589,337,4,2,,,,DISCHARGED -3899,2020-07-23,38367.37068285416,296,Elective,2020-08-18,Inconclusive,3899,313,4,3,,,,DISCHARGED -3900,2022-04-05,28856.342554984614,376,Elective,2022-04-13,Inconclusive,3900,74,0,3,,,,DISCHARGED -3901,2021-04-24,46246.54888675951,265,Elective,2021-05-14,Abnormal,3901,440,3,10,,,,DISCHARGED -3902,2021-09-05,19613.175375617677,126,Urgent,2021-09-07,Normal,3902,278,0,8,,,,DISCHARGED -3903,2020-12-19,10498.185708038814,198,Urgent,2021-01-10,Abnormal,3903,175,1,0,,,,DISCHARGED -3905,2021-12-16,49424.27606338589,257,Emergency,2022-01-03,Normal,3905,383,4,27,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3906,2022-07-24,40691.44930979552,301,Emergency,2022-08-03,Abnormal,3906,149,3,24,,,,DISCHARGED -3907,2022-01-11,40662.870750776594,171,Urgent,2022-02-03,Abnormal,3907,272,0,15,,,,DISCHARGED -3908,2022-11-16,24441.31222258786,190,Emergency,2022-11-25,Abnormal,3908,324,0,8,,,,DISCHARGED -3909,2020-07-04,2812.9371336123704,451,Urgent,2020-07-18,Normal,3909,107,1,10,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -3910,2020-09-16,48581.32765762233,298,Elective,2020-09-27,Normal,3910,138,0,5,,,,DISCHARGED -3911,2023-06-17,43012.321931867766,196,Emergency,2023-07-11,Normal,3911,349,2,26,,,,DISCHARGED -3912,2019-08-11,34927.292262715266,400,Emergency,2019-08-26,Normal,3912,270,4,16,,,,DISCHARGED -3913,2021-11-06,25205.90275882803,225,Elective,2021-11-29,Normal,3913,346,0,26,,,,DISCHARGED -3914,2018-11-17,44218.85259201622,360,Emergency,2018-11-26,Normal,3914,418,0,28,,,,DISCHARGED -3915,2021-05-01,37230.96337400267,461,Urgent,2021-05-19,Inconclusive,3915,288,1,11,,,,DISCHARGED -3916,2022-05-11,14604.734731105513,158,Emergency,2022-05-17,Inconclusive,3916,211,2,21,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -3917,2023-05-26,20713.6089265693,229,Urgent,2023-06-22,Normal,3917,380,0,7,,,,DISCHARGED -3918,2020-11-29,16471.421879970505,247,Urgent,2020-12-06,Normal,3918,271,4,15,,,,DISCHARGED -3919,2021-03-08,20854.947763964446,188,Emergency,2021-03-12,Abnormal,3919,417,4,4,,,,DISCHARGED -3920,2023-09-11,16607.916771683027,334,Urgent,2023-09-25,Abnormal,3920,65,0,20,,,,DISCHARGED -3920,2020-02-29,37070.95171970333,240,Emergency,2020-03-24,Normal,4575,482,2,0,,,,DISCHARGED -3921,2021-09-11,10987.393642437022,230,Emergency,2021-10-07,Abnormal,3921,423,4,16,,,,DISCHARGED -3922,2023-04-18,13904.256189617916,231,Emergency,2023-04-25,Inconclusive,3922,247,4,23,,,,DISCHARGED -3923,2022-07-09,41692.765692667526,116,Emergency,2022-07-29,Normal,3923,155,2,28,,,,DISCHARGED -3924,2020-03-22,25629.26656235793,470,Urgent,2020-04-02,Normal,3924,46,2,20,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -3925,2019-10-06,42342.61365184021,102,Urgent,2019-10-16,Abnormal,3925,422,0,7,,,,DISCHARGED -3926,2021-02-22,26274.55996553366,146,Urgent,2021-03-07,Normal,3926,453,3,9,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -3927,2019-11-03,35930.4049082831,164,Urgent,2019-12-01,Inconclusive,3927,200,1,17,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -3928,2018-11-09,15868.935575970592,371,Elective,2018-11-22,Abnormal,3928,147,3,14,,,,DISCHARGED -3929,2021-05-31,3123.5975787042385,110,Emergency,2021-06-01,Normal,3929,123,3,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -3930,2020-09-07,9458.371255314618,201,Emergency,2020-09-12,Normal,3930,0,4,12,,,,DISCHARGED -3931,2023-04-22,4898.573239908914,454,Elective,,Normal,3931,455,2,26,,,,OPEN -3932,2023-05-09,24864.15380923731,287,Emergency,2023-05-25,Abnormal,3932,246,4,29,,,,DISCHARGED -3933,2021-07-07,8880.922382263609,196,Emergency,2021-07-27,Abnormal,3933,342,1,9,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -3934,2022-10-18,7886.421979673938,358,Urgent,2022-10-27,Normal,3934,127,0,8,,,,DISCHARGED -3935,2023-06-14,34064.7398130964,399,Urgent,2023-07-07,Normal,3935,190,1,12,,,,DISCHARGED -3936,2020-09-24,38512.410603371536,296,Urgent,2020-10-02,Inconclusive,3936,66,4,2,,,,DISCHARGED -3937,2022-01-13,24972.559178678657,215,Emergency,2022-02-09,Normal,3937,3,4,21,,,,DISCHARGED -3938,2022-07-01,17322.72371013842,179,Urgent,2022-07-27,Normal,3938,441,4,26,Pain or discomfort in the ribs,"Evaluation by a physician, imaging studies, and pain management","M54.9 - Dorsalgia, unspecified",DISCHARGED -3939,2022-04-20,33118.04473716077,133,Urgent,2022-05-09,Inconclusive,3939,408,4,22,Persistent hip pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -3940,2022-10-01,27654.432430874196,103,Elective,2022-10-12,Normal,3940,302,3,2,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3941,2021-11-27,4923.217315082435,473,Urgent,2021-12-09,Inconclusive,3941,293,0,0,,,,DISCHARGED -3942,2019-12-20,25521.45012697777,111,Elective,2019-12-26,Abnormal,3942,142,3,1,,,,DISCHARGED -3942,2022-10-22,40924.39213939114,142,Elective,2022-11-16,Abnormal,9294,190,4,10,,,,DISCHARGED -3943,2022-10-11,38096.41083445257,148,Emergency,2022-10-28,Normal,3943,20,2,13,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -3943,2020-01-05,26108.379155993392,130,Elective,2020-01-11,Normal,6108,226,3,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -3943,2019-03-20,37366.26162436063,434,Urgent,2019-04-05,Normal,8952,312,4,6,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -3944,2019-12-07,18417.029590283502,244,Elective,2019-12-21,Inconclusive,3944,116,4,22,,,,DISCHARGED -3944,2020-05-10,21621.86107192283,105,Urgent,2020-06-03,Normal,4783,436,0,27,,,,DISCHARGED -3945,2019-10-17,23985.737303950205,272,Elective,2019-11-15,Inconclusive,3945,301,1,0,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -3946,2022-09-09,45229.44408146091,112,Emergency,2022-09-24,Inconclusive,3946,499,3,25,,,,DISCHARGED -3947,2020-10-12,24672.040279688063,335,Elective,2020-10-21,Inconclusive,3947,141,3,6,,,,DISCHARGED -3948,2023-05-06,9695.250708617095,344,Elective,2023-05-22,Normal,3948,483,3,14,,,,DISCHARGED -3949,2018-11-06,33515.25914114255,420,Emergency,2018-11-17,Normal,3949,459,4,25,,,,DISCHARGED -3950,2021-11-07,9078.333262934184,273,Emergency,2021-11-13,Inconclusive,3950,400,0,10,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -3951,2020-08-20,48580.4746802228,224,Emergency,2020-09-07,Inconclusive,3951,38,4,5,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -3952,2023-04-23,37778.66596853734,343,Emergency,,Abnormal,3952,392,4,26,,,,OPEN -3953,2021-05-26,7144.127417872438,138,Urgent,2021-06-15,Abnormal,3953,354,2,21,,,,DISCHARGED -3954,2019-08-14,12519.272605837436,488,Emergency,2019-09-05,Inconclusive,3954,251,0,6,,,,DISCHARGED -3955,2022-09-19,33332.135010162885,137,Emergency,2022-10-14,Normal,3955,332,3,6,,,,DISCHARGED -3956,2020-05-06,12644.305637054504,296,Elective,2020-06-05,Inconclusive,3956,206,1,0,,,,DISCHARGED -3957,2023-07-26,44684.55787544052,207,Urgent,2023-08-02,Abnormal,3957,209,3,9,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -3958,2022-11-27,35361.25890753226,259,Emergency,2022-12-09,Normal,3958,114,4,20,,,,DISCHARGED -3959,2021-02-04,41672.53599427157,416,Elective,2021-02-15,Inconclusive,3959,224,0,14,,,,DISCHARGED -3960,2021-08-03,1991.4269568056736,357,Urgent,2021-08-25,Normal,3960,133,0,29,,,,DISCHARGED -3961,2020-06-30,17969.189515420894,284,Urgent,2020-07-30,Inconclusive,3961,250,0,29,,,,DISCHARGED -3961,2018-11-14,29891.60304369176,133,Emergency,2018-12-01,Abnormal,7785,218,2,7,,,,DISCHARGED -3962,2020-07-21,5413.134696851237,102,Emergency,2020-08-03,Inconclusive,3962,406,3,23,,,,DISCHARGED -3962,2020-02-21,19911.42557495919,328,Emergency,2020-02-23,Inconclusive,9611,442,2,18,,,,DISCHARGED -3963,2021-01-04,30201.931133778864,333,Urgent,2021-01-14,Abnormal,3963,90,1,2,,,,DISCHARGED -3964,2021-09-09,23928.441096353883,314,Elective,2021-09-25,Inconclusive,3964,353,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -3965,2022-05-10,18051.707230751606,370,Urgent,2022-05-17,Inconclusive,3965,375,2,14,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -3966,2020-04-12,32554.534309900697,170,Emergency,2020-04-25,Inconclusive,3966,45,2,3,,,,DISCHARGED -3967,2021-09-15,29105.91528606373,141,Emergency,2021-10-01,Normal,3967,37,4,5,,,,DISCHARGED -3968,2022-10-20,47263.46953850678,111,Emergency,2022-11-10,Inconclusive,3968,141,0,24,,,,DISCHARGED -3969,2021-01-09,7512.029457322245,331,Emergency,2021-01-15,Abnormal,3969,99,4,9,,,,DISCHARGED -3970,2020-09-05,7771.840103114891,135,Emergency,2020-09-06,Abnormal,3970,327,3,17,,,,DISCHARGED -3971,2019-12-16,18140.723328276483,417,Elective,2019-12-26,Abnormal,3971,189,4,15,,,,DISCHARGED -3972,2022-10-04,21694.207782507357,139,Elective,2022-10-12,Abnormal,3972,34,0,17,,,,DISCHARGED -3973,2023-01-01,20753.005717656008,189,Urgent,2023-01-25,Abnormal,3973,146,4,5,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -3974,2023-09-20,41130.34042727387,212,Urgent,,Inconclusive,3974,29,2,18,,,,OPEN -3975,2023-08-18,48860.7183867527,472,Emergency,,Normal,3975,333,1,16,,,,OPEN -3976,2020-11-19,18608.673624256196,488,Elective,2020-12-02,Normal,3976,83,2,17,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -3976,2019-05-17,30381.033311219573,300,Elective,2019-05-30,Abnormal,8305,368,1,29,,,,DISCHARGED -3977,2020-01-30,40964.695314443285,316,Elective,2020-02-04,Inconclusive,3977,280,4,12,,,,DISCHARGED -3978,2020-12-17,6556.955215421849,154,Urgent,2021-01-15,Abnormal,3978,423,3,6,,,,DISCHARGED -3979,2020-04-19,7636.3299607928675,443,Emergency,2020-04-23,Normal,3979,343,4,19,,,,DISCHARGED -3980,2021-06-16,14947.12417803082,155,Urgent,2021-06-18,Normal,3980,269,0,11,,,,DISCHARGED -3981,2019-01-19,18042.64116237524,293,Elective,2019-02-08,Abnormal,3981,153,4,1,,,,DISCHARGED -3982,2020-10-04,48299.50046438851,388,Urgent,2020-10-13,Normal,3982,101,1,26,,,,DISCHARGED -3983,2021-03-10,47254.47584945281,310,Elective,2021-03-15,Abnormal,3983,214,2,11,,,,DISCHARGED -3984,2020-03-31,5017.569822536991,351,Urgent,2020-04-16,Abnormal,3984,149,3,11,,,,DISCHARGED -3984,2020-08-21,34963.99295073078,162,Emergency,2020-08-31,Normal,4800,431,4,23,,,,DISCHARGED -3985,2022-06-10,17433.181940432543,467,Elective,2022-06-20,Abnormal,3985,82,4,3,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -3986,2022-05-17,34511.355377776534,176,Elective,2022-05-20,Normal,3986,109,2,3,,,,DISCHARGED -3987,2020-04-04,8200.83480217131,184,Emergency,2020-04-18,Abnormal,3987,434,3,17,,,,DISCHARGED -3988,2021-06-05,19924.38066917568,495,Elective,2021-06-16,Abnormal,3988,386,4,15,,,,DISCHARGED -3989,2021-03-01,49812.58754352534,297,Urgent,2021-03-06,Normal,3989,425,4,13,,,,DISCHARGED -3990,2019-06-16,23444.59945535656,119,Urgent,2019-06-24,Inconclusive,3990,274,1,16,,,,DISCHARGED -3991,2020-04-19,12067.769777771766,271,Elective,2020-05-05,Abnormal,3991,200,1,16,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -3992,2020-12-18,44827.12636240335,437,Urgent,2021-01-04,Normal,3992,283,0,2,,,,DISCHARGED -3993,2020-02-17,39754.20605040342,499,Emergency,2020-03-13,Abnormal,3993,467,2,5,,,,DISCHARGED -3994,2020-01-09,14520.267900345236,137,Elective,2020-02-02,Inconclusive,3994,172,3,22,,,,DISCHARGED -3995,2019-02-20,22144.314826164707,354,Elective,2019-02-25,Abnormal,3995,326,4,12,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -3996,2022-12-07,21146.308661946216,484,Elective,2022-12-11,Abnormal,3996,205,4,8,,,,DISCHARGED -3998,2021-10-25,32112.73918241049,465,Urgent,2021-11-17,Normal,3998,62,0,20,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -3999,2022-10-28,9609.214124199108,296,Emergency,2022-11-16,Abnormal,3999,72,4,8,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4000,2023-01-09,12652.310545058128,147,Elective,,Normal,4000,250,2,7,,,,OPEN -4001,2022-11-28,19411.487289512515,428,Urgent,2022-12-25,Abnormal,4001,123,0,16,,,,DISCHARGED -4002,2022-05-15,33825.35307615227,110,Elective,2022-06-01,Abnormal,4002,374,2,15,,,,DISCHARGED -4003,2023-08-02,35068.646606772454,145,Elective,2023-08-23,Abnormal,4003,120,0,15,,,,DISCHARGED -4004,2021-02-14,21291.259735417338,170,Elective,2021-03-13,Abnormal,4004,274,4,26,,,,DISCHARGED -4005,2020-05-23,49900.08351099672,381,Elective,2020-05-24,Inconclusive,4005,430,0,27,,,,DISCHARGED -4006,2020-12-28,8357.522966165114,382,Emergency,2021-01-10,Abnormal,4006,499,1,18,,,,DISCHARGED -4007,2019-03-15,40074.146366518806,253,Emergency,2019-04-07,Normal,4007,397,3,23,,,,DISCHARGED -4008,2023-09-15,10614.992438402242,253,Urgent,2023-09-28,Abnormal,4008,119,4,15,,,,DISCHARGED -4009,2022-02-05,33360.97569754692,416,Urgent,2022-03-06,Normal,4009,421,3,24,,,,DISCHARGED -4010,2019-05-03,15576.106585887708,316,Elective,2019-05-18,Abnormal,4010,436,4,13,,,,DISCHARGED -4012,2020-02-29,41337.62843125778,244,Elective,2020-03-03,Normal,4012,316,3,19,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4013,2021-07-13,20246.20232371428,335,Emergency,2021-07-18,Abnormal,4013,163,1,13,,,,DISCHARGED -4014,2021-06-14,36197.38262596049,199,Urgent,2021-07-04,Normal,4014,423,3,13,,,,DISCHARGED -4015,2020-03-31,46376.842085179895,135,Elective,2020-04-23,Abnormal,4015,464,0,13,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4016,2019-03-27,44143.93245166343,462,Elective,2019-04-25,Abnormal,4016,285,3,11,,,,DISCHARGED -4017,2020-02-11,29842.205512743705,198,Elective,2020-02-12,Abnormal,4017,264,4,5,,,,DISCHARGED -4018,2020-12-12,48566.61033860887,351,Elective,2021-01-07,Normal,4018,319,2,19,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4019,2021-11-05,47286.30961643738,242,Emergency,2021-12-04,Abnormal,4019,160,3,12,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -4020,2019-03-31,10918.82339082959,252,Urgent,2019-04-07,Normal,4020,375,3,15,,,,DISCHARGED -4021,2021-10-08,38278.33553192345,102,Elective,2021-10-21,Normal,4021,307,3,8,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -4022,2021-05-24,30986.08126798341,125,Elective,2021-05-29,Abnormal,4022,88,4,1,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4023,2019-02-23,16279.178560670272,446,Urgent,2019-02-24,Normal,4023,141,3,21,,,,DISCHARGED -4024,2019-07-12,12262.22205058744,363,Emergency,2019-07-20,Normal,4024,202,4,26,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4025,2022-05-24,31059.223068350944,158,Elective,2022-06-01,Inconclusive,4025,308,4,28,,,,DISCHARGED -4026,2020-06-28,37309.69758057914,494,Elective,2020-07-08,Abnormal,4026,226,2,2,,,,DISCHARGED -4027,2020-11-22,28915.93576194849,230,Emergency,2020-11-26,Abnormal,4027,488,0,9,,,,DISCHARGED -4028,2019-10-15,8904.32972556465,436,Emergency,2019-11-02,Normal,4028,442,4,19,,,,DISCHARGED -4029,2019-11-02,40430.05128268872,227,Elective,2019-11-05,Normal,4029,333,1,1,,,,DISCHARGED -4030,2022-06-25,39810.83693746627,200,Urgent,2022-07-16,Inconclusive,4030,221,3,26,,,,DISCHARGED -4031,2021-02-05,14995.154060260846,151,Urgent,2021-02-21,Normal,4031,40,1,23,,,,DISCHARGED -4032,2020-06-27,32380.07272129643,228,Urgent,2020-07-12,Normal,4032,195,3,9,,,,DISCHARGED -4033,2023-06-23,13576.802988935126,450,Elective,2023-06-28,Inconclusive,4033,67,2,7,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -4034,2021-06-19,10029.231901138082,340,Emergency,2021-07-13,Abnormal,4034,475,4,16,,,,DISCHARGED -4035,2021-08-04,47621.64433017772,213,Emergency,2021-08-18,Normal,4035,263,0,25,,,,DISCHARGED -4036,2021-01-06,2300.5260238295764,115,Emergency,2021-01-21,Inconclusive,4036,1,4,21,,,,DISCHARGED -4037,2019-12-25,46470.42030442321,386,Urgent,2019-12-26,Abnormal,4037,360,3,0,,,,DISCHARGED -4038,2020-03-05,16686.80059995276,379,Elective,2020-03-06,Inconclusive,4038,124,0,5,,,,DISCHARGED -4039,2019-05-24,4205.945833565284,417,Emergency,2019-06-13,Normal,4039,109,4,6,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -4040,2020-03-11,47665.212945095096,119,Elective,2020-04-02,Inconclusive,4040,85,0,14,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4041,2021-11-21,20385.93961071164,228,Elective,2021-12-19,Normal,4041,424,3,17,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4042,2023-10-09,19397.09973625408,175,Elective,,Normal,4042,119,2,8,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -4043,2023-08-05,8002.138123438562,285,Emergency,2023-08-25,Normal,4043,126,2,7,,,,DISCHARGED -4043,2023-10-25,28540.132776710318,156,Emergency,2023-11-23,Normal,9248,254,4,24,,,,DISCHARGED -4044,2019-03-11,23316.601149183854,147,Elective,2019-03-19,Abnormal,4044,182,1,9,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4045,2023-07-23,14719.36836320746,309,Elective,2023-08-10,Abnormal,4045,15,3,28,,,,DISCHARGED -4046,2021-06-08,17739.127786418325,190,Urgent,2021-07-04,Normal,4046,476,4,3,,,,DISCHARGED -4047,2020-05-07,9077.402085137284,478,Urgent,2020-05-08,Normal,4047,61,4,19,,,,DISCHARGED -4047,2021-06-24,20712.705756785224,408,Elective,2021-06-29,Abnormal,4288,368,2,27,,,,DISCHARGED -4047,2019-06-14,23365.268348783364,247,Elective,2019-07-12,Abnormal,5222,431,0,7,,,,DISCHARGED -4048,2021-03-19,37566.39943995905,182,Elective,2021-04-10,Inconclusive,4048,157,3,0,,,,DISCHARGED -4049,2022-03-01,17200.96966789083,476,Emergency,2022-03-11,Abnormal,4049,267,0,7,,,,DISCHARGED -4050,2021-08-31,11638.74678141634,255,Elective,2021-09-30,Inconclusive,4050,34,3,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -4051,2021-03-11,6479.735809319888,437,Urgent,2021-03-23,Inconclusive,4051,266,1,11,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4052,2019-12-27,27862.38920578344,383,Elective,2019-12-28,Normal,4052,63,2,22,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4053,2021-05-01,24378.80672034411,457,Urgent,2021-05-21,Abnormal,4053,493,1,24,Persistent back pain worsened with movement,"Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.",M54.5 - Low back pain,DISCHARGED -4054,2023-08-07,49558.22013617202,428,Emergency,,Inconclusive,4054,49,4,14,,,,OPEN -4055,2019-04-18,12557.286967519134,280,Elective,2019-04-30,Normal,4055,468,2,12,,,,DISCHARGED -4056,2019-05-02,33441.48765104907,137,Urgent,2019-05-31,Normal,4056,254,4,15,,,,DISCHARGED -4057,2018-12-18,39737.89778415201,104,Urgent,2019-01-03,Abnormal,4057,148,1,25,,,,DISCHARGED -4058,2023-04-24,14228.5820984642,119,Elective,2023-04-29,Normal,4058,324,3,22,,,,DISCHARGED -4059,2020-05-11,18139.456499238557,339,Emergency,2020-05-29,Abnormal,4059,303,4,17,,,,DISCHARGED -4060,2021-12-21,24983.96382578792,292,Emergency,2022-01-11,Abnormal,4060,275,0,0,,,,DISCHARGED -4060,2019-11-06,30701.586578725437,333,Emergency,2019-11-20,Abnormal,4456,356,3,16,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4061,2020-03-01,33433.44272903414,240,Elective,2020-03-17,Inconclusive,4061,450,3,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4063,2022-07-26,42488.15302488745,170,Urgent,2022-08-08,Normal,4063,171,1,22,,,,DISCHARGED -4064,2019-07-17,19133.17951146756,116,Emergency,2019-07-21,Normal,4064,416,1,4,,,,DISCHARGED -4065,2020-08-26,48443.03345050882,147,Urgent,2020-08-29,Normal,4065,200,2,19,,,,DISCHARGED -4066,2019-09-21,36154.46007041329,124,Emergency,2019-09-28,Inconclusive,4066,444,2,20,,,,DISCHARGED -4067,2021-04-16,36723.890483774754,368,Elective,2021-05-16,Normal,4067,392,0,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4068,2022-06-08,32863.89504872498,354,Elective,2022-06-29,Abnormal,4068,323,3,25,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -4069,2023-09-11,28695.033474055363,459,Emergency,,Normal,4069,34,0,5,,,,OPEN -4070,2022-05-12,15146.13753998245,466,Emergency,2022-05-24,Inconclusive,4070,464,0,11,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -4071,2022-05-17,45894.05972194325,106,Urgent,2022-06-01,Normal,4071,481,1,9,,,,DISCHARGED -4072,2018-11-22,23456.59186796261,442,Elective,2018-12-04,Inconclusive,4072,215,0,21,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4073,2020-05-07,44371.59879829837,468,Emergency,2020-06-02,Inconclusive,4073,479,0,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4074,2020-07-18,22463.355656768304,327,Urgent,2020-08-09,Inconclusive,4074,64,4,1,,,,DISCHARGED -4075,2020-03-19,10962.949478521576,435,Urgent,2020-03-27,Inconclusive,4075,7,2,18,,,,DISCHARGED -4076,2019-12-11,39580.196471736,144,Emergency,2019-12-24,Inconclusive,4076,300,2,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4077,2022-12-23,7007.829557357024,454,Elective,2023-01-01,Normal,4077,342,3,5,,,,DISCHARGED -4078,2023-02-16,9855.46439707228,196,Urgent,2023-02-27,Normal,4078,430,2,27,,,,DISCHARGED -4079,2019-09-11,21906.41697547982,134,Emergency,2019-09-16,Abnormal,4079,423,3,27,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4080,2019-05-15,20062.542398273865,152,Urgent,2019-05-18,Abnormal,4080,331,4,26,,,,DISCHARGED -4081,2023-04-12,10827.92831263798,404,Emergency,,Normal,4081,437,2,12,,,,OPEN -4082,2020-10-15,42304.02618149485,273,Emergency,2020-10-16,Inconclusive,4082,75,4,8,,,,DISCHARGED -4083,2019-06-27,12747.70699129026,239,Elective,2019-07-04,Abnormal,4083,173,2,11,,,,DISCHARGED -4084,2021-07-13,6426.727048325362,137,Urgent,2021-07-31,Normal,4084,46,2,17,,,,DISCHARGED -4085,2023-04-18,34388.5865262107,295,Emergency,,Normal,4085,14,4,7,,,,OPEN -4086,2020-04-13,18527.51955670068,487,Urgent,2020-04-14,Abnormal,4086,360,0,24,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4087,2019-12-25,29415.57396556698,298,Elective,2020-01-05,Normal,4087,146,0,17,,,,DISCHARGED -4088,2022-06-05,22825.3529388502,486,Urgent,2022-06-19,Normal,4088,25,0,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4089,2020-11-01,37128.811796391245,334,Elective,2020-11-17,Normal,4089,307,0,22,,,,DISCHARGED -4091,2022-02-08,26910.252701682504,380,Emergency,2022-02-22,Abnormal,4091,92,2,24,,,,DISCHARGED -4092,2019-12-28,34031.516229777975,123,Urgent,2020-01-06,Inconclusive,4092,405,1,21,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4093,2020-06-11,49637.53010510683,359,Elective,2020-06-13,Inconclusive,4093,231,4,1,,,,DISCHARGED -4094,2020-08-10,38145.1571943148,193,Urgent,2020-08-26,Abnormal,4094,20,1,7,,,,DISCHARGED -4095,2019-01-27,37630.01096501882,348,Emergency,2019-02-13,Abnormal,4095,306,1,9,,,,DISCHARGED -4096,2019-12-15,15250.360627030066,347,Elective,2020-01-03,Inconclusive,4096,37,3,8,,,,DISCHARGED -4096,2020-05-06,18994.00515974204,454,Urgent,2020-05-24,Normal,5015,275,0,27,,,,DISCHARGED -4096,2019-01-16,40822.80022225712,168,Elective,2019-01-20,Normal,7224,156,2,23,,,,DISCHARGED -4096,2022-10-08,11752.769050731538,381,Emergency,2022-11-04,Normal,7642,178,0,17,,,,DISCHARGED -4096,2019-11-06,36453.74324006667,140,Elective,2019-11-23,Normal,9174,131,0,7,,,,DISCHARGED -4096,2021-10-23,36394.58271488938,369,Urgent,2021-11-06,Abnormal,9421,310,1,18,,,,DISCHARGED -4097,2021-07-28,39041.34527018336,181,Elective,2021-08-05,Normal,4097,454,3,2,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4098,2021-11-28,2838.7381404898906,194,Emergency,2021-12-24,Inconclusive,4098,347,0,8,,,,DISCHARGED -4100,2019-07-21,11230.782947959842,240,Urgent,2019-08-20,Abnormal,4100,27,4,12,,,,DISCHARGED -4101,2022-10-06,28880.89852983083,224,Urgent,2022-10-19,Inconclusive,4101,259,4,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -4103,2020-07-23,13018.565183607856,332,Elective,2020-07-29,Normal,4103,405,0,24,,,,DISCHARGED -4104,2019-07-01,39601.683662314295,291,Urgent,2019-07-20,Normal,4104,75,1,19,,,,DISCHARGED -4105,2019-04-12,31913.265604153305,353,Urgent,2019-05-03,Abnormal,4105,428,1,11,,,,DISCHARGED -4106,2020-11-07,25200.47533747384,395,Emergency,2020-11-26,Inconclusive,4106,66,2,29,,,,DISCHARGED -4106,2021-02-11,42610.13407567181,128,Emergency,2021-02-27,Inconclusive,6640,341,3,22,Fatigue and weakness,"Investigation for underlying medical conditions, lifestyle modifications, and, if necessary, medications.",R53.82 - Other malaise,DISCHARGED -4107,2023-09-07,46028.22671121138,153,Elective,2023-09-21,Inconclusive,4107,491,1,12,,,,DISCHARGED -4108,2021-05-29,3852.7388595096168,490,Urgent,2021-06-14,Abnormal,4108,193,2,7,,,,DISCHARGED -4109,2021-09-03,28102.63109552809,146,Urgent,2021-09-21,Abnormal,4109,471,4,14,,,,DISCHARGED -4111,2021-04-10,17019.112718489836,475,Emergency,2021-05-08,Inconclusive,4111,161,4,28,,,,DISCHARGED -4112,2023-07-19,10240.036551625411,288,Emergency,2023-08-04,Inconclusive,4112,346,4,12,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4113,2019-05-22,47374.6213192287,347,Elective,2019-06-09,Inconclusive,4113,438,0,20,,,,DISCHARGED -4114,2021-09-25,20829.347631650067,426,Elective,2021-10-01,Abnormal,4114,360,3,12,,,,DISCHARGED -4115,2020-02-23,17600.75197620571,194,Emergency,2020-03-07,Abnormal,4115,256,2,16,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -4116,2022-11-09,33887.57196309414,173,Elective,2022-11-11,Inconclusive,4116,71,3,14,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4117,2020-11-09,45298.7887266391,163,Elective,2020-11-11,Normal,4117,86,0,24,,,,DISCHARGED -4118,2020-01-18,22877.89039151832,331,Elective,2020-02-10,Abnormal,4118,421,2,21,,,,DISCHARGED -4119,2019-11-30,49541.26218720334,320,Emergency,2019-12-19,Normal,4119,261,2,18,,,,DISCHARGED -4120,2021-09-04,2606.946706386134,487,Emergency,2021-09-18,Normal,4120,213,1,2,,,,DISCHARGED -4121,2020-04-30,37474.1198542464,196,Urgent,2020-05-09,Normal,4121,152,3,13,,,,DISCHARGED -4122,2022-09-10,33819.5964827501,103,Emergency,2022-09-20,Normal,4122,209,3,29,,,,DISCHARGED -4123,2020-03-24,6020.961656975189,196,Urgent,2020-04-16,Abnormal,4123,400,1,9,,,,DISCHARGED -4124,2019-12-05,27975.521783425225,473,Emergency,2019-12-10,Normal,4124,60,4,16,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4125,2021-04-25,27417.46363334177,500,Emergency,2021-05-11,Normal,4125,267,0,28,,,,DISCHARGED -4126,2022-02-09,28291.41257908482,356,Urgent,2022-02-23,Abnormal,4126,261,3,7,,,,DISCHARGED -4127,2019-07-25,10726.848194099884,173,Elective,2019-08-02,Normal,4127,217,1,17,Persistent wrist pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",N99.89 - Other postprocedural disorders of genitourinary system,DISCHARGED -4128,2023-04-05,9047.33170807136,157,Elective,2023-04-22,Inconclusive,4128,282,2,11,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4129,2020-11-29,7773.859400105024,229,Urgent,2020-12-04,Normal,4129,135,1,16,,,,DISCHARGED -4130,2023-05-17,11423.648805123405,451,Emergency,2023-06-03,Inconclusive,4130,466,4,22,,,,DISCHARGED -4131,2020-12-18,19715.406694945024,311,Emergency,2021-01-15,Normal,4131,379,0,29,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -4132,2020-04-14,42817.98659283683,495,Emergency,2020-04-29,Inconclusive,4132,361,4,10,,,,DISCHARGED -4133,2023-05-30,2709.9609103645807,484,Urgent,,Normal,4133,448,2,8,,,,OPEN -4134,2023-07-03,25694.665941571697,479,Elective,2023-07-06,Abnormal,4134,440,2,21,,,,DISCHARGED -4135,2020-08-01,3409.95773502086,481,Elective,2020-08-02,Inconclusive,4135,92,2,23,,,,DISCHARGED -4136,2022-05-11,34498.23081364619,490,Emergency,2022-06-04,Abnormal,4136,108,2,23,,,,DISCHARGED -4137,2019-05-06,20840.734472914643,322,Emergency,2019-05-26,Inconclusive,4137,240,1,24,,,,DISCHARGED -4138,2023-08-09,11054.174225788036,192,Elective,2023-09-07,Normal,4138,354,2,22,,,,DISCHARGED -4139,2020-06-22,20459.422587502395,434,Emergency,2020-07-11,Normal,4139,423,2,24,,,,DISCHARGED -4140,2021-05-22,42666.33676754862,382,Urgent,2021-06-18,Normal,4140,141,1,14,,,,DISCHARGED -4140,2020-03-24,13891.21952687642,413,Urgent,2020-03-30,Abnormal,8178,290,2,8,,,,DISCHARGED -4141,2020-04-23,12688.552560151287,347,Urgent,2020-05-07,Abnormal,4141,431,4,11,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -4142,2020-02-24,5467.289870399782,307,Urgent,2020-03-19,Abnormal,4142,236,4,10,,,,DISCHARGED -4143,2020-01-17,9696.363757831856,340,Urgent,2020-01-26,Abnormal,4143,339,3,16,,,,DISCHARGED -4144,2020-11-06,6927.757695783708,144,Urgent,2020-11-11,Abnormal,4144,311,4,5,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4145,2020-02-07,24507.184570606343,207,Emergency,2020-02-23,Normal,4145,176,0,27,,,,DISCHARGED -4146,2019-11-27,11110.92373649657,269,Emergency,2019-12-24,Normal,4146,140,0,7,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4147,2023-10-12,16014.08438886543,335,Urgent,,Abnormal,4147,188,0,9,,,,OPEN -4148,2023-09-08,19854.614302207403,403,Urgent,,Normal,4148,485,1,24,,,,OPEN -4149,2021-04-19,32513.21250441573,227,Emergency,2021-05-08,Inconclusive,4149,48,4,14,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4150,2023-02-15,12412.328263418,218,Elective,,Normal,4150,301,0,3,,,,OPEN -4152,2023-03-22,13284.131104189444,495,Urgent,2023-04-03,Abnormal,4152,368,3,28,,,,DISCHARGED -4153,2022-09-29,26326.22675426569,292,Elective,2022-10-12,Normal,4153,189,1,17,,,,DISCHARGED -4154,2021-02-13,38815.74753016842,335,Urgent,2021-02-19,Abnormal,4154,135,3,10,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4155,2022-11-11,13435.46733692268,164,Elective,2022-11-30,Abnormal,4155,42,4,8,,,,DISCHARGED -4156,2023-01-05,5408.813173132597,211,Emergency,2023-01-15,Normal,4156,403,2,8,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -4157,2021-08-30,24248.120835209123,183,Emergency,2021-09-13,Normal,4157,379,3,27,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -4158,2019-02-15,10741.948269625194,111,Elective,2019-03-10,Normal,4158,352,2,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4159,2019-09-06,48267.54113058011,159,Elective,2019-09-16,Abnormal,4159,89,1,2,,,,DISCHARGED -4160,2023-08-14,11408.92504805721,462,Elective,2023-08-15,Normal,4160,294,3,20,,,,DISCHARGED -4161,2020-05-13,8518.438727599812,125,Urgent,2020-05-23,Inconclusive,4161,340,3,17,,,,DISCHARGED -4163,2022-11-02,25341.57320306952,422,Elective,2022-11-26,Normal,4163,244,1,13,,,,DISCHARGED -4164,2023-06-10,8033.232106130741,478,Emergency,2023-06-12,Inconclusive,4164,432,1,2,,,,DISCHARGED -4165,2023-04-09,17082.08452190309,433,Elective,2023-05-09,Inconclusive,4165,191,0,16,,,,DISCHARGED -4166,2023-07-23,13893.03688162979,209,Emergency,2023-07-25,Inconclusive,4166,317,4,3,,,,DISCHARGED -4167,2021-01-20,41435.46186095396,338,Emergency,2021-02-16,Normal,4167,105,3,20,,,,DISCHARGED -4168,2020-03-11,1889.902251341207,201,Elective,2020-03-27,Inconclusive,4168,362,3,27,,,,DISCHARGED -4169,2020-11-11,16503.40778622603,481,Elective,2020-11-26,Abnormal,4169,309,1,17,,,,DISCHARGED -4170,2020-04-24,11934.967575832885,485,Emergency,2020-05-23,Abnormal,4170,381,1,14,,,,DISCHARGED -4170,2019-11-13,8641.322454204947,208,Elective,2019-11-25,Normal,6547,232,4,18,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -4171,2019-02-17,19736.44593693479,453,Urgent,2019-03-07,Abnormal,4171,264,1,27,,,,DISCHARGED -4172,2023-04-15,6043.624369368916,353,Emergency,,Normal,4172,343,2,21,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",OPEN -4173,2023-06-16,39194.574296567545,230,Emergency,2023-07-09,Inconclusive,4173,36,2,5,,,,DISCHARGED -4174,2020-09-26,7774.660716325249,443,Elective,2020-10-10,Abnormal,4174,304,2,14,,,,DISCHARGED -4175,2021-07-28,43891.04796805266,327,Elective,2021-08-05,Normal,4175,40,2,6,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4176,2020-11-25,38394.49310078789,173,Emergency,2020-12-04,Abnormal,4176,16,4,11,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4178,2021-12-08,20925.31398262782,241,Urgent,2021-12-23,Normal,4178,343,3,15,,,,DISCHARGED -4179,2020-03-14,33725.423848761,245,Emergency,2020-04-06,Normal,4179,276,2,8,,,,DISCHARGED -4180,2023-10-06,18907.536139235868,431,Urgent,2023-10-20,Normal,4180,306,1,19,,,,DISCHARGED -4181,2022-03-01,2116.3988482035093,184,Urgent,2022-03-29,Inconclusive,4181,58,2,4,,,,DISCHARGED -4182,2019-04-22,18113.33214667707,430,Urgent,2019-05-22,Normal,4182,422,4,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4183,2023-02-13,45214.53837734277,217,Elective,2023-02-22,Normal,4183,182,1,1,,,,DISCHARGED -4184,2019-10-14,42907.15413187941,456,Urgent,2019-10-28,Normal,4184,40,2,21,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4185,2023-09-13,13061.333957705656,214,Urgent,2023-09-15,Inconclusive,4185,38,3,15,,,,DISCHARGED -4186,2020-12-26,3015.216939353546,210,Urgent,2021-01-21,Abnormal,4186,396,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4187,2019-09-01,23921.01034024139,169,Emergency,2019-10-01,Inconclusive,4187,191,1,4,,,,DISCHARGED -4188,2019-01-13,30414.60712677158,455,Emergency,2019-01-19,Normal,4188,266,3,6,,,,DISCHARGED -4189,2020-01-23,39602.84827514187,109,Urgent,2020-01-24,Normal,4189,493,1,5,,,,DISCHARGED -4191,2022-12-15,32598.82400481638,354,Elective,2023-01-03,Abnormal,4191,146,2,23,"Reports a persistent, productive cough with greenish sputum.",Evaluate for respiratory infections or chronic conditions; prescribe antibiotics or other appropriate medications.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4192,2019-08-29,30156.348034764087,227,Emergency,2019-09-21,Inconclusive,4192,394,1,21,,,,DISCHARGED -4193,2021-01-07,23854.14631105632,429,Urgent,2021-02-01,Inconclusive,4193,332,2,9,,,,DISCHARGED -4194,2021-08-28,38625.77818906482,140,Urgent,2021-09-06,Abnormal,4194,126,3,13,,,,DISCHARGED -4195,2019-10-02,1764.863462629149,454,Emergency,2019-10-05,Abnormal,4195,45,0,7,,,,DISCHARGED -4196,2023-09-11,31067.7180990336,348,Elective,2023-09-28,Normal,4196,44,3,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4197,2021-02-03,33218.58771433514,449,Elective,2021-02-08,Normal,4197,0,2,13,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4197,2020-06-27,29417.398705733616,213,Urgent,2020-06-30,Normal,5722,167,4,13,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4198,2020-03-12,17827.595602552363,139,Emergency,2020-03-30,Abnormal,4198,107,3,19,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -4199,2021-11-25,9561.515191899114,163,Emergency,2021-12-09,Abnormal,4199,18,4,27,,,,DISCHARGED -4200,2020-04-01,6671.005508948585,152,Elective,2020-04-13,Normal,4200,331,4,22,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -4201,2021-01-08,24049.0574839086,325,Elective,2021-01-20,Inconclusive,4201,71,2,2,,,,DISCHARGED -4202,2021-02-04,48662.23534288198,461,Elective,2021-03-01,Inconclusive,4202,455,2,0,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4203,2020-06-16,12129.44563679042,223,Elective,2020-07-08,Inconclusive,4203,444,0,28,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4204,2022-02-03,45369.87620295928,444,Elective,2022-02-11,Abnormal,4204,108,1,8,,,,DISCHARGED -4205,2023-05-07,40623.16375343149,332,Elective,2023-05-09,Inconclusive,4205,267,3,8,,,,DISCHARGED -4206,2021-12-05,3324.1593975395585,482,Elective,2021-12-30,Inconclusive,4206,444,2,21,,,,DISCHARGED -4207,2023-10-08,36093.007916267954,498,Elective,2023-11-05,Inconclusive,4207,239,3,1,,,,DISCHARGED -4208,2023-09-12,29891.026074010013,314,Urgent,2023-09-17,Abnormal,4208,416,4,15,,,,DISCHARGED -4209,2019-12-25,10188.956545312967,282,Emergency,2020-01-14,Inconclusive,4209,300,1,7,,,,DISCHARGED -4210,2023-09-03,14061.754453888338,312,Urgent,2023-09-14,Inconclusive,4210,89,0,25,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4211,2022-04-01,13812.252706354642,245,Elective,2022-04-04,Inconclusive,4211,102,3,5,,,,DISCHARGED -4212,2020-09-02,39957.56215054793,476,Urgent,2020-09-10,Abnormal,4212,475,1,22,,,,DISCHARGED -4213,2021-12-22,4337.045304985074,235,Emergency,2022-01-19,Abnormal,4213,249,0,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4214,2018-11-06,7848.908820179961,248,Elective,2018-11-20,Abnormal,4214,452,3,0,,,,DISCHARGED -4215,2019-05-15,17633.66545757288,366,Elective,2019-05-16,Inconclusive,4215,7,1,18,,,,DISCHARGED -4216,2023-04-22,16283.563895438963,493,Elective,2023-05-12,Inconclusive,4216,152,2,14,,,,DISCHARGED -4217,2023-03-09,40376.16831506106,126,Emergency,2023-03-16,Normal,4217,346,3,0,,,,DISCHARGED -4219,2020-08-23,27453.98398460514,381,Urgent,2020-09-18,Abnormal,4219,173,1,9,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -4220,2021-02-27,48849.72530535368,258,Elective,2021-03-06,Normal,4220,342,0,0,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -4221,2023-08-29,38012.36490229927,396,Elective,2023-09-23,Inconclusive,4221,157,1,27,,,,DISCHARGED -4222,2021-11-22,28482.813658792653,255,Urgent,2021-12-18,Normal,4222,492,2,11,,,,DISCHARGED -4223,2022-11-29,3085.5512769146485,432,Urgent,2022-12-25,Abnormal,4223,430,3,10,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4224,2018-12-26,16006.593417939845,264,Elective,2019-01-02,Inconclusive,4224,214,3,28,,,,DISCHARGED -4225,2020-10-24,48111.15565368656,409,Emergency,2020-10-26,Inconclusive,4225,176,3,16,,,,DISCHARGED -4226,2019-06-26,22277.94392314609,223,Elective,2019-07-11,Abnormal,4226,174,2,3,,,,DISCHARGED -4227,2019-01-28,20368.021744003658,478,Emergency,2019-02-23,Inconclusive,4227,339,0,28,,,,DISCHARGED -4228,2021-08-02,20535.716775870736,369,Emergency,2021-08-19,Normal,4228,337,3,22,,,,DISCHARGED -4229,2020-03-07,1429.3033157779878,348,Elective,2020-03-10,Abnormal,4229,145,0,6,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4230,2019-02-05,16495.703175412338,272,Elective,2019-02-19,Normal,4230,449,1,11,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4231,2018-11-13,17283.05696012245,349,Urgent,2018-11-16,Inconclusive,4231,323,0,12,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4232,2022-02-21,7938.83847891943,345,Emergency,2022-03-15,Abnormal,4232,477,0,4,,,,DISCHARGED -4233,2022-08-11,46805.39220178419,253,Emergency,2022-09-01,Inconclusive,4233,160,3,27,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4234,2020-02-07,33338.424280797895,293,Elective,2020-03-04,Abnormal,4234,126,4,5,,,,DISCHARGED -4234,2021-04-29,36424.72235649513,370,Emergency,2021-05-28,Normal,7864,419,4,1,,,,DISCHARGED -4236,2019-08-05,12869.063402261929,225,Emergency,2019-08-09,Inconclusive,4236,81,2,20,,,,DISCHARGED -4237,2019-10-07,28142.69064301834,168,Elective,2019-11-01,Inconclusive,4237,484,2,6,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4238,2023-01-21,17005.199605852467,126,Urgent,,Abnormal,4238,146,4,13,,,,OPEN -4239,2019-03-02,6249.442146504827,126,Urgent,2019-03-15,Abnormal,4239,238,1,24,,,,DISCHARGED -4239,2019-12-07,21265.605131959997,490,Elective,2019-12-09,Inconclusive,5657,411,3,21,,,,DISCHARGED -4241,2021-01-28,11607.140164525068,333,Elective,2021-02-05,Inconclusive,4241,423,3,27,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4242,2023-02-25,28720.3545377116,233,Urgent,,Abnormal,4242,83,1,13,,,,OPEN -4243,2020-05-15,49655.9317155011,305,Urgent,2020-06-04,Abnormal,4243,112,1,9,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4244,2019-01-20,44569.38342637937,469,Emergency,2019-01-23,Normal,4244,224,4,3,,,,DISCHARGED -4245,2020-03-18,45966.53531391583,354,Elective,2020-03-22,Inconclusive,4245,331,2,2,,,,DISCHARGED -4245,2023-02-21,14786.153449769276,405,Elective,2023-03-22,Abnormal,5303,377,1,24,,,,DISCHARGED -4246,2023-08-13,35351.77628597784,161,Emergency,,Inconclusive,4246,242,2,22,,,,OPEN -4247,2020-12-11,16460.812363312594,426,Elective,2020-12-24,Inconclusive,4247,142,0,26,,,,DISCHARGED -4248,2021-09-29,7589.864460170565,385,Urgent,2021-10-13,Inconclusive,4248,40,3,13,,,,DISCHARGED -4249,2022-02-16,44294.30015962839,172,Emergency,2022-02-27,Abnormal,4249,422,4,28,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4250,2019-08-27,39377.32723358132,209,Elective,2019-09-11,Abnormal,4250,257,3,5,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -4251,2022-11-17,36286.17521435992,111,Urgent,2022-12-15,Inconclusive,4251,446,4,22,,,,DISCHARGED -4252,2022-02-23,49295.455401304025,334,Elective,2022-03-13,Normal,4252,284,0,14,,,,DISCHARGED -4253,2021-03-01,7558.735303959764,333,Urgent,2021-03-02,Normal,4253,104,3,7,,,,DISCHARGED -4254,2023-10-25,44338.57425382923,406,Elective,2023-10-28,Abnormal,4254,201,0,4,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -4255,2021-04-06,36199.54049238472,261,Emergency,2021-04-24,Normal,4255,449,4,2,,,,DISCHARGED -4256,2020-07-24,49102.979010545336,329,Urgent,2020-08-21,Abnormal,4256,306,1,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -4257,2020-08-12,19649.11069750562,444,Elective,2020-08-15,Abnormal,4257,330,3,12,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4258,2023-07-11,29017.347818936272,371,Elective,2023-07-27,Inconclusive,4258,460,0,1,,,,DISCHARGED -4259,2022-10-17,27669.868084675,313,Urgent,2022-11-06,Normal,4259,265,3,23,,,,DISCHARGED -4260,2023-01-08,4396.562975337329,437,Elective,,Abnormal,4260,397,3,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,OPEN -4261,2023-07-22,13483.899807955184,399,Emergency,2023-07-26,Inconclusive,4261,209,3,11,,,,DISCHARGED -4262,2019-01-03,46112.01413816182,373,Elective,2019-01-31,Inconclusive,4262,50,2,7,,,,DISCHARGED -4263,2020-03-28,17701.123806696913,138,Urgent,2020-03-29,Abnormal,4263,117,0,18,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -4265,2020-10-08,6664.460693355432,280,Emergency,2020-10-13,Inconclusive,4265,200,0,8,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -4266,2021-08-26,32577.037184008965,413,Emergency,2021-09-17,Abnormal,4266,376,3,27,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4267,2022-04-17,23788.720496469603,365,Emergency,2022-05-06,Inconclusive,4267,38,1,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4268,2023-05-17,8879.807144515904,368,Elective,,Inconclusive,4268,27,3,27,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",OPEN -4269,2020-01-19,40675.03565064048,112,Emergency,2020-01-26,Normal,4269,258,2,26,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -4270,2019-08-16,47200.32603530504,469,Emergency,2019-09-06,Normal,4270,83,4,17,,,,DISCHARGED -4271,2020-02-21,15157.013579451886,313,Elective,2020-02-28,Inconclusive,4271,453,2,9,,,,DISCHARGED -4271,2021-08-30,26263.057532551607,289,Emergency,2021-09-02,Abnormal,7294,154,1,8,,,,DISCHARGED -4271,2019-12-11,6053.051017209744,441,Emergency,2019-12-20,Abnormal,8894,116,3,5,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -4272,2022-09-13,37726.75060416127,172,Emergency,2022-09-19,Abnormal,4272,1,0,0,,,,DISCHARGED -4273,2021-11-25,45281.60813325514,153,Urgent,2021-12-12,Normal,4273,92,3,4,,,,DISCHARGED -4274,2021-09-28,24532.457808837284,101,Urgent,2021-10-17,Normal,4274,165,1,9,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4275,2022-02-18,23186.36113064121,476,Urgent,2022-03-14,Normal,4275,386,0,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4276,2021-11-24,27803.00246757089,494,Elective,2021-12-19,Inconclusive,4276,399,2,12,,,,DISCHARGED -4277,2019-04-20,7445.620745064397,368,Elective,2019-05-01,Abnormal,4277,349,4,21,,,,DISCHARGED -4278,2022-11-25,40406.67079273432,482,Urgent,2022-12-11,Normal,4278,295,4,22,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4279,2022-10-23,45960.250694101785,438,Urgent,2022-10-28,Normal,4279,257,3,3,,,,DISCHARGED -4280,2021-07-23,18633.16661493362,212,Urgent,2021-08-20,Inconclusive,4280,80,2,0,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -4281,2020-09-02,4419.6471405296,257,Elective,2020-10-01,Normal,4281,424,1,20,,,,DISCHARGED -4282,2021-08-21,39548.83309112183,311,Emergency,2021-09-14,Abnormal,4282,267,4,1,,,,DISCHARGED -4284,2022-09-27,20378.908689461037,261,Elective,2022-10-18,Normal,4284,418,2,23,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4285,2022-06-27,39942.2752405833,294,Urgent,2022-07-09,Inconclusive,4285,234,3,3,,,,DISCHARGED -4286,2020-02-26,18332.10657982058,461,Elective,2020-02-27,Inconclusive,4286,320,0,16,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4287,2020-07-27,43411.73070622255,227,Emergency,2020-08-01,Normal,4287,310,3,9,,,,DISCHARGED -4289,2020-03-15,13787.360482399412,129,Urgent,2020-04-05,Abnormal,4289,300,3,22,,,,DISCHARGED -4290,2021-01-19,15579.51796045255,135,Urgent,2021-01-27,Normal,4290,462,2,11,,,,DISCHARGED -4291,2021-02-24,7076.582553180162,224,Elective,2021-03-14,Inconclusive,4291,473,4,26,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -4292,2023-08-22,9224.665872229143,465,Urgent,,Inconclusive,4292,356,2,1,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -4293,2020-01-18,46114.60624027525,458,Emergency,2020-02-07,Abnormal,4293,212,0,2,,,,DISCHARGED -4294,2020-10-29,29585.63582417888,296,Urgent,2020-11-27,Normal,4294,61,2,13,,,,DISCHARGED -4295,2022-12-29,18833.014884445416,149,Elective,2023-01-22,Inconclusive,4295,48,1,24,,,,DISCHARGED -4296,2022-05-16,37297.56080033533,284,Urgent,2022-06-03,Inconclusive,4296,126,3,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4297,2018-11-06,19626.666631094115,472,Elective,2018-11-21,Normal,4297,222,4,12,,,,DISCHARGED -4298,2022-05-06,13172.556554209346,321,Emergency,2022-06-04,Normal,4298,408,0,8,,,,DISCHARGED -4299,2020-05-13,39312.833900095146,427,Elective,2020-05-22,Normal,4299,278,3,1,,,,DISCHARGED -4300,2023-10-15,9414.77969470494,457,Urgent,2023-10-27,Abnormal,4300,407,2,18,,,,DISCHARGED -4301,2021-01-29,14628.001672455644,257,Urgent,2021-02-08,Abnormal,4301,293,1,15,,,,DISCHARGED -4302,2019-01-25,15029.464580050986,429,Elective,2019-02-21,Abnormal,4302,283,2,10,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4303,2022-12-27,34591.15341918473,227,Emergency,2023-01-17,Abnormal,4303,276,3,11,,,,DISCHARGED -4304,2019-07-20,10751.473347234029,468,Urgent,2019-08-18,Normal,4304,437,0,24,,,,DISCHARGED -4305,2021-09-08,17181.38350425435,130,Urgent,2021-09-12,Abnormal,4305,106,4,0,,,,DISCHARGED -4306,2023-06-14,28145.03076741111,417,Elective,2023-07-10,Normal,4306,145,3,1,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -4306,2018-12-27,5194.196043207984,198,Emergency,2018-12-28,Inconclusive,4923,419,0,15,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -4307,2021-07-29,47519.43087997428,418,Emergency,2021-08-26,Inconclusive,4307,98,3,26,,,,DISCHARGED -4308,2021-04-02,13744.73295863892,256,Emergency,2021-05-02,Inconclusive,4308,428,1,1,,,,DISCHARGED -4309,2021-01-04,27139.248220751764,485,Emergency,2021-02-02,Inconclusive,4309,374,2,25,,,,DISCHARGED -4310,2021-03-30,2044.8980004535192,316,Emergency,2021-04-26,Normal,4310,72,4,29,,,,DISCHARGED -4311,2023-09-19,28550.98213225394,291,Urgent,2023-09-26,Abnormal,4311,436,0,18,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4312,2018-10-31,19060.231546826177,171,Urgent,2018-11-25,Normal,4312,485,4,9,,,,DISCHARGED -4313,2019-11-10,5217.456626395087,423,Urgent,2019-11-24,Abnormal,4313,121,4,18,,,,DISCHARGED -4314,2023-06-28,45819.599782120815,336,Urgent,2023-07-12,Inconclusive,4314,29,4,9,,,,DISCHARGED -4315,2022-11-05,35623.831857974896,109,Elective,2022-11-24,Normal,4315,187,0,15,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4315,2019-01-12,41896.47962512455,214,Urgent,2019-01-25,Normal,5847,363,0,12,,,,DISCHARGED -4316,2019-07-08,42543.032870346855,304,Urgent,2019-07-10,Inconclusive,4316,353,4,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4317,2023-01-27,41805.65731337217,193,Elective,2023-02-10,Inconclusive,4317,287,2,17,,,,DISCHARGED -4318,2023-10-04,22672.384309398414,133,Emergency,2023-10-06,Abnormal,4318,450,3,23,,,,DISCHARGED -4319,2019-07-15,35317.50619164461,202,Emergency,2019-08-14,Inconclusive,4319,194,4,7,,,,DISCHARGED -4320,2019-06-14,46725.74676311306,337,Emergency,2019-06-27,Inconclusive,4320,155,1,23,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -4322,2019-03-25,12622.150489818056,496,Elective,2019-04-18,Abnormal,4322,171,4,17,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4323,2022-10-16,15420.94026749384,367,Urgent,2022-10-19,Abnormal,4323,334,0,12,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4324,2020-02-12,32142.454113230124,370,Urgent,2020-02-29,Inconclusive,4324,40,3,24,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -4326,2021-10-25,47805.81638332805,237,Urgent,2021-10-31,Abnormal,4326,62,1,26,,,,DISCHARGED -4327,2022-07-31,1488.1260929277728,231,Urgent,2022-08-25,Abnormal,4327,22,3,6,,,,DISCHARGED -4328,2023-09-23,22987.560737312077,279,Urgent,2023-09-24,Normal,4328,359,3,27,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -4329,2022-01-23,35108.85858291569,431,Elective,2022-02-11,Abnormal,4329,74,1,20,,,,DISCHARGED -4330,2019-06-06,36701.09053736355,250,Emergency,2019-06-22,Abnormal,4330,47,4,22,,,,DISCHARGED -4331,2020-07-11,5038.133607353281,270,Emergency,2020-07-30,Normal,4331,159,4,23,,,,DISCHARGED -4332,2021-04-03,18929.11346697998,273,Elective,2021-04-28,Abnormal,4332,312,4,24,,,,DISCHARGED -4333,2019-06-20,7089.745283781853,140,Urgent,2019-07-07,Abnormal,4333,117,2,17,,,,DISCHARGED -4334,2021-02-18,42634.99764480624,163,Urgent,2021-03-07,Normal,4334,99,4,5,,,,DISCHARGED -4335,2020-08-02,43083.914313453,472,Urgent,2020-08-08,Inconclusive,4335,379,1,8,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4336,2023-04-07,22950.528255265766,190,Elective,,Abnormal,4336,416,2,28,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -4337,2023-09-21,32433.36470246996,289,Urgent,2023-10-14,Normal,4337,407,4,5,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4338,2019-01-06,12708.04569673043,210,Urgent,2019-01-30,Normal,4338,166,2,17,,,,DISCHARGED -4339,2021-10-19,35708.18007719289,263,Urgent,2021-11-15,Abnormal,4339,289,1,16,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -4340,2020-11-27,39551.35023961004,115,Urgent,2020-11-29,Normal,4340,439,4,11,,,,DISCHARGED -4341,2019-06-20,22267.580836393427,295,Emergency,2019-07-16,Abnormal,4341,155,0,2,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4342,2021-11-13,25610.641822608864,189,Urgent,2021-12-07,Abnormal,4342,420,1,26,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -4343,2021-06-19,25161.09221380417,467,Urgent,2021-07-18,Normal,4343,6,3,4,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4344,2023-06-02,7242.527715213313,289,Urgent,2023-06-12,Normal,4344,195,3,6,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4345,2019-02-08,47705.1670284061,265,Elective,2019-03-01,Abnormal,4345,420,1,9,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -4346,2021-01-21,29231.557651026604,119,Elective,2021-02-05,Normal,4346,55,3,9,,,,DISCHARGED -4346,2023-01-16,37265.96712700602,399,Elective,2023-02-10,Abnormal,6063,320,1,18,,,,DISCHARGED -4347,2021-02-10,35832.3273784627,411,Urgent,2021-03-12,Inconclusive,4347,192,0,24,,,,DISCHARGED -4348,2020-10-13,30277.40585901309,321,Emergency,2020-11-09,Inconclusive,4348,46,1,25,,,,DISCHARGED -4349,2022-10-15,22026.30786674351,382,Urgent,2022-11-04,Inconclusive,4349,147,4,27,,,,DISCHARGED -4350,2021-05-02,1731.5255035080518,130,Emergency,2021-05-21,Inconclusive,4350,274,4,3,,,,DISCHARGED -4351,2021-12-01,20356.31133973265,399,Elective,2021-12-14,Normal,4351,156,2,9,,,,DISCHARGED -4352,2022-03-18,27688.42981583521,156,Urgent,2022-04-14,Inconclusive,4352,201,3,17,,,,DISCHARGED -4353,2021-08-20,7329.299437156995,197,Elective,2021-09-10,Normal,4353,443,3,2,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,DISCHARGED -4353,2023-05-21,9672.394449011888,287,Elective,,Inconclusive,7923,401,1,20,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,OPEN -4354,2020-05-09,31550.677475915312,218,Elective,2020-05-21,Inconclusive,4354,475,3,2,,,,DISCHARGED -4354,2020-11-14,20604.733184173358,310,Urgent,2020-11-15,Normal,6816,418,4,4,Unexplained weight gain or loss,"Investigation for underlying medical conditions, nutritional support, and treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4355,2021-10-22,5415.651952770905,162,Elective,2021-11-17,Inconclusive,4355,426,0,15,,,,DISCHARGED -4356,2023-05-05,25894.759750815545,339,Emergency,,Abnormal,4356,494,1,19,,,,OPEN -4357,2023-02-15,19349.60945862319,364,Emergency,2023-03-12,Inconclusive,4357,478,3,12,,,,DISCHARGED -4358,2021-06-01,30465.331300052203,189,Emergency,2021-06-06,Normal,4358,474,4,10,,,,DISCHARGED -4359,2022-12-07,24921.537784504195,396,Elective,2022-12-25,Normal,4359,125,2,25,,,,DISCHARGED -4360,2021-06-03,8447.95452753493,169,Emergency,2021-06-19,Abnormal,4360,394,3,12,,,,DISCHARGED -4361,2023-01-11,1832.0151060544997,227,Emergency,2023-02-07,Inconclusive,4361,304,0,18,,,,DISCHARGED -4362,2022-08-21,23456.38304679709,297,Emergency,2022-09-01,Inconclusive,4362,368,0,27,,,,DISCHARGED -4363,2019-06-05,27265.8109882696,220,Urgent,2019-06-09,Inconclusive,4363,293,3,5,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -4364,2020-07-09,29378.974907449112,297,Urgent,2020-08-07,Inconclusive,4364,63,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4365,2019-04-15,19995.01990750893,341,Emergency,2019-04-25,Abnormal,4365,324,4,12,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -4366,2020-06-20,25200.217214218264,268,Emergency,2020-06-24,Normal,4366,391,3,27,,,,DISCHARGED -4367,2019-06-27,5100.061769330424,376,Emergency,2019-07-18,Normal,4367,417,2,3,,,,DISCHARGED -4368,2022-05-13,23953.529215111303,328,Urgent,2022-06-03,Inconclusive,4368,175,4,24,,,,DISCHARGED -4369,2023-05-20,17503.608156803177,167,Emergency,2023-05-22,Abnormal,4369,115,1,21,,,,DISCHARGED -4370,2023-10-07,17919.965440810436,444,Emergency,2023-10-26,Inconclusive,4370,439,2,4,,,,DISCHARGED -4371,2020-04-05,9973.81025986173,106,Emergency,2020-04-24,Inconclusive,4371,203,4,18,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4372,2022-05-08,46506.66343698101,326,Emergency,2022-06-04,Inconclusive,4372,485,4,4,,,,DISCHARGED -4373,2022-02-27,38062.53382935073,479,Urgent,2022-03-08,Abnormal,4373,320,0,20,,,,DISCHARGED -4374,2019-09-14,11005.824428448836,243,Elective,2019-10-03,Inconclusive,4374,30,4,13,,,,DISCHARGED -4375,2022-11-19,8813.62907307536,450,Elective,2022-12-17,Abnormal,4375,387,2,27,Persistent itching without rash,"Identification and treatment of underlying causes, antihistamines, and skin moisturizers.",L20 - Atopic dermatitis,DISCHARGED -4376,2022-12-14,6256.260024722372,227,Elective,2022-12-24,Abnormal,4376,112,3,27,,,,DISCHARGED -4377,2020-11-10,20755.424386043025,226,Emergency,2020-11-27,Abnormal,4377,364,2,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -4378,2023-06-26,44702.2294255068,117,Emergency,2023-07-22,Normal,4378,433,1,11,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -4379,2019-09-28,3523.108424161931,329,Elective,2019-10-03,Abnormal,4379,324,4,5,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4380,2021-08-11,30950.932798176626,410,Emergency,2021-08-20,Inconclusive,4380,413,4,18,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4381,2023-03-13,7627.089773741499,378,Urgent,2023-03-26,Inconclusive,4381,375,4,9,,,,DISCHARGED -4382,2021-11-05,14334.332944057904,433,Urgent,2021-11-12,Abnormal,4382,343,4,0,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -4382,2020-02-28,19852.09443330943,157,Elective,2020-03-21,Abnormal,5783,442,0,22,,,,DISCHARGED -4383,2021-07-08,45030.67622566485,391,Urgent,2021-07-09,Inconclusive,4383,66,0,22,,,,DISCHARGED -4384,2020-05-13,20030.9052267636,458,Emergency,2020-05-24,Normal,4384,74,3,27,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4385,2019-02-03,36698.79270164852,124,Urgent,2019-02-04,Inconclusive,4385,44,4,15,,,,DISCHARGED -4386,2019-05-13,6225.450437333625,340,Urgent,2019-06-01,Inconclusive,4386,259,1,3,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -4387,2021-09-29,21060.9831600596,118,Emergency,2021-10-27,Normal,4387,153,3,8,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -4388,2019-03-16,27800.773986255903,196,Urgent,2019-03-23,Abnormal,4388,154,4,27,,,,DISCHARGED -4388,2021-09-01,18232.71602861017,370,Elective,2021-09-07,Inconclusive,5713,429,0,17,,,,DISCHARGED -4389,2020-10-28,3539.9385841968674,478,Urgent,2020-11-16,Abnormal,4389,362,1,28,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -4390,2021-04-27,10168.200329414873,118,Emergency,2021-05-04,Abnormal,4390,447,3,16,,,,DISCHARGED -4391,2021-03-22,31116.497540167296,165,Emergency,2021-04-03,Inconclusive,4391,474,1,14,,,,DISCHARGED -4391,2022-02-07,7804.669689924318,437,Elective,2022-03-09,Abnormal,5651,233,4,18,,,,DISCHARGED -4392,2020-02-11,41806.082572882086,398,Urgent,2020-02-25,Inconclusive,4392,50,2,6,,,,DISCHARGED -4393,2019-03-22,5204.054151529353,284,Urgent,2019-04-03,Abnormal,4393,305,1,24,,,,DISCHARGED -4394,2020-12-25,7195.877918443856,227,Emergency,2021-01-09,Normal,4394,261,1,17,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -4395,2020-03-01,27861.542729318564,376,Urgent,2020-03-10,Abnormal,4395,314,0,5,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4396,2020-06-26,46345.30326940602,325,Urgent,2020-07-15,Abnormal,4396,124,4,18,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -4397,2019-12-15,4995.137208069622,392,Emergency,2019-12-31,Abnormal,4397,398,1,20,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4398,2021-01-27,42761.45755100102,433,Urgent,2021-02-19,Inconclusive,4398,244,4,11,,,,DISCHARGED -4399,2023-07-18,15393.627634448116,342,Emergency,,Abnormal,4399,29,0,24,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4401,2023-08-13,23931.377859476062,140,Emergency,2023-08-28,Normal,4401,425,4,2,,,,DISCHARGED -4402,2023-01-16,12743.477429714816,279,Urgent,2023-01-25,Normal,4402,484,0,0,,,,DISCHARGED -4403,2019-04-20,6971.796379841849,382,Urgent,2019-05-06,Normal,4403,121,0,4,,,,DISCHARGED -4404,2019-05-04,30514.77427930134,346,Elective,2019-05-09,Normal,4404,124,3,0,,,,DISCHARGED -4405,2022-12-29,33237.41370971693,282,Urgent,2023-01-11,Normal,4405,36,4,7,,,,DISCHARGED -4406,2022-03-14,7545.227841574843,104,Urgent,2022-03-18,Normal,4406,169,2,6,,,,DISCHARGED -4407,2023-01-14,8818.30529042214,466,Emergency,,Abnormal,4407,123,3,14,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",OPEN -4408,2023-05-19,13431.83118808665,369,Emergency,2023-06-01,Normal,4408,356,0,10,,,,DISCHARGED -4409,2022-12-21,16265.026219937852,256,Emergency,2023-01-10,Inconclusive,4409,34,2,17,,,,DISCHARGED -4410,2019-03-10,31379.52894496659,264,Elective,2019-04-03,Normal,4410,86,1,13,,,,DISCHARGED -4411,2020-06-04,31392.95177820389,248,Elective,2020-06-16,Normal,4411,133,1,26,,,,DISCHARGED -4412,2020-06-02,18926.59341089205,323,Urgent,2020-06-16,Abnormal,4412,195,3,8,,,,DISCHARGED -4413,2019-11-07,20200.02710137315,405,Elective,2019-11-12,Inconclusive,4413,273,2,4,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -4414,2022-01-10,47747.30883557917,264,Elective,2022-02-07,Normal,4414,200,4,22,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4415,2021-04-04,31646.14112892792,189,Elective,2021-04-21,Abnormal,4415,368,2,3,,,,DISCHARGED -4416,2022-03-24,10267.73744733062,498,Emergency,2022-04-18,Inconclusive,4416,284,3,11,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4417,2023-09-01,34611.02570513875,110,Urgent,2023-09-23,Normal,4417,76,4,28,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -4418,2022-10-15,31143.273416157677,392,Urgent,2022-11-03,Inconclusive,4418,58,4,0,,,,DISCHARGED -4419,2020-10-16,5096.993248083081,488,Elective,2020-10-28,Normal,4419,430,1,29,,,,DISCHARGED -4420,2022-03-27,15450.181899934913,384,Emergency,2022-04-09,Abnormal,4420,125,2,23,,,,DISCHARGED -4421,2022-09-27,27125.115103301843,251,Urgent,2022-10-05,Normal,4421,499,4,12,,,,DISCHARGED -4422,2022-05-03,12413.624375217842,246,Emergency,2022-05-08,Normal,4422,400,3,0,,,,DISCHARGED -4422,2019-12-19,7490.139532125952,480,Elective,2019-12-29,Normal,9163,108,1,2,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -4423,2020-07-27,6626.495446958939,334,Emergency,2020-08-09,Normal,4423,223,4,21,,,,DISCHARGED -4424,2020-09-27,21923.915119217207,162,Elective,2020-10-19,Normal,4424,495,2,7,,,,DISCHARGED -4425,2019-07-28,48575.77056413398,140,Elective,2019-08-12,Inconclusive,4425,277,1,23,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4426,2019-09-05,49208.375751772895,182,Urgent,2019-10-04,Abnormal,4426,67,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -4427,2021-04-03,15918.3717316954,232,Urgent,2021-05-03,Inconclusive,4427,68,2,24,,,,DISCHARGED -4429,2020-07-19,31828.35309782192,195,Emergency,2020-08-12,Normal,4429,164,2,15,,,,DISCHARGED -4430,2020-09-29,37712.09461833694,166,Emergency,2020-10-19,Abnormal,4430,488,1,19,,,,DISCHARGED -4431,2020-09-13,35700.222086352056,231,Elective,2020-09-14,Inconclusive,4431,304,4,19,,,,DISCHARGED -4432,2019-12-19,8354.797981984048,210,Elective,2020-01-09,Normal,4432,396,0,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4432,2020-04-19,9772.324284965773,316,Urgent,2020-05-05,Inconclusive,7598,161,4,15,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4433,2019-08-24,7467.614580793222,218,Elective,2019-08-29,Abnormal,4433,364,1,1,,,,DISCHARGED -4433,2022-07-10,26636.972886879517,478,Emergency,2022-07-27,Abnormal,4543,341,0,16,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4433,2020-02-16,3365.150668858322,271,Urgent,2020-02-17,Inconclusive,4770,308,0,9,,,,DISCHARGED -4434,2021-02-22,24925.824078379228,210,Urgent,2021-02-28,Inconclusive,4434,378,0,6,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -4435,2020-06-18,13435.59008309526,300,Urgent,2020-07-03,Normal,4435,342,3,26,,,,DISCHARGED -4436,2019-11-18,15350.200623017585,231,Emergency,2019-12-08,Inconclusive,4436,434,1,9,,,,DISCHARGED -4437,2019-05-07,6371.663537289802,338,Elective,2019-05-26,Normal,4437,386,3,18,,,,DISCHARGED -4438,2022-03-08,4200.251623354856,230,Emergency,2022-03-12,Abnormal,4438,41,0,19,,,,DISCHARGED -4439,2019-10-03,23765.677780833164,322,Emergency,2019-10-28,Abnormal,4439,353,3,26,,,,DISCHARGED -4440,2018-12-04,19142.010715290427,342,Urgent,2018-12-14,Normal,4440,415,3,8,,,,DISCHARGED -4441,2019-10-25,37057.66135441675,267,Emergency,2019-11-14,Normal,4441,108,1,21,,,,DISCHARGED -4442,2021-04-22,38614.42894243093,467,Elective,2021-04-24,Normal,4442,50,2,29,,,,DISCHARGED -4443,2020-05-07,33709.32427903023,465,Emergency,2020-06-03,Abnormal,4443,249,3,16,,,,DISCHARGED -4444,2020-05-13,17498.810293214898,495,Emergency,2020-06-01,Inconclusive,4444,496,3,8,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4444,2021-07-23,33142.01664289726,313,Elective,2021-08-09,Inconclusive,6456,340,0,8,,,,DISCHARGED -4445,2022-06-16,20368.297749051817,326,Elective,2022-07-02,Abnormal,4445,429,0,4,,,,DISCHARGED -4447,2021-04-17,47107.54885259315,276,Emergency,2021-05-13,Abnormal,4447,382,0,23,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4448,2021-01-05,42190.66732224067,407,Urgent,2021-01-22,Abnormal,4448,491,4,6,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -4449,2019-03-18,25954.48507862245,283,Elective,2019-04-06,Normal,4449,20,3,10,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -4450,2019-05-28,12239.862943311624,334,Elective,2019-06-09,Abnormal,4450,299,0,7,,,,DISCHARGED -4451,2023-02-15,47837.6734548495,234,Elective,,Normal,4451,138,1,24,,,,OPEN -4452,2022-08-31,2499.408861073847,348,Elective,2022-09-11,Normal,4452,358,4,13,,,,DISCHARGED -4453,2021-12-23,1127.8006675541212,132,Urgent,2022-01-10,Normal,4453,323,2,1,,,,DISCHARGED -4454,2021-10-31,2857.308207950002,436,Emergency,2021-11-20,Inconclusive,4454,498,3,9,,,,DISCHARGED -4455,2021-05-05,4222.299420689984,438,Emergency,2021-05-07,Abnormal,4455,384,3,20,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -4457,2020-06-19,49275.4942371825,268,Urgent,2020-07-13,Normal,4457,91,1,23,,,,DISCHARGED -4458,2023-08-07,29031.596113350173,496,Emergency,2023-08-23,Inconclusive,4458,446,2,15,,,,DISCHARGED -4459,2019-09-22,12963.365015682575,491,Elective,2019-10-06,Normal,4459,279,2,15,,,,DISCHARGED -4460,2023-10-17,14573.728385426337,456,Emergency,2023-11-16,Normal,4460,124,4,18,,,,DISCHARGED -4461,2022-03-17,12980.334123141804,139,Elective,2022-03-29,Normal,4461,482,3,26,,,,DISCHARGED -4462,2022-08-11,22670.96598164515,301,Elective,2022-09-06,Normal,4462,396,0,10,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -4463,2018-11-17,45191.27941701784,469,Elective,2018-11-23,Normal,4463,110,1,5,,,,DISCHARGED -4464,2022-12-01,23039.507799399216,226,Emergency,2022-12-05,Inconclusive,4464,353,1,5,,,,DISCHARGED -4465,2018-12-09,47003.79011452799,395,Emergency,2018-12-22,Inconclusive,4465,138,1,6,,,,DISCHARGED -4466,2023-01-14,33307.0498865359,406,Urgent,2023-02-02,Inconclusive,4466,483,1,15,,,,DISCHARGED -4467,2019-01-12,44092.48303031251,478,Elective,2019-01-16,Abnormal,4467,434,0,12,,,,DISCHARGED -4468,2023-04-16,2591.7081686510664,188,Emergency,2023-05-13,Normal,4468,272,0,26,,,,DISCHARGED -4469,2023-02-04,35263.9176631998,460,Elective,,Abnormal,4469,98,4,2,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",OPEN -4471,2019-05-15,23882.725270582763,420,Urgent,2019-05-21,Normal,4471,251,3,23,,,,DISCHARGED -4472,2021-03-11,17207.253555634008,224,Elective,2021-03-20,Inconclusive,4472,337,0,23,,,,DISCHARGED -4473,2021-07-26,21499.069492487324,229,Emergency,2021-08-23,Normal,4473,103,4,8,,,,DISCHARGED -4474,2022-10-13,10991.026864154508,221,Urgent,2022-10-20,Inconclusive,4474,213,2,23,,,,DISCHARGED -4475,2022-05-02,18263.87344831174,243,Elective,2022-05-10,Normal,4475,248,3,2,,,,DISCHARGED -4476,2020-04-14,33083.66725122396,389,Elective,2020-05-03,Inconclusive,4476,151,0,5,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -4477,2019-06-28,9721.912877616378,352,Urgent,2019-07-26,Abnormal,4477,249,2,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4478,2018-12-27,8762.367761079327,244,Urgent,2019-01-24,Normal,4478,274,4,16,,,,DISCHARGED -4479,2023-10-20,23226.34846264999,496,Urgent,,Abnormal,4479,164,0,2,,,,OPEN -4480,2021-01-30,2977.07436432303,421,Elective,2021-02-11,Normal,4480,486,0,1,,,,DISCHARGED -4481,2021-08-15,4251.696251632491,373,Elective,2021-08-28,Abnormal,4481,340,2,11,,,,DISCHARGED -4481,2020-07-28,40170.823711453966,191,Elective,2020-08-09,Normal,6185,7,0,23,,,,DISCHARGED -4482,2021-03-15,36111.82991398725,283,Emergency,2021-03-18,Inconclusive,4482,283,1,5,,,,DISCHARGED -4483,2019-01-02,49125.20266615342,261,Urgent,2019-01-17,Abnormal,4483,4,0,9,,,,DISCHARGED -4484,2021-04-26,41540.56126317295,186,Elective,2021-05-03,Normal,4484,144,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4485,2023-04-01,44846.63056158742,193,Urgent,2023-04-20,Normal,4485,100,2,15,,,,DISCHARGED -4486,2019-07-08,43779.49013669462,255,Emergency,2019-07-11,Inconclusive,4486,163,3,26,,,,DISCHARGED -4487,2022-12-10,18805.682518713733,437,Elective,2022-12-23,Normal,4487,373,4,15,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -4488,2023-03-11,33522.73368620645,285,Urgent,2023-03-24,Abnormal,4488,146,3,23,,,,DISCHARGED -4489,2020-09-28,37348.94716171345,327,Urgent,2020-10-18,Inconclusive,4489,63,1,17,,,,DISCHARGED -4490,2021-02-16,17761.66757898211,468,Emergency,2021-03-04,Abnormal,4490,90,1,26,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4490,2019-10-03,18075.23603612658,136,Urgent,2019-10-13,Abnormal,6112,116,3,21,,,,DISCHARGED -4491,2022-06-29,16714.53183436588,171,Emergency,2022-07-27,Normal,4491,353,4,22,,,,DISCHARGED -4492,2019-12-26,29556.96238052217,263,Elective,2020-01-16,Inconclusive,4492,266,0,23,,,,DISCHARGED -4493,2020-12-23,42296.03842471463,471,Urgent,2021-01-22,Inconclusive,4493,309,1,8,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -4493,2020-10-05,3983.852296893284,196,Elective,2020-10-15,Normal,8340,172,3,20,,,,DISCHARGED -4495,2021-02-08,18685.722484901584,426,Elective,2021-02-09,Abnormal,4495,46,3,26,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -4496,2023-07-27,7987.055974098221,224,Emergency,2023-08-16,Abnormal,4496,139,3,18,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -4497,2021-09-27,1517.374190621968,474,Elective,2021-10-20,Abnormal,4497,245,0,1,,,,DISCHARGED -4498,2022-05-27,28545.476437413592,376,Elective,2022-06-09,Normal,4498,148,2,23,,,,DISCHARGED -4499,2020-06-22,17382.217278808675,167,Emergency,2020-07-21,Normal,4499,245,4,0,,,,DISCHARGED -4500,2020-01-03,4407.307351655626,107,Urgent,2020-01-18,Inconclusive,4500,394,2,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -4501,2023-05-13,17419.282793158593,459,Elective,,Normal,4501,486,4,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",OPEN -4502,2022-12-19,8873.290554311148,426,Emergency,2023-01-07,Inconclusive,4502,475,4,21,,,,DISCHARGED -4503,2021-06-09,32046.057457555293,274,Elective,2021-06-13,Abnormal,4503,4,3,17,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -4504,2020-05-24,3165.2182556421058,242,Urgent,2020-06-10,Inconclusive,4504,464,1,2,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4505,2020-05-27,8570.828456565887,141,Urgent,2020-06-21,Abnormal,4505,183,3,23,,,,DISCHARGED -4506,2018-12-02,4389.044718202802,241,Urgent,2018-12-09,Normal,4506,19,0,0,,,,DISCHARGED -4507,2020-05-19,9542.995188583096,190,Emergency,2020-06-02,Abnormal,4507,424,4,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -4508,2019-09-12,37292.07364445765,425,Elective,2019-10-04,Abnormal,4508,45,1,18,,,,DISCHARGED -4509,2021-05-31,49810.97484127671,297,Elective,2021-06-18,Normal,4509,11,4,21,,,,DISCHARGED -4510,2022-01-24,48768.012589720696,313,Emergency,2022-02-11,Normal,4510,69,4,18,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -4511,2019-10-24,7618.909224262197,232,Elective,2019-11-01,Normal,4511,16,3,10,,,,DISCHARGED -4512,2021-02-11,30669.09883679151,178,Urgent,2021-02-14,Normal,4512,370,1,26,,,,DISCHARGED -4514,2022-12-02,9741.612926671376,348,Emergency,2022-12-14,Normal,4514,146,1,7,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4515,2020-12-25,31725.73633768527,375,Elective,2021-01-16,Inconclusive,4515,153,4,4,,,,DISCHARGED -4516,2019-09-22,33729.92040345424,243,Urgent,2019-10-22,Abnormal,4516,303,1,19,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -4517,2020-12-16,34247.59069887079,328,Emergency,2020-12-24,Inconclusive,4517,107,1,8,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",DISCHARGED -4518,2022-01-26,44519.8023165431,498,Urgent,2022-02-18,Abnormal,4518,235,3,14,,,,DISCHARGED -4518,2019-01-10,49473.95228056956,126,Emergency,2019-01-28,Normal,6440,307,2,20,,,,DISCHARGED -4519,2020-03-30,48259.75280582012,256,Elective,2020-04-06,Normal,4519,351,0,27,,,,DISCHARGED -4520,2020-11-16,29937.092507237143,475,Urgent,2020-11-23,Normal,4520,69,2,13,,,,DISCHARGED -4521,2020-09-17,25425.653864545395,262,Emergency,2020-10-05,Abnormal,4521,182,1,3,,,,DISCHARGED -4522,2022-06-04,33255.92060113499,257,Elective,2022-06-13,Abnormal,4522,249,4,23,,,,DISCHARGED -4523,2023-10-04,20107.701604169528,428,Emergency,,Inconclusive,4523,227,0,23,,,,OPEN -4524,2022-12-06,26234.578358737912,132,Elective,2022-12-30,Normal,4524,101,0,7,Pain in the lower left abdomen,"Identification and treatment of underlying causes, such as gastrointestinal or gynecological issues. Medications, dietary changes, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -4525,2022-04-06,29879.330033826845,102,Elective,2022-05-02,Normal,4525,74,4,19,,,,DISCHARGED -4526,2019-07-19,5356.255236997056,361,Urgent,2019-08-08,Normal,4526,416,0,28,,,,DISCHARGED -4526,2020-10-27,47216.045086621605,129,Emergency,2020-11-03,Inconclusive,9806,445,4,16,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4527,2019-08-29,37616.93573000845,213,Urgent,2019-09-26,Abnormal,4527,215,0,1,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -4528,2022-12-18,10047.22220693118,384,Elective,2022-12-30,Abnormal,4528,406,2,19,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -4529,2022-02-16,25160.410306873688,210,Urgent,2022-03-01,Abnormal,4529,398,0,15,,,,DISCHARGED -4530,2022-06-27,34229.89909452161,186,Urgent,2022-07-13,Abnormal,4530,410,3,9,,,,DISCHARGED -4531,2023-08-21,2883.572594191613,203,Elective,2023-09-17,Normal,4531,202,4,1,,,,DISCHARGED -4532,2019-01-21,7475.236164237298,436,Emergency,2019-02-12,Inconclusive,4532,191,0,10,,,,DISCHARGED -4533,2020-10-26,12125.448819720452,332,Urgent,2020-10-27,Inconclusive,4533,248,4,9,,,,DISCHARGED -4535,2022-02-18,22855.262757371554,394,Elective,2022-02-28,Normal,4535,498,3,29,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -4536,2021-08-13,10481.377326245043,498,Elective,2021-09-11,Abnormal,4536,241,0,29,,,,DISCHARGED -4537,2019-10-18,20901.927061815142,210,Emergency,2019-11-13,Abnormal,4537,464,0,18,,,,DISCHARGED -4537,2020-05-13,46951.83901810505,137,Emergency,2020-06-01,Inconclusive,4642,178,3,24,,,,DISCHARGED -4537,2023-10-23,43617.18143865926,469,Elective,2023-11-06,Abnormal,6273,436,3,24,,,,DISCHARGED -4538,2022-11-23,29054.21275907943,436,Urgent,2022-12-18,Abnormal,4538,461,3,13,,,,DISCHARGED -4539,2020-10-15,15746.240941215614,411,Emergency,2020-11-04,Normal,4539,218,4,10,,,,DISCHARGED -4540,2020-10-13,36227.96541973062,277,Emergency,2020-10-23,Normal,4540,81,3,8,,,,DISCHARGED -4541,2021-07-04,47105.87551738357,275,Urgent,2021-07-21,Abnormal,4541,91,4,6,,,,DISCHARGED -4542,2021-05-02,17131.71267959819,165,Emergency,2021-05-17,Abnormal,4542,434,2,14,,,,DISCHARGED -4544,2023-08-22,10783.038409454231,326,Urgent,2023-08-29,Normal,4544,174,0,19,,,,DISCHARGED -4545,2021-08-27,43386.57664992245,195,Emergency,2021-09-04,Abnormal,4545,238,0,16,,,,DISCHARGED -4546,2021-02-25,4123.760053774291,277,Emergency,2021-02-27,Abnormal,4546,259,1,2,,,,DISCHARGED -4547,2021-09-14,13245.662353684767,235,Emergency,2021-10-04,Inconclusive,4547,390,2,14,,,,DISCHARGED -4548,2021-10-22,11976.516434679506,454,Emergency,2021-11-02,Abnormal,4548,364,3,13,,,,DISCHARGED -4549,2019-06-25,35546.882709673904,364,Urgent,2019-07-20,Abnormal,4549,162,3,7,,,,DISCHARGED -4550,2020-05-12,2074.0273259648347,212,Urgent,2020-05-28,Abnormal,4550,47,2,3,,,,DISCHARGED -4551,2019-09-29,35167.30933193421,500,Urgent,2019-10-03,Normal,4551,328,3,25,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -4552,2020-07-29,49509.152180348654,327,Urgent,2020-08-20,Abnormal,4552,327,1,9,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4553,2019-03-09,24886.950573386453,476,Urgent,2019-03-11,Abnormal,4553,115,4,1,,,,DISCHARGED -4555,2020-02-12,40850.90196457679,402,Urgent,2020-02-15,Inconclusive,4555,428,0,13,,,,DISCHARGED -4556,2019-05-24,17119.74349325446,304,Elective,2019-06-07,Abnormal,4556,336,2,7,,,,DISCHARGED -4557,2020-11-19,43543.8502818424,466,Elective,2020-11-29,Inconclusive,4557,336,0,22,,,,DISCHARGED -4558,2019-03-05,40920.74277308268,328,Elective,2019-03-16,Inconclusive,4558,368,4,26,,,,DISCHARGED -4559,2021-04-26,11052.423071444444,157,Elective,2021-05-24,Abnormal,4559,224,2,9,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -4560,2019-12-29,28184.129261670747,176,Elective,2020-01-13,Abnormal,4560,351,4,24,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -4561,2021-10-19,42878.86184837214,118,Urgent,2021-11-08,Normal,4561,327,3,17,,,,DISCHARGED -4562,2019-09-10,15671.288421498482,143,Urgent,2019-10-03,Inconclusive,4562,146,3,14,,,,DISCHARGED -4563,2020-09-15,32300.56039866222,413,Elective,2020-09-17,Inconclusive,4563,62,3,4,,,,DISCHARGED -4564,2023-02-24,16959.56491618068,346,Elective,2023-03-17,Abnormal,4564,293,4,21,,,,DISCHARGED -4565,2020-11-09,3466.915756725062,245,Urgent,2020-11-16,Normal,4565,322,4,12,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -4566,2020-09-03,38719.1525572021,187,Emergency,2020-09-07,Abnormal,4566,442,4,17,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2021-06-08,3194.218070064404,459,Elective,2021-07-07,Inconclusive,4567,324,0,1,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -4567,2022-12-02,26943.713030411025,404,Urgent,2022-12-13,Abnormal,4975,12,4,12,,,,DISCHARGED -4567,2019-06-26,4216.037126327004,404,Emergency,2019-07-20,Normal,5266,430,3,29,,,,DISCHARGED -4568,2021-11-23,9726.264978540356,463,Emergency,2021-12-11,Normal,4568,493,1,13,,,,DISCHARGED -4569,2019-08-02,48242.5473545515,198,Elective,2019-08-29,Normal,4569,188,4,9,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -4570,2019-07-18,8637.789364548236,250,Emergency,2019-07-22,Inconclusive,4570,286,1,29,,,,DISCHARGED -4571,2021-09-27,15513.271166735283,247,Urgent,2021-10-24,Normal,4571,207,3,3,,,,DISCHARGED -4572,2023-06-14,6033.70063734597,235,Urgent,2023-06-30,Abnormal,4572,113,4,14,,,,DISCHARGED -4573,2023-04-10,14499.431904675448,297,Emergency,2023-04-30,Normal,4573,479,0,7,,,,DISCHARGED -4573,2022-10-06,27367.82222400113,121,Emergency,2022-10-19,Abnormal,8786,21,0,14,,,,DISCHARGED -4574,2023-07-30,21893.431554867693,312,Elective,2023-08-15,Inconclusive,4574,348,1,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -4576,2022-08-21,6467.661812370537,223,Emergency,2022-09-04,Inconclusive,4576,213,0,28,,,,DISCHARGED -4577,2021-03-02,2723.2795083136016,152,Urgent,2021-03-15,Abnormal,4577,170,0,26,,,,DISCHARGED -4579,2023-05-30,24065.78149745237,171,Urgent,2023-06-22,Inconclusive,4579,322,0,20,,,,DISCHARGED -4580,2022-04-09,41998.08667359672,204,Urgent,2022-04-11,Normal,4580,53,3,8,,,,DISCHARGED -4581,2018-11-16,32850.871461053015,490,Elective,2018-12-14,Abnormal,4581,393,0,19,,,,DISCHARGED -4581,2023-01-18,32458.96718542279,210,Urgent,,Abnormal,6020,297,2,2,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -4582,2021-06-04,5773.63087809166,310,Emergency,2021-06-15,Normal,4582,319,4,25,,,,DISCHARGED -4583,2021-11-23,10310.471678156457,328,Emergency,2021-12-23,Normal,4583,125,0,14,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4584,2019-05-03,1445.718720752216,255,Urgent,2019-05-25,Abnormal,4584,276,0,23,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4585,2023-05-23,8940.967815226999,373,Urgent,2023-06-20,Normal,4585,463,0,16,,,,DISCHARGED -4586,2019-08-04,2651.698614970652,289,Elective,2019-08-28,Inconclusive,4586,203,2,24,,,,DISCHARGED -4587,2019-09-26,18752.729203038256,468,Urgent,2019-10-19,Inconclusive,4587,193,0,15,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -4588,2021-07-28,37900.29716889033,414,Elective,2021-08-22,Normal,4588,168,0,3,,,,DISCHARGED -4589,2021-11-23,16703.431059432303,237,Urgent,2021-12-01,Inconclusive,4589,151,4,10,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4590,2022-08-24,4074.530633213811,251,Elective,2022-09-05,Normal,4590,34,2,24,,,,DISCHARGED -4591,2021-05-07,14629.79665001082,438,Urgent,2021-06-02,Inconclusive,4591,183,2,7,,,,DISCHARGED -4592,2022-12-04,10078.8283919974,252,Urgent,2022-12-27,Abnormal,4592,285,0,2,,,,DISCHARGED -4594,2022-05-26,23659.45858434306,195,Urgent,2022-06-16,Inconclusive,4594,56,2,18,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -4594,2023-08-09,3201.843306864934,246,Emergency,2023-09-06,Normal,7025,221,1,13,,,,DISCHARGED -4595,2022-12-24,48807.37969798211,472,Emergency,2023-01-17,Normal,4595,302,2,8,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4596,2023-06-09,18765.57283251435,298,Urgent,2023-06-25,Inconclusive,4596,162,2,2,,,,DISCHARGED -4597,2023-05-11,25496.85632147278,272,Urgent,2023-05-19,Normal,4597,18,2,3,,,,DISCHARGED -4598,2022-05-01,19455.796449161637,327,Emergency,2022-05-07,Abnormal,4598,369,3,24,,,,DISCHARGED -4599,2019-11-02,42025.19541210112,269,Elective,2019-11-04,Normal,4599,263,3,27,,,,DISCHARGED -4600,2018-11-01,7137.817190758252,412,Emergency,2018-11-23,Normal,4600,281,3,3,,,,DISCHARGED -4601,2022-09-07,7302.4921125496,348,Emergency,2022-09-13,Normal,4601,112,2,10,,,,DISCHARGED -4602,2022-02-23,11186.601370981183,156,Emergency,2022-03-14,Inconclusive,4602,487,1,18,,,,DISCHARGED -4603,2019-10-05,48372.165825946926,371,Elective,2019-10-16,Inconclusive,4603,326,2,29,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -4604,2022-03-08,34701.34962056766,383,Elective,2022-04-01,Normal,4604,29,0,15,,,,DISCHARGED -4605,2020-10-17,1334.709205265342,334,Emergency,2020-10-19,Abnormal,4605,134,1,22,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4606,2023-08-13,12757.647684774678,282,Emergency,,Inconclusive,4606,66,3,21,,,,OPEN -4607,2021-07-20,12143.670786515182,134,Emergency,2021-08-16,Normal,4607,64,4,16,,,,DISCHARGED -4608,2020-05-19,47700.41315513925,275,Urgent,2020-05-31,Inconclusive,4608,291,1,29,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4609,2021-09-11,30929.573359795668,330,Elective,2021-10-03,Abnormal,4609,24,3,9,,,,DISCHARGED -4610,2022-07-11,30345.85897579822,322,Urgent,2022-07-27,Abnormal,4610,36,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -4611,2019-06-09,25727.852473488365,400,Urgent,2019-06-13,Normal,4611,0,1,16,,,,DISCHARGED -4612,2022-09-23,41476.37571714626,362,Urgent,2022-10-01,Abnormal,4612,398,2,15,,,,DISCHARGED -4613,2021-01-28,13038.2775339914,163,Urgent,2021-02-03,Inconclusive,4613,36,0,19,,,,DISCHARGED -4614,2019-04-05,30945.93132521213,474,Urgent,2019-04-06,Inconclusive,4614,140,4,21,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4615,2020-04-02,16573.279708302958,264,Emergency,2020-04-29,Inconclusive,4615,231,3,5,,,,DISCHARGED -4616,2020-01-17,30056.57252159981,182,Urgent,2020-02-13,Inconclusive,4616,135,1,6,,,,DISCHARGED -4617,2021-08-07,27679.145318382773,402,Emergency,2021-09-06,Inconclusive,4617,388,4,13,,,,DISCHARGED -4618,2021-08-02,46659.14394422412,200,Emergency,2021-08-27,Abnormal,4618,187,1,10,,,,DISCHARGED -4621,2020-08-03,40844.65779378396,156,Urgent,2020-08-08,Abnormal,4621,127,0,11,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4622,2023-03-07,9666.179054711774,189,Emergency,,Inconclusive,4622,200,4,13,,,,OPEN -4623,2021-05-19,37919.6305570231,289,Urgent,2021-06-14,Normal,4623,126,3,4,,,,DISCHARGED -4624,2022-11-17,18423.26862196146,120,Urgent,2022-12-05,Abnormal,4624,256,1,4,,,,DISCHARGED -4625,2020-10-18,21304.665630269945,186,Elective,2020-10-27,Inconclusive,4625,163,0,19,,,,DISCHARGED -4626,2022-03-04,43898.80373892993,310,Urgent,2022-03-16,Inconclusive,4626,34,4,21,,,,DISCHARGED -4627,2023-10-10,5123.249749925363,314,Emergency,2023-10-14,Normal,4627,193,1,22,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -4628,2020-01-19,34950.55993122609,289,Urgent,2020-02-17,Normal,4628,190,1,25,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -4629,2023-07-12,28906.59267243324,203,Urgent,2023-07-21,Normal,4629,103,3,14,,,,DISCHARGED -4630,2022-07-07,17438.857822071066,269,Emergency,2022-07-23,Abnormal,4630,22,0,25,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -4631,2020-04-12,36836.99374898194,430,Emergency,2020-05-11,Inconclusive,4631,264,2,0,,,,DISCHARGED -4631,2020-08-16,23161.26533076815,106,Elective,2020-09-10,Abnormal,7427,289,1,24,,,,DISCHARGED -4631,2021-02-18,38819.70570248209,195,Elective,2021-03-03,Normal,7980,429,4,29,,,,DISCHARGED -4632,2022-03-20,49904.30211773508,397,Emergency,2022-03-29,Abnormal,4632,461,3,23,,,,DISCHARGED -4634,2018-11-15,35429.717862718855,256,Urgent,2018-12-11,Inconclusive,4634,383,3,22,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -4635,2021-03-04,7804.657858949919,311,Urgent,2021-03-29,Inconclusive,4635,259,1,8,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4636,2022-01-18,11521.48994486875,392,Elective,2022-01-31,Abnormal,4636,413,1,2,,,,DISCHARGED -4637,2021-06-25,43475.25332634104,466,Emergency,2021-07-17,Normal,4637,478,1,25,,,,DISCHARGED -4638,2023-03-24,49617.33159628476,367,Emergency,2023-04-04,Normal,4638,357,2,3,,,,DISCHARGED -4639,2019-08-28,5659.610293308324,181,Elective,2019-09-15,Inconclusive,4639,74,1,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -4640,2021-11-19,17699.441632819613,469,Urgent,2021-11-22,Inconclusive,4640,354,0,6,,,,DISCHARGED -4643,2019-06-28,3537.1717401424075,155,Elective,2019-07-23,Abnormal,4643,71,4,21,,,,DISCHARGED -4644,2019-11-03,16825.634974977576,209,Emergency,2019-11-05,Inconclusive,4644,258,1,13,,,,DISCHARGED -4645,2022-06-21,32537.4287165864,370,Urgent,2022-07-04,Normal,4645,397,2,15,,,,DISCHARGED -4646,2021-06-30,25782.10950789528,105,Emergency,2021-07-06,Normal,4646,187,4,28,,,,DISCHARGED -4647,2020-01-26,47296.57689584642,305,Urgent,2020-02-21,Normal,4647,460,3,17,,,,DISCHARGED -4648,2022-06-16,4662.781475982576,129,Emergency,2022-06-26,Inconclusive,4648,172,1,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4649,2020-11-29,32637.180215150143,342,Emergency,2020-12-15,Normal,4649,479,4,15,,,,DISCHARGED -4649,2023-01-19,11618.098216284956,389,Urgent,2023-02-04,Normal,8074,289,3,1,,,,DISCHARGED -4650,2021-03-14,9187.83151388066,328,Urgent,2021-03-27,Abnormal,4650,44,2,9,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4651,2023-07-08,24436.414224647047,158,Urgent,,Normal,4651,60,0,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,OPEN -4651,2020-07-25,42784.6371812812,105,Elective,2020-08-08,Normal,8460,82,1,24,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -4652,2022-11-06,47753.55098965471,236,Urgent,2022-11-21,Inconclusive,4652,122,0,26,Reports a history of frequent heart palpitations.,Conduct a cardiovascular evaluation and assess for potential arrhythmias or other cardiac issues; recommend lifestyle changes or medications.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -4653,2019-08-31,47257.01418015723,383,Urgent,2019-09-03,Abnormal,4653,357,2,14,,,,DISCHARGED -4654,2019-09-02,11559.82913580272,308,Emergency,2019-09-29,Normal,4654,15,4,27,,,,DISCHARGED -4655,2023-06-02,10921.936250411662,271,Urgent,2023-06-25,Inconclusive,4655,65,4,8,,,,DISCHARGED -4656,2019-04-22,49371.11063644354,279,Emergency,2019-05-13,Abnormal,4656,423,2,6,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -4657,2019-04-23,41378.99118358502,172,Urgent,2019-05-11,Abnormal,4657,144,2,26,,,,DISCHARGED -4658,2021-12-25,30814.771544605635,229,Emergency,2021-12-28,Inconclusive,4658,374,1,23,Persistent sore throat,"Throat lozenges for symptomatic relief, antibiotics for bacterial infections, and lifestyle changes (hydration, avoiding irritants). Investigate and treat the underlying cause, which may include allergies, reflux, or viral infections. Follow-up to assess resolution of symptoms and address any persistent issues.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4659,2023-08-09,20200.325741384582,372,Emergency,,Inconclusive,4659,161,3,15,,,,OPEN -4660,2021-12-12,28247.76366107429,259,Urgent,2022-01-11,Normal,4660,233,0,25,,,,DISCHARGED -4660,2021-09-23,25337.18163832452,487,Urgent,2021-10-08,Normal,6737,379,0,2,,,,DISCHARGED -4661,2021-08-28,7639.263400500502,484,Emergency,2021-09-02,Normal,4661,143,4,16,,,,DISCHARGED -4662,2019-05-17,44385.98984681504,204,Emergency,2019-06-03,Abnormal,4662,357,4,22,,,,DISCHARGED -4663,2020-03-26,36169.46030924257,458,Emergency,2020-04-08,Inconclusive,4663,187,1,7,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4664,2022-12-31,22166.08306722026,430,Elective,2023-01-22,Normal,4664,321,2,1,,,,DISCHARGED -4665,2019-06-05,35802.00968811138,297,Emergency,2019-06-20,Normal,4665,449,0,24,,,,DISCHARGED -4666,2022-09-15,39564.57254804425,448,Elective,2022-10-07,Normal,4666,473,1,19,,,,DISCHARGED -4667,2019-09-26,16811.78896700462,460,Elective,2019-10-03,Normal,4667,12,4,25,,,,DISCHARGED -4668,2019-05-30,28363.972721781876,150,Elective,2019-06-24,Normal,4668,183,4,26,,,,DISCHARGED -4669,2020-06-29,13175.119191550191,498,Elective,2020-07-18,Inconclusive,4669,110,0,24,,,,DISCHARGED -4670,2021-08-05,45009.82730646055,189,Emergency,2021-08-30,Normal,4670,414,4,28,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4671,2020-12-21,41990.89215226928,167,Elective,2020-12-30,Abnormal,4671,289,4,2,,,,DISCHARGED -4672,2019-02-24,5637.003897501025,489,Elective,2019-03-14,Abnormal,4672,294,3,7,,,,DISCHARGED -4673,2020-04-28,39683.6893314112,205,Emergency,2020-04-30,Normal,4673,450,2,26,Frequent nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -4674,2021-06-09,24953.946760308914,280,Emergency,2021-07-02,Abnormal,4674,391,4,1,,,,DISCHARGED -4675,2022-05-26,41327.23543960617,142,Elective,2022-06-13,Abnormal,4675,214,3,29,,,,DISCHARGED -4676,2022-08-07,39834.47810092232,453,Urgent,2022-08-17,Inconclusive,4676,461,1,18,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -4677,2021-09-24,16922.56018127191,449,Urgent,2021-10-08,Abnormal,4677,119,4,16,,,,DISCHARGED -4678,2021-12-04,39412.03459377831,322,Emergency,2021-12-12,Abnormal,4678,381,1,4,,,,DISCHARGED -4679,2021-02-16,13016.442139499672,400,Emergency,2021-03-14,Abnormal,4679,54,4,19,,,,DISCHARGED -4680,2022-03-08,45766.414017043695,407,Emergency,2022-03-27,Inconclusive,4680,26,0,28,,,,DISCHARGED -4681,2022-01-15,25077.376678113123,326,Urgent,2022-01-29,Abnormal,4681,117,3,16,,,,DISCHARGED -4682,2021-10-07,47636.28559466362,202,Emergency,2021-10-25,Inconclusive,4682,220,3,9,,,,DISCHARGED -4683,2021-01-01,18432.876727121245,176,Emergency,2021-01-14,Abnormal,4683,230,0,8,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -4684,2022-02-23,5634.310680561106,466,Emergency,2022-03-18,Normal,4684,52,2,21,,,,DISCHARGED -4684,2019-08-29,17633.0035236912,280,Elective,2019-09-05,Abnormal,5394,294,3,5,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -4685,2023-04-25,38177.66775302585,234,Urgent,,Inconclusive,4685,320,1,29,,,,OPEN -4686,2019-04-17,33147.491058059175,225,Elective,2019-04-23,Abnormal,4686,400,3,10,,,,DISCHARGED -4687,2021-09-24,25440.050094145416,277,Urgent,2021-10-09,Normal,4687,232,2,1,,,,DISCHARGED -4688,2019-02-23,2414.73010370114,269,Elective,2019-03-01,Inconclusive,4688,157,1,29,,,,DISCHARGED -4689,2019-07-27,1540.1176829849103,477,Elective,2019-08-10,Inconclusive,4689,436,1,22,Patient complains of persistent headache and dizziness.,"Neurological evaluation, imaging studies, and treatment based on the underlying cause","G89.9 - Pain syndrome, unspecified",DISCHARGED -4690,2023-10-24,6962.845620282616,268,Urgent,,Abnormal,4690,268,0,11,,,,OPEN -4691,2023-02-26,2015.235510470128,365,Elective,2023-03-08,Normal,4691,20,4,11,,,,DISCHARGED -4692,2019-05-21,31672.04821522471,496,Elective,2019-06-05,Abnormal,4692,402,0,15,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -4693,2021-08-07,48792.40088076773,424,Urgent,2021-09-04,Abnormal,4693,52,4,24,,,,DISCHARGED -4694,2022-08-26,8409.785304892099,159,Emergency,2022-09-02,Abnormal,4694,274,0,21,,,,DISCHARGED -4695,2021-10-26,8107.326054864383,355,Emergency,2021-11-13,Normal,4695,312,4,26,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -4696,2022-03-16,2597.5973278827487,308,Emergency,2022-03-25,Abnormal,4696,280,3,23,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4697,2022-09-21,39104.022858925,459,Elective,2022-09-24,Inconclusive,4697,213,1,11,,,,DISCHARGED -4698,2019-08-13,1686.2686002061505,196,Emergency,2019-08-31,Inconclusive,4698,30,4,20,,,,DISCHARGED -4699,2020-04-17,7821.637990236603,174,Elective,2020-05-17,Normal,4699,336,3,17,,,,DISCHARGED -4700,2021-12-14,33502.48987666388,443,Urgent,2021-12-30,Abnormal,4700,182,2,12,,,,DISCHARGED -4701,2020-06-20,13618.06611060776,108,Emergency,2020-06-28,Abnormal,4701,22,0,14,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -4702,2022-02-26,14993.879703714232,387,Emergency,2022-03-14,Normal,4702,31,2,15,,,,DISCHARGED -4703,2020-12-21,27013.5403910531,179,Urgent,2020-12-30,Normal,4703,445,3,3,,,,DISCHARGED -4704,2021-08-26,14477.948650955806,482,Urgent,2021-09-16,Normal,4704,73,2,11,,,,DISCHARGED -4705,2020-10-12,19715.529011833605,475,Elective,2020-11-06,Inconclusive,4705,9,2,16,,,,DISCHARGED -4706,2023-09-26,24951.85781654897,225,Emergency,2023-09-29,Normal,4706,483,3,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -4707,2022-10-10,7293.440324716771,315,Elective,2022-11-08,Normal,4707,455,1,21,,,,DISCHARGED -4708,2018-11-04,1804.172102920116,495,Emergency,2018-11-17,Abnormal,4708,53,4,17,,,,DISCHARGED -4709,2020-05-04,38761.27428012262,301,Emergency,2020-05-27,Normal,4709,51,0,21,,,,DISCHARGED -4709,2020-11-29,49879.16016117147,195,Elective,2020-12-19,Inconclusive,8635,147,4,15,,,,DISCHARGED -4710,2020-04-14,1689.7548227412244,459,Elective,2020-04-17,Normal,4710,159,0,0,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4711,2023-02-05,14797.02160386041,417,Emergency,,Inconclusive,4711,369,4,26,,,,OPEN -4712,2023-03-26,19846.88442861877,272,Emergency,2023-04-15,Abnormal,4712,13,2,9,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -4713,2023-10-06,6764.544369113139,287,Emergency,2023-11-02,Inconclusive,4713,177,1,18,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -4714,2020-09-28,18227.293650768508,254,Elective,2020-10-08,Inconclusive,4714,411,2,15,,,,DISCHARGED -4715,2021-10-25,16766.54955323652,463,Emergency,2021-10-26,Normal,4715,365,1,13,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4716,2022-12-13,29675.609272065525,372,Elective,2022-12-29,Normal,4716,499,3,24,,,,DISCHARGED -4717,2020-05-22,7793.002873684877,376,Elective,2020-06-13,Inconclusive,4717,52,0,1,,,,DISCHARGED -4718,2021-10-30,38247.4159056947,361,Urgent,2021-11-28,Normal,4718,407,0,23,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -4719,2023-06-14,27378.9578121444,460,Emergency,2023-07-13,Normal,4719,334,3,5,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -4720,2021-04-17,46730.34125546061,116,Emergency,2021-05-11,Inconclusive,4720,21,4,27,,,,DISCHARGED -4721,2019-11-01,45004.48681959341,444,Urgent,2019-12-01,Abnormal,4721,29,3,21,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -4722,2020-07-07,30613.02617983961,467,Elective,2020-07-28,Inconclusive,4722,190,3,22,,,,DISCHARGED -4723,2018-12-03,20028.446642966417,286,Elective,2018-12-08,Inconclusive,4723,259,1,4,,,,DISCHARGED -4724,2022-08-29,42037.04981711227,368,Emergency,2022-09-09,Normal,4724,204,3,11,,,,DISCHARGED -4725,2020-07-23,9908.6020742283,255,Urgent,2020-08-07,Abnormal,4725,58,0,26,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -4726,2022-08-23,44563.627251092,269,Emergency,2022-09-10,Normal,4726,470,2,3,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -4727,2020-12-15,11323.672172216708,298,Elective,2021-01-01,Inconclusive,4727,263,1,21,,,,DISCHARGED -4728,2020-06-01,10655.365011588974,494,Emergency,2020-07-01,Inconclusive,4728,465,1,23,,,,DISCHARGED -4729,2019-10-04,20605.67950681002,467,Elective,2019-10-20,Normal,4729,11,4,3,,,,DISCHARGED -4730,2021-04-03,23637.097520143077,385,Urgent,2021-04-16,Abnormal,4730,118,2,4,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -4732,2019-05-28,26461.828113819425,412,Urgent,2019-06-24,Inconclusive,4732,414,1,6,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -4733,2019-10-11,35351.57932895399,204,Emergency,2019-11-05,Inconclusive,4733,461,3,5,,,,DISCHARGED -4734,2022-05-07,32989.73376325554,374,Emergency,2022-05-25,Inconclusive,4734,289,1,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -4735,2019-07-08,11319.770913922222,384,Elective,2019-07-15,Abnormal,4735,337,1,3,,,,DISCHARGED -4736,2023-08-08,18502.49832323408,216,Emergency,,Inconclusive,4736,247,1,12,,,,OPEN -4737,2019-06-20,44832.04245526608,261,Urgent,2019-06-25,Abnormal,4737,353,4,3,,,,DISCHARGED -4738,2019-01-14,39685.20660483933,480,Elective,2019-02-07,Inconclusive,4738,126,1,9,,,,DISCHARGED -4739,2021-12-01,17474.83557494979,207,Emergency,2021-12-07,Abnormal,4739,74,1,19,,,,DISCHARGED -4740,2020-11-04,19906.010323095503,271,Urgent,2020-11-19,Abnormal,4740,360,4,0,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4740,2020-12-13,4096.629047291421,180,Elective,2021-01-11,Inconclusive,8731,203,2,20,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -4741,2022-11-26,23218.789385593624,203,Elective,2022-12-04,Abnormal,4741,48,0,7,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -4742,2020-09-04,37015.54834820456,223,Urgent,2020-09-30,Inconclusive,4742,78,4,6,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4743,2020-08-20,9119.90203126037,331,Urgent,2020-09-15,Inconclusive,4743,440,4,4,,,,DISCHARGED -4744,2023-10-20,24682.994113681263,428,Urgent,2023-11-15,Normal,4744,478,1,2,,,,DISCHARGED -4745,2020-09-10,3286.3346975183435,414,Urgent,2020-09-16,Inconclusive,4745,240,1,14,,,,DISCHARGED -4746,2021-08-24,23611.844534264183,418,Elective,2021-09-15,Normal,4746,348,0,26,,,,DISCHARGED -4747,2022-03-02,25464.037106023203,400,Elective,2022-03-19,Inconclusive,4747,153,1,16,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -4748,2022-10-15,31296.703135548185,294,Elective,2022-10-31,Abnormal,4748,273,3,28,,,,DISCHARGED -4749,2020-06-01,31185.679947556677,129,Elective,2020-06-11,Inconclusive,4749,95,1,22,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -4750,2022-09-02,32276.816892239385,442,Urgent,2022-09-12,Abnormal,4750,213,1,12,,,,DISCHARGED -4750,2020-08-20,40701.854828414376,311,Urgent,2020-09-02,Inconclusive,8446,293,3,14,,,,DISCHARGED -4751,2020-03-11,22182.21224393951,150,Urgent,2020-03-28,Abnormal,4751,208,0,26,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4752,2023-05-22,47724.93879815555,386,Emergency,,Abnormal,4752,342,3,18,,,,OPEN -4753,2019-09-28,42167.3511310083,170,Emergency,2019-10-21,Normal,4753,87,4,19,,,,DISCHARGED -4754,2022-07-18,27315.231240339,387,Emergency,2022-08-17,Abnormal,4754,305,3,13,,,,DISCHARGED -4755,2020-07-02,25976.634369136154,387,Elective,2020-07-19,Inconclusive,4755,263,2,20,,,,DISCHARGED -4756,2022-06-05,2116.091188013396,457,Elective,2022-06-21,Abnormal,4756,424,4,12,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4756,2022-08-24,29093.420600003414,341,Urgent,2022-09-17,Abnormal,6487,389,1,11,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4757,2021-10-23,21919.31731410046,273,Emergency,2021-10-27,Abnormal,4757,324,4,23,,,,DISCHARGED -4758,2021-04-23,20225.089529440644,484,Elective,2021-05-13,Abnormal,4758,427,0,28,,,,DISCHARGED -4759,2022-12-05,41479.29402464011,249,Urgent,2022-12-19,Abnormal,4759,376,0,22,,,,DISCHARGED -4760,2020-07-15,26310.427113690665,451,Urgent,2020-08-06,Inconclusive,4760,319,3,8,,,,DISCHARGED -4761,2021-01-27,25081.58343532231,208,Urgent,2021-02-08,Inconclusive,4761,156,4,26,,,,DISCHARGED -4762,2022-12-20,47834.18677622168,145,Emergency,2023-01-09,Inconclusive,4762,155,1,2,,,,DISCHARGED -4763,2020-11-10,11178.773991453592,377,Elective,2020-12-04,Inconclusive,4763,138,0,29,,,,DISCHARGED -4764,2019-09-24,43304.70205858663,180,Urgent,2019-10-03,Normal,4764,120,1,10,,,,DISCHARGED -4765,2021-12-26,15964.414399431033,228,Urgent,2022-01-14,Inconclusive,4765,64,2,9,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -4766,2018-11-17,27390.08492584137,206,Urgent,2018-12-14,Inconclusive,4766,106,0,0,,,,DISCHARGED -4767,2020-09-10,44044.29623223332,313,Urgent,2020-09-12,Normal,4767,146,3,16,,,,DISCHARGED -4768,2019-09-15,45434.06100711771,171,Urgent,2019-10-13,Normal,4768,136,2,27,,,,DISCHARGED -4769,2019-04-22,35483.873350234964,180,Urgent,2019-04-30,Normal,4769,410,4,25,,,,DISCHARGED -4771,2022-12-19,49006.69594076405,362,Emergency,2023-01-04,Abnormal,4771,161,1,12,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -4772,2022-01-27,2093.8076498385026,447,Emergency,2022-01-28,Abnormal,4772,427,0,13,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -4773,2022-01-17,19905.621794415827,441,Emergency,2022-02-14,Inconclusive,4773,451,2,0,Excessive gas and belching,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -4773,2020-03-17,37655.16972012383,426,Elective,2020-03-23,Normal,6133,99,2,1,,,,DISCHARGED -4774,2020-09-24,10192.137999418475,470,Urgent,2020-10-13,Normal,4774,337,0,1,,,,DISCHARGED -4775,2019-04-18,34661.37458413516,426,Urgent,2019-04-29,Normal,4775,398,4,6,,,,DISCHARGED -4776,2021-05-30,41089.46410527412,294,Emergency,2021-05-31,Normal,4776,306,4,8,,,,DISCHARGED -4777,2022-06-03,27960.56040290013,477,Urgent,2022-06-18,Inconclusive,4777,140,3,23,,,,DISCHARGED -4778,2019-07-02,1557.3152618268664,217,Elective,2019-07-18,Normal,4778,82,4,3,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -4779,2019-10-07,39180.892217324574,470,Urgent,2019-10-20,Inconclusive,4779,176,3,1,,,,DISCHARGED -4780,2020-03-11,44513.842221769424,418,Elective,2020-04-02,Inconclusive,4780,197,2,18,,,,DISCHARGED -4781,2021-10-25,45976.46747093785,338,Emergency,2021-11-21,Abnormal,4781,111,0,25,,,,DISCHARGED -4782,2022-04-14,27186.476813354027,129,Emergency,2022-04-15,Abnormal,4782,55,4,4,,,,DISCHARGED -4784,2020-09-25,46843.73058440118,361,Emergency,2020-10-12,Abnormal,4784,459,3,8,,,,DISCHARGED -4784,2019-07-21,19620.89873063805,133,Elective,2019-08-02,Abnormal,5035,178,2,23,,,,DISCHARGED -4785,2020-08-31,25869.380774231748,244,Emergency,2020-09-05,Normal,4785,420,4,12,,,,DISCHARGED -4786,2020-07-30,34438.91277560099,473,Elective,2020-08-08,Normal,4786,400,1,11,,,,DISCHARGED -4787,2021-10-09,19516.86377852661,131,Emergency,2021-11-04,Abnormal,4787,185,2,29,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -4788,2021-07-15,35666.449166363185,331,Elective,2021-07-17,Inconclusive,4788,470,4,18,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -4789,2022-07-11,1779.160238503723,261,Elective,2022-07-27,Inconclusive,4789,217,2,8,,,,DISCHARGED -4790,2023-04-07,10111.66374508153,340,Urgent,2023-05-03,Abnormal,4790,412,0,9,,,,DISCHARGED -4791,2019-01-24,26674.827831697945,240,Emergency,2019-01-31,Normal,4791,416,0,18,Pain behind the eyes,"Conduct eye examinations, prescribe pain relievers, and recommend lifestyle changes for eye health.",H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -4792,2022-04-26,26972.049246065337,208,Emergency,2022-05-03,Normal,4792,315,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -4792,2023-03-21,13376.613686181898,152,Elective,2023-04-09,Abnormal,7792,474,1,11,,,,DISCHARGED -4792,2020-05-15,22423.161182527616,194,Urgent,2020-05-18,Abnormal,9563,216,0,13,,,,DISCHARGED -4793,2019-09-25,21922.487713310165,135,Urgent,2019-10-05,Inconclusive,4793,119,1,7,,,,DISCHARGED -4794,2019-06-20,25873.92778320435,167,Elective,2019-06-21,Inconclusive,4794,438,0,15,,,,DISCHARGED -4795,2023-08-07,15761.487287695303,463,Emergency,2023-09-01,Normal,4795,393,2,16,,,,DISCHARGED -4796,2023-03-27,35809.342286597835,314,Urgent,2023-04-02,Normal,4796,174,4,19,,,,DISCHARGED -4797,2021-06-29,33733.77515850902,187,Emergency,2021-07-23,Abnormal,4797,22,4,3,,,,DISCHARGED -4798,2019-04-06,26865.104573499037,244,Urgent,2019-04-20,Inconclusive,4798,212,0,5,,,,DISCHARGED -4799,2020-08-18,22566.61369546223,135,Urgent,2020-09-10,Inconclusive,4799,404,4,11,,,,DISCHARGED -4801,2023-03-10,40527.49820073167,166,Emergency,2023-04-07,Abnormal,4801,234,0,27,,,,DISCHARGED -4803,2018-11-25,13677.830944029707,130,Elective,2018-12-11,Normal,4803,12,0,17,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -4804,2019-03-18,12400.812484534872,285,Urgent,2019-04-17,Normal,4804,100,3,6,,,,DISCHARGED -4805,2020-04-30,47757.8458020492,163,Urgent,2020-05-06,Normal,4805,416,3,4,,,,DISCHARGED -4806,2023-08-12,43022.08212283255,459,Urgent,2023-08-24,Abnormal,4806,23,3,9,,,,DISCHARGED -4807,2023-07-29,38674.47530620711,107,Elective,,Abnormal,4807,363,1,5,,,,OPEN -4808,2019-03-04,19345.554359882168,260,Emergency,2019-03-13,Abnormal,4808,10,3,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -4809,2019-01-27,33040.93247294721,357,Urgent,2019-02-21,Inconclusive,4809,272,0,13,,,,DISCHARGED -4810,2022-10-09,46113.48098183696,368,Urgent,2022-10-31,Inconclusive,4810,451,2,5,,,,DISCHARGED -4811,2020-10-01,3478.906633093555,318,Elective,2020-10-24,Inconclusive,4811,430,3,29,,,,DISCHARGED -4812,2022-11-02,20463.94854145021,314,Elective,2022-11-05,Abnormal,4812,280,3,13,,,,DISCHARGED -4813,2022-02-09,22394.238647800263,395,Urgent,2022-02-18,Inconclusive,4813,93,2,11,,,,DISCHARGED -4814,2018-12-30,5888.467016121172,386,Elective,2019-01-22,Normal,4814,200,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -4815,2022-08-09,46989.40170652176,367,Elective,2022-08-10,Normal,4815,20,1,26,,,,DISCHARGED -4816,2019-12-24,4152.095149606723,289,Urgent,2020-01-16,Inconclusive,4816,339,3,21,,,,DISCHARGED -4817,2020-07-07,28665.647255116924,430,Urgent,2020-07-25,Normal,4817,466,2,25,,,,DISCHARGED -4818,2019-01-07,25236.048908682795,442,Elective,2019-01-18,Abnormal,4818,210,0,11,,,,DISCHARGED -4819,2020-11-10,33090.97809474547,422,Emergency,2020-12-05,Normal,4819,139,4,7,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4820,2021-05-02,12735.568352562894,309,Elective,2021-05-25,Normal,4820,292,1,9,,,,DISCHARGED -4821,2021-01-08,41788.352522771376,160,Urgent,2021-01-21,Inconclusive,4821,297,2,15,,,,DISCHARGED -4822,2023-03-29,12598.404354914288,294,Elective,2023-04-28,Abnormal,4822,400,2,19,,,,DISCHARGED -4824,2019-08-23,9945.889157529677,362,Urgent,2019-08-24,Normal,4824,100,2,25,,,,DISCHARGED -4825,2020-10-26,42289.798280673225,394,Emergency,2020-10-27,Inconclusive,4825,303,3,7,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -4826,2022-02-27,48619.51732595202,404,Elective,2022-03-29,Inconclusive,4826,358,4,8,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -4826,2023-03-06,31849.15327022313,370,Urgent,,Normal,8929,27,1,12,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -4827,2021-10-15,43234.33453168871,485,Elective,2021-10-18,Inconclusive,4827,40,0,28,,,,DISCHARGED -4828,2020-06-05,34244.52016086891,434,Urgent,2020-06-12,Normal,4828,354,0,19,,,,DISCHARGED -4829,2021-06-10,37401.626755722034,136,Elective,2021-06-19,Abnormal,4829,302,4,16,,,,DISCHARGED -4829,2019-11-13,4954.618897728081,490,Elective,2019-11-26,Normal,5036,495,2,18,,,,DISCHARGED -4830,2023-10-15,29413.65792502641,447,Urgent,2023-10-16,Normal,4830,145,2,16,,,,DISCHARGED -4831,2019-08-21,27982.12330019868,145,Elective,2019-09-08,Inconclusive,4831,255,2,6,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4832,2021-08-25,23300.429682599923,127,Urgent,2021-09-04,Abnormal,4832,461,2,27,,,,DISCHARGED -4833,2021-06-09,33151.458775961975,418,Urgent,2021-06-21,Normal,4833,226,2,0,,,,DISCHARGED -4834,2020-03-26,7324.03524919629,287,Urgent,2020-03-30,Normal,4834,235,4,26,,,,DISCHARGED -4835,2021-11-12,45373.29538102361,161,Elective,2021-12-10,Abnormal,4835,360,3,19,,,,DISCHARGED -4835,2023-04-05,31266.00192033575,482,Elective,2023-04-20,Normal,7176,379,1,28,Sudden onset of high fever and chills,"Assessment for infections, blood tests, and prescription of antibiotics or antiviral medications.","H60.9 - Otitis externa, unspecified",DISCHARGED -4836,2020-03-31,40882.135306674034,389,Elective,2020-04-08,Abnormal,4836,454,2,13,,,,DISCHARGED -4837,2023-06-19,41174.49109557084,221,Emergency,,Inconclusive,4837,488,3,16,,,,OPEN -4838,2023-04-30,15612.435738264876,382,Emergency,2023-05-26,Inconclusive,4838,12,0,12,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -4839,2021-09-02,29197.806089453534,104,Emergency,2021-09-22,Abnormal,4839,209,4,28,,,,DISCHARGED -4840,2018-11-17,21279.43206267736,300,Urgent,2018-12-09,Normal,4840,228,3,1,,,,DISCHARGED -4841,2021-06-05,47128.48339729499,490,Urgent,2021-06-23,Inconclusive,4841,396,2,26,,,,DISCHARGED -4842,2019-02-18,26252.66577629445,347,Emergency,2019-03-20,Normal,4842,99,2,13,,,,DISCHARGED -4843,2021-06-29,22607.468261507453,196,Elective,2021-07-15,Normal,4843,30,2,0,,,,DISCHARGED -4844,2020-06-29,21148.669896257405,468,Emergency,2020-07-11,Normal,4844,385,3,28,,,,DISCHARGED -4845,2020-06-20,31015.753704444083,479,Emergency,2020-06-29,Abnormal,4845,15,2,4,,,,DISCHARGED -4845,2019-02-13,22549.92608985113,285,Emergency,2019-03-07,Abnormal,7365,136,3,6,,,,DISCHARGED -4846,2022-10-20,28403.851169762514,477,Elective,2022-11-18,Abnormal,4846,328,2,18,,,,DISCHARGED -4847,2019-05-28,32819.85383874983,318,Urgent,2019-06-08,Inconclusive,4847,165,0,13,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4848,2020-01-02,24866.61486577673,459,Emergency,2020-01-05,Normal,4848,458,0,23,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -4849,2021-01-12,28418.366539545976,413,Elective,2021-01-22,Normal,4849,309,1,13,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -4850,2019-11-09,14109.793077967,413,Urgent,2019-11-10,Abnormal,4850,439,2,14,,,,DISCHARGED -4851,2022-07-27,4022.4510227645073,220,Urgent,2022-08-17,Inconclusive,4851,469,2,4,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -4852,2022-08-18,13225.683949517475,284,Elective,2022-09-09,Abnormal,4852,480,3,4,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -4853,2021-05-16,25024.587087543347,441,Emergency,2021-05-28,Normal,4853,99,3,28,,,,DISCHARGED -4854,2022-10-01,45498.59510544675,298,Emergency,2022-10-04,Inconclusive,4854,108,2,20,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -4855,2021-08-03,21839.95351682588,457,Emergency,2021-08-30,Inconclusive,4855,342,1,23,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4856,2021-09-10,37720.03904281403,324,Elective,2021-10-04,Inconclusive,4856,172,2,1,,,,DISCHARGED -4857,2019-09-14,40872.55506911912,289,Urgent,2019-09-17,Normal,4857,236,3,17,,,,DISCHARGED -4858,2022-12-04,43940.51461084982,209,Urgent,2022-12-08,Normal,4858,161,2,29,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -4859,2022-04-13,48871.042180125696,227,Elective,2022-05-13,Normal,4859,392,3,27,,,,DISCHARGED -4859,2021-11-24,30865.459556694383,415,Emergency,2021-11-26,Abnormal,6465,215,2,23,,,,DISCHARGED -4860,2019-10-06,10619.168166424171,366,Emergency,2019-10-28,Normal,4860,263,4,8,,,,DISCHARGED -4861,2019-10-27,44866.70337557101,218,Emergency,2019-11-05,Normal,4861,262,3,26,,,,DISCHARGED -4862,2022-02-18,31066.96820943338,380,Emergency,2022-02-23,Inconclusive,4862,291,1,27,,,,DISCHARGED -4863,2020-10-14,44117.74185126629,319,Urgent,2020-11-06,Normal,4863,273,4,9,,,,DISCHARGED -4864,2021-12-21,43446.600083663936,438,Urgent,2022-01-15,Abnormal,4864,2,2,25,,,,DISCHARGED -4865,2023-03-09,31836.191541290664,396,Emergency,2023-03-19,Normal,4865,27,3,17,,,,DISCHARGED -4867,2022-10-03,9614.51344548472,435,Emergency,2022-10-22,Normal,4867,325,4,3,,,,DISCHARGED -4868,2021-05-29,2519.905837138157,213,Emergency,2021-06-07,Normal,4868,491,1,7,,,,DISCHARGED -4869,2021-03-31,10659.831948440284,284,Elective,2021-04-16,Inconclusive,4869,427,3,17,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -4870,2020-11-21,14185.518865034472,144,Elective,2020-11-28,Abnormal,4870,148,4,19,,,,DISCHARGED -4871,2018-11-17,11555.286129522212,270,Urgent,2018-11-18,Normal,4871,27,4,25,,,,DISCHARGED -4872,2022-08-18,13069.286920754535,335,Urgent,2022-08-25,Normal,4872,487,4,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -4873,2023-07-15,11942.10935942674,152,Urgent,2023-08-06,Inconclusive,4873,309,0,28,,,,DISCHARGED -4874,2021-12-14,44753.36868255281,377,Urgent,2021-12-30,Inconclusive,4874,437,2,16,,,,DISCHARGED -4877,2021-02-19,41398.42442888867,174,Emergency,2021-02-23,Abnormal,4877,64,3,15,,,,DISCHARGED -4878,2021-03-21,47817.8793199252,351,Emergency,2021-04-04,Normal,4878,355,3,17,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -4880,2020-02-16,22369.625033472166,338,Elective,2020-02-23,Inconclusive,4880,20,3,6,,,,DISCHARGED -4881,2023-02-20,38099.99751747658,208,Urgent,,Normal,4881,251,4,0,,,,OPEN -4882,2023-05-12,47555.486730632285,285,Elective,2023-06-03,Abnormal,4882,234,2,27,,,,DISCHARGED -4883,2019-08-02,17320.901468003278,105,Emergency,2019-09-01,Inconclusive,4883,226,1,0,,,,DISCHARGED -4884,2019-03-26,5708.789191517905,358,Urgent,2019-03-31,Normal,4884,12,3,17,,,,DISCHARGED -4885,2022-12-04,29577.70551981613,287,Emergency,2022-12-25,Inconclusive,4885,312,2,3,,,,DISCHARGED -4886,2020-07-31,45217.52216269627,136,Emergency,2020-08-03,Abnormal,4886,48,2,22,,,,DISCHARGED -4887,2020-08-18,42901.78164618097,270,Emergency,2020-08-29,Abnormal,4887,117,0,19,,,,DISCHARGED -4888,2019-09-06,24358.674061723177,471,Urgent,2019-09-17,Abnormal,4888,53,3,20,,,,DISCHARGED -4889,2019-06-06,1227.13959619763,480,Emergency,2019-06-29,Inconclusive,4889,137,4,19,,,,DISCHARGED -4890,2019-08-23,37787.36243561913,130,Urgent,2019-08-30,Abnormal,4890,52,2,3,Joint swelling and redness,"Evaluate for arthritis or other inflammatory conditions, prescribe anti-inflammatory medications, and recommend joint protection strategies.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4891,2023-01-12,15591.874971373953,147,Elective,2023-02-07,Normal,4891,43,2,24,,,,DISCHARGED -4892,2020-06-24,14433.02107087807,129,Emergency,2020-07-11,Inconclusive,4892,302,1,5,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -4893,2021-07-02,40076.01069041334,327,Elective,2021-07-14,Abnormal,4893,52,0,27,,,,DISCHARGED -4894,2022-04-11,20342.05896119933,181,Urgent,2022-05-08,Inconclusive,4894,73,2,2,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -4895,2023-02-04,49818.51011964355,122,Elective,2023-02-25,Inconclusive,4895,45,2,5,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -4896,2018-11-13,22621.535633779225,199,Elective,2018-12-03,Abnormal,4896,12,4,12,,,,DISCHARGED -4897,2020-12-23,27022.14084097524,224,Elective,2020-12-27,Abnormal,4897,164,4,22,,,,DISCHARGED -4898,2021-01-27,27022.65514317058,211,Urgent,2021-02-21,Inconclusive,4898,101,1,6,,,,DISCHARGED -4899,2022-01-06,4405.6917928768,309,Emergency,2022-01-23,Inconclusive,4899,279,1,23,,,,DISCHARGED -4900,2022-10-27,25933.979740503222,194,Urgent,2022-11-12,Abnormal,4900,257,1,28,Pain in the back and muscle contractions,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -4901,2021-11-25,46596.68488234969,165,Urgent,2021-11-28,Inconclusive,4901,469,4,3,,,,DISCHARGED -4902,2018-12-20,31840.875123241007,421,Elective,2019-01-16,Abnormal,4902,336,4,0,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -4903,2019-12-01,31228.268799177007,296,Emergency,2019-12-24,Normal,4903,355,0,5,,,,DISCHARGED -4904,2020-02-25,5236.78445418161,227,Elective,2020-03-09,Normal,4904,397,3,23,,,,DISCHARGED -4906,2022-05-01,26683.8602337913,285,Urgent,2022-05-08,Abnormal,4906,137,3,4,,,,DISCHARGED -4907,2022-09-24,45697.99216232685,378,Emergency,2022-10-20,Inconclusive,4907,162,0,12,,,,DISCHARGED -4908,2019-06-02,48466.94634194745,285,Elective,2019-06-18,Abnormal,4908,408,3,18,,,,DISCHARGED -4909,2022-02-01,8670.193873797494,350,Urgent,2022-02-04,Inconclusive,4909,386,4,3,,,,DISCHARGED -4910,2022-08-28,12191.928817599186,232,Elective,2022-09-22,Inconclusive,4910,110,3,23,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -4911,2019-02-27,16141.025412767209,217,Emergency,2019-03-19,Inconclusive,4911,101,4,5,,,,DISCHARGED -4912,2020-05-22,34278.701843560855,434,Emergency,2020-05-23,Abnormal,4912,16,0,12,,,,DISCHARGED -4913,2023-07-15,10041.180942865416,108,Emergency,2023-08-02,Inconclusive,4913,267,1,28,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -4914,2022-05-31,31371.611851722693,361,Urgent,2022-06-23,Abnormal,4914,181,0,4,,,,DISCHARGED -4914,2021-12-14,48138.74552906896,151,Urgent,2021-12-16,Abnormal,7965,371,3,12,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -4915,2021-05-24,13124.011818759369,350,Elective,2021-06-17,Abnormal,4915,23,4,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -4916,2023-03-09,22673.333511871744,305,Urgent,2023-03-27,Normal,4916,28,3,9,,,,DISCHARGED -4917,2022-01-18,7512.45820506544,392,Emergency,2022-01-20,Normal,4917,170,3,2,,,,DISCHARGED -4918,2021-01-17,40708.82990050067,409,Urgent,2021-01-25,Inconclusive,4918,408,1,22,,,,DISCHARGED -4919,2022-09-17,9471.006301546213,123,Emergency,2022-10-14,Inconclusive,4919,227,3,24,,,,DISCHARGED -4919,2020-10-27,4091.411031022009,108,Elective,2020-11-03,Abnormal,9434,377,1,26,,,,DISCHARGED -4920,2019-12-15,6410.857645006327,337,Emergency,2020-01-13,Abnormal,4920,187,4,12,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -4921,2023-07-19,41402.163548771445,275,Elective,,Inconclusive,4921,345,4,26,,,,OPEN -4922,2022-04-20,36671.00153478959,339,Urgent,2022-05-19,Normal,4922,229,1,11,,,,DISCHARGED -4924,2023-06-29,40337.83430026875,473,Elective,2023-07-05,Inconclusive,4924,320,0,3,,,,DISCHARGED -4925,2022-03-19,29672.12818118183,484,Urgent,2022-04-04,Abnormal,4925,339,4,9,,,,DISCHARGED -4926,2022-10-04,15882.368972394224,124,Elective,2022-10-19,Abnormal,4926,118,0,25,,,,DISCHARGED -4927,2019-03-11,28228.36014032913,498,Emergency,2019-03-24,Normal,4927,155,4,2,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -4928,2023-07-10,22476.35308058807,255,Emergency,2023-07-17,Inconclusive,4928,271,4,16,,,,DISCHARGED -4929,2019-07-14,37116.79843394613,104,Elective,2019-07-16,Abnormal,4929,174,2,8,,,,DISCHARGED -4930,2021-09-28,42578.46161360296,438,Urgent,2021-10-15,Normal,4930,464,3,28,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -4931,2021-12-05,15192.388100936909,180,Urgent,2021-12-14,Inconclusive,4931,103,3,0,,,,DISCHARGED -4932,2019-11-12,19179.1252763317,214,Emergency,2019-11-26,Inconclusive,4932,91,0,17,,,,DISCHARGED -4933,2019-05-13,39274.51661982424,444,Urgent,2019-05-27,Abnormal,4933,185,3,8,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -4934,2021-09-17,31955.17073343913,121,Urgent,2021-09-19,Inconclusive,4934,459,0,20,,,,DISCHARGED -4935,2022-06-04,12841.909713862437,325,Emergency,2022-06-27,Inconclusive,4935,282,4,19,,,,DISCHARGED -4937,2021-08-11,27768.093538270583,156,Emergency,2021-08-12,Inconclusive,4937,180,2,24,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -4938,2021-10-30,19462.600549146508,334,Emergency,2021-11-04,Normal,4938,169,2,8,,,,DISCHARGED -4938,2020-03-27,21447.9084530032,363,Elective,2020-04-19,Normal,8564,186,4,1,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -4939,2019-01-21,45151.2657971579,338,Urgent,2019-01-26,Normal,4939,174,1,18,,,,DISCHARGED -4940,2022-10-25,44454.41031486951,103,Urgent,2022-10-31,Abnormal,4940,221,1,27,Unexplained weight loss,"Comprehensive physical examination, blood tests, and imaging studies to identify potential causes such as thyroid disorders, cancer, or malabsorption. Treatment focused on addressing the underlying condition. Regular monitoring of weight and overall health.",R63.4 - Abnormal weight loss,DISCHARGED -4941,2022-10-30,18262.839840388307,334,Emergency,2022-11-23,Abnormal,4941,232,3,15,,,,DISCHARGED -4942,2020-11-30,17599.750940552694,465,Emergency,2020-12-29,Normal,4942,161,0,2,,,,DISCHARGED -4943,2019-07-04,1470.2176834182706,499,Elective,2019-07-25,Normal,4943,420,2,15,,,,DISCHARGED -4944,2022-06-22,44631.17217248483,241,Urgent,2022-07-11,Abnormal,4944,133,3,20,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4945,2020-04-10,38458.02515621536,394,Elective,2020-04-29,Inconclusive,4945,390,4,12,,,,DISCHARGED -4946,2019-05-06,4397.847075197464,101,Elective,2019-05-28,Normal,4946,479,2,2,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -4947,2020-05-03,34695.128406575284,398,Emergency,2020-05-11,Abnormal,4947,223,0,9,,,,DISCHARGED -4948,2021-09-20,46749.14450753164,234,Urgent,2021-10-04,Inconclusive,4948,152,0,21,,,,DISCHARGED -4949,2020-10-16,40734.688773186674,251,Elective,2020-11-09,Normal,4949,32,1,17,,,,DISCHARGED -4950,2018-11-25,17926.82924262679,142,Elective,2018-12-19,Normal,4950,54,3,5,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -4951,2019-09-12,24949.029982356627,117,Emergency,2019-09-20,Abnormal,4951,441,4,5,,,,DISCHARGED -4952,2023-05-21,30402.67689242605,178,Elective,2023-06-17,Abnormal,4952,6,2,17,,,,DISCHARGED -4953,2020-12-15,33782.6341457172,392,Emergency,2020-12-28,Inconclusive,4953,243,0,5,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -4954,2019-06-22,20465.56884411539,244,Emergency,2019-07-21,Inconclusive,4954,312,2,5,,,,DISCHARGED -4955,2021-08-13,18260.24322967225,130,Elective,2021-09-06,Normal,4955,125,4,21,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -4956,2020-07-12,29504.03590108354,102,Urgent,2020-07-29,Abnormal,4956,11,2,27,,,,DISCHARGED -4957,2020-12-13,20687.874353132564,484,Urgent,2021-01-02,Inconclusive,4957,15,3,12,,,,DISCHARGED -4958,2020-08-10,7967.565101081946,150,Emergency,2020-09-04,Inconclusive,4958,207,1,13,,,,DISCHARGED -4959,2022-08-12,5394.704790248515,410,Elective,2022-08-17,Inconclusive,4959,42,2,20,,,,DISCHARGED -4960,2021-06-29,26671.536560227323,211,Elective,2021-07-02,Inconclusive,4960,372,1,6,,,,DISCHARGED -4962,2022-10-07,4119.267682480317,361,Elective,2022-10-22,Abnormal,4962,483,4,12,,,,DISCHARGED -4963,2021-02-04,40034.05485430158,319,Elective,2021-02-24,Abnormal,4963,460,1,14,,,,DISCHARGED -4964,2021-06-26,32113.887689498133,194,Urgent,2021-07-17,Inconclusive,4964,134,2,11,,,,DISCHARGED -4965,2019-05-12,41801.07980803264,222,Urgent,2019-05-25,Inconclusive,4965,227,2,20,,,,DISCHARGED -4966,2022-08-14,40021.185090564366,280,Emergency,2022-08-22,Normal,4966,110,0,26,,,,DISCHARGED -4967,2023-02-25,39413.12988483545,133,Elective,2023-03-15,Normal,4967,306,2,0,,,,DISCHARGED -4968,2020-06-22,25806.525809774623,447,Urgent,2020-06-29,Abnormal,4968,456,1,27,,,,DISCHARGED -4969,2019-02-08,9984.830480600744,274,Elective,2019-03-05,Abnormal,4969,159,0,24,,,,DISCHARGED -4970,2022-09-21,24706.978084829265,409,Elective,2022-09-26,Inconclusive,4970,330,2,2,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -4971,2020-02-16,9807.40915875448,427,Emergency,2020-02-19,Abnormal,4971,263,2,17,,,,DISCHARGED -4972,2023-03-08,1389.9574172841417,444,Elective,2023-04-05,Abnormal,4972,224,4,25,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -4973,2023-05-25,42320.03290103717,241,Emergency,2023-06-01,Normal,4973,470,0,21,,,,DISCHARGED -4974,2019-09-14,29999.16925914993,445,Elective,2019-09-16,Normal,4974,216,4,7,,,,DISCHARGED -4976,2020-02-18,31495.293151648715,455,Urgent,2020-02-26,Abnormal,4976,455,4,1,,,,DISCHARGED -4977,2021-08-02,12425.802418256682,230,Urgent,2021-08-13,Inconclusive,4977,44,4,3,,,,DISCHARGED -4978,2020-04-21,32335.01107537987,290,Urgent,2020-05-14,Abnormal,4978,213,3,17,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -4979,2019-07-26,12341.457336988917,132,Elective,2019-08-03,Inconclusive,4979,58,4,27,,,,DISCHARGED -4980,2019-12-28,46166.876044974655,342,Emergency,2020-01-10,Abnormal,4980,131,1,27,,,,DISCHARGED -4983,2023-03-30,22326.324817573524,334,Urgent,,Inconclusive,4983,103,2,24,,,,OPEN -4984,2021-12-28,38261.23038469653,414,Elective,2021-12-30,Normal,4984,194,3,25,,,,DISCHARGED -4985,2022-03-03,27026.1587317018,204,Elective,2022-03-31,Abnormal,4985,412,4,12,,,,DISCHARGED -4986,2020-04-04,30400.641931183494,489,Emergency,2020-04-29,Normal,4986,488,2,14,,,,DISCHARGED -4987,2020-02-05,46008.78300649781,491,Urgent,2020-02-23,Abnormal,4987,156,0,1,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -4987,2023-04-04,4429.249919480615,312,Urgent,,Normal,6452,97,0,9,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",OPEN -4988,2020-08-12,11448.019524081265,433,Emergency,2020-09-08,Inconclusive,4988,225,2,1,,,,DISCHARGED -4989,2022-10-13,8739.297294275606,250,Elective,2022-11-09,Inconclusive,4989,411,1,29,,,,DISCHARGED -4990,2022-05-26,41834.21999433544,422,Urgent,2022-06-24,Abnormal,4990,204,2,28,,,,DISCHARGED -4991,2020-04-29,6475.012752915402,492,Elective,2020-05-27,Normal,4991,78,2,20,,,,DISCHARGED -4992,2020-11-23,33278.11896769793,152,Emergency,2020-12-20,Normal,4992,123,3,11,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -4994,2021-01-27,17068.19276490547,356,Urgent,2021-02-15,Abnormal,4994,470,0,4,,,,DISCHARGED -4995,2021-12-24,42258.43182597493,343,Urgent,2022-01-18,Inconclusive,4995,427,0,11,Chest pain with exertion,"Conduct cardiovascular assessments, prescribe medications for angina, and recommend lifestyle changes including exercise.","I20.9 - Angina pectoris, unspecified",DISCHARGED -4996,2020-04-05,31009.72570005881,426,Elective,2020-04-15,Inconclusive,4996,217,4,22,,,,DISCHARGED -4997,2023-10-27,45390.9158754624,119,Elective,2023-11-24,Inconclusive,4997,3,2,0,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -4998,2021-11-07,2799.105152247894,173,Elective,2021-11-14,Normal,4998,89,2,27,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -4999,2020-05-21,45768.48780730679,492,Elective,2020-05-27,Normal,4999,103,1,1,,,,DISCHARGED -5000,2021-02-27,27840.11569568721,204,Elective,2021-03-24,Normal,5000,392,0,26,,,,DISCHARGED -5001,2021-11-07,45101.040563096685,232,Urgent,2021-11-27,Abnormal,5001,118,1,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5002,2022-04-13,41318.283566753606,290,Urgent,2022-05-02,Abnormal,5002,132,3,26,,,,DISCHARGED -5003,2018-12-18,49422.38164695408,118,Urgent,2019-01-01,Normal,5003,311,4,21,,,,DISCHARGED -5004,2023-08-27,19238.819247691645,367,Urgent,2023-09-11,Normal,5004,95,1,1,,,,DISCHARGED -5005,2019-08-28,32325.18666744932,438,Emergency,2019-09-25,Inconclusive,5005,467,0,15,,,,DISCHARGED -5006,2023-01-06,45780.3645125108,372,Elective,2023-01-23,Normal,5006,433,3,19,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5007,2021-08-02,48554.41951566858,493,Urgent,2021-08-17,Inconclusive,5007,330,2,25,,,,DISCHARGED -5008,2020-01-11,1827.0934676753616,157,Elective,2020-01-31,Abnormal,5008,142,3,15,,,,DISCHARGED -5009,2023-08-24,6658.184833149132,426,Urgent,2023-09-15,Normal,5009,287,1,5,,,,DISCHARGED -5010,2023-04-30,2344.6959967171133,156,Emergency,2023-05-26,Abnormal,5010,27,0,12,,,,DISCHARGED -5011,2022-10-03,40303.68903222805,411,Urgent,2022-10-07,Normal,5011,277,1,11,,,,DISCHARGED -5012,2020-06-16,32497.72493616383,389,Emergency,2020-07-07,Abnormal,5012,232,2,22,,,,DISCHARGED -5013,2023-08-22,40252.728996203645,221,Elective,2023-09-15,Normal,5013,16,2,9,,,,DISCHARGED -5014,2023-07-17,48634.596153236285,340,Urgent,2023-07-22,Abnormal,5014,58,0,4,,,,DISCHARGED -5016,2021-11-02,31428.76939117009,476,Emergency,2021-11-14,Inconclusive,5016,89,4,7,,,,DISCHARGED -5018,2023-08-03,26450.41573977773,234,Emergency,2023-08-31,Abnormal,5018,491,3,5,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -5019,2023-04-17,19755.464369027926,319,Emergency,2023-05-17,Inconclusive,5019,198,3,4,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5020,2019-06-04,32898.675566542304,358,Urgent,2019-06-25,Normal,5020,361,2,19,,,,DISCHARGED -5022,2021-02-12,37912.48196944748,144,Urgent,2021-02-24,Abnormal,5022,440,1,21,,,,DISCHARGED -5023,2022-09-03,23658.07090227202,469,Emergency,2022-09-18,Abnormal,5023,25,1,5,,,,DISCHARGED -5024,2019-04-21,9848.800176294424,436,Urgent,2019-05-05,Abnormal,5024,24,4,21,,,,DISCHARGED -5025,2019-04-18,6481.013932257771,347,Emergency,2019-05-10,Abnormal,5025,393,1,16,,,,DISCHARGED -5026,2019-01-08,15900.203074249472,206,Elective,2019-02-04,Abnormal,5026,300,3,5,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5028,2019-12-20,25043.463075238924,476,Elective,2019-12-27,Inconclusive,5028,338,1,16,,,,DISCHARGED -5028,2019-09-10,39014.16006592387,283,Urgent,2019-09-25,Abnormal,6087,266,4,4,,,,DISCHARGED -5029,2022-01-29,23249.348656701943,371,Elective,2022-02-27,Abnormal,5029,460,3,22,,,,DISCHARGED -5030,2021-05-23,4432.619265757337,376,Urgent,2021-05-25,Inconclusive,5030,180,1,16,,,,DISCHARGED -5031,2023-09-01,16215.409459467704,264,Emergency,,Inconclusive,5031,455,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,OPEN -5032,2022-04-14,36235.8313895375,119,Emergency,2022-05-05,Inconclusive,5032,359,2,16,,,,DISCHARGED -5033,2022-02-14,37061.37443528362,428,Emergency,2022-03-11,Abnormal,5033,67,2,28,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -5034,2019-08-05,13730.803000400696,372,Urgent,2019-08-21,Inconclusive,5034,494,2,12,,,,DISCHARGED -5037,2021-02-18,46722.35618237897,227,Elective,2021-03-10,Abnormal,5037,350,1,21,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5038,2020-03-29,35777.79012758474,407,Urgent,2020-04-02,Inconclusive,5038,411,4,6,,,,DISCHARGED -5039,2019-07-04,6098.670135229599,111,Emergency,2019-07-15,Inconclusive,5039,458,3,21,,,,DISCHARGED -5040,2022-03-18,15439.168072385057,271,Emergency,2022-04-05,Normal,5040,490,0,20,,,,DISCHARGED -5041,2021-04-01,26640.91665173258,481,Urgent,2021-04-09,Inconclusive,5041,320,2,5,,,,DISCHARGED -5042,2023-04-18,20813.306560139998,146,Elective,2023-04-25,Abnormal,5042,48,2,28,,,,DISCHARGED -5043,2019-06-09,40757.3551857576,235,Urgent,2019-07-05,Inconclusive,5043,174,0,13,,,,DISCHARGED -5044,2020-02-04,17321.140036717312,251,Emergency,2020-02-23,Inconclusive,5044,51,0,15,,,,DISCHARGED -5045,2021-03-02,16378.781678607344,240,Emergency,2021-03-24,Abnormal,5045,101,1,2,,,,DISCHARGED -5046,2019-11-25,43590.07167383812,242,Elective,2019-12-19,Abnormal,5046,215,3,8,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5047,2019-07-31,43062.1083929731,353,Emergency,2019-08-21,Abnormal,5047,437,2,14,,,,DISCHARGED -5048,2023-06-28,49667.36702889071,173,Emergency,2023-07-19,Normal,5048,187,4,20,,,,DISCHARGED -5049,2022-04-28,8651.44419487702,482,Emergency,2022-04-29,Abnormal,5049,56,1,17,,,,DISCHARGED -5050,2021-10-19,24653.17843045977,473,Urgent,2021-10-22,Abnormal,5050,46,1,29,,,,DISCHARGED -5051,2021-12-03,14532.24324716304,318,Emergency,2021-12-31,Abnormal,5051,158,4,29,,,,DISCHARGED -5051,2021-09-03,19543.338862425404,392,Elective,2021-09-12,Inconclusive,9567,488,4,27,,,,DISCHARGED -5052,2020-07-02,35209.37418975663,281,Urgent,2020-07-14,Inconclusive,5052,173,4,9,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5053,2022-03-03,11716.8938024626,489,Elective,2022-03-24,Normal,5053,241,0,9,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -5054,2022-12-08,29907.82524173962,270,Emergency,2022-12-11,Abnormal,5054,281,2,22,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5055,2021-09-20,36691.33524644881,270,Urgent,2021-10-15,Normal,5055,240,0,2,,,,DISCHARGED -5056,2019-04-14,46421.53823861062,302,Elective,2019-04-28,Inconclusive,5056,369,2,0,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5057,2023-08-27,38177.68248968008,143,Elective,,Inconclusive,5057,4,0,2,,,,OPEN -5058,2022-08-21,36926.365646650935,419,Emergency,2022-09-19,Inconclusive,5058,83,3,24,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5059,2019-04-07,8347.554655944987,195,Urgent,2019-04-26,Inconclusive,5059,307,2,4,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5060,2019-05-15,8805.07043002689,372,Elective,2019-06-01,Abnormal,5060,360,1,6,,,,DISCHARGED -5061,2022-03-26,34517.935654574845,164,Elective,2022-04-21,Normal,5061,458,2,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5062,2021-01-22,25501.58685798513,418,Elective,2021-01-23,Inconclusive,5062,247,2,3,,,,DISCHARGED -5063,2023-02-20,49773.16757337185,195,Elective,2023-03-03,Abnormal,5063,53,2,16,,,,DISCHARGED -5064,2021-08-07,21077.736822304803,241,Urgent,2021-08-28,Normal,5064,160,3,2,,,,DISCHARGED -5065,2023-07-16,9929.621567079314,227,Emergency,2023-08-06,Normal,5065,433,0,22,,,,DISCHARGED -5065,2021-07-26,44181.52901909563,408,Emergency,2021-08-13,Inconclusive,5232,421,1,3,,,,DISCHARGED -5066,2022-01-01,5357.480502278246,220,Urgent,2022-01-14,Normal,5066,410,0,1,,,,DISCHARGED -5067,2019-01-22,8400.693581613523,369,Elective,2019-02-06,Normal,5067,225,0,13,,,,DISCHARGED -5068,2020-02-05,1547.43596985545,192,Urgent,2020-02-26,Normal,5068,14,4,4,,,,DISCHARGED -5069,2019-12-22,14675.698065375498,255,Emergency,2019-12-24,Inconclusive,5069,223,3,20,,,,DISCHARGED -5070,2023-02-07,31911.16659650923,329,Elective,2023-03-01,Inconclusive,5070,60,4,1,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -5071,2021-03-21,34979.90735804192,177,Urgent,2021-03-25,Normal,5071,121,3,14,,,,DISCHARGED -5071,2022-04-25,16457.331396161262,324,Emergency,2022-04-26,Inconclusive,7779,276,0,10,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5072,2019-07-29,43930.40305430638,183,Urgent,2019-08-07,Inconclusive,5072,45,0,21,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -5073,2022-02-09,18749.017023701683,312,Emergency,2022-02-17,Abnormal,5073,452,3,9,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5074,2023-06-14,48981.86363204137,102,Urgent,2023-06-16,Normal,5074,389,0,19,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5075,2021-08-24,38789.5203521596,154,Emergency,2021-09-03,Normal,5075,293,0,29,,,,DISCHARGED -5076,2022-04-03,5046.104099369172,297,Emergency,2022-04-24,Normal,5076,61,1,0,,,,DISCHARGED -5077,2020-05-03,36609.05501416365,304,Urgent,2020-05-15,Abnormal,5077,85,4,18,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5078,2019-08-03,22194.24856586507,384,Emergency,2019-08-24,Normal,5078,445,4,13,,,,DISCHARGED -5079,2020-05-14,9943.541969518485,176,Emergency,2020-06-08,Normal,5079,209,4,24,,,,DISCHARGED -5079,2023-06-27,33985.19506309106,173,Emergency,2023-07-04,Inconclusive,8063,77,2,25,,,,DISCHARGED -5080,2023-06-08,15957.61024078509,318,Urgent,,Normal,5080,201,1,22,,,,OPEN -5081,2023-02-02,47477.69218200944,169,Emergency,2023-02-23,Normal,5081,301,4,28,,,,DISCHARGED -5082,2023-06-03,38778.715143378366,135,Emergency,2023-06-06,Normal,5082,396,4,21,,,,DISCHARGED -5083,2022-01-01,29847.57604500654,182,Emergency,2022-01-11,Abnormal,5083,222,1,13,,,,DISCHARGED -5084,2022-03-04,34998.579654995534,391,Emergency,2022-04-01,Abnormal,5084,221,0,0,,,,DISCHARGED -5085,2020-11-12,27481.08429671334,496,Emergency,2020-11-22,Inconclusive,5085,2,4,24,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5086,2023-08-31,25488.5545187998,439,Urgent,2023-09-28,Abnormal,5086,477,0,28,,,,DISCHARGED -5087,2020-01-30,10942.63642788955,460,Emergency,2020-02-23,Normal,5087,5,4,8,,,,DISCHARGED -5088,2020-07-27,2173.0143073560757,394,Urgent,2020-08-19,Normal,5088,92,3,16,Presence of blood in stool or urine,Diagnostic tests to identify the cause. Treat underlying gastrointestinal or urological issues.,R10.9 - Unspecified abdominal pain,DISCHARGED -5089,2022-09-14,17914.79923597715,393,Elective,2022-10-03,Abnormal,5089,7,2,13,,,,DISCHARGED -5090,2020-05-12,47551.64257521588,450,Elective,2020-05-19,Normal,5090,427,4,12,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -5091,2021-12-08,14287.817991049107,311,Emergency,2022-01-04,Abnormal,5091,492,3,12,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5092,2020-04-07,38135.39035605555,358,Urgent,2020-04-29,Abnormal,5092,234,1,5,,,,DISCHARGED -5093,2021-07-12,6379.431468206156,227,Emergency,2021-08-04,Abnormal,5093,107,3,6,,,,DISCHARGED -5094,2020-02-22,5690.434388051457,256,Emergency,2020-03-23,Normal,5094,160,1,1,,,,DISCHARGED -5095,2020-12-04,7397.102105046514,257,Urgent,2020-12-15,Abnormal,5095,208,4,25,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -5096,2022-03-10,39303.05191863163,127,Urgent,2022-03-28,Abnormal,5096,239,1,7,,,,DISCHARGED -5097,2021-04-02,44220.670477086685,255,Urgent,2021-05-01,Abnormal,5097,330,3,23,,,,DISCHARGED -5097,2022-06-14,1586.6443087453392,265,Elective,2022-07-12,Inconclusive,9507,332,2,5,,,,DISCHARGED -5098,2022-04-17,7889.07978197884,120,Emergency,2022-04-24,Inconclusive,5098,49,0,24,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5099,2020-11-05,35659.62034519237,470,Emergency,2020-11-14,Abnormal,5099,10,0,2,,,,DISCHARGED -5100,2021-09-29,22479.162705327715,209,Urgent,2021-10-21,Normal,5100,350,2,17,,,,DISCHARGED -5101,2022-06-04,32815.29997796043,209,Emergency,2022-06-21,Abnormal,5101,155,0,17,,,,DISCHARGED -5102,2022-06-23,29329.13332650798,376,Elective,2022-07-22,Normal,5102,491,4,21,,,,DISCHARGED -5103,2022-05-28,41247.83920941289,420,Elective,2022-06-10,Inconclusive,5103,69,4,22,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5104,2020-03-02,14684.637807789368,131,Elective,2020-03-18,Abnormal,5104,168,3,5,,,,DISCHARGED -5105,2021-04-13,32750.13637163835,256,Emergency,2021-05-01,Normal,5105,271,3,10,,,,DISCHARGED -5106,2023-01-23,2348.075702915341,264,Elective,,Normal,5106,67,1,2,,,,OPEN -5107,2021-12-06,2501.326828908028,110,Urgent,2022-01-03,Abnormal,5107,354,3,15,,,,DISCHARGED -5108,2021-05-01,36833.41412767465,387,Urgent,2021-05-28,Abnormal,5108,251,4,4,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5109,2019-06-12,3501.2265960132518,281,Emergency,2019-06-19,Inconclusive,5109,47,3,23,,,,DISCHARGED -5110,2021-11-07,18809.576224856806,231,Elective,2021-12-03,Abnormal,5110,183,0,21,,,,DISCHARGED -5111,2022-09-23,34902.5596901161,192,Emergency,2022-10-18,Normal,5111,319,1,1,,,,DISCHARGED -5112,2023-05-05,5279.053806338706,241,Urgent,2023-05-08,Abnormal,5112,186,1,14,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5113,2019-12-30,22266.724771904683,351,Urgent,2020-01-04,Inconclusive,5113,89,4,15,,,,DISCHARGED -5114,2022-09-24,22638.04524794325,148,Elective,2022-10-03,Normal,5114,445,3,6,,,,DISCHARGED -5115,2022-03-28,22186.365924970083,483,Urgent,2022-04-26,Abnormal,5115,331,0,15,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -5116,2022-07-22,38097.37219821762,238,Elective,2022-08-17,Inconclusive,5116,138,3,23,,,,DISCHARGED -5117,2019-03-18,17218.957061815156,314,Elective,2019-03-22,Normal,5117,356,2,3,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -5118,2021-08-02,17817.20960979308,337,Emergency,2021-08-26,Abnormal,5118,88,3,27,,,,DISCHARGED -5119,2021-01-19,2191.062771318586,488,Elective,2021-02-02,Inconclusive,5119,273,4,15,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5120,2019-12-24,45561.65116025382,461,Elective,2020-01-13,Normal,5120,18,3,16,,,,DISCHARGED -5121,2022-02-06,39230.97300259444,316,Elective,2022-03-03,Abnormal,5121,470,1,1,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5122,2020-09-17,12606.224904969233,153,Elective,2020-10-05,Inconclusive,5122,310,0,15,,,,DISCHARGED -5123,2019-04-27,5147.784802637132,160,Urgent,2019-05-13,Normal,5123,357,4,3,,,,DISCHARGED -5124,2022-02-13,32504.536911314022,434,Urgent,2022-03-14,Abnormal,5124,373,2,6,Increased heart rate,"Conduct cardiovascular assessments, prescribe medications for heart rate control, and recommend lifestyle changes.",I48 - Atrial fibrillation and flutter,DISCHARGED -5125,2023-06-25,30588.68330087086,217,Elective,2023-07-04,Normal,5125,465,0,17,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -5126,2020-07-09,28479.198753920235,354,Urgent,2020-08-07,Inconclusive,5126,153,0,5,,,,DISCHARGED -5126,2023-10-09,12379.134624294014,380,Urgent,,Normal,9993,389,1,17,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,OPEN -5127,2023-07-22,13650.43845961381,245,Emergency,2023-08-05,Abnormal,5127,259,1,27,,,,DISCHARGED -5128,2019-05-27,1259.7194959308604,163,Emergency,2019-06-21,Normal,5128,107,1,6,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -5129,2021-07-22,7922.259374639687,371,Elective,2021-07-28,Abnormal,5129,370,4,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5130,2023-02-03,22474.64327157401,119,Urgent,,Abnormal,5130,284,3,18,,,,OPEN -5132,2023-08-23,49757.18985756018,223,Urgent,2023-08-24,Normal,5132,58,0,8,,,,DISCHARGED -5134,2021-12-13,26996.77570777713,364,Emergency,2021-12-30,Normal,5134,124,3,28,,,,DISCHARGED -5135,2020-01-25,28027.16780207578,408,Urgent,2020-02-16,Normal,5135,353,3,3,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5136,2019-12-28,28590.61771260386,151,Urgent,2020-01-16,Normal,5136,272,1,13,,,,DISCHARGED -5137,2023-05-20,26210.540675083856,193,Emergency,2023-06-05,Normal,5137,106,3,4,,,,DISCHARGED -5138,2022-11-06,1450.6409243881474,472,Emergency,2022-11-29,Abnormal,5138,298,0,24,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5139,2019-04-03,25719.2087967364,390,Elective,2019-04-19,Normal,5139,244,0,6,,,,DISCHARGED -5140,2023-10-09,19637.997960753062,142,Emergency,,Normal,5140,335,2,7,,,,OPEN -5141,2019-05-18,15964.45356667402,107,Urgent,2019-06-12,Abnormal,5141,449,4,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5142,2023-06-01,11720.311114443684,285,Emergency,2023-06-19,Abnormal,5142,417,3,26,,,,DISCHARGED -5143,2019-12-01,15550.561758010905,424,Urgent,2019-12-05,Normal,5143,246,4,18,,,,DISCHARGED -5144,2022-02-24,28278.66995987896,483,Urgent,2022-03-26,Inconclusive,5144,7,4,26,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -5145,2019-09-04,3546.9628249270777,150,Urgent,2019-09-27,Normal,5145,140,4,10,,,,DISCHARGED -5146,2019-12-26,18130.193051042563,469,Urgent,2020-01-21,Normal,5146,361,4,19,,,,DISCHARGED -5147,2019-03-05,12313.0155937923,273,Urgent,2019-03-07,Inconclusive,5147,7,0,22,,,,DISCHARGED -5148,2022-01-11,37655.765650130736,176,Emergency,2022-01-14,Abnormal,5148,477,3,3,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -5149,2021-06-30,10735.966504179169,327,Elective,2021-07-05,Normal,5149,351,2,17,,,,DISCHARGED -5150,2019-01-21,1272.0514204487647,234,Urgent,2019-01-28,Normal,5150,483,4,13,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,DISCHARGED -5151,2019-07-15,31483.55808887903,117,Emergency,2019-08-09,Abnormal,5151,494,2,25,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5153,2023-06-21,36262.05016221882,269,Urgent,2023-07-15,Inconclusive,5153,93,0,5,,,,DISCHARGED -5154,2019-05-04,28483.47475783277,424,Elective,2019-05-08,Inconclusive,5154,320,0,24,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5155,2020-02-02,46501.41107778,266,Elective,2020-02-23,Inconclusive,5155,426,1,15,,,,DISCHARGED -5156,2023-01-15,1981.0896297497384,279,Elective,2023-02-12,Inconclusive,5156,38,4,17,Recurrent fevers and night sweats,"Investigation for underlying infections or systemic conditions, and appropriate treatment based on the diagnosis.",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -5157,2020-12-26,30424.24670835349,163,Elective,2020-12-27,Normal,5157,80,1,0,,,,DISCHARGED -5158,2020-05-04,41821.08228991133,243,Urgent,2020-05-29,Inconclusive,5158,186,2,7,,,,DISCHARGED -5160,2023-09-02,40563.460539870015,133,Elective,2023-09-15,Inconclusive,5160,83,3,0,,,,DISCHARGED -5160,2021-04-21,20748.42806274156,235,Urgent,2021-05-02,Inconclusive,6161,87,1,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -5161,2018-11-28,49028.35142291023,227,Elective,2018-12-01,Normal,5161,241,0,18,,,,DISCHARGED -5161,2023-03-19,24200.289586990104,401,Elective,2023-03-22,Normal,7429,341,4,20,,,,DISCHARGED -5162,2020-08-14,32124.16588443249,115,Urgent,2020-09-10,Inconclusive,5162,92,2,28,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5163,2022-12-01,14576.052719707131,442,Emergency,2022-12-22,Abnormal,5163,85,0,27,,,,DISCHARGED -5164,2022-04-09,10645.37550774106,199,Emergency,2022-04-23,Abnormal,5164,43,3,24,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -5165,2023-08-13,35750.63106481579,160,Elective,,Inconclusive,5165,136,4,26,,,,OPEN -5166,2022-05-01,37856.31886153119,486,Emergency,2022-05-07,Normal,5166,420,3,9,,,,DISCHARGED -5168,2022-05-14,28673.253814415508,131,Elective,2022-06-02,Abnormal,5168,73,3,17,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -5170,2023-02-20,36704.28690427285,371,Urgent,,Abnormal,5170,35,4,11,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,OPEN -5171,2023-03-23,15910.791599315406,451,Urgent,2023-04-02,Abnormal,5171,100,4,27,,,,DISCHARGED -5172,2023-02-15,32946.37386702329,173,Urgent,2023-03-02,Normal,5172,475,3,16,,,,DISCHARGED -5173,2021-09-27,9281.857561464249,159,Elective,2021-10-18,Inconclusive,5173,155,2,0,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -5174,2023-02-07,36496.49084044139,181,Emergency,2023-02-09,Inconclusive,5174,425,4,7,,,,DISCHARGED -5175,2021-12-16,22699.119822200057,183,Urgent,2022-01-10,Abnormal,5175,254,0,9,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5176,2020-03-23,25268.53697640309,401,Elective,2020-03-31,Inconclusive,5176,170,1,25,,,,DISCHARGED -5177,2019-02-08,47097.50897390788,117,Urgent,2019-02-15,Normal,5177,468,2,9,,,,DISCHARGED -5178,2023-01-17,47403.274614423295,333,Emergency,,Normal,5178,215,4,17,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",OPEN -5181,2023-06-02,29197.717478553037,331,Emergency,2023-06-13,Abnormal,5181,169,4,28,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5181,2023-03-11,26808.23001967882,422,Urgent,,Abnormal,7476,251,2,8,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -5182,2023-07-10,14897.824044181014,329,Elective,,Abnormal,5182,359,1,24,,,,OPEN -5183,2022-01-18,29778.3100976944,170,Emergency,2022-02-13,Normal,5183,321,3,1,,,,DISCHARGED -5184,2022-04-17,12652.7367568972,263,Emergency,2022-05-09,Abnormal,5184,54,0,2,,,,DISCHARGED -5185,2022-02-17,48514.63488666102,175,Emergency,2022-03-07,Inconclusive,5185,455,4,1,,,,DISCHARGED -5186,2023-09-18,1172.659953875504,379,Elective,2023-10-16,Inconclusive,5186,431,1,5,,,,DISCHARGED -5187,2019-10-11,26449.156255032744,151,Emergency,2019-10-17,Abnormal,5187,90,0,22,,,,DISCHARGED -5188,2023-02-07,9413.999977684554,186,Urgent,,Abnormal,5188,277,2,11,,,,OPEN -5189,2022-02-18,18386.73821567868,254,Emergency,2022-02-26,Inconclusive,5189,100,4,21,,,,DISCHARGED -5190,2018-12-07,39661.33407160865,364,Elective,2018-12-31,Inconclusive,5190,154,3,18,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -5191,2021-11-11,44866.916638648734,101,Elective,2021-11-26,Abnormal,5191,376,2,27,,,,DISCHARGED -5192,2021-09-27,34945.33717731973,290,Urgent,2021-10-22,Inconclusive,5192,348,4,14,,,,DISCHARGED -5195,2021-08-15,6116.923875134586,343,Elective,2021-08-25,Inconclusive,5195,450,1,18,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5196,2019-03-13,23142.126357517936,411,Urgent,2019-03-28,Abnormal,5196,363,0,11,,,,DISCHARGED -5197,2023-01-31,18687.903357694744,458,Emergency,2023-02-13,Normal,5197,140,0,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5198,2022-04-29,32627.342223406,335,Elective,2022-05-06,Abnormal,5198,172,4,15,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5199,2019-09-25,1926.6662530599983,449,Urgent,2019-10-24,Normal,5199,9,2,1,,,,DISCHARGED -5200,2020-05-05,9907.394047069422,446,Urgent,2020-05-17,Inconclusive,5200,227,3,10,,,,DISCHARGED -5201,2021-09-06,29473.003230377253,295,Elective,2021-09-12,Normal,5201,264,1,11,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -5202,2022-08-21,48716.023366180765,399,Emergency,2022-09-13,Abnormal,5202,437,4,4,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5203,2021-07-24,7038.8277432283,304,Emergency,2021-08-04,Normal,5203,247,1,26,,,,DISCHARGED -5204,2023-06-04,22876.63714225199,126,Emergency,2023-06-29,Normal,5204,246,0,26,,,,DISCHARGED -5205,2023-07-25,15114.21953923833,443,Urgent,2023-08-03,Abnormal,5205,154,3,23,,,,DISCHARGED -5206,2019-09-18,25492.354986840543,458,Emergency,2019-09-25,Normal,5206,33,1,5,"Describes a persistent, throbbing pain in the temples.",Assess for tension headaches or other causes; prescribe pain relievers and recommend lifestyle changes.,R29.9 - Unspecified symptoms and signs involving the nervous system,DISCHARGED -5207,2021-11-23,19623.135690572144,344,Urgent,2021-12-22,Inconclusive,5207,498,4,24,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -5207,2023-03-17,40257.55988229859,220,Urgent,2023-04-11,Inconclusive,7625,128,3,10,,,,DISCHARGED -5208,2022-06-16,26244.70606168459,372,Urgent,2022-06-28,Normal,5208,159,2,20,,,,DISCHARGED -5209,2021-08-08,26250.09268002844,397,Emergency,2021-09-05,Abnormal,5209,88,4,9,,,,DISCHARGED -5210,2023-02-14,9363.156577558748,379,Urgent,,Inconclusive,5210,92,1,3,,,,OPEN -5211,2019-02-18,47696.27664125714,243,Emergency,2019-03-18,Abnormal,5211,326,3,8,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -5212,2021-09-02,24843.09902959749,493,Emergency,2021-09-25,Normal,5212,240,4,11,,,,DISCHARGED -5213,2023-05-19,27233.90963192384,487,Urgent,,Inconclusive,5213,322,3,9,,,,OPEN -5214,2020-08-06,39186.46235653345,105,Elective,2020-08-10,Inconclusive,5214,467,3,26,,,,DISCHARGED -5215,2022-02-12,35023.68912553508,396,Urgent,2022-02-22,Abnormal,5215,403,3,13,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5217,2023-09-30,25258.915221257168,203,Urgent,2023-10-14,Normal,5217,116,1,4,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5218,2019-08-09,12620.191027203891,498,Emergency,2019-08-31,Normal,5218,93,4,0,,,,DISCHARGED -5219,2021-11-29,46691.96896180026,135,Emergency,2021-12-05,Abnormal,5219,162,0,4,,,,DISCHARGED -5220,2019-12-22,18212.235553405266,150,Elective,2020-01-16,Abnormal,5220,98,0,15,,,,DISCHARGED -5223,2020-04-23,1703.5574370888792,313,Emergency,2020-05-20,Abnormal,5223,112,1,4,,,,DISCHARGED -5224,2020-11-18,43955.43534389099,412,Emergency,2020-12-11,Abnormal,5224,358,1,4,,,,DISCHARGED -5225,2020-07-28,40749.89977643832,449,Emergency,2020-08-16,Abnormal,5225,90,3,28,,,,DISCHARGED -5226,2020-06-11,46801.18080261245,133,Urgent,2020-06-21,Abnormal,5226,345,4,17,,,,DISCHARGED -5227,2018-12-28,16591.810883957984,389,Urgent,2019-01-14,Normal,5227,205,4,28,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5228,2023-02-04,39914.34095318098,128,Urgent,2023-02-16,Inconclusive,5228,16,2,5,,,,DISCHARGED -5229,2020-07-30,33977.2254630983,397,Emergency,2020-08-18,Abnormal,5229,273,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5230,2021-03-08,29265.9523186035,474,Urgent,2021-03-11,Abnormal,5230,172,0,17,,,,DISCHARGED -5231,2022-06-14,22219.37329418572,453,Urgent,2022-07-01,Normal,5231,115,2,27,,,,DISCHARGED -5233,2021-11-17,24876.76609000926,138,Emergency,2021-11-21,Inconclusive,5233,348,2,9,,,,DISCHARGED -5234,2023-08-29,43069.08045232865,250,Elective,2023-08-30,Normal,5234,467,0,14,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5235,2019-08-24,20063.468608215764,288,Elective,2019-09-14,Abnormal,5235,180,0,29,,,,DISCHARGED -5236,2022-10-17,12071.366195923749,161,Elective,2022-11-09,Inconclusive,5236,90,2,23,,,,DISCHARGED -5237,2019-10-25,2751.955990536877,347,Emergency,2019-10-26,Abnormal,5237,81,4,21,,,,DISCHARGED -5237,2019-12-29,37020.925858857256,379,Urgent,2020-01-13,Normal,9632,323,2,10,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5238,2022-09-26,18538.95006147664,495,Urgent,2022-09-28,Abnormal,5238,448,3,25,,,,DISCHARGED -5239,2019-03-24,48708.8706878804,293,Urgent,2019-03-27,Inconclusive,5239,113,3,27,,,,DISCHARGED -5240,2019-06-17,41039.152467523294,145,Elective,2019-07-04,Inconclusive,5240,256,3,26,,,,DISCHARGED -5240,2023-05-13,39858.605919572365,243,Urgent,2023-05-28,Normal,7432,57,1,18,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5241,2022-06-27,2907.0567740026404,311,Emergency,2022-07-16,Inconclusive,5241,153,3,24,,,,DISCHARGED -5242,2020-08-17,46424.14934130371,270,Urgent,2020-09-10,Inconclusive,5242,364,4,12,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5243,2021-06-01,12021.925633727167,307,Urgent,2021-06-12,Abnormal,5243,403,1,26,,,,DISCHARGED -5244,2020-09-17,18219.643450890868,195,Emergency,2020-10-13,Inconclusive,5244,115,1,26,,,,DISCHARGED -5245,2023-09-23,44044.824301646346,500,Urgent,2023-10-02,Inconclusive,5245,342,3,29,,,,DISCHARGED -5246,2019-10-30,32393.922225869275,360,Urgent,2019-11-01,Abnormal,5246,265,2,19,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -5248,2020-11-20,38192.24708130329,444,Elective,2020-12-05,Normal,5248,314,0,2,,,,DISCHARGED -5248,2021-01-23,9054.056612162198,294,Emergency,2021-02-06,Inconclusive,7009,202,2,15,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5249,2019-04-29,31138.531570528456,246,Emergency,2019-05-28,Abnormal,5249,40,2,6,,,,DISCHARGED -5250,2022-12-09,9837.2564619063,294,Urgent,2022-12-20,Inconclusive,5250,104,1,11,,,,DISCHARGED -5251,2022-06-26,6243.818912741213,121,Elective,2022-06-28,Inconclusive,5251,388,1,28,,,,DISCHARGED -5252,2019-05-29,46435.406990034,105,Elective,2019-06-23,Normal,5252,377,1,14,,,,DISCHARGED -5253,2020-12-07,33714.713895835084,364,Elective,2020-12-28,Normal,5253,192,4,29,,,,DISCHARGED -5254,2021-03-19,47482.47335979292,211,Urgent,2021-03-27,Inconclusive,5254,400,4,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5255,2020-08-18,11390.808640513238,125,Urgent,2020-09-13,Normal,5255,277,0,22,,,,DISCHARGED -5256,2022-02-27,47406.65124654162,430,Urgent,2022-03-26,Normal,5256,353,1,16,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5257,2022-02-18,12123.022948194506,303,Urgent,2022-03-15,Abnormal,5257,236,3,0,,,,DISCHARGED -5258,2019-05-28,18156.354363072747,141,Elective,2019-06-04,Abnormal,5258,424,1,28,,,,DISCHARGED -5259,2021-02-21,44991.86684195481,468,Elective,2021-03-23,Normal,5259,220,4,20,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5260,2019-01-01,45770.0297892668,351,Urgent,2019-01-05,Inconclusive,5260,67,1,29,,,,DISCHARGED -5261,2022-08-24,49661.2470973855,261,Urgent,2022-09-05,Abnormal,5261,196,4,7,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5262,2021-03-25,16060.585663211245,359,Emergency,2021-04-07,Abnormal,5262,255,1,13,,,,DISCHARGED -5262,2019-06-16,22790.376840207064,239,Elective,2019-06-24,Inconclusive,7483,138,3,9,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5262,2023-10-05,8887.988126145556,210,Elective,2023-10-26,Abnormal,8475,311,0,26,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5263,2023-10-08,29618.68695088728,245,Elective,,Abnormal,5263,434,3,18,,,,OPEN -5264,2020-03-27,23040.68279097219,394,Urgent,2020-04-23,Abnormal,5264,148,4,7,,,,DISCHARGED -5265,2020-12-03,33400.77395852582,485,Urgent,2020-12-14,Abnormal,5265,98,2,18,Frequent shoulder pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5267,2023-06-25,23191.437316779917,122,Elective,2023-06-29,Normal,5267,75,3,3,,,,DISCHARGED -5268,2023-09-29,27808.686260342136,238,Emergency,2023-10-04,Normal,5268,281,1,9,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5269,2020-02-01,18406.510117157035,438,Elective,2020-02-23,Normal,5269,370,0,22,,,,DISCHARGED -5270,2022-10-26,20152.934724714687,164,Emergency,2022-11-16,Inconclusive,5270,402,1,2,,,,DISCHARGED -5271,2021-03-10,35336.54685593156,477,Urgent,2021-03-14,Inconclusive,5271,108,1,3,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -5272,2019-01-05,45189.24584398605,441,Emergency,2019-01-14,Abnormal,5272,187,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5272,2022-11-06,32596.969893982976,237,Emergency,2022-11-26,Normal,8528,198,0,23,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -5273,2020-09-27,23387.498167739595,250,Elective,2020-10-10,Normal,5273,302,2,3,,,,DISCHARGED -5274,2019-10-29,48599.59229382341,187,Elective,2019-11-01,Normal,5274,326,1,24,,,,DISCHARGED -5275,2021-12-26,43801.88454043095,342,Elective,2021-12-30,Abnormal,5275,153,0,19,,,,DISCHARGED -5276,2023-09-21,11292.690655192097,441,Elective,2023-09-23,Abnormal,5276,39,2,28,,,,DISCHARGED -5277,2022-01-22,47708.84509469196,488,Emergency,2022-02-12,Abnormal,5277,132,1,29,,,,DISCHARGED -5278,2022-08-02,46405.609088226425,363,Emergency,2022-08-04,Normal,5278,404,0,19,,,,DISCHARGED -5279,2022-03-01,9302.207797850466,436,Elective,2022-03-20,Abnormal,5279,461,3,12,,,,DISCHARGED -5280,2020-01-23,18990.308273929,273,Emergency,2020-02-20,Normal,5280,131,1,20,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -5281,2018-12-25,5040.738326886707,446,Elective,2019-01-15,Inconclusive,5281,278,1,16,,,,DISCHARGED -5282,2020-03-15,17791.94959070682,201,Emergency,2020-03-19,Normal,5282,361,0,22,,,,DISCHARGED -5282,2021-04-17,20514.67691999995,351,Urgent,2021-04-20,Normal,7842,83,1,24,,,,DISCHARGED -5283,2020-01-07,33940.6495390121,142,Elective,2020-01-26,Normal,5283,398,2,15,,,,DISCHARGED -5285,2022-06-20,41984.88583170091,445,Elective,2022-07-08,Inconclusive,5285,241,1,27,,,,DISCHARGED -5286,2021-11-29,13923.722207965006,120,Urgent,2021-12-26,Inconclusive,5286,115,4,24,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5287,2023-01-17,30927.596774208425,380,Urgent,2023-02-03,Inconclusive,5287,108,2,16,,,,DISCHARGED -5288,2022-09-06,45332.9114383018,191,Elective,2022-09-30,Abnormal,5288,220,0,5,,,,DISCHARGED -5289,2023-06-03,7280.258731348832,121,Urgent,2023-06-09,Abnormal,5289,391,2,2,,,,DISCHARGED -5290,2020-04-07,44665.58346299991,269,Elective,2020-04-30,Abnormal,5290,40,4,19,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -5291,2023-04-22,6943.602234449973,190,Elective,2023-04-23,Inconclusive,5291,367,4,23,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -5291,2021-07-16,6743.587021111983,350,Elective,2021-08-15,Inconclusive,7038,146,1,3,,,,DISCHARGED -5293,2021-11-28,34290.81106653555,171,Emergency,2021-12-01,Normal,5293,111,1,7,,,,DISCHARGED -5294,2019-11-27,21269.961761348197,456,Elective,2019-12-23,Abnormal,5294,102,3,19,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -5295,2020-09-18,2426.6177893942768,364,Emergency,2020-09-23,Inconclusive,5295,45,2,8,,,,DISCHARGED -5296,2019-02-17,7271.705234775733,232,Emergency,2019-03-08,Inconclusive,5296,411,3,21,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -5297,2019-11-28,6147.781585691975,354,Emergency,2019-12-26,Normal,5297,493,4,0,,,,DISCHARGED -5298,2022-10-21,38505.2933934196,185,Emergency,2022-11-03,Inconclusive,5298,474,1,12,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5299,2023-08-30,22940.65966947428,447,Elective,2023-09-24,Normal,5299,323,1,25,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -5300,2021-12-26,38652.44784415607,499,Emergency,2022-01-09,Normal,5300,377,1,1,,,,DISCHARGED -5301,2022-02-14,16975.993989791416,115,Elective,2022-02-20,Abnormal,5301,270,0,22,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5302,2023-03-18,5953.958899304417,446,Emergency,2023-03-29,Abnormal,5302,482,4,9,,,,DISCHARGED -5304,2023-04-03,41490.31352502009,425,Emergency,2023-04-19,Inconclusive,5304,420,1,22,,,,DISCHARGED -5305,2023-02-25,46001.29489302763,198,Emergency,2023-02-28,Abnormal,5305,384,4,18,,,,DISCHARGED -5306,2020-04-07,48407.9927355567,372,Urgent,2020-05-05,Abnormal,5306,194,1,16,,,,DISCHARGED -5307,2021-02-27,35159.076689868154,346,Urgent,2021-03-29,Inconclusive,5307,366,2,23,,,,DISCHARGED -5308,2023-10-17,46425.52394262858,474,Urgent,2023-10-18,Inconclusive,5308,279,4,12,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -5310,2020-10-26,10101.14795685093,396,Emergency,2020-11-15,Abnormal,5310,282,3,28,,,,DISCHARGED -5311,2020-08-18,19911.481805316693,154,Elective,2020-09-01,Inconclusive,5311,39,0,25,,,,DISCHARGED -5312,2020-04-03,31421.33605830356,435,Emergency,2020-04-10,Abnormal,5312,446,3,13,,,,DISCHARGED -5312,2021-01-13,10332.537182502045,136,Urgent,2021-01-27,Abnormal,6223,188,4,26,,,,DISCHARGED -5313,2022-11-20,6538.339832777338,109,Elective,2022-11-21,Normal,5313,163,1,10,,,,DISCHARGED -5314,2023-01-13,10528.691860138466,118,Emergency,,Inconclusive,5314,481,4,9,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",OPEN -5316,2019-05-19,37788.61108637827,224,Elective,2019-06-18,Abnormal,5316,476,0,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -5317,2019-01-15,36269.15234978935,173,Urgent,2019-01-29,Normal,5317,23,4,9,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5318,2020-08-14,26857.80751957179,281,Elective,2020-09-03,Inconclusive,5318,23,1,23,,,,DISCHARGED -5319,2019-03-23,1750.4645692866843,197,Urgent,2019-04-12,Abnormal,5319,489,3,0,,,,DISCHARGED -5320,2023-09-13,28410.20032258373,314,Elective,2023-09-26,Abnormal,5320,3,2,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5321,2022-06-30,49874.62222518887,303,Urgent,2022-07-03,Normal,5321,322,3,2,,,,DISCHARGED -5322,2019-08-28,15207.704125165776,196,Elective,2019-09-06,Normal,5322,289,1,12,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5323,2022-11-14,21106.1622177802,455,Emergency,2022-12-07,Inconclusive,5323,440,1,1,,,,DISCHARGED -5324,2022-11-19,33294.20730722521,495,Emergency,2022-12-18,Inconclusive,5324,432,0,16,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -5325,2018-11-01,42411.20965936169,145,Emergency,2018-11-12,Normal,5325,470,4,20,,,,DISCHARGED -5326,2022-03-20,42758.97959650399,496,Urgent,2022-03-25,Normal,5326,180,4,2,,,,DISCHARGED -5327,2022-09-14,4645.351762174405,374,Elective,2022-09-29,Normal,5327,247,3,25,,,,DISCHARGED -5328,2021-04-19,35589.818019400314,241,Elective,2021-05-06,Inconclusive,5328,115,2,14,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5329,2023-10-17,40837.9125009489,150,Emergency,2023-11-13,Normal,5329,278,2,7,,,,DISCHARGED -5330,2021-11-24,15988.948357667903,388,Elective,2021-12-12,Abnormal,5330,364,0,5,,,,DISCHARGED -5331,2020-07-24,32447.69749887272,229,Urgent,2020-08-11,Abnormal,5331,68,1,25,,,,DISCHARGED -5332,2019-01-06,48068.42743358444,125,Emergency,2019-01-07,Normal,5332,350,0,29,,,,DISCHARGED -5333,2023-03-04,33527.72606393148,123,Urgent,2023-03-23,Inconclusive,5333,253,4,8,,,,DISCHARGED -5334,2022-12-29,8464.131385097815,497,Elective,2023-01-20,Inconclusive,5334,180,1,24,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5335,2022-03-14,29553.755389591177,321,Elective,2022-04-08,Normal,5335,317,0,10,,,,DISCHARGED -5336,2023-07-01,22080.99390125088,156,Urgent,2023-07-18,Normal,5336,168,3,21,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -5337,2023-08-06,37565.73816624861,310,Urgent,2023-08-28,Abnormal,5337,312,4,1,,,,DISCHARGED -5338,2019-07-31,24789.88105489378,275,Elective,2019-08-02,Abnormal,5338,248,2,8,,,,DISCHARGED -5339,2019-07-16,37165.99926019338,344,Emergency,2019-07-29,Abnormal,5339,187,0,17,,,,DISCHARGED -5340,2021-07-16,38047.23617445312,477,Emergency,2021-08-10,Inconclusive,5340,53,4,18,,,,DISCHARGED -5341,2019-12-24,1422.3067701407497,296,Elective,2020-01-03,Abnormal,5341,325,4,21,,,,DISCHARGED -5341,2020-07-21,40613.17537109844,194,Emergency,2020-08-19,Normal,7715,356,2,17,,,,DISCHARGED -5342,2021-04-28,2530.743028796275,338,Emergency,2021-05-04,Normal,5342,312,2,4,,,,DISCHARGED -5343,2020-07-12,39465.43991927848,477,Elective,2020-08-05,Inconclusive,5343,137,2,17,,,,DISCHARGED -5344,2021-04-13,16696.69493599367,383,Urgent,2021-04-23,Normal,5344,167,0,11,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5345,2023-01-15,8392.045632088782,113,Emergency,,Inconclusive,5345,390,2,3,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",OPEN -5346,2018-12-27,44835.551923487765,329,Elective,2019-01-07,Normal,5346,102,3,14,,,,DISCHARGED -5347,2022-07-15,41152.08651687772,116,Elective,2022-07-31,Abnormal,5347,421,4,10,,,,DISCHARGED -5348,2023-03-25,10938.3560169617,401,Emergency,,Inconclusive,5348,84,2,26,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,OPEN -5349,2020-11-04,39163.2761091567,388,Emergency,2020-11-08,Abnormal,5349,316,4,18,,,,DISCHARGED -5349,2022-10-07,28911.8217100814,422,Elective,2022-10-13,Normal,5967,211,1,4,,,,DISCHARGED -5350,2019-09-11,18429.65766887912,258,Emergency,2019-09-26,Abnormal,5350,2,1,5,,,,DISCHARGED -5351,2020-03-20,2321.0371386477877,341,Urgent,2020-04-14,Abnormal,5351,383,2,12,,,,DISCHARGED -5352,2022-11-10,27995.572777828173,283,Elective,2022-11-13,Normal,5352,178,4,22,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5352,2023-01-07,41047.74921477449,221,Elective,,Abnormal,7452,341,1,9,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5353,2022-07-28,24095.36526351721,344,Emergency,2022-08-18,Abnormal,5353,302,2,23,,,,DISCHARGED -5354,2020-05-19,49700.98120803751,133,Emergency,2020-05-29,Abnormal,5354,451,4,24,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5354,2023-10-23,22074.39268761999,222,Urgent,2023-11-12,Abnormal,7569,475,2,13,,,,DISCHARGED -5355,2019-07-09,13411.08305129469,349,Elective,2019-08-05,Normal,5355,331,4,3,,,,DISCHARGED -5356,2023-02-19,6639.058142140622,234,Urgent,,Normal,5356,37,1,19,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",OPEN -5357,2020-08-21,39291.57930780216,459,Emergency,2020-09-10,Inconclusive,5357,498,2,22,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -5357,2022-03-11,14624.447761972537,319,Elective,2022-04-02,Normal,8312,419,1,11,,,,DISCHARGED -5358,2022-02-27,17227.234822947503,256,Urgent,2022-03-08,Inconclusive,5358,238,2,14,,,,DISCHARGED -5359,2022-10-08,30539.400149840912,422,Emergency,2022-11-06,Normal,5359,168,0,25,,,,DISCHARGED -5360,2021-08-17,4170.371037880999,195,Urgent,2021-09-09,Inconclusive,5360,452,1,9,,,,DISCHARGED -5361,2023-09-27,9047.530841846115,157,Elective,2023-10-14,Normal,5361,396,1,10,,,,DISCHARGED -5362,2023-06-19,45809.65808749955,464,Elective,2023-07-10,Inconclusive,5362,342,3,8,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -5363,2022-03-04,39428.53026744075,443,Urgent,2022-03-05,Abnormal,5363,313,1,10,,,,DISCHARGED -5364,2019-12-15,30263.184287280103,477,Urgent,2019-12-24,Inconclusive,5364,305,4,1,,,,DISCHARGED -5365,2023-09-16,28010.774778172246,203,Urgent,2023-10-11,Inconclusive,5365,29,2,12,,,,DISCHARGED -5365,2021-03-19,18843.142998483618,232,Elective,2021-03-21,Abnormal,8497,189,0,26,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5366,2022-11-21,1080.8669526267531,302,Elective,2022-11-23,Inconclusive,5366,356,4,21,,,,DISCHARGED -5367,2020-04-30,42836.19925513295,500,Elective,2020-05-10,Inconclusive,5367,24,4,25,,,,DISCHARGED -5368,2023-01-23,30861.70453786641,380,Urgent,2023-02-18,Normal,5368,111,4,25,,,,DISCHARGED -5369,2020-04-15,26804.80874203124,148,Elective,2020-05-10,Inconclusive,5369,410,4,7,,,,DISCHARGED -5370,2022-09-22,46032.57922096606,357,Emergency,2022-09-28,Normal,5370,434,0,28,,,,DISCHARGED -5371,2019-03-26,43214.8507055202,328,Emergency,2019-04-13,Normal,5371,205,3,20,,,,DISCHARGED -5372,2021-08-22,35865.4012798763,363,Urgent,2021-09-15,Normal,5372,184,1,20,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -5373,2019-03-16,42233.967419656736,400,Elective,2019-04-01,Inconclusive,5373,381,4,7,,,,DISCHARGED -5374,2023-08-05,37953.00141973952,305,Urgent,,Normal,5374,495,1,0,,,,OPEN -5375,2022-01-21,42059.84507440352,216,Urgent,2022-02-09,Normal,5375,378,1,5,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -5376,2021-11-06,24684.18458097732,188,Elective,2021-11-15,Normal,5376,46,4,25,,,,DISCHARGED -5377,2022-05-19,13827.517439138348,195,Emergency,2022-05-23,Inconclusive,5377,373,3,12,,,,DISCHARGED -5378,2020-01-09,38452.14533880384,166,Urgent,2020-02-07,Abnormal,5378,227,1,8,,,,DISCHARGED -5379,2021-11-03,48785.143226280336,122,Emergency,2021-11-15,Inconclusive,5379,38,2,27,,,,DISCHARGED -5380,2019-11-06,9820.269855080442,300,Elective,2019-12-01,Normal,5380,15,1,5,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -5381,2022-09-07,32236.78326851948,242,Emergency,2022-09-28,Abnormal,5381,21,4,14,,,,DISCHARGED -5382,2019-11-09,42383.36091951493,190,Urgent,2019-11-21,Normal,5382,212,0,22,,,,DISCHARGED -5383,2021-01-19,24411.6592538423,165,Urgent,2021-02-02,Inconclusive,5383,309,1,15,Persistent sneezing,"Identifying and avoiding triggers, antihistamines, and sometimes allergy shots","L50.9 - Urticaria, unspecified",DISCHARGED -5383,2023-10-11,13178.685214354206,486,Urgent,,Normal,5834,148,3,3,,,,OPEN -5384,2019-12-02,43428.36202951809,425,Emergency,2019-12-09,Abnormal,5384,455,2,27,,,,DISCHARGED -5385,2021-09-14,35476.09677467794,302,Emergency,2021-09-15,Abnormal,5385,240,2,25,Cramping and bloating after meals,"Evaluate for digestive disorders, prescribe antispasmodic medications, recommend dietary changes, and consider further gastrointestinal investigations.",K30 - Functional dyspepsia,DISCHARGED -5386,2020-08-24,16287.82264090078,423,Elective,2020-09-14,Normal,5386,271,0,16,,,,DISCHARGED -5387,2018-11-16,9545.64603043312,230,Urgent,2018-12-10,Abnormal,5387,58,0,8,,,,DISCHARGED -5388,2023-03-16,49250.1054529776,480,Emergency,2023-04-12,Inconclusive,5388,286,1,11,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -5389,2020-12-22,36824.12385592929,141,Emergency,2020-12-26,Inconclusive,5389,425,4,21,,,,DISCHARGED -5390,2023-10-14,38851.27355297423,134,Emergency,2023-10-29,Inconclusive,5390,201,3,18,,,,DISCHARGED -5391,2018-12-21,27369.153397422564,197,Urgent,2019-01-20,Abnormal,5391,31,2,19,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5392,2020-02-10,7140.297578535327,211,Emergency,2020-02-11,Normal,5392,442,0,25,,,,DISCHARGED -5395,2019-12-07,22359.40877319428,439,Urgent,2019-12-26,Normal,5395,161,3,11,,,,DISCHARGED -5396,2022-04-05,34853.81702775787,204,Urgent,2022-04-17,Normal,5396,254,4,21,,,,DISCHARGED -5397,2021-02-27,5429.632982750025,118,Emergency,2021-03-29,Normal,5397,253,2,5,,,,DISCHARGED -5398,2021-07-21,38730.71082495431,330,Elective,2021-07-27,Normal,5398,8,2,11,,,,DISCHARGED -5399,2021-09-01,3237.2037960223056,427,Elective,2021-09-07,Normal,5399,464,4,8,,,,DISCHARGED -5400,2023-05-28,3062.780223094609,417,Emergency,,Inconclusive,5400,138,2,19,,,,OPEN -5401,2020-06-07,40806.31699083983,315,Urgent,2020-07-01,Inconclusive,5401,479,4,4,,,,DISCHARGED -5402,2019-10-02,38807.55158630943,284,Emergency,2019-10-29,Abnormal,5402,9,2,20,,,,DISCHARGED -5403,2020-07-14,36160.41237376924,297,Emergency,2020-08-04,Inconclusive,5403,213,1,2,,,,DISCHARGED -5404,2019-12-23,49932.9018159729,139,Elective,2020-01-16,Abnormal,5404,272,4,1,,,,DISCHARGED -5405,2020-10-07,23052.528213908503,126,Emergency,2020-10-17,Inconclusive,5405,323,3,7,,,,DISCHARGED -5406,2020-11-27,21193.1273674194,466,Emergency,2020-12-12,Abnormal,5406,47,1,9,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5407,2022-10-03,16674.88160857864,458,Elective,2022-10-16,Normal,5407,435,3,14,,,,DISCHARGED -5408,2020-05-30,5445.315077691656,331,Urgent,2020-06-16,Abnormal,5408,110,2,8,,,,DISCHARGED -5409,2023-08-01,2991.585877151348,297,Emergency,2023-08-20,Abnormal,5409,152,3,9,,,,DISCHARGED -5410,2022-02-28,27735.17374627667,397,Urgent,2022-03-21,Normal,5410,122,1,10,,,,DISCHARGED -5411,2019-12-16,5538.860169765128,431,Emergency,2019-12-19,Normal,5411,404,4,28,,,,DISCHARGED -5412,2021-01-24,40778.51024034466,420,Elective,2021-02-13,Inconclusive,5412,356,0,8,,,,DISCHARGED -5413,2022-03-06,45552.59617365875,284,Urgent,2022-03-13,Normal,5413,101,3,13,,,,DISCHARGED -5415,2019-03-16,37061.43491338366,357,Urgent,2019-04-09,Abnormal,5415,240,0,4,,,,DISCHARGED -5416,2020-12-28,28846.661833847807,278,Emergency,2021-01-14,Abnormal,5416,320,3,26,,,,DISCHARGED -5416,2020-06-26,27278.165514539785,488,Urgent,2020-06-27,Abnormal,9175,190,3,8,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -5417,2018-11-28,14594.566067869942,137,Elective,2018-12-14,Abnormal,5417,216,4,3,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5418,2023-08-14,22296.73953689249,470,Emergency,,Normal,5418,50,2,1,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -5419,2018-11-27,10023.970303055092,407,Urgent,2018-12-18,Abnormal,5419,291,1,18,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -5420,2022-10-03,29208.66801834079,244,Urgent,2022-10-29,Normal,5420,80,1,0,,,,DISCHARGED -5421,2021-04-06,36935.61043704975,176,Elective,2021-04-12,Inconclusive,5421,488,1,20,,,,DISCHARGED -5422,2019-10-21,13495.099745750576,199,Emergency,2019-11-07,Abnormal,5422,382,2,0,,,,DISCHARGED -5423,2020-10-26,1791.3037254107592,169,Urgent,2020-10-31,Abnormal,5423,87,0,11,,,,DISCHARGED -5424,2019-04-26,39884.67218928435,294,Urgent,2019-05-22,Normal,5424,193,1,10,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5426,2022-01-20,16277.077550480746,107,Urgent,2022-02-01,Abnormal,5426,103,0,0,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -5427,2022-11-02,31236.902863500552,257,Emergency,2022-11-04,Normal,5427,270,2,13,,,,DISCHARGED -5428,2019-02-06,5493.691696701916,457,Emergency,2019-02-14,Inconclusive,5428,95,2,26,,,,DISCHARGED -5429,2022-07-27,24513.15489993489,329,Elective,2022-08-20,Abnormal,5429,422,4,10,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -5430,2021-12-13,1764.4822924212513,124,Emergency,2021-12-27,Inconclusive,5430,378,1,28,,,,DISCHARGED -5431,2022-07-18,5752.507708254177,255,Urgent,2022-07-24,Abnormal,5431,197,4,6,,,,DISCHARGED -5432,2022-04-16,46865.626212657815,441,Elective,2022-05-15,Inconclusive,5432,0,1,1,,,,DISCHARGED -5433,2023-07-21,24518.20993969547,191,Emergency,2023-07-31,Abnormal,5433,494,2,14,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -5434,2022-11-05,13191.363987295816,316,Emergency,2022-11-26,Inconclusive,5434,406,2,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -5435,2023-09-08,16738.006507391347,434,Emergency,,Normal,5435,377,3,21,,,,OPEN -5436,2021-02-17,22500.804527599492,367,Emergency,2021-03-14,Abnormal,5436,166,3,19,,,,DISCHARGED -5437,2023-03-27,26561.15042423582,305,Urgent,,Inconclusive,5437,125,2,24,,,,OPEN -5438,2019-01-04,16990.727072996044,134,Urgent,2019-01-12,Inconclusive,5438,312,2,14,,,,DISCHARGED -5439,2023-03-11,43497.94261493842,197,Urgent,,Normal,5439,80,0,25,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",OPEN -5440,2021-07-11,42186.70287432094,214,Elective,2021-08-06,Normal,5440,417,0,7,,,,DISCHARGED -5440,2019-07-30,31513.06488585425,295,Elective,2019-08-23,Normal,8413,250,4,28,,,,DISCHARGED -5441,2023-07-23,48974.16779572172,217,Elective,,Inconclusive,5441,168,3,9,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,OPEN -5442,2020-07-07,45776.19121582433,362,Elective,2020-07-21,Abnormal,5442,476,3,18,,,,DISCHARGED -5443,2021-04-03,48754.54852661361,357,Urgent,2021-04-28,Normal,5443,72,2,2,,,,DISCHARGED -5444,2021-11-17,49677.361740915374,227,Urgent,2021-12-02,Inconclusive,5444,140,2,19,,,,DISCHARGED -5446,2022-05-24,41944.96990492281,433,Elective,2022-06-14,Inconclusive,5446,69,4,13,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -5447,2021-02-02,25322.96010050705,354,Elective,2021-02-10,Inconclusive,5447,261,3,8,,,,DISCHARGED -5448,2021-09-28,34638.29465458193,219,Urgent,2021-10-03,Inconclusive,5448,339,0,8,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -5449,2021-05-05,49634.14975559975,471,Emergency,2021-05-20,Abnormal,5449,307,1,20,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -5450,2019-05-17,27559.73375065933,151,Elective,2019-06-10,Abnormal,5450,244,4,27,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5451,2023-05-22,49681.632573105744,122,Urgent,2023-05-31,Inconclusive,5451,2,1,24,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -5452,2019-02-25,39404.23567524226,204,Urgent,2019-03-09,Abnormal,5452,336,0,5,,,,DISCHARGED -5453,2019-11-25,14114.391134339276,327,Elective,2019-12-21,Inconclusive,5453,62,0,7,,,,DISCHARGED -5454,2020-03-31,48197.48511573792,354,Urgent,2020-04-21,Abnormal,5454,48,1,10,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -5455,2018-11-24,20635.83232207457,358,Urgent,2018-11-26,Normal,5455,75,4,7,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5456,2023-10-14,15011.811970797087,285,Emergency,2023-11-10,Abnormal,5456,367,1,11,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -5457,2019-03-12,40490.06178194295,137,Emergency,2019-04-04,Inconclusive,5457,174,4,9,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -5458,2023-09-14,48296.69098795672,215,Elective,2023-09-26,Inconclusive,5458,108,4,22,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -5459,2019-01-25,11435.536672536811,311,Emergency,2019-02-08,Normal,5459,182,2,3,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -5460,2021-05-09,41209.828504691,245,Elective,2021-05-24,Inconclusive,5460,191,3,15,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5461,2022-01-09,19716.05716892109,123,Emergency,2022-01-30,Inconclusive,5461,64,3,19,,,,DISCHARGED -5462,2022-04-16,6280.45456453877,454,Emergency,2022-04-17,Normal,5462,336,0,5,,,,DISCHARGED -5463,2019-05-27,19455.289654116084,180,Urgent,2019-06-25,Abnormal,5463,450,2,29,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5464,2022-05-23,42544.932608938056,155,Elective,2022-06-03,Normal,5464,473,3,8,,,,DISCHARGED -5465,2019-10-03,26853.596179774904,419,Emergency,2019-10-31,Inconclusive,5465,270,4,22,,,,DISCHARGED -5466,2023-02-18,1752.278905377956,309,Elective,2023-03-13,Inconclusive,5466,99,4,4,,,,DISCHARGED -5467,2022-04-22,32598.26667597038,286,Urgent,2022-04-26,Abnormal,5467,31,1,20,Dry and itchy skin,"Recommend moisturizers and topical treatments, identify potential allergens, and suggest lifestyle changes for skin health.","L30.9 - Dermatitis, unspecified",DISCHARGED -5469,2019-10-25,40038.40258360773,116,Elective,2019-10-28,Normal,5469,351,1,23,,,,DISCHARGED -5470,2019-09-26,49317.80454141078,465,Elective,2019-09-28,Abnormal,5470,127,4,5,,,,DISCHARGED -5472,2023-01-16,23887.20644644489,432,Urgent,,Abnormal,5472,451,4,16,,,,OPEN -5473,2023-05-06,18095.28928942116,290,Emergency,,Abnormal,5473,401,1,16,,,,OPEN -5474,2020-03-21,47696.71156865114,358,Urgent,2020-04-17,Abnormal,5474,368,3,24,,,,DISCHARGED -5475,2021-07-26,25437.52023244568,238,Elective,2021-08-23,Normal,5475,338,0,23,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5476,2023-05-16,45112.76363156635,237,Urgent,2023-05-18,Inconclusive,5476,42,1,21,,,,DISCHARGED -5476,2021-01-07,28209.277420581533,333,Emergency,2021-02-06,Abnormal,7281,371,3,12,,,,DISCHARGED -5477,2022-10-01,47868.67773014483,226,Urgent,2022-10-08,Abnormal,5477,418,3,16,,,,DISCHARGED -5478,2020-03-29,4017.326220379593,304,Urgent,2020-04-02,Normal,5478,487,3,13,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -5479,2019-10-16,13827.383117892345,258,Urgent,2019-10-25,Normal,5479,77,2,1,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5480,2018-12-05,43790.45894859171,345,Urgent,2019-01-04,Abnormal,5480,313,2,25,,,,DISCHARGED -5481,2018-12-24,20507.74368592553,286,Urgent,2019-01-12,Inconclusive,5481,288,3,18,,,,DISCHARGED -5481,2019-01-10,27550.76728405913,373,Urgent,2019-01-22,Abnormal,9623,269,4,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -5482,2021-12-27,7843.595497328682,109,Emergency,2022-01-08,Normal,5482,161,2,27,,,,DISCHARGED -5483,2019-10-26,17841.742606173466,495,Elective,2019-11-13,Inconclusive,5483,188,1,2,,,,DISCHARGED -5484,2020-07-08,29167.34119712129,466,Emergency,2020-07-14,Inconclusive,5484,246,2,1,,,,DISCHARGED -5485,2021-02-07,33775.446353892046,209,Emergency,2021-02-16,Inconclusive,5485,387,4,27,,,,DISCHARGED -5486,2020-10-11,32706.281202055,325,Emergency,2020-10-30,Inconclusive,5486,215,0,1,,,,DISCHARGED -5487,2022-10-12,17257.5074224556,254,Emergency,2022-11-04,Inconclusive,5487,314,2,21,,,,DISCHARGED -5488,2021-03-10,9281.810846090568,327,Urgent,2021-03-21,Inconclusive,5488,412,3,6,,,,DISCHARGED -5489,2021-12-21,30107.17524570852,412,Urgent,2022-01-04,Abnormal,5489,338,3,3,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5490,2021-11-04,15596.575378101004,118,Emergency,2021-12-03,Normal,5490,389,3,16,,,,DISCHARGED -5491,2020-10-14,40532.34825106549,435,Emergency,2020-11-04,Normal,5491,376,0,5,,,,DISCHARGED -5492,2020-02-09,9251.907942613594,474,Emergency,2020-02-14,Normal,5492,480,4,6,,,,DISCHARGED -5493,2022-08-18,14673.780086112352,315,Emergency,2022-09-03,Normal,5493,432,1,19,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -5494,2022-09-09,5829.162439815217,125,Emergency,2022-10-03,Inconclusive,5494,167,4,5,,,,DISCHARGED -5495,2021-12-28,1171.4206586373248,354,Emergency,2022-01-08,Abnormal,5495,338,0,8,,,,DISCHARGED -5496,2020-03-06,6379.529525027945,266,Urgent,2020-03-07,Abnormal,5496,192,3,19,,,,DISCHARGED -5497,2023-09-14,13971.4243152323,498,Urgent,,Inconclusive,5497,452,4,27,,,,OPEN -5498,2020-06-08,20097.20931310368,146,Urgent,2020-06-24,Inconclusive,5498,282,1,29,,,,DISCHARGED -5499,2021-02-09,18985.709716127338,291,Elective,2021-02-23,Inconclusive,5499,335,3,25,,,,DISCHARGED -5500,2019-04-26,25853.24710900689,314,Urgent,2019-05-22,Abnormal,5500,389,1,3,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -5501,2023-01-14,9451.878754301972,252,Emergency,2023-02-08,Inconclusive,5501,487,2,25,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5502,2023-03-09,33844.07352681068,144,Urgent,,Normal,5502,12,1,27,,,,OPEN -5503,2021-02-27,8870.420105055236,136,Emergency,2021-02-28,Inconclusive,5503,239,3,4,,,,DISCHARGED -5504,2019-07-10,27241.209026550157,298,Emergency,2019-07-17,Inconclusive,5504,319,2,18,,,,DISCHARGED -5505,2019-01-10,27481.173241159617,152,Urgent,2019-01-12,Inconclusive,5505,445,3,9,,,,DISCHARGED -5506,2023-06-20,11801.951974206746,265,Elective,2023-07-06,Normal,5506,482,3,17,,,,DISCHARGED -5507,2021-02-24,43392.61962127786,267,Urgent,2021-03-09,Inconclusive,5507,146,2,14,,,,DISCHARGED -5508,2023-01-21,1848.5187892732315,407,Emergency,2023-02-20,Normal,5508,203,1,24,,,,DISCHARGED -5509,2019-06-22,10083.532618668076,440,Urgent,2019-07-08,Normal,5509,79,0,28,,,,DISCHARGED -5510,2021-02-02,1317.0555110624366,248,Urgent,2021-02-19,Abnormal,5510,378,0,0,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5511,2019-06-16,17853.73322610585,485,Emergency,2019-07-05,Inconclusive,5511,42,0,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -5512,2020-06-18,1090.4798751265444,274,Elective,2020-06-26,Abnormal,5512,457,0,4,,,,DISCHARGED -5513,2020-06-02,9870.166225123636,253,Emergency,2020-06-26,Inconclusive,5513,88,4,7,Persistent feelings of sadness and hopelessness,"Counseling, psychotherapy, and, if necessary, medications such as antidepressants. Evaluation for underlying mental health conditions is essential.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -5514,2022-08-26,1565.318159720578,228,Emergency,2022-08-29,Inconclusive,5514,147,0,21,,,,DISCHARGED -5515,2020-01-08,23444.41579454259,485,Emergency,2020-01-09,Normal,5515,94,2,21,,,,DISCHARGED -5516,2023-10-25,22192.03635583758,187,Elective,2023-10-26,Inconclusive,5516,451,0,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5517,2020-03-05,11915.283048303389,449,Emergency,2020-03-22,Normal,5517,427,3,19,,,,DISCHARGED -5520,2019-12-03,43119.38515863943,278,Urgent,2020-01-02,Inconclusive,5520,150,0,14,,,,DISCHARGED -5521,2023-07-12,20330.53178539943,195,Urgent,2023-07-15,Abnormal,5521,1,1,16,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -5522,2021-10-02,19406.62775687958,158,Urgent,2021-10-18,Abnormal,5522,375,2,18,,,,DISCHARGED -5523,2022-07-01,19313.957475013107,393,Emergency,2022-07-27,Inconclusive,5523,21,2,28,,,,DISCHARGED -5524,2020-03-24,12165.82119856502,296,Urgent,2020-04-03,Abnormal,5524,370,4,12,,,,DISCHARGED -5525,2023-01-17,37595.19110595963,151,Elective,2023-01-22,Inconclusive,5525,312,3,25,,,,DISCHARGED -5526,2022-10-14,15730.48708492797,486,Emergency,2022-10-18,Inconclusive,5526,484,2,27,,,,DISCHARGED -5527,2023-03-27,44514.06142166318,130,Urgent,2023-03-31,Normal,5527,327,1,26,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -5528,2020-03-22,38101.05263674001,104,Emergency,2020-04-14,Abnormal,5528,6,0,21,,,,DISCHARGED -5529,2022-06-21,17925.32225291541,384,Urgent,2022-07-17,Inconclusive,5529,205,2,20,,,,DISCHARGED -5530,2023-07-31,42151.09026458504,394,Urgent,2023-08-30,Normal,5530,439,1,9,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -5531,2020-07-09,26631.683125464417,243,Emergency,2020-07-10,Abnormal,5531,374,0,16,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -5532,2020-01-22,42214.17530048848,167,Elective,2020-02-18,Normal,5532,450,4,4,,,,DISCHARGED -5533,2020-11-17,5771.419236935768,102,Urgent,2020-11-26,Abnormal,5533,113,2,17,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -5534,2021-05-18,11918.006576010368,490,Emergency,2021-05-28,Inconclusive,5534,271,2,16,,,,DISCHARGED -5535,2019-03-11,49438.0076061757,347,Emergency,2019-03-28,Abnormal,5535,82,1,3,,,,DISCHARGED -5536,2020-02-28,24878.26484293333,340,Urgent,2020-03-25,Inconclusive,5536,178,3,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5537,2022-04-15,30505.306210412044,498,Urgent,2022-04-18,Normal,5537,209,4,6,,,,DISCHARGED -5538,2020-07-01,36568.46414381794,168,Elective,2020-07-31,Abnormal,5538,499,3,24,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5539,2020-02-09,49909.18220645191,341,Elective,2020-03-02,Normal,5539,463,2,4,,,,DISCHARGED -5539,2019-11-25,23006.61167380606,250,Elective,2019-12-17,Abnormal,6981,327,3,7,,,,DISCHARGED -5540,2019-01-16,5077.590508859319,153,Elective,2019-01-29,Abnormal,5540,123,0,7,,,,DISCHARGED -5541,2022-10-22,5331.683334057343,283,Urgent,2022-11-12,Normal,5541,480,4,10,,,,DISCHARGED -5542,2022-01-17,18550.21627748104,353,Elective,2022-01-27,Normal,5542,112,3,8,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5543,2021-02-22,3428.931836088073,247,Emergency,2021-03-06,Abnormal,5543,11,0,18,,,,DISCHARGED -5544,2020-12-08,20096.283126410373,200,Urgent,2020-12-16,Abnormal,5544,125,1,18,,,,DISCHARGED -5546,2020-12-18,38710.7696472897,304,Emergency,2021-01-08,Inconclusive,5546,52,3,8,,,,DISCHARGED -5547,2018-12-05,7064.179237757457,418,Elective,2018-12-23,Inconclusive,5547,330,4,22,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5548,2022-11-14,23219.054089596983,308,Emergency,2022-12-14,Abnormal,5548,388,0,19,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -5549,2021-03-19,38848.09466883852,238,Emergency,2021-04-07,Normal,5549,282,3,16,Excessive sweating,"Investigate potential underlying medical conditions, antiperspirants, and lifestyle modifications. Monitor and adjust treatment based on the cause.","L74.9 - Eccrine sweat disorders, unspecified",DISCHARGED -5550,2020-01-22,16387.39328439017,433,Urgent,2020-02-15,Abnormal,5550,139,1,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -5551,2019-06-08,6515.100206365886,309,Urgent,2019-06-23,Abnormal,5551,400,3,6,,,,DISCHARGED -5552,2019-08-17,16645.647468518873,365,Emergency,2019-09-08,Inconclusive,5552,389,0,25,,,,DISCHARGED -5554,2021-03-31,33023.83276802979,463,Emergency,2021-04-02,Normal,5554,96,3,21,,,,DISCHARGED -5555,2020-12-05,24465.45861240059,489,Emergency,2020-12-22,Inconclusive,5555,4,4,2,,,,DISCHARGED -5556,2022-05-02,32860.62483981741,112,Urgent,2022-05-21,Normal,5556,56,2,29,,,,DISCHARGED -5557,2023-08-09,13981.360950147007,162,Elective,,Abnormal,5557,411,0,20,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -5558,2021-05-15,9995.572768966307,171,Emergency,2021-06-13,Inconclusive,5558,333,0,18,,,,DISCHARGED -5559,2021-07-09,4789.085848439766,366,Elective,2021-07-14,Normal,5559,68,0,7,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5560,2018-11-14,2510.8946413030926,192,Urgent,2018-11-22,Inconclusive,5560,117,0,4,,,,DISCHARGED -5561,2021-01-06,14355.618596031883,252,Emergency,2021-01-18,Normal,5561,375,3,25,,,,DISCHARGED -5562,2023-10-14,23527.84194061165,139,Elective,2023-10-26,Normal,5562,58,4,25,,,,DISCHARGED -5564,2020-01-15,29906.40318346309,375,Elective,2020-01-31,Normal,5564,32,1,5,,,,DISCHARGED -5567,2023-01-12,40213.047287467205,237,Emergency,,Inconclusive,5567,317,4,1,,,,OPEN -5568,2020-10-20,45927.48416195112,195,Elective,2020-10-27,Abnormal,5568,49,0,23,,,,DISCHARGED -5569,2023-07-17,44689.23117222465,346,Emergency,2023-08-15,Inconclusive,5569,367,3,24,,,,DISCHARGED -5570,2023-04-20,15917.577082387976,355,Emergency,2023-04-25,Abnormal,5570,488,3,18,,,,DISCHARGED -5571,2019-06-20,1488.2328137328843,405,Emergency,2019-07-10,Abnormal,5571,18,0,12,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -5572,2022-02-22,37711.81670605661,191,Emergency,2022-03-03,Abnormal,5572,213,3,5,Alterations in bowel patterns,"Dietary changes, fiber supplements, and addressing underlying gastrointestinal conditions. Investigate and treat the cause.",K58 - Irritable bowel syndrome IBS with other functional GI disorder,DISCHARGED -5573,2022-06-30,34654.84177432377,476,Elective,2022-07-24,Normal,5573,196,0,5,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -5574,2022-12-19,36354.02930778381,319,Urgent,2022-12-28,Abnormal,5574,378,4,1,,,,DISCHARGED -5575,2020-08-18,15438.610912911528,277,Elective,2020-08-31,Normal,5575,449,2,25,,,,DISCHARGED -5576,2020-03-18,34330.79074201225,380,Urgent,2020-04-02,Normal,5576,477,3,23,,,,DISCHARGED -5577,2022-12-01,9220.16754797901,116,Urgent,2022-12-07,Normal,5577,46,0,4,,,,DISCHARGED -5578,2020-05-20,44923.25744086493,438,Elective,2020-06-10,Inconclusive,5578,166,0,10,,,,DISCHARGED -5579,2020-11-07,22068.640535493523,213,Urgent,2020-12-06,Abnormal,5579,451,3,10,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5580,2022-10-25,42799.59918412646,289,Emergency,2022-10-31,Abnormal,5580,288,1,23,,,,DISCHARGED -5581,2021-08-03,47395.17921545352,143,Urgent,2021-08-22,Abnormal,5581,140,0,13,,,,DISCHARGED -5582,2023-01-15,39764.117164923344,309,Urgent,2023-01-22,Abnormal,5582,83,3,12,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5583,2021-12-31,49220.553079794336,367,Elective,2022-01-10,Normal,5583,181,0,29,,,,DISCHARGED -5584,2022-07-04,43274.20650763516,374,Urgent,2022-07-09,Normal,5584,390,1,7,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5586,2021-08-24,43446.94664550018,340,Urgent,2021-09-21,Inconclusive,5586,78,2,14,,,,DISCHARGED -5587,2019-04-17,14655.18387092568,399,Urgent,2019-04-22,Normal,5587,214,1,11,,,,DISCHARGED -5588,2020-10-22,9434.675755998407,397,Emergency,2020-11-20,Inconclusive,5588,13,4,2,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -5590,2022-04-07,40815.12039678574,433,Elective,2022-04-10,Abnormal,5590,214,3,20,,,,DISCHARGED -5592,2021-02-20,24531.27398924686,184,Elective,2021-03-12,Abnormal,5592,402,1,22,,,,DISCHARGED -5593,2020-01-15,30795.47031065481,191,Emergency,2020-02-12,Abnormal,5593,127,2,4,,,,DISCHARGED -5594,2021-10-09,13207.348028691957,324,Emergency,2021-10-31,Normal,5594,309,0,5,,,,DISCHARGED -5595,2020-10-09,8040.212832703101,470,Emergency,2020-10-25,Normal,5595,476,3,1,,,,DISCHARGED -5596,2021-07-02,4161.722926333099,446,Emergency,2021-07-06,Normal,5596,247,1,7,,,,DISCHARGED -5597,2020-01-22,20070.28090316163,313,Urgent,2020-02-09,Abnormal,5597,403,2,4,,,,DISCHARGED -5598,2021-08-30,13139.890419137198,137,Emergency,2021-09-27,Normal,5598,28,1,21,,,,DISCHARGED -5600,2019-08-08,4162.362805840682,349,Emergency,2019-09-04,Normal,5600,279,4,16,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5601,2020-10-22,36661.40216194962,381,Emergency,2020-11-12,Abnormal,5601,337,3,25,,,,DISCHARGED -5602,2018-11-27,23045.374639854595,352,Elective,2018-12-10,Abnormal,5602,318,0,1,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -5604,2023-10-24,3210.616254246515,214,Emergency,2023-11-04,Abnormal,5604,201,2,10,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -5605,2021-12-20,7461.403668350002,346,Emergency,2021-12-23,Abnormal,5605,360,1,3,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5606,2022-02-09,5270.709086060577,363,Urgent,2022-02-16,Inconclusive,5606,56,3,10,,,,DISCHARGED -5607,2020-04-12,7487.829803795133,269,Urgent,2020-05-06,Abnormal,5607,391,1,8,,,,DISCHARGED -5608,2019-01-02,36325.2152786961,258,Emergency,2019-01-21,Abnormal,5608,217,3,5,,,,DISCHARGED -5609,2018-12-09,22732.71868779149,156,Elective,2019-01-08,Abnormal,5609,61,4,23,,,,DISCHARGED -5610,2020-11-26,35233.89064235108,390,Urgent,2020-12-13,Abnormal,5610,156,1,1,,,,DISCHARGED -5611,2019-06-30,19740.5756484834,316,Emergency,2019-07-02,Normal,5611,201,4,25,,,,DISCHARGED -5612,2023-02-08,20388.025680574097,155,Emergency,2023-03-05,Inconclusive,5612,16,2,14,,,,DISCHARGED -5613,2020-12-15,46015.86130437745,472,Elective,2021-01-06,Normal,5613,321,4,4,,,,DISCHARGED -5614,2020-06-18,7884.663378720075,407,Elective,2020-06-29,Inconclusive,5614,5,3,27,,,,DISCHARGED -5615,2023-04-25,27739.58011355435,374,Elective,2023-05-11,Abnormal,5615,57,2,11,,,,DISCHARGED -5616,2019-05-16,44362.92171141461,167,Elective,2019-05-18,Normal,5616,324,1,12,,,,DISCHARGED -5617,2023-05-17,2821.05523952982,229,Emergency,2023-06-15,Inconclusive,5617,411,1,16,,,,DISCHARGED -5618,2022-08-06,48676.14664262107,480,Elective,2022-08-23,Normal,5618,317,3,3,,,,DISCHARGED -5619,2021-09-04,27585.57269442252,448,Emergency,2021-09-11,Inconclusive,5619,168,0,9,,,,DISCHARGED -5620,2023-03-18,27874.35597098301,359,Elective,2023-04-06,Inconclusive,5620,452,0,0,,,,DISCHARGED -5621,2020-04-24,11002.91140641999,385,Emergency,2020-05-09,Inconclusive,5621,81,1,10,,,,DISCHARGED -5622,2021-01-23,45881.272449917866,226,Emergency,2021-02-10,Abnormal,5622,473,3,15,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -5623,2021-11-15,25853.706752899558,487,Emergency,2021-11-30,Normal,5623,467,0,10,,,,DISCHARGED -5624,2021-10-06,48665.55069627846,401,Emergency,2021-11-03,Abnormal,5624,424,4,8,,,,DISCHARGED -5625,2023-10-05,42186.368950674754,258,Emergency,2023-10-23,Normal,5625,432,1,1,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5626,2020-08-04,31737.40129078574,122,Elective,2020-08-10,Abnormal,5626,218,4,6,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5627,2020-04-07,15823.579218098175,317,Urgent,2020-04-20,Normal,5627,176,3,18,,,,DISCHARGED -5628,2023-05-09,28350.11369627051,149,Emergency,2023-05-14,Normal,5628,203,4,29,,,,DISCHARGED -5629,2021-12-31,21264.44562119641,212,Emergency,2022-01-23,Inconclusive,5629,70,0,17,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -5630,2021-07-13,4300.140475867282,190,Urgent,2021-08-03,Inconclusive,5630,386,0,28,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -5632,2019-04-19,42177.74827463338,235,Elective,2019-05-02,Normal,5632,265,2,19,,,,DISCHARGED -5633,2022-10-27,48154.36869166793,476,Elective,2022-11-24,Normal,5633,97,1,6,,,,DISCHARGED -5634,2022-02-23,23546.824236261076,165,Elective,2022-03-01,Abnormal,5634,344,3,22,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -5635,2023-02-04,3827.47615749252,303,Emergency,2023-03-03,Inconclusive,5635,290,1,8,,,,DISCHARGED -5636,2023-07-28,46966.75584267557,331,Urgent,,Inconclusive,5636,207,4,11,,,,OPEN -5637,2019-03-25,49423.49523302996,184,Emergency,2019-04-15,Abnormal,5637,1,3,28,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -5638,2019-02-09,8357.29228941246,175,Emergency,2019-02-13,Abnormal,5638,123,3,2,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -5639,2022-12-08,6158.640815770521,226,Emergency,2023-01-05,Normal,5639,279,0,22,,,,DISCHARGED -5640,2022-06-26,35905.18892706407,441,Urgent,2022-07-26,Normal,5640,73,4,21,,,,DISCHARGED -5641,2021-01-14,28555.815041452966,316,Elective,2021-01-26,Normal,5641,165,0,25,,,,DISCHARGED -5642,2023-01-06,15258.262477474316,167,Emergency,2023-01-09,Abnormal,5642,21,0,15,,,,DISCHARGED -5643,2019-12-31,6602.251287758873,372,Urgent,2020-01-24,Abnormal,5643,153,2,6,,,,DISCHARGED -5644,2019-06-06,43419.95581722009,316,Emergency,2019-06-07,Inconclusive,5644,426,0,22,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5645,2021-02-09,47211.49182779642,211,Urgent,2021-02-18,Normal,5645,438,1,25,,,,DISCHARGED -5647,2023-08-12,36132.48816773328,253,Urgent,2023-08-15,Inconclusive,5647,294,3,4,,,,DISCHARGED -5648,2023-01-17,11398.30961281586,220,Emergency,,Normal,5648,218,0,24,,,,OPEN -5649,2022-01-03,48089.11756732609,312,Elective,2022-01-16,Inconclusive,5649,156,1,22,,,,DISCHARGED -5650,2020-08-03,2947.8440318769035,228,Urgent,2020-08-27,Normal,5650,494,4,6,,,,DISCHARGED -5652,2021-11-20,26213.02241810872,489,Urgent,2021-12-17,Normal,5652,229,3,27,Difficulty in maintaining balance while walking,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -5653,2020-09-02,5323.758450915077,192,Elective,2020-09-26,Abnormal,5653,19,4,29,,,,DISCHARGED -5654,2023-10-25,34345.81066804729,193,Emergency,,Abnormal,5654,474,1,18,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5655,2022-09-20,25252.626807088083,492,Emergency,2022-10-03,Normal,5655,40,4,16,,,,DISCHARGED -5656,2020-05-27,4615.153353499796,492,Elective,2020-06-22,Inconclusive,5656,437,4,15,,,,DISCHARGED -5659,2023-04-02,8927.207797682033,252,Emergency,2023-04-26,Inconclusive,5659,147,4,29,,,,DISCHARGED -5660,2020-07-13,37583.68177193296,221,Urgent,2020-08-01,Inconclusive,5660,107,0,29,,,,DISCHARGED -5661,2019-07-31,30478.781418852614,476,Urgent,2019-08-18,Normal,5661,402,0,20,,,,DISCHARGED -5662,2023-01-13,4184.293920628197,271,Emergency,,Inconclusive,5662,83,0,23,,,,OPEN -5663,2019-10-24,4130.883390064402,227,Emergency,2019-11-02,Abnormal,5663,482,3,20,,,,DISCHARGED -5663,2020-02-01,34177.07794912983,282,Elective,2020-02-26,Inconclusive,9286,366,1,25,,,,DISCHARGED -5664,2019-07-26,26743.861006390787,247,Urgent,2019-07-28,Normal,5664,321,0,18,,,,DISCHARGED -5665,2022-02-06,9840.83120603295,128,Emergency,2022-02-09,Inconclusive,5665,413,4,24,,,,DISCHARGED -5667,2022-05-27,12251.998892896703,119,Elective,2022-06-18,Abnormal,5667,308,4,17,,,,DISCHARGED -5668,2020-05-06,15197.400021202966,113,Urgent,2020-05-18,Abnormal,5668,289,4,18,,,,DISCHARGED -5668,2019-11-25,5316.358466500731,463,Emergency,2019-12-25,Inconclusive,6242,405,4,27,,,,DISCHARGED -5668,2021-07-18,22756.839328326983,426,Urgent,2021-08-03,Inconclusive,7157,322,2,3,,,,DISCHARGED -5668,2018-11-05,10591.224896961778,489,Urgent,2018-11-06,Abnormal,8212,133,3,25,,,,DISCHARGED -5668,2019-10-26,28633.40747210143,188,Emergency,2019-10-28,Inconclusive,8627,206,1,0,,,,DISCHARGED -5668,2023-07-10,5866.170886251431,376,Urgent,,Normal,9748,282,1,26,,,,OPEN -5668,2023-06-01,41866.85304340323,319,Emergency,2023-06-26,Inconclusive,9804,265,0,3,,,,DISCHARGED -5669,2023-01-06,8763.035858471427,112,Elective,2023-01-08,Normal,5669,72,2,3,,,,DISCHARGED -5670,2020-10-27,15695.611575715258,307,Emergency,2020-11-14,Inconclusive,5670,480,1,8,,,,DISCHARGED -5671,2021-09-07,36737.00274310557,140,Urgent,2021-09-28,Inconclusive,5671,351,3,7,,,,DISCHARGED -5672,2021-02-11,27633.871154691664,442,Emergency,2021-02-23,Inconclusive,5672,47,4,1,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -5673,2021-03-23,14923.44447975883,217,Urgent,2021-03-27,Inconclusive,5673,325,0,28,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5674,2023-07-01,14987.01155571157,369,Emergency,,Normal,5674,232,3,22,,,,OPEN -5675,2021-04-02,49678.36460338836,375,Emergency,2021-04-12,Abnormal,5675,442,1,5,,,,DISCHARGED -5675,2020-01-09,49541.88121075537,301,Urgent,2020-01-17,Inconclusive,7180,99,2,22,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -5676,2020-05-09,13871.759919105569,338,Urgent,2020-05-21,Abnormal,5676,58,0,10,,,,DISCHARGED -5677,2021-06-24,4315.537178870989,499,Emergency,2021-07-22,Inconclusive,5677,257,1,3,,,,DISCHARGED -5678,2018-12-06,44749.88722852461,152,Emergency,2018-12-22,Normal,5678,412,0,29,,,,DISCHARGED -5679,2022-01-18,4608.005854627593,174,Urgent,2022-02-11,Inconclusive,5679,451,1,13,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5680,2022-07-15,2406.8229283273627,334,Emergency,2022-07-25,Abnormal,5680,64,4,20,,,,DISCHARGED -5681,2021-12-25,10018.58276582826,105,Urgent,2021-12-28,Abnormal,5681,82,2,21,,,,DISCHARGED -5682,2019-11-10,47696.63249222352,366,Elective,2019-11-16,Inconclusive,5682,153,4,8,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -5683,2022-04-28,3055.7876552651387,273,Urgent,2022-05-17,Normal,5683,472,1,1,,,,DISCHARGED -5683,2022-06-20,33799.18645994579,494,Elective,2022-07-17,Abnormal,9417,265,3,26,,,,DISCHARGED -5684,2019-04-25,8512.098413981746,361,Emergency,2019-05-02,Normal,5684,308,4,24,,,,DISCHARGED -5685,2021-03-12,27327.57372010893,456,Urgent,2021-04-11,Normal,5685,78,3,25,,,,DISCHARGED -5686,2021-11-17,29510.074555864503,234,Emergency,2021-12-01,Normal,5686,314,1,0,,,,DISCHARGED -5687,2022-03-11,21010.370082254976,405,Emergency,2022-03-17,Normal,5687,149,2,3,,,,DISCHARGED -5688,2019-06-18,12758.226521406705,480,Emergency,2019-06-23,Normal,5688,434,3,11,,,,DISCHARGED -5689,2019-07-28,21172.06906887447,167,Urgent,2019-08-03,Inconclusive,5689,47,1,4,,,,DISCHARGED -5689,2021-06-22,40355.01784982245,370,Emergency,2021-07-10,Normal,7125,404,3,8,,,,DISCHARGED -5690,2021-09-24,30360.96204616538,314,Urgent,2021-09-25,Normal,5690,378,4,21,,,,DISCHARGED -5691,2022-02-01,37549.91348785777,237,Elective,2022-02-23,Normal,5691,247,1,3,,,,DISCHARGED -5692,2020-11-22,42775.47614220724,398,Emergency,2020-12-05,Normal,5692,277,4,15,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -5693,2019-11-18,17838.96637972813,326,Emergency,2019-12-13,Abnormal,5693,355,0,1,,,,DISCHARGED -5694,2022-03-03,13559.55845615191,270,Emergency,2022-03-18,Normal,5694,97,1,15,,,,DISCHARGED -5695,2019-10-22,34461.72131606651,210,Urgent,2019-11-09,Normal,5695,413,3,15,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5696,2023-05-12,47400.4582329689,358,Emergency,,Abnormal,5696,24,0,20,,,,OPEN -5698,2023-01-26,33094.70879573377,299,Urgent,2023-02-13,Normal,5698,492,4,23,,,,DISCHARGED -5699,2020-03-20,16573.236706481475,117,Urgent,2020-04-07,Normal,5699,283,4,23,,,,DISCHARGED -5700,2023-08-11,38498.71041560747,376,Urgent,2023-08-21,Inconclusive,5700,448,3,21,,,,DISCHARGED -5701,2023-08-18,44787.0651182221,406,Emergency,2023-08-28,Normal,5701,368,0,10,,,,DISCHARGED -5702,2020-08-26,37341.84121302799,482,Elective,2020-09-05,Inconclusive,5702,300,2,0,,,,DISCHARGED -5703,2022-06-04,13858.04865939046,238,Elective,2022-06-28,Normal,5703,67,3,14,,,,DISCHARGED -5704,2019-08-30,36131.43860743503,291,Elective,2019-09-10,Inconclusive,5704,6,4,23,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -5705,2023-01-02,41861.69128051537,168,Urgent,2023-01-09,Abnormal,5705,304,1,3,,,,DISCHARGED -5706,2022-04-11,5930.110389450016,148,Emergency,2022-05-09,Inconclusive,5706,136,0,29,,,,DISCHARGED -5707,2019-09-22,4840.492342113495,388,Elective,2019-10-03,Abnormal,5707,163,2,17,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -5708,2021-07-28,1827.4294799765569,379,Urgent,2021-08-21,Abnormal,5708,82,1,16,,,,DISCHARGED -5709,2022-08-29,48399.47492514278,292,Elective,2022-09-13,Normal,5709,384,0,6,,,,DISCHARGED -5710,2022-09-09,44965.81453031131,170,Urgent,2022-10-09,Inconclusive,5710,137,3,17,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -5711,2021-08-29,46584.580898071865,471,Elective,2021-09-27,Normal,5711,419,3,12,,,,DISCHARGED -5712,2022-06-08,48297.63335716982,243,Emergency,2022-06-14,Inconclusive,5712,72,0,19,,,,DISCHARGED -5714,2023-05-11,5136.397471761879,151,Urgent,2023-06-08,Abnormal,5714,236,2,19,,,,DISCHARGED -5715,2022-07-30,16331.063193536294,263,Emergency,2022-08-01,Inconclusive,5715,45,0,28,,,,DISCHARGED -5716,2020-09-17,16503.62973886917,299,Emergency,2020-09-22,Inconclusive,5716,105,1,9,,,,DISCHARGED -5717,2022-07-08,20522.829017123157,489,Urgent,2022-07-09,Inconclusive,5717,415,1,0,,,,DISCHARGED -5718,2021-08-12,14164.096932117964,462,Emergency,2021-08-30,Abnormal,5718,287,3,1,,,,DISCHARGED -5719,2023-09-17,5370.047013167488,174,Urgent,,Inconclusive,5719,261,0,16,,,,OPEN -5720,2019-01-06,28846.91754780325,342,Elective,2019-02-01,Inconclusive,5720,175,3,21,,,,DISCHARGED -5721,2020-09-26,47367.3561497254,485,Elective,2020-10-08,Abnormal,5721,165,2,28,,,,DISCHARGED -5723,2021-05-13,48557.01602548985,447,Elective,2021-05-21,Abnormal,5723,144,1,2,,,,DISCHARGED -5724,2021-10-24,19061.18429876577,491,Urgent,2021-11-13,Inconclusive,5724,329,4,16,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -5725,2019-07-28,22114.08045284868,370,Urgent,2019-08-13,Normal,5725,369,4,11,,,,DISCHARGED -5726,2019-03-09,24600.56607334664,151,Elective,2019-04-02,Abnormal,5726,282,0,23,,,,DISCHARGED -5727,2022-05-04,39101.73884494055,219,Elective,2022-06-01,Inconclusive,5727,53,0,29,,,,DISCHARGED -5728,2019-10-07,11481.075740603388,216,Urgent,2019-11-02,Inconclusive,5728,177,4,11,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5729,2019-01-13,33421.42863810723,463,Elective,2019-02-12,Normal,5729,418,0,29,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -5730,2020-05-21,32683.2699086164,331,Elective,2020-06-20,Normal,5730,243,1,19,,,,DISCHARGED -5731,2023-03-27,42156.565468306886,375,Emergency,,Abnormal,5731,340,2,9,,,,OPEN -5731,2019-12-24,15914.248316226916,298,Emergency,2020-01-05,Normal,9021,126,2,6,,,,DISCHARGED -5731,2019-04-04,4639.5292352227225,127,Elective,2019-04-26,Abnormal,9370,408,3,9,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -5731,2019-02-01,35425.886041243466,133,Emergency,2019-02-24,Normal,9895,411,1,17,,,,DISCHARGED -5732,2020-03-13,27194.710328396024,170,Emergency,2020-04-03,Inconclusive,5732,366,0,21,,,,DISCHARGED -5733,2023-01-03,23157.190000952392,134,Elective,2023-01-22,Abnormal,5733,270,0,5,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5734,2019-01-23,37299.71682528774,255,Emergency,2019-01-26,Inconclusive,5734,131,3,6,,,,DISCHARGED -5735,2022-03-26,15571.276439596191,146,Elective,2022-04-05,Normal,5735,92,3,27,,,,DISCHARGED -5736,2020-11-27,43616.74802278546,330,Emergency,2020-12-18,Inconclusive,5736,378,0,16,,,,DISCHARGED -5737,2022-12-16,49867.725384729696,431,Elective,2023-01-10,Inconclusive,5737,72,0,29,,,,DISCHARGED -5738,2019-06-04,25729.725925231505,339,Emergency,2019-06-30,Abnormal,5738,410,1,11,,,,DISCHARGED -5738,2021-05-15,16743.45490083031,221,Urgent,2021-05-29,Abnormal,7106,409,3,16,,,,DISCHARGED -5739,2022-09-17,20584.482012440338,475,Urgent,2022-10-08,Abnormal,5739,402,1,17,,,,DISCHARGED -5740,2022-06-09,48478.61993394317,433,Urgent,2022-06-14,Inconclusive,5740,247,0,13,,,,DISCHARGED -5741,2023-08-20,14300.264899069169,357,Emergency,2023-09-01,Inconclusive,5741,347,4,10,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -5742,2023-10-30,12727.74271497461,232,Emergency,2023-10-31,Abnormal,5742,272,4,1,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5743,2020-09-12,34819.71541971613,441,Emergency,2020-09-18,Inconclusive,5743,42,0,20,,,,DISCHARGED -5744,2023-08-21,17102.994488013057,245,Elective,,Inconclusive,5744,376,3,0,,,,OPEN -5745,2019-01-21,26675.96281068601,376,Emergency,2019-02-11,Normal,5745,40,4,10,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -5746,2022-03-20,17266.817313593703,150,Urgent,2022-04-19,Normal,5746,169,3,1,,,,DISCHARGED -5747,2021-03-23,7852.092398446937,390,Elective,2021-03-26,Normal,5747,433,4,15,,,,DISCHARGED -5748,2018-12-21,22030.02937109001,208,Elective,2019-01-10,Normal,5748,211,3,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5749,2023-09-06,31149.52596576533,352,Urgent,,Abnormal,5749,492,4,2,Difficulty in starting urine flow,"Urological evaluation, medications for prostate health, and lifestyle modifications. Monitor urinary function and adjust treatment as needed.",N40 - Hyperplasia of prostate,OPEN -5750,2020-02-25,28148.24210457216,143,Emergency,2020-03-13,Normal,5750,167,3,19,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -5751,2022-12-25,41879.28204647698,366,Urgent,2022-12-31,Abnormal,5751,38,1,0,,,,DISCHARGED -5752,2019-06-03,18338.40500413429,212,Urgent,2019-06-22,Normal,5752,368,3,20,,,,DISCHARGED -5753,2021-08-22,35009.883490712666,409,Elective,2021-09-08,Inconclusive,5753,244,1,19,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5754,2023-10-12,16597.119745348034,253,Emergency,2023-10-31,Abnormal,5754,150,1,7,,,,DISCHARGED -5755,2023-04-21,49184.02876672157,466,Urgent,2023-05-10,Abnormal,5755,110,0,18,,,,DISCHARGED -5756,2022-07-08,37180.4313427351,339,Emergency,2022-07-09,Inconclusive,5756,479,1,25,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -5757,2019-03-15,7087.373851232525,467,Emergency,2019-04-08,Normal,5757,435,2,0,,,,DISCHARGED -5758,2022-06-28,15995.36089902244,434,Emergency,2022-07-16,Inconclusive,5758,46,1,29,,,,DISCHARGED -5759,2020-11-09,40950.12132059218,118,Elective,2020-11-15,Inconclusive,5759,62,3,28,,,,DISCHARGED -5760,2020-09-02,41684.39817453037,241,Urgent,2020-09-12,Inconclusive,5760,224,1,25,,,,DISCHARGED -5761,2020-01-21,10899.542055880904,412,Elective,2020-01-29,Inconclusive,5761,365,3,4,,,,DISCHARGED -5762,2023-06-02,17289.84023678791,187,Urgent,,Normal,5762,68,3,29,,,,OPEN -5763,2019-04-14,33675.89134708535,422,Emergency,2019-05-05,Inconclusive,5763,298,2,0,,,,DISCHARGED -5764,2020-11-14,45548.51267032782,386,Emergency,2020-11-30,Inconclusive,5764,431,1,10,,,,DISCHARGED -5765,2023-08-26,39463.93182443523,186,Elective,2023-09-17,Normal,5765,289,1,20,,,,DISCHARGED -5766,2022-09-18,11269.907149120894,110,Elective,2022-09-24,Abnormal,5766,295,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -5768,2023-02-09,43248.94433700831,108,Elective,,Normal,5768,202,4,4,,,,OPEN -5769,2019-10-31,18496.24237792658,194,Emergency,2019-11-28,Inconclusive,5769,60,0,1,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5770,2021-08-25,18541.16726544233,108,Elective,2021-08-27,Inconclusive,5770,433,3,12,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -5772,2019-01-07,1669.043673886163,341,Elective,2019-02-04,Normal,5772,450,2,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -5773,2022-07-24,28661.7431811927,484,Elective,2022-08-06,Normal,5773,317,4,25,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -5774,2022-12-18,26959.180753281984,376,Urgent,2022-12-25,Inconclusive,5774,313,1,24,,,,DISCHARGED -5775,2023-03-24,43552.75800014094,430,Urgent,2023-04-07,Normal,5775,160,0,11,,,,DISCHARGED -5776,2019-12-29,32019.79811285136,185,Elective,2020-01-10,Normal,5776,330,2,13,,,,DISCHARGED -5777,2022-01-03,48948.33346927594,403,Urgent,2022-01-14,Inconclusive,5777,15,1,4,,,,DISCHARGED -5778,2019-11-07,21988.6038189477,276,Emergency,2019-11-22,Normal,5778,337,1,26,,,,DISCHARGED -5779,2022-02-08,43160.54187875836,351,Urgent,2022-02-22,Normal,5779,93,3,23,,,,DISCHARGED -5780,2019-06-02,23048.547981640208,123,Urgent,2019-06-25,Normal,5780,303,3,9,,,,DISCHARGED -5781,2022-01-25,13801.225579838456,245,Emergency,2022-02-11,Normal,5781,137,4,19,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -5781,2019-03-01,1836.1561521746696,423,Urgent,2019-03-19,Normal,5960,337,4,1,,,,DISCHARGED -5782,2020-04-17,16258.18443999315,137,Emergency,2020-04-28,Inconclusive,5782,37,1,3,,,,DISCHARGED -5784,2023-09-15,4333.481416092538,286,Emergency,2023-09-19,Abnormal,5784,126,1,11,,,,DISCHARGED -5785,2023-01-14,10906.847568652323,433,Elective,2023-01-26,Normal,5785,274,4,10,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -5786,2022-06-10,30886.826337844217,357,Elective,2022-07-02,Abnormal,5786,163,4,3,,,,DISCHARGED -5787,2021-03-17,44016.25337996813,368,Elective,2021-04-16,Normal,5787,442,1,10,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -5788,2018-12-22,47262.23550757792,188,Emergency,2019-01-02,Normal,5788,318,2,8,,,,DISCHARGED -5789,2020-04-08,19820.57848891653,393,Elective,2020-04-23,Abnormal,5789,76,1,9,,,,DISCHARGED -5790,2021-04-25,42914.2329374088,215,Urgent,2021-05-10,Abnormal,5790,173,2,26,,,,DISCHARGED -5791,2023-02-14,28901.18562768552,209,Emergency,2023-03-04,Abnormal,5791,386,2,5,,,,DISCHARGED -5792,2022-10-13,8845.568430814148,277,Urgent,2022-10-29,Abnormal,5792,457,1,14,,,,DISCHARGED -5793,2019-07-29,21599.183580621844,337,Emergency,2019-08-25,Inconclusive,5793,357,0,9,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -5794,2022-09-28,19912.007190439665,410,Elective,2022-10-26,Normal,5794,320,4,21,,,,DISCHARGED -5795,2020-12-01,45172.92417242992,357,Elective,2020-12-14,Abnormal,5795,375,3,20,,,,DISCHARGED -5796,2022-10-03,46194.69075171524,342,Urgent,2022-10-20,Abnormal,5796,90,1,5,,,,DISCHARGED -5797,2021-10-13,44560.56556772887,236,Urgent,2021-10-19,Abnormal,5797,237,2,0,,,,DISCHARGED -5798,2020-03-20,22729.197925047607,111,Emergency,2020-03-21,Inconclusive,5798,263,1,28,,,,DISCHARGED -5799,2023-02-13,29150.76872397366,199,Emergency,,Inconclusive,5799,178,4,20,,,,OPEN -5800,2020-01-20,17479.52945715791,109,Urgent,2020-02-02,Normal,5800,493,2,27,,,,DISCHARGED -5801,2021-08-18,20701.614613882208,124,Elective,2021-09-03,Normal,5801,489,3,21,,,,DISCHARGED -5802,2022-02-09,47339.85597283217,399,Emergency,2022-03-05,Inconclusive,5802,208,3,23,,,,DISCHARGED -5803,2019-08-07,45345.552231960144,175,Urgent,2019-08-25,Inconclusive,5803,72,3,19,,,,DISCHARGED -5804,2022-02-25,23026.72608087841,423,Emergency,2022-03-12,Normal,5804,389,0,29,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -5805,2023-04-05,32135.579670758147,294,Urgent,,Normal,5805,106,2,20,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",OPEN -5806,2023-08-29,45500.46917087554,274,Urgent,,Normal,5806,344,2,3,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,OPEN -5807,2023-10-14,21874.444050306425,401,Emergency,,Inconclusive,5807,294,0,22,Sudden difficulty speaking or slurred speech,Emergency medical attention for immediate neurological evaluation and intervention.,"G43.9 - Migraine, unspecified",OPEN -5808,2022-04-13,49461.82935192647,133,Elective,2022-04-17,Inconclusive,5808,368,2,25,,,,DISCHARGED -5809,2019-05-08,14622.61692455964,213,Urgent,2019-05-15,Abnormal,5809,443,0,21,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -5810,2021-01-16,41563.12844469934,396,Emergency,2021-01-29,Normal,5810,283,1,13,,,,DISCHARGED -5811,2022-12-23,6112.92786961727,452,Emergency,2023-01-17,Inconclusive,5811,352,4,19,,,,DISCHARGED -5812,2019-08-14,30093.07734515799,408,Emergency,2019-08-27,Inconclusive,5812,181,3,21,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -5813,2019-12-30,17640.524951930267,182,Emergency,2020-01-10,Normal,5813,36,0,28,,,,DISCHARGED -5813,2019-12-23,24046.4840152496,221,Elective,2020-01-20,Abnormal,9546,136,0,19,,,,DISCHARGED -5813,2022-03-22,39389.91754865901,466,Elective,2022-03-25,Inconclusive,9606,337,0,27,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -5814,2022-03-05,20567.98716184872,354,Elective,2022-03-26,Inconclusive,5814,55,1,7,,,,DISCHARGED -5815,2023-01-01,11276.382204336329,404,Elective,2023-01-08,Abnormal,5815,186,0,10,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -5817,2022-10-12,23693.54529595784,136,Urgent,2022-10-24,Normal,5817,340,4,14,,,,DISCHARGED -5818,2023-10-14,14988.35038672491,246,Urgent,,Normal,5818,257,4,18,,,,OPEN -5819,2022-01-05,24565.706568687936,343,Elective,2022-02-04,Inconclusive,5819,444,3,7,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -5820,2021-07-16,23997.705239597235,197,Elective,2021-08-06,Normal,5820,57,1,12,,,,DISCHARGED -5821,2023-05-28,42406.43853907525,256,Urgent,2023-05-30,Inconclusive,5821,362,4,17,,,,DISCHARGED -5822,2023-07-29,10670.187689967408,241,Emergency,2023-08-17,Abnormal,5822,122,2,21,,,,DISCHARGED -5823,2021-10-13,35101.878563323065,362,Urgent,2021-10-24,Inconclusive,5823,187,2,23,,,,DISCHARGED -5824,2023-07-20,45576.31435997374,174,Elective,2023-07-29,Inconclusive,5824,229,2,16,,,,DISCHARGED -5825,2023-01-28,19029.32154932333,348,Emergency,2023-02-07,Normal,5825,167,0,5,,,,DISCHARGED -5826,2022-07-21,36199.433172516416,201,Elective,2022-08-12,Normal,5826,419,0,24,,,,DISCHARGED -5827,2021-04-20,11921.672978391598,472,Emergency,2021-04-29,Abnormal,5827,113,2,14,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -5828,2020-08-21,45547.95078050395,369,Elective,2020-08-31,Abnormal,5828,251,3,12,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -5829,2023-04-30,13478.190700482011,407,Urgent,,Abnormal,5829,106,3,25,,,,OPEN -5830,2021-12-27,24698.614404109256,410,Emergency,2022-01-22,Abnormal,5830,36,0,25,,,,DISCHARGED -5831,2018-11-28,43224.333545599846,437,Urgent,2018-12-26,Normal,5831,334,2,17,,,,DISCHARGED -5832,2022-07-22,46937.14038463809,167,Elective,2022-08-07,Normal,5832,91,3,10,,,,DISCHARGED -5833,2022-06-26,38345.28775896247,239,Elective,2022-06-30,Inconclusive,5833,17,0,12,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -5835,2019-02-14,41935.419689399416,127,Urgent,2019-02-15,Normal,5835,353,2,0,,,,DISCHARGED -5836,2020-03-30,22530.169639872976,277,Emergency,2020-03-31,Inconclusive,5836,62,1,17,Persistent stomach ache,"Dietary changes, medications for pain relief, and addressing underlying gastrointestinal issues",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -5838,2020-01-03,4280.940044330634,206,Elective,2020-01-05,Normal,5838,149,2,4,,,,DISCHARGED -5839,2019-02-16,3783.910700582603,204,Urgent,2019-03-12,Normal,5839,138,2,5,,,,DISCHARGED -5840,2019-06-30,25294.405537941053,372,Emergency,2019-07-09,Abnormal,5840,185,4,0,,,,DISCHARGED -5842,2023-06-17,6183.514532732913,154,Emergency,,Abnormal,5842,184,4,6,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,OPEN -5844,2020-12-22,40093.084438571605,439,Urgent,2020-12-30,Abnormal,5844,204,1,26,,,,DISCHARGED -5845,2021-10-31,37497.77577624628,137,Urgent,2021-11-01,Inconclusive,5845,259,1,3,,,,DISCHARGED -5846,2022-09-17,14907.71956604352,328,Urgent,2022-09-24,Abnormal,5846,213,2,8,Abdominal pain that improves after eating,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K30 - Functional dyspepsia,DISCHARGED -5849,2023-08-05,14673.462505964046,338,Elective,2023-08-13,Normal,5849,255,3,14,,,,DISCHARGED -5850,2019-08-28,3943.8805216772025,429,Emergency,2019-09-21,Normal,5850,134,1,5,,,,DISCHARGED -5851,2021-02-07,12521.845758159638,324,Urgent,2021-03-05,Abnormal,5851,60,2,24,,,,DISCHARGED -5852,2022-07-19,36083.19334909812,183,Emergency,2022-07-27,Abnormal,5852,362,0,16,,,,DISCHARGED -5853,2020-11-09,47055.45338132002,267,Urgent,2020-11-11,Normal,5853,309,4,19,,,,DISCHARGED -5854,2019-04-12,46377.806199025865,128,Elective,2019-04-28,Inconclusive,5854,87,3,17,,,,DISCHARGED -5855,2023-02-28,10562.514249173571,374,Urgent,2023-03-09,Normal,5855,323,2,21,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5856,2020-11-08,27586.898410261107,282,Emergency,2020-11-18,Normal,5856,475,0,3,,,,DISCHARGED -5857,2019-04-18,25312.26601218233,319,Elective,2019-05-17,Abnormal,5857,206,4,8,,,,DISCHARGED -5858,2022-12-08,11701.21626092594,192,Urgent,2023-01-03,Abnormal,5858,128,0,13,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -5859,2020-01-16,24169.977115139394,268,Elective,2020-02-05,Normal,5859,310,2,2,,,,DISCHARGED -5860,2022-10-13,5524.870740298888,174,Urgent,2022-11-01,Inconclusive,5860,2,1,0,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -5861,2022-08-01,4596.182829135514,374,Emergency,2022-08-09,Normal,5861,461,4,26,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",DISCHARGED -5863,2020-08-07,19663.114019123248,352,Elective,2020-08-22,Normal,5863,421,0,28,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -5865,2020-05-30,9318.907695455531,337,Emergency,2020-06-29,Normal,5865,241,1,10,,,,DISCHARGED -5866,2020-11-24,2641.4682385551496,351,Elective,2020-12-03,Normal,5866,120,3,0,,,,DISCHARGED -5867,2020-07-25,42287.61877335708,354,Emergency,2020-08-15,Abnormal,5867,384,2,11,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -5868,2022-11-27,4496.148198774687,263,Urgent,2022-12-18,Normal,5868,101,2,24,,,,DISCHARGED -5869,2023-08-15,20852.540602137957,177,Urgent,2023-09-03,Normal,5869,37,4,8,,,,DISCHARGED -5869,2021-11-11,49476.7762061845,125,Urgent,2021-12-09,Abnormal,7544,340,0,4,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5870,2021-07-24,44651.93803562648,288,Elective,2021-08-13,Abnormal,5870,495,3,14,,,,DISCHARGED -5871,2020-07-21,26437.35836345445,136,Emergency,2020-08-08,Abnormal,5871,412,4,17,,,,DISCHARGED -5872,2020-12-24,18509.19644282935,222,Elective,2021-01-19,Abnormal,5872,132,4,8,,,,DISCHARGED -5873,2020-04-29,17594.434358445425,217,Urgent,2020-05-13,Inconclusive,5873,496,0,12,,,,DISCHARGED -5874,2019-04-07,15083.367820053334,491,Elective,2019-04-25,Inconclusive,5874,201,3,27,,,,DISCHARGED -5875,2021-04-10,26555.03714641204,192,Urgent,2021-04-15,Inconclusive,5875,347,0,12,,,,DISCHARGED -5876,2022-07-20,41357.24721302806,317,Emergency,2022-07-24,Abnormal,5876,20,2,23,,,,DISCHARGED -5877,2022-11-27,48381.62277487587,261,Elective,2022-12-25,Abnormal,5877,241,1,12,,,,DISCHARGED -5878,2023-10-26,39030.95085035015,349,Emergency,2023-11-04,Abnormal,5878,454,2,26,,,,DISCHARGED -5879,2019-12-02,26175.500439449104,425,Urgent,2019-12-12,Normal,5879,450,2,9,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -5880,2019-07-15,45227.78675798777,461,Emergency,2019-07-24,Abnormal,5880,108,4,9,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -5881,2019-05-24,14423.58591974906,444,Elective,2019-06-18,Inconclusive,5881,302,2,21,,,,DISCHARGED -5882,2021-08-22,14930.015371629688,285,Emergency,2021-09-10,Abnormal,5882,83,3,6,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -5884,2020-04-02,27047.85334383124,478,Urgent,2020-04-27,Inconclusive,5884,82,2,27,,,,DISCHARGED -5884,2019-06-30,30541.94990992974,138,Elective,2019-07-19,Inconclusive,7357,290,3,21,,,,DISCHARGED -5885,2023-03-02,24745.31389445365,495,Elective,,Normal,5885,451,0,4,,,,OPEN -5886,2020-07-06,13697.626454384575,113,Urgent,2020-08-01,Inconclusive,5886,68,4,19,,,,DISCHARGED -5887,2020-01-19,12601.533998081111,253,Emergency,2020-01-26,Abnormal,5887,128,3,6,,,,DISCHARGED -5887,2019-10-04,43030.53040830031,315,Urgent,2019-10-26,Inconclusive,6791,195,2,19,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -5888,2019-08-01,18604.774225196896,371,Elective,2019-08-16,Inconclusive,5888,139,4,9,,,,DISCHARGED -5889,2020-06-17,42567.65533963311,293,Elective,2020-06-26,Inconclusive,5889,443,4,9,,,,DISCHARGED -5890,2023-05-29,38698.63254075844,143,Urgent,,Abnormal,5890,282,3,25,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -5891,2019-05-29,20091.351550050844,307,Urgent,2019-06-18,Inconclusive,5891,311,3,24,,,,DISCHARGED -5892,2021-10-28,40760.73241559383,307,Urgent,2021-11-12,Normal,5892,233,1,20,,,,DISCHARGED -5893,2021-08-02,24227.710939507822,394,Urgent,2021-08-19,Abnormal,5893,22,1,23,,,,DISCHARGED -5894,2020-11-02,5184.26988275542,414,Emergency,2020-11-20,Inconclusive,5894,152,4,27,,,,DISCHARGED -5895,2020-11-13,26915.193720158022,264,Urgent,2020-11-22,Normal,5895,276,1,12,,,,DISCHARGED -5896,2021-02-12,25215.012082755613,287,Urgent,2021-02-19,Abnormal,5896,60,2,14,,,,DISCHARGED -5897,2022-02-01,40903.985001991736,117,Emergency,2022-02-20,Abnormal,5897,318,0,27,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -5898,2023-07-20,10116.998687717954,360,Emergency,,Abnormal,5898,377,4,27,,,,OPEN -5899,2020-07-10,16520.17027369717,391,Urgent,2020-07-17,Inconclusive,5899,51,0,5,,,,DISCHARGED -5900,2021-09-01,13536.916359878898,433,Emergency,2021-09-28,Inconclusive,5900,343,1,19,,,,DISCHARGED -5901,2020-08-14,23747.3833736443,424,Urgent,2020-08-17,Normal,5901,152,3,11,,,,DISCHARGED -5902,2020-11-27,22777.106392274614,477,Elective,2020-12-06,Normal,5902,236,4,18,,,,DISCHARGED -5903,2022-06-17,44082.366821003845,283,Elective,2022-07-07,Abnormal,5903,310,1,10,,,,DISCHARGED -5904,2021-12-19,12864.08301627652,325,Emergency,2021-12-30,Inconclusive,5904,301,2,5,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5905,2020-10-01,4746.56507262613,272,Emergency,2020-10-27,Inconclusive,5905,31,4,0,,,,DISCHARGED -5906,2021-08-07,37033.24584064084,312,Emergency,2021-08-28,Abnormal,5906,54,4,1,,,,DISCHARGED -5907,2020-02-19,48134.5593524709,304,Emergency,2020-03-20,Inconclusive,5907,351,3,22,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -5908,2021-11-20,33099.51949697282,192,Elective,2021-12-20,Abnormal,5908,388,4,14,,,,DISCHARGED -5909,2023-08-30,30381.932790744137,195,Emergency,2023-09-11,Inconclusive,5909,35,3,3,,,,DISCHARGED -5910,2021-08-20,1599.6406981832902,389,Emergency,2021-08-24,Abnormal,5910,109,1,4,,,,DISCHARGED -5912,2019-11-23,24120.36757728615,196,Urgent,2019-12-01,Inconclusive,5912,489,2,14,,,,DISCHARGED -5913,2021-03-07,31298.845062980872,470,Elective,2021-04-06,Abnormal,5913,176,2,10,,,,DISCHARGED -5914,2023-05-01,3046.2018080691214,445,Emergency,2023-05-11,Abnormal,5914,361,4,9,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -5915,2019-07-29,29813.539843456914,398,Elective,2019-08-13,Inconclusive,5915,313,4,16,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5916,2023-06-08,1616.9848923851412,424,Elective,,Abnormal,5916,294,1,1,,,,OPEN -5917,2021-12-06,25466.29126774474,387,Urgent,2021-12-15,Inconclusive,5917,335,3,19,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -5918,2023-03-09,8911.507385719433,297,Elective,2023-03-28,Inconclusive,5918,96,2,23,,,,DISCHARGED -5919,2022-10-29,17659.82367043863,224,Emergency,2022-11-13,Inconclusive,5919,368,3,9,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -5920,2021-03-02,14332.36930516454,477,Emergency,2021-03-09,Abnormal,5920,212,1,19,,,,DISCHARGED -5921,2020-02-28,2789.1665426747923,269,Elective,2020-03-23,Abnormal,5921,316,2,29,,,,DISCHARGED -5922,2020-07-09,34704.978609524376,298,Urgent,2020-08-04,Abnormal,5922,136,2,2,,,,DISCHARGED -5923,2020-04-15,21558.994471884736,224,Urgent,2020-04-23,Inconclusive,5923,5,0,18,,,,DISCHARGED -5924,2023-08-26,26353.909437573453,446,Urgent,2023-09-21,Abnormal,5924,498,1,27,,,,DISCHARGED -5925,2020-11-16,9323.997217684306,118,Urgent,2020-12-10,Abnormal,5925,108,1,4,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -5926,2019-12-14,37726.861035896494,185,Urgent,2020-01-10,Abnormal,5926,34,0,2,,,,DISCHARGED -5927,2019-10-18,34550.637098272855,368,Emergency,2019-10-20,Inconclusive,5927,38,3,7,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -5927,2021-12-29,16725.837700073927,447,Urgent,2022-01-20,Inconclusive,7802,149,0,4,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -5928,2022-05-11,6883.393394351776,333,Urgent,2022-05-17,Normal,5928,424,1,27,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -5929,2022-07-14,29159.34683613849,236,Emergency,2022-08-12,Normal,5929,117,3,29,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -5930,2019-12-12,38022.55063014108,151,Emergency,2019-12-25,Normal,5930,260,2,11,,,,DISCHARGED -5931,2022-03-05,5045.807324305403,448,Urgent,2022-03-30,Inconclusive,5931,425,0,13,,,,DISCHARGED -5932,2020-01-13,5348.600174186669,125,Urgent,2020-01-29,Normal,5932,86,3,6,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -5932,2020-12-24,36755.73641227056,343,Emergency,2021-01-22,Inconclusive,8829,464,3,10,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -5933,2021-04-02,18630.635202957503,384,Emergency,2021-04-24,Inconclusive,5933,75,3,7,,,,DISCHARGED -5933,2019-12-04,49409.7805414722,163,Emergency,2019-12-16,Inconclusive,9536,470,0,4,,,,DISCHARGED -5933,2023-04-21,49650.67288247996,150,Elective,2023-04-28,Normal,9891,463,2,7,,,,DISCHARGED -5934,2019-10-29,33835.720618442225,391,Urgent,2019-11-27,Inconclusive,5934,450,3,11,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -5935,2022-05-08,16364.573734359798,158,Emergency,2022-05-20,Inconclusive,5935,413,0,14,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -5936,2021-12-26,30085.556286655632,290,Urgent,2022-01-22,Inconclusive,5936,312,1,18,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -5937,2019-11-13,25762.858429483906,452,Emergency,2019-12-08,Inconclusive,5937,382,0,15,,,,DISCHARGED -5938,2022-02-08,28856.907094593997,436,Urgent,2022-02-17,Inconclusive,5938,213,0,13,,,,DISCHARGED -5939,2023-05-24,15372.317018843729,122,Elective,2023-05-26,Normal,5939,456,0,27,,,,DISCHARGED -5940,2020-07-09,39055.73775733056,394,Urgent,2020-07-23,Inconclusive,5940,284,3,6,,,,DISCHARGED -5941,2022-08-18,38069.75859176764,468,Emergency,2022-09-03,Inconclusive,5941,238,0,7,,,,DISCHARGED -5942,2023-03-11,45066.43568848367,449,Emergency,2023-03-28,Normal,5942,164,1,6,,,,DISCHARGED -5943,2021-12-22,35020.15685212769,435,Urgent,2022-01-16,Normal,5943,86,3,29,,,,DISCHARGED -5944,2019-07-02,32334.684722851747,136,Elective,2019-07-07,Normal,5944,140,1,17,,,,DISCHARGED -5945,2020-11-30,1042.981212355571,102,Urgent,2020-12-26,Inconclusive,5945,159,4,23,,,,DISCHARGED -5946,2022-02-13,27593.328512873995,204,Urgent,2022-02-23,Abnormal,5946,45,0,5,,,,DISCHARGED -5947,2019-12-07,19293.973354512163,127,Elective,2019-12-20,Abnormal,5947,371,3,25,,,,DISCHARGED -5948,2019-06-16,16901.43929972915,357,Elective,2019-07-06,Inconclusive,5948,494,3,18,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -5949,2020-02-25,45417.712717121576,472,Elective,2020-03-09,Inconclusive,5949,111,0,3,,,,DISCHARGED -5950,2019-11-26,6381.992359118826,466,Urgent,2019-12-16,Abnormal,5950,406,2,22,,,,DISCHARGED -5951,2022-03-29,11004.423519309175,179,Emergency,2022-04-21,Inconclusive,5951,44,2,2,,,,DISCHARGED -5953,2019-10-18,8827.474941055696,378,Emergency,2019-11-10,Abnormal,5953,400,1,16,,,,DISCHARGED -5954,2023-03-16,8197.310249862994,471,Emergency,,Inconclusive,5954,246,0,21,,,,OPEN -5955,2020-09-06,34692.24222109207,173,Elective,2020-09-20,Inconclusive,5955,103,0,18,,,,DISCHARGED -5956,2018-11-11,26697.065206145307,390,Elective,2018-11-25,Abnormal,5956,84,4,26,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -5957,2023-05-27,45591.89590686971,402,Emergency,2023-06-06,Inconclusive,5957,449,2,14,,,,DISCHARGED -5958,2022-01-03,38391.95584028942,268,Elective,2022-01-14,Normal,5958,484,2,25,,,,DISCHARGED -5959,2021-08-17,35814.73793055562,406,Elective,2021-09-06,Inconclusive,5959,133,0,5,,,,DISCHARGED -5962,2021-08-03,28971.754639264727,458,Elective,2021-08-17,Abnormal,5962,107,1,25,,,,DISCHARGED -5963,2019-02-28,35042.64468480079,149,Urgent,2019-03-11,Inconclusive,5963,17,0,11,Painful urination and urinary urgency,"Antibiotics for urinary tract infections, lifestyle modifications, and evaluation for underlying urological conditions.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -5964,2019-02-08,3286.8941288521664,139,Elective,2019-02-25,Normal,5964,93,1,18,,,,DISCHARGED -5965,2020-03-25,18853.52222401811,301,Emergency,2020-03-27,Inconclusive,5965,149,2,5,,,,DISCHARGED -5966,2019-10-22,32732.29254942737,146,Urgent,2019-11-13,Inconclusive,5966,245,4,10,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -5968,2023-05-25,22396.040457132563,105,Urgent,2023-06-11,Inconclusive,5968,288,3,19,,,,DISCHARGED -5969,2019-05-08,17280.236696628497,137,Urgent,2019-06-06,Abnormal,5969,413,2,28,,,,DISCHARGED -5970,2020-11-20,19730.65884625985,412,Emergency,2020-12-16,Abnormal,5970,208,1,19,,,,DISCHARGED -5971,2022-10-09,8368.835120707154,198,Emergency,2022-11-02,Inconclusive,5971,125,0,9,,,,DISCHARGED -5972,2023-07-10,8242.52621734721,448,Elective,2023-07-20,Abnormal,5972,234,2,25,,,,DISCHARGED -5974,2021-06-28,19631.170045271152,204,Elective,2021-07-15,Inconclusive,5974,415,4,15,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -5975,2021-09-15,32089.786437380837,198,Elective,2021-09-16,Inconclusive,5975,425,1,26,,,,DISCHARGED -5976,2023-08-15,33534.24993420143,268,Elective,,Abnormal,5976,498,0,17,,,,OPEN -5977,2019-01-20,19420.951218525413,347,Elective,2019-02-15,Inconclusive,5977,461,3,13,,,,DISCHARGED -5978,2023-10-27,5483.5834146452735,395,Elective,2023-11-13,Normal,5978,121,1,3,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -5979,2019-09-08,1378.0009880748469,357,Emergency,2019-09-12,Normal,5979,137,0,26,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -5980,2020-07-20,47834.50429510904,140,Elective,2020-08-19,Inconclusive,5980,494,3,11,,,,DISCHARGED -5981,2020-12-25,38503.31776706349,473,Urgent,2021-01-16,Normal,5981,114,0,19,,,,DISCHARGED -5982,2020-02-08,27728.566349198416,131,Urgent,2020-03-02,Abnormal,5982,419,3,26,,,,DISCHARGED -5983,2021-11-10,23559.849018799887,434,Emergency,2021-12-05,Abnormal,5983,161,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -5984,2018-11-27,40804.66997411865,491,Emergency,2018-12-07,Abnormal,5984,200,3,20,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -5985,2019-02-27,19203.629366162186,425,Urgent,2019-03-03,Normal,5985,233,0,7,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -5986,2021-03-29,2717.8722357047604,473,Urgent,2021-04-13,Normal,5986,27,3,6,,,,DISCHARGED -5987,2023-08-09,17192.194092857884,478,Elective,,Abnormal,5987,10,1,25,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,OPEN -5988,2023-10-04,14240.566572024592,259,Emergency,2023-10-10,Abnormal,5988,205,4,8,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -5989,2022-05-24,16919.668953165707,377,Urgent,2022-06-11,Normal,5989,166,4,23,,,,DISCHARGED -5990,2019-10-26,31999.41875042375,196,Elective,2019-11-18,Abnormal,5990,246,3,24,,,,DISCHARGED -5991,2023-05-22,17251.998279581625,235,Emergency,2023-06-02,Normal,5991,46,4,16,,,,DISCHARGED -5991,2021-03-07,36914.84156071174,156,Emergency,2021-03-16,Inconclusive,9941,245,4,9,,,,DISCHARGED -5992,2021-01-08,3158.645462369566,152,Elective,2021-02-05,Inconclusive,5992,126,3,28,,,,DISCHARGED -5993,2019-08-08,23549.33909470684,219,Urgent,2019-08-31,Normal,5993,146,3,27,,,,DISCHARGED -5994,2021-10-11,2730.3191046085376,358,Urgent,2021-10-20,Normal,5994,117,1,2,,,,DISCHARGED -5995,2019-11-18,34860.843935419194,124,Emergency,2019-12-07,Abnormal,5995,398,2,20,,,,DISCHARGED -5996,2023-03-24,18220.601556604877,158,Urgent,2023-04-19,Abnormal,5996,381,0,24,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -5997,2020-10-05,4750.89250702743,488,Urgent,2020-10-09,Inconclusive,5997,411,3,7,,,,DISCHARGED -5998,2020-11-30,15193.157340484317,434,Urgent,2020-12-29,Abnormal,5998,151,3,13,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -5999,2019-06-09,42827.800252361805,402,Urgent,2019-06-27,Normal,5999,71,4,25,"Describes a sudden, severe pain in the lower back.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M54.5 - Low back pain,DISCHARGED -6000,2021-09-29,8970.000970695644,341,Urgent,2021-10-20,Inconclusive,6000,362,1,6,,,,DISCHARGED -6001,2022-08-09,9178.571798450394,256,Urgent,2022-08-15,Inconclusive,6001,136,4,15,,,,DISCHARGED -6002,2021-06-05,39902.55629115633,439,Urgent,2021-06-13,Inconclusive,6002,174,3,17,,,,DISCHARGED -6003,2019-03-04,12326.946459144618,122,Urgent,2019-03-07,Abnormal,6003,288,3,10,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -6005,2021-12-27,32335.889608311336,441,Emergency,2021-12-30,Abnormal,6005,445,4,5,,,,DISCHARGED -6006,2019-05-04,38983.39690377517,333,Elective,2019-05-22,Normal,6006,480,3,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6007,2023-03-15,4063.8833852474127,332,Emergency,2023-04-11,Abnormal,6007,18,2,20,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6008,2023-03-31,38975.40778060391,330,Emergency,2023-04-26,Normal,6008,194,0,13,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -6009,2023-08-23,4841.951551202654,297,Emergency,,Normal,6009,329,0,20,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -6010,2019-12-28,12909.297654361064,497,Urgent,2020-01-26,Normal,6010,423,0,12,,,,DISCHARGED -6011,2022-10-18,11518.852840732232,126,Elective,2022-10-31,Normal,6011,174,2,3,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6012,2021-10-20,45883.1796256381,405,Emergency,2021-11-01,Normal,6012,489,3,19,,,,DISCHARGED -6013,2020-06-19,16271.135835494846,298,Elective,2020-07-07,Abnormal,6013,448,4,19,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6014,2021-07-11,30466.692416681926,199,Elective,2021-07-28,Abnormal,6014,412,1,10,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -6015,2022-12-15,40309.36476932533,497,Elective,2022-12-26,Abnormal,6015,433,3,17,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -6016,2019-07-23,46805.42101295896,320,Emergency,2019-08-01,Inconclusive,6016,353,2,0,,,,DISCHARGED -6017,2022-02-20,3122.8045831751483,157,Elective,2022-03-03,Normal,6017,498,2,11,,,,DISCHARGED -6018,2023-01-30,32480.98615115175,397,Emergency,2023-02-10,Inconclusive,6018,140,0,17,,,,DISCHARGED -6019,2020-02-15,7713.898731274019,386,Emergency,2020-03-11,Abnormal,6019,245,3,6,,,,DISCHARGED -6021,2020-12-28,18415.405268949155,291,Elective,2021-01-07,Normal,6021,384,0,11,,,,DISCHARGED -6022,2019-04-14,22582.50171640081,368,Emergency,2019-04-17,Abnormal,6022,417,1,0,,,,DISCHARGED -6023,2019-10-13,26601.66365413308,371,Emergency,2019-11-02,Inconclusive,6023,92,0,21,,,,DISCHARGED -6024,2019-11-19,17143.945818964472,248,Emergency,2019-12-19,Normal,6024,431,1,3,,,,DISCHARGED -6025,2019-11-27,40637.7551932998,462,Elective,2019-12-01,Abnormal,6025,238,2,17,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -6026,2020-11-07,10875.096411080644,179,Urgent,2020-12-07,Abnormal,6026,204,0,14,,,,DISCHARGED -6028,2021-07-03,34014.79330689237,336,Emergency,2021-07-23,Abnormal,6028,47,0,2,,,,DISCHARGED -6029,2020-03-10,11916.903792412591,290,Urgent,2020-03-28,Inconclusive,6029,432,4,6,,,,DISCHARGED -6030,2023-01-05,30098.8873996369,273,Urgent,,Inconclusive,6030,244,2,5,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,OPEN -6031,2019-11-03,11948.577113346237,354,Elective,2019-11-25,Inconclusive,6031,319,4,14,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6032,2023-03-09,26311.893968034638,283,Emergency,2023-03-19,Inconclusive,6032,316,1,14,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6033,2021-07-12,39130.03021153598,129,Elective,2021-08-01,Inconclusive,6033,412,1,5,,,,DISCHARGED -6034,2021-03-30,37463.34843224498,257,Urgent,2021-04-19,Normal,6034,294,2,7,,,,DISCHARGED -6035,2020-09-01,26252.970872754715,418,Emergency,2020-09-13,Normal,6035,127,1,7,,,,DISCHARGED -6035,2023-05-12,40441.96846952715,398,Urgent,2023-06-10,Normal,8329,343,2,21,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6036,2022-12-27,30853.352675023158,473,Urgent,2023-01-14,Abnormal,6036,281,1,0,,,,DISCHARGED -6037,2021-08-04,5077.834231965651,467,Elective,2021-08-27,Normal,6037,16,3,25,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -6038,2021-08-14,16659.706480507328,229,Emergency,2021-08-31,Abnormal,6038,70,0,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6039,2021-01-01,41398.91611388431,174,Urgent,2021-01-08,Inconclusive,6039,268,3,22,,,,DISCHARGED -6040,2023-04-17,28575.28418993742,215,Urgent,2023-04-18,Inconclusive,6040,324,2,23,,,,DISCHARGED -6041,2020-01-23,6944.7937028222,270,Emergency,2020-01-30,Normal,6041,281,2,20,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -6042,2020-11-10,48719.067467088,107,Urgent,2020-11-21,Inconclusive,6042,304,3,12,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6043,2021-06-24,4743.406570779665,417,Elective,2021-07-19,Inconclusive,6043,450,0,10,,,,DISCHARGED -6044,2019-10-21,26260.260751180136,333,Emergency,2019-11-16,Inconclusive,6044,6,0,3,,,,DISCHARGED -6045,2018-12-20,35330.79661087953,115,Urgent,2019-01-12,Abnormal,6045,313,4,6,,,,DISCHARGED -6046,2023-06-04,45646.94909067201,284,Urgent,2023-07-01,Inconclusive,6046,304,1,27,,,,DISCHARGED -6047,2020-02-07,24195.672795413982,155,Urgent,2020-03-04,Abnormal,6047,102,4,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -6048,2019-04-20,2041.8407667831616,495,Elective,2019-05-04,Abnormal,6048,308,0,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6049,2020-07-06,18679.07314822452,304,Emergency,2020-08-01,Abnormal,6049,192,3,12,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,DISCHARGED -6050,2022-10-29,30157.72372364938,116,Emergency,2022-11-16,Inconclusive,6050,240,1,21,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6050,2019-01-28,13225.16638451972,388,Urgent,2019-01-31,Abnormal,9869,61,3,11,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6052,2023-09-21,14627.995930200696,456,Urgent,2023-10-14,Inconclusive,6052,16,4,15,,,,DISCHARGED -6054,2022-03-28,10507.017825167057,130,Elective,2022-04-05,Inconclusive,6054,170,2,5,,,,DISCHARGED -6055,2022-08-07,2463.14168145493,201,Emergency,2022-08-28,Inconclusive,6055,24,3,13,Muscle weakness and atrophy,"Physical therapy, muscle-strengthening exercises, and medications to address underlying neuromuscular conditions. Monitor for improvements.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -6056,2023-09-15,43185.80145305649,405,Urgent,2023-09-17,Abnormal,6056,250,4,18,,,,DISCHARGED -6057,2019-04-06,6164.281923358486,369,Urgent,2019-05-06,Abnormal,6057,252,4,15,,,,DISCHARGED -6058,2022-04-26,19755.828880095723,449,Emergency,2022-05-01,Inconclusive,6058,386,4,26,,,,DISCHARGED -6059,2023-04-26,11287.34822284043,193,Emergency,2023-05-03,Normal,6059,206,2,25,,,,DISCHARGED -6060,2023-07-16,41603.29720625691,128,Elective,2023-07-22,Abnormal,6060,28,2,3,,,,DISCHARGED -6061,2022-10-24,38771.33562715259,372,Emergency,2022-11-03,Normal,6061,116,2,4,,,,DISCHARGED -6062,2023-07-24,41639.38493575151,327,Emergency,,Normal,6062,490,1,8,,,,OPEN -6064,2021-08-20,23563.15377954031,460,Emergency,2021-08-22,Abnormal,6064,415,2,23,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6066,2020-05-07,40656.39305192237,443,Urgent,2020-06-04,Abnormal,6066,281,2,2,,,,DISCHARGED -6067,2023-02-08,2030.966735933411,332,Urgent,2023-02-27,Abnormal,6067,379,2,21,,,,DISCHARGED -6068,2022-04-24,26736.9586944542,311,Urgent,2022-05-01,Abnormal,6068,143,3,9,,,,DISCHARGED -6069,2021-10-12,22484.01475668203,192,Urgent,2021-10-14,Inconclusive,6069,24,2,16,,,,DISCHARGED -6070,2019-02-03,2924.4589772935738,136,Emergency,2019-03-03,Inconclusive,6070,309,1,18,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6071,2022-03-31,42022.98956330117,255,Elective,2022-04-24,Inconclusive,6071,155,4,9,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6072,2021-01-07,19167.498606804467,242,Emergency,2021-01-25,Inconclusive,6072,72,3,29,,,,DISCHARGED -6073,2020-01-03,5580.290521121448,294,Emergency,2020-01-16,Inconclusive,6073,119,0,11,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6074,2023-08-03,2233.535350550429,154,Elective,2023-08-05,Normal,6074,311,2,22,,,,DISCHARGED -6075,2022-07-15,8720.357123981528,113,Emergency,2022-07-26,Abnormal,6075,320,4,6,,,,DISCHARGED -6076,2021-07-19,33733.967410745856,118,Urgent,2021-08-06,Abnormal,6076,92,4,17,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6077,2019-04-10,1352.748184486318,292,Urgent,2019-04-29,Inconclusive,6077,85,3,18,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6078,2020-08-24,21068.61727695532,125,Urgent,2020-09-05,Inconclusive,6078,335,0,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6079,2020-03-10,24310.254854187137,253,Elective,2020-04-05,Normal,6079,424,1,6,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -6080,2023-09-28,48710.62955931463,252,Emergency,,Inconclusive,6080,498,4,11,,,,OPEN -6081,2023-06-06,44697.33903475581,394,Elective,2023-06-21,Inconclusive,6081,363,4,21,,,,DISCHARGED -6082,2021-09-08,23616.02657226192,362,Urgent,2021-10-05,Abnormal,6082,434,4,28,,,,DISCHARGED -6083,2020-12-05,49878.9353502313,372,Urgent,2020-12-16,Abnormal,6083,117,4,6,,,,DISCHARGED -6084,2023-08-23,13072.08448257353,457,Elective,,Abnormal,6084,232,3,9,,,,OPEN -6085,2022-03-30,20737.036019191804,257,Urgent,2022-04-01,Abnormal,6085,198,0,24,,,,DISCHARGED -6086,2023-05-19,23105.22652158953,175,Elective,,Normal,6086,205,4,23,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6088,2021-01-26,17924.86023202854,335,Urgent,2021-02-25,Abnormal,6088,412,1,21,,,,DISCHARGED -6089,2019-10-24,18986.331968908245,204,Elective,2019-11-12,Inconclusive,6089,338,1,27,,,,DISCHARGED -6090,2021-01-02,16088.741924449598,135,Emergency,2021-01-26,Normal,6090,146,2,29,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6091,2021-02-03,5328.157487747513,339,Emergency,2021-03-03,Normal,6091,449,4,19,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6092,2021-11-18,4700.233026777709,122,Emergency,2021-11-28,Abnormal,6092,424,4,29,,,,DISCHARGED -6092,2021-10-21,40988.0344817342,454,Emergency,2021-11-04,Abnormal,6229,428,4,28,,,,DISCHARGED -6094,2021-02-27,46048.32020973106,131,Emergency,2021-03-23,Inconclusive,6094,270,4,9,,,,DISCHARGED -6095,2023-10-15,32903.22340985037,218,Elective,,Normal,6095,386,4,24,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",OPEN -6096,2019-04-04,33093.62417270338,124,Elective,2019-04-12,Inconclusive,6096,138,1,22,,,,DISCHARGED -6097,2020-10-19,19491.183352645603,170,Elective,2020-11-13,Abnormal,6097,180,0,4,,,,DISCHARGED -6098,2019-12-20,29138.81085988837,381,Emergency,2020-01-12,Inconclusive,6098,429,0,17,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -6099,2020-11-20,30090.863834624757,300,Elective,2020-12-02,Abnormal,6099,29,2,8,,,,DISCHARGED -6100,2019-03-18,18959.98701506969,156,Elective,2019-04-10,Inconclusive,6100,56,1,29,,,,DISCHARGED -6101,2023-01-30,23990.622338011097,311,Urgent,2023-02-08,Inconclusive,6101,231,4,15,,,,DISCHARGED -6102,2020-05-11,43662.89790791856,392,Emergency,2020-05-14,Abnormal,6102,145,0,6,,,,DISCHARGED -6103,2023-03-27,46090.69068944869,209,Urgent,2023-04-08,Normal,6103,434,3,24,,,,DISCHARGED -6104,2019-06-08,25403.45810365432,355,Urgent,2019-06-22,Abnormal,6104,383,3,26,,,,DISCHARGED -6105,2022-05-18,31581.714460647403,272,Emergency,2022-05-29,Abnormal,6105,47,3,24,,,,DISCHARGED -6106,2020-03-01,7419.347580921149,363,Elective,2020-03-03,Abnormal,6106,193,4,9,,,,DISCHARGED -6107,2019-09-02,4614.902595872119,361,Elective,2019-09-19,Normal,6107,223,4,4,,,,DISCHARGED -6109,2019-02-12,33777.330221004624,134,Urgent,2019-02-18,Inconclusive,6109,135,2,6,,,,DISCHARGED -6110,2019-09-29,42185.132971129264,137,Urgent,2019-10-24,Abnormal,6110,21,2,4,,,,DISCHARGED -6111,2020-08-18,13242.13439218701,372,Urgent,2020-09-15,Inconclusive,6111,5,2,14,,,,DISCHARGED -6113,2020-04-18,6738.384979570603,228,Elective,2020-05-18,Normal,6113,203,3,18,,,,DISCHARGED -6114,2020-08-23,48041.631844691816,461,Emergency,2020-09-16,Normal,6114,238,4,9,Difficulty concentrating,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes (exercise, stress management) and cognitive strategies. Consider medication for ADHD if appropriate. Regular follow-up to assess improvement and make adjustments as necessary.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -6115,2022-09-05,15597.066771348253,364,Emergency,2022-10-01,Abnormal,6115,184,3,7,,,,DISCHARGED -6116,2022-09-30,47408.38777573841,329,Emergency,2022-10-23,Inconclusive,6116,359,2,23,,,,DISCHARGED -6117,2021-01-03,38794.58253617705,171,Elective,2021-01-28,Inconclusive,6117,291,4,8,,,,DISCHARGED -6119,2021-11-22,25348.705935905477,387,Emergency,2021-11-28,Normal,6119,334,1,10,,,,DISCHARGED -6120,2022-12-25,30636.084006927314,172,Elective,2023-01-20,Abnormal,6120,219,0,29,,,,DISCHARGED -6121,2021-08-03,22734.996414702007,445,Elective,2021-08-28,Normal,6121,115,0,27,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6122,2019-04-22,12400.895813112746,305,Urgent,2019-05-03,Normal,6122,312,2,21,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -6123,2020-05-30,21607.412165770384,428,Elective,2020-06-09,Normal,6123,48,3,1,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -6124,2019-12-11,41365.11781177608,484,Emergency,2019-12-31,Abnormal,6124,172,1,2,,,,DISCHARGED -6125,2021-06-24,20237.99408860453,262,Emergency,2021-07-01,Abnormal,6125,81,4,12,,,,DISCHARGED -6126,2023-05-16,16612.66607880724,353,Urgent,2023-06-03,Inconclusive,6126,321,3,10,,,,DISCHARGED -6127,2020-09-23,24098.63452986885,370,Urgent,2020-09-24,Inconclusive,6127,332,2,27,,,,DISCHARGED -6128,2023-09-13,29522.72367952392,127,Elective,,Inconclusive,6128,44,3,9,,,,OPEN -6129,2023-01-09,26396.06833246261,239,Urgent,2023-01-16,Normal,6129,334,2,26,,,,DISCHARGED -6130,2020-12-05,49344.59478878936,497,Elective,2021-01-04,Normal,6130,19,0,14,,,,DISCHARGED -6131,2023-07-27,18467.279290178358,285,Elective,2023-08-13,Inconclusive,6131,447,0,5,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6132,2019-04-07,27120.45220405838,364,Urgent,2019-05-02,Normal,6132,220,3,0,,,,DISCHARGED -6134,2019-11-28,37522.17784066239,443,Emergency,2019-12-15,Abnormal,6134,122,1,13,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -6135,2019-09-13,14360.82204091002,460,Urgent,2019-10-09,Normal,6135,233,4,17,,,,DISCHARGED -6136,2022-12-19,9726.594527822092,389,Elective,2023-01-14,Normal,6136,220,2,23,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6137,2021-01-21,9747.804400753566,286,Emergency,2021-02-01,Abnormal,6137,322,4,10,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -6138,2020-06-29,27700.638424488272,338,Elective,2020-07-23,Inconclusive,6138,338,0,7,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6139,2022-10-23,41069.41904162929,492,Urgent,2022-10-24,Abnormal,6139,2,1,21,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -6140,2021-07-13,12683.164387118475,474,Elective,2021-07-18,Abnormal,6140,181,1,2,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6141,2021-11-08,29309.57990292996,241,Emergency,2021-11-20,Abnormal,6141,205,4,13,,,,DISCHARGED -6141,2021-12-28,46535.200937036905,179,Emergency,2022-01-21,Normal,8167,319,0,1,,,,DISCHARGED -6142,2023-02-07,46224.79873010241,428,Elective,2023-02-19,Abnormal,6142,39,4,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6143,2019-02-04,43005.31830628686,489,Urgent,2019-03-04,Abnormal,6143,58,3,15,,,,DISCHARGED -6144,2019-12-10,45432.314592298375,154,Emergency,2019-12-31,Normal,6144,438,1,5,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6145,2020-04-16,9206.554307583525,398,Elective,2020-05-14,Normal,6145,61,1,0,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6146,2021-03-09,1475.7982615717308,370,Urgent,2021-03-19,Normal,6146,131,3,13,,,,DISCHARGED -6147,2021-09-05,32580.594671794504,346,Elective,2021-09-20,Abnormal,6147,59,0,9,,,,DISCHARGED -6148,2023-01-19,3230.9943158924525,312,Emergency,2023-01-22,Abnormal,6148,371,1,5,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6149,2022-02-21,38489.52841896299,345,Emergency,2022-03-12,Normal,6149,330,2,8,,,,DISCHARGED -6150,2022-11-28,47409.08953668171,302,Elective,2022-12-14,Normal,6150,121,2,6,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6151,2019-02-08,40827.013852454285,105,Urgent,2019-03-04,Normal,6151,478,0,24,,,,DISCHARGED -6152,2020-05-30,48451.38635989904,321,Elective,2020-06-26,Normal,6152,106,3,1,,,,DISCHARGED -6153,2018-12-12,42280.6133158642,381,Urgent,2019-01-07,Inconclusive,6153,95,4,10,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -6154,2020-10-20,10226.80854218207,299,Emergency,2020-10-26,Normal,6154,346,0,13,,,,DISCHARGED -6155,2020-05-07,22673.15885681665,171,Emergency,2020-05-26,Abnormal,6155,413,4,4,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -6156,2022-06-22,11482.053745428118,184,Elective,2022-07-07,Inconclusive,6156,234,0,8,,,,DISCHARGED -6157,2022-04-22,1991.9333147612751,433,Emergency,2022-05-08,Abnormal,6157,385,2,6,Severe headache and nausea,Prescribed analgesics for headache relief and antiemetics for nausea control. Ordered imaging tests (CT scan or MRI) to rule out serious causes like intracranial hemorrhage or mass.,R51 - Headache,DISCHARGED -6158,2020-01-04,16936.338873847635,105,Emergency,2020-01-09,Inconclusive,6158,61,3,24,,,,DISCHARGED -6159,2023-09-24,16149.444371628577,360,Emergency,2023-10-03,Inconclusive,6159,255,2,13,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -6160,2018-11-07,45140.73659282821,115,Elective,2018-11-17,Inconclusive,6160,48,3,26,,,,DISCHARGED -6162,2023-06-30,9900.17189749598,405,Elective,,Abnormal,6162,392,4,15,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",OPEN -6163,2020-10-20,47672.93154582539,124,Emergency,2020-11-17,Abnormal,6163,347,0,21,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6163,2022-10-02,37777.1552910288,496,Urgent,2022-10-31,Abnormal,8467,158,1,15,,,,DISCHARGED -6164,2022-09-12,6867.424515252065,323,Urgent,2022-10-10,Inconclusive,6164,123,1,6,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6165,2020-03-13,41498.11685589601,170,Urgent,2020-04-05,Abnormal,6165,481,3,9,,,,DISCHARGED -6166,2023-08-29,29470.6915412482,311,Emergency,2023-09-07,Inconclusive,6166,316,3,20,,,,DISCHARGED -6166,2021-06-04,31606.94697114073,263,Elective,2021-06-09,Normal,8793,206,2,5,,,,DISCHARGED -6167,2020-12-23,31959.387841430336,467,Urgent,2021-01-11,Abnormal,6167,47,1,16,,,,DISCHARGED -6168,2019-05-11,29217.23145986397,327,Urgent,2019-05-30,Inconclusive,6168,408,2,0,,,,DISCHARGED -6169,2019-01-28,20606.38435239024,195,Urgent,2019-02-06,Normal,6169,419,4,1,,,,DISCHARGED -6170,2022-09-23,41288.83756871875,437,Elective,2022-10-18,Normal,6170,135,1,26,,,,DISCHARGED -6171,2022-11-17,39817.60065185772,151,Urgent,2022-12-13,Abnormal,6171,200,4,13,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6172,2023-02-08,37345.41597518384,424,Elective,,Normal,6172,249,0,3,,,,OPEN -6173,2019-05-07,35929.09159349071,401,Emergency,2019-05-18,Inconclusive,6173,313,2,26,,,,DISCHARGED -6174,2020-12-20,4130.869339113963,340,Elective,2020-12-22,Normal,6174,356,3,8,,,,DISCHARGED -6175,2022-11-12,43926.65010139064,362,Elective,2022-12-04,Abnormal,6175,367,1,22,,,,DISCHARGED -6176,2020-05-18,32066.684256183773,201,Urgent,2020-06-14,Abnormal,6176,428,2,5,,,,DISCHARGED -6177,2020-05-15,38598.317047569966,407,Elective,2020-06-04,Normal,6177,317,3,16,,,,DISCHARGED -6178,2021-01-19,28572.96281598436,421,Urgent,2021-02-02,Normal,6178,294,0,20,,,,DISCHARGED -6179,2019-05-25,49865.84795118959,374,Emergency,2019-06-11,Abnormal,6179,479,1,10,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6181,2023-06-02,6816.642650056341,474,Elective,,Abnormal,6181,313,4,27,,,,OPEN -6182,2023-01-28,45961.12615610182,230,Elective,2023-02-05,Normal,6182,499,0,28,,,,DISCHARGED -6183,2018-12-03,4438.311336000047,388,Urgent,2018-12-04,Abnormal,6183,208,3,3,,,,DISCHARGED -6184,2022-09-21,42537.9020492107,210,Urgent,2022-10-12,Normal,6184,354,1,20,,,,DISCHARGED -6186,2022-01-26,3025.1800943642866,204,Urgent,2022-02-06,Abnormal,6186,484,1,26,,,,DISCHARGED -6187,2019-01-25,14295.44972275746,120,Urgent,2019-02-23,Inconclusive,6187,210,0,8,,,,DISCHARGED -6188,2020-01-14,5530.92629333341,241,Emergency,2020-02-10,Normal,6188,191,1,27,,,,DISCHARGED -6189,2021-09-11,47706.668252865085,230,Urgent,2021-09-18,Normal,6189,43,3,15,,,,DISCHARGED -6190,2019-11-07,39312.99811347667,468,Emergency,2019-11-12,Inconclusive,6190,28,0,2,,,,DISCHARGED -6191,2022-11-24,24275.67187138074,230,Emergency,2022-11-25,Normal,6191,58,4,3,,,,DISCHARGED -6192,2021-04-22,16114.569059248815,148,Urgent,2021-05-04,Normal,6192,70,0,23,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6193,2023-09-08,46556.27087797975,377,Elective,2023-09-09,Inconclusive,6193,91,0,2,,,,DISCHARGED -6194,2019-03-30,19341.673083933863,136,Urgent,2019-04-18,Inconclusive,6194,264,4,12,,,,DISCHARGED -6195,2019-01-18,28003.823887023857,117,Elective,2019-02-01,Abnormal,6195,382,3,18,,,,DISCHARGED -6196,2020-04-05,7686.553156068053,471,Emergency,2020-04-26,Inconclusive,6196,219,2,28,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -6197,2020-12-04,3843.528519592905,301,Emergency,2020-12-19,Inconclusive,6197,389,2,24,,,,DISCHARGED -6198,2021-04-12,32540.751352168507,491,Emergency,2021-05-11,Abnormal,6198,412,4,20,,,,DISCHARGED -6199,2023-07-10,20400.88808716771,206,Urgent,,Normal,6199,441,3,25,,,,OPEN -6200,2019-04-02,15813.10138707612,115,Emergency,2019-04-03,Inconclusive,6200,400,1,0,,,,DISCHARGED -6201,2021-04-21,14468.251353635906,349,Urgent,2021-05-21,Inconclusive,6201,399,4,22,,,,DISCHARGED -6202,2020-03-18,3748.3979325421537,172,Emergency,2020-04-09,Inconclusive,6202,214,2,22,,,,DISCHARGED -6203,2023-09-14,41219.50185701669,475,Urgent,2023-09-23,Inconclusive,6203,478,3,5,Fatigue and lack of energy,"Address underlying causes such as anemia, thyroid issues, or sleep disorders. Prescribe appropriate medications or recommend lifestyle changes.",R53.81 - Other malaise,DISCHARGED -6203,2022-01-27,18281.015579073784,398,Emergency,2022-02-12,Abnormal,9463,386,0,21,,,,DISCHARGED -6205,2022-08-02,45354.2360103459,384,Elective,2022-08-13,Abnormal,6205,276,3,2,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -6206,2020-12-31,47063.29800131448,242,Emergency,2021-01-04,Abnormal,6206,63,3,2,,,,DISCHARGED -6207,2022-05-11,30068.87039543928,398,Urgent,2022-06-01,Inconclusive,6207,345,2,15,,,,DISCHARGED -6208,2020-03-02,35938.589967743064,362,Emergency,2020-03-23,Normal,6208,291,2,9,,,,DISCHARGED -6209,2019-10-26,15628.513922041211,427,Emergency,2019-10-28,Abnormal,6209,489,1,26,,,,DISCHARGED -6210,2019-11-30,38592.307992839706,106,Elective,2019-12-17,Inconclusive,6210,484,1,24,,,,DISCHARGED -6211,2019-02-16,43923.63012934363,208,Emergency,2019-03-12,Abnormal,6211,244,4,16,,,,DISCHARGED -6212,2020-11-06,45168.47816621722,206,Emergency,2020-11-28,Inconclusive,6212,469,0,6,,,,DISCHARGED -6212,2021-10-16,27931.43539338077,365,Urgent,2021-11-05,Inconclusive,9795,61,1,12,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6213,2020-03-02,26307.045823635894,200,Emergency,2020-03-16,Normal,6213,425,2,27,,,,DISCHARGED -6214,2021-12-20,14634.65959231155,257,Emergency,2022-01-12,Normal,6214,331,3,10,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6216,2022-02-07,37809.57489814309,250,Elective,2022-02-10,Normal,6216,169,4,9,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6217,2022-04-11,10941.548876368746,371,Urgent,2022-05-10,Inconclusive,6217,444,1,6,"Patient describes a sudden, intense pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,I20 - Angina pectoris,DISCHARGED -6218,2022-07-22,31459.12163046863,343,Elective,2022-08-04,Inconclusive,6218,268,3,23,,,,DISCHARGED -6219,2021-09-17,39896.15769803589,103,Elective,2021-10-13,Abnormal,6219,266,3,5,,,,DISCHARGED -6220,2022-05-22,1971.4650255665088,391,Urgent,2022-06-03,Abnormal,6220,53,1,23,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -6220,2022-12-31,36233.91324124278,386,Urgent,2023-01-04,Inconclusive,8653,15,0,0,,,,DISCHARGED -6221,2022-06-20,4493.970986534578,372,Emergency,2022-07-04,Normal,6221,7,0,16,,,,DISCHARGED -6222,2023-09-12,24413.27693643391,116,Urgent,,Abnormal,6222,103,4,24,,,,OPEN -6224,2020-06-11,38555.43104984762,225,Emergency,2020-06-18,Inconclusive,6224,58,0,11,,,,DISCHARGED -6225,2021-11-02,5567.633006001641,285,Urgent,2021-11-30,Inconclusive,6225,312,4,3,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -6226,2022-06-17,34566.9163623865,379,Elective,2022-07-06,Normal,6226,39,2,2,,,,DISCHARGED -6227,2019-09-17,46762.663205146586,239,Emergency,2019-10-10,Abnormal,6227,236,1,5,,,,DISCHARGED -6228,2022-04-14,17834.520252656082,115,Emergency,2022-05-12,Inconclusive,6228,442,3,25,,,,DISCHARGED -6230,2022-03-07,22171.132302551843,159,Emergency,2022-03-18,Inconclusive,6230,385,4,27,,,,DISCHARGED -6231,2020-12-08,26973.663555245108,458,Emergency,2020-12-15,Normal,6231,93,0,15,,,,DISCHARGED -6232,2023-10-25,17744.66305742216,409,Urgent,,Normal,6232,221,4,12,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",OPEN -6233,2023-09-08,44596.761025798325,135,Urgent,2023-10-05,Normal,6233,203,4,27,,,,DISCHARGED -6234,2022-03-13,15326.408580092371,461,Emergency,2022-03-19,Normal,6234,137,0,8,,,,DISCHARGED -6235,2021-04-11,26475.71665810182,425,Elective,2021-04-25,Inconclusive,6235,299,0,25,Sudden onset of facial twitching,"Neurological evaluation, possible imaging studies, and medication if necessary","G47.9 - Sleep disorder, unspecified",DISCHARGED -6236,2022-02-26,27056.74753592466,433,Elective,2022-03-01,Inconclusive,6236,394,1,10,,,,DISCHARGED -6237,2021-03-18,32784.45831993211,345,Urgent,2021-03-30,Inconclusive,6237,206,3,19,,,,DISCHARGED -6238,2020-12-21,45169.53202050832,308,Elective,2020-12-27,Inconclusive,6238,335,1,24,,,,DISCHARGED -6239,2022-04-20,42941.10175938614,437,Urgent,2022-04-21,Abnormal,6239,80,1,20,,,,DISCHARGED -6240,2019-09-03,34701.48887810339,291,Urgent,2019-09-26,Inconclusive,6240,217,0,12,,,,DISCHARGED -6241,2018-12-21,29685.08165495313,142,Urgent,2019-01-13,Normal,6241,1,0,22,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -6243,2023-02-07,48491.90699632781,154,Emergency,2023-02-09,Abnormal,6243,177,3,18,,,,DISCHARGED -6244,2023-09-25,2277.420196350031,133,Emergency,2023-10-11,Normal,6244,395,4,2,,,,DISCHARGED -6245,2021-08-12,42965.05116296528,394,Urgent,2021-08-16,Inconclusive,6245,370,1,11,,,,DISCHARGED -6246,2023-05-15,23028.25910827863,164,Urgent,2023-05-21,Normal,6246,345,3,18,,,,DISCHARGED -6247,2019-04-05,36311.61092148439,339,Urgent,2019-04-08,Inconclusive,6247,278,1,7,,,,DISCHARGED -6248,2023-08-30,20601.65926495438,444,Elective,2023-09-03,Normal,6248,145,4,13,,,,DISCHARGED -6249,2022-09-15,3192.161002612057,271,Elective,2022-10-05,Normal,6249,317,1,21,,,,DISCHARGED -6250,2022-10-23,25115.70049534741,308,Urgent,2022-11-13,Inconclusive,6250,223,2,8,,,,DISCHARGED -6251,2020-11-17,12218.129444457458,178,Urgent,2020-11-22,Abnormal,6251,368,3,24,,,,DISCHARGED -6252,2020-07-27,48228.96275138811,134,Elective,2020-08-09,Inconclusive,6252,383,0,23,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -6253,2019-03-06,17612.027669269068,311,Emergency,2019-03-15,Normal,6253,61,1,16,,,,DISCHARGED -6254,2021-02-24,19050.665929734118,127,Emergency,2021-03-20,Normal,6254,293,3,5,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6255,2019-04-18,9276.528131390927,261,Elective,2019-05-01,Normal,6255,238,3,3,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6256,2021-05-07,45414.6653474973,399,Urgent,2021-05-21,Abnormal,6256,194,1,3,,,,DISCHARGED -6257,2022-04-05,9523.460119166888,196,Urgent,2022-04-26,Inconclusive,6257,165,0,18,,,,DISCHARGED -6257,2020-05-29,49701.59285074048,253,Emergency,2020-06-08,Inconclusive,7398,450,0,11,Persistent feelings of worry and nervousness,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.",F41.1 - Generalized anxiety disorder,DISCHARGED -6258,2023-09-28,46526.23601867224,275,Urgent,2023-10-09,Normal,6258,221,1,24,,,,DISCHARGED -6259,2021-04-30,18976.970844728214,106,Elective,2021-05-05,Normal,6259,60,3,1,,,,DISCHARGED -6260,2023-09-30,3954.394087385822,463,Urgent,2023-10-09,Abnormal,6260,128,0,16,,,,DISCHARGED -6261,2023-04-25,34819.58352622761,413,Urgent,2023-05-07,Abnormal,6261,477,1,29,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -6262,2021-06-27,17191.55707452727,405,Emergency,2021-07-23,Normal,6262,172,1,14,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6263,2021-06-03,26726.34781120176,327,Emergency,2021-06-26,Abnormal,6263,479,1,9,,,,DISCHARGED -6264,2019-08-04,33869.326218005765,293,Elective,2019-08-10,Normal,6264,155,3,2,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -6265,2020-01-27,21208.935034574213,206,Elective,2020-01-30,Abnormal,6265,404,0,28,,,,DISCHARGED -6266,2023-07-02,36516.50454511538,421,Emergency,2023-08-01,Normal,6266,377,3,19,,,,DISCHARGED -6267,2023-02-07,48298.857995849066,355,Urgent,2023-02-28,Inconclusive,6267,109,2,3,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -6268,2023-05-04,12192.828410927816,289,Urgent,,Abnormal,6268,268,0,21,,,,OPEN -6269,2022-06-11,37733.93980784244,149,Urgent,2022-06-13,Normal,6269,410,3,0,,,,DISCHARGED -6270,2022-04-19,20169.98065941197,118,Emergency,2022-04-28,Normal,6270,355,0,0,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -6271,2019-02-17,15602.99780012213,491,Urgent,2019-03-12,Normal,6271,390,2,17,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -6272,2021-12-29,45543.98397755877,257,Emergency,2022-01-15,Normal,6272,277,4,3,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -6272,2019-10-21,45322.87491249462,281,Urgent,2019-11-04,Normal,6410,73,1,22,,,,DISCHARGED -6272,2019-10-28,37743.61604907189,119,Elective,2019-10-31,Normal,8134,486,3,21,,,,DISCHARGED -6274,2021-10-08,29890.736589541262,229,Elective,2021-10-23,Abnormal,6274,436,2,14,,,,DISCHARGED -6275,2023-10-03,32740.92574514204,101,Urgent,,Inconclusive,6275,462,2,26,,,,OPEN -6276,2021-11-06,9484.561597344376,347,Emergency,2021-11-28,Normal,6276,206,0,24,,,,DISCHARGED -6277,2019-07-24,22156.731990339817,310,Emergency,2019-08-14,Inconclusive,6277,387,0,22,,,,DISCHARGED -6278,2022-10-01,28087.173240632677,299,Elective,2022-10-13,Inconclusive,6278,479,1,27,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6279,2020-02-27,45459.75564855291,485,Emergency,2020-03-25,Abnormal,6279,278,0,20,,,,DISCHARGED -6280,2020-08-27,36501.97002806507,266,Urgent,2020-09-26,Normal,6280,374,3,21,,,,DISCHARGED -6281,2019-12-02,44773.1925129568,387,Elective,2019-12-12,Inconclusive,6281,325,3,9,,,,DISCHARGED -6282,2020-12-28,20597.331221718778,367,Elective,2021-01-18,Abnormal,6282,471,3,24,,,,DISCHARGED -6283,2022-12-22,2776.647406669794,191,Elective,2023-01-04,Normal,6283,339,4,16,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6284,2020-01-30,31062.37992543368,411,Emergency,2020-02-19,Inconclusive,6284,356,3,26,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6285,2022-10-30,12958.944116433528,359,Elective,2022-11-10,Abnormal,6285,339,0,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6286,2023-02-17,3645.142655875792,153,Urgent,2023-02-28,Abnormal,6286,203,0,21,,,,DISCHARGED -6287,2019-07-29,16284.262915163392,141,Elective,2019-08-02,Inconclusive,6287,160,3,11,,,,DISCHARGED -6288,2021-06-26,22298.239377625505,468,Emergency,2021-07-13,Abnormal,6288,27,2,19,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6289,2022-07-07,28223.966176477672,348,Urgent,2022-08-04,Inconclusive,6289,391,2,11,,,,DISCHARGED -6290,2019-12-02,31647.802050439448,304,Emergency,2019-12-17,Inconclusive,6290,256,2,15,,,,DISCHARGED -6291,2021-06-14,41419.76228132893,306,Urgent,2021-06-21,Abnormal,6291,164,1,4,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6293,2023-08-30,21395.64828735212,147,Emergency,2023-09-08,Normal,6293,62,4,28,,,,DISCHARGED -6294,2021-04-28,8381.671707759755,258,Elective,2021-05-16,Abnormal,6294,21,3,15,,,,DISCHARGED -6295,2020-08-24,48376.088832993766,188,Urgent,2020-09-06,Normal,6295,69,1,16,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6297,2022-05-06,32522.499149935287,158,Urgent,2022-05-23,Inconclusive,6297,380,2,22,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6298,2021-05-11,36131.75386382159,378,Urgent,2021-06-02,Normal,6298,404,3,28,,,,DISCHARGED -6299,2019-05-01,24676.176838998825,283,Urgent,2019-05-21,Inconclusive,6299,95,1,14,,,,DISCHARGED -6300,2023-06-11,15525.91164448756,332,Emergency,2023-06-30,Normal,6300,162,0,12,,,,DISCHARGED -6301,2020-03-22,46494.09289928049,144,Urgent,2020-04-18,Inconclusive,6301,78,2,7,,,,DISCHARGED -6302,2021-05-04,49516.31337760794,480,Urgent,2021-05-20,Abnormal,6302,4,1,26,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -6305,2021-01-13,5805.097992573134,304,Emergency,2021-01-27,Inconclusive,6305,315,0,20,,,,DISCHARGED -6306,2020-05-19,47227.26072631823,240,Emergency,2020-06-12,Abnormal,6306,119,2,1,,,,DISCHARGED -6307,2021-07-23,29810.43532804897,278,Emergency,2021-08-05,Inconclusive,6307,301,4,7,,,,DISCHARGED -6308,2022-11-06,45805.19650123357,384,Emergency,2022-11-11,Inconclusive,6308,177,2,9,,,,DISCHARGED -6309,2023-04-25,4912.829136820908,173,Emergency,,Abnormal,6309,175,4,6,,,,OPEN -6310,2021-03-01,23544.864488158502,258,Elective,2021-03-21,Abnormal,6310,389,4,9,,,,DISCHARGED -6311,2019-09-06,35386.11067234685,320,Urgent,2019-09-28,Abnormal,6311,216,4,24,,,,DISCHARGED -6312,2022-06-16,32418.295874994077,426,Emergency,2022-07-06,Normal,6312,55,3,3,,,,DISCHARGED -6312,2023-09-06,14276.47340348072,270,Urgent,2023-10-05,Abnormal,8640,365,3,10,,,,DISCHARGED -6312,2020-05-11,4780.693192207359,382,Elective,2020-05-25,Normal,9877,186,4,8,,,,DISCHARGED -6313,2022-04-05,24822.26794898652,172,Elective,2022-04-09,Normal,6313,231,0,3,,,,DISCHARGED -6315,2021-07-13,31622.653332477646,261,Urgent,2021-08-02,Normal,6315,254,4,2,,,,DISCHARGED -6316,2021-11-07,2614.092123383107,466,Elective,2021-12-02,Inconclusive,6316,412,1,10,,,,DISCHARGED -6317,2020-06-15,9161.065246397118,301,Elective,2020-06-17,Inconclusive,6317,454,4,2,,,,DISCHARGED -6318,2022-02-14,38806.59439247778,418,Emergency,2022-02-28,Inconclusive,6318,103,3,25,,,,DISCHARGED -6319,2020-03-14,15810.726796890822,472,Urgent,2020-03-15,Inconclusive,6319,76,3,17,,,,DISCHARGED -6320,2022-10-02,23174.406843495814,379,Urgent,2022-10-09,Inconclusive,6320,229,1,25,Abdominal pain and bloating,"Recommended dietary changes, including a low-FODMAP diet and avoiding trigger foods. Prescribed antacids for immediate relief and proton pump inhibitors for long-term management of gastrointestinal issues. Conducted imaging studies (such as ultrasound or endoscopy) to investigate the cause of abdominal pain. Advised on lifestyle modifications, including stress management and regular physical activity.",K30 - Functional dyspepsia,DISCHARGED -6321,2023-07-10,9400.965253547003,254,Elective,,Normal,6321,401,1,18,,,,OPEN -6322,2019-12-26,27310.46112970099,350,Urgent,2020-01-11,Normal,6322,257,2,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -6323,2023-05-01,46468.10833232258,489,Elective,,Inconclusive,6323,263,0,23,,,,OPEN -6324,2021-11-23,41023.47493868809,332,Urgent,2021-12-02,Abnormal,6324,330,0,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6325,2019-01-22,12006.459507091142,134,Urgent,2019-02-21,Normal,6325,480,0,23,,,,DISCHARGED -6326,2019-10-08,28571.455096843823,193,Elective,2019-10-24,Abnormal,6326,181,3,1,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6327,2022-08-01,14259.08139952214,286,Elective,2022-08-24,Inconclusive,6327,380,0,26,,,,DISCHARGED -6328,2020-12-23,5120.1787819202045,373,Emergency,2020-12-24,Inconclusive,6328,255,2,1,,,,DISCHARGED -6329,2023-02-21,35926.11979016372,168,Urgent,,Abnormal,6329,37,2,1,,,,OPEN -6330,2022-10-26,43874.28249272077,274,Emergency,2022-11-23,Inconclusive,6330,175,0,9,,,,DISCHARGED -6331,2020-09-08,19404.20463056126,313,Urgent,2020-09-13,Normal,6331,26,1,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -6332,2021-08-18,2502.917758197785,421,Elective,2021-08-22,Abnormal,6332,275,2,14,,,,DISCHARGED -6333,2022-04-04,27641.238520391715,336,Elective,2022-04-06,Normal,6333,139,1,21,,,,DISCHARGED -6334,2019-03-16,4143.797079417624,338,Urgent,2019-03-29,Normal,6334,298,3,11,,,,DISCHARGED -6335,2022-03-05,18604.25210957644,110,Emergency,2022-03-13,Normal,6335,444,2,10,,,,DISCHARGED -6336,2023-02-14,28854.67467505926,220,Elective,2023-02-21,Normal,6336,286,1,16,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6337,2020-07-07,32002.503192300108,187,Elective,2020-07-24,Normal,6337,90,0,17,,,,DISCHARGED -6338,2018-11-07,17020.934264470074,162,Elective,2018-11-22,Abnormal,6338,479,3,13,,,,DISCHARGED -6339,2023-02-13,17258.576991761205,337,Emergency,2023-03-12,Inconclusive,6339,60,4,16,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6340,2019-05-19,44564.50016325569,367,Urgent,2019-06-16,Abnormal,6340,457,4,14,,,,DISCHARGED -6341,2023-08-21,5937.25609150677,228,Elective,,Abnormal,6341,450,0,11,Difficulty in opening the mouth,"Physical therapy, medications for underlying causes, and lifestyle modifications.","K57.9 - Diverticulitis, unspecified",OPEN -6342,2023-05-31,10525.809317349374,294,Emergency,2023-06-04,Inconclusive,6342,364,3,26,,,,DISCHARGED -6343,2019-02-07,28091.394862690144,316,Elective,2019-02-10,Inconclusive,6343,346,3,15,,,,DISCHARGED -6344,2020-09-13,2510.0327631516425,425,Elective,2020-09-24,Inconclusive,6344,162,3,22,,,,DISCHARGED -6345,2021-03-03,39829.48079846791,159,Elective,2021-03-20,Inconclusive,6345,350,3,5,,,,DISCHARGED -6346,2020-04-01,38746.34539557557,451,Emergency,2020-04-07,Abnormal,6346,142,4,1,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -6347,2022-01-23,38386.73077117908,468,Elective,2022-02-12,Inconclusive,6347,399,1,1,,,,DISCHARGED -6348,2022-07-23,36389.81872389086,389,Elective,2022-08-01,Normal,6348,252,3,15,,,,DISCHARGED -6349,2019-10-07,11491.29578256735,296,Elective,2019-10-10,Normal,6349,268,1,1,,,,DISCHARGED -6350,2019-04-08,45686.56916405727,498,Emergency,2019-04-29,Abnormal,6350,368,3,7,,,,DISCHARGED -6351,2022-06-08,26968.69450468538,362,Elective,2022-06-09,Abnormal,6351,290,2,29,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -6352,2023-10-23,19726.62638984905,179,Emergency,2023-11-15,Abnormal,6352,499,2,6,,,,DISCHARGED -6353,2020-11-19,20914.506348441475,469,Emergency,2020-12-03,Abnormal,6353,458,2,0,,,,DISCHARGED -6355,2019-02-23,44355.73182946607,450,Urgent,2019-03-05,Inconclusive,6355,186,3,3,,,,DISCHARGED -6356,2021-06-11,9269.023067480211,382,Emergency,2021-06-22,Normal,6356,404,1,10,,,,DISCHARGED -6357,2019-04-05,36299.56357949784,129,Elective,2019-04-19,Inconclusive,6357,498,4,19,,,,DISCHARGED -6358,2019-10-01,9842.50863259775,285,Elective,2019-10-24,Inconclusive,6358,437,0,6,,,,DISCHARGED -6359,2021-09-26,40872.67431546992,114,Urgent,2021-10-22,Abnormal,6359,458,4,17,,,,DISCHARGED -6360,2020-04-29,44105.38470748311,247,Emergency,2020-05-01,Inconclusive,6360,413,3,3,,,,DISCHARGED -6361,2021-10-06,35919.16141725073,157,Emergency,2021-11-01,Abnormal,6361,303,2,16,,,,DISCHARGED -6362,2021-11-18,38080.06489172251,455,Urgent,2021-12-16,Abnormal,6362,290,2,28,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -6363,2019-01-01,11434.768359367456,172,Urgent,2019-01-15,Normal,6363,85,1,28,,,,DISCHARGED -6364,2019-03-11,3416.0378503970755,222,Urgent,2019-03-12,Inconclusive,6364,165,3,10,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6365,2022-12-21,20250.068156215777,203,Emergency,2023-01-18,Normal,6365,414,4,10,,,,DISCHARGED -6366,2019-01-19,45362.20148536764,490,Emergency,2019-02-15,Inconclusive,6366,461,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6367,2019-11-30,8603.052351088463,310,Emergency,2019-12-25,Normal,6367,407,3,10,,,,DISCHARGED -6368,2022-06-30,20822.617860667076,153,Urgent,2022-07-11,Inconclusive,6368,113,2,14,,,,DISCHARGED -6369,2021-10-22,43297.7336529021,486,Emergency,2021-11-13,Abnormal,6369,432,4,13,,,,DISCHARGED -6371,2020-05-28,14843.51530137342,406,Emergency,2020-06-17,Normal,6371,479,0,16,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6372,2022-05-17,41742.22724248023,208,Elective,2022-05-26,Inconclusive,6372,355,2,1,,,,DISCHARGED -6373,2019-06-30,45112.52317188774,455,Urgent,2019-07-04,Abnormal,6373,415,4,17,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -6374,2021-06-15,24606.99943039784,478,Emergency,2021-06-21,Inconclusive,6374,182,1,15,,,,DISCHARGED -6375,2023-03-09,20791.154851465977,351,Urgent,2023-03-21,Normal,6375,206,2,11,,,,DISCHARGED -6376,2022-02-07,10724.782890796803,145,Urgent,2022-02-24,Inconclusive,6376,255,1,9,,,,DISCHARGED -6377,2022-04-13,19498.54255164778,382,Emergency,2022-05-09,Abnormal,6377,234,2,27,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6378,2020-04-27,33024.65602517636,163,Urgent,2020-05-24,Normal,6378,441,3,15,,,,DISCHARGED -6379,2021-12-12,35356.44393007982,455,Emergency,2021-12-22,Normal,6379,354,4,2,,,,DISCHARGED -6380,2021-07-21,16323.827520557152,125,Urgent,2021-08-14,Inconclusive,6380,2,1,7,,,,DISCHARGED -6381,2020-06-02,29827.156976012637,140,Urgent,2020-06-18,Normal,6381,207,2,26,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6382,2023-01-17,38079.7486759851,485,Elective,,Abnormal,6382,196,1,21,,,,OPEN -6383,2022-10-16,3252.623825548033,145,Urgent,2022-10-20,Inconclusive,6383,340,2,21,,,,DISCHARGED -6384,2020-10-23,12857.850428642969,190,Urgent,2020-11-12,Inconclusive,6384,124,2,24,,,,DISCHARGED -6385,2023-06-15,6253.512305256351,143,Urgent,,Inconclusive,6385,137,0,23,,,,OPEN -6386,2019-05-25,3278.1754712039424,396,Emergency,2019-05-29,Normal,6386,338,0,1,,,,DISCHARGED -6387,2022-11-23,48530.12420514535,447,Elective,2022-12-09,Abnormal,6387,24,0,21,,,,DISCHARGED -6388,2021-02-02,26731.538959177946,415,Elective,2021-02-18,Normal,6388,67,1,0,,,,DISCHARGED -6389,2023-10-28,34562.79529663183,309,Urgent,2023-11-16,Abnormal,6389,60,3,28,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -6390,2020-09-14,44486.43401762952,319,Urgent,2020-09-16,Abnormal,6390,28,2,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -6391,2020-06-09,23579.69137565181,458,Elective,2020-06-19,Abnormal,6391,382,4,24,,,,DISCHARGED -6392,2019-11-06,10445.980492927923,227,Emergency,2019-12-06,Normal,6392,18,0,3,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -6393,2023-05-22,38173.9257316802,154,Elective,,Abnormal,6393,170,1,3,,,,OPEN -6394,2019-08-10,8227.714523297263,416,Urgent,2019-08-26,Inconclusive,6394,449,1,8,,,,DISCHARGED -6395,2021-04-14,26158.396838799526,261,Urgent,2021-05-03,Normal,6395,73,1,2,,,,DISCHARGED -6396,2022-11-12,17939.54109740164,131,Elective,2022-11-17,Normal,6396,60,4,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -6397,2022-01-31,1428.6194928533328,461,Urgent,2022-02-14,Abnormal,6397,426,4,0,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",DISCHARGED -6398,2022-03-03,15312.402684283905,476,Urgent,2022-04-02,Normal,6398,152,0,21,,,,DISCHARGED -6399,2021-12-12,15611.025760339273,196,Urgent,2022-01-07,Abnormal,6399,275,4,18,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -6400,2023-09-23,44862.82867055065,469,Urgent,,Abnormal,6400,47,0,0,,,,OPEN -6401,2021-02-09,1510.0174542278176,307,Elective,2021-03-11,Abnormal,6401,210,4,9,,,,DISCHARGED -6402,2023-08-02,21607.16446733318,291,Urgent,2023-08-21,Abnormal,6402,342,4,21,,,,DISCHARGED -6403,2022-04-08,24256.84641421933,450,Urgent,2022-04-12,Abnormal,6403,407,4,29,,,,DISCHARGED -6405,2019-02-26,36020.02597604894,409,Elective,2019-03-24,Normal,6405,138,0,11,,,,DISCHARGED -6406,2020-01-02,1297.1265139423306,146,Urgent,2020-01-05,Abnormal,6406,109,2,9,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6408,2022-11-26,27520.734687519034,463,Emergency,2022-12-19,Abnormal,6408,481,0,1,,,,DISCHARGED -6409,2020-11-18,7483.788011774308,105,Elective,2020-12-10,Inconclusive,6409,182,2,15,,,,DISCHARGED -6411,2019-11-09,38310.284764213386,386,Emergency,2019-12-04,Abnormal,6411,27,1,7,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -6412,2023-06-20,7840.692750012547,469,Urgent,2023-06-26,Inconclusive,6412,196,1,13,,,,DISCHARGED -6413,2019-09-27,14474.870506402229,167,Emergency,2019-10-22,Normal,6413,190,0,28,Difficulty in swallowing,"Diagnostic tests to identify the cause. Treat with medications, therapy, or surgery depending on the underlying issue.",R53.81 - Other malaise,DISCHARGED -6414,2023-04-14,38216.70514985092,455,Emergency,,Inconclusive,6414,314,2,14,,,,OPEN -6415,2021-07-28,8691.640039626809,444,Elective,2021-08-03,Normal,6415,388,2,15,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -6416,2021-03-19,27298.734315302598,405,Elective,2021-03-22,Inconclusive,6416,50,2,10,,,,DISCHARGED -6417,2023-04-06,19972.80664006177,155,Emergency,2023-04-23,Normal,6417,148,1,11,Chronic back pain,"Physical therapy, pain medications, and lifestyle modifications. Imaging studies (MRI, X-rays) to identify structural issues. Consideration of surgical options if conservative measures are ineffective. Regular follow-up to manage pain and monitor progress.",M54.5 - Low back pain,DISCHARGED -6418,2023-10-25,31820.2795035068,432,Elective,2023-11-12,Inconclusive,6418,267,0,1,,,,DISCHARGED -6419,2022-12-12,33315.480493456016,135,Emergency,2022-12-29,Normal,6419,49,3,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -6420,2019-01-25,27180.243589882703,138,Urgent,2019-02-20,Abnormal,6420,387,2,29,,,,DISCHARGED -6421,2023-09-13,43932.49307678761,488,Elective,2023-10-02,Abnormal,6421,245,2,2,Sudden loss of consciousness,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6422,2022-06-05,2996.658611545702,118,Urgent,2022-07-01,Normal,6422,112,3,8,,,,DISCHARGED -6423,2022-12-21,15072.294837733678,141,Elective,2022-12-24,Normal,6423,169,0,17,,,,DISCHARGED -6424,2020-04-07,26504.173734799824,229,Urgent,2020-04-20,Abnormal,6424,467,2,18,,,,DISCHARGED -6425,2021-06-16,18483.959711816584,391,Urgent,2021-07-10,Inconclusive,6425,165,0,6,,,,DISCHARGED -6427,2020-03-08,38533.4245579365,193,Emergency,2020-03-15,Inconclusive,6427,408,2,3,Difficulty speaking and slurred speech,"Neurological evaluation, speech therapy, and medications for underlying speech-related issues. Monitor for changes in speech patterns.",R47.81 - Slurred speech,DISCHARGED -6429,2022-01-20,11329.43673130454,294,Urgent,2022-02-18,Abnormal,6429,13,4,5,,,,DISCHARGED -6430,2020-09-01,12463.992586612105,294,Emergency,2020-09-27,Normal,6430,202,2,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6431,2023-08-23,23275.6840946182,315,Urgent,2023-09-01,Inconclusive,6431,287,4,0,,,,DISCHARGED -6432,2021-09-30,24158.106073829145,179,Urgent,2021-10-29,Normal,6432,394,0,15,,,,DISCHARGED -6433,2021-02-09,30852.388454299653,205,Elective,2021-03-01,Inconclusive,6433,188,2,10,,,,DISCHARGED -6434,2021-02-13,2742.3709276833183,392,Emergency,2021-02-20,Abnormal,6434,401,1,21,,,,DISCHARGED -6435,2019-09-18,22138.94999962974,331,Emergency,2019-10-12,Abnormal,6435,154,1,3,,,,DISCHARGED -6435,2022-09-16,18765.389652883478,297,Urgent,2022-09-21,Abnormal,8955,54,3,17,,,,DISCHARGED -6437,2023-10-18,7874.9356277291645,152,Emergency,2023-10-31,Inconclusive,6437,181,1,22,,,,DISCHARGED -6438,2023-01-31,23288.320481482748,457,Urgent,2023-02-28,Inconclusive,6438,209,4,25,,,,DISCHARGED -6439,2020-10-29,22853.24411337351,165,Elective,2020-11-18,Normal,6439,375,1,28,Chest tightness and wheezing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.",R05 - Cough,DISCHARGED -6441,2021-02-07,17611.629241012157,329,Emergency,2021-03-09,Normal,6441,470,1,27,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6442,2022-05-24,43578.58892589563,406,Emergency,2022-06-07,Abnormal,6442,74,1,28,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -6443,2023-08-14,20109.16897740629,374,Urgent,2023-08-22,Abnormal,6443,276,2,4,,,,DISCHARGED -6444,2022-11-01,35808.94134798303,297,Emergency,2022-11-15,Inconclusive,6444,427,3,21,,,,DISCHARGED -6445,2022-12-28,48027.55601450049,216,Emergency,2023-01-15,Normal,6445,132,0,5,,,,DISCHARGED -6446,2023-03-25,35084.300305117344,244,Emergency,2023-04-01,Normal,6446,342,3,29,,,,DISCHARGED -6447,2019-07-26,26015.539765533045,167,Emergency,2019-08-17,Inconclusive,6447,424,4,24,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -6448,2019-04-22,19784.20559356157,103,Emergency,2019-05-09,Abnormal,6448,58,2,27,,,,DISCHARGED -6449,2022-10-06,13249.652206260307,142,Urgent,2022-10-22,Inconclusive,6449,344,2,1,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -6450,2019-03-15,18715.415491806765,385,Emergency,2019-04-13,Abnormal,6450,488,1,11,,,,DISCHARGED -6451,2021-07-19,18925.55700290145,229,Emergency,2021-07-26,Normal,6451,181,1,21,,,,DISCHARGED -6453,2021-04-30,28807.28176484504,294,Elective,2021-05-19,Inconclusive,6453,457,4,8,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6454,2020-09-24,35173.555002044486,342,Emergency,2020-10-08,Inconclusive,6454,405,2,27,,,,DISCHARGED -6455,2021-06-02,19340.95334968545,102,Emergency,2021-06-26,Normal,6455,338,0,19,,,,DISCHARGED -6457,2022-04-23,4103.562709052907,360,Urgent,2022-05-16,Abnormal,6457,320,3,28,,,,DISCHARGED -6458,2022-10-31,44885.7231746151,482,Elective,2022-11-05,Inconclusive,6458,63,2,11,,,,DISCHARGED -6459,2020-05-19,40659.61807959143,316,Elective,2020-06-12,Inconclusive,6459,326,0,28,,,,DISCHARGED -6460,2018-12-04,37677.354071304646,313,Urgent,2018-12-19,Abnormal,6460,259,0,12,,,,DISCHARGED -6461,2020-05-22,12218.485583623378,434,Emergency,2020-06-11,Abnormal,6461,192,3,26,,,,DISCHARGED -6462,2022-06-14,25092.920106769976,382,Urgent,2022-07-13,Abnormal,6462,142,0,21,,,,DISCHARGED -6463,2021-03-03,46927.26166401963,429,Emergency,2021-03-28,Abnormal,6463,103,4,22,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6464,2022-06-04,24069.892535706607,356,Urgent,2022-06-25,Inconclusive,6464,459,0,16,,,,DISCHARGED -6466,2022-07-18,9408.97569855612,399,Emergency,2022-08-15,Normal,6466,405,4,4,,,,DISCHARGED -6467,2020-07-31,3830.439965553167,272,Elective,2020-08-01,Abnormal,6467,213,0,19,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -6468,2022-09-23,12110.253455149204,169,Elective,2022-10-14,Normal,6468,241,1,12,,,,DISCHARGED -6468,2020-09-11,30889.02978054228,193,Emergency,2020-10-05,Abnormal,9824,430,0,28,,,,DISCHARGED -6469,2020-07-12,8455.933132181595,326,Emergency,2020-08-02,Normal,6469,208,4,12,,,,DISCHARGED -6470,2022-05-21,2110.3311710334483,191,Emergency,2022-06-01,Inconclusive,6470,92,0,9,,,,DISCHARGED -6472,2023-05-25,46797.90447911199,427,Emergency,,Abnormal,6472,429,0,14,,,,OPEN -6473,2020-01-01,10176.238289943954,460,Emergency,2020-01-15,Inconclusive,6473,141,0,14,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6474,2022-07-01,38896.73676388027,214,Elective,2022-07-04,Normal,6474,433,4,17,,,,DISCHARGED -6474,2019-04-27,29534.06437873794,450,Urgent,2019-05-03,Abnormal,9954,403,0,17,,,,DISCHARGED -6475,2022-05-07,47186.643012484645,144,Urgent,2022-05-17,Normal,6475,433,3,1,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6476,2020-11-28,18711.57437451129,157,Urgent,2020-12-24,Abnormal,6476,111,3,22,,,,DISCHARGED -6477,2019-05-03,26091.750109589066,305,Urgent,2019-05-11,Normal,6477,416,4,10,,,,DISCHARGED -6478,2020-05-12,19318.13874997756,379,Elective,2020-05-13,Inconclusive,6478,374,1,12,,,,DISCHARGED -6479,2022-02-11,48137.36153400999,427,Elective,2022-02-17,Inconclusive,6479,58,3,10,,,,DISCHARGED -6480,2020-05-25,30617.517995217724,135,Emergency,2020-06-17,Inconclusive,6480,42,2,3,,,,DISCHARGED -6481,2021-11-17,35403.3079465154,219,Urgent,2021-12-07,Normal,6481,206,3,14,,,,DISCHARGED -6482,2020-04-28,35502.10023303405,281,Urgent,2020-05-04,Inconclusive,6482,267,2,21,,,,DISCHARGED -6483,2022-11-05,39426.65592253163,248,Elective,2022-12-04,Normal,6483,295,4,22,,,,DISCHARGED -6484,2023-10-14,48160.80364209265,416,Elective,2023-10-25,Inconclusive,6484,117,1,24,,,,DISCHARGED -6485,2022-01-02,10467.718585228504,168,Elective,2022-01-04,Normal,6485,19,2,10,,,,DISCHARGED -6486,2021-09-16,26818.31334499874,411,Urgent,2021-10-11,Inconclusive,6486,221,2,17,,,,DISCHARGED -6488,2020-08-23,31316.02989557156,347,Emergency,2020-09-19,Abnormal,6488,165,3,15,,,,DISCHARGED -6489,2019-02-17,18109.812067873427,319,Emergency,2019-03-19,Normal,6489,130,2,9,,,,DISCHARGED -6490,2021-02-22,27058.63201980125,268,Elective,2021-03-23,Normal,6490,155,4,11,,,,DISCHARGED -6491,2021-09-09,2225.498606371526,295,Emergency,2021-10-07,Inconclusive,6491,183,4,12,,,,DISCHARGED -6492,2020-10-29,40221.425409786985,102,Elective,2020-11-09,Abnormal,6492,89,4,8,,,,DISCHARGED -6493,2019-10-21,39686.40942163981,498,Elective,2019-11-01,Inconclusive,6493,93,3,26,,,,DISCHARGED -6494,2021-06-26,11379.973646328,364,Urgent,2021-07-11,Inconclusive,6494,12,1,20,,,,DISCHARGED -6496,2023-06-28,18933.876349247857,370,Emergency,,Normal,6496,460,3,12,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6497,2020-12-03,27990.04934907472,234,Urgent,2021-01-01,Inconclusive,6497,321,4,5,,,,DISCHARGED -6498,2023-02-10,11303.720672191046,219,Emergency,2023-02-25,Normal,6498,292,3,5,,,,DISCHARGED -6499,2022-12-05,22796.47098961584,358,Elective,2022-12-20,Abnormal,6499,432,4,10,Sudden loss of vision in one eye,Emergency ophthalmological evaluation to identify the cause and initiate appropriate treatment.,H57.9 - Unspecified disorder of eye and adnexa,DISCHARGED -6500,2022-09-02,47947.42754337616,320,Elective,2022-09-22,Abnormal,6500,229,0,18,,,,DISCHARGED -6501,2019-04-25,11531.45029232743,336,Urgent,2019-05-17,Normal,6501,321,0,26,,,,DISCHARGED -6502,2019-04-05,1639.9367572640513,329,Emergency,2019-04-15,Inconclusive,6502,291,2,10,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6503,2022-11-11,45157.04114735989,434,Elective,2022-12-01,Normal,6503,437,1,9,,,,DISCHARGED -6504,2021-12-01,17821.32053835732,156,Urgent,2021-12-18,Abnormal,6504,25,0,22,,,,DISCHARGED -6505,2019-10-07,6449.3025579987625,425,Elective,2019-10-25,Inconclusive,6505,74,4,14,,,,DISCHARGED -6506,2020-09-01,11651.878079559883,195,Emergency,2020-09-19,Normal,6506,455,3,12,,,,DISCHARGED -6507,2021-11-17,13293.229207479431,303,Urgent,2021-11-27,Abnormal,6507,363,3,22,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -6508,2022-05-05,43593.777029287325,320,Emergency,2022-05-08,Abnormal,6508,423,2,7,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -6510,2022-01-24,48828.09919031179,130,Elective,2022-02-11,Abnormal,6510,298,3,4,,,,DISCHARGED -6511,2023-10-30,25084.610651048384,152,Emergency,,Inconclusive,6511,149,0,1,,,,OPEN -6512,2023-02-11,31598.67402435054,387,Urgent,2023-03-10,Normal,6512,147,3,15,,,,DISCHARGED -6513,2023-10-22,10105.207379691195,111,Elective,2023-11-03,Abnormal,6513,7,0,12,,,,DISCHARGED -6514,2019-03-28,36974.12370398772,460,Urgent,2019-04-22,Inconclusive,6514,28,0,18,,,,DISCHARGED -6515,2019-05-17,23841.53465453391,495,Urgent,2019-06-13,Normal,6515,295,1,8,,,,DISCHARGED -6516,2021-07-03,44109.01857303184,146,Elective,2021-07-19,Inconclusive,6516,473,2,14,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -6517,2018-12-24,13700.531651410329,140,Emergency,2019-01-01,Inconclusive,6517,413,4,5,,,,DISCHARGED -6518,2021-05-26,43995.63273430472,369,Elective,2021-06-01,Abnormal,6518,208,0,7,,,,DISCHARGED -6519,2020-10-08,24881.750842571968,483,Elective,2020-10-11,Abnormal,6519,127,2,23,,,,DISCHARGED -6520,2021-12-02,12510.723860368304,432,Urgent,2021-12-17,Normal,6520,339,4,13,,,,DISCHARGED -6521,2022-05-15,2511.467092047872,107,Elective,2022-06-09,Abnormal,6521,115,3,4,,,,DISCHARGED -6522,2023-03-03,47032.53132076731,325,Elective,2023-03-23,Abnormal,6522,438,2,16,,,,DISCHARGED -6523,2021-06-05,29136.69213992961,426,Urgent,2021-06-18,Abnormal,6523,143,2,21,,,,DISCHARGED -6523,2021-06-22,5629.6077747215895,102,Urgent,2021-06-27,Abnormal,8107,429,2,6,Excessive sweating and hot flashes,"Prescribe hormone replacement therapy or other medications, suggest lifestyle changes, and address any underlying causes.",N95.0 - Postmenopausal bleeding,DISCHARGED -6524,2021-09-03,28480.05216557829,358,Urgent,2021-09-10,Inconclusive,6524,317,3,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -6525,2022-10-03,36820.65106609598,428,Emergency,2022-10-06,Normal,6525,234,3,15,,,,DISCHARGED -6526,2019-04-30,20525.26239410496,140,Emergency,2019-05-21,Abnormal,6526,6,2,17,,,,DISCHARGED -6527,2020-11-18,19110.81383010283,249,Elective,2020-11-19,Abnormal,6527,463,1,27,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6528,2018-12-06,10181.973029741674,412,Emergency,2018-12-30,Abnormal,6528,44,0,12,,,,DISCHARGED -6529,2023-01-08,31391.37446400957,206,Emergency,2023-01-16,Normal,6529,442,3,17,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -6530,2021-05-06,34021.0400547744,408,Elective,2021-06-05,Normal,6530,238,1,9,,,,DISCHARGED -6531,2023-07-01,42927.232323350894,402,Elective,2023-07-06,Normal,6531,439,3,0,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6532,2023-07-04,6688.166188336051,246,Emergency,2023-07-23,Inconclusive,6532,431,2,20,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6533,2019-05-14,36683.82144295969,449,Elective,2019-05-19,Inconclusive,6533,154,1,17,,,,DISCHARGED -6534,2023-10-02,30658.94501948577,216,Urgent,,Normal,6534,180,4,18,Excessive salivation,"Evaluation by a neurologist or dentist, possible treatment for underlying causes",G57.90 - Unspecified mononeuropathy of unspecified lower limb,OPEN -6535,2022-05-24,10851.179695773326,406,Emergency,2022-06-05,Inconclusive,6535,214,0,1,,,,DISCHARGED -6536,2020-08-24,38388.72381185949,226,Urgent,2020-09-12,Normal,6536,87,0,26,,,,DISCHARGED -6538,2022-12-29,10879.11401335479,260,Emergency,2023-01-27,Normal,6538,255,3,3,,,,DISCHARGED -6539,2020-04-22,34534.28629193115,458,Elective,2020-05-11,Inconclusive,6539,72,0,10,,,,DISCHARGED -6540,2022-02-23,25263.584712358992,237,Urgent,2022-03-20,Inconclusive,6540,418,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6541,2021-07-03,46148.41610851614,242,Emergency,2021-07-23,Normal,6541,178,1,8,,,,DISCHARGED -6542,2019-08-15,34926.432703066894,316,Emergency,2019-09-10,Normal,6542,211,1,9,,,,DISCHARGED -6543,2022-06-23,23549.199777734368,111,Elective,2022-07-02,Normal,6543,292,2,27,,,,DISCHARGED -6544,2021-01-13,45069.391862605095,265,Elective,2021-02-05,Inconclusive,6544,233,1,1,,,,DISCHARGED -6545,2019-10-03,34945.287741910404,423,Urgent,2019-10-29,Abnormal,6545,464,3,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6546,2021-02-25,17333.432585199174,312,Urgent,2021-03-21,Normal,6546,238,4,14,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6548,2022-06-01,11958.833783556503,161,Emergency,2022-06-26,Normal,6548,222,2,26,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -6549,2022-09-01,26167.673580693387,307,Urgent,2022-09-22,Abnormal,6549,118,3,29,,,,DISCHARGED -6550,2023-06-11,8573.572947078203,478,Elective,,Normal,6550,312,3,18,,,,OPEN -6551,2020-11-07,5293.745359537666,257,Elective,2020-11-24,Abnormal,6551,263,3,9,,,,DISCHARGED -6552,2023-10-15,40239.94509618528,329,Elective,2023-10-19,Abnormal,6552,206,0,23,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -6553,2021-11-28,28684.25135348031,210,Elective,2021-12-21,Normal,6553,94,3,19,,,,DISCHARGED -6554,2019-08-23,17657.416351515432,311,Elective,2019-08-30,Normal,6554,372,0,13,,,,DISCHARGED -6555,2019-06-14,14003.265128834311,284,Elective,2019-06-17,Normal,6555,221,1,3,Unexplained fever,Medical evaluation to identify the source of fever and initiate appropriate treatment.,"R50.9 - Fever, unspecified",DISCHARGED -6556,2021-01-26,38851.55395328927,333,Emergency,2021-02-06,Inconclusive,6556,365,0,24,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -6557,2023-10-18,28410.24745176708,469,Elective,2023-10-24,Normal,6557,275,3,10,,,,DISCHARGED -6558,2022-12-07,48207.54706603848,450,Elective,2022-12-16,Inconclusive,6558,379,4,2,,,,DISCHARGED -6559,2020-10-26,36269.68762402382,126,Urgent,2020-11-21,Normal,6559,230,4,22,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",DISCHARGED -6560,2018-12-24,35229.37872668747,289,Emergency,2019-01-12,Inconclusive,6560,308,1,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -6561,2021-05-11,43796.59703445785,346,Urgent,2021-05-30,Normal,6561,118,3,6,,,,DISCHARGED -6562,2020-08-28,35400.33811486774,267,Urgent,2020-09-25,Inconclusive,6562,267,0,25,,,,DISCHARGED -6563,2021-11-17,9127.477608107109,240,Urgent,2021-11-27,Inconclusive,6563,432,4,10,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6564,2022-08-30,20564.355730617037,188,Elective,2022-09-07,Normal,6564,272,2,17,,,,DISCHARGED -6565,2019-11-25,2819.2696253223567,243,Emergency,2019-12-06,Normal,6565,63,3,27,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,DISCHARGED -6566,2019-06-23,14904.474279957903,214,Emergency,2019-07-20,Abnormal,6566,297,3,13,,,,DISCHARGED -6567,2019-08-29,5425.935372465265,331,Emergency,2019-08-30,Normal,6567,349,2,13,,,,DISCHARGED -6568,2021-07-03,45776.51509565352,420,Urgent,2021-07-07,Inconclusive,6568,412,4,5,Dizziness and fainting spells,"Conducted a thorough cardiovascular assessment, including blood pressure monitoring and cardiac tests. Diagnosed the patient with vasovagal syncope or another cardiovascular condition. Prescribed medications to manage symptoms and recommended lifestyle modifications, such as increased fluid intake and salt consumption. Advised on strategies to prevent syncope, including avoiding triggers and maintaining proper hydration.",R55 - Syncope and collapse,DISCHARGED -6569,2020-12-18,27689.944263444944,281,Elective,2021-01-13,Inconclusive,6569,402,2,28,,,,DISCHARGED -6570,2023-02-21,14851.789382675071,471,Urgent,2023-03-17,Abnormal,6570,493,1,8,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -6571,2019-08-01,31233.542046345,334,Elective,2019-08-17,Abnormal,6571,10,0,21,,,,DISCHARGED -6572,2021-10-17,9428.84136505866,460,Emergency,2021-11-01,Normal,6572,97,0,2,,,,DISCHARGED -6573,2022-08-13,5185.303973295573,401,Emergency,2022-09-06,Inconclusive,6573,433,4,16,,,,DISCHARGED -6574,2022-10-08,21430.717821295453,181,Elective,2022-10-22,Inconclusive,6574,70,2,27,,,,DISCHARGED -6575,2023-07-28,28255.311069061085,428,Urgent,2023-08-22,Normal,6575,363,3,11,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -6576,2021-01-30,30713.20589605569,227,Emergency,2021-02-16,Inconclusive,6576,57,3,3,,,,DISCHARGED -6577,2019-09-01,22984.49013461101,265,Elective,2019-09-19,Abnormal,6577,289,3,19,,,,DISCHARGED -6578,2020-08-14,45844.47258661566,236,Urgent,2020-08-21,Abnormal,6578,250,1,15,,,,DISCHARGED -6579,2020-04-05,11153.824718376234,347,Emergency,2020-04-15,Abnormal,6579,275,1,28,,,,DISCHARGED -6580,2019-04-14,29264.84724292384,252,Elective,2019-04-30,Abnormal,6580,49,3,23,,,,DISCHARGED -6581,2021-08-17,33337.25114824751,461,Elective,2021-09-09,Abnormal,6581,357,4,9,,,,DISCHARGED -6582,2023-02-23,43489.81540707157,249,Urgent,2023-03-25,Normal,6582,215,1,25,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -6583,2023-10-12,14445.168188533233,168,Urgent,2023-10-18,Inconclusive,6583,393,1,29,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -6585,2021-10-10,25256.85518795779,212,Urgent,2021-10-26,Inconclusive,6585,415,0,28,,,,DISCHARGED -6586,2020-08-19,47175.7431904998,445,Urgent,2020-08-23,Inconclusive,6586,51,0,6,,,,DISCHARGED -6587,2021-04-23,39416.18648829994,227,Emergency,2021-05-10,Normal,6587,270,4,9,,,,DISCHARGED -6588,2019-10-04,42051.586444843146,386,Urgent,2019-10-11,Abnormal,6588,484,1,6,,,,DISCHARGED -6588,2021-08-08,11306.885137040565,337,Elective,2021-08-21,Normal,8715,83,1,22,,,,DISCHARGED -6589,2018-12-11,12727.895202263906,374,Urgent,2019-01-01,Abnormal,6589,386,2,27,,,,DISCHARGED -6590,2020-10-26,34022.298168073205,329,Urgent,2020-11-23,Inconclusive,6590,292,4,17,,,,DISCHARGED -6591,2021-02-23,44957.289633932174,169,Elective,2021-03-19,Abnormal,6591,125,4,8,,,,DISCHARGED -6592,2020-03-17,43048.163649792135,208,Elective,2020-04-12,Inconclusive,6592,295,2,21,,,,DISCHARGED -6593,2019-02-13,26576.76628783185,414,Urgent,2019-03-10,Abnormal,6593,71,2,17,,,,DISCHARGED -6594,2020-06-04,9152.50786332433,241,Elective,2020-06-06,Inconclusive,6594,295,0,16,,,,DISCHARGED -6594,2023-05-16,20103.47591684117,155,Urgent,2023-05-20,Inconclusive,9326,235,4,10,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -6595,2023-10-09,24937.61996852029,274,Emergency,,Inconclusive,6595,55,4,0,,,,OPEN -6596,2020-10-17,29039.929192462605,237,Emergency,2020-11-02,Abnormal,6596,406,2,16,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6597,2022-08-17,11023.592023568868,349,Emergency,2022-08-21,Normal,6597,359,3,3,"Describes a sudden, sharp pain in the shoulder.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,M79.609 - Pain in unspecified limb,DISCHARGED -6598,2023-06-14,10703.41961658105,362,Elective,,Abnormal,6598,394,3,3,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -6599,2022-07-03,16106.94367703098,268,Urgent,2022-08-02,Inconclusive,6599,109,0,13,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),DISCHARGED -6600,2018-12-26,2024.8128271470955,173,Emergency,2019-01-21,Normal,6600,191,3,27,,,,DISCHARGED -6601,2021-09-27,29203.22330675468,319,Urgent,2021-10-05,Abnormal,6601,391,3,8,,,,DISCHARGED -6601,2021-09-25,36358.13618181468,466,Elective,2021-10-03,Abnormal,7028,92,3,12,,,,DISCHARGED -6602,2022-09-11,16970.758233044584,253,Urgent,2022-09-24,Abnormal,6602,349,1,27,,,,DISCHARGED -6603,2023-05-02,30199.60841912832,212,Urgent,2023-05-13,Normal,6603,55,0,27,,,,DISCHARGED -6604,2023-08-21,16609.266625408978,386,Urgent,2023-08-22,Inconclusive,6604,59,2,15,,,,DISCHARGED -6606,2020-12-05,29735.58711549783,386,Elective,2020-12-21,Abnormal,6606,137,3,0,,,,DISCHARGED -6607,2023-05-15,46846.27531714412,211,Elective,2023-06-05,Normal,6607,38,1,2,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -6608,2019-10-03,8185.924507537746,351,Elective,2019-10-14,Inconclusive,6608,27,3,18,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -6610,2023-06-04,41800.11373715216,494,Emergency,2023-06-09,Abnormal,6610,48,1,7,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -6611,2019-04-01,15583.457574642316,499,Urgent,2019-04-15,Normal,6611,419,0,17,,,,DISCHARGED -6612,2020-08-30,12432.654015868047,355,Emergency,2020-08-31,Normal,6612,124,3,5,,,,DISCHARGED -6613,2019-04-16,31646.438830694795,241,Emergency,2019-05-06,Abnormal,6613,12,1,26,,,,DISCHARGED -6614,2020-11-18,26371.461895141678,224,Emergency,2020-12-11,Normal,6614,479,4,19,,,,DISCHARGED -6615,2022-02-10,35122.17191646656,333,Elective,2022-02-14,Normal,6615,35,4,28,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -6617,2022-06-26,5934.634779140558,137,Urgent,2022-06-28,Normal,6617,100,1,25,,,,DISCHARGED -6618,2021-08-26,32974.01568924844,101,Emergency,2021-08-30,Normal,6618,281,3,5,,,,DISCHARGED -6619,2021-12-08,47678.16360697733,476,Emergency,2021-12-28,Inconclusive,6619,85,3,28,,,,DISCHARGED -6620,2022-10-18,42140.96938429981,458,Urgent,2022-11-03,Normal,6620,3,0,4,,,,DISCHARGED -6621,2019-07-29,19324.83321065109,482,Emergency,2019-07-30,Abnormal,6621,222,0,11,,,,DISCHARGED -6622,2020-06-04,26232.216458243856,337,Emergency,2020-06-07,Normal,6622,337,2,8,,,,DISCHARGED -6623,2021-07-17,7069.395437945416,376,Elective,2021-08-07,Normal,6623,447,0,8,,,,DISCHARGED -6624,2021-10-24,17316.980219845973,407,Emergency,2021-11-14,Inconclusive,6624,165,3,16,,,,DISCHARGED -6625,2023-02-16,37631.73449268179,260,Urgent,,Abnormal,6625,382,2,18,,,,OPEN -6626,2021-10-23,43604.154287424295,460,Elective,2021-11-12,Normal,6626,343,0,16,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -6627,2022-11-17,8836.849299455425,138,Emergency,2022-12-15,Inconclusive,6627,382,1,21,,,,DISCHARGED -6628,2022-03-13,12194.934656706071,353,Urgent,2022-03-27,Normal,6628,375,4,15,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6629,2023-08-10,4261.993956501122,156,Emergency,,Normal,6629,470,0,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,OPEN -6630,2020-12-07,18610.67393743832,181,Emergency,2020-12-19,Normal,6630,277,0,2,,,,DISCHARGED -6631,2022-03-30,2279.8670176115047,127,Emergency,2022-04-20,Normal,6631,129,1,13,,,,DISCHARGED -6632,2023-03-25,42120.73020131739,300,Elective,2023-04-22,Inconclusive,6632,30,3,16,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -6633,2021-01-23,7877.192497358189,431,Elective,2021-02-02,Normal,6633,374,1,21,,,,DISCHARGED -6634,2020-11-16,10441.187850098246,434,Emergency,2020-11-18,Abnormal,6634,10,0,15,,,,DISCHARGED -6635,2021-06-18,23211.02340624118,442,Urgent,2021-07-14,Abnormal,6635,475,3,20,,,,DISCHARGED -6637,2023-04-30,31989.563754005798,269,Elective,,Normal,6637,301,2,11,"Chief complaint is a persistent, pulsating headache.",Assess for migraines or tension headaches; prescribe pain relievers and consider preventive medications.,"G44.209 - Tension-type headache, unspecified, not intractable",OPEN -6638,2020-01-30,12737.149025052233,439,Elective,2020-02-15,Abnormal,6638,95,0,27,Persistent dry cough,"Cough suppressants, hydration, and investigation for potential respiratory conditions. Monitor for improvement and address any underlying issues.",R05 - Cough,DISCHARGED -6639,2023-02-21,12709.075514934071,431,Emergency,2023-03-05,Normal,6639,189,1,23,,,,DISCHARGED -6641,2020-04-27,37549.255820193415,285,Emergency,2020-05-26,Inconclusive,6641,452,2,29,,,,DISCHARGED -6642,2023-01-16,43857.57648295956,492,Urgent,,Inconclusive,6642,191,4,1,,,,OPEN -6643,2022-05-17,5453.882929190576,128,Urgent,2022-06-09,Abnormal,6643,485,2,7,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,DISCHARGED -6644,2022-12-19,48050.609947525205,217,Emergency,2023-01-13,Inconclusive,6644,265,1,11,,,,DISCHARGED -6645,2018-11-19,27229.912943286738,301,Urgent,2018-11-25,Normal,6645,423,2,20,"Complains of recurrent, severe stomach cramps.",Investigate possible gastrointestinal issues and recommend dietary changes or medications.,K30 - Functional dyspepsia,DISCHARGED -6646,2020-06-19,24487.848455260464,459,Emergency,2020-07-03,Normal,6646,127,1,15,,,,DISCHARGED -6647,2023-09-16,21571.40538230428,334,Urgent,2023-10-15,Abnormal,6647,237,0,7,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,DISCHARGED -6648,2022-12-29,17542.226992311284,400,Urgent,2023-01-27,Abnormal,6648,407,3,27,,,,DISCHARGED -6649,2022-11-09,31234.537627924605,194,Urgent,2022-11-30,Abnormal,6649,354,4,15,,,,DISCHARGED -6650,2019-08-18,16001.884800259271,361,Urgent,2019-08-31,Inconclusive,6650,427,3,9,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -6651,2019-04-12,34983.98196849732,380,Urgent,2019-05-05,Inconclusive,6651,111,3,19,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -6652,2021-07-04,21317.912733759804,419,Emergency,2021-07-23,Abnormal,6652,315,3,14,,,,DISCHARGED -6653,2021-12-04,19905.46212920566,453,Urgent,2021-12-30,Abnormal,6653,445,1,3,,,,DISCHARGED -6654,2019-07-28,45148.610409885136,468,Elective,2019-07-30,Inconclusive,6654,342,1,25,,,,DISCHARGED -6655,2020-08-14,39915.43238922771,182,Emergency,2020-09-02,Inconclusive,6655,144,4,14,,,,DISCHARGED -6656,2022-09-10,39731.59519659988,279,Urgent,2022-10-01,Abnormal,6656,64,1,3,,,,DISCHARGED -6657,2021-10-17,34316.53293777999,304,Emergency,2021-10-21,Inconclusive,6657,246,1,29,,,,DISCHARGED -6658,2020-08-03,36587.26130657394,398,Urgent,2020-08-07,Abnormal,6658,222,1,10,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -6659,2023-07-27,29100.86060251551,138,Elective,,Normal,6659,478,1,5,,,,OPEN -6660,2020-05-29,20062.201482819277,239,Urgent,2020-06-28,Abnormal,6660,489,0,3,,,,DISCHARGED -6661,2019-08-13,8849.129967443303,300,Elective,2019-08-20,Inconclusive,6661,312,4,8,,,,DISCHARGED -6662,2021-04-22,41734.13586213612,122,Emergency,2021-05-19,Inconclusive,6662,438,1,8,Pain in the lower back and hips,"Perform imaging tests, prescribe pain relievers, recommend physical therapy, and explore lifestyle modifications.","M54.9 - Dorsalgia, unspecified",DISCHARGED -6664,2019-07-25,26645.33840257226,265,Elective,2019-07-30,Normal,6664,105,4,2,,,,DISCHARGED -6665,2021-08-22,45729.3716678944,411,Elective,2021-09-05,Inconclusive,6665,180,2,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6666,2021-08-11,20760.247031449388,232,Urgent,2021-08-16,Inconclusive,6666,183,0,27,,,,DISCHARGED -6667,2018-12-17,43425.79603214072,489,Urgent,2018-12-30,Inconclusive,6667,225,1,4,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -6668,2021-10-30,8091.971315786723,439,Elective,2021-11-22,Normal,6668,264,0,14,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6669,2020-01-13,48390.96913421875,491,Elective,2020-01-25,Normal,6669,277,0,27,,,,DISCHARGED -6669,2021-10-23,11525.16141640984,248,Elective,2021-11-15,Inconclusive,7172,396,2,8,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -6669,2020-05-03,13788.72195528592,219,Elective,2020-06-01,Abnormal,9911,88,4,1,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -6671,2021-05-18,31590.4900008648,344,Urgent,2021-06-05,Inconclusive,6671,175,0,2,,,,DISCHARGED -6672,2022-08-05,9203.703947789943,165,Urgent,2022-08-31,Inconclusive,6672,17,3,25,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -6673,2022-11-30,17473.093354464032,282,Emergency,2022-12-04,Normal,6673,370,2,20,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -6674,2020-08-07,31116.180508175567,429,Urgent,2020-08-14,Normal,6674,459,3,11,,,,DISCHARGED -6675,2021-11-15,30692.210433559954,136,Urgent,2021-11-27,Abnormal,6675,423,2,15,,,,DISCHARGED -6676,2023-06-14,4888.096416293663,262,Elective,2023-07-06,Abnormal,6676,400,3,4,,,,DISCHARGED -6677,2023-06-14,13566.573581326702,230,Elective,2023-06-20,Inconclusive,6677,398,3,9,,,,DISCHARGED -6678,2021-11-06,9812.976468835102,279,Emergency,2021-11-16,Normal,6678,105,0,27,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -6679,2022-02-24,42041.831748304,451,Urgent,2022-03-21,Inconclusive,6679,270,0,14,,,,DISCHARGED -6680,2019-04-15,17845.61428582277,289,Elective,2019-05-02,Abnormal,6680,462,2,13,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6681,2020-06-19,6607.440035325331,451,Urgent,2020-07-17,Inconclusive,6681,318,4,13,,,,DISCHARGED -6681,2019-03-04,36616.3341896765,286,Emergency,2019-03-09,Normal,7087,166,0,22,,,,DISCHARGED -6682,2022-10-05,46307.90735658391,449,Emergency,2022-10-11,Abnormal,6682,12,0,12,,,,DISCHARGED -6683,2020-03-09,14997.264071857058,471,Elective,2020-03-17,Inconclusive,6683,336,1,15,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6684,2020-06-16,34922.53068334383,262,Emergency,2020-07-08,Normal,6684,31,0,29,,,,DISCHARGED -6685,2022-03-15,41051.61438023765,198,Urgent,2022-03-16,Abnormal,6685,392,4,7,,,,DISCHARGED -6686,2019-08-23,27317.565132086816,144,Emergency,2019-09-16,Normal,6686,39,1,7,,,,DISCHARGED -6687,2023-06-26,39942.01391426238,142,Urgent,2023-06-27,Normal,6687,147,3,29,,,,DISCHARGED -6688,2020-11-20,34388.85149958681,233,Urgent,2020-11-22,Abnormal,6688,217,3,16,Frequent abdominal pain,"Evaluation by a physician, imaging studies, and possible dietary changes",R10.9 - Unspecified abdominal pain,DISCHARGED -6689,2021-07-22,43552.257548488335,292,Elective,2021-08-03,Inconclusive,6689,218,1,29,,,,DISCHARGED -6690,2021-09-06,12929.735904777008,321,Elective,2021-09-29,Inconclusive,6690,468,1,16,,,,DISCHARGED -6691,2020-10-19,12102.912631949252,445,Urgent,2020-10-30,Normal,6691,81,1,2,,,,DISCHARGED -6692,2019-11-03,26162.20324817585,203,Emergency,2019-11-09,Inconclusive,6692,332,2,0,,,,DISCHARGED -6693,2019-08-31,25558.31376305041,395,Emergency,2019-09-19,Normal,6693,207,4,16,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -6694,2021-09-09,21775.055716108727,275,Emergency,2021-09-10,Abnormal,6694,200,4,25,,,,DISCHARGED -6695,2021-12-08,10833.651985964583,117,Elective,2022-01-05,Abnormal,6695,446,3,23,,,,DISCHARGED -6696,2021-06-09,31895.507606318053,333,Urgent,2021-06-24,Inconclusive,6696,331,3,15,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -6697,2020-08-19,38136.54060508222,218,Elective,2020-08-25,Abnormal,6697,427,3,16,,,,DISCHARGED -6698,2020-03-09,2809.921442528688,256,Emergency,2020-03-31,Abnormal,6698,37,0,24,,,,DISCHARGED -6699,2021-12-27,2894.396184118178,483,Emergency,2022-01-20,Abnormal,6699,210,3,1,,,,DISCHARGED -6701,2019-03-18,39136.08803197802,470,Elective,2019-03-21,Abnormal,6701,443,1,24,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -6702,2021-10-02,31687.996097646643,161,Elective,2021-10-04,Inconclusive,6702,326,3,13,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6703,2019-06-06,31589.81782293324,164,Urgent,2019-06-29,Inconclusive,6703,248,1,6,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -6704,2023-01-20,24604.88403923852,336,Elective,,Abnormal,6704,226,2,24,,,,OPEN -6705,2022-01-24,35481.76144805839,224,Emergency,2022-02-11,Normal,6705,47,0,18,,,,DISCHARGED -6706,2019-12-24,7251.787459353241,192,Elective,2020-01-11,Inconclusive,6706,17,0,0,,,,DISCHARGED -6707,2020-08-23,16860.15690378194,314,Emergency,2020-08-26,Inconclusive,6707,399,4,16,,,,DISCHARGED -6708,2019-07-12,40137.37554459394,131,Urgent,2019-07-26,Inconclusive,6708,438,2,26,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -6709,2020-02-15,36228.6105527836,108,Elective,2020-03-08,Abnormal,6709,294,1,9,,,,DISCHARGED -6709,2023-04-20,26036.911033581742,474,Emergency,2023-05-04,Inconclusive,8514,195,2,5,,,,DISCHARGED -6710,2019-01-11,22235.937443538674,326,Elective,2019-01-31,Normal,6710,186,0,6,,,,DISCHARGED -6711,2021-01-07,10686.772413413302,185,Urgent,2021-01-08,Abnormal,6711,344,1,24,,,,DISCHARGED -6712,2022-12-15,26243.822918569495,237,Urgent,2022-12-17,Abnormal,6712,223,2,5,,,,DISCHARGED -6713,2023-10-15,41129.046340795176,377,Emergency,2023-11-13,Abnormal,6713,317,0,4,Excessive bloating after meals,"Gastroenterological evaluation, dietary changes, and possible medication",K30 - Functional dyspepsia,DISCHARGED -6714,2021-11-06,10895.017983367385,410,Emergency,2021-11-11,Normal,6714,487,1,29,,,,DISCHARGED -6715,2020-03-13,36417.10103071475,183,Urgent,2020-03-31,Normal,6715,396,1,1,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6715,2021-02-15,23966.741174988038,477,Emergency,2021-02-23,Abnormal,9853,364,0,17,,,,DISCHARGED -6716,2020-05-13,13242.635557259016,139,Emergency,2020-05-20,Abnormal,6716,336,1,23,,,,DISCHARGED -6716,2021-10-16,17953.42610025,402,Urgent,2021-11-03,Inconclusive,9539,496,0,16,,,,DISCHARGED -6717,2022-09-04,5530.717638599587,461,Emergency,2022-09-10,Normal,6717,228,3,23,,,,DISCHARGED -6718,2022-09-14,14219.481427041805,393,Emergency,2022-10-09,Normal,6718,389,3,26,,,,DISCHARGED -6719,2020-08-09,47827.56024301192,429,Emergency,2020-08-15,Inconclusive,6719,466,1,25,,,,DISCHARGED -6720,2023-05-13,10898.556311882634,407,Emergency,2023-06-03,Abnormal,6720,76,1,26,,,,DISCHARGED -6721,2018-11-19,18076.80553372419,269,Urgent,2018-12-01,Inconclusive,6721,187,0,22,,,,DISCHARGED -6723,2019-06-11,11503.186814887396,368,Urgent,2019-07-04,Abnormal,6723,345,1,6,,,,DISCHARGED -6724,2021-12-22,29304.21466771696,437,Urgent,2022-01-10,Abnormal,6724,269,4,20,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -6725,2020-07-07,9396.348495937347,135,Urgent,2020-07-10,Inconclusive,6725,94,3,18,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -6726,2019-09-05,21974.747036402245,474,Urgent,2019-09-09,Inconclusive,6726,309,1,6,,,,DISCHARGED -6727,2020-08-16,17547.719595956114,268,Emergency,2020-08-24,Inconclusive,6727,131,1,22,Nausea and vomiting after meals,"Assessment for gastrointestinal issues, dietary changes, and anti-nausea medications.",K30 - Functional dyspepsia,DISCHARGED -6728,2019-03-10,39080.0862725537,111,Elective,2019-03-21,Normal,6728,38,2,6,,,,DISCHARGED -6729,2022-03-03,25854.2731122455,161,Emergency,2022-03-18,Inconclusive,6729,71,1,15,,,,DISCHARGED -6730,2019-06-16,48074.11973742916,233,Elective,2019-07-03,Inconclusive,6730,280,4,11,,,,DISCHARGED -6731,2021-04-12,38189.75473668005,145,Emergency,2021-04-29,Normal,6731,332,3,14,,,,DISCHARGED -6732,2022-02-26,5338.401611256891,407,Elective,2022-03-25,Inconclusive,6732,159,2,14,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6733,2021-07-08,17663.70429305998,355,Elective,2021-07-22,Inconclusive,6733,186,0,10,,,,DISCHARGED -6734,2021-01-25,21538.449231231123,376,Urgent,2021-02-24,Inconclusive,6734,485,0,1,,,,DISCHARGED -6735,2019-02-11,30998.720689258167,151,Urgent,2019-02-20,Abnormal,6735,190,3,2,,,,DISCHARGED -6736,2020-04-22,37652.05616652651,499,Urgent,2020-05-17,Normal,6736,421,0,18,,,,DISCHARGED -6738,2021-06-24,41225.23507086748,249,Emergency,2021-06-26,Abnormal,6738,119,4,19,,,,DISCHARGED -6739,2020-05-25,35733.14794121401,175,Emergency,2020-06-02,Normal,6739,219,1,27,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6740,2022-10-21,26383.9861687766,139,Urgent,2022-11-14,Normal,6740,52,3,24,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -6741,2022-10-07,32760.62008856683,214,Emergency,2022-10-18,Normal,6741,221,2,25,,,,DISCHARGED -6743,2022-05-30,19702.908359676472,117,Emergency,2022-06-01,Inconclusive,6743,450,1,14,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -6744,2022-04-16,3958.287461418514,389,Elective,2022-05-05,Abnormal,6744,411,0,15,,,,DISCHARGED -6745,2022-12-26,23387.18652094939,389,Emergency,2023-01-14,Abnormal,6745,130,0,0,,,,DISCHARGED -6745,2020-11-23,38807.74978960813,348,Emergency,2020-12-02,Abnormal,9541,236,2,14,,,,DISCHARGED -6746,2020-01-28,1665.8450468960314,158,Urgent,2020-02-15,Abnormal,6746,245,4,11,,,,DISCHARGED -6747,2021-05-20,6281.270091872381,127,Elective,2021-05-26,Inconclusive,6747,225,2,6,,,,DISCHARGED -6748,2021-11-26,10801.52640736577,140,Emergency,2021-11-29,Abnormal,6748,207,3,6,,,,DISCHARGED -6749,2021-03-03,23153.23633536031,254,Urgent,2021-03-23,Inconclusive,6749,405,2,10,Allergies,"Allergen avoidance, antihistamines, and, if necessary, allergy shots (immunotherapy). Further testing to identify specific allergens. Regular follow-up to assess allergy symptoms and adjust treatment.","T78.40 - Allergy, unspecified",DISCHARGED -6750,2022-06-14,13167.279299986343,465,Urgent,2022-06-21,Normal,6750,95,0,19,,,,DISCHARGED -6752,2020-04-04,42927.09861722169,134,Emergency,2020-04-29,Abnormal,6752,421,4,28,,,,DISCHARGED -6753,2020-10-16,47127.78976187629,111,Elective,2020-11-01,Abnormal,6753,199,4,10,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -6754,2020-10-11,5688.87599328374,359,Emergency,2020-10-18,Normal,6754,246,2,16,,,,DISCHARGED -6755,2022-01-01,21681.11327240588,119,Elective,2022-01-20,Abnormal,6755,71,3,2,,,,DISCHARGED -6756,2018-12-07,5067.668484927059,180,Elective,2018-12-27,Inconclusive,6756,317,0,15,,,,DISCHARGED -6758,2020-08-09,34412.56846460215,491,Urgent,2020-08-18,Normal,6758,184,1,4,,,,DISCHARGED -6759,2020-09-13,39798.2634460689,219,Emergency,2020-09-15,Inconclusive,6759,5,4,27,,,,DISCHARGED -6760,2019-03-02,46762.11167563197,115,Emergency,2019-03-14,Normal,6760,205,2,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -6761,2020-11-10,15084.550448952972,301,Emergency,2020-12-08,Normal,6761,31,3,22,,,,DISCHARGED -6762,2023-02-12,32089.721345788374,384,Urgent,,Abnormal,6762,98,3,29,,,,OPEN -6763,2019-03-15,16579.85894640888,263,Urgent,2019-03-28,Abnormal,6763,393,0,25,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -6763,2019-10-25,18993.746786159045,126,Emergency,2019-11-22,Abnormal,9572,386,4,25,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6764,2023-03-11,4082.719248015938,377,Emergency,2023-04-06,Abnormal,6764,255,0,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -6764,2022-01-22,39712.48183752979,370,Urgent,2022-02-10,Inconclusive,8254,186,1,27,,,,DISCHARGED -6765,2022-11-09,9972.098326065843,483,Emergency,2022-11-13,Abnormal,6765,75,1,9,,,,DISCHARGED -6766,2021-05-08,22033.469341008127,277,Elective,2021-05-30,Normal,6766,176,1,4,,,,DISCHARGED -6767,2020-12-18,29978.472948887087,430,Urgent,2020-12-26,Inconclusive,6767,314,3,14,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -6768,2021-05-21,8885.902239498577,193,Elective,2021-06-07,Abnormal,6768,286,4,11,,,,DISCHARGED -6769,2020-04-28,18888.90688612863,249,Elective,2020-04-30,Inconclusive,6769,348,0,9,,,,DISCHARGED -6770,2023-01-19,8307.850650717448,187,Emergency,2023-02-16,Normal,6770,254,0,21,,,,DISCHARGED -6771,2022-10-04,49891.4023850776,498,Emergency,2022-11-03,Normal,6771,324,1,16,,,,DISCHARGED -6772,2021-04-08,28388.19549054882,247,Urgent,2021-04-21,Normal,6772,189,4,19,,,,DISCHARGED -6774,2020-08-01,42260.23384085925,111,Urgent,2020-08-15,Inconclusive,6774,307,4,19,,,,DISCHARGED -6774,2019-01-15,37917.90879953535,413,Emergency,2019-01-21,Normal,6829,344,2,10,,,,DISCHARGED -6776,2019-05-17,23091.707904819024,453,Emergency,2019-06-08,Abnormal,6776,126,4,7,,,,DISCHARGED -6777,2023-08-08,23423.81058518871,423,Emergency,2023-08-10,Normal,6777,424,4,14,,,,DISCHARGED -6778,2020-06-15,29638.165586676943,200,Urgent,2020-07-10,Abnormal,6778,286,0,1,,,,DISCHARGED -6779,2021-03-04,3611.919798361324,289,Urgent,2021-03-21,Abnormal,6779,253,4,16,,,,DISCHARGED -6780,2021-12-18,36805.26902320039,358,Emergency,2022-01-06,Normal,6780,212,4,22,,,,DISCHARGED -6781,2021-02-23,27536.81055158076,191,Emergency,2021-03-16,Inconclusive,6781,249,0,5,,,,DISCHARGED -6782,2022-02-20,13848.023110436465,179,Urgent,2022-02-25,Inconclusive,6782,83,4,20,,,,DISCHARGED -6784,2022-03-17,49283.835528546144,193,Urgent,2022-04-10,Normal,6784,486,0,27,,,,DISCHARGED -6785,2019-12-28,21661.62726686921,394,Elective,2020-01-13,Normal,6785,382,2,12,,,,DISCHARGED -6786,2021-08-06,37768.322790260034,339,Elective,2021-08-21,Inconclusive,6786,405,3,28,,,,DISCHARGED -6787,2019-02-16,36635.16527108637,376,Urgent,2019-02-27,Normal,6787,387,0,28,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -6788,2022-03-01,1265.5501148893609,169,Emergency,2022-03-22,Normal,6788,12,0,7,,,,DISCHARGED -6788,2020-09-15,5808.278937785468,360,Urgent,2020-10-08,Abnormal,9675,44,4,10,Recurrent sinus infections and facial pain,"Sinus imaging studies, assessment for allergies or structural issues, and prescription of antibiotics or other appropriate treatments.","J32.9 - Chronic sinusitis, unspecified",DISCHARGED -6789,2022-06-14,25986.222968787864,424,Urgent,2022-06-15,Inconclusive,6789,126,0,14,,,,DISCHARGED -6790,2021-02-16,11138.59870069578,300,Emergency,2021-03-14,Inconclusive,6790,425,1,12,Constipation,"Dietary changes (increased fiber intake, hydration), laxatives, and addressing underlying causes such as irritable bowel syndrome or medications. Regular follow-up to assess bowel function and adjust treatment.",K58 - Irritable bowel syndrome,DISCHARGED -6792,2020-12-11,10724.794197778696,193,Urgent,2020-12-19,Normal,6792,113,1,17,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -6793,2022-10-05,6034.367887122445,106,Emergency,2022-10-07,Inconclusive,6793,432,2,17,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -6794,2021-08-12,34688.95857647393,214,Emergency,2021-09-10,Abnormal,6794,275,0,24,,,,DISCHARGED -6795,2021-12-08,47172.02721470661,468,Urgent,2021-12-16,Abnormal,6795,499,4,16,,,,DISCHARGED -6796,2019-08-20,15793.149417861488,448,Elective,2019-09-16,Abnormal,6796,204,4,21,,,,DISCHARGED -6797,2021-07-17,23228.220638015995,338,Urgent,2021-08-09,Normal,6797,336,3,12,,,,DISCHARGED -6798,2021-04-21,15489.840599610798,240,Emergency,2021-05-16,Inconclusive,6798,437,2,28,,,,DISCHARGED -6799,2019-10-05,23851.84821955305,488,Elective,2019-10-18,Abnormal,6799,419,4,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6800,2022-06-28,49134.45183489225,305,Emergency,2022-07-21,Abnormal,6800,480,3,28,,,,DISCHARGED -6801,2020-04-03,20640.491350576103,450,Emergency,2020-04-25,Normal,6801,384,4,20,,,,DISCHARGED -6802,2022-09-23,26922.832193811475,451,Urgent,2022-10-11,Inconclusive,6802,398,3,23,,,,DISCHARGED -6803,2019-06-24,9557.985592313362,347,Emergency,2019-07-13,Normal,6803,460,1,6,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -6804,2021-09-14,33731.49187331864,444,Urgent,2021-09-28,Inconclusive,6804,272,1,28,,,,DISCHARGED -6805,2019-05-18,5905.255937904605,105,Elective,2019-06-14,Normal,6805,407,4,11,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -6806,2021-06-12,37833.68041213759,468,Emergency,2021-07-04,Abnormal,6806,57,2,3,,,,DISCHARGED -6807,2021-04-11,37240.11656114114,133,Urgent,2021-04-20,Normal,6807,327,0,23,,,,DISCHARGED -6808,2023-09-30,19847.893217887427,364,Elective,2023-10-21,Inconclusive,6808,497,2,26,,,,DISCHARGED -6809,2019-06-25,41278.45968872735,278,Urgent,2019-07-19,Normal,6809,218,2,26,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -6810,2023-10-15,11490.13540107364,290,Urgent,,Normal,6810,108,0,25,,,,OPEN -6811,2023-09-01,40621.44835822586,242,Emergency,,Abnormal,6811,278,1,10,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -6812,2023-03-15,8875.007087375528,444,Urgent,2023-04-09,Abnormal,6812,173,1,13,,,,DISCHARGED -6813,2023-10-23,38274.79803427497,425,Urgent,2023-11-05,Inconclusive,6813,327,0,17,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -6814,2023-10-04,49554.98005095694,450,Urgent,,Abnormal,6814,263,3,6,,,,OPEN -6815,2021-11-02,46067.11710227902,496,Emergency,2021-12-02,Abnormal,6815,314,2,4,,,,DISCHARGED -6817,2020-06-13,12098.951932052512,399,Urgent,2020-07-08,Normal,6817,473,4,15,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,DISCHARGED -6818,2023-08-13,3273.3393055642578,444,Elective,2023-09-06,Abnormal,6818,110,1,10,,,,DISCHARGED -6819,2022-10-01,25248.056598320552,388,Elective,2022-10-30,Inconclusive,6819,186,4,21,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6820,2019-05-27,27535.76280641123,425,Urgent,2019-06-10,Inconclusive,6820,268,0,2,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -6821,2019-08-06,33352.49130228466,277,Emergency,2019-08-09,Normal,6821,422,4,15,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -6822,2023-10-20,46919.172747968114,443,Elective,2023-10-27,Abnormal,6822,228,4,10,,,,DISCHARGED -6823,2020-03-25,49332.83843060683,456,Urgent,2020-03-27,Normal,6823,496,2,9,,,,DISCHARGED -6824,2023-06-29,31941.383308484303,353,Emergency,2023-07-28,Normal,6824,155,0,22,,,,DISCHARGED -6825,2020-01-22,39259.94568729573,456,Elective,2020-01-31,Abnormal,6825,472,4,22,,,,DISCHARGED -6826,2021-10-31,42923.98717991964,337,Elective,2021-11-28,Abnormal,6826,188,1,1,,,,DISCHARGED -6827,2023-08-16,22258.13357326732,281,Emergency,,Inconclusive,6827,271,0,15,,,,OPEN -6828,2022-12-18,39894.473851939285,215,Emergency,2023-01-06,Inconclusive,6828,374,1,16,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -6830,2022-02-23,36561.052219648,296,Urgent,2022-03-02,Inconclusive,6830,1,3,9,,,,DISCHARGED -6831,2019-08-21,3709.635192406705,469,Elective,2019-09-11,Abnormal,6831,245,4,17,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -6832,2021-03-21,44195.71446070025,153,Elective,2021-03-22,Abnormal,6832,209,0,11,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -6833,2019-10-28,3871.021510012909,442,Emergency,2019-11-02,Normal,6833,400,1,7,,,,DISCHARGED -6834,2018-12-13,15330.377847638065,495,Elective,2019-01-07,Inconclusive,6834,285,4,26,,,,DISCHARGED -6835,2022-05-14,3542.558009010238,450,Elective,2022-05-30,Normal,6835,358,2,25,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6836,2020-09-03,11639.12315736314,457,Urgent,2020-09-25,Normal,6836,12,1,2,,,,DISCHARGED -6836,2021-06-12,30105.37812991968,192,Elective,2021-06-26,Inconclusive,9689,95,1,26,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -6837,2020-06-17,12222.118534809171,305,Emergency,2020-07-13,Inconclusive,6837,497,3,19,,,,DISCHARGED -6838,2023-06-28,34796.30106044404,497,Emergency,,Normal,6838,220,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",OPEN -6839,2021-12-15,38823.5029365312,115,Elective,2021-12-17,Abnormal,6839,237,3,2,,,,DISCHARGED -6839,2019-06-29,13336.24486339428,466,Emergency,2019-07-04,Normal,9640,93,2,5,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6840,2021-04-11,3927.2914703935953,226,Elective,2021-04-21,Inconclusive,6840,337,1,1,,,,DISCHARGED -6841,2022-03-19,19799.89570417404,486,Elective,2022-04-18,Normal,6841,268,3,2,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -6842,2022-11-08,20543.31824474834,361,Emergency,2022-11-13,Inconclusive,6842,170,4,16,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,DISCHARGED -6843,2023-09-19,43066.20041767901,419,Elective,,Abnormal,6843,468,2,8,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",OPEN -6844,2021-02-04,15886.513701909227,485,Emergency,2021-03-03,Normal,6844,93,1,3,,,,DISCHARGED -6845,2021-08-25,24478.59005983633,443,Urgent,2021-08-30,Normal,6845,148,0,21,,,,DISCHARGED -6846,2020-06-21,31928.77706783889,254,Elective,2020-07-03,Inconclusive,6846,111,2,22,,,,DISCHARGED -6847,2019-12-29,40522.767502145696,493,Emergency,2020-01-09,Abnormal,6847,54,2,1,,,,DISCHARGED -6848,2023-05-01,40028.13037664336,180,Elective,2023-05-11,Abnormal,6848,336,4,23,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -6849,2020-11-26,11106.76612539273,218,Urgent,2020-12-13,Inconclusive,6849,423,2,27,,,,DISCHARGED -6850,2019-07-01,41841.76114562413,257,Urgent,2019-07-13,Normal,6850,466,2,8,,,,DISCHARGED -6851,2019-12-15,49608.493204814935,460,Emergency,2020-01-14,Abnormal,6851,115,4,13,,,,DISCHARGED -6852,2019-10-12,38258.90955394836,153,Elective,2019-10-24,Normal,6852,142,4,25,,,,DISCHARGED -6853,2023-02-26,14062.51605492558,339,Emergency,2023-03-20,Normal,6853,200,3,10,,,,DISCHARGED -6854,2022-01-29,30532.64595498513,332,Emergency,2022-02-20,Inconclusive,6854,179,1,1,,,,DISCHARGED -6855,2021-03-05,29017.230643956736,356,Emergency,2021-03-08,Normal,6855,201,1,20,,,,DISCHARGED -6856,2020-06-17,41121.71152928503,366,Elective,2020-06-27,Inconclusive,6856,363,3,1,,,,DISCHARGED -6857,2021-06-21,18036.6056891088,324,Urgent,2021-07-18,Inconclusive,6857,478,1,26,,,,DISCHARGED -6858,2019-10-11,30917.45181530212,109,Urgent,2019-10-15,Normal,6858,52,2,4,,,,DISCHARGED -6860,2021-10-17,2586.4473596958296,388,Urgent,2021-10-25,Abnormal,6860,470,3,6,,,,DISCHARGED -6861,2021-12-19,36048.72835013831,174,Urgent,2021-12-25,Abnormal,6861,383,3,21,,,,DISCHARGED -6862,2020-02-25,37635.6190387398,359,Urgent,2020-03-13,Normal,6862,179,1,3,,,,DISCHARGED -6863,2022-01-07,48346.26011856065,171,Emergency,2022-01-30,Inconclusive,6863,413,0,13,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -6864,2019-08-28,12912.292134373329,140,Elective,2019-08-29,Inconclusive,6864,416,1,1,,,,DISCHARGED -6865,2022-08-03,26982.51766238641,114,Urgent,2022-08-17,Inconclusive,6865,312,0,22,,,,DISCHARGED -6866,2020-03-10,7404.2028717968515,209,Emergency,2020-04-01,Abnormal,6866,307,3,11,,,,DISCHARGED -6867,2022-04-07,47069.83926797268,183,Urgent,2022-04-09,Abnormal,6867,136,0,9,,,,DISCHARGED -6868,2020-11-10,36057.88192007509,439,Urgent,2020-11-12,Normal,6868,181,2,24,,,,DISCHARGED -6869,2020-07-21,18013.974861642266,441,Urgent,2020-08-03,Normal,6869,366,4,0,,,,DISCHARGED -6870,2019-07-06,21666.55289525704,336,Emergency,2019-07-27,Inconclusive,6870,0,0,18,Reports difficulty in moving the neck and shoulder.,Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"G47.00 - Insomnia, unspecified",DISCHARGED -6872,2022-12-14,20504.421867831286,195,Emergency,2023-01-06,Inconclusive,6872,43,4,22,,,,DISCHARGED -6873,2021-10-06,24400.941979654413,209,Elective,2021-11-04,Inconclusive,6873,226,2,15,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -6874,2021-08-23,32721.63505836967,384,Emergency,2021-09-04,Normal,6874,330,4,14,,,,DISCHARGED -6874,2020-02-21,18055.322911241845,217,Urgent,2020-03-21,Abnormal,9000,97,2,13,,,,DISCHARGED -6875,2021-10-02,3678.787753757528,457,Elective,2021-10-10,Inconclusive,6875,207,4,8,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6876,2020-12-21,49656.78745179476,466,Urgent,2020-12-29,Inconclusive,6876,264,4,28,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -6877,2021-04-12,17809.273882068108,137,Elective,2021-04-14,Inconclusive,6877,287,1,20,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6878,2023-08-19,5220.074018843153,285,Emergency,,Abnormal,6878,270,0,22,,,,OPEN -6879,2021-08-29,17367.006768132334,465,Emergency,2021-09-13,Normal,6879,139,4,14,,,,DISCHARGED -6880,2019-06-01,8344.872038158588,459,Elective,2019-06-04,Inconclusive,6880,480,3,25,,,,DISCHARGED -6881,2020-12-16,24081.170221704542,109,Elective,2020-12-23,Normal,6881,236,1,6,,,,DISCHARGED -6882,2022-09-24,41512.65687507838,479,Urgent,2022-10-14,Abnormal,6882,461,0,3,,,,DISCHARGED -6883,2022-01-29,34585.77783088951,363,Emergency,2022-02-23,Abnormal,6883,440,1,20,High blood pressure,"Lifestyle modifications (diet, exercise, stress management) and medications to control blood pressure. Regular monitoring of blood pressure and adjustments to treatment as needed.",I10 - Essential (primary) hypertension,DISCHARGED -6884,2018-12-19,36179.82211297054,141,Elective,2018-12-20,Inconclusive,6884,391,0,17,Unexplained irritability,"Psychological evaluation, counseling, and addressing underlying mental health issues","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -6885,2019-02-01,42060.54190245227,396,Emergency,2019-02-18,Inconclusive,6885,71,2,7,,,,DISCHARGED -6886,2022-02-23,22670.597120583967,393,Emergency,2022-03-09,Normal,6886,154,4,11,,,,DISCHARGED -6887,2023-05-26,41243.18009707191,235,Urgent,2023-05-29,Abnormal,6887,189,3,14,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,DISCHARGED -6888,2022-01-04,28760.72377634086,401,Urgent,2022-01-31,Normal,6888,267,1,14,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -6889,2023-09-12,30672.66870908002,189,Emergency,2023-10-07,Normal,6889,320,1,16,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -6890,2023-05-27,32553.66667017798,336,Urgent,2023-06-18,Inconclusive,6890,106,1,1,,,,DISCHARGED -6891,2018-12-18,40040.86636058092,151,Emergency,2019-01-09,Normal,6891,231,1,11,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -6892,2022-09-13,49199.74601371455,493,Elective,2022-09-14,Abnormal,6892,41,4,2,Migraines,"Identify triggers and lifestyle modifications, pain management medications, and preventive medications. Regular follow-up to monitor migraine frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -6893,2019-01-29,21122.759451362013,342,Emergency,2019-01-31,Normal,6893,189,0,6,,,,DISCHARGED -6894,2019-05-29,23954.88018096705,245,Emergency,2019-05-30,Normal,6894,370,4,5,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6896,2021-12-31,27010.57413095525,114,Elective,2022-01-06,Abnormal,6896,138,2,13,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -6897,2021-07-31,21582.63099122441,181,Emergency,2021-08-23,Abnormal,6897,102,4,22,,,,DISCHARGED -6898,2023-09-15,39004.398259655536,176,Emergency,2023-09-26,Abnormal,6898,170,4,26,,,,DISCHARGED -6899,2021-07-05,9784.253420517382,272,Emergency,2021-07-21,Normal,6899,350,2,4,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -6900,2020-08-26,2190.613269353852,122,Elective,2020-09-20,Abnormal,6900,272,4,29,,,,DISCHARGED -6901,2023-04-23,20189.35857799911,468,Emergency,,Abnormal,6901,480,0,3,"Chief complaint is a persistent, itchy rash on the hands and feet.",Diagnose the cause of the rash and prescribe appropriate topical treatments or medications.,R21 - Rash and other nonspecific skin eruption,OPEN -6902,2021-12-23,49721.48933520515,341,Elective,2021-12-26,Inconclusive,6902,415,3,14,,,,DISCHARGED -6903,2023-05-24,47989.83459902162,358,Emergency,,Inconclusive,6903,220,2,6,,,,OPEN -6904,2019-07-15,9719.042869549468,112,Emergency,2019-08-01,Abnormal,6904,212,1,2,,,,DISCHARGED -6905,2021-03-20,24455.72398371465,115,Urgent,2021-03-25,Normal,6905,340,0,12,,,,DISCHARGED -6906,2022-01-13,29148.62010659719,242,Elective,2022-02-02,Inconclusive,6906,423,3,9,,,,DISCHARGED -6907,2019-11-13,33035.04051135661,389,Emergency,2019-12-01,Abnormal,6907,406,0,22,,,,DISCHARGED -6908,2021-02-07,21704.12367705071,177,Urgent,2021-02-21,Normal,6908,55,0,1,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -6909,2018-12-16,4681.999280526896,203,Urgent,2019-01-11,Normal,6909,389,1,11,,,,DISCHARGED -6910,2021-04-02,13881.042211211625,360,Urgent,2021-04-20,Normal,6910,341,3,27,,,,DISCHARGED -6911,2021-07-21,25721.757753734502,229,Elective,2021-07-27,Abnormal,6911,433,0,23,,,,DISCHARGED -6912,2023-06-13,33362.80820852976,406,Urgent,2023-07-12,Abnormal,6912,101,1,27,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -6914,2022-08-03,48316.58750800679,250,Emergency,2022-08-27,Abnormal,6914,420,2,21,,,,DISCHARGED -6915,2019-07-09,18873.33861875201,104,Urgent,2019-08-02,Abnormal,6915,492,1,11,,,,DISCHARGED -6916,2019-02-14,29983.666771928347,374,Urgent,2019-03-13,Normal,6916,191,4,18,,,,DISCHARGED -6917,2023-02-23,12571.879872742453,211,Emergency,,Abnormal,6917,498,1,18,,,,OPEN -6918,2022-01-03,16599.28789167924,276,Elective,2022-01-18,Normal,6918,309,1,20,,,,DISCHARGED -6919,2020-07-30,24125.69050911835,476,Emergency,2020-08-21,Abnormal,6919,199,1,2,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -6920,2022-09-09,2976.7440454205766,441,Urgent,2022-09-16,Abnormal,6920,232,0,5,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -6921,2020-12-07,37146.98486188007,375,Urgent,2020-12-25,Abnormal,6921,432,3,1,,,,DISCHARGED -6922,2022-08-27,5883.158390461255,220,Elective,2022-09-21,Normal,6922,226,1,23,,,,DISCHARGED -6923,2020-04-24,13016.178264976284,426,Elective,2020-05-19,Normal,6923,370,1,12,,,,DISCHARGED -6924,2022-07-19,4587.07832525065,264,Elective,2022-07-29,Inconclusive,6924,138,4,26,,,,DISCHARGED -6925,2022-11-15,28751.31529811376,109,Elective,2022-12-14,Inconclusive,6925,343,4,27,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -6926,2019-05-14,38287.62735509396,476,Elective,2019-06-09,Abnormal,6926,304,2,26,,,,DISCHARGED -6927,2022-12-29,1844.6653963004087,329,Urgent,2023-01-14,Normal,6927,148,2,8,,,,DISCHARGED -6928,2019-12-11,21422.786020571628,317,Emergency,2019-12-12,Inconclusive,6928,114,4,12,,,,DISCHARGED -6930,2018-12-03,43026.43138295912,386,Urgent,2018-12-12,Normal,6930,449,3,22,,,,DISCHARGED -6931,2022-08-30,44251.29820347973,311,Elective,2022-09-10,Normal,6931,62,2,13,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6931,2019-08-27,19912.78488841649,421,Urgent,2019-09-20,Abnormal,9596,103,3,18,,,,DISCHARGED -6932,2021-05-13,1271.4330373254052,499,Urgent,2021-06-05,Abnormal,6932,338,4,10,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -6933,2019-07-10,41964.94123413667,447,Elective,2019-08-01,Normal,6933,358,2,13,,,,DISCHARGED -6934,2022-07-31,42928.0748197408,244,Emergency,2022-08-28,Normal,6934,155,1,15,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -6935,2019-03-31,20407.00690319005,396,Emergency,2019-04-10,Normal,6935,272,4,9,,,,DISCHARGED -6936,2022-04-27,13158.124974652472,166,Urgent,2022-05-26,Abnormal,6936,5,2,19,,,,DISCHARGED -6937,2023-08-06,3106.0434201333437,105,Urgent,2023-08-31,Normal,6937,146,3,15,,,,DISCHARGED -6938,2019-09-19,49874.35205172004,207,Elective,2019-09-27,Abnormal,6938,183,3,27,,,,DISCHARGED -6939,2019-12-10,34435.00715638833,284,Emergency,2020-01-06,Inconclusive,6939,485,2,25,,,,DISCHARGED -6940,2021-12-08,41974.30956664626,495,Elective,2021-12-15,Abnormal,6940,27,3,1,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -6941,2020-08-29,5840.761894779029,319,Urgent,2020-09-27,Normal,6941,449,2,24,,,,DISCHARGED -6942,2022-04-05,18828.985033991587,174,Elective,2022-04-15,Abnormal,6942,37,2,15,,,,DISCHARGED -6943,2021-04-04,29021.530383541096,345,Emergency,2021-04-09,Inconclusive,6943,118,3,13,,,,DISCHARGED -6944,2020-09-19,36569.7359015632,415,Elective,2020-09-25,Normal,6944,292,0,20,,,,DISCHARGED -6945,2019-05-29,7212.095181705559,193,Urgent,2019-06-24,Inconclusive,6945,370,1,27,Worsening of skin conditions,"Adjustment of skincare regimen, topical or oral medications, and potential referral to a dermatologist for further evaluation and treatment.","L70.9 - Acne, unspecified",DISCHARGED -6946,2020-10-29,45125.53092988562,126,Elective,2020-11-07,Inconclusive,6946,243,4,17,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6947,2019-11-01,22205.908443391763,244,Emergency,2019-12-01,Inconclusive,6947,67,1,25,,,,DISCHARGED -6948,2019-01-17,9751.256054537394,312,Elective,2019-01-29,Abnormal,6948,213,4,5,,,,DISCHARGED -6949,2022-06-15,14540.995424455135,123,Urgent,2022-06-21,Normal,6949,217,4,6,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -6950,2019-12-18,9393.384143227926,369,Urgent,2020-01-11,Normal,6950,176,1,12,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -6951,2021-05-25,17385.6942661642,247,Emergency,2021-06-06,Inconclusive,6951,298,2,1,,,,DISCHARGED -6952,2022-04-27,23191.49097221982,288,Urgent,2022-04-28,Normal,6952,163,3,14,,,,DISCHARGED -6953,2021-08-21,8757.444361387468,340,Emergency,2021-09-03,Abnormal,6953,57,0,16,,,,DISCHARGED -6954,2021-04-23,15119.263594399192,249,Elective,2021-05-06,Abnormal,6954,268,0,12,,,,DISCHARGED -6955,2020-03-24,33098.47806222107,200,Emergency,2020-04-17,Abnormal,6955,307,0,6,,,,DISCHARGED -6956,2020-06-30,28202.02463123516,392,Emergency,2020-07-20,Inconclusive,6956,57,1,0,Dizziness and lightheadedness,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -6957,2022-07-01,3921.269858654899,153,Elective,2022-07-09,Normal,6957,287,1,2,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -6958,2021-04-12,5743.795054067121,366,Urgent,2021-04-26,Inconclusive,6958,464,2,19,,,,DISCHARGED -6959,2020-03-01,31230.146441875662,114,Urgent,2020-03-08,Normal,6959,104,0,17,,,,DISCHARGED -6960,2018-11-19,44594.51048092537,444,Urgent,2018-11-26,Abnormal,6960,227,2,6,,,,DISCHARGED -6961,2019-03-15,18717.30553192645,379,Emergency,2019-04-13,Normal,6961,246,0,20,,,,DISCHARGED -6962,2023-02-24,29969.31082460949,287,Emergency,2023-03-23,Normal,6962,187,1,16,,,,DISCHARGED -6963,2023-07-21,15527.34878869212,370,Emergency,2023-07-31,Normal,6963,493,3,27,,,,DISCHARGED -6964,2023-08-18,7614.503507240185,237,Elective,,Abnormal,6964,82,3,11,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",OPEN -6965,2019-01-30,35830.872708983195,441,Urgent,2019-02-02,Normal,6965,185,3,15,,,,DISCHARGED -6966,2021-03-04,3323.1493877491453,337,Emergency,2021-03-27,Inconclusive,6966,251,3,23,,,,DISCHARGED -6967,2019-01-20,19165.95622356114,411,Elective,2019-02-17,Inconclusive,6967,354,4,9,,,,DISCHARGED -6968,2023-02-19,36922.40795023482,318,Urgent,2023-02-26,Normal,6968,237,0,22,,,,DISCHARGED -6969,2023-03-30,42953.35070067596,311,Emergency,2023-04-28,Normal,6969,359,3,15,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -6970,2020-09-26,24628.638701085616,370,Urgent,2020-10-09,Inconclusive,6970,183,4,19,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -6971,2021-02-09,39147.73981123817,415,Elective,2021-02-23,Abnormal,6971,283,4,17,,,,DISCHARGED -6972,2021-12-08,3683.299679083855,370,Elective,2021-12-25,Abnormal,6972,384,4,14,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -6973,2019-02-07,17029.84381319199,118,Urgent,2019-03-07,Abnormal,6973,425,2,22,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -6974,2020-08-08,32544.248420748994,448,Elective,2020-08-29,Normal,6974,209,2,10,,,,DISCHARGED -6975,2023-07-13,37186.17202104556,295,Urgent,,Inconclusive,6975,303,4,17,,,,OPEN -6976,2021-11-24,20785.120348210043,383,Urgent,2021-11-29,Abnormal,6976,295,3,5,,,,DISCHARGED -6977,2020-06-22,23191.696371418355,355,Emergency,2020-07-07,Inconclusive,6977,96,0,0,,,,DISCHARGED -6978,2022-05-28,6420.664097170925,147,Emergency,2022-06-22,Normal,6978,446,1,29,,,,DISCHARGED -6979,2021-07-16,21924.850084613707,388,Elective,2021-07-17,Normal,6979,459,2,22,,,,DISCHARGED -6980,2020-04-14,45594.05190315254,267,Elective,2020-04-23,Inconclusive,6980,455,3,6,,,,DISCHARGED -6982,2023-01-10,8996.36230333845,500,Elective,,Abnormal,6982,471,3,11,,,,OPEN -6983,2020-01-12,38772.294762515696,307,Urgent,2020-01-14,Normal,6983,207,1,19,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -6984,2019-02-19,36334.49165561649,245,Urgent,2019-03-14,Abnormal,6984,369,1,3,,,,DISCHARGED -6985,2020-09-08,18805.210172743948,434,Elective,2020-09-23,Normal,6985,387,3,9,,,,DISCHARGED -6986,2021-11-21,10578.934274622165,300,Emergency,2021-12-13,Inconclusive,6986,421,1,20,,,,DISCHARGED -6987,2019-12-11,43181.07556432056,379,Elective,2020-01-09,Abnormal,6987,491,3,1,,,,DISCHARGED -6988,2021-07-11,18815.487208475053,142,Urgent,2021-07-25,Inconclusive,6988,410,1,8,,,,DISCHARGED -6989,2020-07-02,44200.98515737494,342,Emergency,2020-07-17,Abnormal,6989,136,1,9,,,,DISCHARGED -6991,2022-10-10,32421.41053753488,409,Emergency,2022-10-28,Normal,6991,366,3,19,,,,DISCHARGED -6992,2022-06-26,44340.91194664272,345,Emergency,2022-07-21,Abnormal,6992,399,4,10,,,,DISCHARGED -6993,2023-02-13,28947.395382327337,183,Urgent,2023-03-08,Normal,6993,183,3,24,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -6994,2023-05-26,12658.82425861454,491,Emergency,,Normal,6994,75,0,13,,,,OPEN -6995,2023-05-30,30566.481418628096,131,Emergency,,Abnormal,6995,286,1,2,,,,OPEN -6996,2019-04-19,23115.99583049012,358,Emergency,2019-04-21,Normal,6996,471,2,24,,,,DISCHARGED -6997,2022-07-18,37754.68036336889,433,Elective,2022-08-09,Abnormal,6997,374,1,0,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -6998,2019-03-10,33048.60738867,108,Emergency,2019-03-18,Inconclusive,6998,141,0,6,,,,DISCHARGED -6999,2021-12-05,28066.850326825373,469,Emergency,2021-12-17,Inconclusive,6999,236,2,3,,,,DISCHARGED -7000,2019-12-03,28022.077120481412,318,Urgent,2019-12-04,Normal,7000,24,2,6,,,,DISCHARGED -7001,2019-12-14,43643.2185991089,276,Elective,2020-01-07,Abnormal,7001,289,3,15,,,,DISCHARGED -7002,2019-03-06,10165.625602412832,312,Emergency,2019-03-14,Normal,7002,66,4,29,,,,DISCHARGED -7003,2021-05-24,17775.0711507952,215,Urgent,2021-05-28,Inconclusive,7003,249,3,9,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7004,2021-08-08,16789.876984746872,497,Elective,2021-08-29,Normal,7004,407,2,14,,,,DISCHARGED -7005,2021-07-21,1624.3416946945954,393,Emergency,2021-08-13,Normal,7005,117,2,15,,,,DISCHARGED -7006,2021-07-16,19111.079143988805,346,Elective,2021-08-13,Normal,7006,489,4,5,,,,DISCHARGED -7007,2022-10-23,44348.96664206508,469,Urgent,2022-11-08,Normal,7007,72,1,3,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7008,2020-12-04,4852.941455185139,221,Urgent,2020-12-19,Normal,7008,281,4,3,,,,DISCHARGED -7010,2021-05-08,2988.082316116417,314,Emergency,2021-05-25,Abnormal,7010,403,3,23,,,,DISCHARGED -7011,2019-07-22,6285.273179005883,235,Emergency,2019-07-26,Abnormal,7011,447,1,22,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -7012,2019-10-05,49835.01817990041,308,Elective,2019-10-29,Inconclusive,7012,359,3,3,,,,DISCHARGED -7013,2018-12-30,45617.60148270567,112,Urgent,2019-01-19,Inconclusive,7013,9,4,26,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -7014,2021-02-10,12472.3016246608,378,Emergency,2021-02-22,Inconclusive,7014,210,1,21,,,,DISCHARGED -7015,2020-05-23,1558.0693002955077,181,Emergency,2020-06-07,Abnormal,7015,322,4,21,Difficulty in opening the mouth wide,"Physical therapy, medications for underlying causes, and lifestyle modifications. Referral to specialists, such as a dentist or oral surgeon, may be necessary.","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -7016,2020-12-22,46231.33327074372,417,Urgent,2021-01-16,Abnormal,7016,151,0,16,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7017,2021-05-30,47302.27132981174,170,Urgent,2021-06-16,Abnormal,7017,4,2,12,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7018,2019-02-11,7021.633557241288,285,Emergency,2019-02-15,Normal,7018,194,1,1,,,,DISCHARGED -7019,2020-08-18,42079.942863036194,262,Urgent,2020-09-10,Abnormal,7019,441,2,19,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -7020,2022-05-02,46151.28129108493,496,Elective,2022-05-06,Normal,7020,282,0,5,,,,DISCHARGED -7021,2019-07-07,15754.20285448002,498,Urgent,2019-07-15,Inconclusive,7021,463,1,21,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7022,2022-07-02,19690.996407116847,468,Emergency,2022-08-01,Normal,7022,112,2,0,,,,DISCHARGED -7024,2022-06-16,8347.455292656887,142,Emergency,2022-06-17,Inconclusive,7024,270,2,7,,,,DISCHARGED -7026,2022-06-19,9643.520510261009,360,Emergency,2022-07-19,Abnormal,7026,162,1,17,,,,DISCHARGED -7029,2022-12-28,10720.533851319837,462,Urgent,2023-01-25,Abnormal,7029,459,2,28,,,,DISCHARGED -7030,2023-05-17,47674.5582439801,217,Emergency,,Inconclusive,7030,104,2,20,,,,OPEN -7031,2021-05-13,45319.94992170451,495,Urgent,2021-06-12,Inconclusive,7031,180,1,3,,,,DISCHARGED -7032,2020-12-16,32129.827083327928,240,Urgent,2021-01-09,Inconclusive,7032,43,2,4,,,,DISCHARGED -7033,2020-05-25,36862.2259661634,197,Emergency,2020-06-01,Abnormal,7033,281,2,4,,,,DISCHARGED -7034,2019-03-20,7669.027644818167,147,Elective,2019-03-28,Normal,7034,174,3,14,,,,DISCHARGED -7035,2020-10-08,33384.89314404058,387,Urgent,2020-11-07,Normal,7035,161,3,9,,,,DISCHARGED -7037,2020-05-10,18452.33495118273,163,Emergency,2020-05-16,Normal,7037,470,0,7,,,,DISCHARGED -7039,2020-09-19,14971.788759435414,343,Urgent,2020-10-18,Abnormal,7039,350,3,25,,,,DISCHARGED -7040,2019-10-15,11246.221282683617,165,Elective,2019-10-27,Abnormal,7040,433,3,6,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7041,2020-04-21,22038.87416508738,111,Urgent,2020-05-06,Normal,7041,339,0,11,,,,DISCHARGED -7042,2020-01-25,42622.75933691992,386,Emergency,2020-02-23,Normal,7042,139,2,29,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7043,2020-05-27,30196.03671471688,284,Urgent,2020-06-02,Abnormal,7043,470,2,24,,,,DISCHARGED -7044,2020-06-19,48617.47109802048,123,Elective,2020-06-29,Abnormal,7044,131,3,27,,,,DISCHARGED -7045,2022-04-03,13603.833695843485,435,Emergency,2022-04-07,Inconclusive,7045,86,0,10,,,,DISCHARGED -7046,2023-09-05,18391.8996685034,359,Emergency,,Abnormal,7046,175,2,12,,,,OPEN -7047,2022-03-15,22561.42873182083,295,Emergency,2022-04-02,Abnormal,7047,182,4,14,,,,DISCHARGED -7048,2021-11-10,29605.13648065304,367,Emergency,2021-12-07,Abnormal,7048,367,1,16,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7049,2020-05-07,7113.477012233674,213,Emergency,2020-05-09,Inconclusive,7049,128,1,21,,,,DISCHARGED -7050,2022-02-06,35665.405572029216,312,Elective,2022-02-18,Normal,7050,245,1,21,,,,DISCHARGED -7051,2023-07-31,33372.17197336503,193,Urgent,2023-08-16,Abnormal,7051,88,3,17,,,,DISCHARGED -7052,2020-12-21,5996.388238063388,214,Urgent,2021-01-14,Abnormal,7052,65,1,26,,,,DISCHARGED -7053,2023-04-25,24753.04718018185,165,Emergency,2023-05-05,Normal,7053,157,1,7,,,,DISCHARGED -7054,2021-09-09,1491.4259908042727,367,Elective,2021-09-17,Normal,7054,386,4,5,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7055,2019-10-20,48967.70097634383,172,Emergency,2019-11-09,Normal,7055,377,2,10,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7056,2023-08-22,34855.1856269224,346,Urgent,2023-08-31,Abnormal,7056,148,4,28,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7057,2020-07-23,45884.35251757271,421,Emergency,2020-08-15,Abnormal,7057,472,3,25,,,,DISCHARGED -7058,2019-03-29,26745.25370544875,453,Emergency,2019-04-26,Inconclusive,7058,339,1,8,,,,DISCHARGED -7059,2019-04-03,16295.959803509952,289,Urgent,2019-05-02,Normal,7059,432,2,25,,,,DISCHARGED -7060,2023-09-17,16287.97853596497,327,Emergency,,Abnormal,7060,115,1,4,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",OPEN -7061,2021-05-06,40684.505484486064,422,Elective,2021-05-19,Normal,7061,213,1,6,Persistent cough and shortness of breath,"Prescribed a combination of inhaled bronchodilators (such as albuterol) and corticosteroids to manage airway inflammation. Conducted pulmonary function tests to assess lung function. Administered antibiotics if a bacterial infection was suspected. Advised lifestyle modifications, including smoking cessation and environmental control.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7062,2020-03-08,6401.271009325388,407,Elective,2020-03-18,Inconclusive,7062,468,3,21,,,,DISCHARGED -7063,2021-08-13,43195.045179384346,302,Elective,2021-08-24,Abnormal,7063,445,1,26,,,,DISCHARGED -7064,2021-11-14,49848.9617670132,309,Emergency,2021-12-11,Normal,7064,480,0,14,,,,DISCHARGED -7065,2023-06-10,46654.15202107294,446,Urgent,2023-07-04,Normal,7065,371,2,20,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -7066,2018-12-11,29205.63931245221,491,Elective,2019-01-08,Inconclusive,7066,293,2,21,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7067,2021-12-19,10894.031638453083,273,Elective,2022-01-11,Abnormal,7067,252,0,3,Loss of sensation and tingling in extremities,"Diagnostic tests to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression.","G59.9 - Mononeuropathy, unspecified",DISCHARGED -7068,2019-10-25,22476.138091971294,315,Urgent,2019-11-04,Normal,7068,142,3,18,,,,DISCHARGED -7069,2021-11-21,17028.19333414566,411,Emergency,2021-12-11,Inconclusive,7069,249,1,12,,,,DISCHARGED -7070,2021-07-20,26803.9697993017,209,Urgent,2021-08-01,Inconclusive,7070,365,1,0,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -7071,2021-01-04,13211.982394459112,202,Urgent,2021-01-17,Normal,7071,435,2,0,,,,DISCHARGED -7072,2020-03-31,5873.908262540625,196,Emergency,2020-04-19,Abnormal,7072,462,3,21,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7073,2019-12-02,41263.20100000215,315,Urgent,2019-12-13,Inconclusive,7073,301,3,13,,,,DISCHARGED -7074,2023-07-20,14079.82477736208,284,Elective,2023-08-19,Inconclusive,7074,24,3,8,,,,DISCHARGED -7075,2022-08-19,28151.67210628584,500,Urgent,2022-09-06,Normal,7075,276,1,23,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -7076,2022-03-08,27494.7333131783,346,Urgent,2022-03-30,Inconclusive,7076,471,3,11,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7078,2019-02-27,42467.90159877492,182,Elective,2019-03-13,Inconclusive,7078,376,0,17,,,,DISCHARGED -7080,2022-09-20,26519.79531729132,337,Emergency,2022-09-24,Normal,7080,377,4,8,,,,DISCHARGED -7081,2019-03-24,36848.88222905856,107,Elective,2019-03-27,Inconclusive,7081,388,3,7,,,,DISCHARGED -7082,2022-08-07,12291.30093234208,135,Urgent,2022-08-14,Inconclusive,7082,69,4,29,,,,DISCHARGED -7084,2020-04-03,16618.638782435875,441,Urgent,2020-04-05,Normal,7084,112,1,13,,,,DISCHARGED -7085,2020-08-01,4503.271013887793,300,Elective,2020-08-29,Inconclusive,7085,362,3,27,,,,DISCHARGED -7085,2022-12-07,29736.060639802552,398,Emergency,2022-12-15,Normal,9890,111,2,8,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7086,2022-06-20,37102.007021229234,213,Elective,2022-06-27,Inconclusive,7086,363,1,19,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7088,2020-09-06,32013.8829280533,195,Urgent,2020-10-01,Inconclusive,7088,302,0,24,,,,DISCHARGED -7089,2019-03-26,2127.590487194777,428,Elective,2019-03-28,Inconclusive,7089,470,0,1,,,,DISCHARGED -7090,2019-06-24,17646.1661251343,404,Emergency,2019-07-18,Abnormal,7090,451,4,28,,,,DISCHARGED -7091,2021-07-21,10529.911922347848,113,Emergency,2021-08-19,Inconclusive,7091,90,4,0,,,,DISCHARGED -7092,2019-08-07,39057.424257618935,174,Elective,2019-08-20,Abnormal,7092,17,2,12,,,,DISCHARGED -7094,2023-01-20,20155.521024480197,418,Urgent,,Inconclusive,7094,148,2,24,,,,OPEN -7094,2023-07-11,27529.97440820637,112,Elective,2023-08-03,Normal,8912,475,0,9,,,,DISCHARGED -7096,2020-02-09,20800.256005646625,360,Elective,2020-02-18,Normal,7096,226,3,7,,,,DISCHARGED -7097,2022-08-05,18062.793452994247,157,Urgent,2022-09-01,Normal,7097,213,0,6,,,,DISCHARGED -7098,2022-05-07,46529.20099626824,108,Urgent,2022-05-11,Abnormal,7098,359,0,29,,,,DISCHARGED -7099,2021-12-04,4227.275781451428,476,Emergency,2021-12-24,Inconclusive,7099,150,2,28,,,,DISCHARGED -7100,2018-12-12,26322.58090495932,450,Elective,2019-01-01,Inconclusive,7100,191,4,23,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7101,2019-07-12,21030.4321002445,327,Urgent,2019-07-15,Abnormal,7101,450,2,11,,,,DISCHARGED -7102,2020-01-03,17199.672597827237,409,Emergency,2020-01-09,Abnormal,7102,39,2,16,,,,DISCHARGED -7103,2021-06-19,39373.42563456408,301,Urgent,2021-06-28,Inconclusive,7103,241,2,29,,,,DISCHARGED -7104,2019-11-02,1237.2508300624338,314,Elective,2019-11-05,Inconclusive,7104,137,0,24,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -7105,2022-11-17,25787.91272472085,185,Emergency,2022-11-18,Inconclusive,7105,344,3,11,,,,DISCHARGED -7107,2021-07-19,49792.10009117197,290,Emergency,2021-07-22,Inconclusive,7107,179,0,15,,,,DISCHARGED -7108,2020-10-25,29953.76922076988,491,Emergency,2020-11-04,Normal,7108,496,1,9,,,,DISCHARGED -7109,2021-12-01,8162.559699233293,103,Elective,2021-12-31,Inconclusive,7109,199,2,26,,,,DISCHARGED -7110,2019-02-09,5074.770052671522,436,Elective,2019-02-11,Normal,7110,202,2,24,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7111,2020-04-20,41555.73679216185,487,Urgent,2020-04-28,Inconclusive,7111,60,1,11,,,,DISCHARGED -7112,2020-05-05,18822.1132164572,345,Emergency,2020-05-22,Normal,7112,191,2,10,,,,DISCHARGED -7113,2021-03-25,6397.180958100335,204,Elective,2021-04-22,Abnormal,7113,4,2,24,,,,DISCHARGED -7114,2022-06-10,23959.67721020742,491,Elective,2022-07-08,Abnormal,7114,377,2,28,,,,DISCHARGED -7115,2023-03-29,3212.321099081732,164,Urgent,2023-04-19,Inconclusive,7115,236,1,13,,,,DISCHARGED -7116,2021-08-21,7027.1252073885225,272,Emergency,2021-09-02,Abnormal,7116,180,0,21,,,,DISCHARGED -7117,2022-07-27,46468.92284464366,102,Elective,2022-08-14,Abnormal,7117,310,2,19,,,,DISCHARGED -7118,2022-09-28,8030.721529139739,326,Emergency,2022-10-04,Normal,7118,36,3,12,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7119,2022-11-03,33903.101708471964,256,Urgent,2022-11-13,Abnormal,7119,55,1,1,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7121,2020-05-24,25369.4763721589,485,Urgent,2020-06-23,Abnormal,7121,442,4,26,,,,DISCHARGED -7122,2019-03-23,26680.700177879346,214,Urgent,2019-03-28,Inconclusive,7122,236,1,19,,,,DISCHARGED -7123,2021-12-24,47144.95223130249,263,Urgent,2022-01-08,Inconclusive,7123,357,0,6,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7126,2023-03-19,1301.15435196795,180,Urgent,2023-03-29,Normal,7126,348,1,0,,,,DISCHARGED -7127,2020-10-30,10931.312349866865,436,Urgent,2020-11-04,Abnormal,7127,196,4,29,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -7128,2020-06-16,24919.838175483044,140,Emergency,2020-06-19,Normal,7128,72,3,24,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7128,2019-10-02,5439.113225786939,359,Urgent,2019-10-25,Abnormal,9900,58,4,2,,,,DISCHARGED -7129,2020-04-24,37830.23901868565,363,Elective,2020-05-03,Abnormal,7129,239,1,28,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -7130,2019-06-23,32203.170676483947,346,Emergency,2019-07-22,Normal,7130,1,4,28,,,,DISCHARGED -7131,2020-04-11,49537.836556769806,138,Urgent,2020-05-08,Abnormal,7131,448,1,19,,,,DISCHARGED -7132,2022-04-11,29141.438216020822,468,Elective,2022-04-16,Abnormal,7132,359,3,11,,,,DISCHARGED -7133,2019-12-26,30800.192578808164,463,Elective,2020-01-02,Inconclusive,7133,187,3,4,,,,DISCHARGED -7134,2020-08-30,16819.99792549633,454,Emergency,2020-09-18,Abnormal,7134,306,0,11,,,,DISCHARGED -7135,2019-11-03,21590.05968050994,381,Emergency,2019-11-22,Abnormal,7135,29,3,28,,,,DISCHARGED -7136,2019-11-28,35944.56290912836,236,Emergency,2019-12-14,Abnormal,7136,266,2,2,,,,DISCHARGED -7137,2019-12-17,39493.38238438234,103,Emergency,2019-12-31,Normal,7137,475,4,19,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7138,2020-06-12,17801.78962708057,344,Urgent,2020-07-06,Abnormal,7138,107,4,4,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7139,2021-09-11,6445.675572263648,450,Elective,2021-10-07,Abnormal,7139,331,1,27,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7140,2022-12-12,13669.66304710929,371,Elective,2022-12-24,Abnormal,7140,422,3,0,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -7141,2019-03-30,20378.114327795065,284,Emergency,2019-04-25,Normal,7141,89,0,15,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7142,2021-01-21,26212.49513013249,372,Urgent,2021-01-23,Normal,7142,204,0,29,,,,DISCHARGED -7143,2019-05-15,41024.26391659207,145,Urgent,2019-06-02,Normal,7143,378,0,8,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7144,2019-12-22,26606.99648348217,392,Emergency,2019-12-25,Inconclusive,7144,455,2,9,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7145,2020-04-01,3436.1046141771485,249,Elective,2020-04-23,Normal,7145,446,3,28,,,,DISCHARGED -7146,2019-05-06,24191.54111516324,327,Urgent,2019-05-28,Inconclusive,7146,447,0,9,,,,DISCHARGED -7148,2019-11-02,27172.657012505337,382,Elective,2019-11-03,Abnormal,7148,444,2,12,,,,DISCHARGED -7149,2023-05-31,3163.0661839396794,336,Emergency,2023-06-22,Inconclusive,7149,380,4,15,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7150,2020-05-03,39057.94301172147,377,Emergency,2020-05-28,Inconclusive,7150,437,1,29,,,,DISCHARGED -7151,2019-05-16,37045.16506376791,492,Urgent,2019-05-28,Abnormal,7151,219,3,19,,,,DISCHARGED -7152,2023-05-08,5848.965302685062,192,Urgent,,Abnormal,7152,377,3,28,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7153,2022-12-13,4629.222019886309,432,Emergency,2022-12-14,Inconclusive,7153,93,4,24,,,,DISCHARGED -7154,2022-05-16,48471.478861202006,188,Emergency,2022-06-13,Normal,7154,456,3,3,,,,DISCHARGED -7155,2021-12-15,45259.33023102657,159,Emergency,2022-01-08,Abnormal,7155,102,3,13,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7156,2021-11-12,10463.716893575824,237,Emergency,2021-11-28,Inconclusive,7156,222,3,16,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7158,2019-02-18,41840.74498856691,417,Elective,2019-03-01,Normal,7158,185,3,27,,,,DISCHARGED -7159,2021-06-20,38745.06802313855,123,Elective,2021-07-11,Abnormal,7159,468,2,4,,,,DISCHARGED -7160,2022-05-20,7485.053731149499,106,Urgent,2022-05-21,Abnormal,7160,183,2,12,,,,DISCHARGED -7161,2019-08-30,15066.522876957524,324,Emergency,2019-09-17,Inconclusive,7161,494,1,24,Short-term memory lapse,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7162,2020-05-17,30216.501164675457,367,Urgent,2020-06-08,Normal,7162,161,3,2,,,,DISCHARGED -7163,2022-09-18,49223.7153460014,492,Urgent,2022-10-03,Inconclusive,7163,246,4,4,,,,DISCHARGED -7164,2020-12-09,27313.93170070976,313,Urgent,2021-01-06,Normal,7164,30,0,15,,,,DISCHARGED -7165,2020-11-28,49391.72658539869,134,Emergency,2020-12-18,Inconclusive,7165,51,1,18,Persistent buzzing sound in the ears,"Audiological assessment, evaluation for underlying ear conditions, and management of tinnitus.",H93.19 - Other subjective tinnitus,DISCHARGED -7166,2019-09-01,47697.669841166986,395,Urgent,2019-09-03,Abnormal,7166,344,0,27,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7167,2023-05-13,10469.871969881302,263,Emergency,2023-05-26,Inconclusive,7167,75,0,18,,,,DISCHARGED -7168,2021-01-17,44585.56577915259,492,Emergency,2021-02-13,Abnormal,7168,384,3,16,,,,DISCHARGED -7169,2021-01-03,26520.658624456268,123,Urgent,2021-01-16,Inconclusive,7169,438,4,17,,,,DISCHARGED -7170,2020-02-26,2825.3267360231384,117,Emergency,2020-03-21,Normal,7170,277,0,17,,,,DISCHARGED -7171,2019-10-01,12749.560176320609,253,Urgent,2019-10-20,Abnormal,7171,39,0,24,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7174,2019-10-14,27127.680595704023,174,Emergency,2019-10-25,Normal,7174,100,1,22,,,,DISCHARGED -7175,2020-03-19,38256.61327356869,162,Emergency,2020-04-16,Abnormal,7175,110,4,7,,,,DISCHARGED -7177,2022-02-02,12144.03854480725,186,Emergency,2022-02-15,Abnormal,7177,384,4,17,,,,DISCHARGED -7178,2020-06-27,31870.24892567946,170,Elective,2020-07-02,Inconclusive,7178,320,0,8,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -7179,2021-09-16,4282.856565371199,377,Urgent,2021-10-03,Normal,7179,248,4,28,Unexplained red or purple spots on the skin,"Investigation for underlying causes, such as bleeding disorders or vascular issues. Treatment may involve medications or procedures depending on the diagnosis.",D69.9 - Unspecified coagulation defect,DISCHARGED -7181,2020-01-22,34828.25978986324,447,Elective,2020-02-02,Normal,7181,190,1,18,,,,DISCHARGED -7182,2022-08-18,47643.04762356633,173,Elective,2022-08-27,Abnormal,7182,489,1,9,,,,DISCHARGED -7184,2023-01-08,33668.23258294844,466,Elective,2023-01-11,Abnormal,7184,181,1,28,,,,DISCHARGED -7185,2021-02-23,16501.498554667844,164,Urgent,2021-02-24,Normal,7185,425,3,1,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -7186,2021-07-14,3974.976004387348,399,Urgent,2021-08-05,Inconclusive,7186,404,0,27,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7188,2021-05-06,4444.410933750696,113,Elective,2021-05-31,Abnormal,7188,334,4,16,Trembling hands and shaky movements,"Medications, lifestyle changes, and physical or occupational therapy depending on the underlying cause, such as Parkinson's disease.",G20 - Parkinson's disease,DISCHARGED -7189,2023-02-26,10039.133779796635,346,Elective,,Inconclusive,7189,208,1,24,,,,OPEN -7190,2019-08-20,4962.356680587922,169,Urgent,2019-08-21,Inconclusive,7190,21,0,23,,,,DISCHARGED -7191,2022-06-19,36124.95387827857,296,Emergency,2022-07-07,Normal,7191,165,0,12,,,,DISCHARGED -7192,2023-06-19,44109.41425193822,241,Urgent,2023-06-24,Normal,7192,98,3,27,,,,DISCHARGED -7193,2022-09-18,22094.33486443696,417,Emergency,2022-10-15,Abnormal,7193,492,4,10,,,,DISCHARGED -7194,2022-01-26,38505.34801080887,448,Elective,2022-02-22,Inconclusive,7194,207,4,15,,,,DISCHARGED -7195,2019-04-02,13972.993115925368,319,Elective,2019-04-04,Inconclusive,7195,7,1,19,,,,DISCHARGED -7196,2019-08-07,15667.02336453579,468,Elective,2019-08-25,Normal,7196,189,1,6,,,,DISCHARGED -7197,2021-08-09,14857.686632671244,360,Elective,2021-08-24,Inconclusive,7197,174,0,27,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7198,2020-06-02,47898.271328171206,398,Emergency,2020-06-28,Inconclusive,7198,272,4,29,,,,DISCHARGED -7199,2022-07-10,42074.9730337654,381,Elective,2022-07-20,Normal,7199,16,4,2,,,,DISCHARGED -7200,2022-03-23,24717.073126320494,153,Elective,2022-04-14,Normal,7200,89,1,15,,,,DISCHARGED -7201,2022-12-02,44468.0410282488,347,Emergency,2022-12-05,Inconclusive,7201,140,2,18,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7202,2019-07-06,10169.326700314938,438,Urgent,2019-08-03,Normal,7202,144,0,19,,,,DISCHARGED -7203,2019-06-07,9763.372377286158,311,Emergency,2019-06-29,Abnormal,7203,165,4,15,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -7204,2023-07-29,26487.21994075691,296,Emergency,,Inconclusive,7204,336,3,1,,,,OPEN -7205,2020-06-04,42271.12073781485,246,Elective,2020-06-10,Inconclusive,7205,495,3,13,Hearing loss,Audiometric testing to assess the extent of hearing loss. Hearing aids and communication strategies. Address underlying causes such as infections or earwax buildup. Regular follow-up for hearing aid adjustments and monitoring hearing health.,H90.9 - Unspecified hearing loss,DISCHARGED -7206,2023-08-31,4514.147149922848,323,Emergency,,Abnormal,7206,77,2,25,,,,OPEN -7207,2022-10-02,11918.240761657962,204,Elective,2022-10-21,Abnormal,7207,428,1,19,,,,DISCHARGED -7208,2023-02-18,21410.521559982142,416,Elective,,Normal,7208,261,1,9,,,,OPEN -7209,2021-05-18,20804.63486730664,465,Elective,2021-06-04,Normal,7209,162,1,18,,,,DISCHARGED -7209,2019-07-04,7128.807212460624,376,Elective,2019-07-31,Abnormal,8621,365,3,23,,,,DISCHARGED -7210,2021-08-04,29332.316922106555,133,Urgent,2021-08-30,Normal,7210,13,1,10,,,,DISCHARGED -7211,2020-04-28,42247.97895693903,470,Urgent,2020-05-01,Normal,7211,238,3,17,,,,DISCHARGED -7212,2022-06-26,35048.57201279444,295,Elective,2022-07-20,Normal,7212,71,2,10,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -7213,2019-01-22,26001.18565758748,180,Emergency,2019-01-27,Inconclusive,7213,444,0,8,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7214,2021-01-01,45137.95602534278,421,Elective,2021-01-02,Normal,7214,142,4,18,,,,DISCHARGED -7215,2023-10-17,33281.04736978501,130,Elective,2023-11-06,Inconclusive,7215,309,2,19,,,,DISCHARGED -7216,2020-02-04,12208.788597447134,401,Urgent,2020-02-10,Abnormal,7216,282,3,28,,,,DISCHARGED -7217,2022-07-13,42823.30654603339,412,Emergency,2022-07-20,Normal,7217,268,2,9,,,,DISCHARGED -7218,2019-03-01,21049.944131522625,233,Urgent,2019-03-04,Inconclusive,7218,240,4,29,,,,DISCHARGED -7219,2019-09-15,20614.66156413718,449,Emergency,2019-09-19,Abnormal,7219,414,0,25,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7220,2021-05-27,36922.01627674975,374,Urgent,2021-06-07,Inconclusive,7220,244,4,2,,,,DISCHARGED -7221,2020-12-01,25220.527285467928,260,Emergency,2020-12-10,Abnormal,7221,162,3,2,Unexplained swelling in the limbs,"Investigation for underlying causes, such as circulatory or lymphatic issues. Treatment may involve medications, compression therapy, or lifestyle modifications.","I89.9 - Noninfective disorder of lymphatic vessels and nodes, unspecified",DISCHARGED -7222,2020-09-23,12138.41263571739,442,Urgent,2020-10-21,Normal,7222,59,4,23,,,,DISCHARGED -7223,2020-12-16,37569.61885467492,331,Urgent,2020-12-30,Abnormal,7223,5,2,7,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7225,2020-04-14,1283.5444729060396,349,Elective,2020-04-29,Abnormal,7225,196,1,28,Persistent throat irritation and breath difficulties,"Bronchodilators, cough suppressants, and antibiotics if necessary. Investigate and treat the underlying respiratory condition.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7226,2021-04-23,37096.01575440009,368,Emergency,2021-05-14,Normal,7226,469,2,28,Frequent urination and burning sensation,"Identification and treatment of underlying causes, such as urinary tract infections. Medications, lifestyle modifications, and hygiene practices may be recommended.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7227,2021-12-10,15391.661939336847,257,Urgent,2021-12-22,Abnormal,7227,57,3,5,,,,DISCHARGED -7228,2022-01-03,49502.1458422292,132,Emergency,2022-01-07,Abnormal,7228,304,0,19,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7228,2020-08-27,4134.078433260449,250,Emergency,2020-09-04,Abnormal,9274,406,4,0,,,,DISCHARGED -7229,2019-02-21,5053.98258298866,353,Emergency,2019-02-23,Inconclusive,7229,216,0,19,,,,DISCHARGED -7230,2020-03-04,25806.752119469355,138,Urgent,2020-03-07,Inconclusive,7230,417,3,23,,,,DISCHARGED -7231,2019-12-20,40948.33559829411,136,Elective,2019-12-30,Abnormal,7231,25,4,5,,,,DISCHARGED -7232,2019-01-07,6738.405125048368,474,Emergency,2019-02-02,Inconclusive,7232,302,2,1,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7233,2023-01-06,9689.8474944542,180,Elective,,Normal,7233,4,2,18,,,,OPEN -7234,2019-10-20,13885.287958494991,195,Urgent,2019-10-28,Normal,7234,473,3,27,,,,DISCHARGED -7235,2022-03-31,26868.503297706848,178,Emergency,2022-04-27,Normal,7235,19,4,6,,,,DISCHARGED -7236,2022-03-14,3178.5010606660694,338,Urgent,2022-04-05,Abnormal,7236,389,2,10,,,,DISCHARGED -7237,2021-06-23,43164.09378001368,325,Elective,2021-06-24,Abnormal,7237,197,3,10,,,,DISCHARGED -7238,2023-01-27,44030.329838229896,431,Urgent,,Normal,7238,58,3,3,,,,OPEN -7239,2023-09-17,26117.363659353778,249,Elective,2023-09-22,Abnormal,7239,447,0,19,,,,DISCHARGED -7240,2022-07-20,46649.60136533374,278,Urgent,2022-07-24,Inconclusive,7240,241,2,15,,,,DISCHARGED -7241,2019-01-18,12897.903898812683,324,Urgent,2019-02-15,Inconclusive,7241,145,4,4,,,,DISCHARGED -7243,2023-01-30,25857.685344121022,423,Urgent,,Inconclusive,7243,387,2,23,Fainting episodes,Holter monitor and tilt-table testing to identify the cause of syncope. Treatment may involve medications to regulate blood pressure or address underlying cardiac issues. Lifestyle modifications and regular follow-up to monitor for recurrence.,R55 - Syncope and collapse,OPEN -7245,2020-07-29,24315.43491074983,297,Emergency,2020-08-24,Abnormal,7245,272,2,29,,,,DISCHARGED -7246,2020-06-26,32389.55044573958,188,Elective,2020-07-24,Abnormal,7246,248,2,29,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7247,2019-01-27,8586.671063246058,349,Emergency,2019-02-03,Inconclusive,7247,13,3,6,,,,DISCHARGED -7248,2021-06-17,19769.610089432168,275,Urgent,2021-06-23,Normal,7248,461,1,24,,,,DISCHARGED -7249,2022-02-17,8736.076592500785,199,Emergency,2022-03-08,Normal,7249,12,1,15,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -7250,2019-06-14,28951.027499187792,425,Elective,2019-06-26,Inconclusive,7250,390,0,14,,,,DISCHARGED -7251,2019-11-17,34543.67024655781,418,Elective,2019-11-23,Inconclusive,7251,383,2,4,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7252,2021-02-22,21708.910422007106,443,Elective,2021-03-23,Normal,7252,43,1,0,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7253,2021-04-10,46787.03583825796,299,Emergency,2021-05-10,Abnormal,7253,374,0,19,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -7254,2021-10-12,22060.566690528813,340,Urgent,2021-11-06,Abnormal,7254,398,3,21,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -7255,2019-07-13,29668.322448802643,452,Elective,2019-08-09,Normal,7255,18,2,21,,,,DISCHARGED -7256,2019-02-13,9353.51604502461,403,Emergency,2019-02-27,Abnormal,7256,62,4,8,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7257,2019-02-24,2698.259802818861,347,Elective,2019-03-06,Inconclusive,7257,490,3,25,,,,DISCHARGED -7258,2021-07-21,42360.522869150656,195,Emergency,2021-08-07,Inconclusive,7258,238,0,28,,,,DISCHARGED -7259,2021-09-15,2347.02709898368,269,Urgent,2021-09-24,Abnormal,7259,491,3,20,,,,DISCHARGED -7260,2022-01-29,36290.32306418081,250,Emergency,2022-02-22,Abnormal,7260,418,4,4,Frequent bleeding from the nose,"Nasal cauterization, humidifiers, and addressing underlying causes such as nasal polyps or blood clotting disorders.",R19.8 - Other specified symptoms and signs involving the digestive system and abdomen,DISCHARGED -7261,2019-06-08,49225.37669705644,270,Urgent,2019-06-14,Normal,7261,336,3,21,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7262,2023-01-06,23892.430872093057,114,Emergency,2023-01-26,Normal,7262,418,0,26,Tightness in the chest and whistling sound while breathing,"Bronchodilators, corticosteroids, and lifestyle changes. Manage inflammation and improve respiratory function.","M62.9 - Disorder of muscle, unspecified",DISCHARGED -7264,2021-06-08,31615.33489890834,177,Emergency,2021-06-18,Inconclusive,7264,402,4,5,,,,DISCHARGED -7265,2021-02-24,22979.49545104826,186,Elective,2021-03-11,Abnormal,7265,403,4,2,,,,DISCHARGED -7266,2020-03-31,26053.96631110648,330,Emergency,2020-04-14,Abnormal,7266,99,3,5,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7267,2019-10-07,18645.61401817668,367,Emergency,2019-11-04,Abnormal,7267,162,4,7,,,,DISCHARGED -7268,2022-11-05,43028.00994174671,396,Elective,2022-11-07,Inconclusive,7268,415,3,27,,,,DISCHARGED -7269,2020-04-09,11125.417695661792,142,Urgent,2020-04-12,Abnormal,7269,121,2,5,,,,DISCHARGED -7270,2022-02-08,1614.535068761606,387,Elective,2022-02-21,Normal,7270,431,4,15,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -7271,2021-09-05,45856.61103778065,148,Elective,2021-09-22,Inconclusive,7271,43,3,27,,,,DISCHARGED -7271,2020-10-13,20789.28877956234,127,Emergency,2020-11-04,Inconclusive,8141,359,2,15,Pain or discomfort in the pelvis,Gynecological or urological examination for potential pelvic issues and treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7271,2023-04-10,6532.309644695497,255,Emergency,2023-05-02,Normal,9988,407,4,26,,,,DISCHARGED -7272,2020-04-16,3344.3776578108336,375,Elective,2020-05-11,Normal,7272,316,2,20,Reports difficulty in concentrating and forgetfulness.,Evaluate for potential cognitive issues or underlying conditions; recommend cognitive assessments and appropriate interventions.,M54.5 - Low back pain,DISCHARGED -7273,2019-04-21,6678.583545364742,175,Elective,2019-05-07,Abnormal,7273,380,4,2,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -7273,2022-04-12,5312.1736173784575,104,Emergency,2022-05-02,Inconclusive,9112,144,0,16,,,,DISCHARGED -7274,2021-11-16,26186.030421242183,308,Elective,2021-12-09,Abnormal,7274,326,0,20,,,,DISCHARGED -7275,2021-05-29,3638.808622041157,164,Urgent,2021-06-28,Normal,7275,362,3,5,,,,DISCHARGED -7276,2020-10-19,26768.41041403627,310,Urgent,2020-11-06,Inconclusive,7276,49,1,29,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7277,2019-12-10,21858.98134712455,233,Emergency,2019-12-28,Normal,7277,64,0,5,,,,DISCHARGED -7278,2020-01-25,44079.34545470767,500,Emergency,2020-02-06,Abnormal,7278,354,1,29,,,,DISCHARGED -7279,2020-03-05,37902.61440369776,460,Urgent,2020-03-17,Normal,7279,287,2,21,,,,DISCHARGED -7280,2022-02-17,14376.30531003069,361,Urgent,2022-03-02,Normal,7280,163,2,18,,,,DISCHARGED -7282,2019-03-25,21932.92672110809,130,Urgent,2019-04-13,Normal,7282,140,1,19,,,,DISCHARGED -7283,2019-09-03,7729.990420936987,492,Urgent,2019-09-20,Normal,7283,453,3,14,,,,DISCHARGED -7284,2021-05-06,30688.05626736491,130,Emergency,2021-05-12,Normal,7284,313,4,18,,,,DISCHARGED -7285,2022-10-05,37629.88975010929,242,Emergency,2022-10-06,Abnormal,7285,127,1,1,,,,DISCHARGED -7286,2020-06-17,29645.86632358496,288,Elective,2020-06-26,Normal,7286,397,1,7,,,,DISCHARGED -7287,2018-11-18,6384.259683165454,360,Elective,2018-11-24,Abnormal,7287,420,1,6,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7288,2021-08-25,47198.38305434755,175,Urgent,2021-09-20,Abnormal,7288,367,1,26,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7289,2019-01-17,49947.56281494798,154,Emergency,2019-01-19,Inconclusive,7289,462,1,7,,,,DISCHARGED -7290,2019-09-28,39386.44181941064,201,Emergency,2019-10-17,Inconclusive,7290,238,3,12,,,,DISCHARGED -7291,2020-09-13,8545.402217475505,405,Elective,2020-09-18,Abnormal,7291,323,0,21,Persistent neck pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7292,2018-12-08,40512.7870171696,210,Elective,2018-12-17,Normal,7292,295,4,26,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7293,2023-05-30,17310.070131499404,443,Elective,,Normal,7293,186,0,14,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",OPEN -7295,2022-08-05,15723.29263320653,170,Emergency,2022-08-10,Abnormal,7295,207,1,11,,,,DISCHARGED -7296,2020-10-25,24172.795837042133,216,Urgent,2020-11-20,Abnormal,7296,219,0,14,,,,DISCHARGED -7299,2021-01-31,15212.07391488521,196,Urgent,2021-02-26,Abnormal,7299,399,3,13,,,,DISCHARGED -7300,2021-04-25,42072.98675596639,350,Elective,2021-05-04,Inconclusive,7300,189,2,6,,,,DISCHARGED -7301,2020-10-27,48132.21867296519,250,Urgent,2020-11-04,Abnormal,7301,387,0,16,,,,DISCHARGED -7302,2023-08-07,17611.99713891229,489,Urgent,2023-08-16,Inconclusive,7302,428,4,25,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7303,2022-01-03,31445.17404752583,124,Elective,2022-01-31,Normal,7303,345,3,4,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7304,2021-04-21,20736.505722524777,120,Emergency,2021-04-27,Abnormal,7304,283,2,19,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7306,2020-11-07,11395.142928508438,239,Elective,2020-11-13,Abnormal,7306,351,3,9,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7307,2021-01-31,1244.000621332449,245,Emergency,2021-02-01,Normal,7307,236,1,18,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -7308,2022-04-22,23118.67859885996,210,Elective,2022-05-14,Inconclusive,7308,193,2,17,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7309,2019-05-14,9063.481874101006,251,Emergency,2019-06-07,Abnormal,7309,286,4,29,,,,DISCHARGED -7310,2021-05-11,4802.670310740336,127,Urgent,2021-05-27,Normal,7310,258,2,29,,,,DISCHARGED -7310,2023-04-30,5651.250351468582,440,Urgent,,Abnormal,8233,245,4,24,,,,OPEN -7311,2020-10-16,31265.88194378888,403,Urgent,2020-11-12,Inconclusive,7311,135,1,23,,,,DISCHARGED -7312,2021-11-08,43564.12658775894,467,Emergency,2021-12-02,Inconclusive,7312,279,4,9,,,,DISCHARGED -7313,2022-02-11,23892.08658065549,494,Emergency,2022-03-03,Abnormal,7313,270,3,1,,,,DISCHARGED -7314,2023-08-23,9874.148894248528,471,Elective,,Abnormal,7314,170,0,5,,,,OPEN -7315,2019-02-25,32789.184430280424,206,Elective,2019-03-04,Abnormal,7315,158,3,2,,,,DISCHARGED -7316,2020-02-17,37844.0472769887,120,Emergency,2020-02-28,Inconclusive,7316,200,3,18,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -7317,2019-05-13,9682.843417848137,153,Emergency,2019-06-09,Abnormal,7317,486,2,4,,,,DISCHARGED -7319,2021-07-03,44920.11240746373,224,Elective,2021-07-12,Inconclusive,7319,44,1,6,"Complains of frequent, urgent urination.",Evaluate for urinary tract infections or bladder issues; prescribe antibiotics and recommend fluid management.,R05 - Cough,DISCHARGED -7320,2019-04-30,21661.837660256755,200,Urgent,2019-05-10,Inconclusive,7320,449,0,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7321,2023-07-07,36770.67829171979,284,Elective,,Normal,7321,263,4,26,,,,OPEN -7322,2020-06-27,49159.46187513699,261,Urgent,2020-06-28,Inconclusive,7322,70,2,9,,,,DISCHARGED -7323,2019-07-27,49368.23485879436,106,Elective,2019-08-17,Normal,7323,363,1,0,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7325,2019-01-05,10532.648283416613,149,Urgent,2019-02-03,Inconclusive,7325,370,0,10,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7326,2022-08-21,49475.70018441851,164,Urgent,2022-09-17,Normal,7326,102,3,22,Sensitivity to light and noise,Consultation with a neurologist for evaluation and management of potential migraine or sensory processing issues.,"G43.9 - Migraine, unspecified, without intractable migraine, without status migrainosus",DISCHARGED -7327,2021-06-24,15786.091589801425,429,Emergency,2021-07-06,Normal,7327,489,1,6,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7328,2020-05-23,10265.07339387778,255,Emergency,2020-06-06,Normal,7328,124,1,5,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7329,2019-10-10,7716.662985024071,430,Emergency,2019-11-06,Normal,7329,312,1,5,,,,DISCHARGED -7330,2019-09-26,41522.30587888796,409,Urgent,2019-10-23,Normal,7330,463,3,12,,,,DISCHARGED -7331,2021-09-07,2625.98297351886,358,Urgent,2021-10-01,Abnormal,7331,482,4,15,,,,DISCHARGED -7332,2022-01-17,2003.7692479004927,406,Emergency,2022-02-10,Inconclusive,7332,285,2,12,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -7333,2021-11-11,37045.19275152549,365,Elective,2021-12-01,Abnormal,7333,457,4,1,,,,DISCHARGED -7334,2022-06-21,38950.76353434449,150,Urgent,2022-07-20,Inconclusive,7334,229,0,18,,,,DISCHARGED -7335,2019-08-15,49877.69565091977,371,Urgent,2019-09-14,Normal,7335,145,2,18,,,,DISCHARGED -7336,2020-07-09,41024.06595877488,240,Emergency,2020-07-28,Inconclusive,7336,369,0,28,,,,DISCHARGED -7337,2020-04-02,47172.93316534732,368,Emergency,2020-05-02,Abnormal,7337,196,3,18,,,,DISCHARGED -7338,2023-05-21,22384.474105809688,401,Elective,2023-05-28,Abnormal,7338,372,4,17,,,,DISCHARGED -7339,2022-03-16,19451.27909273757,174,Urgent,2022-04-08,Inconclusive,7339,220,1,24,,,,DISCHARGED -7340,2022-09-18,4564.584714342207,498,Elective,2022-10-04,Normal,7340,422,2,5,,,,DISCHARGED -7341,2023-06-18,37777.25843683521,492,Emergency,2023-07-05,Normal,7341,59,1,1,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7342,2023-05-05,33814.08289483565,493,Elective,,Inconclusive,7342,97,0,18,,,,OPEN -7343,2019-04-29,11887.257112353243,315,Urgent,2019-05-14,Normal,7343,170,1,25,,,,DISCHARGED -7344,2019-08-11,31322.55260039573,172,Elective,2019-09-10,Abnormal,7344,381,1,5,,,,DISCHARGED -7345,2019-10-13,7718.712938027591,481,Emergency,2019-10-26,Normal,7345,172,3,19,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -7346,2023-03-15,14369.191173870406,266,Urgent,2023-04-08,Inconclusive,7346,150,3,22,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -7347,2019-06-17,35507.67243678987,354,Elective,2019-07-08,Normal,7347,452,4,21,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7348,2021-06-03,22688.84301631749,134,Elective,2021-06-21,Inconclusive,7348,349,0,14,,,,DISCHARGED -7349,2023-09-06,16606.961278887073,294,Urgent,,Normal,7349,389,3,5,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,OPEN -7350,2023-03-16,39959.04942750109,303,Emergency,,Inconclusive,7350,439,3,27,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",OPEN -7351,2022-09-22,9509.387200503164,428,Urgent,2022-10-11,Normal,7351,121,4,2,,,,DISCHARGED -7352,2019-10-03,46028.18327459657,323,Emergency,2019-10-18,Normal,7352,493,2,10,Difficulty in walking,Neurological evaluation for assessment of gait and potential rehabilitation.,"G81.9 - Hemiplegia, unspecified",DISCHARGED -7353,2019-02-14,33481.51754841848,103,Elective,2019-03-02,Inconclusive,7353,107,4,7,,,,DISCHARGED -7354,2018-11-30,3593.6346439365584,181,Elective,2018-12-30,Abnormal,7354,3,1,24,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7356,2019-10-23,6104.171480807141,360,Emergency,2019-10-26,Inconclusive,7356,92,1,21,,,,DISCHARGED -7358,2018-11-26,26420.97513218171,289,Emergency,2018-12-26,Inconclusive,7358,406,3,17,,,,DISCHARGED -7359,2020-02-17,47498.09660959636,336,Elective,2020-02-29,Inconclusive,7359,5,3,16,Double vision,"Correction of underlying vision issues, eye exercises, or surgery in severe cases",H52.9 - Unspecified visual loss,DISCHARGED -7360,2020-09-21,3102.520177151073,459,Urgent,2020-10-01,Inconclusive,7360,287,4,18,,,,DISCHARGED -7360,2019-06-09,46415.71303815014,424,Urgent,2019-07-08,Normal,7753,105,4,18,,,,DISCHARGED -7361,2021-05-26,17511.354247874424,305,Elective,2021-06-12,Normal,7361,145,0,23,,,,DISCHARGED -7362,2023-03-21,46186.136418578615,333,Urgent,2023-04-05,Inconclusive,7362,270,1,20,,,,DISCHARGED -7363,2019-12-30,1281.1282780073082,137,Urgent,2019-12-31,Abnormal,7363,423,4,16,,,,DISCHARGED -7364,2022-05-27,27140.922228342904,377,Emergency,2022-06-15,Normal,7364,377,2,26,,,,DISCHARGED -7366,2019-08-16,36218.09921416106,464,Emergency,2019-09-02,Inconclusive,7366,95,0,3,Excessive thirst and hunger,"Evaluation for diabetes, lifestyle modifications, and possible medication",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7367,2018-12-30,15629.941586556652,485,Urgent,2019-01-18,Abnormal,7367,456,4,6,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -7368,2019-08-23,35986.93140715571,456,Urgent,2019-09-14,Normal,7368,228,3,4,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -7369,2020-03-27,7446.201272026424,484,Urgent,2020-04-02,Inconclusive,7369,201,4,25,,,,DISCHARGED -7370,2018-11-09,27918.96096064302,429,Elective,2018-12-05,Inconclusive,7370,211,3,28,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -7372,2020-03-14,10658.782196833989,113,Elective,2020-03-15,Abnormal,7372,5,3,15,,,,DISCHARGED -7373,2022-09-02,30745.753575815357,101,Elective,2022-09-28,Normal,7373,111,1,5,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7374,2022-04-25,1360.8912942231163,370,Emergency,2022-05-08,Normal,7374,375,1,13,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7375,2019-01-28,11994.264546742726,290,Elective,2019-01-29,Normal,7375,378,4,25,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -7376,2021-11-25,47045.40079051405,411,Elective,2021-12-18,Inconclusive,7376,446,4,19,,,,DISCHARGED -7377,2020-07-12,48533.40150312601,132,Urgent,2020-08-07,Normal,7377,322,2,1,,,,DISCHARGED -7378,2019-12-04,1478.3481195815905,169,Emergency,2019-12-23,Abnormal,7378,105,0,24,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7379,2021-03-31,39856.71432033812,283,Urgent,2021-04-11,Inconclusive,7379,138,0,17,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7380,2019-11-03,29125.793415575383,366,Emergency,2019-11-14,Normal,7380,298,4,17,,,,DISCHARGED -7381,2019-08-06,20359.875578127005,145,Elective,2019-08-18,Normal,7381,400,1,12,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7383,2021-10-24,32394.229845199243,281,Elective,2021-11-08,Abnormal,7383,95,2,27,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -7384,2022-08-01,20850.358986226045,406,Urgent,2022-08-26,Inconclusive,7384,387,0,17,,,,DISCHARGED -7385,2021-07-13,34077.92896248795,192,Urgent,2021-07-31,Abnormal,7385,446,4,16,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7386,2023-10-28,6769.277346453472,386,Elective,2023-11-20,Normal,7386,451,1,12,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7387,2021-06-28,43101.60586486373,467,Urgent,2021-07-07,Inconclusive,7387,336,1,27,,,,DISCHARGED -7387,2023-05-13,20321.829790717133,296,Urgent,2023-05-20,Inconclusive,9202,296,1,11,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7388,2020-08-01,16976.601102467925,412,Emergency,2020-08-07,Normal,7388,466,3,2,,,,DISCHARGED -7389,2021-02-23,41175.74948770679,365,Elective,2021-03-12,Inconclusive,7389,388,1,21,,,,DISCHARGED -7390,2018-11-12,33056.898305941606,196,Elective,2018-11-22,Abnormal,7390,415,4,6,,,,DISCHARGED -7391,2023-02-14,49929.7987260518,455,Emergency,2023-02-16,Abnormal,7391,213,2,0,,,,DISCHARGED -7392,2020-06-26,46139.925387324336,198,Urgent,2020-07-23,Inconclusive,7392,453,4,29,,,,DISCHARGED -7392,2023-01-05,21212.336237180574,302,Urgent,2023-02-02,Inconclusive,8419,290,1,4,,,,DISCHARGED -7393,2022-02-15,47034.01300356706,220,Urgent,2022-02-19,Inconclusive,7393,21,2,20,,,,DISCHARGED -7394,2020-05-10,17150.848338674838,387,Urgent,2020-05-22,Normal,7394,192,0,0,,,,DISCHARGED -7395,2020-04-01,37087.95395226936,473,Elective,2020-04-05,Normal,7395,467,0,3,,,,DISCHARGED -7396,2023-02-10,5824.262451376051,480,Elective,2023-02-18,Abnormal,7396,149,4,25,,,,DISCHARGED -7397,2022-08-06,41554.904721816936,137,Emergency,2022-08-18,Inconclusive,7397,367,2,0,,,,DISCHARGED -7399,2021-03-16,17560.42889417878,475,Urgent,2021-03-31,Normal,7399,246,4,12,,,,DISCHARGED -7400,2022-12-07,44516.817607446654,209,Emergency,2022-12-08,Abnormal,7400,266,2,13,,,,DISCHARGED -7401,2021-11-13,1704.6336100252934,351,Emergency,2021-12-09,Inconclusive,7401,460,2,14,,,,DISCHARGED -7402,2020-12-18,47112.7380335924,248,Urgent,2020-12-20,Inconclusive,7402,250,4,16,,,,DISCHARGED -7403,2020-03-03,8371.273328608018,143,Urgent,2020-03-30,Normal,7403,489,2,11,,,,DISCHARGED -7403,2021-04-06,48301.590278803895,310,Urgent,2021-04-24,Abnormal,8841,2,1,6,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7404,2021-10-23,41803.3731700074,309,Elective,2021-11-19,Inconclusive,7404,392,2,22,,,,DISCHARGED -7405,2022-07-25,38942.65729693895,282,Elective,2022-08-11,Abnormal,7405,315,2,18,,,,DISCHARGED -7406,2019-07-02,10814.04280236292,163,Emergency,2019-07-22,Inconclusive,7406,75,4,22,,,,DISCHARGED -7407,2022-10-02,25069.46781391736,469,Emergency,2022-10-04,Normal,7407,86,0,2,,,,DISCHARGED -7408,2020-10-19,11012.49986288973,268,Emergency,2020-10-25,Normal,7408,269,3,17,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -7409,2022-12-01,24903.290377906564,414,Emergency,2022-12-05,Inconclusive,7409,224,2,25,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7410,2023-05-05,17224.410183747044,392,Elective,2023-05-23,Abnormal,7410,17,3,3,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -7411,2022-01-23,17133.008343237874,335,Elective,2022-02-16,Abnormal,7411,112,2,29,,,,DISCHARGED -7412,2019-11-07,33610.743194768555,251,Elective,2019-11-22,Inconclusive,7412,250,4,25,,,,DISCHARGED -7413,2020-06-23,23716.67081110378,140,Emergency,2020-07-17,Abnormal,7413,232,4,2,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -7414,2019-01-30,1590.4097463553687,460,Elective,2019-02-21,Normal,7414,328,2,11,,,,DISCHARGED -7415,2020-11-23,35326.6337948422,319,Urgent,2020-11-30,Normal,7415,278,4,22,,,,DISCHARGED -7416,2021-08-19,24711.070112272955,236,Urgent,2021-09-11,Abnormal,7416,201,4,27,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7417,2020-09-29,21571.727016175897,438,Emergency,2020-10-04,Inconclusive,7417,82,2,11,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7418,2022-06-21,48977.79264938505,165,Emergency,2022-07-12,Inconclusive,7418,124,0,16,,,,DISCHARGED -7419,2018-11-26,7661.288741484641,162,Urgent,2018-12-25,Inconclusive,7419,174,2,5,,,,DISCHARGED -7420,2021-03-30,13728.703049715024,475,Emergency,2021-04-27,Normal,7420,68,0,14,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -7421,2021-12-12,38569.21220081457,321,Emergency,2021-12-28,Abnormal,7421,46,4,29,,,,DISCHARGED -7422,2021-04-15,37643.026077415954,271,Elective,2021-05-03,Inconclusive,7422,371,0,1,,,,DISCHARGED -7423,2022-08-03,40430.56959668833,208,Emergency,2022-08-25,Normal,7423,255,4,7,,,,DISCHARGED -7424,2019-04-20,11032.645604499015,347,Emergency,2019-05-15,Abnormal,7424,214,0,13,,,,DISCHARGED -7425,2021-07-13,11564.3115220851,144,Emergency,2021-08-05,Inconclusive,7425,29,0,4,Tiredness and absence of vitality,"Address underlying causes such as anemia, thyroid problems, or sleep disorders. Prescribe appropriate medications or suggest lifestyle changes.",R53.83 - Other fatigue,DISCHARGED -7426,2020-01-23,30073.195135329923,150,Elective,2020-01-31,Abnormal,7426,280,2,2,,,,DISCHARGED -7428,2019-10-13,13539.668728509292,341,Emergency,2019-11-10,Inconclusive,7428,411,0,9,,,,DISCHARGED -7431,2021-09-09,43519.631793763176,136,Elective,2021-09-12,Inconclusive,7431,481,4,6,,,,DISCHARGED -7433,2019-07-16,3801.112621764575,370,Urgent,2019-08-01,Inconclusive,7433,236,2,29,,,,DISCHARGED -7434,2019-12-31,30055.591726123723,185,Urgent,2020-01-13,Normal,7434,247,0,10,,,,DISCHARGED -7435,2019-04-10,28586.20731398601,262,Emergency,2019-04-29,Abnormal,7435,367,2,14,,,,DISCHARGED -7436,2022-09-07,7221.674070155697,366,Elective,2022-09-13,Normal,7436,494,3,1,Irregular menstrual cycles and pelvic pain,"Prescribe hormonal therapy, suggest lifestyle modifications, and consider surgical options if necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -7437,2021-05-26,45141.18176872801,101,Elective,2021-06-11,Inconclusive,7437,24,2,4,,,,DISCHARGED -7438,2023-06-14,44677.05926055205,425,Emergency,,Inconclusive,7438,73,3,10,Chief complaint is a persistent feeling of tightness in the throat.,Evaluate for possible throat issues or anxiety; recommend lifestyle changes and consider anti-anxiety medications.,R10.9 - Unspecified abdominal pain,OPEN -7439,2021-11-25,40219.24804402496,412,Emergency,2021-12-03,Abnormal,7439,205,3,7,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7440,2020-05-15,26287.501879486583,472,Emergency,2020-05-17,Normal,7440,489,2,12,,,,DISCHARGED -7441,2022-03-06,5948.4688287366425,237,Emergency,2022-03-27,Normal,7441,493,4,10,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -7442,2020-01-21,6777.181085690823,418,Urgent,2020-01-24,Normal,7442,313,4,16,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -7443,2019-07-23,49324.72797131844,337,Emergency,2019-07-30,Normal,7443,93,4,14,Numbness and tingling in extremities,"Diagnostic tests (nerve conduction studies, MRI) to identify nerve issues. Treat underlying causes such as diabetes, vitamin deficiencies, or nerve compression. Physical therapy and pain management as needed. Regular follow-up to monitor symptoms and adjust treatment.","G57.90 - Mononeuropathy, unspecified",DISCHARGED -7444,2019-01-13,45192.28021610689,113,Urgent,2019-02-05,Abnormal,7444,374,1,0,,,,DISCHARGED -7445,2019-07-09,22615.639542517845,133,Emergency,2019-07-17,Abnormal,7445,126,3,18,,,,DISCHARGED -7446,2019-10-07,49570.40702682619,413,Emergency,2019-10-16,Inconclusive,7446,424,2,15,,,,DISCHARGED -7447,2019-08-16,49954.968325041846,455,Emergency,2019-09-03,Abnormal,7447,24,4,18,Abnormal eye discharge,"Antibiotics for infections, antivirals for viral infections, or other targeted treatments depending on the cause","J01.9 - Acute sinusitis, unspecified",DISCHARGED -7448,2020-04-17,8385.546001166742,361,Urgent,2020-05-11,Normal,7448,333,4,12,,,,DISCHARGED -7449,2021-06-16,32650.07223619745,224,Urgent,2021-06-22,Abnormal,7449,354,2,22,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -7450,2023-09-11,47133.1123765677,361,Urgent,2023-09-18,Normal,7450,115,3,21,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -7453,2023-03-03,48131.91947237794,361,Urgent,2023-03-22,Abnormal,7453,47,2,22,,,,DISCHARGED -7454,2022-11-08,32964.75562550961,172,Elective,2022-11-24,Inconclusive,7454,225,1,3,,,,DISCHARGED -7457,2020-11-09,7759.353096552857,312,Urgent,2020-11-27,Inconclusive,7457,265,1,10,,,,DISCHARGED -7458,2020-10-31,5979.757451023036,476,Emergency,2020-11-18,Abnormal,7458,98,2,17,Seizures and convulsions,"Antiepileptic medications, lifestyle changes, and diagnostic tests to identify the cause. Develop a seizure management plan.","G40.9 - Epilepsy, unspecified",DISCHARGED -7459,2020-02-10,25406.23372868209,178,Elective,2020-02-24,Abnormal,7459,458,3,17,,,,DISCHARGED -7460,2020-07-16,34681.09203646238,360,Urgent,2020-07-17,Abnormal,7460,10,4,9,,,,DISCHARGED -7461,2022-12-12,13730.432920688105,180,Urgent,2022-12-16,Normal,7461,84,1,16,,,,DISCHARGED -7462,2023-09-20,29315.82149081989,138,Emergency,2023-10-09,Normal,7462,404,1,29,,,,DISCHARGED -7464,2020-04-26,41866.63911363858,372,Urgent,2020-05-02,Normal,7464,213,3,12,,,,DISCHARGED -7465,2019-07-05,30068.203154665476,310,Urgent,2019-07-30,Inconclusive,7465,172,1,29,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -7466,2022-07-24,38926.43656797616,465,Emergency,2022-08-17,Inconclusive,7466,390,1,24,,,,DISCHARGED -7467,2019-04-30,35229.40427768582,205,Elective,2019-05-16,Inconclusive,7467,208,3,13,,,,DISCHARGED -7468,2020-12-28,21729.94285500025,177,Emergency,2021-01-23,Normal,7468,447,2,29,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7469,2019-06-05,17035.548681484644,221,Elective,2019-07-03,Abnormal,7469,381,4,6,,,,DISCHARGED -7471,2019-11-06,33492.87654641562,437,Elective,2019-11-20,Normal,7471,63,4,9,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -7472,2019-08-23,30585.1306811603,251,Emergency,2019-08-28,Abnormal,7472,257,1,2,,,,DISCHARGED -7473,2022-11-18,24235.38675274028,444,Emergency,2022-12-14,Normal,7473,331,4,1,,,,DISCHARGED -7475,2019-04-25,14622.252518513578,229,Emergency,2019-05-05,Abnormal,7475,120,2,29,,,,DISCHARGED -7477,2020-03-31,2237.213829753809,487,Elective,2020-04-07,Inconclusive,7477,297,1,18,,,,DISCHARGED -7478,2022-09-11,20044.03797917539,102,Emergency,2022-09-14,Abnormal,7478,465,4,6,,,,DISCHARGED -7479,2022-12-04,18257.35989313068,459,Elective,2023-01-01,Normal,7479,53,0,4,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -7480,2021-06-04,39254.47268067215,362,Elective,2021-06-17,Normal,7480,330,0,27,,,,DISCHARGED -7481,2020-02-28,43923.18154458272,470,Elective,2020-03-11,Abnormal,7481,271,0,2,,,,DISCHARGED -7482,2019-11-02,9953.065946239403,105,Emergency,2019-11-16,Inconclusive,7482,240,0,24,,,,DISCHARGED -7484,2022-03-17,49671.246513651975,409,Urgent,2022-04-09,Abnormal,7484,242,0,1,,,,DISCHARGED -7485,2019-07-30,2800.3666717192627,369,Urgent,2019-08-25,Abnormal,7485,17,1,22,,,,DISCHARGED -7486,2023-07-07,6945.9227709571005,475,Emergency,2023-08-06,Inconclusive,7486,482,3,25,,,,DISCHARGED -7486,2019-11-12,34528.275381539795,432,Urgent,2019-11-13,Inconclusive,8399,186,3,21,,,,DISCHARGED -7487,2019-03-22,25734.900690737184,378,Elective,2019-04-02,Abnormal,7487,345,1,5,,,,DISCHARGED -7489,2021-12-01,34154.26972180311,233,Urgent,2021-12-14,Normal,7489,143,1,13,,,,DISCHARGED -7490,2020-02-27,27722.4360895578,206,Elective,2020-03-19,Normal,7490,261,2,6,,,,DISCHARGED -7491,2019-05-16,28878.905360924786,431,Elective,2019-06-13,Abnormal,7491,440,3,21,,,,DISCHARGED -7492,2020-04-16,19916.144351224702,342,Elective,2020-05-15,Abnormal,7492,363,0,1,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -7493,2019-09-17,48301.6132076731,246,Elective,2019-10-11,Normal,7493,490,1,10,,,,DISCHARGED -7494,2018-11-01,9938.327634874786,186,Emergency,2018-11-24,Inconclusive,7494,430,0,20,,,,DISCHARGED -7495,2023-05-15,40617.37265241343,318,Elective,,Normal,7495,238,3,2,,,,OPEN -7496,2020-12-31,21557.962752780608,292,Emergency,2021-01-02,Abnormal,7496,303,4,8,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7497,2020-07-31,35175.01955642231,297,Urgent,2020-08-18,Abnormal,7497,297,4,7,,,,DISCHARGED -7498,2022-06-29,17396.41494720043,210,Elective,2022-07-11,Normal,7498,75,1,25,,,,DISCHARGED -7499,2021-02-15,40350.04379074857,280,Emergency,2021-03-17,Normal,7499,187,2,10,,,,DISCHARGED -7500,2023-02-01,3926.076159638417,390,Emergency,2023-02-26,Inconclusive,7500,332,0,17,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7501,2021-09-02,24120.31194826931,163,Elective,2021-09-21,Inconclusive,7501,387,1,0,,,,DISCHARGED -7502,2022-11-09,4458.713982585574,222,Emergency,2022-11-19,Inconclusive,7502,486,2,14,,,,DISCHARGED -7503,2021-07-06,43241.42067557055,263,Emergency,2021-07-21,Abnormal,7503,245,0,3,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -7504,2020-11-17,35530.414759572,317,Urgent,2020-12-12,Abnormal,7504,129,3,3,,,,DISCHARGED -7505,2023-10-13,42689.21709586649,196,Elective,2023-10-16,Normal,7505,473,4,27,,,,DISCHARGED -7506,2021-12-01,33252.597967831,138,Urgent,2021-12-26,Normal,7506,314,2,9,,,,DISCHARGED -7507,2019-12-07,8946.537283860012,281,Elective,2019-12-19,Normal,7507,410,0,10,,,,DISCHARGED -7508,2020-10-21,29349.412425786253,382,Urgent,2020-11-06,Normal,7508,282,1,17,,,,DISCHARGED -7509,2022-04-06,14935.139181821229,269,Emergency,2022-04-30,Inconclusive,7509,78,0,22,Difficulty in maintaining an erection,"Consultation with a urologist, lifestyle changes, and possible medication",N40 - Benign prostatic hyperplasia,DISCHARGED -7510,2022-07-23,39533.17700364416,176,Elective,2022-08-07,Inconclusive,7510,71,1,28,,,,DISCHARGED -7511,2023-01-18,33783.29086904596,430,Urgent,2023-01-23,Inconclusive,7511,262,4,14,,,,DISCHARGED -7513,2018-12-16,22585.332696216825,311,Urgent,2019-01-07,Normal,7513,190,4,2,,,,DISCHARGED -7514,2020-10-21,29727.458154591168,116,Emergency,2020-11-10,Normal,7514,366,0,6,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7515,2020-11-27,11846.9018454956,307,Urgent,2020-12-14,Inconclusive,7515,374,0,6,,,,DISCHARGED -7516,2018-12-05,24070.575063104447,262,Emergency,2018-12-10,Abnormal,7516,429,1,16,,,,DISCHARGED -7517,2021-03-01,17281.275060380758,229,Elective,2021-03-08,Inconclusive,7517,62,1,21,,,,DISCHARGED -7517,2023-03-30,7246.224321922904,469,Emergency,2023-04-01,Abnormal,7827,487,2,19,,,,DISCHARGED -7518,2021-09-09,15241.01319560443,330,Elective,2021-09-26,Inconclusive,7518,379,2,26,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7519,2019-01-21,19078.174491168207,234,Emergency,2019-02-18,Inconclusive,7519,11,2,23,,,,DISCHARGED -7520,2021-03-10,33010.20773855482,277,Urgent,2021-04-05,Abnormal,7520,140,0,15,,,,DISCHARGED -7522,2019-05-13,4759.932137398591,178,Elective,2019-06-07,Normal,7522,253,2,15,,,,DISCHARGED -7523,2021-07-13,23900.173952384263,156,Emergency,2021-07-16,Inconclusive,7523,42,0,7,,,,DISCHARGED -7524,2020-01-05,23955.03324012349,358,Urgent,2020-01-18,Normal,7524,16,4,2,,,,DISCHARGED -7525,2022-04-02,13749.589500401757,180,Emergency,2022-04-22,Inconclusive,7525,62,3,19,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7526,2019-10-17,25067.95406129665,214,Urgent,2019-10-25,Abnormal,7526,252,4,14,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -7527,2018-12-04,24812.64083526269,428,Elective,2018-12-31,Normal,7527,464,0,0,,,,DISCHARGED -7528,2022-01-01,47342.145612677385,286,Elective,2022-01-31,Abnormal,7528,375,0,9,,,,DISCHARGED -7529,2023-05-04,31419.59359869032,286,Elective,,Inconclusive,7529,291,3,1,,,,OPEN -7530,2020-11-27,8373.869924308441,137,Elective,2020-12-19,Normal,7530,468,1,6,,,,DISCHARGED -7531,2022-10-13,23322.28154651912,259,Emergency,2022-11-01,Normal,7531,7,1,13,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -7532,2020-08-28,11150.694338427196,159,Emergency,2020-08-30,Inconclusive,7532,324,1,15,,,,DISCHARGED -7533,2022-03-17,45799.49536639733,282,Urgent,2022-03-18,Normal,7533,89,2,26,,,,DISCHARGED -7534,2023-04-21,32429.35597646565,413,Emergency,2023-04-24,Inconclusive,7534,207,1,27,,,,DISCHARGED -7535,2020-09-23,10353.015811602032,258,Urgent,2020-09-26,Inconclusive,7535,291,2,14,,,,DISCHARGED -7536,2018-12-02,31096.17167917293,337,Emergency,2018-12-13,Abnormal,7536,283,2,6,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -7537,2021-02-19,24776.963691451743,359,Elective,2021-03-17,Inconclusive,7537,117,1,12,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -7539,2019-10-07,9249.604453365868,145,Urgent,2019-10-17,Normal,7539,348,1,24,,,,DISCHARGED -7540,2020-11-17,17003.279796990715,167,Elective,2020-12-14,Inconclusive,7540,174,3,9,,,,DISCHARGED -7541,2022-10-20,25600.23079981989,366,Urgent,2022-10-27,Abnormal,7541,75,3,8,,,,DISCHARGED -7542,2023-04-21,30967.39653599477,125,Emergency,,Abnormal,7542,100,2,8,,,,OPEN -7543,2020-05-24,12309.00015229968,221,Urgent,2020-06-07,Normal,7543,413,3,5,Persistent constipation,Consultation with a gastroenterologist for assessment and potential dietary and medical interventions.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7545,2020-03-18,27264.57685737836,306,Urgent,2020-04-08,Inconclusive,7545,150,2,23,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7547,2022-07-01,49354.88765759358,405,Emergency,2022-07-12,Abnormal,7547,399,0,24,,,,DISCHARGED -7548,2022-03-11,38712.46098213759,422,Elective,2022-03-14,Abnormal,7548,269,2,11,,,,DISCHARGED -7549,2023-10-23,26666.06848656508,227,Urgent,,Abnormal,7549,457,2,29,Frequent muscle cramps and weakness,"Electrolyte panel, assessment for nutritional deficiencies, and prescription of supplements or dietary changes.",E87.0 - Hyperosmolarity and hypernatremia,OPEN -7550,2022-04-03,25397.300218633816,362,Emergency,2022-04-22,Inconclusive,7550,70,3,22,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -7551,2023-01-20,10304.704586592808,105,Emergency,2023-02-01,Abnormal,7551,492,0,19,,,,DISCHARGED -7552,2023-06-18,36474.05836049384,379,Elective,2023-06-26,Normal,7552,179,4,29,Persistent difficulty in swallowing,"Speech therapy, dietary modifications, and addressing any anatomical or neurological issues",R47.81 - Dysphasia,DISCHARGED -7553,2020-03-14,15343.189128399616,359,Elective,2020-03-19,Normal,7553,123,4,19,Severe muscle pain and cramps,"Identification and treatment of underlying causes, muscle relaxants, and physical therapy.","M62.9 - Muscle disorder, unspecified",DISCHARGED -7554,2020-09-30,41316.53930923124,486,Urgent,2020-10-15,Normal,7554,380,4,21,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -7555,2022-12-13,39280.97229570934,332,Emergency,2022-12-31,Abnormal,7555,292,0,13,,,,DISCHARGED -7556,2022-10-21,26454.54152496901,471,Elective,2022-11-10,Inconclusive,7556,284,1,26,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -7557,2020-09-08,35268.98010936694,281,Urgent,2020-09-14,Inconclusive,7557,194,0,19,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -7558,2023-05-07,21566.39008498816,176,Emergency,,Normal,7558,398,3,26,,,,OPEN -7559,2023-08-21,42482.76834704472,396,Urgent,2023-09-04,Inconclusive,7559,227,2,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -7560,2022-03-31,27436.781941440066,296,Elective,2022-04-05,Normal,7560,430,2,7,,,,DISCHARGED -7561,2020-05-25,20254.563439425183,326,Elective,2020-06-03,Inconclusive,7561,429,3,7,,,,DISCHARGED -7562,2020-05-13,44648.80888479472,161,Urgent,2020-06-04,Normal,7562,435,3,29,Loud snoring and daytime sleepiness,"Sleep study, continuous positive airway pressure (CPAP) therapy, and lifestyle modifications. Monitor sleep quality and daytime alertness.",G47.33 - Obstructive sleep apnea,DISCHARGED -7563,2023-04-10,8077.510380160883,235,Elective,2023-04-26,Abnormal,7563,274,2,7,Difficulty in controlling bowel movements,Consultation with a gastroenterologist for assessment and potential treatment of bowel-related issues.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -7565,2022-03-20,35202.74867748666,256,Urgent,2022-03-27,Inconclusive,7565,460,1,1,,,,DISCHARGED -7566,2023-07-03,17772.670112284315,459,Emergency,2023-07-31,Abnormal,7566,105,1,13,,,,DISCHARGED -7567,2020-07-12,1276.0740036201405,223,Urgent,2020-08-01,Normal,7567,20,1,9,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -7568,2019-07-09,20042.115211190205,498,Urgent,2019-08-07,Inconclusive,7568,63,3,17,,,,DISCHARGED -7571,2022-05-14,30805.32113071227,291,Elective,2022-05-27,Abnormal,7571,164,2,17,,,,DISCHARGED -7572,2019-01-21,48613.18087703866,455,Emergency,2019-02-01,Abnormal,7572,26,2,17,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -7573,2021-12-30,26982.81019659724,161,Emergency,2022-01-09,Abnormal,7573,310,2,15,,,,DISCHARGED -7574,2022-10-24,19037.289144380786,379,Elective,2022-11-22,Normal,7574,499,0,19,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -7575,2021-03-15,40735.34224928746,487,Emergency,2021-03-23,Normal,7575,284,0,4,,,,DISCHARGED -7577,2021-07-26,11453.54796503632,446,Urgent,2021-08-20,Abnormal,7577,147,4,19,,,,DISCHARGED -7578,2022-11-16,40287.76080098123,459,Elective,2022-11-17,Inconclusive,7578,280,0,4,,,,DISCHARGED -7579,2021-05-20,37077.45492268149,320,Emergency,2021-06-15,Inconclusive,7579,325,1,19,,,,DISCHARGED -7580,2023-05-16,28612.59176559864,397,Elective,,Abnormal,7580,318,1,22,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -7581,2019-06-24,9245.928921296689,154,Elective,2019-07-19,Abnormal,7581,163,1,9,,,,DISCHARGED -7582,2022-09-01,45034.31550129354,445,Elective,2022-09-28,Normal,7582,385,1,16,,,,DISCHARGED -7583,2021-11-27,2311.084445295098,341,Urgent,2021-12-21,Normal,7583,405,4,29,Vision changes,"Eye examination, prescription glasses or contact lenses, and treatment for underlying eye conditions (e.g., cataracts, glaucoma). Monitoring for any progressive changes in vision and adjusting treatment accordingly.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7583,2022-06-22,15673.557008471418,440,Elective,2022-07-10,Abnormal,9789,223,1,12,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7584,2022-05-27,47961.16734645986,344,Elective,2022-06-16,Inconclusive,7584,271,3,16,,,,DISCHARGED -7585,2023-01-05,39405.59983581299,373,Emergency,2023-01-17,Normal,7585,145,3,17,,,,DISCHARGED -7586,2022-08-21,29803.70806986676,400,Elective,2022-08-31,Abnormal,7586,452,3,12,,,,DISCHARGED -7587,2020-12-12,2840.059836079563,480,Elective,2020-12-14,Normal,7587,437,0,16,,,,DISCHARGED -7588,2020-07-31,25687.303402688325,389,Elective,2020-08-07,Abnormal,7588,355,2,27,,,,DISCHARGED -7589,2020-06-10,44022.69970621039,478,Urgent,2020-06-30,Abnormal,7589,29,4,14,,,,DISCHARGED -7590,2020-01-25,48595.98903354435,316,Emergency,2020-02-15,Abnormal,7590,44,3,25,,,,DISCHARGED -7590,2023-01-09,41660.02058108216,419,Emergency,,Inconclusive,8922,274,3,11,,,,OPEN -7591,2020-09-22,25298.39649780224,226,Elective,2020-10-04,Inconclusive,7591,470,1,27,,,,DISCHARGED -7592,2023-10-29,31326.76492035724,428,Urgent,2023-11-19,Normal,7592,33,3,9,,,,DISCHARGED -7593,2019-01-14,29273.413310825053,124,Urgent,2019-01-29,Inconclusive,7593,140,1,12,,,,DISCHARGED -7594,2023-07-14,40373.17216182071,486,Urgent,,Normal,7594,426,1,29,Repeated infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B99.9 - Unspecified infectious disease,OPEN -7595,2019-03-17,32571.69215518851,151,Urgent,2019-03-28,Abnormal,7595,317,2,10,Chronic sinus congestion,"Nasal corticosteroids, decongestants, and allergy management. Consider surgical options if conservative measures are ineffective.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7596,2020-01-16,15958.00361033491,228,Urgent,2020-02-06,Inconclusive,7596,373,0,2,Skin rash and itching,"Conducted a physical examination and ordered skin tests to identify potential allergens or irritants. Diagnosed the patient with allergic contact dermatitis or eczema. Prescribed topical corticosteroids and antihistamines for symptom relief. Advised on skincare practices, including moisturizing and avoiding triggers. Followed up with the patient to monitor improvement and address any concerns.",L23 - Allergic contact dermatitis,DISCHARGED -7597,2022-01-07,36780.56685612672,229,Emergency,2022-01-30,Abnormal,7597,220,1,21,,,,DISCHARGED -7599,2019-01-03,17547.573809900583,390,Elective,2019-01-10,Normal,7599,355,1,9,,,,DISCHARGED -7600,2021-07-26,47575.66853569025,269,Urgent,2021-08-12,Inconclusive,7600,21,2,10,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -7601,2019-11-07,47043.76405765129,200,Elective,2019-12-05,Normal,7601,179,1,5,,,,DISCHARGED -7602,2021-07-14,2029.826589406668,423,Emergency,2021-07-31,Abnormal,7602,435,4,0,,,,DISCHARGED -7603,2019-01-22,40106.24816316746,173,Emergency,2019-02-13,Abnormal,7603,366,0,5,,,,DISCHARGED -7604,2023-06-17,18144.696741633557,317,Elective,,Inconclusive,7604,419,4,4,,,,OPEN -7605,2023-07-29,43330.42405321675,467,Elective,2023-08-13,Abnormal,7605,328,3,6,,,,DISCHARGED -7605,2020-07-01,23715.361937958616,362,Emergency,2020-07-26,Abnormal,9328,230,0,21,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7606,2019-04-17,35396.45494422474,303,Emergency,2019-04-22,Normal,7606,498,3,11,,,,DISCHARGED -7607,2021-09-24,10006.78652315574,412,Urgent,2021-10-21,Inconclusive,7607,402,1,11,,,,DISCHARGED -7608,2020-02-05,12395.468079593553,280,Emergency,2020-02-18,Abnormal,7608,37,2,6,,,,DISCHARGED -7610,2023-08-21,5590.3993575547765,181,Elective,,Normal,7610,69,4,1,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,OPEN -7611,2021-06-11,15900.065316128868,359,Emergency,2021-06-21,Abnormal,7611,115,3,27,,,,DISCHARGED -7612,2020-07-01,18268.8935760037,342,Elective,2020-07-10,Abnormal,7612,238,1,0,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -7614,2020-07-28,8772.45086080625,432,Elective,2020-08-12,Normal,7614,334,4,29,,,,DISCHARGED -7615,2020-05-08,3156.8184330689965,324,Urgent,2020-05-11,Normal,7615,440,4,22,,,,DISCHARGED -7616,2022-04-27,4499.8866998457215,197,Elective,2022-05-06,Abnormal,7616,147,3,24,,,,DISCHARGED -7617,2021-01-02,21748.6189773504,436,Elective,2021-01-30,Normal,7617,8,1,17,,,,DISCHARGED -7618,2021-01-22,12553.923219262631,411,Elective,2021-01-28,Abnormal,7618,287,2,11,,,,DISCHARGED -7619,2019-05-25,21509.15069415214,254,Emergency,2019-06-02,Abnormal,7619,387,3,6,,,,DISCHARGED -7620,2021-10-12,31995.64562501236,147,Elective,2021-10-18,Abnormal,7620,49,4,18,,,,DISCHARGED -7621,2020-08-31,45123.65092597917,261,Elective,2020-09-27,Normal,7621,337,4,21,,,,DISCHARGED -7622,2020-08-03,5779.592656388444,180,Elective,2020-08-30,Inconclusive,7622,4,0,2,,,,DISCHARGED -7623,2018-11-18,47714.51195701646,389,Urgent,2018-12-02,Inconclusive,7623,403,1,28,,,,DISCHARGED -7624,2020-10-08,5982.688136972958,266,Emergency,2020-11-02,Inconclusive,7624,342,0,9,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -7626,2022-03-23,13793.092940101482,152,Elective,2022-04-13,Inconclusive,7626,125,2,28,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7628,2018-12-27,19752.10009010144,425,Elective,2019-01-16,Inconclusive,7628,74,3,26,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7629,2020-11-22,14842.790025218645,459,Emergency,2020-11-27,Normal,7629,164,4,26,,,,DISCHARGED -7630,2020-10-19,19346.38549114672,243,Emergency,2020-11-03,Abnormal,7630,277,1,10,,,,DISCHARGED -7631,2018-10-31,18142.84307737513,255,Elective,2018-11-13,Abnormal,7631,441,4,4,,,,DISCHARGED -7632,2019-04-14,2677.185352127938,467,Emergency,2019-05-04,Normal,7632,323,0,1,,,,DISCHARGED -7633,2022-08-10,31204.62311944347,374,Emergency,2022-08-17,Abnormal,7633,476,0,7,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7634,2021-10-02,30856.406894235894,355,Elective,2021-10-22,Inconclusive,7634,299,3,13,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -7635,2021-07-14,35174.45573061164,354,Emergency,2021-07-31,Abnormal,7635,289,1,7,,,,DISCHARGED -7636,2020-03-21,11424.81216709894,251,Elective,2020-04-19,Normal,7636,76,1,22,,,,DISCHARGED -7637,2019-03-18,21781.87716637204,137,Urgent,2019-04-12,Inconclusive,7637,297,3,5,,,,DISCHARGED -7639,2021-08-01,29292.163626148085,225,Emergency,2021-08-05,Abnormal,7639,136,0,0,,,,DISCHARGED -7640,2020-01-10,36182.90739086442,188,Elective,2020-01-14,Normal,7640,105,0,23,,,,DISCHARGED -7641,2020-02-19,46643.84023934264,204,Urgent,2020-03-05,Normal,7641,94,0,0,,,,DISCHARGED -7643,2022-03-17,12313.508623174104,171,Urgent,2022-04-09,Inconclusive,7643,134,4,7,Persistent cough,"Cough suppressants, antibiotics if bacterial infection is suspected, and investigations (chest X-ray, lung function tests) to identify underlying respiratory issues. Lifestyle changes (smoking cessation, avoiding irritants) may also be recommended. Regular follow-up to assess cough resolution and manage any persistent issues.",R05 - Cough,DISCHARGED -7644,2023-01-06,38216.06919943145,134,Elective,,Normal,7644,67,2,10,,,,OPEN -7645,2022-05-28,17577.232673794424,328,Urgent,2022-06-14,Normal,7645,146,0,17,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -7646,2023-08-17,45446.40306876984,242,Elective,,Inconclusive,7646,489,2,23,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -7647,2020-08-28,32427.11276252716,156,Urgent,2020-09-27,Normal,7647,477,2,9,,,,DISCHARGED -7648,2021-03-31,22482.39614793812,499,Elective,2021-04-18,Inconclusive,7648,158,1,11,Chest pain and palpitations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -7649,2018-11-18,43402.96492054654,123,Elective,2018-12-01,Normal,7649,383,3,19,,,,DISCHARGED -7650,2021-11-23,13420.958480220388,482,Elective,2021-11-26,Inconclusive,7650,162,4,22,,,,DISCHARGED -7651,2022-04-13,31311.424660852867,230,Urgent,2022-05-01,Inconclusive,7651,440,2,15,Severe leg pain with walking,"Identification and treatment of underlying vascular or musculoskeletal conditions, lifestyle modifications, and physical therapy.","I73.9 - Peripheral vascular disease, unspecified",DISCHARGED -7652,2020-02-19,3158.890263988276,481,Emergency,2020-02-27,Inconclusive,7652,340,4,4,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -7653,2023-09-21,23191.689107501123,194,Elective,2023-10-08,Abnormal,7653,188,1,15,,,,DISCHARGED -7654,2019-04-13,22181.91768147275,370,Elective,2019-05-05,Abnormal,7654,414,0,23,Abnormal bleeding and bruising,"Conduct a comprehensive blood clotting assessment, prescribe clotting factors or other medications, and consider surgical interventions.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -7655,2021-05-02,29628.535062676077,105,Elective,2021-05-25,Normal,7655,338,2,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -7656,2019-04-27,28297.49309566936,172,Urgent,2019-05-22,Inconclusive,7656,94,3,5,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -7657,2023-02-18,49853.500988004256,481,Elective,,Normal,7657,180,1,29,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,OPEN -7659,2023-03-21,43318.943901710736,470,Urgent,,Abnormal,7659,287,4,4,Elevated cholesterol levels,"Dietary changes, exercise, and medications to lower cholesterol levels. Regular monitoring of cholesterol levels and adjustments to treatment as needed.","E78.5 - Hyperlipidemia, unspecified",OPEN -7660,2020-11-15,4148.220930134432,199,Elective,2020-11-19,Normal,7660,321,0,0,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -7661,2021-02-08,28288.43592212357,361,Elective,2021-02-22,Abnormal,7661,186,4,18,,,,DISCHARGED -7662,2022-10-30,17687.931585270235,408,Urgent,2022-11-28,Inconclusive,7662,371,3,9,,,,DISCHARGED -7663,2022-10-07,34805.203241882395,184,Elective,2022-10-14,Normal,7663,137,2,24,,,,DISCHARGED -7664,2021-10-19,10183.782288769242,272,Emergency,2021-10-29,Inconclusive,7664,129,3,13,,,,DISCHARGED -7665,2021-05-09,11981.494931619198,176,Urgent,2021-06-02,Abnormal,7665,193,4,24,Persistent nasal congestion,ENT consultation for assessment of nasal passages and potential medical or surgical interventions.,"J34.9 - Nasal disorder, unspecified",DISCHARGED -7666,2023-06-10,6935.345564503594,337,Emergency,2023-06-16,Abnormal,7666,315,4,20,,,,DISCHARGED -7667,2022-02-01,37877.60797099058,280,Elective,2022-02-21,Abnormal,7667,471,3,2,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7668,2019-10-01,48362.3539628386,117,Emergency,2019-10-04,Abnormal,7668,272,3,5,,,,DISCHARGED -7669,2020-09-02,35698.37153851072,221,Emergency,2020-09-13,Abnormal,7669,351,3,4,,,,DISCHARGED -7671,2021-08-25,12745.443238021262,308,Urgent,2021-09-19,Abnormal,7671,143,0,16,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -7672,2021-09-22,1862.8311249810265,414,Urgent,2021-10-05,Inconclusive,7672,15,4,17,,,,DISCHARGED -7673,2023-01-02,40888.37822861642,179,Elective,,Normal,7673,301,1,11,,,,OPEN -7674,2020-10-01,14978.26711171732,174,Emergency,2020-10-15,Normal,7674,422,0,4,,,,DISCHARGED -7675,2020-07-09,7192.006776039567,412,Urgent,2020-07-21,Inconclusive,7675,244,0,29,,,,DISCHARGED -7676,2020-01-11,45775.03619804968,127,Elective,2020-02-02,Abnormal,7676,414,0,8,,,,DISCHARGED -7677,2020-12-22,34233.9483511713,131,Elective,2021-01-01,Inconclusive,7677,106,1,11,,,,DISCHARGED -7678,2020-02-08,9006.068513154656,112,Urgent,2020-02-19,Inconclusive,7678,87,3,19,,,,DISCHARGED -7679,2020-08-25,22873.510387314516,129,Urgent,2020-09-24,Normal,7679,128,4,8,,,,DISCHARGED -7680,2023-09-30,44376.65774673086,374,Elective,,Abnormal,7680,394,2,2,,,,OPEN -7681,2022-11-21,13875.388597989107,429,Urgent,2022-11-23,Abnormal,7681,374,2,0,,,,DISCHARGED -7682,2019-05-14,18781.242067348667,278,Elective,2019-05-15,Normal,7682,340,4,21,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7683,2020-04-08,25782.120305549048,330,Elective,2020-04-17,Normal,7683,3,1,14,,,,DISCHARGED -7684,2023-08-27,15593.845440778265,268,Urgent,,Normal,7684,326,2,9,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,OPEN -7685,2019-12-26,27050.273411943308,104,Urgent,2020-01-22,Inconclusive,7685,409,0,13,,,,DISCHARGED -7685,2019-03-08,31419.259785053164,339,Emergency,2019-03-19,Normal,9379,366,2,6,,,,DISCHARGED -7686,2023-02-06,4454.4955768808895,493,Elective,2023-02-14,Normal,7686,305,4,3,,,,DISCHARGED -7687,2022-01-11,45038.43045134747,298,Elective,2022-01-18,Inconclusive,7687,395,0,25,Short-term memory loss,"Cognitive assessments, memory exercises, and addressing underlying causes such as stress or medical conditions. Regular follow-up to monitor progress and adjust interventions as needed.",F03.90 - Unspecified dementia without behavioral disturbance,DISCHARGED -7688,2020-09-10,39694.167419873535,133,Elective,2020-09-29,Inconclusive,7688,94,2,4,,,,DISCHARGED -7689,2020-01-26,35637.27706068588,306,Elective,2020-02-11,Inconclusive,7689,208,4,19,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -7689,2021-08-07,22519.030419525014,302,Emergency,2021-08-25,Abnormal,7757,224,1,15,,,,DISCHARGED -7689,2021-06-12,37290.977520786975,250,Emergency,2021-06-30,Inconclusive,9214,458,4,2,,,,DISCHARGED -7690,2019-11-26,4529.550047294355,204,Elective,2019-12-09,Inconclusive,7690,347,1,16,,,,DISCHARGED -7691,2021-12-06,28524.851709465114,208,Urgent,2022-01-04,Normal,7691,479,0,12,,,,DISCHARGED -7692,2021-09-09,37546.11006387198,330,Emergency,2021-09-30,Abnormal,7692,320,4,5,Reports difficulty in maintaining balance.,Conduct a neurological examination and assess for possible inner ear issues or other causes; recommend appropriate interventions.,"R00.9 - Cardiac murmurs, unspecified",DISCHARGED -7693,2019-01-15,33574.607661775735,295,Elective,2019-01-27,Normal,7693,46,3,25,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -7694,2020-05-16,16789.952494847894,336,Emergency,2020-06-04,Inconclusive,7694,475,3,4,,,,DISCHARGED -7695,2023-04-25,22428.317361134337,179,Emergency,,Abnormal,7695,180,3,15,Gastroesophageal reflux disease (GERD),"Lifestyle changes (diet, weight management), medications to reduce stomach acid, and, if necessary, surgical interventions. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,OPEN -7696,2020-08-23,27342.039211629948,407,Elective,2020-09-19,Abnormal,7696,105,3,10,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7697,2019-11-15,35750.66688616853,455,Elective,2019-11-27,Normal,7697,198,3,16,,,,DISCHARGED -7698,2021-08-05,46208.3365541836,363,Urgent,2021-08-08,Inconclusive,7698,385,1,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7699,2021-04-20,46762.16940929933,407,Elective,2021-04-25,Abnormal,7699,105,4,5,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -7700,2022-01-06,45302.95974356179,274,Elective,2022-01-15,Normal,7700,279,0,9,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -7701,2019-01-06,22412.16837033752,252,Emergency,2019-02-05,Inconclusive,7701,259,3,20,,,,DISCHARGED -7702,2023-03-08,39989.319058238354,314,Elective,2023-04-07,Normal,7702,107,3,0,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7703,2019-02-06,44495.658182367406,272,Urgent,2019-02-27,Abnormal,7703,18,0,29,Feeling of a lump in the chest,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7704,2022-03-20,2049.218709825745,203,Elective,2022-03-27,Inconclusive,7704,409,0,20,,,,DISCHARGED -7705,2020-12-07,43091.60946423059,218,Urgent,2020-12-26,Normal,7705,458,3,9,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -7706,2019-06-06,6713.31103783384,105,Elective,2019-06-22,Normal,7706,295,1,16,,,,DISCHARGED -7707,2023-09-03,5368.3604993887375,123,Emergency,2023-09-26,Normal,7707,305,0,26,,,,DISCHARGED -7707,2022-07-11,47531.80857876352,247,Urgent,2022-08-04,Inconclusive,7780,170,4,2,,,,DISCHARGED -7708,2023-06-27,30732.68742238442,409,Urgent,2023-07-20,Inconclusive,7708,330,4,27,,,,DISCHARGED -7709,2018-12-07,6958.629020585729,437,Elective,2018-12-16,Abnormal,7709,492,1,28,,,,DISCHARGED -7710,2018-11-29,18551.501874,293,Elective,2018-12-05,Normal,7710,194,2,1,,,,DISCHARGED -7711,2020-05-28,46278.79613850746,416,Elective,2020-06-25,Abnormal,7711,11,1,28,,,,DISCHARGED -7712,2020-02-17,15163.33802539704,488,Emergency,2020-03-03,Abnormal,7712,194,3,16,,,,DISCHARGED -7713,2020-10-29,37849.93139457389,455,Emergency,2020-11-19,Inconclusive,7713,489,2,3,,,,DISCHARGED -7714,2021-11-03,49746.207799581374,188,Elective,2021-11-09,Inconclusive,7714,282,3,1,,,,DISCHARGED -7716,2021-11-22,7440.760707896285,317,Emergency,2021-12-02,Abnormal,7716,368,4,4,,,,DISCHARGED -7717,2020-05-06,38389.39250726174,264,Urgent,2020-06-02,Inconclusive,7717,181,0,9,,,,DISCHARGED -7718,2020-05-25,8376.578094819706,228,Elective,2020-06-02,Abnormal,7718,449,3,0,,,,DISCHARGED -7719,2021-05-26,10199.247755534712,196,Elective,2021-06-11,Normal,7719,304,4,27,,,,DISCHARGED -7720,2022-04-29,4033.098229763275,235,Elective,2022-05-03,Inconclusive,7720,143,1,25,,,,DISCHARGED -7721,2021-10-06,18774.383817861653,207,Elective,2021-10-24,Inconclusive,7721,385,3,0,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -7722,2021-05-05,3509.5569278122102,235,Urgent,2021-05-23,Normal,7722,315,4,26,,,,DISCHARGED -7723,2019-12-28,39276.88198910996,395,Elective,2019-12-29,Inconclusive,7723,181,0,25,,,,DISCHARGED -7724,2020-04-04,43134.09555725192,492,Emergency,2020-04-13,Abnormal,7724,29,3,3,,,,DISCHARGED -7725,2021-11-08,23209.654228541734,444,Urgent,2021-11-29,Abnormal,7725,83,4,6,,,,DISCHARGED -7726,2021-11-29,6120.775741440538,122,Urgent,2021-12-23,Inconclusive,7726,165,3,13,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -7727,2020-05-05,4414.295160830624,351,Urgent,2020-05-08,Abnormal,7727,283,0,13,"Persistent, dry, hacking cough","Assessment for respiratory conditions, chest X-ray, and prescription of cough suppressants or other appropriate treatments.",J41.0 - Simple chronic bronchitis,DISCHARGED -7728,2018-12-14,48048.84834294605,149,Urgent,2019-01-07,Abnormal,7728,280,3,17,,,,DISCHARGED -7729,2022-01-06,26125.131725791376,498,Urgent,2022-01-20,Inconclusive,7729,95,3,1,,,,DISCHARGED -7730,2022-09-07,41633.44106869959,364,Emergency,2022-09-15,Inconclusive,7730,380,4,0,,,,DISCHARGED -7731,2021-11-30,32083.661556473835,445,Urgent,2021-12-19,Abnormal,7731,265,2,20,Unexplained bruising,Hematological evaluation to assess blood clotting and potential underlying issues.,"D68.9 - Hemorrhagic disorder, unspecified",DISCHARGED -7732,2023-08-03,6743.503122315439,399,Urgent,2023-08-16,Inconclusive,7732,443,3,21,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -7733,2020-10-30,48013.30131520327,153,Urgent,2020-11-04,Normal,7733,297,2,15,,,,DISCHARGED -7734,2023-04-20,40008.78406934922,282,Urgent,2023-05-12,Inconclusive,7734,295,1,28,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7735,2021-01-16,34303.92416623917,330,Elective,2021-01-28,Inconclusive,7735,224,3,21,,,,DISCHARGED -7735,2023-01-28,25298.17609805868,353,Urgent,2023-02-03,Normal,9212,332,2,17,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -7736,2021-03-17,36799.57315370416,273,Elective,2021-04-05,Inconclusive,7736,360,1,15,,,,DISCHARGED -7737,2022-02-21,2806.840574850862,241,Urgent,2022-02-25,Abnormal,7737,373,4,27,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -7738,2022-06-27,2370.414645186479,390,Elective,2022-07-24,Inconclusive,7738,41,3,27,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7739,2019-12-04,18941.661255241022,109,Elective,2019-12-15,Normal,7739,302,4,22,Difficulty walking and balance problems,"Neurological assessment, physical therapy, and assistive devices. Monitor for changes in mobility and adjust treatment as needed.","G81.90 - Hemiplegia, unspecified",DISCHARGED -7741,2023-01-13,1572.8415334497367,378,Urgent,2023-02-08,Inconclusive,7741,420,1,21,,,,DISCHARGED -7742,2019-10-21,25262.709104199024,282,Emergency,2019-11-12,Inconclusive,7742,245,4,23,,,,DISCHARGED -7743,2019-06-07,15814.965379643949,147,Elective,2019-07-06,Inconclusive,7743,207,4,5,,,,DISCHARGED -7744,2020-04-14,31251.02139876768,190,Emergency,2020-04-17,Normal,7744,236,0,24,,,,DISCHARGED -7746,2022-03-21,9835.44968867658,234,Elective,2022-04-05,Inconclusive,7746,21,1,9,Severe abdominal cramps and diarrhea,"Dietary changes, medications for gastrointestinal conditions, and rehydration.",K29.70 - Alcoholic gastritis without bleeding,DISCHARGED -7748,2020-02-17,8291.457868706462,308,Elective,2020-03-02,Normal,7748,184,4,1,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -7749,2020-01-11,32133.792653107103,495,Emergency,2020-01-27,Abnormal,7749,467,2,6,,,,DISCHARGED -7750,2023-05-14,4474.830761342988,265,Urgent,,Normal,7750,241,1,20,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",OPEN -7751,2018-11-06,47415.90555368184,273,Emergency,2018-11-09,Inconclusive,7751,362,0,16,,,,DISCHARGED -7752,2021-06-15,24805.5707409932,290,Urgent,2021-06-27,Normal,7752,282,3,2,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7754,2019-11-21,48063.80210654905,299,Urgent,2019-12-09,Abnormal,7754,40,4,19,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -7755,2023-09-20,31377.65713478639,284,Urgent,,Normal,7755,335,2,11,,,,OPEN -7756,2022-10-01,4474.671264229802,435,Elective,2022-10-29,Normal,7756,161,0,1,Sudden loss of vision,"Conduct thorough eye examinations, identify the cause, prescribe appropriate treatments, and refer for specialized care.",H54.9 - Unspecified visual impairment,DISCHARGED -7758,2020-05-05,41695.49895379978,211,Urgent,2020-05-25,Normal,7758,159,1,6,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7759,2021-06-03,1945.5584042267517,478,Emergency,2021-06-23,Inconclusive,7759,473,4,16,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -7760,2023-02-12,36797.65183415827,265,Elective,2023-03-03,Inconclusive,7760,88,0,18,,,,DISCHARGED -7762,2020-11-18,21860.784994617545,171,Urgent,2020-12-03,Normal,7762,321,0,11,,,,DISCHARGED -7763,2021-01-12,11055.393569204623,409,Emergency,2021-01-30,Normal,7763,11,2,8,,,,DISCHARGED -7764,2020-09-03,38922.33376671378,178,Elective,2020-09-07,Abnormal,7764,423,3,26,,,,DISCHARGED -7765,2020-04-19,41141.59632068442,242,Elective,2020-05-09,Abnormal,7765,72,3,13,,,,DISCHARGED -7766,2022-11-06,9840.099003880285,433,Urgent,2022-11-29,Normal,7766,75,3,1,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -7767,2023-05-15,31868.45078500088,118,Elective,2023-05-27,Inconclusive,7767,345,1,20,,,,DISCHARGED -7768,2022-08-09,29081.35570175221,405,Emergency,2022-08-14,Abnormal,7768,200,0,3,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -7768,2020-03-12,37776.91749843912,313,Emergency,2020-03-15,Normal,9361,9,1,27,,,,DISCHARGED -7769,2022-03-04,16308.114029146824,198,Emergency,2022-03-20,Normal,7769,351,0,18,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -7771,2019-08-31,39612.239526898586,441,Emergency,2019-09-30,Inconclusive,7771,225,2,20,,,,DISCHARGED -7772,2021-06-16,10491.40516226454,275,Elective,2021-06-22,Abnormal,7772,175,2,15,Swollen lymph nodes,"Investigations (blood tests, imaging studies) to identify the cause of lymph node swelling. Treatment focused on addressing the underlying condition, which may include infections or immune system disorders. Regular follow-up to monitor lymph node size and overall health.","R59.9 - Enlarged lymph nodes, unspecified",DISCHARGED -7773,2019-07-07,22748.22060244582,353,Emergency,2019-07-19,Inconclusive,7773,275,1,21,,,,DISCHARGED -7774,2023-05-03,36415.528481924746,499,Emergency,,Abnormal,7774,38,1,16,Continual throwing up,"Antiemetic medications, intravenous fluids, and diagnostic tests to identify the cause. Treat the underlying condition.",R11.0 - Nausea,OPEN -7775,2023-06-09,24936.44578934288,458,Urgent,2023-07-08,Inconclusive,7775,59,2,1,,,,DISCHARGED -7776,2019-11-23,11959.769398229046,161,Emergency,2019-12-03,Normal,7776,65,4,16,,,,DISCHARGED -7778,2021-05-07,10487.56903793358,301,Urgent,2021-05-10,Normal,7778,320,3,18,,,,DISCHARGED -7781,2019-04-22,22371.753733155776,161,Elective,2019-05-01,Inconclusive,7781,434,3,7,,,,DISCHARGED -7782,2021-10-16,32569.824969369205,464,Urgent,2021-10-17,Inconclusive,7782,123,2,23,,,,DISCHARGED -7783,2021-07-11,33361.98400499496,144,Urgent,2021-08-04,Abnormal,7783,163,3,19,,,,DISCHARGED -7784,2021-04-23,14142.877526157072,418,Emergency,2021-04-30,Inconclusive,7784,407,4,5,,,,DISCHARGED -7786,2021-09-12,42943.96369664044,236,Urgent,2021-09-16,Abnormal,7786,410,4,11,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7787,2020-03-17,10197.548363160871,127,Elective,2020-03-25,Inconclusive,7787,385,0,24,Worsening of asthma symptoms,"Adjustment of asthma medications, identification and avoidance of triggers, and regular monitoring of lung function. Consideration of long-term control medications may be necessary.",R09.82 - Postnasal drip,DISCHARGED -7789,2020-03-05,5479.926031800201,256,Urgent,2020-03-30,Normal,7789,158,1,29,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7790,2021-08-06,6134.895820650226,201,Emergency,2021-08-28,Normal,7790,56,3,22,,,,DISCHARGED -7791,2023-03-31,43701.6616833722,244,Urgent,,Inconclusive,7791,77,4,17,,,,OPEN -7793,2021-11-30,44912.76481054358,464,Emergency,2021-12-01,Inconclusive,7793,193,1,26,,,,DISCHARGED -7794,2021-09-05,24029.882379408908,261,Emergency,2021-09-28,Inconclusive,7794,284,1,1,,,,DISCHARGED -7795,2018-12-31,40492.89057419783,433,Elective,2019-01-24,Abnormal,7795,14,0,18,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -7796,2020-06-30,23416.974473249025,316,Emergency,2020-07-19,Abnormal,7796,11,1,23,,,,DISCHARGED -7797,2019-05-23,23615.1733470237,400,Elective,2019-05-30,Normal,7797,100,1,9,,,,DISCHARGED -7798,2019-09-20,19089.380809571678,245,Elective,2019-09-28,Abnormal,7798,155,2,24,,,,DISCHARGED -7799,2022-05-26,3627.179428308804,121,Elective,2022-06-21,Normal,7799,339,0,28,,,,DISCHARGED -7800,2019-08-02,46310.72667247677,453,Elective,2019-08-30,Abnormal,7800,124,0,29,Persistent heartburn and acid reflux,"Antacids, lifestyle modifications, and proton pump inhibitors. Consider further evaluation and treatment for gastroesophageal reflux disease (GERD).",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7801,2019-04-21,29847.71025219188,182,Elective,2019-05-08,Normal,7801,358,3,2,,,,DISCHARGED -7803,2020-07-05,27136.63519447968,396,Elective,2020-08-04,Inconclusive,7803,279,1,24,Difficulty in opening mouth,"Physical therapy, medications, and addressing underlying causes like temporomandibular joint disorder","M26.60 - Temporomandibular joint disorder, unspecified",DISCHARGED -7804,2020-06-24,34764.97782240485,218,Emergency,2020-07-08,Abnormal,7804,404,3,27,Unexplained lumps or bumps on the body,"Investigation for underlying causes, such as cysts, tumors, or infections. Treatment may involve observation, removal, or other medical interventions.","N40.9 - Hyperplasia of prostate, unspecified",DISCHARGED -7805,2019-01-18,20050.02566531668,186,Urgent,2019-01-31,Normal,7805,393,4,11,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7806,2019-06-28,38358.70144422049,339,Emergency,2019-07-09,Normal,7806,109,1,25,,,,DISCHARGED -7807,2021-03-30,11959.715790548446,440,Emergency,2021-04-22,Abnormal,7807,333,4,15,,,,DISCHARGED -7808,2022-09-17,45265.01644275665,430,Elective,2022-09-25,Normal,7808,356,2,11,Abnormal hair loss,"Identification and treatment of the underlying cause, which may involve medications, lifestyle changes, or topical treatments.",N94.9 - Unspecified conditions associated with female genital organs and menstrual cycle,DISCHARGED -7809,2022-11-11,42201.90733298428,290,Emergency,2022-12-03,Inconclusive,7809,145,1,7,Sudden onset of chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -7809,2022-06-06,42781.11037144584,103,Elective,2022-07-06,Abnormal,8492,215,3,4,,,,DISCHARGED -7810,2020-11-24,6895.3029667210885,427,Emergency,2020-11-27,Inconclusive,7810,397,3,10,,,,DISCHARGED -7811,2023-06-24,14460.233216944822,189,Elective,2023-07-03,Inconclusive,7811,161,1,9,,,,DISCHARGED -7812,2020-06-09,32017.27268000004,403,Urgent,2020-07-08,Abnormal,7812,127,3,2,,,,DISCHARGED -7813,2022-06-05,45443.92086452643,417,Emergency,2022-06-13,Abnormal,7813,313,1,26,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7814,2019-12-07,31611.80425783832,137,Elective,2019-12-27,Normal,7814,331,0,22,,,,DISCHARGED -7815,2020-08-29,3247.818886508557,311,Urgent,2020-09-14,Abnormal,7815,149,3,8,Persistent backache,"Physical therapy, pain management, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -7816,2021-01-15,7521.617747171937,450,Elective,2021-02-09,Abnormal,7816,453,1,11,,,,DISCHARGED -7817,2022-11-05,37040.63460571891,358,Elective,2022-12-01,Normal,7817,35,1,5,,,,DISCHARGED -7818,2023-08-05,37153.40059667414,440,Elective,,Normal,7818,172,3,18,,,,OPEN -7819,2019-12-24,40029.7656255471,346,Emergency,2020-01-11,Inconclusive,7819,419,0,15,,,,DISCHARGED -7820,2023-06-11,9799.417230085248,267,Emergency,2023-07-10,Inconclusive,7820,21,3,20,,,,DISCHARGED -7821,2021-09-05,14757.795134815808,169,Elective,2021-09-06,Inconclusive,7821,205,1,22,,,,DISCHARGED -7822,2021-03-20,24024.574530482365,300,Urgent,2021-04-08,Normal,7822,126,0,23,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -7823,2023-10-24,23314.307677866524,176,Elective,2023-10-31,Abnormal,7823,335,4,28,,,,DISCHARGED -7824,2020-04-14,24101.762141812545,449,Urgent,2020-04-26,Normal,7824,444,2,13,Unusual bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -7825,2020-02-02,24493.36628645637,260,Emergency,2020-03-03,Abnormal,7825,355,3,27,,,,DISCHARGED -7826,2022-10-20,12867.171447839715,213,Emergency,2022-10-29,Abnormal,7826,439,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -7828,2021-12-26,25193.63857168861,312,Urgent,2022-01-06,Normal,7828,216,0,17,,,,DISCHARGED -7829,2022-12-26,13210.92704386586,276,Urgent,2023-01-11,Abnormal,7829,95,0,9,,,,DISCHARGED -7830,2021-12-28,14146.195209196232,174,Emergency,2022-01-17,Inconclusive,7830,416,4,17,,,,DISCHARGED -7831,2021-08-10,40044.59129563626,140,Emergency,2021-08-21,Normal,7831,428,3,11,,,,DISCHARGED -7832,2019-01-16,31476.721721113565,107,Urgent,2019-02-11,Inconclusive,7832,163,0,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -7833,2021-06-30,49885.4061939152,267,Urgent,2021-07-07,Normal,7833,147,4,7,Difficulty swallowing,"Diagnostics such as endoscopy, dietary modifications, and medications to address esophageal issues. Monitor progress and adjust treatment as necessary.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7834,2020-03-30,29785.708241143693,408,Urgent,2020-04-11,Abnormal,7834,17,1,0,,,,DISCHARGED -7835,2019-06-20,24424.9908269495,468,Urgent,2019-07-01,Normal,7835,293,4,13,,,,DISCHARGED -7837,2021-03-03,21010.455467362124,457,Elective,2021-03-14,Inconclusive,7837,194,3,22,,,,DISCHARGED -7838,2020-05-13,5541.565143164122,439,Elective,2020-05-16,Inconclusive,7838,150,4,5,Sudden onset of hand tremors,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7839,2019-09-17,4400.285337338293,360,Emergency,2019-09-24,Abnormal,7839,479,0,13,,,,DISCHARGED -7840,2021-10-09,8261.04108859116,221,Elective,2021-10-21,Inconclusive,7840,364,0,1,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7841,2022-09-24,20226.430212594725,191,Urgent,2022-10-15,Normal,7841,122,2,8,,,,DISCHARGED -7843,2019-03-15,18427.96489198603,203,Elective,2019-04-09,Abnormal,7843,399,4,28,,,,DISCHARGED -7844,2023-09-07,42273.50095150334,404,Urgent,,Normal,7844,186,1,11,,,,OPEN -7845,2019-01-05,7553.50788964731,293,Emergency,2019-01-07,Normal,7845,452,3,4,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -7846,2022-04-09,30468.48710831845,243,Elective,2022-05-08,Inconclusive,7846,451,2,1,,,,DISCHARGED -7847,2022-12-08,5271.526491397599,479,Elective,2022-12-20,Inconclusive,7847,148,4,18,,,,DISCHARGED -7848,2022-11-18,2368.700722196308,395,Urgent,2022-12-07,Inconclusive,7848,103,1,6,,,,DISCHARGED -7849,2021-04-25,35842.414845888976,257,Emergency,2021-05-12,Inconclusive,7849,242,2,6,,,,DISCHARGED -7850,2020-05-23,2133.698601160449,484,Elective,2020-06-15,Abnormal,7850,461,0,9,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -7851,2023-03-24,25801.98340341388,244,Urgent,,Abnormal,7851,230,3,16,,,,OPEN -7852,2019-11-17,20773.26561932548,315,Urgent,2019-12-09,Abnormal,7852,478,4,25,,,,DISCHARGED -7853,2021-07-07,46520.26173993712,230,Elective,2021-08-02,Abnormal,7853,205,1,13,,,,DISCHARGED -7854,2022-03-15,6236.53487186241,429,Urgent,2022-04-14,Normal,7854,197,0,26,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -7855,2021-10-02,6483.941456539704,257,Elective,2021-10-17,Abnormal,7855,395,2,10,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",DISCHARGED -7856,2023-02-10,34309.73457970126,273,Elective,2023-02-14,Abnormal,7856,399,3,27,Depression,"Therapy (cognitive-behavioral therapy, psychotherapy) and medications (antidepressants) to address mood disorders. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -7857,2021-11-24,38692.579492860685,499,Emergency,2021-12-11,Inconclusive,7857,336,2,19,,,,DISCHARGED -7858,2022-09-10,49715.26453946666,423,Elective,2022-10-06,Normal,7858,492,2,5,,,,DISCHARGED -7859,2018-11-24,15407.96433079085,122,Urgent,2018-12-16,Inconclusive,7859,86,1,7,,,,DISCHARGED -7861,2019-05-04,33534.25583530908,262,Emergency,2019-05-21,Inconclusive,7861,141,0,18,,,,DISCHARGED -7862,2023-06-20,8079.253951961806,179,Elective,,Inconclusive,7862,316,4,29,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,OPEN -7863,2022-07-06,20179.55494060116,441,Elective,2022-07-16,Normal,7863,198,1,18,,,,DISCHARGED -7865,2021-07-25,45721.04351555346,339,Elective,2021-08-16,Normal,7865,45,3,23,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -7866,2023-10-01,34844.047491746926,234,Emergency,2023-10-02,Normal,7866,287,2,23,,,,DISCHARGED -7867,2019-02-25,33842.457246643164,113,Urgent,2019-03-04,Inconclusive,7867,14,3,23,"Chief complaint is a persistent, non-specific abdominal pain.",Conduct a thorough examination to identify the cause; may involve imaging and referral to specialists for further evaluation.,M54.5 - Low back pain,DISCHARGED -7868,2019-09-27,32362.406429892988,286,Emergency,2019-10-03,Normal,7868,43,1,16,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -7869,2022-02-18,17609.2901067118,164,Emergency,2022-02-26,Inconclusive,7869,400,1,23,,,,DISCHARGED -7870,2021-09-29,37929.15799729977,222,Urgent,2021-10-20,Normal,7870,168,4,23,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -7871,2022-10-14,16102.415539445275,500,Elective,2022-10-15,Abnormal,7871,309,2,17,,,,DISCHARGED -7872,2022-10-01,10726.744848153305,118,Elective,2022-10-08,Abnormal,7872,494,1,11,,,,DISCHARGED -7873,2022-07-12,1704.480241031892,192,Elective,2022-08-06,Normal,7873,43,3,8,,,,DISCHARGED -7874,2020-09-17,36273.54520730225,208,Elective,2020-10-13,Normal,7874,97,4,22,,,,DISCHARGED -7875,2021-03-13,2042.608388212213,214,Elective,2021-04-12,Inconclusive,7875,260,3,23,,,,DISCHARGED -7876,2021-01-15,4505.2774209551935,410,Urgent,2021-01-21,Inconclusive,7876,108,2,15,,,,DISCHARGED -7877,2021-01-16,16536.666679728813,101,Emergency,2021-02-09,Inconclusive,7877,282,4,17,,,,DISCHARGED -7878,2023-02-08,1954.7285284503505,417,Emergency,2023-03-06,Normal,7878,371,4,15,,,,DISCHARGED -7879,2021-03-09,10716.56503761419,394,Emergency,2021-03-18,Normal,7879,342,4,15,,,,DISCHARGED -7880,2022-12-25,46483.87360757595,322,Emergency,2022-12-27,Abnormal,7880,103,0,3,,,,DISCHARGED -7881,2020-04-27,17572.34257507783,179,Elective,2020-05-03,Normal,7881,255,4,22,,,,DISCHARGED -7882,2020-11-12,40976.08942886659,265,Elective,2020-11-19,Abnormal,7882,378,3,21,,,,DISCHARGED -7883,2023-08-24,30800.86619773728,424,Urgent,2023-09-21,Inconclusive,7883,205,3,6,,,,DISCHARGED -7884,2020-11-30,23959.36171982866,414,Elective,2020-12-06,Abnormal,7884,334,2,0,,,,DISCHARGED -7885,2021-11-19,13511.72328178813,183,Emergency,2021-11-30,Normal,7885,42,1,23,,,,DISCHARGED -7886,2023-04-11,31141.452383221167,357,Emergency,2023-05-06,Abnormal,7886,352,1,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7887,2023-08-17,3455.5464277487595,329,Urgent,2023-08-26,Normal,7887,244,0,22,,,,DISCHARGED -7888,2020-06-15,33770.298323908464,227,Urgent,2020-07-09,Abnormal,7888,286,4,28,,,,DISCHARGED -7889,2023-01-17,14419.957166055648,387,Emergency,2023-01-18,Inconclusive,7889,354,0,19,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -7890,2023-01-06,39743.38481979622,405,Elective,2023-01-07,Normal,7890,272,2,0,,,,DISCHARGED -7891,2019-04-24,9056.11036796189,277,Urgent,2019-05-02,Abnormal,7891,475,2,7,,,,DISCHARGED -7892,2021-03-30,16645.254196291266,247,Elective,2021-04-27,Abnormal,7892,82,1,25,,,,DISCHARGED -7893,2019-01-05,32763.32794025565,196,Urgent,2019-01-08,Inconclusive,7893,109,2,22,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -7894,2019-09-27,37532.9870148227,251,Urgent,2019-10-21,Normal,7894,437,4,7,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -7895,2019-09-21,31147.01871956208,124,Elective,2019-09-26,Inconclusive,7895,189,3,9,,,,DISCHARGED -7896,2021-01-09,38828.5649058704,346,Urgent,2021-01-13,Inconclusive,7896,470,2,0,Burning sensation during urination,"Urinalysis, assessment for urinary tract infection, and prescription of antibiotics if confirmed.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -7897,2021-08-19,7136.77653246491,478,Elective,2021-08-20,Abnormal,7897,287,0,20,,,,DISCHARGED -7898,2018-12-31,25049.791327162555,358,Urgent,2019-01-04,Inconclusive,7898,423,4,24,,,,DISCHARGED -7899,2021-12-12,8612.9581220524,323,Elective,2021-12-30,Inconclusive,7899,396,2,20,,,,DISCHARGED -7900,2021-06-24,43370.39587486161,197,Urgent,2021-06-25,Inconclusive,7900,250,2,28,Feeling of a lump in the groin,"Evaluation by a physician, possible imaging studies or referral to a specialist",R10.9 - Unspecified abdominal pain,DISCHARGED -7901,2021-08-10,13133.514334257978,127,Urgent,2021-08-29,Normal,7901,211,4,13,,,,DISCHARGED -7902,2022-11-30,28890.320561252756,467,Emergency,2022-12-11,Inconclusive,7902,290,2,13,Sudden onset of foot numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -7903,2021-10-17,13872.230802670872,420,Emergency,2021-10-22,Abnormal,7903,132,3,9,,,,DISCHARGED -7904,2019-11-20,9771.778448210434,356,Emergency,2019-12-05,Abnormal,7904,200,1,27,,,,DISCHARGED -7905,2023-07-26,23655.90092030198,394,Emergency,2023-08-07,Inconclusive,7905,284,4,18,,,,DISCHARGED -7906,2020-03-15,16735.599193249585,295,Elective,2020-04-04,Inconclusive,7906,325,0,24,,,,DISCHARGED -7907,2020-02-13,28163.491270007355,299,Urgent,2020-02-19,Inconclusive,7907,408,2,28,,,,DISCHARGED -7908,2019-01-02,26446.13896969572,317,Emergency,2019-01-26,Abnormal,7908,94,1,15,,,,DISCHARGED -7909,2020-05-06,29523.8450385338,468,Emergency,2020-05-08,Normal,7909,277,0,8,,,,DISCHARGED -7910,2022-03-26,28551.288189323288,205,Elective,2022-04-12,Normal,7910,449,0,19,,,,DISCHARGED -7911,2021-02-06,35122.48348027565,173,Urgent,2021-03-06,Normal,7911,428,3,15,,,,DISCHARGED -7912,2021-04-15,27526.40595488985,413,Urgent,2021-05-08,Inconclusive,7912,324,1,19,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -7914,2019-09-08,2136.711562218529,305,Urgent,2019-10-01,Inconclusive,7914,218,4,26,,,,DISCHARGED -7915,2021-12-17,24016.3313538022,327,Urgent,2021-12-22,Inconclusive,7915,88,1,7,,,,DISCHARGED -7916,2021-01-22,1902.1131216083488,136,Elective,2021-01-27,Abnormal,7916,71,1,6,Unexplained changes in bowel habits,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -7917,2021-11-28,14762.063716513072,186,Emergency,2021-12-11,Abnormal,7917,246,0,10,,,,DISCHARGED -7918,2020-03-11,11821.174189375522,237,Emergency,2020-03-29,Normal,7918,128,3,20,,,,DISCHARGED -7919,2018-12-12,28389.13161584998,440,Emergency,2019-01-08,Inconclusive,7919,211,3,5,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -7920,2023-03-27,15830.618866459588,117,Elective,2023-04-02,Normal,7920,427,1,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -7921,2019-02-24,13296.347302606027,335,Urgent,2019-03-02,Abnormal,7921,342,1,18,,,,DISCHARGED -7921,2019-07-02,31866.124175432706,322,Elective,2019-07-16,Normal,8964,95,2,13,,,,DISCHARGED -7922,2022-06-14,8315.877633169357,157,Urgent,2022-07-10,Abnormal,7922,74,0,14,,,,DISCHARGED -7924,2021-07-06,46363.79689305256,460,Emergency,2021-07-27,Inconclusive,7924,422,4,5,,,,DISCHARGED -7925,2020-07-19,41955.41001462372,462,Urgent,2020-07-30,Abnormal,7925,494,4,28,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -7926,2019-05-08,42565.01532080216,480,Urgent,2019-06-06,Abnormal,7926,53,3,23,,,,DISCHARGED -7926,2023-01-26,3708.014755954044,189,Elective,2023-02-23,Inconclusive,8315,343,0,9,,,,DISCHARGED -7927,2020-05-14,39685.56807450206,450,Urgent,2020-05-27,Normal,7927,458,3,13,,,,DISCHARGED -7928,2022-03-27,16878.05992028713,257,Emergency,2022-03-29,Normal,7928,412,4,15,,,,DISCHARGED -7929,2023-09-11,12826.466559755483,206,Elective,2023-10-05,Normal,7929,53,1,12,,,,DISCHARGED -7930,2022-06-30,47634.95678681968,468,Elective,2022-07-24,Inconclusive,7930,217,0,10,,,,DISCHARGED -7931,2018-12-15,49346.30429552528,223,Emergency,2019-01-07,Normal,7931,15,0,24,,,,DISCHARGED -7932,2020-05-27,3180.575344076771,330,Emergency,2020-06-14,Abnormal,7932,98,2,2,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -7933,2022-07-27,37881.29220145484,132,Urgent,2022-08-10,Inconclusive,7933,19,1,7,,,,DISCHARGED -7934,2022-12-26,27521.06037262449,195,Elective,2022-12-27,Abnormal,7934,45,1,27,,,,DISCHARGED -7936,2022-01-20,35304.09548678137,120,Emergency,2022-02-11,Normal,7936,450,3,2,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -7937,2021-09-08,35247.61623416267,150,Emergency,2021-09-12,Abnormal,7937,192,0,1,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -7938,2018-12-15,17647.824014810394,465,Emergency,2019-01-07,Normal,7938,382,3,20,,,,DISCHARGED -7939,2023-02-06,33409.58085113268,483,Emergency,2023-02-09,Abnormal,7939,57,1,13,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -7939,2022-09-24,21760.266228445307,260,Elective,2022-10-06,Normal,9265,436,2,19,,,,DISCHARGED -7940,2019-04-13,44605.10704855014,195,Urgent,2019-05-05,Inconclusive,7940,110,0,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -7941,2019-11-30,9146.001745938682,448,Emergency,2019-12-10,Inconclusive,7941,128,1,20,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -7942,2019-08-23,35759.59793004762,430,Urgent,2019-09-13,Inconclusive,7942,336,2,21,,,,DISCHARGED -7943,2019-05-26,33019.01576878836,226,Emergency,2019-06-18,Abnormal,7943,193,4,14,,,,DISCHARGED -7944,2023-06-27,42133.651975696426,197,Urgent,2023-07-14,Inconclusive,7944,412,1,2,,,,DISCHARGED -7945,2019-10-25,20942.10431975059,433,Emergency,2019-11-19,Normal,7945,339,4,0,,,,DISCHARGED -7946,2022-09-02,6787.122071407948,333,Elective,2022-09-18,Normal,7946,325,3,14,,,,DISCHARGED -7947,2021-03-26,39731.90218474498,378,Emergency,2021-04-20,Inconclusive,7947,7,4,19,,,,DISCHARGED -7948,2019-01-10,49675.48297875196,475,Urgent,2019-01-28,Abnormal,7948,28,1,21,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -7952,2022-06-04,32894.35765823763,115,Elective,2022-06-22,Normal,7952,111,4,1,,,,DISCHARGED -7953,2023-07-28,18033.72680262501,295,Urgent,,Normal,7953,434,0,17,,,,OPEN -7954,2019-07-25,8408.620870595569,445,Emergency,2019-08-21,Normal,7954,160,1,0,,,,DISCHARGED -7955,2023-01-02,44487.59572380077,266,Emergency,,Abnormal,7955,130,2,8,,,,OPEN -7957,2020-04-27,4214.611851238462,473,Elective,2020-05-17,Inconclusive,7957,187,4,2,,,,DISCHARGED -7958,2019-01-05,2620.7427686378837,353,Urgent,2019-01-09,Normal,7958,162,0,1,,,,DISCHARGED -7959,2020-06-28,12385.737665048577,151,Urgent,2020-07-14,Abnormal,7959,196,3,3,,,,DISCHARGED -7960,2023-03-16,32917.84530749517,295,Emergency,2023-04-04,Normal,7960,474,3,15,,,,DISCHARGED -7961,2021-11-18,39381.61261074992,186,Elective,2021-11-21,Normal,7961,363,4,21,,,,DISCHARGED -7962,2021-06-23,32466.875185721023,400,Urgent,2021-07-05,Abnormal,7962,203,3,0,Excessive ear wax,"Ear drops, ear irrigation, and addressing any underlying ear conditions","H60.9 - Otitis externa, unspecified",DISCHARGED -7963,2021-09-29,34824.572632110576,117,Emergency,2021-10-12,Abnormal,7963,211,2,8,,,,DISCHARGED -7964,2021-01-26,14791.407815936833,432,Elective,2021-02-07,Inconclusive,7964,108,1,24,,,,DISCHARGED -7966,2020-11-17,3390.355788072462,371,Emergency,2020-12-14,Abnormal,7966,275,0,7,,,,DISCHARGED -7967,2019-05-02,26932.975881030183,167,Emergency,2019-05-28,Abnormal,7967,72,4,5,,,,DISCHARGED -7968,2023-01-14,22977.04755013185,187,Emergency,,Inconclusive,7968,166,3,19,,,,OPEN -7969,2023-09-03,47034.5007084385,262,Elective,2023-09-23,Inconclusive,7969,259,1,17,,,,DISCHARGED -7970,2023-06-01,41943.39930023557,224,Emergency,2023-06-02,Abnormal,7970,242,2,15,,,,DISCHARGED -7971,2020-06-18,25717.903364204863,353,Urgent,2020-07-11,Inconclusive,7971,274,3,7,,,,DISCHARGED -7972,2019-04-14,29635.76863758357,209,Emergency,2019-04-18,Inconclusive,7972,101,3,22,,,,DISCHARGED -7973,2021-04-21,18011.6687619248,153,Emergency,2021-05-08,Abnormal,7973,474,0,27,,,,DISCHARGED -7974,2020-07-31,15380.864467483172,432,Urgent,2020-08-04,Inconclusive,7974,172,2,29,,,,DISCHARGED -7975,2023-01-20,24797.4275291282,404,Elective,2023-02-07,Normal,7975,170,2,3,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -7976,2022-02-04,26977.850157884208,203,Elective,2022-03-03,Inconclusive,7976,140,4,2,,,,DISCHARGED -7977,2020-07-16,14883.719365732752,180,Urgent,2020-08-08,Normal,7977,396,0,14,,,,DISCHARGED -7978,2021-07-20,17098.469362828666,446,Emergency,2021-07-24,Inconclusive,7978,187,4,5,Recurring episodes of blurred vision and eye pain,"Eye examination, assessment for underlying eye conditions, and prescription of corrective lenses or other appropriate treatments.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -7979,2023-08-05,26584.38046797354,280,Emergency,,Normal,7979,440,0,0,,,,OPEN -7981,2023-09-01,48670.6485746654,414,Urgent,2023-09-09,Normal,7981,85,2,17,,,,DISCHARGED -7982,2020-03-17,11869.28365115142,203,Elective,2020-03-31,Inconclusive,7982,475,0,22,,,,DISCHARGED -7983,2021-02-07,4466.509870388432,314,Emergency,2021-02-12,Abnormal,7983,51,0,10,,,,DISCHARGED -7984,2020-12-19,13689.239045463744,440,Emergency,2021-01-09,Abnormal,7984,110,0,2,,,,DISCHARGED -7985,2021-12-23,36066.43015392841,250,Urgent,2022-01-09,Inconclusive,7985,436,1,29,,,,DISCHARGED -7986,2019-11-27,29769.69862572903,234,Emergency,2019-12-12,Inconclusive,7986,364,1,12,,,,DISCHARGED -7989,2021-07-25,35770.321186130815,320,Elective,2021-07-29,Normal,7989,341,2,16,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -7990,2021-08-17,9299.230454822056,253,Urgent,2021-09-06,Inconclusive,7990,42,0,17,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -7991,2021-02-07,23677.85046968515,357,Urgent,2021-02-14,Abnormal,7991,210,2,25,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -7991,2020-11-28,36026.93518906284,440,Urgent,2020-12-26,Normal,8163,455,1,25,,,,DISCHARGED -7993,2020-09-18,9366.04465678097,459,Urgent,2020-10-07,Inconclusive,7993,499,0,13,,,,DISCHARGED -7994,2019-12-14,19941.988504235927,259,Urgent,2020-01-01,Abnormal,7994,199,4,24,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -7995,2022-08-08,1777.330521600477,124,Urgent,2022-08-20,Inconclusive,7995,297,1,6,,,,DISCHARGED -7996,2019-05-30,14038.735754443547,167,Elective,2019-06-04,Inconclusive,7996,345,1,6,,,,DISCHARGED -7997,2021-10-08,7482.822583433615,382,Urgent,2021-10-12,Inconclusive,7997,239,1,13,,,,DISCHARGED -7998,2020-04-13,24429.46037518099,334,Emergency,2020-04-29,Abnormal,7998,114,0,25,,,,DISCHARGED -7999,2019-06-26,28522.68683883542,448,Urgent,2019-07-02,Abnormal,7999,25,3,23,,,,DISCHARGED -8000,2022-09-28,44157.88796829378,391,Urgent,2022-10-25,Abnormal,8000,406,4,14,,,,DISCHARGED -8001,2022-10-29,48795.34957616802,147,Emergency,2022-11-28,Normal,8001,298,4,11,,,,DISCHARGED -8002,2020-01-28,44610.623561795175,112,Urgent,2020-02-07,Inconclusive,8002,76,2,11,,,,DISCHARGED -8003,2021-02-25,2288.6750533199747,404,Urgent,2021-02-28,Inconclusive,8003,411,0,7,,,,DISCHARGED -8004,2023-06-23,18877.345951072017,143,Emergency,2023-07-12,Abnormal,8004,136,1,15,,,,DISCHARGED -8005,2023-07-31,36638.91942957427,138,Urgent,2023-08-22,Normal,8005,19,3,8,,,,DISCHARGED -8006,2023-04-14,30619.874984804617,131,Urgent,,Inconclusive,8006,439,0,1,,,,OPEN -8007,2019-12-17,41649.70399638107,162,Emergency,2019-12-29,Inconclusive,8007,210,0,13,,,,DISCHARGED -8008,2021-11-15,34802.67778278916,309,Elective,2021-11-24,Inconclusive,8008,239,3,23,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -8009,2019-11-12,19162.83510227641,492,Urgent,2019-12-10,Abnormal,8009,38,1,23,,,,DISCHARGED -8010,2022-07-23,17189.857186421206,369,Urgent,2022-08-17,Abnormal,8010,434,0,28,,,,DISCHARGED -8011,2018-11-30,7497.967096445521,469,Elective,2018-12-02,Inconclusive,8011,267,4,15,,,,DISCHARGED -8013,2020-07-14,40039.25622407387,333,Elective,2020-08-07,Abnormal,8013,206,4,4,,,,DISCHARGED -8014,2023-01-04,20091.838921682003,391,Emergency,2023-01-05,Inconclusive,8014,478,3,4,,,,DISCHARGED -8016,2023-03-12,40384.2501216712,242,Elective,2023-03-23,Inconclusive,8016,438,1,19,,,,DISCHARGED -8016,2022-12-27,26980.772259471087,129,Emergency,2023-01-22,Inconclusive,9702,461,3,29,,,,DISCHARGED -8017,2019-08-04,4267.079919594942,491,Emergency,2019-08-07,Inconclusive,8017,266,0,20,,,,DISCHARGED -8018,2021-02-18,15137.31621014056,465,Urgent,2021-02-24,Normal,8018,153,4,17,,,,DISCHARGED -8019,2023-05-26,47346.49011336828,490,Elective,,Abnormal,8019,41,2,17,Bowel irregularities,"Dietary changes, fiber supplements, and medications to regulate bowel movements. Further testing for underlying conditions such as inflammatory bowel disease. Regular follow-up to assess bowel function and adjust treatment.",K58.9 - Irritable bowel syndrome without diarrhea,OPEN -8020,2021-09-06,21008.125728737767,110,Emergency,2021-10-05,Inconclusive,8020,410,3,4,,,,DISCHARGED -8022,2020-09-25,49591.48878231641,231,Urgent,2020-10-11,Normal,8022,10,2,10,Chest pain radiating to the arm,"Emergency medical attention; evaluation for possible heart-related issues, including ECG and cardiac enzymes.","I20.9 - Angina pectoris, unspecified",DISCHARGED -8023,2022-12-05,30813.72310001923,393,Elective,2022-12-11,Abnormal,8023,293,2,12,,,,DISCHARGED -8024,2023-05-23,37857.19461111237,410,Elective,2023-05-24,Inconclusive,8024,97,4,2,,,,DISCHARGED -8024,2021-01-26,12573.135605697154,205,Elective,2021-02-20,Inconclusive,8555,426,3,16,Visual disturbances and eye pain,"Investigation for underlying eye conditions, corrective lenses, medications, or surgical interventions depending on the diagnosis.",H52.9 - Unspecified visual loss,DISCHARGED -8025,2022-04-27,3046.992905391492,421,Elective,2022-04-30,Inconclusive,8025,274,2,24,,,,DISCHARGED -8026,2021-02-11,22619.828323771188,246,Emergency,2021-02-12,Normal,8026,447,0,17,,,,DISCHARGED -8027,2019-10-30,1532.6661191521391,120,Urgent,2019-11-09,Normal,8027,389,1,13,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8028,2022-05-23,5944.992954293303,314,Urgent,2022-06-04,Abnormal,8028,429,1,11,,,,DISCHARGED -8029,2021-07-08,17587.51498684621,118,Elective,2021-07-10,Abnormal,8029,371,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8030,2020-05-30,9708.574296331106,172,Urgent,2020-05-31,Abnormal,8030,229,3,25,,,,DISCHARGED -8031,2020-12-07,16142.049025876117,480,Elective,2020-12-31,Normal,8031,368,3,17,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -8032,2023-05-25,39736.58023804133,227,Urgent,2023-06-12,Inconclusive,8032,425,1,29,,,,DISCHARGED -8033,2019-08-31,29386.26818230457,404,Elective,2019-09-14,Abnormal,8033,219,0,19,,,,DISCHARGED -8034,2019-07-27,21548.447469971776,246,Emergency,2019-08-14,Abnormal,8034,64,1,1,,,,DISCHARGED -8035,2020-06-03,17909.13878021324,128,Urgent,2020-06-27,Inconclusive,8035,354,1,6,,,,DISCHARGED -8036,2022-11-19,33473.32332722099,237,Emergency,2022-12-13,Inconclusive,8036,231,3,14,,,,DISCHARGED -8037,2022-10-07,15649.485023824673,488,Elective,2022-10-12,Inconclusive,8037,327,2,27,,,,DISCHARGED -8038,2022-10-29,46387.14647433006,365,Elective,2022-11-26,Inconclusive,8038,442,0,9,,,,DISCHARGED -8039,2021-03-29,49114.82027460238,404,Elective,2021-04-03,Inconclusive,8039,51,3,14,Difficulty in chewing,"Dental evaluation, treatment of oral health issues, and sometimes physical therapy","K02.9 - Dental caries, unspecified",DISCHARGED -8040,2018-12-09,43337.404539403935,247,Elective,2019-01-05,Normal,8040,373,1,16,,,,DISCHARGED -8041,2020-01-27,12067.591897507951,334,Urgent,2020-02-16,Normal,8041,430,2,10,Joint pain and stiffness,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and improve joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8042,2019-12-01,22361.69522542653,233,Emergency,2019-12-03,Normal,8042,375,0,1,,,,DISCHARGED -8043,2022-11-23,33863.638143614495,469,Elective,2022-12-17,Abnormal,8043,262,4,26,Thyroid dysfunction,"Thyroid function tests, medications to regulate thyroid hormones, and lifestyle changes. Regular monitoring of thyroid function and adjustments to treatment as needed.",E04.9 - Unspecified thyroid disorder,DISCHARGED -8044,2023-06-01,28633.65151052959,398,Emergency,2023-06-11,Abnormal,8044,266,0,20,Feeling of pressure in the head,Neurological evaluation for potential causes of head pressure and appropriate management.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8045,2019-10-04,19116.828971499068,314,Elective,2019-10-08,Inconclusive,8045,358,0,17,,,,DISCHARGED -8046,2020-03-30,14589.914858118653,138,Elective,2020-04-09,Inconclusive,8046,316,1,24,,,,DISCHARGED -8047,2021-04-22,42683.87948917641,202,Urgent,2021-05-22,Abnormal,8047,323,1,3,,,,DISCHARGED -8048,2019-01-24,10591.009673587014,139,Elective,2019-01-29,Normal,8048,408,4,8,,,,DISCHARGED -8049,2020-07-07,24963.74716875285,265,Emergency,2020-07-26,Inconclusive,8049,395,4,26,Persistent feelings of fear or dread,"Counseling, psychotherapy, and potentially medications for anxiety or panic disorders. Evaluation for underlying mental health conditions is essential.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8050,2019-01-29,29554.88672560693,461,Emergency,2019-02-26,Inconclusive,8050,153,4,27,,,,DISCHARGED -8051,2019-04-22,8562.407906626475,222,Emergency,2019-05-18,Normal,8051,357,3,16,,,,DISCHARGED -8052,2023-09-16,6684.271348449877,118,Urgent,2023-09-28,Normal,8052,365,3,16,,,,DISCHARGED -8053,2019-02-13,18760.81392229971,249,Emergency,2019-03-04,Inconclusive,8053,139,1,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8054,2019-05-08,15854.758749961986,217,Urgent,2019-06-04,Inconclusive,8054,426,1,29,,,,DISCHARGED -8055,2019-07-25,28949.005309941866,472,Emergency,2019-08-24,Abnormal,8055,50,4,15,,,,DISCHARGED -8056,2019-10-01,38485.656349510034,412,Elective,2019-10-31,Abnormal,8056,116,3,19,,,,DISCHARGED -8057,2023-03-07,24397.07139592009,213,Emergency,2023-03-13,Inconclusive,8057,420,2,24,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8059,2021-03-10,1865.7538063463944,190,Urgent,2021-03-28,Abnormal,8059,45,3,7,,,,DISCHARGED -8060,2019-09-25,29102.039615518763,292,Urgent,2019-10-04,Inconclusive,8060,308,1,22,,,,DISCHARGED -8061,2022-08-16,3937.714377524664,454,Elective,2022-09-14,Inconclusive,8061,87,3,14,,,,DISCHARGED -8062,2019-07-02,22741.25592031215,195,Elective,2019-07-16,Inconclusive,8062,207,1,0,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8065,2022-02-24,17745.148897040537,338,Elective,2022-03-12,Inconclusive,8065,376,4,18,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8066,2022-03-24,31074.71075388216,412,Elective,2022-04-20,Normal,8066,268,4,24,,,,DISCHARGED -8067,2021-02-14,15085.36450794674,238,Urgent,2021-02-27,Inconclusive,8067,88,4,14,,,,DISCHARGED -8068,2019-09-10,14244.655626313588,450,Urgent,2019-10-07,Inconclusive,8068,380,2,8,,,,DISCHARGED -8070,2020-11-21,31429.059757826144,158,Urgent,2020-11-22,Normal,8070,117,2,4,,,,DISCHARGED -8071,2021-02-01,29351.18509657692,405,Urgent,2021-03-03,Normal,8071,53,1,15,,,,DISCHARGED -8072,2020-12-21,24977.800089659773,333,Urgent,2021-01-05,Normal,8072,440,0,27,Excessive hair loss,Dermatological evaluation for assessment of hair loss causes and initiation of appropriate treatment.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8073,2021-07-25,24410.4160731522,497,Elective,2021-08-10,Normal,8073,115,2,12,,,,DISCHARGED -8075,2023-08-18,16178.730138081652,339,Elective,,Normal,8075,117,1,15,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",OPEN -8076,2021-11-18,39922.07039964093,417,Emergency,2021-12-05,Inconclusive,8076,259,3,21,Difficulty sleeping and irritability,"Conducted a thorough sleep history and diagnosed the patient with insomnia. Recommended cognitive-behavioral therapy for insomnia (CBT-I) to address underlying sleep disturbances and improve sleep hygiene. Prescribed short-term hypnotic medications if necessary. Advised on lifestyle modifications, including maintaining a consistent sleep schedule and avoiding stimulants before bedtime.","G47.00 - Insomnia, unspecified",DISCHARGED -8077,2021-12-08,31288.036175160087,428,Emergency,2021-12-17,Inconclusive,8077,74,4,10,,,,DISCHARGED -8078,2023-07-31,37995.5917246705,263,Elective,2023-08-04,Inconclusive,8078,479,4,12,,,,DISCHARGED -8079,2020-03-04,44783.95533354963,391,Emergency,2020-03-07,Normal,8079,304,4,5,,,,DISCHARGED -8080,2022-04-14,43277.13904435948,227,Elective,2022-04-27,Normal,8080,6,1,25,,,,DISCHARGED -8081,2019-07-07,49777.67115002487,301,Urgent,2019-08-01,Normal,8081,365,4,19,,,,DISCHARGED -8082,2023-07-02,41495.55968603143,228,Emergency,,Abnormal,8082,121,2,16,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",OPEN -8083,2022-01-02,12861.65498960089,227,Elective,2022-01-18,Inconclusive,8083,10,3,4,,,,DISCHARGED -8084,2023-09-12,35773.670655190006,250,Elective,,Normal,8084,347,4,28,"Chief complaint is a sudden, severe pain in the abdomen.",Urgently assess for potential abdominal emergencies; conduct imaging and provide appropriate surgical or medical interventions.,"N39.0 - Urinary tract infection, site not specified",OPEN -8085,2023-04-06,20939.862312985933,222,Emergency,2023-04-27,Abnormal,8085,437,1,16,Alterations in vision and eye discomfort,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye discomfort. Treat underlying eye conditions.","H52.1 - Myopia, unspecified eye",DISCHARGED -8087,2019-10-07,34575.10208382801,296,Elective,2019-10-21,Abnormal,8087,488,3,0,,,,DISCHARGED -8088,2020-12-03,20528.587507838394,270,Urgent,2020-12-24,Inconclusive,8088,214,4,26,,,,DISCHARGED -8089,2020-06-02,12944.13835129208,424,Elective,2020-06-19,Normal,8089,428,0,4,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8090,2023-09-03,11848.781462569274,123,Emergency,2023-09-14,Normal,8090,278,4,4,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8091,2019-09-13,21793.986508167032,198,Urgent,2019-10-12,Normal,8091,497,2,6,,,,DISCHARGED -8092,2019-03-20,23389.21909820357,147,Elective,2019-03-30,Inconclusive,8092,27,3,15,,,,DISCHARGED -8093,2023-01-25,20685.706228150317,274,Emergency,2023-02-07,Inconclusive,8093,234,2,17,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8094,2019-03-12,11734.302836704854,125,Urgent,2019-04-10,Inconclusive,8094,366,0,5,,,,DISCHARGED -8095,2020-07-09,27684.43237575122,402,Elective,2020-07-11,Abnormal,8095,312,0,1,,,,DISCHARGED -8096,2021-03-25,34062.387353531754,446,Urgent,2021-03-30,Inconclusive,8096,25,2,12,,,,DISCHARGED -8097,2022-03-31,22117.67472674186,357,Elective,2022-04-12,Normal,8097,408,3,9,,,,DISCHARGED -8098,2021-08-03,43098.71002996974,258,Elective,2021-08-15,Abnormal,8098,53,0,20,Frequent back pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8099,2021-04-08,26605.08394638205,202,Emergency,2021-05-04,Abnormal,8099,28,0,19,,,,DISCHARGED -8100,2020-12-27,32693.3475802384,176,Elective,2021-01-19,Abnormal,8100,466,4,10,,,,DISCHARGED -8101,2023-03-16,11055.808953041364,313,Urgent,2023-03-30,Normal,8101,352,1,25,,,,DISCHARGED -8102,2021-10-10,4668.285337054693,439,Emergency,2021-11-06,Abnormal,8102,163,0,20,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -8103,2021-07-11,12858.59156706464,276,Elective,2021-07-18,Abnormal,8103,269,3,1,,,,DISCHARGED -8104,2020-05-26,28929.953261186696,124,Urgent,2020-06-19,Inconclusive,8104,333,3,7,,,,DISCHARGED -8105,2020-11-12,30162.582575883735,285,Elective,2020-12-12,Inconclusive,8105,34,4,23,Difficulty in hearing high-pitched sounds,"Audiological assessment, evaluation for underlying ear conditions, and management of hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8106,2022-06-27,17072.454149204434,256,Elective,2022-07-27,Normal,8106,285,3,21,,,,DISCHARGED -8108,2022-12-22,15909.992366885155,249,Elective,2023-01-08,Normal,8108,347,4,18,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8109,2021-05-19,17358.003543321513,122,Emergency,2021-06-16,Inconclusive,8109,272,0,19,,,,DISCHARGED -8110,2023-05-11,17364.806535577223,242,Elective,2023-05-17,Normal,8110,450,0,16,,,,DISCHARGED -8112,2022-04-17,44128.50464867092,262,Emergency,2022-04-21,Inconclusive,8112,207,0,15,,,,DISCHARGED -8113,2022-10-17,3012.391100738386,402,Elective,2022-11-10,Abnormal,8113,237,0,24,,,,DISCHARGED -8114,2023-09-27,10233.646538853262,115,Elective,2023-10-04,Abnormal,8114,413,1,9,,,,DISCHARGED -8115,2019-01-31,20441.07817968359,268,Emergency,2019-03-01,Inconclusive,8115,499,1,4,,,,DISCHARGED -8117,2021-09-17,32730.72946207612,115,Urgent,2021-10-03,Normal,8117,92,0,13,Pain and swelling in the knee joint,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -8118,2021-09-02,18872.496276636622,247,Elective,2021-09-27,Normal,8118,172,3,23,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8119,2022-08-20,17194.422885715467,401,Emergency,2022-09-07,Abnormal,8119,78,4,18,,,,DISCHARGED -8120,2020-03-05,18863.735622974946,490,Elective,2020-04-03,Inconclusive,8120,109,2,3,,,,DISCHARGED -8121,2020-04-30,20628.00818333727,180,Elective,2020-05-01,Inconclusive,8121,216,4,19,,,,DISCHARGED -8122,2020-01-14,14037.703378817114,467,Elective,2020-02-05,Normal,8122,434,2,15,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8123,2019-01-06,49367.10326129973,243,Emergency,2019-01-21,Abnormal,8123,357,2,23,,,,DISCHARGED -8124,2021-06-25,21581.423337379685,322,Elective,2021-07-25,Abnormal,8124,105,0,14,,,,DISCHARGED -8125,2018-11-28,49701.36599806445,228,Elective,2018-12-26,Abnormal,8125,46,2,27,,,,DISCHARGED -8126,2023-02-22,1700.053606371073,380,Emergency,,Abnormal,8126,180,0,8,,,,OPEN -8127,2021-12-15,38646.81128708596,251,Emergency,2021-12-28,Normal,8127,63,1,2,,,,DISCHARGED -8128,2022-01-03,22352.881112797684,343,Urgent,2022-01-05,Normal,8128,245,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8129,2022-09-11,10175.554780789307,284,Emergency,2022-09-28,Inconclusive,8129,243,2,8,,,,DISCHARGED -8130,2019-12-03,45467.23942769469,277,Emergency,2019-12-24,Abnormal,8130,421,3,17,,,,DISCHARGED -8131,2020-09-07,26241.95612971654,453,Urgent,2020-09-30,Inconclusive,8131,319,0,3,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8132,2022-08-20,26042.26742413884,271,Elective,2022-09-18,Abnormal,8132,86,2,18,,,,DISCHARGED -8133,2021-01-27,37808.50969214741,365,Urgent,2021-02-24,Normal,8133,216,4,23,,,,DISCHARGED -8135,2019-08-21,41509.42590540384,453,Elective,2019-09-20,Normal,8135,489,1,3,,,,DISCHARGED -8137,2019-10-08,29269.66182627233,367,Emergency,2019-10-25,Abnormal,8137,6,1,8,,,,DISCHARGED -8138,2023-01-19,45128.96454828569,139,Elective,,Abnormal,8138,277,2,0,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8139,2023-06-25,32684.7719649079,342,Elective,,Normal,8139,336,1,0,,,,OPEN -8140,2022-09-14,2095.687238387226,367,Elective,2022-10-10,Abnormal,8140,209,4,19,Rash with itching and redness on the arms and legs,"Assessment for allergic reactions or skin conditions, topical or oral anti-inflammatory medications.","L29.9 - Pruritus, unspecified",DISCHARGED -8142,2023-04-04,48075.27871728106,414,Urgent,2023-04-24,Normal,8142,496,3,18,,,,DISCHARGED -8143,2021-10-16,28969.43809564237,282,Urgent,2021-10-26,Normal,8143,168,4,2,,,,DISCHARGED -8144,2023-08-29,34509.27029228193,109,Elective,,Normal,8144,329,1,9,,,,OPEN -8145,2019-09-11,1084.422303472434,421,Emergency,2019-10-04,Normal,8145,137,3,11,Persistent ankle pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8146,2022-12-29,46396.11167993047,317,Urgent,2023-01-14,Inconclusive,8146,440,4,17,,,,DISCHARGED -8147,2020-09-17,12321.440452901628,172,Emergency,2020-10-08,Normal,8147,390,0,13,,,,DISCHARGED -8148,2020-04-21,27698.5271708579,361,Urgent,2020-04-27,Abnormal,8148,495,0,9,Difficulty in achieving orgasm,"Consultation with a sex therapist, relationship counseling, and possible medical evaluation","J96.00 - Acute respiratory failure, unspecified whether with hypoxia",DISCHARGED -8149,2022-11-04,45717.8568733596,202,Urgent,2022-11-05,Normal,8149,380,3,9,,,,DISCHARGED -8150,2021-11-05,46083.13258409305,468,Urgent,2021-12-04,Normal,8150,305,3,17,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8151,2023-10-30,11449.716676880198,490,Emergency,2023-11-05,Abnormal,8151,229,3,23,,,,DISCHARGED -8152,2023-08-20,45758.100330583824,428,Emergency,,Inconclusive,8152,474,0,0,,,,OPEN -8153,2023-04-21,31043.650104158936,185,Elective,2023-05-07,Inconclusive,8153,307,4,29,,,,DISCHARGED -8154,2022-10-06,31540.30734617747,305,Urgent,2022-10-13,Inconclusive,8154,160,3,14,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -8155,2021-03-02,9324.88021823037,323,Urgent,2021-03-11,Abnormal,8155,0,0,7,,,,DISCHARGED -8156,2021-03-07,45495.08518507029,301,Elective,2021-03-22,Inconclusive,8156,235,3,25,,,,DISCHARGED -8157,2021-11-25,14665.11355699728,142,Elective,2021-12-13,Abnormal,8157,436,3,2,,,,DISCHARGED -8158,2019-03-06,12281.14362722844,230,Urgent,2019-03-25,Normal,8158,187,3,17,,,,DISCHARGED -8159,2021-10-06,18077.153268402544,199,Emergency,2021-10-14,Normal,8159,417,0,8,,,,DISCHARGED -8160,2020-12-31,49180.4800862382,209,Urgent,2021-01-05,Inconclusive,8160,3,4,15,,,,DISCHARGED -8161,2020-12-09,16158.25569514116,154,Urgent,2021-01-05,Inconclusive,8161,400,0,20,,,,DISCHARGED -8162,2021-07-28,33426.44968815497,220,Urgent,2021-08-03,Abnormal,8162,131,0,14,,,,DISCHARGED -8164,2023-01-16,38848.17033967297,257,Emergency,2023-02-07,Abnormal,8164,426,3,29,,,,DISCHARGED -8165,2021-09-03,14316.42825944667,367,Emergency,2021-09-06,Abnormal,8165,217,2,4,,,,DISCHARGED -8166,2020-12-07,32377.83582902399,413,Urgent,2020-12-11,Abnormal,8166,259,2,12,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8168,2020-01-31,39484.59465133421,395,Elective,2020-02-10,Abnormal,8168,0,2,21,Sudden onset of shoulder stiffness,"Orthopedic evaluation, imaging studies, and possible physical therapy",M25.50 - Pain in unspecified joint,DISCHARGED -8169,2022-01-09,48006.407283263165,450,Emergency,2022-01-15,Abnormal,8169,70,0,19,,,,DISCHARGED -8170,2020-06-24,12314.148393642512,424,Urgent,2020-07-21,Normal,8170,477,3,6,,,,DISCHARGED -8171,2020-08-23,17046.06634961922,106,Elective,2020-09-08,Inconclusive,8171,177,2,15,,,,DISCHARGED -8173,2020-12-23,27947.42441906278,440,Elective,2021-01-07,Normal,8173,456,1,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8174,2023-09-30,11150.064814619383,432,Elective,2023-10-03,Normal,8174,188,1,26,,,,DISCHARGED -8175,2021-04-25,16636.364895615956,176,Urgent,2021-05-20,Abnormal,8175,290,1,24,,,,DISCHARGED -8176,2021-12-27,18908.843523342905,132,Elective,2022-01-20,Normal,8176,7,4,21,,,,DISCHARGED -8177,2022-06-10,14443.695294742984,189,Elective,2022-06-11,Abnormal,8177,252,3,15,,,,DISCHARGED -8179,2020-06-30,20862.724134298933,229,Elective,2020-07-27,Abnormal,8179,407,0,12,,,,DISCHARGED -8180,2021-12-10,27602.565483626488,434,Urgent,2021-12-28,Normal,8180,466,0,16,,,,DISCHARGED -8181,2022-01-27,31753.077634604208,372,Elective,2022-02-02,Inconclusive,8181,291,3,8,,,,DISCHARGED -8182,2023-09-03,29389.31778160135,283,Elective,,Normal,8182,433,4,11,,,,OPEN -8183,2021-06-12,2347.804003261987,345,Emergency,2021-06-17,Inconclusive,8183,243,3,12,Difficulty in balancing,Evaluation by a neurologist for a comprehensive assessment of balance-related problems and potential rehabilitation.,"R27.0 - Ataxia, unspecified",DISCHARGED -8184,2022-07-01,26552.30027906584,435,Emergency,2022-07-14,Normal,8184,122,4,25,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -8185,2019-07-13,28628.37240462693,303,Urgent,2019-08-12,Normal,8185,298,2,8,,,,DISCHARGED -8186,2019-09-26,28176.838868388462,246,Urgent,2019-10-21,Abnormal,8186,282,2,4,,,,DISCHARGED -8187,2019-10-25,38838.10519530371,152,Emergency,2019-11-05,Abnormal,8187,31,4,6,Intestinal irregularities,"Dietary changes, fiber supplements, and medications for constipation or diarrhea. Investigate and treat underlying gastrointestinal conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8188,2021-03-29,1596.9012780504906,456,Urgent,2021-04-15,Normal,8188,333,3,0,,,,DISCHARGED -8189,2023-02-05,1036.0790678076903,135,Elective,,Normal,8189,376,2,3,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,OPEN -8190,2020-07-13,17165.75843783682,440,Urgent,2020-07-28,Inconclusive,8190,145,3,27,,,,DISCHARGED -8191,2023-05-08,37582.77715765098,135,Urgent,2023-05-13,Abnormal,8191,155,2,25,,,,DISCHARGED -8192,2022-06-02,8120.30003185976,446,Elective,2022-06-29,Abnormal,8192,412,3,3,,,,DISCHARGED -8193,2020-05-19,12393.441109697676,282,Urgent,2020-06-18,Inconclusive,8193,15,3,15,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",DISCHARGED -8193,2020-11-02,43383.040981795006,317,Urgent,2020-11-20,Normal,9590,354,1,4,,,,DISCHARGED -8194,2022-03-18,23728.64050755175,220,Urgent,2022-03-28,Abnormal,8194,46,4,21,,,,DISCHARGED -8195,2021-09-19,15178.111047743025,356,Urgent,2021-10-18,Normal,8195,250,0,3,Abnormal skin discoloration,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -8197,2019-03-11,14781.337851482873,358,Elective,2019-03-30,Normal,8197,186,4,5,Unexplained reduction in body weight,Diagnostic tests to identify the underlying cause. Develop a treatment plan based on the specific diagnosis.,R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8199,2023-02-21,47547.16557898432,205,Elective,2023-03-01,Abnormal,8199,30,3,25,,,,DISCHARGED -8200,2022-09-15,46311.15130096009,425,Elective,2022-09-29,Inconclusive,8200,259,3,22,,,,DISCHARGED -8201,2019-04-07,34038.91066945543,348,Emergency,2019-04-14,Inconclusive,8201,420,4,2,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8202,2019-09-21,30550.628272190235,410,Urgent,2019-09-26,Normal,8202,16,3,24,,,,DISCHARGED -8203,2020-09-12,32645.36846590968,258,Elective,2020-09-15,Inconclusive,8203,38,2,7,,,,DISCHARGED -8204,2018-12-15,46218.211974603226,203,Elective,2018-12-31,Normal,8204,303,3,16,,,,DISCHARGED -8205,2023-07-24,17586.129732065914,444,Elective,2023-08-10,Normal,8205,429,4,28,,,,DISCHARGED -8206,2021-04-27,41078.14985222499,413,Elective,2021-05-16,Abnormal,8206,473,4,17,,,,DISCHARGED -8207,2019-05-11,34279.98739240158,414,Urgent,2019-05-18,Normal,8207,431,4,17,,,,DISCHARGED -8209,2019-06-30,40276.97082034466,158,Emergency,2019-07-01,Normal,8209,38,1,25,,,,DISCHARGED -8210,2021-01-28,7502.061908290743,466,Emergency,2021-02-24,Inconclusive,8210,488,1,24,,,,DISCHARGED -8211,2021-02-02,33743.984111235186,119,Urgent,2021-03-04,Inconclusive,8211,131,1,11,,,,DISCHARGED -8213,2022-07-12,6987.26302786904,245,Urgent,2022-07-15,Normal,8213,29,1,24,,,,DISCHARGED -8214,2021-12-13,27535.205056834813,308,Elective,2021-12-20,Normal,8214,157,1,24,Worsening of chronic pain conditions,"Pain management medications, physical therapy, and evaluation for changes in the underlying condition.",M79.1 - Myalgia,DISCHARGED -8215,2020-03-06,17762.446925208802,329,Urgent,2020-03-07,Abnormal,8215,277,1,0,,,,DISCHARGED -8216,2020-07-02,39061.50521683533,413,Emergency,2020-07-18,Normal,8216,202,1,22,Sudden onset of arm weakness,"Neurological evaluation, imaging studies, and possible physical therapy","G47.9 - Sleep disorder, unspecified",DISCHARGED -8217,2022-09-12,11041.17914606933,225,Emergency,2022-09-18,Abnormal,8217,65,4,11,,,,DISCHARGED -8219,2023-10-06,20781.9359512618,482,Elective,2023-10-15,Normal,8219,107,0,10,,,,DISCHARGED -8219,2023-02-24,32701.924144207984,405,Urgent,2023-03-15,Normal,9646,267,1,12,,,,DISCHARGED -8220,2019-07-12,25737.38428790393,402,Emergency,2019-07-24,Abnormal,8220,221,4,2,,,,DISCHARGED -8221,2021-03-23,17301.879823357995,243,Emergency,2021-04-07,Abnormal,8221,291,0,26,,,,DISCHARGED -8221,2022-12-25,42819.60872991142,395,Urgent,2023-01-21,Abnormal,9118,17,1,24,,,,DISCHARGED -8222,2019-07-02,18887.098181081088,354,Urgent,2019-07-23,Abnormal,8222,89,0,7,,,,DISCHARGED -8223,2023-07-11,34363.185592446855,119,Elective,,Inconclusive,8223,180,0,2,,,,OPEN -8224,2023-01-04,43828.06650639463,117,Urgent,2023-01-23,Abnormal,8224,254,2,16,,,,DISCHARGED -8225,2021-04-04,46809.30431582996,104,Urgent,2021-04-10,Inconclusive,8225,454,3,24,,,,DISCHARGED -8226,2020-02-10,13912.006090260644,340,Elective,2020-03-03,Abnormal,8226,252,2,12,,,,DISCHARGED -8228,2021-10-31,18915.940457037697,469,Emergency,2021-11-28,Inconclusive,8228,256,0,9,,,,DISCHARGED -8229,2022-08-17,23334.53997035574,236,Urgent,2022-08-20,Normal,8229,382,4,16,"Persistent, non-productive cough","Chest X-ray, assessment for respiratory conditions, and prescription of cough suppressants or other appropriate treatments.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8230,2020-04-20,20654.878628662267,125,Urgent,2020-04-23,Abnormal,8230,441,1,2,,,,DISCHARGED -8231,2022-10-08,29820.19746380228,490,Emergency,2022-10-15,Normal,8231,345,3,12,,,,DISCHARGED -8234,2021-05-25,49764.53091429238,309,Emergency,2021-06-12,Inconclusive,8234,86,1,21,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8236,2021-09-04,31615.57642691528,394,Urgent,2021-09-07,Inconclusive,8236,89,4,5,,,,DISCHARGED -8238,2023-10-16,33630.60534591856,143,Urgent,2023-10-27,Normal,8238,236,3,13,,,,DISCHARGED -8239,2020-12-25,35569.58120224116,206,Elective,2021-01-10,Normal,8239,389,2,26,Constant fatigue,"Identifying and addressing underlying causes, lifestyle changes, and sometimes medications",R53.83 - Other fatigue,DISCHARGED -8240,2021-01-18,18993.263614677868,160,Emergency,2021-02-01,Normal,8240,69,0,9,,,,DISCHARGED -8241,2022-09-13,28377.109104338037,198,Elective,2022-10-08,Inconclusive,8241,43,4,19,,,,DISCHARGED -8242,2021-08-19,16772.071428086085,150,Emergency,2021-09-12,Inconclusive,8242,199,0,15,,,,DISCHARGED -8243,2022-10-31,34500.706211185694,119,Elective,2022-11-27,Abnormal,8243,151,0,17,,,,DISCHARGED -8244,2022-12-03,10136.537037566552,173,Emergency,2022-12-11,Inconclusive,8244,85,1,12,,,,DISCHARGED -8245,2021-04-07,31216.924469266207,335,Elective,2021-04-12,Inconclusive,8245,18,4,9,,,,DISCHARGED -8246,2021-07-29,20607.06279243067,452,Urgent,2021-08-18,Inconclusive,8246,100,0,5,,,,DISCHARGED -8246,2019-09-26,46724.30354131043,209,Emergency,2019-10-25,Abnormal,9594,401,2,9,,,,DISCHARGED -8247,2022-09-07,9969.772316244218,489,Emergency,2022-09-17,Normal,8247,94,3,4,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8248,2023-10-04,44137.53001306059,382,Urgent,2023-10-06,Abnormal,8248,253,4,28,Persistent feeling of fullness in the abdomen,"Investigation for underlying gastrointestinal or abdominal conditions, and treatment based on the diagnosis.",R10.9 - Unspecified abdominal pain,DISCHARGED -8249,2020-04-26,39061.3302155582,199,Elective,2020-05-14,Inconclusive,8249,356,1,5,Muscle cramps,"Hydration, electrolyte balance, and sometimes medications for underlying causes","E87.9 - Fluid overload, unspecified",DISCHARGED -8250,2018-11-29,4517.581380501233,160,Elective,2018-12-09,Abnormal,8250,29,4,6,,,,DISCHARGED -8251,2022-07-01,38426.257969882834,493,Elective,2022-07-21,Inconclusive,8251,248,1,10,,,,DISCHARGED -8252,2019-06-22,21517.865453191334,105,Elective,2019-07-15,Abnormal,8252,425,3,15,Sudden numbness or weakness in the face or limbs,Immediate medical attention for neurological evaluation and potential intervention.,R29.0 - Headache,DISCHARGED -8253,2022-06-13,46288.587414587055,200,Urgent,2022-06-14,Normal,8253,32,2,24,,,,DISCHARGED -8255,2021-01-21,2539.900332189388,366,Emergency,2021-02-04,Inconclusive,8255,457,0,11,,,,DISCHARGED -8256,2020-09-04,28110.55377044643,170,Urgent,2020-09-28,Normal,8256,228,4,11,,,,DISCHARGED -8258,2020-04-21,3837.451205474301,475,Elective,2020-05-14,Abnormal,8258,11,1,29,,,,DISCHARGED -8260,2019-12-11,46071.51763959746,212,Emergency,2019-12-18,Abnormal,8260,117,3,22,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -8261,2021-11-27,38341.92896119356,200,Elective,2021-12-27,Normal,8261,349,0,19,,,,DISCHARGED -8262,2023-06-23,35508.752827718825,283,Urgent,2023-07-13,Inconclusive,8262,154,3,25,,,,DISCHARGED -8264,2022-09-29,1827.9396774334384,181,Emergency,2022-10-17,Normal,8264,422,2,4,,,,DISCHARGED -8265,2021-08-13,33259.38570442068,460,Elective,2021-09-10,Abnormal,8265,392,0,15,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8266,2021-04-05,38171.68266076186,306,Elective,2021-04-06,Abnormal,8266,245,0,28,,,,DISCHARGED -8267,2020-12-27,4513.79417586097,299,Emergency,2021-01-06,Inconclusive,8267,404,0,5,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -8268,2018-11-13,8537.58184521964,133,Emergency,2018-11-27,Abnormal,8268,331,1,28,,,,DISCHARGED -8269,2021-04-17,46965.88762564629,445,Elective,2021-04-30,Abnormal,8269,246,0,8,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -8270,2020-02-04,21342.291982984403,349,Elective,2020-02-10,Normal,8270,28,3,4,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -8271,2022-10-27,40468.538140267054,211,Elective,2022-11-12,Inconclusive,8271,160,1,20,,,,DISCHARGED -8272,2023-01-27,6964.237866340817,198,Elective,2023-02-10,Normal,8272,234,0,22,,,,DISCHARGED -8273,2018-11-10,7304.660576641682,229,Elective,2018-12-01,Normal,8273,189,3,15,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -8274,2021-02-02,45037.46269886021,312,Emergency,2021-02-26,Normal,8274,116,3,17,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8275,2020-10-15,15002.463921110377,326,Elective,2020-10-21,Abnormal,8275,270,4,18,,,,DISCHARGED -8276,2020-03-02,6282.546819679948,355,Emergency,2020-03-07,Inconclusive,8276,257,3,11,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8278,2019-06-24,29743.361920748925,406,Elective,2019-06-26,Inconclusive,8278,179,2,1,,,,DISCHARGED -8279,2018-11-23,24793.520279808545,306,Emergency,2018-12-16,Normal,8279,486,0,25,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8280,2022-06-23,13557.317658573716,105,Urgent,2022-06-24,Normal,8280,372,0,9,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8281,2022-06-23,16457.371931855716,392,Elective,2022-07-08,Abnormal,8281,171,0,11,,,,DISCHARGED -8282,2023-02-20,38697.31564743623,327,Elective,,Abnormal,8282,437,3,13,,,,OPEN -8283,2021-12-02,42705.4087931323,493,Urgent,2021-12-23,Abnormal,8283,273,3,17,,,,DISCHARGED -8284,2023-06-05,18219.78450729501,190,Emergency,,Abnormal,8284,258,0,18,Patient describes a history of chronic fatigue syndrome.,"Provide supportive care, recommend lifestyle changes, and consider medications to manage symptoms.",M25.5 - Pain in joint,OPEN -8285,2019-12-09,24187.761031066933,121,Emergency,2019-12-14,Abnormal,8285,134,1,5,,,,DISCHARGED -8286,2020-01-20,18397.33414002344,422,Elective,2020-01-23,Abnormal,8286,170,1,4,,,,DISCHARGED -8287,2019-12-04,48386.39238101044,331,Elective,2019-12-08,Inconclusive,8287,209,2,26,,,,DISCHARGED -8288,2022-08-25,37027.03703077011,396,Urgent,2022-08-26,Inconclusive,8288,235,4,15,,,,DISCHARGED -8289,2019-02-13,21265.85465934489,142,Urgent,2019-03-06,Inconclusive,8289,421,2,13,,,,DISCHARGED -8290,2020-03-22,14403.00588435372,406,Emergency,2020-03-30,Inconclusive,8290,420,0,12,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -8291,2020-07-26,39890.98833261332,297,Urgent,2020-08-21,Abnormal,8291,185,0,20,,,,DISCHARGED -8292,2020-11-15,34443.94650094133,281,Elective,2020-12-09,Inconclusive,8292,416,0,1,,,,DISCHARGED -8293,2019-04-14,29837.116698559254,489,Elective,2019-05-04,Normal,8293,363,4,1,Memory decline and perplexity,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.","F01.9 - Vascular dementia, unspecified",DISCHARGED -8294,2021-02-14,49428.167508309794,390,Urgent,2021-02-17,Inconclusive,8294,442,3,11,,,,DISCHARGED -8296,2022-10-29,28072.654601027945,245,Emergency,2022-11-05,Normal,8296,94,4,0,,,,DISCHARGED -8297,2020-08-17,37027.31534592706,336,Elective,2020-08-19,Normal,8297,377,2,18,,,,DISCHARGED -8298,2019-08-23,41979.64105239214,231,Emergency,2019-09-21,Inconclusive,8298,10,3,27,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8299,2023-01-03,37118.28417017284,296,Urgent,2023-01-23,Abnormal,8299,67,3,27,,,,DISCHARGED -8300,2020-04-18,47350.37315158523,432,Emergency,2020-04-27,Normal,8300,378,2,26,,,,DISCHARGED -8301,2020-03-25,15160.477689471663,480,Urgent,2020-04-18,Inconclusive,8301,209,3,15,,,,DISCHARGED -8302,2023-10-23,21289.84276502331,230,Emergency,,Normal,8302,195,1,29,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,OPEN -8303,2020-05-12,8365.254966987366,458,Emergency,2020-06-01,Inconclusive,8303,368,2,6,,,,DISCHARGED -8304,2023-06-16,47837.80026291821,123,Emergency,,Abnormal,8304,97,2,26,,,,OPEN -8307,2021-04-21,41191.93397607293,456,Elective,2021-05-12,Inconclusive,8307,92,1,20,,,,DISCHARGED -8308,2019-01-10,6637.021910141978,199,Emergency,2019-02-07,Inconclusive,8308,471,4,6,,,,DISCHARGED -8309,2023-05-30,8199.03831110839,473,Emergency,2023-06-24,Abnormal,8309,21,4,15,,,,DISCHARGED -8310,2021-12-31,44281.65802476424,428,Emergency,2022-01-07,Normal,8310,449,4,24,,,,DISCHARGED -8311,2020-04-07,34848.34524505698,308,Emergency,2020-04-22,Inconclusive,8311,171,3,5,,,,DISCHARGED -8313,2022-11-16,12851.42958189394,301,Urgent,2022-12-10,Abnormal,8313,382,1,17,Sudden onset of joint pain,"Anti-inflammatory medication, joint rest, and possible rheumatology consultation","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8314,2023-03-12,3110.029727725993,353,Elective,,Normal,8314,133,2,0,,,,OPEN -8316,2020-08-16,12630.4021618884,310,Elective,2020-09-10,Normal,8316,425,2,0,,,,DISCHARGED -8317,2022-07-24,12093.058672847565,439,Urgent,2022-08-15,Normal,8317,24,2,25,,,,DISCHARGED -8318,2022-01-26,3136.0364273625505,461,Urgent,2022-02-13,Abnormal,8318,184,3,24,,,,DISCHARGED -8319,2019-06-01,17039.89073446181,400,Urgent,2019-06-11,Abnormal,8319,84,3,13,Excessive nose picking,"Behavioral interventions, addressing any underlying causes like anxiety","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8320,2020-01-19,15982.016851434704,440,Urgent,2020-02-10,Inconclusive,8320,54,4,5,,,,DISCHARGED -8321,2019-03-19,11482.881826080433,120,Emergency,2019-04-07,Inconclusive,8321,250,3,5,,,,DISCHARGED -8322,2019-05-08,3608.407583844075,337,Elective,2019-05-21,Normal,8322,143,4,3,,,,DISCHARGED -8323,2022-10-17,39135.322554736485,383,Elective,2022-10-24,Inconclusive,8323,350,4,11,,,,DISCHARGED -8324,2023-06-21,48387.12135461989,315,Urgent,2023-07-03,Abnormal,8324,397,2,29,,,,DISCHARGED -8325,2023-10-06,29283.018608449704,162,Emergency,2023-10-28,Abnormal,8325,166,3,17,,,,DISCHARGED -8326,2023-03-01,11456.786185176685,355,Elective,2023-03-18,Inconclusive,8326,411,4,9,,,,DISCHARGED -8327,2022-07-02,28223.497178375423,166,Elective,2022-07-05,Inconclusive,8327,223,1,2,,,,DISCHARGED -8328,2020-11-02,42572.47850506077,210,Urgent,2020-11-08,Abnormal,8328,219,1,2,,,,DISCHARGED -8330,2023-09-07,3222.9854382617905,157,Emergency,,Abnormal,8330,178,3,7,,,,OPEN -8331,2020-03-10,36773.468095144606,467,Emergency,2020-03-30,Normal,8331,118,2,21,,,,DISCHARGED -8332,2021-10-16,43285.66928980906,311,Urgent,2021-11-05,Inconclusive,8332,432,2,22,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8333,2021-07-26,45806.61074539374,108,Elective,2021-08-22,Inconclusive,8333,264,4,24,,,,DISCHARGED -8334,2019-11-27,2611.01795440362,261,Elective,2019-12-05,Normal,8334,441,3,0,,,,DISCHARGED -8335,2022-09-29,49140.87878095109,413,Urgent,2022-10-01,Inconclusive,8335,428,1,17,,,,DISCHARGED -8336,2023-07-11,34482.51703873634,478,Urgent,,Inconclusive,8336,149,4,14,,,,OPEN -8337,2019-12-17,44638.598376786176,197,Urgent,2020-01-09,Abnormal,8337,415,4,24,,,,DISCHARGED -8338,2022-10-03,8584.056356614996,458,Emergency,2022-10-24,Normal,8338,452,0,20,,,,DISCHARGED -8339,2023-09-13,28857.283047653087,111,Emergency,2023-10-02,Abnormal,8339,214,3,19,,,,DISCHARGED -8341,2022-09-25,3512.1603534048486,416,Urgent,2022-10-09,Inconclusive,8341,196,4,16,,,,DISCHARGED -8342,2019-08-30,29882.989974098185,308,Urgent,2019-09-24,Inconclusive,8342,41,1,24,,,,DISCHARGED -8343,2018-11-11,4872.252483834007,384,Emergency,2018-12-06,Inconclusive,8343,52,0,10,,,,DISCHARGED -8344,2020-09-10,42171.68204572897,276,Elective,2020-09-25,Abnormal,8344,479,1,12,,,,DISCHARGED -8345,2022-01-07,9261.337941411326,260,Elective,2022-01-21,Normal,8345,442,2,24,,,,DISCHARGED -8346,2022-04-21,48757.698732604,101,Urgent,2022-05-11,Inconclusive,8346,329,0,19,,,,DISCHARGED -8347,2022-05-20,24735.434355201374,322,Urgent,2022-06-12,Abnormal,8347,250,0,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8348,2019-06-21,43185.35409782744,215,Emergency,2019-07-04,Inconclusive,8348,294,4,9,,,,DISCHARGED -8349,2019-06-19,29905.18338029509,318,Urgent,2019-06-26,Normal,8349,377,2,12,,,,DISCHARGED -8350,2020-12-31,21410.578883277834,165,Emergency,2021-01-24,Inconclusive,8350,270,4,16,,,,DISCHARGED -8351,2022-07-13,25131.779081002544,120,Emergency,2022-08-06,Normal,8351,454,3,20,,,,DISCHARGED -8351,2022-10-06,37033.87748684664,380,Emergency,2022-10-23,Normal,9319,412,1,0,,,,DISCHARGED -8352,2022-03-13,46514.228528404325,193,Emergency,2022-03-17,Normal,8352,122,1,19,,,,DISCHARGED -8353,2023-10-10,41630.53578197566,438,Elective,,Normal,8353,366,4,15,,,,OPEN -8354,2020-03-22,5953.510835237855,129,Emergency,2020-04-14,Inconclusive,8354,386,1,15,,,,DISCHARGED -8355,2018-12-05,19489.62650276664,387,Emergency,2018-12-31,Abnormal,8355,338,1,27,,,,DISCHARGED -8356,2023-03-19,31614.04106601988,339,Urgent,2023-04-04,Normal,8356,265,3,20,,,,DISCHARGED -8357,2022-10-15,3492.74028433862,488,Elective,2022-10-28,Abnormal,8357,347,2,29,,,,DISCHARGED -8358,2021-02-21,36302.94733895276,202,Emergency,2021-03-03,Abnormal,8358,28,0,26,,,,DISCHARGED -8359,2020-08-30,38876.73965799117,393,Emergency,2020-09-06,Abnormal,8359,462,4,2,,,,DISCHARGED -8360,2021-12-24,19803.81853772989,293,Urgent,2022-01-23,Abnormal,8360,34,4,1,,,,DISCHARGED -8361,2020-07-05,32532.81691747898,208,Urgent,2020-07-13,Normal,8361,5,3,5,,,,DISCHARGED -8362,2023-05-21,24428.721023984035,335,Urgent,,Inconclusive,8362,395,3,10,,,,OPEN -8363,2019-02-05,36608.40121370153,195,Emergency,2019-02-17,Normal,8363,110,0,28,,,,DISCHARGED -8364,2023-02-02,36213.69220885789,293,Elective,2023-02-28,Inconclusive,8364,293,2,2,,,,DISCHARGED -8365,2019-01-15,44604.48540998071,484,Elective,2019-01-18,Abnormal,8365,76,4,25,,,,DISCHARGED -8366,2019-05-24,17034.54319927463,123,Urgent,2019-05-27,Normal,8366,348,3,0,,,,DISCHARGED -8367,2019-06-26,29317.0261830391,410,Elective,2019-07-05,Inconclusive,8367,146,4,10,,,,DISCHARGED -8368,2022-05-28,30799.123216588338,319,Emergency,2022-06-19,Normal,8368,66,1,12,,,,DISCHARGED -8369,2022-12-08,3799.468942388866,443,Emergency,2022-12-09,Normal,8369,391,4,4,,,,DISCHARGED -8370,2020-05-21,17790.948470264102,297,Urgent,2020-06-08,Abnormal,8370,7,2,17,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8371,2019-04-10,4229.62167795524,351,Urgent,2019-04-22,Inconclusive,8371,121,2,14,,,,DISCHARGED -8372,2023-10-29,28368.467860262463,156,Urgent,,Inconclusive,8372,339,4,17,,,,OPEN -8373,2022-06-14,35211.16808745828,420,Urgent,2022-07-08,Inconclusive,8373,174,1,14,,,,DISCHARGED -8374,2021-10-09,43827.82214419748,395,Urgent,2021-10-22,Inconclusive,8374,387,2,19,,,,DISCHARGED -8375,2023-07-24,34614.54207354463,236,Urgent,2023-07-30,Normal,8375,178,3,19,,,,DISCHARGED -8376,2021-07-21,9446.967428988191,311,Emergency,2021-08-03,Abnormal,8376,84,4,19,"Complains of recurrent, severe abdominal pain.",Investigate for gastrointestinal issues or abdominal conditions; recommend imaging and prescribe appropriate treatments.,"K92.9 - Disease of the digestive system, unspecified",DISCHARGED -8377,2020-02-09,46467.227563441855,470,Urgent,2020-02-16,Inconclusive,8377,450,1,6,,,,DISCHARGED -8378,2023-09-17,33173.965493179014,276,Emergency,2023-10-02,Inconclusive,8378,44,3,16,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8379,2021-10-29,14020.030183021903,362,Elective,2021-11-05,Inconclusive,8379,135,4,28,"Complains of persistent, burning pain in the feet.",Assess for neuropathy or other foot-related issues; recommend lifestyle changes and prescribe pain relievers.,R41.9 - Other symptoms and signs involving cognitive functions and awareness,DISCHARGED -8380,2022-05-18,43866.4453409479,253,Emergency,2022-06-13,Abnormal,8380,342,1,7,,,,DISCHARGED -8381,2022-02-16,22936.506466698705,237,Elective,2022-02-20,Inconclusive,8381,15,3,27,,,,DISCHARGED -8382,2019-01-20,9395.849645957844,314,Urgent,2019-02-08,Abnormal,8382,332,2,12,,,,DISCHARGED -8383,2021-09-28,1621.830197776983,404,Emergency,2021-10-03,Inconclusive,8383,194,4,25,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -8384,2018-12-22,29633.272805783305,176,Urgent,2019-01-16,Abnormal,8384,495,4,15,Persistent pain in the toes,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8386,2019-04-16,7645.336328339558,338,Elective,2019-04-24,Normal,8386,8,2,24,,,,DISCHARGED -8387,2021-06-01,49304.91287065599,253,Emergency,2021-07-01,Inconclusive,8387,315,0,9,,,,DISCHARGED -8388,2021-01-29,34687.19983640641,213,Elective,2021-02-08,Normal,8388,333,3,28,Thirst and frequent urination,"Evaluate for diabetes and prescribe appropriate medications, recommend dietary changes, and encourage increased fluid intake.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8389,2021-08-09,22371.373229225308,188,Urgent,2021-08-31,Abnormal,8389,332,2,13,,,,DISCHARGED -8390,2020-05-08,13130.362308996844,409,Urgent,2020-05-11,Abnormal,8390,326,4,5,,,,DISCHARGED -8391,2021-05-05,25062.29231756852,458,Urgent,2021-05-13,Abnormal,8391,14,3,19,,,,DISCHARGED -8392,2023-02-08,8330.79358699481,157,Emergency,,Inconclusive,8392,326,3,21,,,,OPEN -8393,2018-10-31,37980.14715475678,308,Emergency,2018-11-24,Abnormal,8393,101,0,25,,,,DISCHARGED -8394,2022-02-02,47060.392877269165,369,Urgent,2022-02-14,Abnormal,8394,225,4,6,,,,DISCHARGED -8395,2022-09-03,11308.352290060144,206,Elective,2022-10-01,Abnormal,8395,424,1,5,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8396,2018-11-04,31127.817672858146,135,Elective,2018-11-14,Normal,8396,277,0,26,,,,DISCHARGED -8397,2023-01-12,12864.065641714107,248,Urgent,2023-01-22,Normal,8397,407,0,16,,,,DISCHARGED -8397,2019-04-29,17516.4482513964,157,Elective,2019-05-06,Inconclusive,8846,112,1,20,,,,DISCHARGED -8398,2023-06-15,41995.01542034207,126,Elective,2023-07-11,Abnormal,8398,484,1,23,,,,DISCHARGED -8400,2021-06-03,33308.28199451362,139,Urgent,2021-06-08,Abnormal,8400,427,0,7,,,,DISCHARGED -8401,2021-05-31,21891.33315823238,171,Elective,2021-06-08,Normal,8401,0,3,11,,,,DISCHARGED -8402,2022-01-17,19872.64758687871,379,Elective,2022-02-13,Inconclusive,8402,265,2,25,,,,DISCHARGED -8403,2019-05-18,47390.49085081662,121,Urgent,2019-06-07,Abnormal,8403,490,2,24,Stiff neck and shoulder pain,"Prescribe muscle relaxants, recommend physical therapy, and explore ergonomic adjustments for daily activities.",M54.5 - Low back pain,DISCHARGED -8404,2019-04-27,34257.64990300737,492,Urgent,2019-05-01,Abnormal,8404,207,0,3,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8405,2023-01-21,29924.42313750195,292,Emergency,2023-01-23,Normal,8405,109,3,9,,,,DISCHARGED -8406,2023-08-06,7867.16653361466,330,Emergency,,Inconclusive,8406,199,1,5,Unexplained fever and sweating,"Conduct thorough investigations to identify the cause, prescribe antibiotics or other medications, and monitor for resolution.","A49.9 - Bacterial infection, unspecified",OPEN -8407,2019-12-23,12306.247538318205,431,Urgent,2020-01-20,Normal,8407,439,0,6,,,,DISCHARGED -8408,2022-07-20,42046.10932162721,495,Urgent,2022-08-09,Abnormal,8408,368,4,20,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -8409,2022-09-09,37931.75165728488,259,Emergency,2022-10-03,Abnormal,8409,472,3,26,,,,DISCHARGED -8410,2019-02-18,11944.064925410736,390,Emergency,2019-02-22,Normal,8410,305,4,7,,,,DISCHARGED -8411,2022-02-14,28044.040179382213,475,Urgent,2022-03-10,Abnormal,8411,11,4,2,,,,DISCHARGED -8411,2023-07-24,12276.707696736226,377,Emergency,,Abnormal,9368,344,0,7,,,,OPEN -8412,2021-04-29,26641.207212629797,448,Emergency,2021-05-16,Inconclusive,8412,464,3,14,,,,DISCHARGED -8415,2022-03-08,7166.965465519757,258,Urgent,2022-03-12,Abnormal,8415,187,4,29,,,,DISCHARGED -8416,2021-09-22,8105.49002100708,433,Elective,2021-10-01,Inconclusive,8416,153,3,20,,,,DISCHARGED -8417,2020-10-05,14051.377062196008,118,Elective,2020-10-31,Normal,8417,493,2,0,,,,DISCHARGED -8418,2019-12-24,46112.8236345238,331,Urgent,2019-12-30,Abnormal,8418,367,4,12,Blood in stool,"Gastrointestinal evaluation for potential causes, including colonoscopy, and initiation of appropriate treatment.","K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -8420,2023-01-10,10775.331426227624,324,Elective,2023-02-09,Normal,8420,333,4,21,,,,DISCHARGED -8421,2019-07-23,46831.43920374231,253,Urgent,2019-08-08,Inconclusive,8421,424,3,17,,,,DISCHARGED -8422,2019-11-02,20143.025577320837,396,Elective,2019-11-17,Inconclusive,8422,419,2,14,Frequent yawning,"Ensuring adequate sleep, addressing underlying sleep disorders, and lifestyle adjustments","G47.00 - Insomnia, unspecified",DISCHARGED -8423,2021-12-25,35745.6907787062,249,Urgent,2022-01-24,Abnormal,8423,376,4,6,Difficulty speaking,"Speech therapy, addressing underlying causes like neurological issues",R47.01 - Aphasia,DISCHARGED -8424,2021-06-16,1243.9728976242625,178,Emergency,2021-07-11,Inconclusive,8424,278,0,14,,,,DISCHARGED -8425,2019-01-21,49100.458363573794,244,Elective,2019-01-28,Normal,8425,170,3,24,,,,DISCHARGED -8426,2020-01-07,40953.34441089516,314,Elective,2020-01-24,Normal,8426,133,3,2,,,,DISCHARGED -8427,2020-06-28,46320.03442207755,244,Emergency,2020-07-19,Abnormal,8427,494,4,29,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8428,2023-02-08,18697.998489384427,147,Elective,2023-02-15,Inconclusive,8428,452,2,25,,,,DISCHARGED -8429,2023-02-14,15193.755609347454,384,Urgent,,Abnormal,8429,426,4,13,,,,OPEN -8430,2018-11-24,49242.05785018929,378,Urgent,2018-12-16,Inconclusive,8430,24,1,19,,,,DISCHARGED -8431,2020-06-06,19829.048590703103,365,Elective,2020-06-14,Abnormal,8431,17,4,3,,,,DISCHARGED -8432,2020-07-06,6153.377667907586,274,Urgent,2020-08-03,Abnormal,8432,189,1,3,,,,DISCHARGED -8433,2019-10-27,25524.99173845405,139,Elective,2019-11-04,Abnormal,8433,140,0,2,,,,DISCHARGED -8434,2020-06-16,7816.979418672698,211,Elective,2020-06-20,Abnormal,8434,42,3,4,,,,DISCHARGED -8435,2020-06-16,9365.924503115237,345,Emergency,2020-07-15,Inconclusive,8435,333,3,24,Muscle weakness and difficulty climbing stairs,"Physical therapy, muscle-strengthening exercises, and evaluation for underlying neurological or muscular conditions.","M62.9 - Muscle disorder, unspecified",DISCHARGED -8436,2023-02-06,18833.72734981708,228,Emergency,,Inconclusive,8436,283,2,10,,,,OPEN -8437,2021-06-18,24458.46840504675,455,Urgent,2021-07-05,Abnormal,8437,145,4,7,,,,DISCHARGED -8438,2022-06-14,38765.26479449626,418,Elective,2022-06-16,Abnormal,8438,314,0,25,,,,DISCHARGED -8439,2021-05-16,11451.595848175535,309,Emergency,2021-06-02,Inconclusive,8439,443,1,1,,,,DISCHARGED -8440,2019-07-15,25133.964115481285,242,Urgent,2019-07-19,Abnormal,8440,318,2,27,,,,DISCHARGED -8441,2022-03-22,25655.6544197151,459,Elective,2022-04-15,Normal,8441,440,0,15,,,,DISCHARGED -8442,2022-07-05,16701.953527999445,379,Elective,2022-07-12,Abnormal,8442,91,0,24,,,,DISCHARGED -8443,2023-04-25,4428.433520844079,442,Emergency,2023-05-23,Abnormal,8443,178,1,27,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8444,2018-12-27,11232.31079748094,423,Elective,2019-01-02,Inconclusive,8444,55,1,9,,,,DISCHARGED -8447,2019-02-08,19608.09486574254,411,Urgent,2019-02-16,Abnormal,8447,154,3,17,,,,DISCHARGED -8448,2023-05-07,30847.13871778822,187,Emergency,2023-06-04,Normal,8448,159,4,6,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8449,2020-11-05,37106.6062018785,242,Urgent,2020-11-22,Abnormal,8449,110,2,4,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -8451,2021-12-01,22679.045220794484,399,Elective,2021-12-07,Inconclusive,8451,136,4,28,,,,DISCHARGED -8452,2020-05-16,32978.53380122561,500,Elective,2020-05-28,Inconclusive,8452,231,2,6,Difficulty in starting or stopping urine,Urological evaluation for potential urinary tract issues and treatment options.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8453,2019-04-29,7765.002313376223,465,Elective,2019-05-20,Abnormal,8453,479,0,20,,,,DISCHARGED -8454,2023-02-16,17665.08869552336,460,Emergency,2023-02-19,Abnormal,8454,467,1,27,,,,DISCHARGED -8455,2021-05-26,20572.471670862484,209,Elective,2021-06-04,Normal,8455,219,1,5,,,,DISCHARGED -8456,2023-07-25,9615.71524065711,113,Urgent,,Abnormal,8456,480,0,23,Foot and ankle swelling,"Diuretics, compression stockings, and addressing underlying causes such as heart failure or kidney issues.","I50.9 - Heart failure, unspecified",OPEN -8458,2019-08-17,17806.088816633313,235,Emergency,2019-09-01,Inconclusive,8458,67,0,0,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8459,2019-06-18,49333.156823314166,139,Urgent,2019-06-23,Inconclusive,8459,301,2,28,,,,DISCHARGED -8461,2021-11-09,26831.99249281976,127,Emergency,2021-11-21,Abnormal,8461,248,0,10,,,,DISCHARGED -8462,2021-03-01,14055.937364116306,166,Urgent,2021-03-17,Inconclusive,8462,481,2,12,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8463,2020-11-02,5991.611735145802,350,Emergency,2020-11-29,Inconclusive,8463,495,4,11,Sudden onset of leg cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8464,2020-09-11,2949.0432555313664,290,Emergency,2020-09-20,Normal,8464,322,1,0,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -8465,2020-07-01,5133.211233428802,375,Urgent,2020-07-04,Inconclusive,8465,409,1,20,,,,DISCHARGED -8466,2020-09-21,18000.0894935308,342,Urgent,2020-10-08,Abnormal,8466,391,1,14,Memory loss and confusion,"Cognitive assessments, medication management, and lifestyle changes. Identify and address the underlying cause of cognitive decline.",F01.50 - Vascular dementia without behavioral disturbance,DISCHARGED -8468,2020-11-05,17719.18614826582,399,Elective,2020-11-24,Inconclusive,8468,5,4,0,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8469,2021-02-01,27915.63103398423,206,Elective,2021-02-14,Normal,8469,463,4,2,,,,DISCHARGED -8470,2021-01-07,41588.71164822058,449,Emergency,2021-01-19,Inconclusive,8470,279,3,25,,,,DISCHARGED -8471,2019-05-28,5460.244639223006,484,Elective,2019-06-11,Abnormal,8471,431,2,14,,,,DISCHARGED -8472,2020-08-07,27221.428291092183,156,Emergency,2020-08-28,Abnormal,8472,486,2,8,,,,DISCHARGED -8473,2020-06-23,27434.39695936583,403,Elective,2020-07-06,Normal,8473,93,3,13,Fever and body aches,"Antipyretics for fever reduction, pain relievers, and rest. Monitor for any signs of infection and adjust treatment accordingly.","R50.9 - Fever, unspecified",DISCHARGED -8474,2020-03-03,35822.50646468301,451,Urgent,2020-03-25,Inconclusive,8474,428,1,28,,,,DISCHARGED -8476,2019-05-29,22292.41755373483,257,Emergency,2019-06-05,Normal,8476,268,2,22,,,,DISCHARGED -8477,2021-01-05,5630.094102982314,471,Emergency,2021-01-23,Inconclusive,8477,196,2,27,,,,DISCHARGED -8478,2020-04-23,31689.33564421653,399,Emergency,2020-05-07,Inconclusive,8478,24,1,21,,,,DISCHARGED -8479,2019-06-16,13004.903544849783,496,Elective,2019-06-25,Normal,8479,147,0,23,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8480,2019-11-24,38369.256959013066,365,Elective,2019-12-16,Abnormal,8480,117,0,7,Abnormal bleeding,Diagnostic tests to identify the cause. Treat underlying gynecological or gastrointestinal issues.,N94.6 - Dyspareunia,DISCHARGED -8481,2023-06-17,32904.538764746474,256,Emergency,2023-07-05,Abnormal,8481,337,3,21,,,,DISCHARGED -8482,2022-11-05,27262.736813076568,214,Elective,2022-11-28,Normal,8482,366,4,3,,,,DISCHARGED -8483,2022-01-06,46747.29711322217,414,Urgent,2022-01-20,Abnormal,8483,337,2,19,Persistent facial swelling,"Identification and treatment of underlying causes, such as allergies, infections, or inflammatory conditions. Medications like antihistamines or corticosteroids may be prescribed.","M54.9 - Dorsalgia, unspecified",DISCHARGED -8484,2021-01-04,36305.41546759692,445,Emergency,2021-01-31,Inconclusive,8484,65,2,19,,,,DISCHARGED -8485,2023-09-21,11335.320895131854,320,Urgent,2023-10-02,Inconclusive,8485,457,3,5,,,,DISCHARGED -8486,2021-01-31,32821.591832816106,469,Urgent,2021-02-26,Normal,8486,300,3,0,,,,DISCHARGED -8487,2019-02-11,19579.094754850976,451,Emergency,2019-03-13,Inconclusive,8487,369,2,27,,,,DISCHARGED -8488,2020-10-17,47564.20759522408,272,Urgent,2020-11-05,Normal,8488,174,1,17,,,,DISCHARGED -8489,2019-07-12,46008.80490890444,280,Elective,2019-07-15,Abnormal,8489,318,1,5,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8490,2022-07-04,4360.214208595335,448,Emergency,2022-07-16,Normal,8490,75,4,29,,,,DISCHARGED -8491,2022-10-10,35038.33812167479,395,Emergency,2022-11-02,Abnormal,8491,494,2,13,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8493,2020-05-23,9156.536190512912,211,Emergency,2020-06-11,Normal,8493,460,2,10,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8494,2020-02-22,22728.26720058117,104,Emergency,2020-03-18,Normal,8494,113,2,16,Unexplained bruising and bleeding,"Investigation for underlying hematologic conditions, medications, and potential interventions.","D63.9 - Anemia, unspecified",DISCHARGED -8495,2021-03-23,1429.8886578265167,164,Urgent,2021-04-20,Abnormal,8495,110,2,8,,,,DISCHARGED -8496,2021-10-13,20796.1376382904,116,Emergency,2021-11-03,Abnormal,8496,248,3,27,Inflamed and painful joints,"NSAIDs, disease-modifying antirheumatic drugs (DMARDs), and lifestyle changes. Manage inflammation and improve joint function.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8498,2020-04-17,30490.696525128096,405,Emergency,2020-05-11,Inconclusive,8498,438,0,21,,,,DISCHARGED -8499,2019-12-16,42006.021230579536,419,Urgent,2019-12-28,Abnormal,8499,202,2,6,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -8500,2021-06-02,1709.9047516469795,500,Urgent,2021-06-09,Inconclusive,8500,146,0,13,,,,DISCHARGED -8501,2019-11-10,44321.09951336394,264,Urgent,2019-11-17,Normal,8501,34,1,27,,,,DISCHARGED -8502,2021-03-19,48056.68034120919,230,Urgent,2021-04-05,Inconclusive,8502,486,4,16,,,,DISCHARGED -8503,2023-06-25,17736.92969622423,490,Urgent,2023-07-10,Normal,8503,308,1,7,,,,DISCHARGED -8504,2023-06-24,17202.77293670304,360,Elective,2023-07-19,Inconclusive,8504,25,2,27,,,,DISCHARGED -8505,2023-04-29,48911.60518935587,256,Elective,2023-05-13,Normal,8505,237,1,15,,,,DISCHARGED -8506,2019-11-10,10981.158339716423,214,Emergency,2019-12-04,Abnormal,8506,13,3,11,Weight loss despite maintaining a regular diet,"Comprehensive metabolic panel, assessment for underlying medical conditions, and nutritional counseling.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -8507,2019-12-15,37483.69656408943,323,Elective,2020-01-14,Abnormal,8507,373,0,11,,,,DISCHARGED -8508,2020-01-08,36776.93488629535,199,Elective,2020-01-13,Inconclusive,8508,44,2,27,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8509,2019-05-19,6804.433924892192,250,Emergency,2019-05-25,Normal,8509,427,3,27,Increased sensitivity to light,"Management of underlying conditions, protective measures like sunglasses","H53.9 - Visual disturbances, unspecified",DISCHARGED -8510,2023-08-17,22140.51416288374,496,Emergency,,Abnormal,8510,215,0,4,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,OPEN -8511,2019-08-18,34642.17508574862,176,Elective,2019-09-06,Inconclusive,8511,232,3,4,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -8512,2020-09-29,38549.258757141535,202,Elective,2020-10-09,Normal,8512,192,1,13,,,,DISCHARGED -8513,2021-08-24,29359.203636483417,244,Emergency,2021-09-01,Abnormal,8513,50,2,5,,,,DISCHARGED -8515,2023-07-01,38091.43669080757,229,Urgent,,Abnormal,8515,426,1,6,Persistent back pain,"Evaluation by a spine specialist for imaging and potential intervention, such as physical therapy or surgery.",M54.5 - Low back pain,OPEN -8516,2020-11-10,17866.98231632598,144,Emergency,2020-11-30,Abnormal,8516,374,4,22,,,,DISCHARGED -8517,2021-03-03,39887.37641348983,258,Emergency,2021-03-09,Inconclusive,8517,213,2,20,Abdominal pain and nausea,Investigate for possible gastrointestinal issues or infections; prescribe appropriate medications and recommend dietary changes.,J00 - Acute nasopharyngitis [common cold],DISCHARGED -8518,2022-04-08,39210.055985093706,440,Urgent,2022-05-05,Inconclusive,8518,150,1,16,,,,DISCHARGED -8519,2019-01-08,28622.025406534613,173,Emergency,2019-01-14,Abnormal,8519,439,2,26,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8520,2022-12-02,18857.82924641502,377,Elective,2022-12-07,Inconclusive,8520,274,0,8,,,,DISCHARGED -8521,2022-05-13,34192.98585998548,127,Urgent,2022-06-12,Inconclusive,8521,337,2,21,,,,DISCHARGED -8521,2019-08-04,18930.46839702707,170,Urgent,2019-08-28,Inconclusive,9252,75,2,12,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -8522,2022-12-19,4667.545922530266,168,Emergency,2023-01-03,Inconclusive,8522,438,0,8,,,,DISCHARGED -8523,2021-05-22,47233.7122492197,312,Urgent,2021-06-16,Inconclusive,8523,219,1,26,,,,DISCHARGED -8524,2021-01-07,17269.24533018908,425,Urgent,2021-01-22,Normal,8524,347,2,15,,,,DISCHARGED -8525,2020-11-24,7602.858353111617,180,Elective,2020-12-02,Normal,8525,443,3,3,Difficulty in swallowing pills,"Modification of pill form, use of alternative formulations, and evaluation for underlying causes of swallowing difficulties.",R13 - Dysphagia,DISCHARGED -8526,2020-02-08,23363.75566989012,496,Elective,2020-03-08,Inconclusive,8526,186,2,1,Painful intercourse,"Gynecological evaluation, lubricants, and addressing underlying causes such as infections or hormonal imbalances.",N94.1 - Dyspareunia,DISCHARGED -8527,2019-11-29,19697.002441317363,486,Emergency,2019-12-11,Abnormal,8527,288,1,12,,,,DISCHARGED -8529,2019-09-17,28519.89276905813,311,Urgent,2019-10-02,Abnormal,8529,402,0,12,,,,DISCHARGED -8530,2019-02-24,46476.25070139772,353,Emergency,2019-03-14,Normal,8530,27,1,18,,,,DISCHARGED -8531,2021-05-04,39302.2872947826,222,Urgent,2021-05-18,Abnormal,8531,378,4,11,,,,DISCHARGED -8532,2020-10-03,35655.0123337886,183,Urgent,2020-10-18,Inconclusive,8532,179,2,3,,,,DISCHARGED -8533,2019-12-04,49527.53956308346,264,Elective,2019-12-18,Abnormal,8533,252,2,9,,,,DISCHARGED -8534,2022-08-29,18966.58485007633,253,Emergency,2022-09-17,Abnormal,8534,125,0,15,,,,DISCHARGED -8535,2021-05-17,5907.641409649576,166,Emergency,2021-06-10,Normal,8535,176,2,27,,,,DISCHARGED -8536,2019-01-03,44434.100887535686,210,Elective,2019-01-31,Inconclusive,8536,36,3,23,,,,DISCHARGED -8537,2018-12-08,28021.50789664872,469,Emergency,2019-01-07,Abnormal,8537,409,3,18,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8539,2023-04-26,43554.54860683461,340,Urgent,2023-04-30,Normal,8539,98,1,7,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -8540,2022-02-22,13510.33204129477,112,Urgent,2022-03-12,Abnormal,8540,97,0,5,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8541,2022-07-01,8479.476082817766,485,Urgent,2022-07-27,Normal,8541,126,4,3,,,,DISCHARGED -8542,2021-05-14,17233.951715408184,491,Urgent,2021-06-12,Abnormal,8542,482,1,29,,,,DISCHARGED -8543,2022-10-18,35082.49600341645,447,Emergency,2022-11-14,Abnormal,8543,167,0,6,,,,DISCHARGED -8544,2019-02-22,12776.873061970577,435,Emergency,2019-02-28,Inconclusive,8544,79,0,13,,,,DISCHARGED -8545,2022-04-24,42058.64875523408,389,Urgent,2022-04-29,Abnormal,8545,293,1,26,,,,DISCHARGED -8546,2020-07-20,1939.869308973412,134,Emergency,2020-07-27,Abnormal,8546,332,1,12,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -8547,2020-07-07,30126.789136248768,166,Emergency,2020-07-16,Normal,8547,125,2,20,Sudden and intense discomfort,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,"R52 - Pain, unspecified",DISCHARGED -8548,2022-06-16,32377.1789887482,313,Elective,2022-06-30,Normal,8548,342,4,4,,,,DISCHARGED -8549,2018-11-19,40329.92228167312,212,Urgent,2018-11-27,Inconclusive,8549,309,3,8,Unexplained fatigue despite adequate sleep,"Conduct comprehensive health assessments, identify underlying causes, prescribe medications if necessary, and recommend lifestyle changes.",Z00.00 - Encounter for general adult medical examination without abnormal findings,DISCHARGED -8550,2022-07-28,47145.45635650896,156,Elective,2022-08-07,Abnormal,8550,149,2,28,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -8551,2018-11-07,18530.373825181712,380,Emergency,2018-12-02,Abnormal,8551,15,0,2,,,,DISCHARGED -8552,2020-07-22,2488.319624128384,243,Elective,2020-08-16,Inconclusive,8552,27,4,9,Persistent cough with blood,"Chest imaging, antibiotics, and addressing underlying causes such as respiratory infections or lung conditions.","J18 - Pneumonia, unspecified organism",DISCHARGED -8554,2020-01-30,37997.50845356644,444,Urgent,2020-02-06,Normal,8554,495,4,14,,,,DISCHARGED -8556,2022-06-21,14738.370173267724,105,Urgent,2022-06-29,Normal,8556,418,1,19,,,,DISCHARGED -8557,2019-06-05,36256.493265753656,261,Emergency,2019-06-27,Inconclusive,8557,443,4,20,,,,DISCHARGED -8558,2019-09-09,14482.946018131712,354,Emergency,2019-10-07,Inconclusive,8558,172,4,16,,,,DISCHARGED -8559,2020-02-17,38391.00703026782,211,Elective,2020-03-04,Inconclusive,8559,45,0,22,Irregularity in menstrual cycles,"Hormone therapy, lifestyle changes, and addressing underlying gynecological issues. Investigate and treat hormonal imbalances.","N95.9 - Menopausal and perimenopausal disorder, unspecified",DISCHARGED -8560,2022-01-03,14181.060090229732,305,Emergency,2022-01-16,Inconclusive,8560,327,2,23,,,,DISCHARGED -8561,2022-12-23,43448.35084813244,216,Urgent,2023-01-11,Abnormal,8561,235,4,5,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -8562,2023-07-28,19136.3642052854,279,Urgent,,Inconclusive,8562,438,1,24,,,,OPEN -8563,2022-09-09,16870.187481818073,441,Emergency,2022-09-23,Normal,8563,213,2,2,,,,DISCHARGED -8565,2020-02-21,11229.345585670471,177,Elective,2020-03-11,Normal,8565,84,1,17,,,,DISCHARGED -8566,2023-04-30,20964.39866902374,349,Emergency,,Abnormal,8566,281,4,4,Irregular heartbeat and chest fluttering,"Medications, lifestyle changes, and procedures such as cardioversion or ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",OPEN -8567,2019-01-08,43054.65398107384,144,Urgent,2019-01-13,Normal,8567,231,2,12,,,,DISCHARGED -8568,2020-03-09,21031.759211334345,275,Urgent,2020-03-14,Inconclusive,8568,84,4,24,Unexplained anxiety and panic attacks,"Counseling, medications for anxiety, and lifestyle modifications.","F41.9 - Anxiety disorder, unspecified",DISCHARGED -8569,2023-07-26,48989.69712204453,144,Elective,2023-08-12,Abnormal,8569,408,0,26,,,,DISCHARGED -8570,2023-07-31,19564.730353206516,382,Emergency,2023-08-15,Normal,8570,488,2,0,Pain in the upper abdomen,"Conduct abdominal imaging tests, prescribe medications for pain relief, and recommend dietary changes.",K58 - Irritable bowel syndrome,DISCHARGED -8571,2019-04-30,39561.23671708903,310,Elective,2019-05-14,Abnormal,8571,64,1,16,Sudden onset of hand numbness,"Neurological evaluation, imaging studies, and possible medication","G47.9 - Sleep disorder, unspecified",DISCHARGED -8572,2023-07-05,18235.414140711386,388,Urgent,2023-07-08,Inconclusive,8572,133,0,25,,,,DISCHARGED -8573,2019-03-09,11040.958629268,359,Emergency,2019-03-14,Abnormal,8573,150,3,2,Persistent diarrhea with blood,"Identification and treatment of underlying gastrointestinal conditions, including medications, dietary changes, and rehydration.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -8574,2020-03-30,24973.48979153339,289,Urgent,2020-04-02,Inconclusive,8574,114,1,25,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8575,2023-04-27,4666.137099162626,284,Emergency,2023-05-21,Normal,8575,63,4,18,,,,DISCHARGED -8576,2020-12-28,27349.683692315084,183,Emergency,2021-01-13,Inconclusive,8576,342,1,20,,,,DISCHARGED -8577,2020-08-28,18532.066112946017,444,Urgent,2020-09-04,Inconclusive,8577,426,3,19,,,,DISCHARGED -8578,2023-03-08,47974.393515456,406,Urgent,,Normal,8578,362,1,21,,,,OPEN -8579,2022-11-18,6222.364613076986,441,Emergency,2022-12-03,Abnormal,8579,406,0,11,,,,DISCHARGED -8580,2022-09-18,9189.289369024831,462,Urgent,2022-09-26,Normal,8580,351,1,7,Persistent itching in the genital area,Consultation with a dermatologist or gynecologist for assessment and treatment of the underlying cause.,"L65.9 - Nonscarring hair loss, unspecified",DISCHARGED -8581,2022-05-22,5294.36063821127,218,Emergency,2022-06-05,Abnormal,8581,157,2,7,,,,DISCHARGED -8582,2020-05-22,23192.02171176258,353,Urgent,2020-05-29,Inconclusive,8582,76,3,14,,,,DISCHARGED -8583,2018-10-31,15276.018269401537,117,Elective,2018-11-26,Inconclusive,8583,490,1,10,,,,DISCHARGED -8584,2020-12-06,32769.16614446891,432,Emergency,2020-12-30,Abnormal,8584,145,3,19,,,,DISCHARGED -8585,2019-06-16,29764.49005529812,333,Emergency,2019-07-14,Abnormal,8585,342,0,0,,,,DISCHARGED -8586,2021-12-27,46969.6116791708,323,Emergency,2022-01-10,Abnormal,8586,462,2,28,,,,DISCHARGED -8587,2019-08-20,20057.983279314925,357,Urgent,2019-09-03,Inconclusive,8587,224,4,15,,,,DISCHARGED -8588,2022-03-23,9941.174376382973,394,Elective,2022-04-07,Inconclusive,8588,404,1,29,,,,DISCHARGED -8589,2020-05-31,19859.05871424804,399,Emergency,2020-06-26,Normal,8589,312,0,13,Sudden change in bowel habits,"Dietary changes, medications, and further diagnostic tests to identify and treat gastrointestinal issues.",K30 - Functional dyspepsia,DISCHARGED -8590,2023-04-08,17782.743947627478,163,Emergency,,Abnormal,8590,102,3,6,Difficulty in breathing during physical activity,Cardiopulmonary evaluation for potential cardiovascular or respiratory issues.,"I50.9 - Heart failure, unspecified",OPEN -8590,2021-03-02,43354.01301421569,138,Emergency,2021-03-18,Abnormal,8784,406,3,5,,,,DISCHARGED -8591,2021-07-14,14918.85311075017,238,Urgent,2021-07-19,Abnormal,8591,346,0,20,,,,DISCHARGED -8592,2023-09-25,4419.106658496902,208,Urgent,,Inconclusive,8592,300,1,3,,,,OPEN -8593,2020-11-26,13290.726571961077,466,Elective,2020-12-26,Inconclusive,8593,427,4,21,,,,DISCHARGED -8594,2020-03-29,46913.25532663583,186,Urgent,2020-04-05,Abnormal,8594,465,1,7,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8595,2023-03-27,17431.419557387566,333,Emergency,2023-04-07,Abnormal,8595,87,2,21,,,,DISCHARGED -8596,2022-05-16,8426.391308738366,212,Emergency,2022-05-27,Inconclusive,8596,370,1,18,Continual involuntary contractions of the diaphragm,"Home remedies, medications, and investigating and treating underlying causes such as gastroesophageal reflux disease (GERD) or neurological issues.","R19.7 - Diarrhea, unspecified",DISCHARGED -8597,2020-10-07,30698.234587921863,136,Urgent,2020-10-15,Normal,8597,302,2,24,,,,DISCHARGED -8598,2018-11-29,24187.23346855943,464,Urgent,2018-12-25,Inconclusive,8598,167,3,2,,,,DISCHARGED -8599,2022-06-10,14580.675566612226,151,Urgent,2022-07-02,Normal,8599,434,2,3,,,,DISCHARGED -8600,2022-02-04,39716.91290792697,335,Urgent,2022-02-22,Inconclusive,8600,169,4,12,Fatigue and unexplained weight loss,"Conducted a thorough physical examination and ordered blood tests to assess for underlying medical conditions such as anemia, thyroid dysfunction, or infections. Referred the patient for imaging studies (CT scan or X-rays) to investigate potential malignancies. Developed a treatment plan based on the identified cause, which may include medications, surgery, or lifestyle modifications.",R10.9 - Unspecified abdominal pain,DISCHARGED -8601,2019-03-14,19079.51775049902,110,Urgent,2019-03-15,Normal,8601,134,0,20,,,,DISCHARGED -8602,2022-08-30,32393.69761721157,177,Emergency,2022-09-02,Normal,8602,49,2,26,,,,DISCHARGED -8603,2023-06-10,22101.802132493005,311,Elective,2023-07-02,Normal,8603,431,1,1,,,,DISCHARGED -8604,2020-06-06,42442.482266730425,410,Elective,2020-06-20,Inconclusive,8604,339,2,10,,,,DISCHARGED -8605,2020-10-22,41049.0310524492,312,Urgent,2020-11-02,Abnormal,8605,346,3,15,,,,DISCHARGED -8606,2021-11-06,39397.53286950098,442,Elective,2021-11-27,Inconclusive,8606,133,2,9,,,,DISCHARGED -8607,2022-09-06,6516.217620749194,285,Elective,2022-09-22,Normal,8607,346,4,14,,,,DISCHARGED -8608,2019-05-29,1291.1943106706103,194,Emergency,2019-06-02,Normal,8608,136,2,26,Intense head discomfort and queasiness,Prescription drugs for alleviating pain and anti-nausea medications. Identify and tackle the root cause.,"R52.9 - Pain, unspecified",DISCHARGED -8609,2023-06-19,45275.82145895949,170,Urgent,2023-06-30,Inconclusive,8609,244,4,9,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8610,2020-04-30,40931.17346290707,285,Elective,2020-05-15,Abnormal,8610,108,1,1,,,,DISCHARGED -8612,2022-11-18,4246.625553762583,340,Urgent,2022-11-25,Abnormal,8612,312,3,5,,,,DISCHARGED -8613,2019-07-10,40806.765033179465,364,Urgent,2019-08-04,Abnormal,8613,286,0,13,,,,DISCHARGED -8614,2019-09-05,26061.870959413536,334,Elective,2019-10-05,Normal,8614,20,1,1,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8615,2020-04-12,44693.50721985696,150,Elective,2020-04-17,Inconclusive,8615,89,1,9,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8616,2019-10-18,33081.62932363766,483,Elective,2019-11-10,Abnormal,8616,295,0,16,,,,DISCHARGED -8617,2022-10-06,10602.809765571308,270,Emergency,2022-10-25,Inconclusive,8617,111,2,7,,,,DISCHARGED -8618,2023-02-04,6391.1608044937175,309,Urgent,2023-03-01,Abnormal,8618,300,2,25,,,,DISCHARGED -8619,2022-03-18,22625.92637723782,315,Urgent,2022-03-26,Abnormal,8619,76,2,15,,,,DISCHARGED -8620,2023-10-01,39144.88616716336,387,Urgent,2023-10-15,Abnormal,8620,176,3,13,,,,DISCHARGED -8622,2022-07-19,45671.54483160411,493,Urgent,2022-08-02,Normal,8622,342,1,9,,,,DISCHARGED -8623,2020-02-15,26591.126249455207,407,Emergency,2020-03-14,Abnormal,8623,147,4,12,,,,DISCHARGED -8624,2020-12-22,24267.37959445451,242,Elective,2021-01-09,Normal,8624,100,0,0,Impaired coordination and tremors,"Perform neurological assessments, prescribe medications for tremor control, and recommend physical therapy.",G25.0 - Essential tremor,DISCHARGED -8625,2022-04-06,27608.160156980543,121,Urgent,2022-04-26,Abnormal,8625,245,1,9,,,,DISCHARGED -8626,2019-10-28,29111.892896914334,125,Emergency,2019-10-30,Abnormal,8626,116,2,29,Sharp pain in the chest with deep breaths,"Assessment for possible respiratory or cardiac issues, imaging studies, and pain management.","R07.9 - Chest pain, unspecified",DISCHARGED -8628,2021-11-03,46267.869149613405,462,Emergency,2021-11-24,Inconclusive,8628,91,0,21,,,,DISCHARGED -8629,2020-03-13,21156.64212030629,248,Urgent,2020-04-10,Inconclusive,8629,400,4,11,,,,DISCHARGED -8630,2019-04-29,33733.332286762336,492,Elective,2019-05-05,Abnormal,8630,27,1,29,,,,DISCHARGED -8631,2019-09-11,25892.405116587677,277,Emergency,2019-09-20,Abnormal,8631,424,1,16,,,,DISCHARGED -8632,2023-10-06,39163.84867732234,351,Urgent,2023-10-11,Abnormal,8632,449,3,23,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8633,2023-01-11,49167.640130179134,363,Emergency,2023-01-20,Inconclusive,8633,24,1,13,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8634,2021-09-22,28844.56025998443,108,Urgent,2021-10-12,Inconclusive,8634,57,1,4,,,,DISCHARGED -8636,2019-04-25,17631.07584104041,497,Urgent,2019-04-27,Normal,8636,497,4,18,,,,DISCHARGED -8637,2018-10-30,3700.492792020604,412,Emergency,2018-11-01,Normal,8637,296,4,4,,,,DISCHARGED -8638,2021-03-02,36627.55105054712,110,Elective,2021-03-21,Normal,8638,133,0,14,,,,DISCHARGED -8641,2020-01-08,26506.958402153617,358,Emergency,2020-02-06,Abnormal,8641,330,2,12,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -8642,2021-07-31,32905.673599632544,182,Urgent,2021-08-10,Inconclusive,8642,248,4,16,,,,DISCHARGED -8644,2019-09-19,23716.221389245184,270,Emergency,2019-09-27,Abnormal,8644,37,0,0,,,,DISCHARGED -8645,2021-04-17,29720.63218212293,374,Emergency,2021-05-03,Abnormal,8645,389,1,27,Persistent elbow pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery","M54.9 - Dorsalgia, unspecified",DISCHARGED -8646,2021-02-28,35285.826961641484,454,Elective,2021-03-19,Normal,8646,428,0,13,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -8647,2022-12-26,14024.970192637467,496,Urgent,2023-01-17,Normal,8647,74,0,3,,,,DISCHARGED -8648,2020-03-04,34668.08503838363,153,Elective,2020-03-09,Normal,8648,141,0,24,,,,DISCHARGED -8649,2022-09-20,6533.844231395243,330,Elective,2022-10-07,Normal,8649,321,0,29,,,,DISCHARGED -8650,2021-04-14,38349.7700935063,462,Emergency,2021-04-19,Normal,8650,167,4,8,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8651,2023-01-02,33896.988099156886,273,Urgent,2023-01-22,Normal,8651,258,2,16,,,,DISCHARGED -8652,2022-09-29,10049.968524517948,231,Emergency,2022-10-12,Normal,8652,372,0,2,,,,DISCHARGED -8654,2020-02-01,1152.310743280387,222,Urgent,2020-02-10,Abnormal,8654,354,3,12,,,,DISCHARGED -8655,2023-04-29,5718.780372449003,443,Urgent,2023-05-29,Abnormal,8655,224,1,11,,,,DISCHARGED -8656,2022-02-15,2906.538366336583,108,Urgent,2022-03-15,Normal,8656,151,1,15,,,,DISCHARGED -8657,2021-03-26,28204.476806295264,278,Elective,2021-04-03,Abnormal,8657,18,1,3,Unexplained bruises and bleeding,"Hematological evaluation, clotting factor tests, and medications to address underlying bleeding disorders. Monitor for changes in bleeding tendency.","D68.9 - Hemorrhagic condition, unspecified",DISCHARGED -8658,2019-12-02,49191.40004277582,452,Emergency,2019-12-23,Abnormal,8658,145,1,17,Complains of abdominal cramps and bloating after meals.,Investigate for gastrointestinal issues such as irritable bowel syndrome (IBS); recommend dietary changes and medications.,K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -8659,2022-03-29,2964.9539195557845,271,Emergency,2022-04-06,Inconclusive,8659,447,1,22,,,,DISCHARGED -8660,2022-02-10,31485.9006881171,356,Emergency,2022-03-03,Abnormal,8660,240,0,2,,,,DISCHARGED -8661,2019-01-28,49277.22931474176,351,Elective,2019-02-01,Inconclusive,8661,371,2,16,,,,DISCHARGED -8663,2021-08-11,17453.28206996105,128,Emergency,2021-08-18,Normal,8663,380,3,0,,,,DISCHARGED -8665,2020-11-15,16902.316175898784,471,Elective,2020-12-15,Normal,8665,343,4,18,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -8666,2022-11-09,41333.60162685347,285,Urgent,2022-12-05,Abnormal,8666,236,3,21,,,,DISCHARGED -8666,2019-07-25,22880.745670884626,262,Urgent,2019-08-24,Normal,9699,34,4,3,,,,DISCHARGED -8667,2019-06-12,15224.85975555282,458,Urgent,2019-06-17,Inconclusive,8667,189,4,16,,,,DISCHARGED -8668,2023-07-12,30026.23053735445,407,Elective,2023-07-16,Normal,8668,0,3,6,"Complains of persistent, severe joint pain.","Conduct a joint examination, order imaging if necessary, and prescribe pain relievers or anti-inflammatory medications.",M25.5 - Pain in joint,DISCHARGED -8669,2023-06-11,4176.834899472101,477,Urgent,2023-06-24,Normal,8669,483,0,1,,,,DISCHARGED -8670,2021-08-07,15278.436974502298,393,Elective,2021-09-03,Inconclusive,8670,152,1,11,,,,DISCHARGED -8671,2023-06-24,20253.070430926316,218,Urgent,2023-06-28,Normal,8671,428,0,4,,,,DISCHARGED -8672,2023-08-25,19801.48951516921,271,Elective,2023-09-16,Inconclusive,8672,432,1,15,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -8673,2022-08-31,4211.71738280996,324,Emergency,2022-09-08,Normal,8673,125,2,7,,,,DISCHARGED -8674,2020-01-13,1582.0782060576712,164,Elective,2020-02-02,Inconclusive,8674,490,4,22,,,,DISCHARGED -8675,2020-03-27,47333.64992028892,115,Emergency,2020-04-15,Inconclusive,8675,481,3,26,,,,DISCHARGED -8676,2022-10-11,12933.87238248588,171,Emergency,2022-10-24,Inconclusive,8676,344,2,27,Chest pain that worsens with deep breaths,"Immediate medical attention, evaluation for pulmonary or cardiac causes, and appropriate treatment.",I26.9 - Pulmonary embolism without acute cor pulmonale,DISCHARGED -8677,2021-12-08,37392.0139747122,160,Emergency,2021-12-15,Inconclusive,8677,399,1,7,Persistent hoarseness and voice changes,"Identification and treatment of underlying causes, voice therapy, and lifestyle modifications.","J38.00 - Paralysis of vocal cords and larynx, unspecified",DISCHARGED -8678,2019-07-06,41412.00476419916,157,Emergency,2019-07-30,Abnormal,8678,225,0,12,Difficulty hearing,"Audiological evaluation, hearing aids, and addressing underlying causes such as ear infections or age-related hearing loss.","H90.3 - Sensorineural hearing loss, bilateral",DISCHARGED -8679,2019-11-21,25917.703226027763,245,Elective,2019-12-02,Normal,8679,220,3,25,,,,DISCHARGED -8680,2023-07-11,15196.351837065124,350,Elective,2023-07-21,Inconclusive,8680,402,4,13,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8681,2023-01-24,5101.94671881426,223,Emergency,2023-01-26,Abnormal,8681,406,2,10,,,,DISCHARGED -8682,2019-11-23,43449.65348962339,135,Urgent,2019-11-27,Normal,8682,210,4,5,,,,DISCHARGED -8683,2021-07-01,45706.98479115704,270,Emergency,2021-07-11,Inconclusive,8683,24,1,15,,,,DISCHARGED -8684,2021-09-10,27895.20904586642,262,Urgent,2021-10-10,Inconclusive,8684,15,4,22,,,,DISCHARGED -8685,2021-09-18,38752.27169096681,267,Emergency,2021-09-25,Normal,8685,181,0,24,Loss of appetite,Medical evaluation to identify underlying causes such as nutritional deficiencies or gastrointestinal issues.,K30 - Functional dyspepsia,DISCHARGED -8686,2019-11-07,39688.13603084733,497,Emergency,2019-12-07,Normal,8686,498,2,21,,,,DISCHARGED -8687,2020-06-09,40786.13191735392,148,Emergency,2020-06-20,Inconclusive,8687,328,2,24,,,,DISCHARGED -8688,2023-02-19,29275.64954629657,440,Urgent,2023-03-07,Inconclusive,8688,128,0,14,,,,DISCHARGED -8689,2021-04-27,45653.76071716618,485,Emergency,2021-04-28,Abnormal,8689,41,4,15,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8690,2021-11-12,7396.168131341648,436,Urgent,2021-11-24,Inconclusive,8690,402,0,12,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8691,2023-06-06,27764.172527570543,140,Elective,2023-07-02,Abnormal,8691,480,3,11,,,,DISCHARGED -8692,2021-07-12,1982.235228462564,230,Emergency,2021-07-14,Normal,8692,417,0,17,,,,DISCHARGED -8693,2023-01-07,28263.44703116675,346,Emergency,,Normal,8693,335,4,28,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",OPEN -8694,2021-01-18,28889.051684635797,404,Emergency,2021-01-26,Inconclusive,8694,235,0,17,Rapid heart rate,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8695,2023-08-01,14496.099640500195,298,Elective,2023-08-07,Inconclusive,8695,359,1,13,,,,DISCHARGED -8696,2023-03-04,20373.09187901853,500,Elective,2023-03-31,Normal,8696,438,0,1,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8697,2021-07-03,15159.584795588327,320,Emergency,2021-07-14,Normal,8697,401,0,21,,,,DISCHARGED -8698,2022-04-14,40266.14823042958,184,Urgent,2022-05-09,Inconclusive,8698,33,4,1,,,,DISCHARGED -8699,2020-04-13,19836.922036712956,489,Emergency,2020-05-13,Abnormal,8699,344,3,2,Sudden vision loss,Immediate referral to an ophthalmologist for a comprehensive eye examination and potential interventions.,H52.9 - Unspecified disorder of visual perception,DISCHARGED -8700,2018-12-22,44240.08887997178,402,Emergency,2018-12-26,Inconclusive,8700,380,3,28,,,,DISCHARGED -8701,2022-12-22,6140.662283043372,456,Emergency,2023-01-17,Abnormal,8701,44,4,23,,,,DISCHARGED -8702,2020-08-14,39318.35814839982,445,Elective,2020-09-09,Abnormal,8702,133,4,7,,,,DISCHARGED -8703,2022-05-23,16542.84340877849,376,Urgent,2022-06-02,Normal,8703,20,4,10,Pain in the upper right abdomen,"Identification and treatment of underlying causes, such as liver or gallbladder issues. Medications, dietary changes, or surgical interventions may be recommended.","K76.9 - Liver disease, unspecified",DISCHARGED -8704,2019-08-12,20309.542732046142,383,Elective,2019-09-03,Abnormal,8704,121,1,11,,,,DISCHARGED -8705,2023-05-23,23574.01952169489,238,Urgent,2023-06-22,Abnormal,8705,69,2,3,"Sudden, severe headache like a 'thunderclap'",Immediate medical attention to rule out serious conditions like a hemorrhage or stroke. Diagnostic tests and appropriate interventions based on the diagnosis.,"I64 - Stroke, not specified as hemorrhage or infarction",DISCHARGED -8706,2020-11-04,31217.055872418165,412,Elective,2020-11-25,Normal,8706,351,0,8,,,,DISCHARGED -8707,2023-07-11,2894.0332957492437,469,Elective,,Inconclusive,8707,360,4,23,,,,OPEN -8708,2021-12-09,15008.772519052927,229,Urgent,2021-12-21,Abnormal,8708,47,4,16,Persistent pain in the jaw,"Dental evaluation, possible imaging studies, and pain management","K08.9 - Disorder of teeth and supporting structures, unspecified",DISCHARGED -8709,2018-11-01,16215.102176726516,360,Urgent,2018-11-09,Normal,8709,490,4,23,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8710,2023-08-09,3767.521151136848,177,Urgent,2023-08-27,Inconclusive,8710,38,3,15,,,,DISCHARGED -8711,2021-02-26,9527.858942146975,133,Emergency,2021-03-19,Inconclusive,8711,286,4,16,,,,DISCHARGED -8712,2019-01-12,42521.87376027004,424,Elective,2019-01-18,Normal,8712,489,0,14,,,,DISCHARGED -8713,2021-10-05,26139.54314482733,182,Urgent,2021-10-11,Inconclusive,8713,9,4,19,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8714,2023-06-12,16173.15518604218,303,Elective,,Abnormal,8714,29,0,25,,,,OPEN -8716,2022-12-01,26513.982826153024,102,Emergency,2022-12-21,Normal,8716,243,1,21,,,,DISCHARGED -8717,2023-01-07,11627.89408350979,215,Elective,2023-01-10,Normal,8717,273,2,6,Feeling of restlessness,"Psychiatric evaluation for potential anxiety or other mood disorders, and initiation of appropriate therapy.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -8718,2018-11-24,20523.4776346566,305,Elective,2018-11-30,Abnormal,8718,443,3,9,,,,DISCHARGED -8719,2020-08-30,21608.95622541413,141,Emergency,2020-09-07,Normal,8719,87,0,28,,,,DISCHARGED -8720,2018-12-20,44176.79850181088,226,Elective,2019-01-15,Normal,8720,243,1,3,,,,DISCHARGED -8721,2022-01-21,8920.27933496386,316,Emergency,2022-01-30,Inconclusive,8721,380,2,23,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8722,2023-08-15,1848.4853746754584,286,Urgent,,Abnormal,8722,328,2,23,,,,OPEN -8723,2020-12-28,46979.65916959913,469,Elective,2021-01-07,Abnormal,8723,478,2,13,,,,DISCHARGED -8724,2020-05-28,11245.901145231675,216,Urgent,2020-06-24,Inconclusive,8724,14,0,13,,,,DISCHARGED -8725,2019-08-05,15531.442175944569,230,Elective,2019-08-24,Normal,8725,3,1,13,,,,DISCHARGED -8725,2023-08-18,9000.789173546491,270,Emergency,2023-09-13,Normal,9189,190,4,24,Persistent joint swelling,"Anti-inflammatory medications, physical therapy, and disease-modifying antirheumatic drugs (DMARDs) for certain conditions","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -8726,2020-06-03,21093.99854085436,491,Emergency,2020-06-19,Inconclusive,8726,167,1,13,Frequent headaches with visual disturbances,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",M54.6 - Pain in thoracic spine,DISCHARGED -8727,2021-12-25,37081.56196356824,394,Emergency,2022-01-07,Inconclusive,8727,8,1,21,,,,DISCHARGED -8728,2020-07-12,13131.378059604129,450,Emergency,2020-07-31,Inconclusive,8728,108,1,19,,,,DISCHARGED -8729,2020-05-08,21820.031775058625,480,Elective,2020-05-24,Normal,8729,136,0,17,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -8730,2019-10-18,34874.32472074103,230,Urgent,2019-11-11,Abnormal,8730,153,0,14,,,,DISCHARGED -8732,2022-03-13,23389.08489101608,117,Urgent,2022-04-02,Abnormal,8732,387,0,22,,,,DISCHARGED -8733,2020-08-11,21445.767332907104,247,Emergency,2020-09-07,Abnormal,8733,208,1,25,,,,DISCHARGED -8734,2023-09-23,22962.93609582673,175,Emergency,2023-10-15,Abnormal,8734,271,0,18,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -8735,2020-09-11,36032.08127354367,406,Elective,2020-10-06,Abnormal,8735,142,2,26,Skin eruption and itchiness,"Topical creams, antihistamines, and identification and avoidance of allergens or irritants. Address underlying skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8736,2021-02-10,12858.556883054562,151,Emergency,2021-02-24,Normal,8736,98,0,12,,,,DISCHARGED -8737,2022-03-17,12294.397835012687,430,Emergency,2022-04-16,Abnormal,8737,376,3,11,,,,DISCHARGED -8738,2022-08-09,24257.760765731604,268,Urgent,2022-08-13,Inconclusive,8738,307,0,18,,,,DISCHARGED -8739,2021-02-16,20948.274451910405,191,Emergency,2021-03-17,Inconclusive,8739,68,0,18,,,,DISCHARGED -8740,2021-04-01,4934.618762681976,336,Emergency,2021-04-02,Abnormal,8740,246,0,19,,,,DISCHARGED -8741,2020-06-30,28388.147738741685,461,Elective,2020-07-20,Abnormal,8741,260,0,1,,,,DISCHARGED -8742,2020-12-19,23002.28270626964,388,Elective,2021-01-09,Abnormal,8742,275,3,28,,,,DISCHARGED -8743,2019-05-17,24020.733817810364,147,Elective,2019-05-25,Abnormal,8743,78,4,28,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8744,2019-04-05,40933.05843889134,103,Emergency,2019-04-28,Normal,8744,145,0,20,,,,DISCHARGED -8745,2023-08-24,45493.200610768174,166,Emergency,2023-09-03,Abnormal,8745,110,2,2,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -8746,2022-10-27,16480.561354994497,318,Emergency,2022-11-26,Abnormal,8746,257,3,9,Abdominal distension and bloating,"Dietary changes, medications for underlying gastrointestinal conditions, and lifestyle modifications.",K21.9 - Gastroesophageal reflux disease without esophagitis,DISCHARGED -8747,2019-03-16,19364.2925443635,303,Emergency,2019-03-19,Abnormal,8747,92,4,4,,,,DISCHARGED -8748,2022-09-23,15892.99606523397,481,Urgent,2022-10-02,Abnormal,8748,12,0,11,,,,DISCHARGED -8749,2021-02-25,5043.753604038759,366,Elective,2021-03-23,Normal,8749,259,4,28,,,,DISCHARGED -8750,2022-05-24,22064.396325319965,398,Urgent,2022-06-07,Normal,8750,425,2,6,,,,DISCHARGED -8751,2019-09-30,13091.472070393673,289,Elective,2019-10-08,Abnormal,8751,108,3,8,,,,DISCHARGED -8752,2019-12-26,28550.08016377527,456,Elective,2020-01-20,Abnormal,8752,329,3,1,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -8753,2021-05-21,42537.04768272656,459,Emergency,2021-05-27,Normal,8753,188,4,24,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -8754,2019-08-05,28236.858927967056,382,Urgent,2019-08-13,Abnormal,8754,94,0,9,,,,DISCHARGED -8755,2023-10-29,46014.45365746004,343,Urgent,2023-11-12,Normal,8755,104,1,5,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -8756,2021-09-18,49379.47933534483,237,Urgent,2021-10-11,Abnormal,8756,7,3,11,Odd discoloration of the skin,"Dermatological evaluation, topical treatments, and addressing underlying causes such as vascular issues or skin conditions.","L29.9 - Pruritus, unspecified",DISCHARGED -8757,2020-04-29,39616.85995851848,346,Elective,2020-05-14,Abnormal,8757,66,1,5,,,,DISCHARGED -8758,2022-06-29,15613.08711872064,358,Urgent,2022-07-29,Normal,8758,495,3,26,,,,DISCHARGED -8759,2020-03-04,19944.113700528887,178,Emergency,2020-03-29,Abnormal,8759,190,0,2,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -8760,2021-12-10,21113.191415002315,108,Urgent,2021-12-12,Inconclusive,8760,365,0,29,"Describes a sudden, severe headache with nausea.",Evaluate for possible migraine or other neurological issues; prescribe pain relief and anti-nausea medications.,G43 - Migraine,DISCHARGED -8761,2021-11-13,11744.960012023532,372,Elective,2021-11-28,Inconclusive,8761,255,3,9,,,,DISCHARGED -8762,2023-09-26,9932.098150870052,371,Emergency,2023-10-23,Abnormal,8762,8,4,28,,,,DISCHARGED -8763,2019-03-12,20852.64898764576,489,Emergency,2019-04-07,Normal,8763,477,0,8,,,,DISCHARGED -8764,2020-09-20,19452.34354673211,119,Elective,2020-10-16,Normal,8764,116,0,19,,,,DISCHARGED -8765,2022-03-24,36635.80930655231,240,Elective,2022-04-07,Inconclusive,8765,266,2,4,,,,DISCHARGED -8766,2020-03-04,20662.848665624497,434,Emergency,2020-03-17,Abnormal,8766,98,0,2,"Sharp, shooting pain down the leg","Nerve conduction studies, assessment for nerve compression or disc issues, and physical therapy.","G58.9 - Mononeuropathy, unspecified",DISCHARGED -8767,2023-07-21,42660.638251246295,127,Emergency,2023-08-04,Normal,8767,484,2,4,,,,DISCHARGED -8768,2020-01-19,20474.61252069474,114,Elective,2020-01-29,Normal,8768,297,0,7,,,,DISCHARGED -8769,2019-02-19,32365.593377994377,180,Elective,2019-03-14,Normal,8769,396,0,7,,,,DISCHARGED -8770,2023-02-16,36560.36485754349,155,Elective,2023-03-13,Inconclusive,8770,163,4,13,,,,DISCHARGED -8771,2019-10-28,32722.50671498724,479,Elective,2019-11-07,Normal,8771,375,4,23,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8773,2021-10-06,9147.755775366291,226,Emergency,2021-10-11,Abnormal,8773,140,0,21,,,,DISCHARGED -8774,2019-06-13,32543.39737643392,156,Elective,2019-06-20,Normal,8774,267,3,16,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -8775,2019-01-17,26899.292786988943,176,Elective,2019-01-24,Abnormal,8775,36,3,10,,,,DISCHARGED -8776,2022-03-24,22863.633180661105,368,Emergency,2022-03-28,Abnormal,8776,73,0,25,,,,DISCHARGED -8777,2021-02-06,2370.594240984364,196,Emergency,2021-02-19,Normal,8777,72,3,15,Blood clots and leg swelling,"Anticoagulant medications to prevent further clotting, compression stockings, and lifestyle modifications.",I82.90 - Embolism and thrombosis of unspecified vein,DISCHARGED -8778,2022-05-23,31802.00918426117,272,Elective,2022-06-15,Normal,8778,307,0,27,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8779,2020-02-18,13120.256411533355,106,Urgent,2020-03-14,Normal,8779,198,4,5,Frequent muscle cramps,"Electrolyte balance assessment, hydration, and muscle-stretching exercises",E87.0 - Hyperosmolality and hypernatremia,DISCHARGED -8780,2022-10-25,32086.237733317244,481,Elective,2022-11-14,Abnormal,8780,129,1,27,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -8781,2019-12-01,10243.532588127282,459,Elective,2019-12-17,Inconclusive,8781,245,2,10,,,,DISCHARGED -8782,2021-03-08,2932.650504559624,437,Urgent,2021-04-02,Inconclusive,8782,311,3,9,,,,DISCHARGED -8783,2021-07-02,20466.53538387883,177,Urgent,2021-07-23,Abnormal,8783,59,3,22,Back pain radiating down the leg,"Identification and treatment of underlying causes, physical therapy, pain management medications, and potentially surgical interventions.",M54.5 - Low back pain,DISCHARGED -8785,2019-03-08,40219.59087107677,152,Elective,2019-03-14,Normal,8785,278,4,29,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -8787,2020-09-30,31385.989006774293,459,Emergency,2020-10-08,Inconclusive,8787,102,3,8,,,,DISCHARGED -8788,2023-03-05,32694.66216524664,140,Emergency,,Abnormal,8788,295,0,27,,,,OPEN -8789,2018-12-04,49995.90228322116,196,Emergency,2018-12-11,Abnormal,8789,319,0,23,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -8790,2020-01-13,24549.336768721707,467,Emergency,2020-02-09,Inconclusive,8790,486,1,26,,,,DISCHARGED -8791,2021-01-03,25040.73209841201,354,Emergency,2021-01-23,Normal,8791,340,1,27,,,,DISCHARGED -8792,2019-10-30,32227.05152251872,382,Elective,2019-11-13,Abnormal,8792,150,1,23,,,,DISCHARGED -8794,2021-02-06,33631.463439198706,223,Elective,2021-02-13,Abnormal,8794,156,0,14,,,,DISCHARGED -8795,2020-11-01,37441.33469240476,140,Urgent,2020-11-08,Abnormal,8795,205,1,6,,,,DISCHARGED -8796,2022-08-03,22804.329661455173,365,Elective,2022-08-11,Abnormal,8796,473,1,17,Abdominal distension and constipation,"Assessment for gastrointestinal issues, dietary changes, and prescription of laxatives or other appropriate treatments.","K59.00 - Constipation, unspecified",DISCHARGED -8797,2022-11-16,29185.08007237015,235,Emergency,2022-12-01,Inconclusive,8797,178,0,0,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -8798,2020-10-28,46947.169445363215,498,Urgent,2020-10-29,Inconclusive,8798,196,4,14,Pain or discomfort during intercourse,Gynecological examination to identify underlying causes and potential treatment options.,N94.9 - Unspecified condition associated with female genital organs and menstrual cycle,DISCHARGED -8799,2022-03-22,14007.12618191666,475,Urgent,2022-04-09,Abnormal,8799,222,3,1,,,,DISCHARGED -8800,2020-01-07,41396.865371356296,316,Urgent,2020-01-18,Abnormal,8800,88,2,21,,,,DISCHARGED -8801,2023-02-08,5992.242186031815,182,Elective,,Normal,8801,286,0,28,,,,OPEN -8802,2021-10-28,28071.733800422026,226,Elective,2021-11-08,Abnormal,8802,433,0,1,,,,DISCHARGED -8803,2019-12-29,17768.198240682097,147,Emergency,2020-01-11,Inconclusive,8803,275,2,9,,,,DISCHARGED -8804,2019-06-28,1421.173737697727,142,Emergency,2019-07-20,Normal,8804,235,2,19,,,,DISCHARGED -8805,2021-11-29,39779.32591852544,129,Emergency,2021-12-01,Abnormal,8805,182,1,14,,,,DISCHARGED -8806,2021-01-03,29144.16909817545,180,Elective,2021-01-08,Inconclusive,8806,208,2,9,,,,DISCHARGED -8807,2021-07-09,33255.59064938876,490,Emergency,2021-07-24,Normal,8807,492,3,18,,,,DISCHARGED -8808,2023-02-01,23867.496630199785,155,Emergency,2023-02-06,Normal,8808,129,3,21,,,,DISCHARGED -8809,2020-09-19,18902.43155787442,408,Urgent,2020-10-10,Normal,8809,152,3,27,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -8810,2021-04-15,23071.51048687228,201,Emergency,2021-05-09,Abnormal,8810,12,3,27,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8811,2019-02-09,17563.329851257087,321,Urgent,2019-02-23,Normal,8811,121,3,12,,,,DISCHARGED -8813,2023-01-06,42259.15488087408,438,Emergency,2023-01-30,Abnormal,8813,358,1,29,,,,DISCHARGED -8814,2020-12-14,46972.341781159244,148,Elective,2021-01-05,Normal,8814,219,0,23,,,,DISCHARGED -8816,2020-01-14,23128.816875445504,482,Emergency,2020-01-19,Normal,8816,105,2,10,,,,DISCHARGED -8817,2023-04-22,44314.40754519525,478,Elective,,Normal,8817,374,0,21,Persistent hiccups,"Investigate potential causes, medications to alleviate hiccups, and lifestyle modifications. Monitor for resolution and address any underlying issues.",R14 - Flatulence and related conditions (Hiccup),OPEN -8818,2019-09-12,1207.38153187721,460,Emergency,2019-10-02,Normal,8818,69,2,1,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -8819,2020-12-15,32098.891980889173,334,Elective,2020-12-31,Inconclusive,8819,194,1,20,,,,DISCHARGED -8821,2020-01-28,10149.9279737987,395,Emergency,2020-02-06,Normal,8821,185,1,26,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -8822,2022-06-10,38305.1269067513,428,Elective,2022-06-27,Normal,8822,98,4,12,,,,DISCHARGED -8823,2022-11-15,36158.41247639777,494,Elective,2022-12-15,Inconclusive,8823,81,4,21,,,,DISCHARGED -8824,2022-10-25,45240.42667200669,212,Elective,2022-11-24,Inconclusive,8824,74,1,24,,,,DISCHARGED -8825,2021-08-21,3446.7423231202984,301,Emergency,2021-09-13,Inconclusive,8825,373,1,21,,,,DISCHARGED -8826,2023-03-25,44771.17436831207,437,Elective,2023-04-11,Abnormal,8826,339,2,25,,,,DISCHARGED -8827,2019-01-18,31620.93575294441,135,Elective,2019-02-07,Inconclusive,8827,191,1,20,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8828,2021-10-25,18258.212595218567,488,Urgent,2021-11-12,Abnormal,8828,324,0,0,,,,DISCHARGED -8830,2020-05-18,46086.262768810186,388,Urgent,2020-06-13,Abnormal,8830,466,2,25,,,,DISCHARGED -8831,2021-07-07,15030.203473365353,380,Elective,2021-07-25,Abnormal,8831,213,1,4,,,,DISCHARGED -8832,2022-06-22,34096.99120017301,420,Emergency,2022-06-28,Abnormal,8832,314,2,20,Acid reflux,"Lifestyle changes (diet modification, weight management), antacids, and medications to reduce stomach acid. Endoscopy may be performed to assess for complications. Regular follow-up to manage symptoms and monitor for any worsening.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8833,2022-03-03,1648.6815797705244,304,Elective,2022-03-06,Abnormal,8833,443,2,21,,,,DISCHARGED -8834,2022-08-12,17437.233275508286,135,Urgent,2022-09-07,Abnormal,8834,466,3,6,Frequent nosebleeds and nasal congestion,"Nasal examination, assessment for allergies or sinus issues, and prescription of appropriate medications.",J34.9 - Unspecified disorder of nose and nasal sinuses,DISCHARGED -8835,2021-11-03,21597.844402057253,185,Urgent,2021-11-15,Abnormal,8835,381,4,12,,,,DISCHARGED -8836,2021-01-23,21970.20890031881,344,Emergency,2021-02-02,Normal,8836,366,2,12,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8838,2021-12-30,38143.40974201474,212,Emergency,2022-01-21,Inconclusive,8838,317,2,19,,,,DISCHARGED -8839,2020-12-07,26938.24038777928,111,Urgent,2021-01-04,Normal,8839,143,3,22,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",DISCHARGED -8840,2018-12-29,33250.43652797085,203,Emergency,2019-01-12,Inconclusive,8840,383,1,20,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -8842,2023-09-12,1057.0173328013211,417,Elective,2023-09-13,Normal,8842,215,2,5,,,,DISCHARGED -8843,2018-12-09,21290.5516115989,487,Elective,2018-12-23,Abnormal,8843,360,3,19,,,,DISCHARGED -8844,2018-12-15,34894.74191223091,138,Urgent,2018-12-19,Normal,8844,323,0,11,,,,DISCHARGED -8845,2022-10-31,35752.34683154368,128,Emergency,2022-11-02,Abnormal,8845,14,3,7,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -8847,2022-09-11,48512.20574926701,271,Urgent,2022-10-08,Abnormal,8847,216,4,8,Anxiety,"Therapy (counseling, cognitive-behavioral therapy) and medications (anxiolytics) to manage anxiety symptoms. Lifestyle changes and regular follow-up to assess mental health and adjust treatment.",F41.1 - Generalized anxiety disorder,DISCHARGED -8848,2019-08-15,4221.521414111998,474,Emergency,2019-09-02,Inconclusive,8848,491,4,17,,,,DISCHARGED -8849,2021-08-12,45622.74088808528,127,Emergency,2021-08-18,Normal,8849,438,1,27,,,,DISCHARGED -8850,2019-07-19,21415.300355684216,300,Urgent,2019-07-29,Normal,8850,34,1,10,,,,DISCHARGED -8851,2022-12-05,37088.86760765881,182,Emergency,2022-12-17,Normal,8851,182,4,19,,,,DISCHARGED -8852,2021-11-16,42332.96341216854,173,Urgent,2021-11-22,Inconclusive,8852,269,4,10,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8853,2019-05-17,15554.63780928277,321,Elective,2019-06-05,Inconclusive,8853,432,2,23,Persistent foot pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -8854,2018-10-31,16342.647401791084,132,Emergency,2018-11-09,Normal,8854,466,4,23,,,,DISCHARGED -8855,2023-01-06,49793.61481604037,124,Emergency,,Normal,8855,357,1,14,Difficulty in opening or closing the eyes,"Ophthalmological evaluation, possible vision correction, and eye exercises",H52.9 - Unspecified disorder of refraction and accommodation,OPEN -8856,2020-03-11,22695.255248953174,259,Elective,2020-03-26,Normal,8856,99,4,8,,,,DISCHARGED -8857,2022-09-30,1205.0023448830134,401,Urgent,2022-10-23,Abnormal,8857,6,1,2,,,,DISCHARGED -8858,2022-03-27,27851.90957688142,376,Emergency,2022-04-14,Abnormal,8858,29,0,16,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -8859,2022-07-03,4776.335565785606,492,Emergency,2022-08-02,Inconclusive,8859,466,4,24,,,,DISCHARGED -8860,2019-07-30,34345.20255806178,427,Emergency,2019-08-14,Abnormal,8860,304,1,16,Rapid or irregular heartbeat,"Medications, lifestyle changes, and procedures such as catheter ablation for arrhythmia management.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8861,2020-05-05,46053.18340586411,169,Elective,2020-05-08,Normal,8861,472,3,2,,,,DISCHARGED -8862,2021-05-16,44332.88342638182,464,Elective,2021-05-26,Abnormal,8862,143,2,18,,,,DISCHARGED -8863,2022-10-16,36239.18123326368,470,Emergency,2022-10-24,Abnormal,8863,110,1,8,Feeling of tightness and heaviness in the chest,"Assessment for possible cardiac issues, imaging studies, and appropriate medications.",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -8864,2021-07-27,8158.801358616851,302,Elective,2021-08-12,Normal,8864,231,4,16,,,,DISCHARGED -8865,2019-07-27,19640.21974211076,278,Elective,2019-08-26,Inconclusive,8865,178,4,22,,,,DISCHARGED -8866,2021-02-06,22270.216813227325,277,Urgent,2021-02-19,Normal,8866,71,0,17,,,,DISCHARGED -8867,2018-11-30,12722.916124155116,325,Elective,2018-12-01,Normal,8867,209,3,22,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -8868,2020-06-14,28704.598234273,334,Emergency,2020-06-22,Normal,8868,219,1,14,Loss of sensation in the extremities,"Investigation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -8869,2020-11-02,13297.978057229811,212,Elective,2020-11-29,Inconclusive,8869,79,3,0,,,,DISCHARGED -8870,2020-10-16,39010.69256403665,389,Urgent,2020-11-01,Inconclusive,8870,499,0,28,,,,DISCHARGED -8871,2020-10-06,29714.10632345313,408,Emergency,2020-10-10,Abnormal,8871,82,2,25,,,,DISCHARGED -8872,2020-07-07,36090.2835690568,371,Elective,2020-07-19,Inconclusive,8872,41,3,9,Unexplained weight gain,"Comprehensive metabolic evaluation, dietary modifications, and medications to address underlying hormonal or metabolic issues. Monitor for weight changes.","E88.9 - Metabolic disorder, unspecified",DISCHARGED -8873,2020-10-22,17107.55128020529,370,Emergency,2020-11-02,Inconclusive,8873,272,0,7,Persistent soreness in the throat,"Throat lozenges, antibiotics for bacterial infections, and lifestyle changes. Investigate and treat the underlying cause.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -8874,2020-06-08,22361.075098493384,121,Elective,2020-06-20,Normal,8874,190,1,9,Persistent metallic taste in the mouth,"Oral examination, assessment for dental issues, and treatment of underlying causes.",K08.8 - Other specified disorders of teeth and supporting structures,DISCHARGED -8875,2021-07-23,44852.06205789174,180,Elective,2021-08-08,Normal,8875,172,2,28,,,,DISCHARGED -8876,2023-07-15,8234.347136322793,262,Urgent,2023-07-19,Inconclusive,8876,460,4,25,,,,DISCHARGED -8877,2020-11-06,26891.698187647817,407,Elective,2020-11-19,Inconclusive,8877,6,0,1,,,,DISCHARGED -8878,2019-03-15,16118.464519963878,469,Emergency,2019-03-22,Inconclusive,8878,154,4,18,,,,DISCHARGED -8879,2020-11-01,16768.88958616399,458,Urgent,2020-11-05,Abnormal,8879,9,2,13,,,,DISCHARGED -8880,2023-06-26,19440.15245480085,110,Emergency,2023-07-26,Abnormal,8880,33,0,7,,,,DISCHARGED -8881,2023-07-20,45196.07955763424,190,Urgent,2023-08-05,Normal,8881,35,0,18,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8882,2020-02-08,42604.69830355437,197,Elective,2020-02-21,Abnormal,8882,408,2,0,,,,DISCHARGED -8883,2019-05-09,23105.48964709527,131,Emergency,2019-05-12,Abnormal,8883,5,1,15,,,,DISCHARGED -8884,2023-08-12,34805.28914653571,360,Emergency,,Abnormal,8884,407,0,24,,,,OPEN -8885,2023-10-14,45477.06014120869,431,Urgent,,Normal,8885,401,2,23,,,,OPEN -8886,2022-01-06,40869.317220283774,492,Elective,2022-01-28,Inconclusive,8886,214,3,14,Pain in the lower right abdomen,"Identification and treatment of underlying causes, such as appendicitis or gastrointestinal issues. Medications, dietary changes, or surgical interventions may be recommended.","K35.9 - Acute appendicitis, unspecified",DISCHARGED -8887,2020-12-05,11299.29708560354,445,Urgent,2020-12-28,Inconclusive,8887,133,4,19,,,,DISCHARGED -8888,2022-02-08,36884.81221275551,214,Elective,2022-02-24,Inconclusive,8888,284,0,23,,,,DISCHARGED -8889,2022-06-26,10369.077866893536,110,Emergency,2022-07-07,Abnormal,8889,125,3,29,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -8890,2019-10-28,38231.915430776746,337,Emergency,2019-11-08,Normal,8890,408,0,4,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -8891,2022-09-02,16917.90347100207,304,Urgent,2022-09-26,Abnormal,8891,438,1,2,,,,DISCHARGED -8892,2019-06-06,27717.00745236392,477,Urgent,2019-06-15,Abnormal,8892,336,2,16,Difficulty in concentrating on tasks,"Psychological evaluation, possible counseling, and lifestyle modifications","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -8893,2020-04-11,43211.09093660289,237,Elective,2020-04-22,Inconclusive,8893,173,0,28,,,,DISCHARGED -8895,2022-06-09,44509.26579540538,202,Emergency,2022-06-22,Inconclusive,8895,151,2,9,,,,DISCHARGED -8896,2023-10-12,33644.878187553724,366,Emergency,,Inconclusive,8896,330,0,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",OPEN -8897,2021-10-06,45339.75780168944,351,Emergency,2021-10-19,Normal,8897,25,1,10,"Dry, hacking cough","Identify the cause, prescribe cough suppressants or expectorants, and recommend lifestyle changes for respiratory health.",R05 - Cough,DISCHARGED -8898,2020-01-13,49505.17942694056,430,Emergency,2020-02-04,Inconclusive,8898,382,1,5,,,,DISCHARGED -8899,2023-10-11,46925.43295989384,354,Emergency,2023-10-15,Abnormal,8899,114,3,3,,,,DISCHARGED -8900,2021-12-07,42997.25850307118,394,Urgent,2021-12-18,Inconclusive,8900,381,1,6,,,,DISCHARGED -8901,2022-12-23,47905.59878064817,220,Emergency,2023-01-13,Normal,8901,481,2,18,,,,DISCHARGED -8902,2023-03-03,5607.5789234838085,296,Emergency,2023-03-11,Abnormal,8902,283,1,6,,,,DISCHARGED -8903,2019-06-29,41928.02935320205,132,Elective,2019-07-04,Normal,8903,386,0,13,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -8904,2021-08-20,40919.77331102932,347,Emergency,2021-09-08,Abnormal,8904,74,1,16,,,,DISCHARGED -8905,2022-05-15,14885.39641630494,250,Elective,2022-06-12,Normal,8905,165,2,22,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -8906,2021-02-25,5404.22659317914,283,Urgent,2021-03-23,Inconclusive,8906,188,0,16,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -8907,2019-01-15,45155.856245248986,418,Urgent,2019-01-22,Inconclusive,8907,77,3,12,,,,DISCHARGED -8908,2022-09-19,39256.51859257606,440,Urgent,2022-10-12,Abnormal,8908,434,3,26,Persistent cough with mucus,"Cough suppressants, expectorants, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8909,2023-03-09,15720.767589225248,387,Urgent,2023-03-12,Inconclusive,8909,89,3,0,Excessive burping,"Dietary changes, antacids, and addressing underlying gastrointestinal issues",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -8910,2020-07-31,39576.44156529724,338,Elective,2020-08-12,Abnormal,8910,175,0,1,,,,DISCHARGED -8911,2023-08-04,34993.850535433296,493,Urgent,2023-08-20,Inconclusive,8911,20,3,17,,,,DISCHARGED -8913,2020-09-30,37608.99728979994,295,Emergency,2020-10-20,Normal,8913,53,1,3,,,,DISCHARGED -8914,2020-05-06,32822.53860908498,132,Emergency,2020-06-03,Abnormal,8914,183,0,12,,,,DISCHARGED -8915,2021-04-28,29257.6185609011,255,Urgent,2021-05-09,Inconclusive,8915,358,0,0,,,,DISCHARGED -8916,2018-12-05,17633.18863917003,429,Elective,2018-12-18,Normal,8916,221,0,3,,,,DISCHARGED -8917,2019-01-07,8574.686543798145,442,Urgent,2019-02-02,Abnormal,8917,314,4,1,,,,DISCHARGED -8918,2023-04-26,6977.992688976139,449,Emergency,2023-05-14,Normal,8918,327,2,3,,,,DISCHARGED -8919,2019-01-15,25957.890155685956,457,Urgent,2019-01-21,Normal,8919,178,4,15,,,,DISCHARGED -8920,2020-10-14,6332.782405740347,490,Urgent,2020-10-24,Normal,8920,275,4,3,,,,DISCHARGED -8921,2022-01-07,47086.46889949201,358,Elective,2022-01-13,Inconclusive,8921,111,4,24,,,,DISCHARGED -8923,2023-10-05,16076.570488251871,200,Emergency,2023-10-13,Inconclusive,8923,223,2,8,,,,DISCHARGED -8924,2022-01-01,37180.65231316765,313,Emergency,2022-01-31,Abnormal,8924,213,4,16,,,,DISCHARGED -8925,2019-01-31,10184.754974590553,220,Elective,2019-02-03,Inconclusive,8925,58,3,20,,,,DISCHARGED -8926,2019-12-26,18195.180826518423,317,Elective,2020-01-20,Normal,8926,326,0,22,,,,DISCHARGED -8927,2019-08-22,38187.57621397792,231,Elective,2019-09-19,Abnormal,8927,392,0,19,,,,DISCHARGED -8928,2022-02-15,27449.29643590696,181,Urgent,2022-02-28,Abnormal,8928,108,1,27,Frequent nosebleeds,"Nasal cauterization to stop bleeding, humidifiers to add moisture to the air, and addressing underlying causes such as nasal polyps or blood clotting disorders. Recommend lifestyle modifications (e.g., avoiding nasal irritants). Monitor for recurrence and adjust treatment as needed.",R04.0 - Epistaxis,DISCHARGED -8930,2023-10-09,25969.070628162943,476,Urgent,2023-10-22,Abnormal,8930,384,3,20,,,,DISCHARGED -8931,2020-04-29,18694.21190093016,223,Emergency,2020-05-25,Inconclusive,8931,156,2,1,,,,DISCHARGED -8932,2021-04-24,49289.85116757696,478,Emergency,2021-05-07,Abnormal,8932,190,0,2,,,,DISCHARGED -8933,2022-04-08,47926.65374072431,364,Urgent,2022-05-03,Abnormal,8933,199,4,22,,,,DISCHARGED -8934,2023-04-21,23986.89677398524,251,Urgent,,Inconclusive,8934,311,1,25,,,,OPEN -8935,2020-02-05,46020.76588294241,338,Elective,2020-02-16,Inconclusive,8935,195,1,28,,,,DISCHARGED -8936,2021-05-11,26981.63482085532,340,Emergency,2021-06-06,Normal,8936,34,0,14,,,,DISCHARGED -8937,2022-09-05,31318.46582945402,236,Emergency,2022-10-02,Abnormal,8937,378,3,6,,,,DISCHARGED -8938,2018-11-08,38453.1710640005,446,Urgent,2018-11-10,Inconclusive,8938,386,1,3,,,,DISCHARGED -8939,2022-04-01,41619.30247989572,266,Emergency,2022-04-08,Normal,8939,245,0,11,,,,DISCHARGED -8940,2022-09-19,45714.63357766769,268,Emergency,2022-10-13,Inconclusive,8940,236,3,0,,,,DISCHARGED -8941,2022-11-13,9757.978910490763,477,Urgent,2022-12-02,Inconclusive,8941,103,0,16,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -8943,2018-12-01,21578.28782841036,215,Emergency,2018-12-04,Inconclusive,8943,6,0,3,Excessive gas and bloating,Gastrointestinal evaluation for potential digestive issues and initiation of appropriate treatment.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -8944,2021-04-04,27788.69446378368,451,Elective,2021-04-18,Abnormal,8944,282,3,3,"Reports a persistent, dry cough with wheezing.",Evaluate for respiratory conditions such as asthma or chronic obstructive pulmonary disease (COPD); prescribe bronchodilators or anti-inflammatory medications.,"J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -8945,2023-09-11,10237.928963854469,118,Emergency,,Inconclusive,8945,0,3,21,,,,OPEN -8946,2023-07-23,27513.435346467493,326,Urgent,,Inconclusive,8946,218,3,22,,,,OPEN -8947,2020-11-08,15255.912575103685,242,Emergency,2020-11-26,Inconclusive,8947,463,0,24,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -8948,2020-04-02,39339.96760241062,288,Elective,2020-04-25,Abnormal,8948,229,1,8,,,,DISCHARGED -8949,2022-05-04,1103.5589034954205,345,Emergency,2022-05-25,Abnormal,8949,454,2,25,,,,DISCHARGED -8950,2023-04-19,2979.550097229357,187,Urgent,2023-05-06,Inconclusive,8950,171,2,27,Difficulty in starting or stopping urine flow,"Urological evaluation, possible medication, and lifestyle modifications",N39.3 - Stress incontinence,DISCHARGED -8951,2019-06-19,44909.60326566342,444,Elective,2019-07-15,Normal,8951,86,0,27,,,,DISCHARGED -8953,2019-07-13,37089.49028451794,331,Urgent,2019-08-04,Normal,8953,40,0,20,Hair loss and thinning,"Dermatological evaluation, nutritional counseling, and medications for hair growth. Monitor for improvements and address any underlying causes.",L64 - Androgenic alopecia,DISCHARGED -8954,2019-09-27,14580.828009319526,224,Emergency,2019-10-01,Normal,8954,122,1,9,,,,DISCHARGED -8956,2019-04-01,16523.342250811147,234,Urgent,2019-04-27,Inconclusive,8956,330,3,26,,,,DISCHARGED -8957,2018-11-23,2342.513870137612,420,Emergency,2018-12-20,Normal,8957,297,0,18,,,,DISCHARGED -8958,2020-05-03,12478.88755864046,168,Urgent,2020-06-02,Abnormal,8958,372,4,18,Feeling of a lump in the nose,"ENT evaluation, possible imaging studies, and treatment for underlying causes","H93.9 - Disorder of ear, unspecified",DISCHARGED -8959,2021-02-15,25017.528171226066,118,Urgent,2021-02-21,Abnormal,8959,416,3,14,,,,DISCHARGED -8960,2022-11-05,39365.920372673965,442,Urgent,2022-11-19,Inconclusive,8960,177,0,21,,,,DISCHARGED -8961,2019-08-27,20784.89707187038,182,Urgent,2019-09-06,Normal,8961,62,4,16,,,,DISCHARGED -8962,2019-11-03,21031.4641980804,279,Emergency,2019-11-25,Normal,8962,483,1,6,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -8963,2022-04-27,35444.10057011059,434,Emergency,2022-05-17,Abnormal,8963,164,4,2,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -8965,2019-06-03,41283.04620658344,468,Elective,2019-07-02,Abnormal,8965,488,0,4,,,,DISCHARGED -8966,2023-10-30,35678.113133597435,107,Emergency,2023-11-24,Inconclusive,8966,186,2,15,,,,DISCHARGED -8967,2020-08-04,46000.95491087031,289,Urgent,2020-08-10,Normal,8967,382,0,22,,,,DISCHARGED -8970,2021-12-17,25656.66716619958,414,Emergency,2021-12-24,Abnormal,8970,208,2,6,,,,DISCHARGED -8971,2021-01-06,36841.18294071179,228,Elective,2021-01-21,Inconclusive,8971,226,1,15,,,,DISCHARGED -8972,2022-10-22,19075.959559934552,415,Elective,2022-11-04,Normal,8972,431,1,8,"Patient describes a sudden, severe pain in the hip.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"M19.9 - Osteoarthritis, unspecified",DISCHARGED -8973,2020-06-27,1068.4196591442185,438,Urgent,2020-07-03,Normal,8973,388,3,0,,,,DISCHARGED -8974,2021-05-03,40613.149785464346,126,Elective,2021-05-19,Inconclusive,8974,47,3,2,,,,DISCHARGED -8975,2018-11-03,25776.085524792627,428,Urgent,2018-11-21,Abnormal,8975,223,2,24,,,,DISCHARGED -8976,2021-03-04,44064.14569972938,376,Urgent,2021-03-06,Inconclusive,8976,2,2,7,,,,DISCHARGED -8977,2019-03-21,4628.516595170861,212,Emergency,2019-03-25,Normal,8977,371,1,17,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -8978,2020-07-02,11316.038568230137,445,Urgent,2020-07-24,Normal,8978,174,4,23,,,,DISCHARGED -8979,2019-11-06,6891.492220774002,149,Elective,2019-11-24,Inconclusive,8979,445,2,23,,,,DISCHARGED -8980,2020-05-27,42373.154448485846,300,Urgent,2020-06-09,Inconclusive,8980,98,2,17,Unexplained weight gain and bloating,"Hormonal assessment, evaluation for thyroid issues or metabolic conditions, and lifestyle modifications.",E07.8 - Other specified disorders of thyroid,DISCHARGED -8981,2022-07-26,8930.375011807073,215,Urgent,2022-08-04,Abnormal,8981,115,4,23,,,,DISCHARGED -8983,2022-09-18,49180.3840908525,471,Elective,2022-10-13,Inconclusive,8983,269,3,18,,,,DISCHARGED -8984,2023-10-27,38860.183285570594,127,Elective,2023-11-24,Normal,8984,446,3,6,,,,DISCHARGED -8985,2019-07-13,14467.8201216075,237,Emergency,2019-08-01,Abnormal,8985,367,2,28,,,,DISCHARGED -8986,2023-08-14,10984.12294760183,338,Urgent,,Normal,8986,252,3,24,,,,OPEN -8987,2019-02-09,17204.34905232734,258,Urgent,2019-02-16,Normal,8987,316,3,19,"Sudden, severe chest pain","Immediate medical attention, diagnostic tests to identify the cause (such as a heart attack), and appropriate interventions, including medications and potentially surgery.","R07.9 - Chest pain, unspecified",DISCHARGED -8989,2021-10-04,31899.22464201341,500,Elective,2021-10-20,Inconclusive,8989,414,3,26,,,,DISCHARGED -8990,2019-07-29,20828.840333860324,174,Elective,2019-08-27,Abnormal,8990,94,1,5,,,,DISCHARGED -8991,2023-03-26,24170.86723812414,458,Urgent,,Normal,8991,272,0,24,,,,OPEN -8992,2020-11-16,47536.94054492415,354,Emergency,2020-11-18,Inconclusive,8992,379,2,26,Patient reports a history of frequent tension headaches.,Assess triggers and recommend lifestyle changes; prescribe pain relievers or preventive medications.,"G43.9 - Migraine, unspecified",DISCHARGED -8993,2020-02-01,45778.730706115326,286,Urgent,2020-02-04,Normal,8993,23,2,10,,,,DISCHARGED -8994,2020-02-04,3024.2314154897304,292,Emergency,2020-02-21,Abnormal,8994,115,1,4,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -8995,2023-08-14,13651.046437620967,285,Urgent,,Normal,8995,150,0,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",OPEN -8997,2020-05-19,45904.67994932743,171,Elective,2020-05-30,Inconclusive,8997,337,0,0,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -8998,2021-11-05,26586.927559572134,358,Urgent,2021-11-26,Abnormal,8998,49,1,18,,,,DISCHARGED -8999,2022-09-11,15702.215911687625,170,Elective,2022-09-17,Inconclusive,8999,205,4,10,Chest pain and shortness of breath,"Conducted an immediate electrocardiogram (ECG) to assess cardiac function. Administered aspirin and nitroglycerin for acute relief. Admitted the patient to the hospital for further cardiac monitoring and additional diagnostic tests, such as cardiac enzymes and stress testing. Collaborated with cardiology specialists to determine the appropriate intervention, such as angioplasty or coronary artery bypass surgery.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9001,2022-10-12,25216.236316628874,246,Elective,2022-10-28,Abnormal,9001,497,4,14,Pain in the lower abdomen and pelvis,"Identification and treatment of underlying causes, such as gynecological issues or gastrointestinal conditions. Medications, physical therapy, or surgical interventions may be recommended.",N94.9 - Unspecified condition of female genital organs,DISCHARGED -9002,2021-02-22,14059.115889418728,248,Emergency,2021-03-12,Inconclusive,9002,334,0,24,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9003,2022-05-08,29362.31441022983,347,Urgent,2022-05-14,Abnormal,9003,78,4,15,,,,DISCHARGED -9004,2020-09-06,15749.302925232005,221,Urgent,2020-10-02,Inconclusive,9004,69,4,2,,,,DISCHARGED -9005,2021-09-17,43393.65425095729,137,Elective,2021-10-03,Inconclusive,9005,26,4,10,,,,DISCHARGED -9006,2020-03-28,8766.898674793429,438,Elective,2020-04-23,Inconclusive,9006,270,0,10,,,,DISCHARGED -9007,2020-04-26,13777.319364682857,464,Elective,2020-05-20,Normal,9007,49,4,9,,,,DISCHARGED -9008,2019-08-09,12926.293857749148,186,Urgent,2019-09-01,Inconclusive,9008,291,2,1,Difficulty in focusing the eyes,"Eye examination, vision correction, and possible referral to a neurologist",H53.9 - Unspecified visual disturbance,DISCHARGED -9010,2020-04-22,40075.6639036937,299,Elective,2020-05-21,Normal,9010,246,0,19,,,,DISCHARGED -9011,2019-01-14,14805.486471993025,217,Elective,2019-02-13,Abnormal,9011,263,1,4,Chest heaviness and indigestion,"Evaluate for cardiovascular issues and gastrointestinal disorders, prescribe medications as needed, and recommend dietary changes.","I45.9 - Conduction disorder, unspecified",DISCHARGED -9012,2020-08-29,42216.44940298435,129,Elective,2020-09-28,Inconclusive,9012,78,4,22,,,,DISCHARGED -9013,2019-01-15,9110.661612663942,473,Elective,2019-01-21,Inconclusive,9013,386,3,22,Sudden weight gain,"Diet and exercise adjustments, managing underlying health conditions",Z71.3 - Dietary counseling and surveillance,DISCHARGED -9014,2021-10-11,6635.995533243206,391,Urgent,2021-11-06,Inconclusive,9014,189,0,24,,,,DISCHARGED -9015,2018-12-23,9725.55642941671,258,Urgent,2019-01-16,Normal,9015,46,1,28,,,,DISCHARGED -9016,2021-07-22,22499.5888991289,467,Urgent,2021-08-10,Inconclusive,9016,460,2,7,,,,DISCHARGED -9017,2020-03-07,47725.05935888982,479,Emergency,2020-03-25,Normal,9017,360,1,12,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9018,2019-09-06,45814.58180829432,276,Elective,2019-09-14,Normal,9018,353,4,14,Feeling of a lump in the back of the throat,"ENT evaluation, possible endoscopy or imaging studies",H92.90 - Unspecified disorder of ear,DISCHARGED -9020,2021-06-05,6052.482315462576,237,Emergency,2021-06-25,Abnormal,9020,471,3,1,,,,DISCHARGED -9022,2019-05-31,5402.833460534351,410,Elective,2019-06-09,Abnormal,9022,487,4,11,,,,DISCHARGED -9023,2019-04-19,48779.537910585495,235,Elective,2019-05-18,Abnormal,9023,351,1,23,,,,DISCHARGED -9024,2021-03-30,47431.90570159217,472,Urgent,2021-04-17,Normal,9024,188,0,7,,,,DISCHARGED -9025,2019-07-14,4600.008462547212,108,Elective,2019-08-05,Inconclusive,9025,415,3,20,,,,DISCHARGED -9027,2021-05-17,1739.106108275013,222,Urgent,2021-06-16,Normal,9027,255,3,28,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9028,2020-12-24,34865.241658574785,398,Emergency,2021-01-12,Abnormal,9028,221,1,18,,,,DISCHARGED -9029,2019-04-11,23130.84142407352,245,Emergency,2019-04-14,Normal,9029,371,4,24,,,,DISCHARGED -9031,2019-01-02,20414.82208651168,210,Urgent,2019-01-31,Abnormal,9031,240,1,27,,,,DISCHARGED -9032,2019-01-31,41697.874001312906,458,Urgent,2019-03-02,Normal,9032,268,3,22,,,,DISCHARGED -9033,2019-01-08,48391.14147288998,295,Urgent,2019-01-13,Abnormal,9033,0,1,0,,,,DISCHARGED -9034,2022-05-02,41756.77426243366,337,Elective,2022-05-27,Inconclusive,9034,33,3,7,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9035,2020-08-05,13041.684990853948,280,Elective,2020-08-28,Normal,9035,445,4,9,,,,DISCHARGED -9036,2022-03-30,42964.941605907065,352,Elective,2022-04-21,Normal,9036,78,0,12,,,,DISCHARGED -9037,2019-01-29,11222.608729303662,318,Elective,2019-02-11,Normal,9037,235,0,4,Back pain and muscle spasms,"Physical therapy, pain relievers, and muscle relaxants. Identify and address the underlying cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9039,2021-12-05,5585.951554729145,477,Urgent,2021-12-15,Abnormal,9039,333,1,21,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9040,2021-02-25,27505.07437219164,464,Urgent,2021-03-01,Abnormal,9040,376,3,8,,,,DISCHARGED -9041,2019-12-11,44867.8638072376,234,Elective,2019-12-12,Abnormal,9041,348,0,9,,,,DISCHARGED -9042,2022-02-27,41457.56377363006,105,Urgent,2022-03-05,Abnormal,9042,97,3,13,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9043,2020-12-20,43405.73356794137,257,Elective,2021-01-19,Inconclusive,9043,81,4,23,,,,DISCHARGED -9044,2023-04-10,42718.14619517718,135,Urgent,,Normal,9044,454,1,29,,,,OPEN -9045,2020-02-12,14688.627736285349,143,Emergency,2020-02-22,Inconclusive,9045,476,3,10,Insomnia,"Sleep hygiene education, behavioral therapy, and, if necessary, medications for short-term relief. Address underlying causes such as anxiety or sleep disorders. Regular follow-up to assess sleep patterns and adjust treatment as needed.","F51.9 - Sleep disorder, unspecified",DISCHARGED -9046,2019-07-19,19994.69628873585,470,Urgent,2019-07-28,Abnormal,9046,414,1,13,,,,DISCHARGED -9047,2019-08-11,12083.688667707274,485,Elective,2019-09-06,Abnormal,9047,191,3,29,,,,DISCHARGED -9048,2022-03-02,44427.00578342563,180,Urgent,2022-03-21,Normal,9048,252,3,2,,,,DISCHARGED -9049,2019-09-17,40416.1045034484,357,Urgent,2019-10-07,Inconclusive,9049,408,4,28,,,,DISCHARGED -9050,2020-07-03,37843.55399166356,120,Urgent,2020-07-04,Inconclusive,9050,37,1,20,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9051,2021-07-18,44415.90473238212,178,Elective,2021-07-29,Abnormal,9051,13,2,15,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9052,2021-05-16,26578.871163079235,228,Emergency,2021-05-23,Normal,9052,391,3,19,,,,DISCHARGED -9053,2020-01-14,8114.22304823118,293,Emergency,2020-02-03,Inconclusive,9053,346,3,29,,,,DISCHARGED -9054,2019-12-30,30015.78133206465,198,Elective,2020-01-19,Normal,9054,309,0,16,,,,DISCHARGED -9055,2021-05-16,36560.71526928349,301,Emergency,2021-06-01,Inconclusive,9055,385,1,4,,,,DISCHARGED -9056,2021-03-06,13414.902698189984,259,Emergency,2021-03-20,Abnormal,9056,208,2,25,Lightheadedness and fainting spells,"Conduct a thorough cardiovascular evaluation, prescribe medications to regulate blood pressure, and recommend lifestyle modifications.","I48.9 - Atrial fibrillation and atrial flutter, unspecified",DISCHARGED -9057,2019-01-09,33745.52133752985,302,Emergency,2019-01-19,Abnormal,9057,356,4,6,Feeling of a lump in the abdomen,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9058,2020-01-01,37448.58950307509,351,Urgent,2020-01-11,Inconclusive,9058,461,2,16,,,,DISCHARGED -9059,2022-03-13,41365.99900053181,436,Emergency,2022-03-20,Abnormal,9059,88,4,19,,,,DISCHARGED -9060,2019-03-04,20613.58693324452,495,Elective,2019-03-06,Normal,9060,55,2,21,,,,DISCHARGED -9061,2023-08-27,20051.093613361045,148,Urgent,2023-09-04,Normal,9061,93,2,10,,,,DISCHARGED -9062,2023-02-03,9318.109792301088,149,Elective,2023-02-15,Abnormal,9062,92,1,11,,,,DISCHARGED -9063,2023-01-20,14688.05525672029,455,Elective,2023-02-07,Abnormal,9063,339,0,24,Muscle feebleness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9064,2023-10-19,42913.03552456971,269,Emergency,2023-10-27,Inconclusive,9064,84,2,26,,,,DISCHARGED -9065,2023-09-08,1811.5322525903173,447,Elective,2023-09-20,Abnormal,9065,444,3,23,,,,DISCHARGED -9066,2022-12-24,34238.72727724299,280,Emergency,2023-01-17,Inconclusive,9066,244,3,1,,,,DISCHARGED -9067,2020-09-30,40647.756070176656,407,Elective,2020-10-10,Inconclusive,9067,21,3,26,,,,DISCHARGED -9069,2019-08-08,29235.717758505325,121,Emergency,2019-08-16,Abnormal,9069,290,0,18,,,,DISCHARGED -9070,2020-07-13,19300.80935426816,370,Emergency,2020-07-16,Abnormal,9070,484,2,25,,,,DISCHARGED -9071,2020-01-21,7622.071570457409,224,Elective,2020-02-17,Abnormal,9071,271,4,28,,,,DISCHARGED -9073,2021-09-03,24704.99934384552,264,Emergency,2021-09-29,Normal,9073,305,4,4,Constant feeling of fatigue and weakness,"Comprehensive metabolic panel, assessment for underlying medical conditions, and lifestyle modifications.","E87.9 - Fluid overload, unspecified",DISCHARGED -9074,2020-07-15,28072.3500940625,262,Elective,2020-07-21,Inconclusive,9074,121,1,10,,,,DISCHARGED -9075,2019-03-20,8156.966032298364,452,Emergency,2019-04-06,Inconclusive,9075,127,0,22,,,,DISCHARGED -9076,2022-12-03,45387.88189075296,179,Urgent,2022-12-08,Inconclusive,9076,112,2,18,,,,DISCHARGED -9077,2020-08-05,38174.646162379686,146,Emergency,2020-08-23,Normal,9077,426,3,27,,,,DISCHARGED -9078,2023-10-30,11566.110209267605,409,Urgent,2023-11-03,Abnormal,9078,272,0,6,Frequent headaches,Consultation with a neurologist to identify the type of headache and initiate appropriate management.,"G44.1 - Vascular headache, not elsewhere classified",DISCHARGED -9079,2022-10-24,20677.59158730373,271,Emergency,2022-10-26,Inconclusive,9079,335,0,20,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9080,2022-02-27,28577.12688175262,483,Elective,2022-03-21,Normal,9080,441,2,25,,,,DISCHARGED -9081,2022-06-26,9158.547203367772,195,Elective,2022-07-17,Abnormal,9081,129,1,21,,,,DISCHARGED -9082,2019-08-06,19497.1185288297,153,Emergency,2019-08-23,Inconclusive,9082,131,1,5,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9083,2023-05-11,28022.26742703769,426,Urgent,,Abnormal,9083,84,1,10,,,,OPEN -9084,2020-09-23,31184.880606871666,385,Emergency,2020-09-30,Normal,9084,422,3,26,,,,DISCHARGED -9085,2019-06-02,27108.26641112268,241,Elective,2019-06-21,Abnormal,9085,481,3,13,,,,DISCHARGED -9086,2020-01-04,15921.235407007502,230,Emergency,2020-01-15,Normal,9086,349,2,27,Sudden onset of severe pain,Urgent medical attention to identify the source of pain and initiate appropriate pain management.,R10.9 - Unspecified abdominal pain,DISCHARGED -9087,2021-08-16,32916.66277012341,122,Urgent,2021-09-10,Abnormal,9087,389,1,3,,,,DISCHARGED -9088,2019-12-18,38890.94391235366,333,Emergency,2020-01-15,Inconclusive,9088,80,2,27,,,,DISCHARGED -9090,2023-02-05,6723.376785837038,368,Emergency,2023-02-18,Normal,9090,486,1,7,,,,DISCHARGED -9091,2021-12-22,32553.871186127188,459,Urgent,2022-01-18,Inconclusive,9091,472,0,8,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9092,2022-01-07,14114.800108453635,295,Elective,2022-01-18,Normal,9092,324,4,1,Sudden onset of back pain,"Rest, pain medication, and consultation with a spine specialist if needed","M54.9 - Dorsalgia, unspecified",DISCHARGED -9093,2020-10-09,38708.22762271941,166,Emergency,2020-10-13,Inconclusive,9093,68,4,24,,,,DISCHARGED -9094,2020-11-08,47121.86592697616,137,Emergency,2020-11-09,Abnormal,9094,147,1,10,Irregular heartbeat and palpitations,"Cardiac evaluation, medications for rhythm control, and lifestyle modifications. Monitor for changes in heart rhythm and adjust treatment as needed.","I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9095,2019-12-19,11554.0692389646,412,Elective,2019-12-24,Normal,9095,447,2,27,Frequent chest pain,"Immediate evaluation by a cardiologist, possible ECG and cardiac enzymes test","I20.9 - Angina pectoris, unspecified",DISCHARGED -9096,2022-03-12,6095.279708524971,129,Urgent,2022-03-20,Abnormal,9096,15,3,19,Painful or difficulty swallowing,Evaluation by a gastroenterologist for possible endoscopy and treatment of underlying esophageal issues.,"K20.9 - Esophagitis, unspecified",DISCHARGED -9097,2021-11-09,1540.0041442287657,145,Elective,2021-11-20,Abnormal,9097,306,1,21,,,,DISCHARGED -9098,2020-01-04,32508.75338095534,151,Urgent,2020-01-07,Inconclusive,9098,104,1,29,Shortness of breath and chest tightness,"Assessment for possible cardiac or respiratory issues, pulmonary function tests, and appropriate medications.","R07.9 - Chest pain, unspecified",DISCHARGED -9099,2022-08-30,6870.61826161369,145,Elective,2022-09-29,Inconclusive,9099,164,3,6,,,,DISCHARGED -9100,2019-01-21,38855.98088303855,478,Elective,2019-01-28,Normal,9100,487,1,3,,,,DISCHARGED -9101,2023-01-24,37962.27052585737,141,Emergency,2023-02-11,Inconclusive,9101,200,0,23,,,,DISCHARGED -9102,2021-10-02,39286.80404588618,347,Urgent,2021-10-22,Inconclusive,9102,196,3,28,,,,DISCHARGED -9103,2023-03-15,29654.08826834418,158,Urgent,2023-03-24,Abnormal,9103,425,0,13,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9104,2019-12-30,31300.28518632404,156,Elective,2020-01-26,Abnormal,9104,184,4,25,,,,DISCHARGED -9105,2022-02-19,3919.8757597064746,428,Elective,2022-02-20,Normal,9105,321,3,23,,,,DISCHARGED -9106,2022-12-29,28406.254402941053,266,Emergency,2023-01-17,Inconclusive,9106,264,3,0,,,,DISCHARGED -9107,2021-02-23,16912.606878360537,273,Emergency,2021-02-26,Inconclusive,9107,362,2,23,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9108,2022-03-12,17293.558492254306,471,Urgent,2022-04-05,Inconclusive,9108,99,2,25,,,,DISCHARGED -9109,2020-05-08,19440.584963511104,147,Emergency,2020-05-18,Normal,9109,341,3,29,,,,DISCHARGED -9111,2023-09-16,1636.173851281305,144,Elective,2023-09-28,Normal,9111,319,4,11,Complains of persistent itching and redness in the genital area.,Evaluate for possible infections or dermatological issues; prescribe antifungal or antibacterial treatments.,"L30.9 - Dermatitis, unspecified",DISCHARGED -9113,2020-01-28,45709.62795360011,414,Emergency,2020-02-06,Normal,9113,213,1,18,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9114,2023-09-15,39668.90185316746,172,Elective,2023-10-10,Inconclusive,9114,277,2,4,,,,DISCHARGED -9115,2020-05-05,1880.322966540844,384,Urgent,2020-05-31,Abnormal,9115,161,4,29,,,,DISCHARGED -9116,2020-04-30,49136.017199237045,232,Emergency,2020-05-05,Inconclusive,9116,438,4,25,,,,DISCHARGED -9117,2022-10-30,18484.01112658948,240,Elective,2022-11-07,Normal,9117,156,2,7,,,,DISCHARGED -9119,2022-12-26,11421.4245875114,350,Urgent,2023-01-11,Inconclusive,9119,421,1,10,,,,DISCHARGED -9120,2023-08-03,43819.890745822966,419,Elective,2023-08-29,Abnormal,9120,250,2,21,,,,DISCHARGED -9121,2021-05-05,33593.18577373371,425,Emergency,2021-05-18,Normal,9121,365,4,3,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9122,2022-07-10,14213.243831598911,126,Elective,2022-07-15,Normal,9122,96,0,14,,,,DISCHARGED -9123,2022-12-26,30845.43076070712,207,Elective,2023-01-14,Abnormal,9123,17,2,19,,,,DISCHARGED -9124,2021-08-10,3962.8255015053296,331,Urgent,2021-08-30,Inconclusive,9124,326,4,11,,,,DISCHARGED -9125,2018-12-18,41428.57399137461,292,Elective,2018-12-21,Normal,9125,448,2,19,,,,DISCHARGED -9126,2023-09-04,28087.521955188604,200,Elective,,Normal,9126,382,4,21,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",OPEN -9127,2019-04-29,6795.909152097385,155,Elective,2019-05-12,Inconclusive,9127,96,1,22,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9128,2022-04-27,26105.81430282644,123,Urgent,2022-05-05,Inconclusive,9128,0,4,28,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9129,2020-01-14,23861.395863975704,307,Emergency,2020-01-29,Abnormal,9129,215,3,20,,,,DISCHARGED -9130,2022-04-01,46894.36288157077,395,Emergency,2022-04-10,Inconclusive,9130,131,0,9,,,,DISCHARGED -9131,2022-10-15,32665.798488631368,161,Elective,2022-10-30,Normal,9131,259,4,29,,,,DISCHARGED -9132,2022-09-05,8021.494408912946,401,Urgent,2022-09-20,Normal,9132,124,2,23,,,,DISCHARGED -9133,2023-07-10,10153.685752398243,495,Emergency,2023-07-13,Abnormal,9133,81,2,15,Persistent pain in the soles of the feet,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9134,2019-09-19,35046.63257233002,391,Elective,2019-10-13,Inconclusive,9134,282,4,22,,,,DISCHARGED -9135,2023-05-26,32647.80942820762,348,Urgent,2023-06-07,Abnormal,9135,170,3,7,,,,DISCHARGED -9136,2020-05-18,22610.8375483538,357,Elective,2020-05-22,Abnormal,9136,58,4,19,,,,DISCHARGED -9137,2020-08-16,48790.5976304974,307,Urgent,2020-08-26,Normal,9137,31,1,7,Frequent falls,Comprehensive assessment by a healthcare professional to identify the cause of falls and implement appropriate interventions.,R29.6 - Repeated falls,DISCHARGED -9138,2020-01-06,31867.740481754296,140,Urgent,2020-01-22,Inconclusive,9138,160,3,28,Loss of sense of taste or smell,"Identify and treat underlying causes such as respiratory infections, neurological issues, or sinus problems.","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9139,2023-10-27,11306.550792601443,110,Urgent,2023-11-18,Abnormal,9139,283,4,5,,,,DISCHARGED -9140,2020-12-26,30646.709999666367,194,Emergency,2021-01-09,Abnormal,9140,105,0,2,,,,DISCHARGED -9141,2019-07-23,31593.6860575208,417,Elective,2019-08-12,Normal,9141,104,3,28,Sudden onset of toe cramps,"Evaluation by a physician, possible imaging studies or referral to a specialist",R69 - Unknown and unspecified causes of morbidity,DISCHARGED -9142,2022-07-14,30117.14651273541,160,Emergency,2022-08-01,Inconclusive,9142,438,4,7,,,,DISCHARGED -9143,2022-01-19,40893.66789528081,281,Emergency,2022-02-13,Abnormal,9143,227,0,28,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9144,2023-01-02,12707.296002540905,321,Urgent,,Abnormal,9144,187,4,22,Pain or discomfort in the lower abdomen,Gynecological or urological examination for potential causes and treatment options.,"N94.6 - Dyspareunia, unspecified",OPEN -9145,2020-05-10,43962.38794955955,316,Elective,2020-06-04,Abnormal,9145,69,1,9,,,,DISCHARGED -9146,2020-01-19,23492.26290128188,484,Urgent,2020-02-14,Normal,9146,317,2,4,,,,DISCHARGED -9147,2020-06-02,46174.22599965044,275,Emergency,2020-06-13,Abnormal,9147,463,4,10,,,,DISCHARGED -9148,2021-08-07,14429.22163061138,378,Urgent,2021-08-13,Abnormal,9148,289,3,3,,,,DISCHARGED -9149,2020-05-06,24056.935522750093,471,Elective,2020-06-04,Inconclusive,9149,86,4,16,,,,DISCHARGED -9150,2019-01-21,44002.48718363696,271,Elective,2019-02-06,Normal,9150,369,4,25,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9151,2020-05-08,47390.49293494775,461,Emergency,2020-05-24,Abnormal,9151,361,4,2,,,,DISCHARGED -9152,2020-10-24,6691.812759987741,291,Emergency,2020-11-19,Inconclusive,9152,471,4,17,,,,DISCHARGED -9153,2022-08-01,37015.50889465102,193,Urgent,2022-08-12,Inconclusive,9153,55,3,7,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,DISCHARGED -9154,2019-01-30,45946.51214299432,370,Urgent,2019-02-07,Inconclusive,9154,112,3,29,,,,DISCHARGED -9155,2020-07-19,28445.73494624793,239,Emergency,2020-07-22,Abnormal,9155,12,4,23,,,,DISCHARGED -9156,2022-02-16,4090.581059082534,266,Elective,2022-03-09,Inconclusive,9156,439,2,11,,,,DISCHARGED -9157,2022-12-09,33388.53859236135,310,Elective,2022-12-27,Inconclusive,9157,17,4,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9158,2020-10-10,42680.12977919788,264,Emergency,2020-10-11,Normal,9158,181,3,15,,,,DISCHARGED -9159,2022-05-19,25301.234037396716,267,Urgent,2022-05-25,Abnormal,9159,460,1,13,,,,DISCHARGED -9161,2019-04-26,24260.336634343654,254,Urgent,2019-05-07,Inconclusive,9161,112,4,20,,,,DISCHARGED -9162,2023-04-01,31811.795148321813,185,Elective,,Normal,9162,228,4,15,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,OPEN -9164,2021-05-03,45060.35200754853,453,Urgent,2021-05-20,Normal,9164,170,4,26,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9165,2022-08-06,34216.25761307277,253,Elective,2022-08-20,Abnormal,9165,294,4,3,,,,DISCHARGED -9166,2023-07-05,47306.08356532561,346,Emergency,2023-07-31,Inconclusive,9166,188,0,0,Frequent nose itching and sneezing,"Antihistamines, nasal corticosteroids, and allergy management. Monitor for allergy symptoms and adjust treatment as needed.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9167,2022-10-01,39659.8386443888,181,Elective,2022-10-17,Abnormal,9167,425,4,0,,,,DISCHARGED -9168,2023-01-26,1032.6402799537905,435,Emergency,2023-02-13,Abnormal,9168,464,3,28,Difficulty in bending,"Physical therapy, exercise, and addressing underlying musculoskeletal issues",M54.5 - Low back pain,DISCHARGED -9169,2021-12-26,1497.440621496697,489,Elective,2022-01-19,Inconclusive,9169,78,3,21,,,,DISCHARGED -9170,2021-05-06,13067.426497220697,452,Urgent,2021-05-14,Abnormal,9170,145,0,14,,,,DISCHARGED -9171,2021-08-13,12533.814445348706,347,Elective,2021-09-09,Normal,9171,406,4,19,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9172,2021-07-02,40389.991448140885,305,Elective,2021-07-09,Inconclusive,9172,181,2,19,,,,DISCHARGED -9173,2022-06-08,18806.551321118328,362,Urgent,2022-06-09,Normal,9173,498,4,2,,,,DISCHARGED -9176,2023-04-23,37147.200363707,399,Emergency,,Normal,9176,285,3,13,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,OPEN -9177,2023-07-06,13732.020872628313,239,Emergency,2023-07-18,Normal,9177,249,1,8,,,,DISCHARGED -9178,2020-09-09,6473.06041160084,236,Urgent,2020-10-09,Normal,9178,353,1,18,,,,DISCHARGED -9179,2019-02-06,20591.37548132204,496,Urgent,2019-02-24,Abnormal,9179,313,2,7,,,,DISCHARGED -9180,2019-03-22,19699.639448510745,366,Emergency,2019-04-10,Inconclusive,9180,195,4,1,,,,DISCHARGED -9181,2018-12-05,40051.3889055392,349,Elective,2018-12-22,Abnormal,9181,322,0,3,Vision changes and eye pain,"Ophthalmic evaluation, prescription glasses or contacts, and medication for eye pain. Treat underlying eye conditions.",H52.9 - Unspecified disorder of refraction and accommodation,DISCHARGED -9182,2020-01-07,23341.601693308086,125,Elective,2020-01-25,Abnormal,9182,70,4,0,,,,DISCHARGED -9183,2020-04-09,36187.796011793485,295,Urgent,2020-05-06,Abnormal,9183,247,2,10,,,,DISCHARGED -9184,2020-12-14,17809.366508878404,313,Emergency,2020-12-23,Normal,9184,145,2,4,,,,DISCHARGED -9185,2022-07-28,39649.465913420114,113,Elective,2022-08-09,Normal,9185,105,2,1,Worsening allergies and respiratory symptoms,"Identify allergens, prescribe antihistamines or other medications, and recommend environmental modifications.","T78.4 - Allergy, unspecified",DISCHARGED -9186,2021-11-30,17758.48286453917,464,Urgent,2021-12-23,Inconclusive,9186,262,1,26,Yellowing of the skin and eyes (jaundice),"Conduct liver function tests, identify the underlying cause, prescribe medications or recommend surgical interventions as needed.","K76.9 - Liver disease, unspecified",DISCHARGED -9187,2021-12-17,31630.19317380787,248,Elective,2021-12-20,Normal,9187,295,4,12,,,,DISCHARGED -9188,2019-11-15,18519.21312014216,410,Emergency,2019-12-15,Normal,9188,69,4,16,,,,DISCHARGED -9190,2022-01-01,35644.04666024292,469,Elective,2022-01-10,Abnormal,9190,469,0,16,,,,DISCHARGED -9191,2022-07-10,3043.838664053392,232,Emergency,2022-07-22,Normal,9191,192,2,17,,,,DISCHARGED -9192,2023-09-02,28812.1329791255,467,Emergency,2023-09-20,Normal,9192,67,2,20,,,,DISCHARGED -9194,2021-01-25,32768.46758967712,266,Urgent,2021-02-12,Abnormal,9194,493,3,27,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9195,2021-11-06,27916.00787108927,104,Emergency,2021-11-07,Normal,9195,304,3,8,,,,DISCHARGED -9196,2022-02-18,22474.98793606993,133,Emergency,2022-03-06,Inconclusive,9196,51,1,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9197,2022-09-28,43030.7212216746,339,Emergency,2022-10-12,Normal,9197,369,4,27,,,,DISCHARGED -9198,2021-11-03,7065.089630541504,348,Emergency,2021-12-03,Normal,9198,362,0,19,,,,DISCHARGED -9199,2022-09-29,11936.925147111628,355,Emergency,2022-10-08,Abnormal,9199,284,0,2,Difficulty in opening or closing the mouth,"Consultation with a dentist or oral surgeon, possible jaw exercises",Z01.20 - Encounter for examination of teeth and supporting structures,DISCHARGED -9200,2019-07-24,38494.16460678756,416,Emergency,2019-08-13,Abnormal,9200,404,2,7,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9201,2021-08-12,20649.82852327101,150,Urgent,2021-08-28,Normal,9201,473,0,2,Frequent urinary tract infections,"Antibiotics, increased fluid intake, and hygiene practices","A09 - Infectious gastroenteritis and colitis, unspecified",DISCHARGED -9203,2022-11-22,18810.1634733766,500,Urgent,2022-11-26,Inconclusive,9203,333,2,0,,,,DISCHARGED -9204,2023-05-25,40109.3980092654,450,Elective,2023-05-27,Normal,9204,8,4,19,,,,DISCHARGED -9205,2021-12-25,26442.436843884712,276,Emergency,2022-01-14,Abnormal,9205,250,0,26,,,,DISCHARGED -9206,2022-03-05,26277.13785238277,244,Emergency,2022-03-07,Inconclusive,9206,430,2,12,,,,DISCHARGED -9207,2023-07-15,33692.742282837906,112,Emergency,2023-07-18,Inconclusive,9207,331,4,20,,,,DISCHARGED -9208,2023-01-08,17786.095130184985,122,Urgent,,Normal,9208,297,4,4,,,,OPEN -9209,2019-02-05,33846.15076436708,248,Elective,2019-02-17,Abnormal,9209,434,2,15,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9210,2021-05-27,38276.2385915472,313,Elective,2021-06-08,Inconclusive,9210,183,2,20,,,,DISCHARGED -9211,2020-05-18,5416.551710982865,314,Elective,2020-06-11,Abnormal,9211,178,1,23,Sudden onset of leg swelling,"Emergency medical attention, vascular evaluation, and possible imaging studies",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9213,2022-06-10,19405.74377833543,269,Emergency,2022-07-06,Abnormal,9213,197,4,15,,,,DISCHARGED -9215,2019-03-20,10706.034589100109,136,Emergency,2019-04-17,Normal,9215,127,2,23,,,,DISCHARGED -9216,2019-07-15,28900.61587404047,292,Elective,2019-07-23,Abnormal,9216,19,4,11,,,,DISCHARGED -9217,2023-06-09,45920.88391953048,144,Elective,2023-07-06,Abnormal,9217,471,0,12,,,,DISCHARGED -9218,2022-11-26,25881.00320533265,146,Emergency,2022-12-17,Inconclusive,9218,410,3,3,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9219,2020-10-02,11079.52216643536,271,Urgent,2020-10-30,Abnormal,9219,421,3,8,,,,DISCHARGED -9220,2022-09-20,41310.60455345712,219,Urgent,2022-09-26,Normal,9220,327,2,15,,,,DISCHARGED -9221,2022-10-03,47097.00310462988,246,Elective,2022-10-18,Abnormal,9221,64,2,0,,,,DISCHARGED -9222,2019-05-18,14677.465308173922,150,Elective,2019-06-16,Inconclusive,9222,181,4,4,,,,DISCHARGED -9223,2020-03-24,20176.54747515125,194,Elective,2020-04-01,Inconclusive,9223,240,2,20,,,,DISCHARGED -9224,2021-06-21,28438.63022199069,176,Elective,2021-06-26,Abnormal,9224,368,4,4,Sudden onset of severe abdominal cramps and diarrhea,"Evaluation for gastrointestinal infection or inflammation, supportive care, and anti-diarrheal medications.","K52.9 - Noninfective gastroenteritis and colitis, unspecified",DISCHARGED -9225,2023-06-18,42590.11774975663,236,Urgent,2023-06-19,Abnormal,9225,23,2,23,,,,DISCHARGED -9226,2020-10-08,8827.320776535924,148,Urgent,2020-11-06,Abnormal,9226,383,4,24,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9227,2020-05-02,19640.89683994048,287,Urgent,2020-05-05,Inconclusive,9227,430,2,18,,,,DISCHARGED -9228,2023-02-20,8533.906785612762,384,Urgent,,Inconclusive,9228,454,1,8,Difficulty in expressing thoughts,"Speech therapy, cognitive therapy, and addressing any neurological causes",R47.82 - Dysarthria and anarthria,OPEN -9229,2023-01-07,23038.82920872588,162,Urgent,,Normal,9229,82,4,28,,,,OPEN -9230,2021-03-12,24628.035065105712,306,Elective,2021-03-26,Normal,9230,469,1,26,,,,DISCHARGED -9232,2020-11-08,31961.91967515936,113,Emergency,2020-11-24,Inconclusive,9232,318,1,7,Patient reports a history of frequent nosebleeds.,Examine potential causes such as nasal dryness or underlying conditions; recommend nasal moisturizers or cauterization if needed.,J34.89 - Other specified disorders of nose and nasal sinuses,DISCHARGED -9233,2022-03-20,22426.243495701518,147,Elective,2022-03-27,Abnormal,9233,184,1,18,,,,DISCHARGED -9234,2019-11-02,20842.397571364767,275,Emergency,2019-11-16,Inconclusive,9234,438,1,17,,,,DISCHARGED -9235,2019-03-05,33766.84910407517,451,Emergency,2019-03-06,Normal,9235,315,0,14,,,,DISCHARGED -9236,2020-09-26,45109.45059540842,305,Elective,2020-10-18,Inconclusive,9236,98,3,3,,,,DISCHARGED -9238,2019-01-02,43350.3038008802,354,Urgent,2019-01-18,Abnormal,9238,61,0,14,,,,DISCHARGED -9239,2020-06-29,10448.804318961562,457,Urgent,2020-07-17,Normal,9239,285,2,12,"Joint pain and stiffness, especially in the morning","Evaluation for inflammatory conditions, such as rheumatoid arthritis, and prescription of anti-inflammatory medications.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9240,2019-08-29,19038.58205291466,186,Emergency,2019-09-23,Abnormal,9240,476,2,27,,,,DISCHARGED -9241,2019-01-31,21487.35912003917,131,Emergency,2019-02-13,Abnormal,9241,21,3,17,,,,DISCHARGED -9242,2021-04-26,25595.851509823988,160,Emergency,2021-05-07,Abnormal,9242,458,3,19,,,,DISCHARGED -9243,2021-04-21,21375.61766477089,305,Elective,2021-05-16,Normal,9243,211,3,4,,,,DISCHARGED -9244,2022-01-07,7155.059016050976,254,Urgent,2022-01-08,Normal,9244,125,1,17,,,,DISCHARGED -9245,2022-10-08,46881.14090052211,256,Elective,2022-10-15,Inconclusive,9245,412,0,27,,,,DISCHARGED -9246,2018-11-07,25543.61222507702,338,Elective,2018-11-27,Inconclusive,9246,498,2,7,,,,DISCHARGED -9247,2018-11-21,36127.45278042385,125,Urgent,2018-12-11,Abnormal,9247,424,0,0,"Chief complaint is a sudden, intense pain in the ear.",Evaluate for ear infections or other ear-related issues; prescribe antibiotics or pain relievers as needed.,"H66.9 - Otitis media, unspecified",DISCHARGED -9249,2021-03-07,23932.090249903224,351,Elective,2021-03-27,Inconclusive,9249,41,0,18,Frequent urination and excessive thirst,"Ordered blood tests to assess blood sugar levels and diagnosed the patient with diabetes mellitus. Prescribed oral hypoglycemic medications or insulin injections to manage blood glucose levels. Advised on lifestyle modifications, including a controlled diet and regular exercise. Monitored the patient's progress through regular follow-up appointments and adjusted the treatment plan as needed.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9250,2019-12-06,24059.718542100163,472,Elective,2019-12-21,Inconclusive,9250,97,0,22,,,,DISCHARGED -9251,2023-03-02,32678.741347794406,374,Elective,2023-03-23,Normal,9251,448,3,25,,,,DISCHARGED -9253,2023-08-31,39000.19084064411,482,Elective,2023-09-16,Inconclusive,9253,30,3,16,Describes a sudden onset of confusion and disorientation.,Urgently assess for possible neurological issues or infections; perform imaging and administer appropriate treatments.,"G43.909 - Migraine, unspecified, not intractable, without status migrainosus",DISCHARGED -9254,2020-12-05,20629.373432074124,218,Emergency,2020-12-30,Abnormal,9254,157,2,28,,,,DISCHARGED -9256,2022-03-29,41013.94113700745,295,Urgent,2022-04-03,Inconclusive,9256,111,2,26,,,,DISCHARGED -9257,2023-09-26,29226.52072758039,195,Urgent,2023-10-04,Abnormal,9257,401,2,1,Frequent heartburn,"Antacids, lifestyle changes, and medications like proton pump inhibitors",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9258,2019-02-23,31895.23822280346,210,Urgent,2019-03-10,Abnormal,9258,246,0,18,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9259,2018-11-23,28646.345338695905,364,Urgent,2018-12-09,Abnormal,9259,121,3,29,,,,DISCHARGED -9260,2023-02-04,37691.09231623789,209,Urgent,,Abnormal,9260,272,1,15,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",OPEN -9261,2023-10-17,17421.4615553139,251,Elective,2023-11-12,Normal,9261,293,0,29,,,,DISCHARGED -9262,2019-02-01,19507.32151239824,468,Elective,2019-02-27,Inconclusive,9262,397,4,17,,,,DISCHARGED -9263,2022-07-08,16143.559236297968,241,Elective,2022-07-15,Abnormal,9263,470,0,1,,,,DISCHARGED -9264,2023-01-26,31769.193030406743,467,Urgent,2023-02-17,Inconclusive,9264,472,3,27,,,,DISCHARGED -9266,2021-06-07,19681.998200715934,404,Urgent,2021-06-30,Inconclusive,9266,206,4,26,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9267,2022-05-23,24669.582619731795,145,Urgent,2022-06-11,Normal,9267,109,0,5,,,,DISCHARGED -9269,2023-04-28,30477.159338650137,130,Urgent,2023-05-16,Normal,9269,439,3,6,,,,DISCHARGED -9270,2023-03-15,35848.73746620928,416,Emergency,2023-04-12,Normal,9270,277,3,5,Difficulty sleeping and insomnia,"Sleep hygiene measures, cognitive-behavioral therapy for insomnia (CBT-I), and medications as a last resort. Monitor sleep patterns and adjust treatment.","G47.00 - Insomnia, unspecified",DISCHARGED -9271,2020-10-13,42732.72129217082,166,Elective,2020-11-05,Normal,9271,450,1,26,,,,DISCHARGED -9272,2021-06-15,11341.775820989484,112,Elective,2021-06-27,Abnormal,9272,55,0,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9273,2022-10-22,27854.42974682749,459,Emergency,2022-11-03,Normal,9273,374,3,8,,,,DISCHARGED -9275,2021-12-19,21613.846233016448,396,Elective,2022-01-08,Abnormal,9275,402,2,7,,,,DISCHARGED -9276,2021-12-06,19878.80640734216,386,Urgent,2021-12-18,Normal,9276,56,3,29,Excessive drooling,"Evaluation by a neurologist or dentist, possible treatment for underlying causes","G50.9 - Bells palsy, unspecified",DISCHARGED -9277,2020-05-22,11822.494922749092,265,Urgent,2020-05-26,Normal,9277,427,1,23,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9278,2020-08-13,25331.852437222253,199,Elective,2020-09-12,Abnormal,9278,481,3,21,,,,DISCHARGED -9279,2020-07-27,10712.844483669409,296,Urgent,2020-08-08,Normal,9279,290,0,20,Persistent cough with wheezing,"Bronchodilators, inhaled corticosteroids, and addressing underlying respiratory issues","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9280,2022-07-15,26731.998537993,121,Elective,2022-07-18,Normal,9280,113,0,8,Persistent toe pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9282,2020-11-21,44202.60650873288,166,Emergency,2020-12-01,Normal,9282,380,4,11,History of frequent migraines,"Migraine assessment, lifestyle modifications, and prescription of migraine-specific medications.","G43.9 - Migraine, unspecified",DISCHARGED -9283,2019-05-20,25827.760275844485,179,Emergency,2019-06-14,Normal,9283,384,0,17,,,,DISCHARGED -9284,2019-11-21,5061.508708162552,166,Emergency,2019-12-10,Normal,9284,307,4,22,,,,DISCHARGED -9285,2020-05-03,30565.47657359989,396,Urgent,2020-05-24,Abnormal,9285,340,2,5,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9287,2022-11-21,19615.077338255043,323,Urgent,2022-12-10,Inconclusive,9287,476,1,22,,,,DISCHARGED -9288,2021-08-01,29820.11001362812,415,Urgent,2021-08-07,Inconclusive,9288,197,2,27,,,,DISCHARGED -9289,2022-02-11,9535.904015048776,168,Emergency,2022-03-03,Abnormal,9289,420,4,3,,,,DISCHARGED -9290,2020-08-30,48623.35444411356,404,Emergency,2020-09-23,Abnormal,9290,320,3,24,,,,DISCHARGED -9291,2021-08-12,27691.66794939068,152,Emergency,2021-08-29,Normal,9291,178,3,6,Chest pain,"Emergency evaluation to rule out cardiac issues. ECG, stress tests, and imaging studies to assess heart function. Treatment may include medications for angina or interventions such as angioplasty. Lifestyle changes and regular cardiac monitoring are recommended.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9292,2023-02-06,8501.851987704971,234,Emergency,2023-03-04,Inconclusive,9292,384,2,17,,,,DISCHARGED -9293,2020-06-18,49838.14628926682,295,Elective,2020-06-20,Inconclusive,9293,218,3,28,,,,DISCHARGED -9295,2023-09-15,26099.46667518135,137,Emergency,2023-09-27,Inconclusive,9295,276,4,19,,,,DISCHARGED -9296,2021-09-19,48329.15474719292,133,Urgent,2021-10-18,Inconclusive,9296,436,1,4,,,,DISCHARGED -9297,2021-12-31,24511.625240985803,320,Emergency,2022-01-22,Normal,9297,15,0,17,,,,DISCHARGED -9298,2021-11-29,5047.726365789606,306,Urgent,2021-12-21,Normal,9298,491,4,9,,,,DISCHARGED -9299,2022-02-12,24868.731572862245,209,Urgent,2022-03-12,Normal,9299,378,4,7,,,,DISCHARGED -9300,2019-05-30,44371.56612753764,222,Emergency,2019-06-16,Abnormal,9300,60,0,0,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9301,2022-09-21,48879.92025953608,166,Elective,2022-10-01,Inconclusive,9301,53,0,14,Prolonged vomiting and abdominal pain,"Gastrointestinal evaluation, antiemetics, and medications for underlying digestive issues. Monitor for improvements and address any complications.",K30 - Functional dyspepsia,DISCHARGED -9302,2019-04-08,6917.4583773330405,307,Emergency,2019-04-13,Abnormal,9302,167,1,2,Frequent infections,"Antibiotics, antivirals, and addressing underlying causes such as immunodeficiency or chronic illnesses.",B20 - Human immunodeficiency virus [HIV] disease,DISCHARGED -9303,2018-12-31,39182.239327105686,362,Urgent,2019-01-17,Normal,9303,25,1,14,,,,DISCHARGED -9305,2023-03-16,49665.22442631546,385,Emergency,2023-04-13,Inconclusive,9305,335,1,13,Sudden mood swings,"Psychiatric evaluation, counseling, and potential medications for mood stabilization. Monitor for changes in mood and adjust treatment as necessary.","F31.9 - Bipolar disorder, unspecified",DISCHARGED -9306,2021-12-12,14325.041915361202,369,Elective,2021-12-13,Abnormal,9306,475,3,0,,,,DISCHARGED -9307,2019-03-31,4777.118150278067,389,Emergency,2019-04-07,Inconclusive,9307,64,4,20,,,,DISCHARGED -9308,2019-09-29,5338.355443452173,275,Emergency,2019-10-10,Normal,9308,99,0,7,,,,DISCHARGED -9309,2019-02-02,14861.22317444336,120,Emergency,2019-02-15,Normal,9309,73,4,6,,,,DISCHARGED -9310,2019-06-03,35704.01456552509,420,Emergency,2019-07-01,Abnormal,9310,191,4,8,,,,DISCHARGED -9311,2019-09-24,37962.74655368364,352,Urgent,2019-10-15,Abnormal,9311,170,1,17,,,,DISCHARGED -9312,2020-01-27,24363.8256371307,106,Emergency,2020-02-03,Abnormal,9312,272,1,11,"Describes a sudden, severe pain in the ankle.",Assess for musculoskeletal issues or possible injury; prescribe pain relievers and recommend physical therapy.,"N39.9 - Other disorders of urinary system, unspecified",DISCHARGED -9313,2020-03-20,19209.9541309703,226,Urgent,2020-04-07,Normal,9313,376,4,7,,,,DISCHARGED -9314,2020-06-14,24081.536172408447,489,Elective,2020-07-09,Abnormal,9314,186,1,7,,,,DISCHARGED -9315,2021-12-10,12770.306970049183,450,Urgent,2021-12-30,Normal,9315,22,3,29,,,,DISCHARGED -9316,2022-01-23,1758.2493908085812,251,Elective,2022-02-07,Normal,9316,390,0,5,Chest discomfort with exertion,"Cardiac evaluation, lifestyle changes, and medications if necessary",I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9317,2018-12-19,21621.459770268644,336,Urgent,2019-01-03,Normal,9317,427,4,2,,,,DISCHARGED -9318,2023-02-04,29037.788393762683,317,Elective,2023-03-03,Normal,9318,180,0,1,,,,DISCHARGED -9320,2020-06-27,22688.33874544689,196,Elective,2020-06-29,Abnormal,9320,326,3,13,,,,DISCHARGED -9321,2022-09-11,4952.327522480191,449,Urgent,2022-09-20,Inconclusive,9321,107,1,7,,,,DISCHARGED -9323,2019-11-18,16297.872161767751,342,Elective,2019-12-18,Inconclusive,9323,334,2,5,,,,DISCHARGED -9324,2019-01-05,46451.51134859765,220,Emergency,2019-01-26,Inconclusive,9324,161,3,3,,,,DISCHARGED -9325,2020-02-26,32906.75375044161,225,Elective,2020-03-13,Inconclusive,9325,301,2,4,,,,DISCHARGED -9327,2023-04-16,1282.4935905657246,210,Elective,,Abnormal,9327,492,0,20,,,,OPEN -9329,2019-02-17,37623.28059260853,324,Elective,2019-03-12,Inconclusive,9329,451,4,12,Loss of taste and smell,"Identify underlying causes such as infections or neurological issues, prescribe medications if applicable, and monitor for improvement.",R29.9 - Unspecified symptoms and signs involving the nervous and musculoskeletal systems,DISCHARGED -9330,2022-04-15,25266.668359697534,250,Elective,2022-05-10,Inconclusive,9330,205,1,8,,,,DISCHARGED -9331,2021-10-04,11546.981424233449,408,Emergency,2021-10-24,Abnormal,9331,77,3,12,Persistent pain in the palms,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9332,2020-01-02,20328.887634743107,278,Emergency,2020-01-03,Inconclusive,9332,15,1,28,,,,DISCHARGED -9333,2021-11-25,36342.65227117117,183,Urgent,2021-11-29,Inconclusive,9333,326,2,8,Feeling of tightness in the throat,"Evaluation by an ENT specialist, possible endoscopy or imaging studies","R13.10 - Dysphagia, unspecified",DISCHARGED -9334,2023-08-17,25154.555652474508,368,Elective,2023-08-28,Abnormal,9334,95,2,23,,,,DISCHARGED -9335,2019-01-06,18472.705147173838,143,Emergency,2019-01-19,Abnormal,9335,146,4,23,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9336,2020-11-25,5949.344774226577,164,Emergency,2020-11-28,Abnormal,9336,1,2,15,Numbness and tingling in the fingers and toes,"Nerve conduction studies, assessment for neurological issues, and physical therapy.","G47.9 - Sleep disorder, unspecified",DISCHARGED -9337,2021-03-14,17451.117258502367,192,Elective,2021-04-02,Inconclusive,9337,9,4,11,,,,DISCHARGED -9338,2022-11-25,32168.443553115478,340,Urgent,2022-12-13,Inconclusive,9338,433,3,1,,,,DISCHARGED -9339,2023-08-25,47469.151036631054,373,Emergency,2023-09-10,Abnormal,9339,124,4,29,,,,DISCHARGED -9340,2019-12-29,18154.347850080874,407,Urgent,2020-01-17,Inconclusive,9340,80,2,18,,,,DISCHARGED -9341,2022-04-29,24676.963650681057,109,Urgent,2022-05-06,Inconclusive,9341,484,0,29,,,,DISCHARGED -9342,2020-10-03,32774.278099476694,389,Elective,2020-10-27,Inconclusive,9342,139,4,15,,,,DISCHARGED -9343,2021-03-16,29153.87533034293,376,Urgent,2021-04-12,Normal,9343,325,1,23,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9344,2022-09-24,39678.65823724333,313,Urgent,2022-10-01,Inconclusive,9344,149,0,12,,,,DISCHARGED -9345,2021-01-21,46876.45885847635,201,Urgent,2021-02-03,Inconclusive,9345,287,4,4,Chest tightness and shortness of breath,"Prescribe bronchodilators and anti-inflammatory medications, recommend breathing exercises and lifestyle changes.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9346,2023-01-27,38679.95763303203,294,Urgent,2023-02-10,Normal,9346,360,1,22,,,,DISCHARGED -9347,2022-10-31,19038.612746642943,153,Emergency,2022-11-09,Inconclusive,9347,339,0,29,,,,DISCHARGED -9348,2022-02-18,46066.49345544951,169,Urgent,2022-03-04,Abnormal,9348,128,4,23,Severe itching,"Topical antihistamines or corticosteroids, identifying and avoiding triggers",L98.8 - Other specified disorders of skin and subcutaneous tissue,DISCHARGED -9349,2023-09-25,42093.41236687576,285,Emergency,,Inconclusive,9349,437,3,5,,,,OPEN -9350,2020-03-01,7201.922452657804,257,Emergency,2020-03-20,Abnormal,9350,238,1,20,,,,DISCHARGED -9351,2019-03-19,35295.25308937945,191,Emergency,2019-04-03,Abnormal,9351,57,3,23,,,,DISCHARGED -9352,2020-03-15,26805.84481648384,148,Urgent,2020-04-14,Abnormal,9352,197,2,16,,,,DISCHARGED -9353,2023-09-18,23561.063561966712,486,Urgent,2023-09-26,Inconclusive,9353,210,4,16,,,,DISCHARGED -9354,2021-09-30,10544.000809207651,423,Emergency,2021-10-15,Normal,9354,401,4,16,,,,DISCHARGED -9355,2022-08-05,21427.434062808486,473,Emergency,2022-08-28,Abnormal,9355,389,1,2,Feeling of sadness or hopelessness,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9356,2022-05-21,38694.149033370406,299,Urgent,2022-06-06,Inconclusive,9356,44,4,25,,,,DISCHARGED -9357,2020-11-14,22402.21199359324,134,Elective,2020-11-15,Inconclusive,9357,96,2,12,,,,DISCHARGED -9358,2021-09-15,28085.982626306013,272,Urgent,2021-10-03,Abnormal,9358,278,4,11,,,,DISCHARGED -9359,2021-09-21,49676.42731793135,273,Elective,2021-09-28,Inconclusive,9359,22,0,5,Unexplained joint swelling,"Anti-inflammatory medications, physical therapy, and investigation for underlying rheumatologic conditions.",M79.1 - Myalgia,DISCHARGED -9362,2022-08-05,42393.01836700056,392,Urgent,2022-09-02,Abnormal,9362,409,3,21,,,,DISCHARGED -9363,2022-07-05,27869.598900321653,207,Emergency,2022-07-28,Normal,9363,460,2,20,,,,DISCHARGED -9364,2021-07-11,9982.07424634433,368,Elective,2021-07-15,Normal,9364,390,2,28,,,,DISCHARGED -9365,2020-08-02,22650.760475787447,451,Emergency,2020-08-17,Normal,9365,334,3,12,,,,DISCHARGED -9366,2018-11-09,40119.37505328199,185,Urgent,2018-11-27,Normal,9366,43,3,13,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9367,2021-07-05,25083.939536984348,316,Urgent,2021-07-23,Normal,9367,26,2,6,,,,DISCHARGED -9369,2019-09-08,31441.23447042926,334,Elective,2019-10-02,Normal,9369,281,3,4,,,,DISCHARGED -9371,2019-02-18,31200.18080146332,388,Elective,2019-03-18,Abnormal,9371,96,1,13,,,,DISCHARGED -9372,2020-04-27,16679.97902794942,283,Elective,2020-04-30,Inconclusive,9372,462,3,17,,,,DISCHARGED -9373,2022-02-04,34570.43253912493,202,Urgent,2022-03-05,Abnormal,9373,35,0,3,,,,DISCHARGED -9374,2018-11-23,23339.00144209056,390,Elective,2018-11-28,Abnormal,9374,108,0,0,,,,DISCHARGED -9375,2021-09-09,35204.14174780302,140,Emergency,2021-09-25,Normal,9375,54,1,6,,,,DISCHARGED -9376,2023-10-01,36422.75218530123,365,Elective,2023-10-23,Abnormal,9376,191,3,19,,,,DISCHARGED -9378,2021-06-04,15032.48734788492,432,Emergency,2021-06-25,Normal,9378,218,0,12,,,,DISCHARGED -9380,2023-05-15,47757.80644395418,343,Emergency,2023-05-26,Inconclusive,9380,184,4,3,,,,DISCHARGED -9381,2021-01-11,11247.279517713832,358,Emergency,2021-02-07,Abnormal,9381,68,3,12,,,,DISCHARGED -9382,2021-06-15,33927.88221774943,236,Emergency,2021-06-16,Normal,9382,316,1,3,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9383,2018-11-16,46118.1806193116,278,Urgent,2018-12-14,Inconclusive,9383,129,3,2,,,,DISCHARGED -9384,2020-11-22,49994.98474012479,296,Urgent,2020-11-28,Inconclusive,9384,54,2,7,Constipation and abdominal cramps,"Prescribe laxatives and recommend dietary changes, increase fiber intake, and suggest adequate hydration.",K59.0 - Constipation,DISCHARGED -9385,2023-02-16,46667.939352190166,232,Emergency,2023-03-13,Abnormal,9385,377,2,19,,,,DISCHARGED -9386,2019-03-14,29405.67708895468,170,Emergency,2019-03-23,Abnormal,9386,96,0,7,Muscle weakness,"Physical therapy, strength training, and addressing underlying causes such as neuromuscular disorders or nutritional deficiencies.",M62.81 - Other specified disorders of muscle (Muscle weakness),DISCHARGED -9387,2022-01-17,5314.574677601878,403,Elective,2022-01-29,Inconclusive,9387,335,2,24,,,,DISCHARGED -9388,2020-02-11,20946.11573278365,428,Elective,2020-02-15,Normal,9388,86,1,16,,,,DISCHARGED -9389,2020-10-23,33266.615764341244,118,Elective,2020-11-08,Abnormal,9389,293,0,14,Persistent cough with green or yellow phlegm,Pulmonary evaluation for respiratory infection or other underlying respiratory issues.,"J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9390,2019-04-15,27881.59117570333,251,Emergency,2019-04-25,Inconclusive,9390,118,1,3,,,,DISCHARGED -9391,2020-09-23,37615.2162952283,399,Urgent,2020-10-15,Normal,9391,207,1,5,,,,DISCHARGED -9392,2022-08-06,46442.46664257765,199,Emergency,2022-09-02,Inconclusive,9392,333,2,23,,,,DISCHARGED -9393,2021-05-31,21405.019699251,380,Emergency,2021-06-19,Normal,9393,412,2,29,,,,DISCHARGED -9394,2023-08-29,27974.34037210844,496,Urgent,2023-09-09,Abnormal,9394,153,1,21,,,,DISCHARGED -9395,2022-03-23,38826.99348414473,191,Urgent,2022-03-25,Abnormal,9395,34,2,27,,,,DISCHARGED -9396,2020-09-23,18925.58099027542,494,Urgent,2020-09-29,Abnormal,9396,78,2,5,Seizures and loss of consciousness,"Antiepileptic medications, lifestyle modifications, and potentially surgery in severe cases.","G40.9 - Epilepsy, unspecified",DISCHARGED -9397,2021-09-17,49148.49027845049,224,Urgent,2021-09-21,Inconclusive,9397,66,2,9,,,,DISCHARGED -9398,2023-10-24,47518.05280498618,197,Urgent,2023-11-17,Abnormal,9398,342,3,3,,,,DISCHARGED -9399,2021-11-01,38332.05113260467,103,Urgent,2021-11-08,Normal,9399,412,1,8,,,,DISCHARGED -9400,2019-05-08,32331.495205226205,457,Emergency,2019-05-30,Normal,9400,33,4,15,,,,DISCHARGED -9401,2021-01-28,23091.741414290507,458,Emergency,2021-02-24,Normal,9401,96,1,6,Difficulty in hearing,Consultation with an audiologist for a hearing assessment and potential hearing aid recommendation.,H91.9 - Unspecified hearing loss,DISCHARGED -9402,2019-10-11,1792.4246196991949,428,Emergency,2019-10-19,Normal,9402,168,0,13,,,,DISCHARGED -9403,2019-04-19,35201.62942549824,475,Emergency,2019-04-28,Inconclusive,9403,168,2,26,,,,DISCHARGED -9404,2019-01-20,9084.79242942949,391,Urgent,2019-01-24,Normal,9404,150,2,5,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9405,2020-10-22,7182.445706240468,188,Elective,2020-11-02,Inconclusive,9405,70,4,0,Aching and stiffness in the joints,"Nonsteroidal anti-inflammatory drugs (NSAIDs), physical therapy, and lifestyle changes. Manage inflammation and enhance joint function.",M25.50 - Pain in unspecified joint,DISCHARGED -9406,2021-09-22,27475.719219408817,340,Urgent,2021-10-20,Normal,9406,2,0,17,Severe headache and dizziness,"Immediate medical attention, diagnostic tests to identify the cause, and appropriate interventions based on the diagnosis.","K92.9 - Disease of the digestive system, unspecified",DISCHARGED -9407,2020-11-21,17433.153686754224,367,Urgent,2020-12-13,Inconclusive,9407,313,3,11,,,,DISCHARGED -9408,2021-06-07,40652.26497962092,481,Urgent,2021-06-22,Abnormal,9408,31,1,21,,,,DISCHARGED -9409,2020-08-24,2164.925691532292,471,Elective,2020-09-12,Abnormal,9409,286,3,26,,,,DISCHARGED -9411,2019-01-17,40389.12344940273,385,Emergency,2019-02-03,Inconclusive,9411,81,0,14,History of acid reflux and heartburn,"Gastrointestinal assessment, lifestyle modifications, and prescription of antacids or acid-reducing medications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9412,2021-09-29,49666.21654235537,488,Urgent,2021-10-23,Normal,9412,42,4,0,Swollen and painful joints,"Anti-inflammatory medications, joint injections, and physical therapy. Investigate and treat underlying autoimmune or inflammatory conditions.","M06.9 - Rheumatoid arthritis, unspecified",DISCHARGED -9414,2022-06-04,12741.717323206023,446,Urgent,2022-06-08,Inconclusive,9414,390,0,14,,,,DISCHARGED -9415,2020-05-31,3934.350554801208,383,Urgent,2020-06-07,Abnormal,9415,104,4,14,,,,DISCHARGED -9416,2020-01-08,34556.18080207123,494,Urgent,2020-01-10,Abnormal,9416,0,3,26,,,,DISCHARGED -9418,2023-09-24,23507.982618731963,292,Urgent,2023-09-26,Abnormal,9418,60,3,15,Sudden severe abdominal pain,Emergency medical attention for immediate evaluation and identification of the cause.,R42 - Dizziness and giddiness,DISCHARGED -9419,2021-02-19,21561.71216792462,238,Elective,2021-03-18,Abnormal,9419,269,0,20,Pain in the sides or flanks,"Identification and treatment of underlying causes, pain management medications, and potentially surgical interventions.",M79.1 - Myalgia,DISCHARGED -9420,2022-05-30,35047.35970688111,274,Emergency,2022-06-05,Abnormal,9420,179,0,0,,,,DISCHARGED -9422,2018-11-06,37071.55079513312,476,Urgent,2018-11-08,Abnormal,9422,223,2,28,,,,DISCHARGED -9423,2019-05-24,35893.53826316144,421,Emergency,2019-06-16,Normal,9423,5,4,2,,,,DISCHARGED -9424,2021-05-13,31995.895731988447,372,Elective,2021-06-07,Normal,9424,102,2,11,,,,DISCHARGED -9425,2021-10-18,29794.51556332412,417,Emergency,2021-11-01,Abnormal,9425,9,1,27,,,,DISCHARGED -9426,2023-08-03,36944.42218527525,215,Urgent,2023-08-20,Inconclusive,9426,70,1,27,,,,DISCHARGED -9427,2021-11-07,8886.046223776952,327,Emergency,2021-11-21,Normal,9427,89,0,6,,,,DISCHARGED -9429,2021-11-11,34227.00302465879,178,Elective,2021-11-28,Normal,9429,225,3,4,,,,DISCHARGED -9430,2021-03-15,23325.616210738157,172,Emergency,2021-03-17,Normal,9430,157,1,27,,,,DISCHARGED -9431,2022-06-02,44960.75213210133,191,Urgent,2022-06-18,Normal,9431,227,1,25,,,,DISCHARGED -9432,2020-06-10,18996.551498971363,366,Emergency,2020-07-04,Inconclusive,9432,404,2,0,,,,DISCHARGED -9433,2019-09-25,31334.069244997445,171,Elective,2019-10-04,Abnormal,9433,125,2,0,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9435,2021-05-18,6894.148215034962,250,Urgent,2021-05-21,Abnormal,9435,443,1,14,Osteoporosis,"Calcium and vitamin D supplementation, medications to strengthen bones, and weight-bearing exercise. Regular monitoring of bone density and adjustments to treatment as needed.",M81.0 - Postmenopausal osteoporosis with pathological fracture,DISCHARGED -9436,2021-02-15,40706.28232850206,486,Emergency,2021-02-18,Normal,9436,208,0,7,Sudden severe headache,Emergency medical attention for immediate neurological evaluation to identify the cause and initiate appropriate treatment.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9438,2020-06-24,21893.440392859677,135,Emergency,2020-07-08,Inconclusive,9438,96,2,10,,,,DISCHARGED -9439,2022-04-21,21771.5999866856,391,Emergency,2022-05-08,Abnormal,9439,73,1,13,,,,DISCHARGED -9440,2020-09-02,27047.145959020592,348,Emergency,2020-09-16,Inconclusive,9440,114,3,28,,,,DISCHARGED -9442,2020-11-02,45081.99019792554,320,Emergency,2020-11-14,Normal,9442,190,2,24,,,,DISCHARGED -9443,2018-11-25,20121.179009483803,115,Elective,2018-12-16,Normal,9443,494,1,22,,,,DISCHARGED -9444,2020-08-20,32826.24184837564,275,Elective,2020-09-04,Abnormal,9444,169,4,12,,,,DISCHARGED -9445,2020-08-05,5866.316845229658,468,Emergency,2020-08-31,Normal,9445,306,2,18,,,,DISCHARGED -9446,2022-03-12,47899.53619504728,408,Urgent,2022-04-07,Normal,9446,447,4,11,,,,DISCHARGED -9447,2020-05-22,41036.06865480509,372,Urgent,2020-06-15,Inconclusive,9447,203,2,21,,,,DISCHARGED -9448,2021-03-24,8697.372146952988,206,Emergency,2021-04-02,Inconclusive,9448,55,2,18,,,,DISCHARGED -9449,2019-03-08,14001.503518408868,476,Urgent,2019-03-16,Inconclusive,9449,207,4,25,,,,DISCHARGED -9450,2022-09-03,22539.709852770786,212,Urgent,2022-09-30,Abnormal,9450,40,0,3,,,,DISCHARGED -9451,2020-05-12,9156.881161793448,340,Elective,2020-05-16,Abnormal,9451,31,1,27,,,,DISCHARGED -9452,2022-03-13,18674.170884767744,114,Emergency,2022-03-28,Abnormal,9452,14,0,3,Frequent urinary urgency,"Bladder function evaluation, lifestyle modifications, and medication","N32.9 - Disorder of bladder, unspecified",DISCHARGED -9453,2021-01-07,20987.895485764057,287,Urgent,2021-01-27,Abnormal,9453,61,0,2,Pain in the buttocks and thighs,"Identification and treatment of underlying causes, pain management medications, and physical therapy.",M54.2 - Cervicalgia,DISCHARGED -9454,2021-12-13,3841.900370166045,258,Elective,2021-12-25,Inconclusive,9454,154,1,25,Unexplained numbness or tingling,"Investigation for underlying neurological conditions, diagnostic tests, and appropriate treatment based on the diagnosis.","G99.9 - Disorder of nervous system, unspecified",DISCHARGED -9455,2023-08-18,45043.78266147874,314,Urgent,2023-09-01,Normal,9455,283,3,5,,,,DISCHARGED -9456,2019-02-24,35467.44207633017,461,Emergency,2019-02-27,Normal,9456,208,0,4,,,,DISCHARGED -9457,2019-11-08,22277.64873448645,346,Elective,2019-11-29,Abnormal,9457,319,0,10,,,,DISCHARGED -9458,2018-12-09,23976.9671148463,154,Elective,2018-12-13,Inconclusive,9458,493,0,24,,,,DISCHARGED -9459,2019-05-07,38112.84266866648,350,Emergency,2019-06-06,Normal,9459,186,3,8,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9460,2020-08-31,35544.9684576915,320,Emergency,2020-09-05,Normal,9460,497,2,2,Pain or discomfort in the upper abdomen,Gastrointestinal evaluation for potential causes and initiation of appropriate treatment.,"K92.2 - Gastrointestinal hemorrhage, unspecified",DISCHARGED -9461,2023-05-27,25660.622524077677,343,Emergency,2023-06-02,Abnormal,9461,441,4,28,,,,DISCHARGED -9462,2020-01-04,17973.91591587562,334,Elective,2020-02-03,Normal,9462,129,4,8,,,,DISCHARGED -9464,2019-07-26,44655.75764866704,404,Emergency,2019-08-02,Inconclusive,9464,126,3,28,,,,DISCHARGED -9465,2023-02-22,20851.09255626411,419,Elective,,Inconclusive,9465,291,0,11,,,,OPEN -9466,2019-11-17,9669.683157364569,189,Elective,2019-12-12,Inconclusive,9466,113,4,2,Difficulty sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia disorder, unspecified",DISCHARGED -9467,2022-10-24,6326.766676443482,300,Emergency,2022-10-25,Inconclusive,9467,198,3,19,,,,DISCHARGED -9468,2021-06-07,24893.81409562455,270,Elective,2021-06-09,Inconclusive,9468,12,1,16,Feeling of tightness in the chest,Immediate medical attention to rule out cardiac issues; assessment with ECG and other relevant tests.,"I20.9 - Angina pectoris, unspecified",DISCHARGED -9469,2022-07-05,26273.94774221461,160,Emergency,2022-07-27,Normal,9469,270,4,20,Excessive thirst and urination,Treat underlying causes such as diabetes or kidney issues. Recommend lifestyle changes and medications as appropriate.,E11 - Type 2 diabetes mellitus,DISCHARGED -9470,2020-02-03,20235.35948019497,157,Emergency,2020-02-16,Abnormal,9470,88,1,11,,,,DISCHARGED -9471,2021-07-26,23083.1476405667,339,Emergency,2021-08-11,Normal,9471,214,0,24,,,,DISCHARGED -9472,2021-01-12,28869.71412013064,477,Elective,2021-01-27,Abnormal,9472,443,4,17,,,,DISCHARGED -9473,2023-04-12,20216.30580383417,487,Elective,2023-05-05,Abnormal,9473,277,3,3,,,,DISCHARGED -9474,2021-04-01,15796.458488449449,295,Urgent,2021-04-19,Abnormal,9474,446,2,9,,,,DISCHARGED -9475,2022-11-15,36694.77298838087,124,Emergency,2022-12-05,Normal,9475,473,4,17,Frequent mood swings,Psychiatric evaluation for potential mood disorders and initiation of appropriate therapy.,"F41.9 - Anxiety disorder, unspecified",DISCHARGED -9476,2023-07-13,16087.62088676793,438,Elective,2023-07-22,Normal,9476,480,4,29,,,,DISCHARGED -9477,2019-03-25,39706.23109483318,120,Urgent,2019-04-04,Abnormal,9477,202,4,7,Chief complaint is a constant feeling of heat and sweating.,Evaluate for possible hormonal issues or conditions such as hyperthyroidism; recommend further endocrine testing and appropriate interventions.,"M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9479,2018-12-12,15730.346149122504,283,Urgent,2019-01-11,Normal,9479,73,4,8,,,,DISCHARGED -9481,2022-10-14,27435.353300764546,417,Emergency,2022-10-18,Inconclusive,9481,24,3,18,,,,DISCHARGED -9483,2019-07-25,3514.00445738335,164,Elective,2019-08-02,Abnormal,9483,100,3,12,,,,DISCHARGED -9484,2019-05-04,15027.643479342656,311,Emergency,2019-05-21,Abnormal,9484,175,2,24,Difficulty in maintaining focus and forgetfulness,"Cognitive assessment, evaluation for attention disorders or cognitive decline, and lifestyle modifications.",F02.8 - Other specified dementia,DISCHARGED -9485,2022-08-23,36845.368376636754,153,Emergency,2022-08-29,Inconclusive,9485,426,3,5,Difficulty in swallowing liquids,"Evaluation by a speech therapist or gastroenterologist, possible swallowing exercises",R47.01 - Aphasia,DISCHARGED -9486,2021-02-10,29932.570757261343,401,Urgent,2021-02-14,Inconclusive,9486,116,3,21,Coughing up blood,"Conduct imaging tests to identify the source, prescribe antibiotics or other appropriate medications, and refer for further specialized care.","R07.9 - Chest pain, unspecified",DISCHARGED -9487,2019-01-13,40339.722335899256,498,Emergency,2019-02-09,Inconclusive,9487,165,0,6,,,,DISCHARGED -9488,2021-07-27,13107.239897771657,496,Emergency,2021-08-18,Inconclusive,9488,40,0,27,,,,DISCHARGED -9489,2022-04-08,41842.10834290922,227,Emergency,2022-04-24,Normal,9489,428,1,20,Feeling of a lump in the armpit,"Evaluation by a physician, possible imaging studies or biopsy",R10.9 - Unspecified abdominal pain,DISCHARGED -9490,2022-07-20,38383.377799786205,280,Elective,2022-08-19,Abnormal,9490,343,2,5,,,,DISCHARGED -9491,2022-12-02,5050.940121350248,117,Emergency,2023-01-01,Inconclusive,9491,423,0,10,,,,DISCHARGED -9492,2019-07-15,30642.479451448653,493,Urgent,2019-07-19,Normal,9492,365,2,16,,,,DISCHARGED -9493,2022-09-21,22871.061343627684,236,Emergency,2022-10-17,Inconclusive,9493,119,2,18,,,,DISCHARGED -9494,2023-02-25,31725.32117221325,285,Emergency,,Normal,9494,96,4,27,Urinary incontinence,"Pelvic floor exercises, lifestyle modifications, and medications. Further evaluation for underlying causes such as bladder issues or nerve dysfunction. Regular follow-up to assess improvement and adjust treatment.",N39.3 - Stress incontinence,OPEN -9495,2020-11-17,38111.29381293717,175,Emergency,2020-12-12,Abnormal,9495,144,2,24,Difficulty in concentration,"Identify and address underlying causes such as stress, ADHD, or sleep disorders. Recommend lifestyle changes and cognitive strategies.","F90.9 - Attention-deficit hyperactivity disorder, unspecified type",DISCHARGED -9496,2023-08-16,34769.0322217827,395,Elective,2023-09-05,Abnormal,9496,215,4,11,,,,DISCHARGED -9497,2022-09-12,12988.80289254354,471,Elective,2022-10-08,Normal,9497,228,1,20,,,,DISCHARGED -9498,2020-10-31,41742.00475799513,229,Urgent,2020-11-13,Normal,9498,312,1,20,Reports difficulty in swallowing solid foods.,"Perform a thorough examination to identify the cause, which may involve referral to a specialist for further testing or intervention.",R10.9 - Unspecified abdominal pain,DISCHARGED -9499,2023-09-02,16665.621666478204,395,Urgent,2023-09-06,Normal,9499,129,1,23,,,,DISCHARGED -9500,2021-09-27,18732.85244892231,164,Elective,2021-10-24,Abnormal,9500,351,4,26,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9501,2020-12-19,18620.42327871196,170,Emergency,2021-01-03,Inconclusive,9501,376,4,26,,,,DISCHARGED -9502,2019-04-01,33858.91413381646,296,Elective,2019-04-17,Abnormal,9502,317,1,12,,,,DISCHARGED -9503,2023-06-25,47742.40124760268,466,Urgent,,Abnormal,9503,471,4,17,,,,OPEN -9504,2023-04-23,45316.06452075124,430,Emergency,2023-05-23,Normal,9504,136,3,28,,,,DISCHARGED -9505,2020-09-25,28162.98037111235,395,Elective,2020-10-08,Inconclusive,9505,323,3,6,,,,DISCHARGED -9506,2023-01-09,31633.72509066413,125,Elective,,Inconclusive,9506,336,4,24,Fatigue and difficulty concentrating,"Complete blood count, thyroid function tests, and lifestyle modifications such as improved sleep hygiene and stress management.","R50.9 - Fever, unspecified",OPEN -9508,2018-11-06,34022.650854211926,136,Emergency,2018-11-29,Normal,9508,272,4,22,,,,DISCHARGED -9509,2022-01-18,29665.20936050615,497,Urgent,2022-01-25,Normal,9509,116,0,27,,,,DISCHARGED -9510,2021-01-06,43285.47124727106,271,Elective,2021-01-27,Inconclusive,9510,305,0,4,,,,DISCHARGED -9511,2023-05-25,4943.335248138081,142,Emergency,2023-06-03,Inconclusive,9511,367,2,28,,,,DISCHARGED -9512,2018-11-02,25491.45995824052,243,Urgent,2018-11-29,Abnormal,9512,93,2,15,,,,DISCHARGED -9513,2019-02-09,20321.171156775617,108,Elective,2019-03-05,Inconclusive,9513,167,2,21,,,,DISCHARGED -9514,2019-05-14,15054.431375192453,426,Emergency,2019-05-22,Inconclusive,9514,441,1,3,,,,DISCHARGED -9515,2022-12-09,16119.092077507516,442,Emergency,2022-12-17,Normal,9515,202,3,29,Persistent cough with blood-streaked sputum,Evaluation by a pulmonologist for imaging and assessment of respiratory issues.,R09.3 - Abnormal chest sounds,DISCHARGED -9516,2021-12-10,31823.36128271307,286,Elective,2022-01-06,Abnormal,9516,340,1,27,Recurrent urinary tract infections,"Antibiotics, urological evaluation, and lifestyle modifications. Monitor for recurrence and address any underlying urinary issues.","N39.0 - Urinary tract infection, site not specified",DISCHARGED -9517,2019-03-05,20575.37328588353,125,Urgent,2019-04-03,Normal,9517,148,4,22,,,,DISCHARGED -9518,2020-11-06,33948.779627094314,482,Urgent,2020-12-06,Normal,9518,401,0,0,,,,DISCHARGED -9519,2021-10-31,17038.06636584955,450,Emergency,2021-11-29,Normal,9519,182,4,3,,,,DISCHARGED -9520,2022-05-24,4520.428471040106,210,Emergency,2022-05-29,Inconclusive,9520,412,4,2,,,,DISCHARGED -9521,2021-03-19,33779.91029091437,442,Elective,2021-03-27,Abnormal,9521,151,0,28,,,,DISCHARGED -9522,2022-12-16,3639.468565416816,493,Elective,2023-01-02,Inconclusive,9522,73,4,3,,,,DISCHARGED -9523,2019-09-18,8593.398870021509,298,Emergency,2019-10-15,Abnormal,9523,364,2,0,Frequent urination and urgency,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9524,2023-08-16,17684.762010789018,325,Emergency,2023-08-29,Abnormal,9524,400,0,11,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9525,2023-09-22,42808.60659685682,105,Emergency,,Normal,9525,273,4,12,,,,OPEN -9526,2022-10-08,25360.569096716343,279,Elective,2022-10-16,Inconclusive,9526,41,2,1,,,,DISCHARGED -9527,2022-10-27,46447.27727137179,270,Elective,2022-11-18,Abnormal,9527,495,2,27,,,,DISCHARGED -9528,2023-01-30,34669.98243188253,107,Emergency,2023-02-03,Inconclusive,9528,211,3,26,Frequent stomach upset and nausea,"Dietary changes, medications for gastrointestinal conditions, and lifestyle modifications.",K58 - Irritable bowel syndrome,DISCHARGED -9529,2020-10-28,1548.3368775235483,257,Emergency,2020-11-14,Abnormal,9529,100,2,28,Pain in the temples and jaw,"Identification and treatment of underlying causes, pain management medications, and lifestyle modifications.",G89.29 - Other chronic pain,DISCHARGED -9530,2020-08-10,20926.538191285246,137,Elective,2020-08-20,Inconclusive,9530,44,1,8,,,,DISCHARGED -9531,2021-08-13,8221.348155076532,372,Elective,2021-09-07,Abnormal,9531,81,0,6,Facial swelling,"Identification and treatment of the underlying cause, such as anti-inflammatory medications",M79.1 - Myalgia,DISCHARGED -9532,2019-10-14,24724.842171256714,491,Elective,2019-10-22,Abnormal,9532,16,0,12,,,,DISCHARGED -9533,2021-02-18,48460.2450274802,416,Emergency,2021-03-05,Abnormal,9533,72,0,21,,,,DISCHARGED -9534,2020-10-12,4979.105338812041,480,Urgent,2020-10-22,Inconclusive,9534,13,4,1,,,,DISCHARGED -9535,2022-09-12,33656.77039022831,385,Urgent,2022-10-08,Normal,9535,432,4,0,,,,DISCHARGED -9537,2020-05-31,23589.279140744387,462,Elective,2020-06-04,Normal,9537,156,1,17,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9538,2019-07-21,36036.69929517323,197,Emergency,2019-08-02,Normal,9538,222,2,6,Persistent chest pain,Urgent medical attention to rule out cardiac issues and initiate appropriate interventions.,R10.9 - Unspecified abdominal pain,DISCHARGED -9540,2022-02-03,32516.290620891294,439,Elective,2022-02-27,Abnormal,9540,131,4,17,,,,DISCHARGED -9542,2020-11-04,34759.860804141885,348,Elective,2020-11-30,Abnormal,9542,337,2,18,,,,DISCHARGED -9543,2023-04-28,4781.314784376214,202,Urgent,2023-05-24,Inconclusive,9543,403,2,7,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9544,2021-08-04,43560.90099564828,229,Urgent,2021-09-01,Normal,9544,375,4,22,Excessive sweating at night,"Evaluation for underlying causes, lifestyle modifications, and possible medical treatment",R10.9 - Unspecified abdominal pain,DISCHARGED -9545,2020-02-19,40025.17456123845,238,Urgent,2020-03-02,Inconclusive,9545,375,4,11,,,,DISCHARGED -9547,2019-03-25,24197.014145831803,474,Urgent,2019-04-11,Abnormal,9547,46,1,10,Decreased desire for food,"Nutritional counseling, appetite stimulants, and addressing underlying causes such as gastrointestinal issues or mental health conditions.",R63.0 - Anorexia,DISCHARGED -9548,2018-11-15,32330.303114066508,148,Urgent,2018-12-08,Inconclusive,9548,106,3,26,Unexplained anger or aggression,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9549,2021-10-23,42219.02802517201,305,Urgent,2021-10-25,Normal,9549,107,0,29,,,,DISCHARGED -9550,2019-09-09,28750.639875588982,124,Elective,2019-09-30,Normal,9550,264,4,26,,,,DISCHARGED -9551,2019-04-16,8609.459057071082,358,Urgent,2019-05-04,Abnormal,9551,204,4,8,,,,DISCHARGED -9552,2021-08-05,21971.32859928623,379,Elective,2021-08-23,Normal,9552,78,2,27,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9553,2022-11-11,26554.52056586294,120,Emergency,2022-12-10,Normal,9553,154,3,3,,,,DISCHARGED -9554,2023-10-08,22516.2563831082,308,Urgent,2023-11-04,Abnormal,9554,270,4,6,,,,DISCHARGED -9555,2019-03-11,19400.181370063765,442,Elective,2019-04-03,Normal,9555,475,3,16,Elevated body temperature and shivering,"Antipyretic medications, fluids, and antibiotics if the fever is due to an infection. Identify and treat the underlying cause.","R50.9 - Fever, unspecified",DISCHARGED -9556,2020-05-09,38277.62299470359,341,Emergency,2020-05-19,Abnormal,9556,484,0,10,,,,DISCHARGED -9557,2020-02-17,48914.00079112096,353,Elective,2020-03-03,Normal,9557,246,2,26,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9558,2022-01-05,12266.84149046783,158,Emergency,2022-02-01,Abnormal,9558,18,1,1,Reports difficulty in falling asleep and staying asleep.,Evaluate for insomnia causes; recommend sleep hygiene practices and may prescribe sleep aids if necessary.,"G47.00 - Insomnia, unspecified",DISCHARGED -9559,2018-11-14,11503.794815587926,173,Elective,2018-12-06,Abnormal,9559,345,0,22,Impaired coordination,"Physical therapy, lifestyle modifications, and addressing underlying causes such as neurological conditions or medication side effects.","G25.9 - Extrapyramidal and movement disorder, unspecified",DISCHARGED -9560,2022-01-23,45007.351578048445,485,Urgent,2022-02-07,Normal,9560,435,3,17,,,,DISCHARGED -9561,2023-10-11,28805.913758427363,146,Elective,2023-11-08,Normal,9561,25,3,21,,,,DISCHARGED -9562,2019-02-28,13529.073534769725,350,Emergency,2019-03-09,Normal,9562,216,0,28,,,,DISCHARGED -9564,2020-04-29,32514.971787729737,304,Urgent,2020-05-24,Abnormal,9564,153,3,25,,,,DISCHARGED -9565,2019-10-08,37903.84442387519,286,Emergency,2019-10-25,Normal,9565,153,1,11,Difficulty in speaking clearly,"Speech therapy, possible evaluation by an ENT specialist",Z47.89 - Other orthopedic aftercare,DISCHARGED -9566,2020-07-18,9115.071499220208,419,Elective,2020-08-03,Normal,9566,173,1,8,,,,DISCHARGED -9568,2022-09-15,41031.31988853498,257,Urgent,2022-09-18,Abnormal,9568,91,3,10,,,,DISCHARGED -9569,2020-07-07,19786.71808836456,493,Urgent,2020-07-16,Inconclusive,9569,432,3,4,,,,DISCHARGED -9570,2019-12-24,18639.780088219784,484,Urgent,2020-01-20,Normal,9570,337,1,25,,,,DISCHARGED -9573,2021-10-30,2530.0986781064216,211,Urgent,2021-11-16,Abnormal,9573,479,3,6,,,,DISCHARGED -9574,2019-01-28,11123.52436891824,498,Emergency,2019-02-11,Abnormal,9574,180,4,28,,,,DISCHARGED -9575,2022-08-27,6078.465880220616,356,Emergency,2022-09-13,Inconclusive,9575,130,2,0,,,,DISCHARGED -9576,2019-08-02,13569.169535617571,388,Emergency,2019-08-25,Normal,9576,449,4,23,,,,DISCHARGED -9577,2019-04-08,17840.96932556043,306,Elective,2019-04-26,Normal,9577,480,3,24,,,,DISCHARGED -9578,2020-07-04,5757.23611769241,355,Elective,2020-07-29,Inconclusive,9578,297,3,28,Fever and chills,"Identification and treatment of underlying infections or inflammatory conditions, antipyretic medications, and supportive care.","R50.9 - Fever, unspecified",DISCHARGED -9579,2020-09-08,12680.731107725816,259,Emergency,2020-09-12,Inconclusive,9579,274,2,4,,,,DISCHARGED -9580,2022-09-03,37467.489815670415,293,Elective,2022-09-08,Abnormal,9580,272,3,5,Nausea and vomiting,"Identification and treatment of underlying causes, antiemetic medications, and lifestyle modifications. Rehydration and nutritional support may be necessary.",R11.0 - Nausea,DISCHARGED -9581,2019-01-14,47506.44548042351,448,Emergency,2019-01-29,Abnormal,9581,491,2,12,,,,DISCHARGED -9582,2020-11-30,14314.168372631711,408,Urgent,2020-12-10,Normal,9582,416,1,10,,,,DISCHARGED -9583,2021-05-06,34613.16313938826,425,Elective,2021-05-09,Abnormal,9583,75,2,7,,,,DISCHARGED -9584,2019-07-23,6220.413527115213,356,Elective,2019-08-12,Normal,9584,176,2,19,,,,DISCHARGED -9585,2022-10-17,31923.58473727357,367,Urgent,2022-11-12,Normal,9585,183,4,1,,,,DISCHARGED -9586,2023-07-21,23555.178661707552,116,Elective,2023-08-08,Abnormal,9586,318,3,14,,,,DISCHARGED -9587,2022-07-18,44028.19446047585,439,Urgent,2022-08-02,Normal,9587,130,1,9,,,,DISCHARGED -9588,2019-11-20,15929.691855087283,485,Urgent,2019-12-16,Inconclusive,9588,362,0,7,,,,DISCHARGED -9589,2019-02-11,46381.34450604894,276,Urgent,2019-02-27,Abnormal,9589,48,2,1,,,,DISCHARGED -9591,2023-04-09,12892.9774021263,371,Elective,2023-04-21,Normal,9591,54,0,20,,,,DISCHARGED -9592,2023-01-09,33264.410768208254,255,Emergency,2023-01-21,Abnormal,9592,153,3,14,,,,DISCHARGED -9593,2022-12-14,28536.187706717083,145,Elective,2022-12-25,Abnormal,9593,354,2,28,,,,DISCHARGED -9595,2021-07-20,33967.623063863786,296,Elective,2021-07-28,Normal,9595,199,0,5,,,,DISCHARGED -9597,2021-07-14,37552.19906707758,194,Urgent,2021-07-16,Abnormal,9597,307,4,4,Persistent vomiting,Medical evaluation for identification of underlying causes and initiation of appropriate treatment.,"R06.00 - Dyspnea, unspecified",DISCHARGED -9598,2020-08-28,24490.554625411227,390,Elective,2020-09-14,Abnormal,9598,355,0,21,,,,DISCHARGED -9599,2018-12-04,49408.03000527031,464,Emergency,2018-12-25,Normal,9599,372,4,21,,,,DISCHARGED -9600,2020-11-18,18939.732687823023,379,Elective,2020-11-21,Inconclusive,9600,117,1,2,,,,DISCHARGED -9601,2019-09-12,10703.999522457989,458,Elective,2019-10-09,Inconclusive,9601,262,3,10,,,,DISCHARGED -9602,2021-01-15,34439.13690726538,128,Urgent,2021-02-01,Normal,9602,45,0,10,,,,DISCHARGED -9603,2019-11-07,41835.3061035786,169,Emergency,2019-11-26,Normal,9603,301,2,15,,,,DISCHARGED -9604,2019-06-30,29264.76996200568,209,Urgent,2019-07-20,Normal,9604,355,3,2,,,,DISCHARGED -9605,2019-01-05,42620.34076314887,385,Elective,2019-01-20,Abnormal,9605,399,0,8,,,,DISCHARGED -9608,2019-08-06,4001.372218502296,451,Urgent,2019-08-29,Inconclusive,9608,407,2,2,,,,DISCHARGED -9609,2020-09-15,35678.65321517284,167,Emergency,2020-09-23,Abnormal,9609,188,2,18,,,,DISCHARGED -9610,2021-07-08,33989.64739884446,360,Emergency,2021-07-27,Normal,9610,309,2,10,,,,DISCHARGED -9612,2021-11-10,5651.689048138985,488,Elective,2021-12-09,Inconclusive,9612,317,2,13,,,,DISCHARGED -9613,2023-04-08,21329.582052576367,360,Urgent,2023-04-15,Abnormal,9613,128,0,1,Excessive mucus production,"Identifying and treating underlying causes, such as respiratory infections or allergies","J06.9 - Acute upper respiratory infection, unspecified",DISCHARGED -9614,2021-05-22,24040.23543122317,268,Emergency,2021-06-18,Inconclusive,9614,48,1,6,,,,DISCHARGED -9615,2021-08-04,23528.6374244111,452,Emergency,2021-08-18,Normal,9615,24,4,9,,,,DISCHARGED -9616,2020-05-24,23054.34358715714,293,Urgent,2020-05-30,Abnormal,9616,265,4,9,,,,DISCHARGED -9617,2022-05-21,1118.8311260671571,438,Urgent,2022-05-22,Inconclusive,9617,117,4,19,,,,DISCHARGED -9618,2022-08-07,20463.76918799592,482,Emergency,2022-09-03,Normal,9618,463,1,0,,,,DISCHARGED -9619,2019-06-11,39749.41489228431,378,Elective,2019-06-27,Normal,9619,143,2,5,,,,DISCHARGED -9620,2019-11-29,18682.22855805374,177,Elective,2019-12-02,Abnormal,9620,441,2,20,,,,DISCHARGED -9621,2022-10-25,26950.24528618453,298,Elective,2022-11-02,Normal,9621,199,3,13,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9622,2021-10-06,21807.003212103267,209,Elective,2021-10-23,Normal,9622,156,4,26,,,,DISCHARGED -9624,2022-03-14,28369.142535520463,336,Urgent,2022-03-21,Inconclusive,9624,486,4,1,,,,DISCHARGED -9625,2023-03-31,48532.69397319835,293,Emergency,2023-04-07,Normal,9625,347,2,5,,,,DISCHARGED -9626,2020-06-21,34251.48653543129,176,Urgent,2020-06-22,Inconclusive,9626,133,4,0,,,,DISCHARGED -9627,2021-06-19,34029.180643996275,348,Urgent,2021-07-11,Abnormal,9627,399,2,2,Persistent knee pain,"Orthopedic evaluation, imaging studies, and possible physical therapy or surgery",M25.50 - Pain in unspecified joint,DISCHARGED -9628,2022-07-11,37575.4171294518,346,Elective,2022-07-30,Abnormal,9628,147,2,3,,,,DISCHARGED -9629,2022-04-10,45440.14704771098,407,Emergency,2022-04-19,Normal,9629,335,2,12,"Persistent dry, hacking cough","Investigation for underlying respiratory conditions, humidification, and symptomatic relief with cough suppressants.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9630,2022-03-11,19119.35911161525,136,Elective,2022-03-28,Inconclusive,9630,70,0,2,,,,DISCHARGED -9633,2023-09-12,49331.925357798274,472,Urgent,,Abnormal,9633,232,0,14,,,,OPEN -9634,2021-02-06,16001.770406330012,155,Elective,2021-02-17,Abnormal,9634,333,0,12,,,,DISCHARGED -9635,2023-06-11,17407.914278539127,166,Emergency,2023-06-29,Normal,9635,298,0,21,Speech impediments,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.",R47.81 - Dysphonia,DISCHARGED -9636,2023-01-14,40591.69926562745,290,Urgent,,Abnormal,9636,153,1,10,Abnormal menstrual bleeding,"Hormonal therapy, diagnostic tests, and potential surgical intervention. Monitor menstrual cycles and adjust treatment as needed.","N94.6 - Dysmenorrhea, unspecified",OPEN -9637,2019-04-24,4048.725642947292,126,Urgent,2019-05-05,Inconclusive,9637,89,3,3,,,,DISCHARGED -9638,2022-09-05,3691.849225546685,497,Elective,2022-10-04,Normal,9638,333,3,29,,,,DISCHARGED -9639,2021-02-18,12470.951401999228,452,Emergency,2021-03-03,Inconclusive,9639,198,2,16,Difficulty in bowel movements,"Dietary fiber supplementation, laxatives, and gastrointestinal evaluation. Monitor bowel habits and adjust treatment based on effectiveness.",K59.00 - Functional diarrhea,DISCHARGED -9641,2022-10-27,26175.413431594963,442,Emergency,2022-11-26,Normal,9641,160,4,4,,,,DISCHARGED -9642,2021-10-01,47798.352690945954,174,Urgent,2021-10-05,Inconclusive,9642,25,0,20,,,,DISCHARGED -9643,2020-12-21,11312.338562001529,361,Emergency,2021-01-08,Abnormal,9643,120,3,24,,,,DISCHARGED -9644,2023-08-21,18171.27602925551,300,Elective,,Normal,9644,300,3,23,,,,OPEN -9645,2021-03-07,29189.589592356217,132,Elective,2021-03-24,Normal,9645,211,0,7,,,,DISCHARGED -9648,2018-12-19,35365.03687567495,423,Elective,2018-12-26,Normal,9648,62,1,20,Persistent pain in the fingers,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9649,2021-05-03,27082.46860557441,269,Elective,2021-05-17,Normal,9649,450,1,23,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9650,2020-07-08,17765.328890597513,309,Emergency,2020-07-23,Inconclusive,9650,435,3,29,,,,DISCHARGED -9651,2022-10-10,19121.81064338493,258,Urgent,2022-11-08,Abnormal,9651,67,1,9,,,,DISCHARGED -9652,2020-03-18,22691.3180079067,342,Elective,2020-04-13,Inconclusive,9652,252,0,6,Persistent nosebleeds,ENT evaluation for assessment of nasal passages and potential cauterization or other interventions.,"H66.9 - Otitis media, unspecified",DISCHARGED -9653,2019-01-11,2702.255028943887,172,Emergency,2019-01-16,Inconclusive,9653,409,3,16,Persistent feelings of guilt or worthlessness,"Counseling, psychotherapy, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F39 - Unspecified mood [affective] disorder,DISCHARGED -9654,2022-12-06,42216.522948794656,490,Elective,2023-01-04,Normal,9654,458,0,27,,,,DISCHARGED -9655,2019-07-16,10475.950408255008,165,Elective,2019-08-15,Inconclusive,9655,1,1,6,,,,DISCHARGED -9656,2022-10-21,15449.024882169548,425,Urgent,2022-10-31,Abnormal,9656,397,0,26,,,,DISCHARGED -9657,2019-07-18,7498.035177188293,358,Urgent,2019-08-13,Abnormal,9657,107,1,23,Persistent feelings of loneliness and isolation,"Counseling, social support interventions, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.","F43.9 - Reaction to severe stress, unspecified",DISCHARGED -9658,2020-01-18,16717.665164574028,345,Urgent,2020-01-24,Inconclusive,9658,285,1,18,,,,DISCHARGED -9659,2019-04-11,46941.69795646965,432,Emergency,2019-04-26,Inconclusive,9659,48,0,8,,,,DISCHARGED -9660,2019-10-15,22950.418602827987,436,Elective,2019-11-01,Abnormal,9660,139,1,23,Chronic fatigue syndrome,"Symptomatic relief through medications, cognitive-behavioral therapy, and lifestyle adjustments. Monitor and manage symptoms over time.",F41.1 - Generalized anxiety disorder,DISCHARGED -9661,2022-11-01,14755.68995432073,424,Emergency,2022-11-10,Abnormal,9661,217,2,1,,,,DISCHARGED -9662,2021-07-19,5870.637951863089,397,Urgent,2021-08-16,Inconclusive,9662,43,0,21,,,,DISCHARGED -9663,2021-10-16,15237.945526635076,176,Emergency,2021-10-17,Abnormal,9663,416,2,19,,,,DISCHARGED -9664,2023-04-28,12481.101145800443,348,Emergency,2023-05-06,Abnormal,9664,268,0,18,Frequent urination and thirst,"Blood glucose monitoring, lifestyle modifications, and antidiabetic medications. Educate the patient on diabetes management.",E11.9 - Type 2 diabetes mellitus without complications,DISCHARGED -9665,2019-12-17,42759.41513912659,491,Emergency,2020-01-13,Abnormal,9665,77,1,26,Complains of persistent hiccups.,"Explore potential causes and recommend techniques to alleviate hiccups, such as breathing exercises or medications.",R68.83 - Other generalized symptoms and signs,DISCHARGED -9666,2022-02-21,2825.8628607741107,384,Emergency,2022-03-15,Normal,9666,215,1,5,,,,DISCHARGED -9667,2019-02-18,10502.410516779371,350,Elective,2019-02-26,Inconclusive,9667,381,3,9,,,,DISCHARGED -9668,2021-04-02,9699.424772705905,293,Elective,2021-04-23,Normal,9668,97,3,12,Recurrent fevers and fatigue,"Comprehensive medical evaluation, blood tests, and medications to address underlying infections or autoimmune conditions. Monitor for symptom resolution.","A49.9 - Bacterial infection, unspecified",DISCHARGED -9669,2019-05-10,20246.388784920397,182,Elective,2019-05-20,Inconclusive,9669,235,2,24,Frequent urge to urinate and immediate need,Treat underlying urinary tract infections or bladder issues. Recommend lifestyle modifications and medications as appropriate.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9670,2022-10-05,20491.93058442884,183,Elective,2022-10-14,Inconclusive,9670,281,1,1,Feeling of impending doom,"Psychological evaluation, counseling, and possible medication","F43.10 - Post-traumatic stress disorder, unspecified",DISCHARGED -9671,2022-02-08,37989.780508136864,235,Urgent,2022-03-09,Abnormal,9671,148,3,9,Chest congestion and wheezing,"Prescribe bronchodilators and anti-inflammatory medications, recommend respiratory therapies, and assess for underlying respiratory conditions.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9672,2023-05-25,24899.339789045487,363,Elective,,Normal,9672,411,1,9,,,,OPEN -9673,2022-10-29,6554.936512300236,404,Emergency,2022-11-23,Inconclusive,9673,303,0,25,,,,DISCHARGED -9674,2019-03-10,37746.77903382421,463,Emergency,2019-03-21,Normal,9674,483,3,4,Difficulty hearing and ear pain,"Conduct hearing tests, prescribe medications for infections or hearing loss, and recommend protective measures for the ears.",H90 - Conductive and sensorineural hearing loss,DISCHARGED -9676,2019-10-20,28148.575886522383,340,Emergency,2019-11-03,Inconclusive,9676,423,2,21,,,,DISCHARGED -9677,2022-05-29,23625.09689969844,191,Elective,2022-06-02,Inconclusive,9677,65,3,3,,,,DISCHARGED -9678,2019-04-29,19668.947533492355,250,Emergency,2019-05-23,Normal,9678,233,1,22,,,,DISCHARGED -9679,2020-09-23,17248.98840250034,420,Emergency,2020-10-08,Normal,9679,456,4,1,,,,DISCHARGED -9680,2020-11-24,17258.32127966442,357,Urgent,2020-12-16,Inconclusive,9680,86,4,6,,,,DISCHARGED -9681,2022-02-10,8639.499734471934,108,Urgent,2022-02-15,Normal,9681,78,1,17,,,,DISCHARGED -9682,2021-11-09,8106.62731560165,208,Urgent,2021-11-25,Normal,9682,204,0,16,,,,DISCHARGED -9683,2020-05-30,5818.806502327479,475,Elective,2020-06-03,Inconclusive,9683,278,3,10,Severe abdominal cramps,"Dietary changes, antispasmodic medications, and addressing underlying gastrointestinal issues",K58.9 - Irritable bowel syndrome without diarrhea,DISCHARGED -9684,2020-04-08,32194.51375357532,178,Elective,2020-04-29,Abnormal,9684,336,4,20,,,,DISCHARGED -9685,2021-12-01,35646.35208119993,495,Urgent,2021-12-11,Inconclusive,9685,253,0,17,Lingering cough with occasional sputum production,"Chest X-ray, assessment for respiratory infections, and prescription of cough suppressants or antibiotics as needed.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9686,2019-09-03,26452.040576515148,298,Emergency,2019-09-28,Inconclusive,9686,303,1,7,,,,DISCHARGED -9687,2022-01-15,31430.89880796007,219,Elective,2022-01-16,Normal,9687,379,0,27,,,,DISCHARGED -9688,2023-09-06,47938.14487629312,193,Urgent,,Abnormal,9688,129,1,27,,,,OPEN -9690,2021-09-29,42995.60963656225,460,Urgent,2021-10-24,Normal,9690,83,3,11,Recurrent headaches and light sensitivity,"Pain relievers, lifestyle modifications, and investigation for potential migraine triggers. Monitor for headache frequency and adjust treatment.","G43.9 - Migraine, unspecified",DISCHARGED -9691,2022-10-03,7460.393199892693,396,Emergency,2022-10-14,Abnormal,9691,275,0,23,,,,DISCHARGED -9692,2019-11-23,15243.158324036942,114,Emergency,2019-11-26,Abnormal,9692,186,3,0,,,,DISCHARGED -9693,2020-09-09,11964.137562873244,320,Urgent,2020-09-26,Normal,9693,45,0,19,,,,DISCHARGED -9694,2020-08-10,6699.178105948575,172,Urgent,2020-08-14,Abnormal,9694,386,1,29,,,,DISCHARGED -9695,2023-10-26,16736.248526230556,253,Elective,2023-11-21,Inconclusive,9695,182,1,24,,,,DISCHARGED -9696,2023-01-04,11280.992523600917,138,Elective,2023-01-31,Normal,9696,267,0,20,,,,DISCHARGED -9697,2018-11-28,28638.76870546042,209,Elective,2018-12-07,Normal,9697,295,1,11,,,,DISCHARGED -9698,2020-09-28,32711.12112420037,140,Emergency,2020-10-09,Abnormal,9698,321,2,26,,,,DISCHARGED -9700,2019-04-12,5500.38352277576,339,Emergency,2019-05-11,Abnormal,9700,99,2,25,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9701,2019-04-28,28412.454889008248,220,Urgent,2019-05-07,Abnormal,9701,77,3,28,,,,DISCHARGED -9703,2019-07-27,5906.052893056745,176,Urgent,2019-08-07,Inconclusive,9703,271,2,5,Difficulty balancing,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R42 - Dizziness and giddiness,DISCHARGED -9704,2020-04-12,19179.031435993384,334,Emergency,2020-05-06,Inconclusive,9704,338,2,2,,,,DISCHARGED -9705,2021-11-13,17340.573465789937,410,Emergency,2021-12-13,Abnormal,9705,161,4,4,Persistent sore throat and difficulty swallowing,"Throat examination, assessment for infections, and prescription of antibiotics or other appropriate treatments.","J02.9 - Acute pharyngitis, unspecified",DISCHARGED -9706,2018-11-02,32616.76600426902,363,Urgent,2018-11-14,Normal,9706,43,4,13,Rapid weight loss,"Comprehensive medical evaluation, nutritional counseling, and potential medications. Identify and address underlying causes of weight loss.",R63.4 - Abnormal weight loss,DISCHARGED -9707,2023-05-04,27332.66087193986,265,Elective,2023-05-29,Normal,9707,237,4,11,,,,DISCHARGED -9708,2021-07-19,28922.65913693515,149,Elective,2021-07-21,Normal,9708,133,4,12,,,,DISCHARGED -9709,2020-01-11,30019.690600064056,288,Elective,2020-02-05,Abnormal,9709,460,1,12,,,,DISCHARGED -9710,2019-11-13,45584.15560000882,263,Urgent,2019-11-27,Abnormal,9710,191,3,28,,,,DISCHARGED -9711,2020-11-22,7130.664083479242,134,Elective,2020-12-10,Normal,9711,355,3,16,,,,DISCHARGED -9712,2022-01-05,13790.50620060984,265,Urgent,2022-01-19,Normal,9712,277,2,23,"Sudden, severe abdominal pain","Immediate medical attention, diagnostic tests to identify the cause, and appropriate treatment based on the diagnosis.","R00.0 - Tachycardia, unspecified",DISCHARGED -9713,2020-10-05,40687.85448176824,196,Urgent,2020-10-18,Abnormal,9713,17,3,26,,,,DISCHARGED -9714,2023-10-03,42712.67485971958,440,Elective,,Inconclusive,9714,11,2,14,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,OPEN -9715,2022-08-18,43363.23023083918,170,Elective,2022-09-05,Inconclusive,9715,179,3,5,,,,DISCHARGED -9716,2022-05-19,35431.81134218681,317,Elective,2022-06-18,Inconclusive,9716,122,0,11,,,,DISCHARGED -9717,2021-05-13,13563.249041623523,161,Urgent,2021-05-23,Normal,9717,245,0,1,Sudden onset of severe abdominal pain and vomiting,"Assessment for gastrointestinal issues, imaging studies, and appropriate treatments.",K57.30 - Diverticulitis of large intestine without perforation or abscess without bleeding,DISCHARGED -9718,2021-02-08,32056.25617943407,251,Urgent,2021-03-07,Abnormal,9718,221,3,3,,,,DISCHARGED -9719,2019-04-05,47026.89186132301,438,Emergency,2019-04-06,Inconclusive,9719,372,1,19,Joint pain and swelling,"Anti-inflammatory medications, physical therapy, and imaging studies (X-rays, MRI) to assess for arthritis or other joint conditions. Lifestyle modifications and joint injections may be considered. Regular follow-up to manage symptoms and monitor joint health.",M25.50 - Pain in unspecified joint,DISCHARGED -9720,2019-04-07,24754.647932548327,327,Elective,2019-04-22,Normal,9720,50,2,24,,,,DISCHARGED -9721,2023-10-28,43047.41106018499,405,Elective,2023-11-27,Inconclusive,9721,487,3,24,,,,DISCHARGED -9722,2020-06-14,13743.409289062054,166,Urgent,2020-07-03,Normal,9722,70,2,20,,,,DISCHARGED -9723,2023-10-05,27186.509092691125,224,Elective,2023-10-20,Abnormal,9723,479,4,11,,,,DISCHARGED -9724,2023-05-01,42847.70206225144,115,Urgent,2023-05-30,Abnormal,9724,47,3,2,,,,DISCHARGED -9725,2021-04-07,46321.489055376594,278,Emergency,2021-04-09,Abnormal,9725,18,1,16,Difficulty in maintaining equilibrium,"Physical therapy, balance exercises, and addressing underlying causes such as inner ear problems or neurological conditions.",R29.6 - Unsteadiness on feet and disturbance of gait,DISCHARGED -9726,2023-10-07,16605.718483135443,451,Emergency,2023-10-20,Abnormal,9726,261,4,5,,,,DISCHARGED -9727,2022-04-11,38809.31012111005,240,Urgent,2022-05-03,Inconclusive,9727,83,3,23,Feeling of fullness in the abdomen,Consultation with a gastroenterologist for abdominal imaging and evaluation of digestive issues.,"K92.9 - Disease of digestive system, unspecified",DISCHARGED -9729,2019-01-16,24944.63208705401,178,Emergency,2019-01-17,Inconclusive,9729,154,0,16,,,,DISCHARGED -9730,2020-06-09,42129.350010958144,281,Emergency,2020-06-22,Normal,9730,52,3,26,,,,DISCHARGED -9731,2019-06-15,12095.117714089787,201,Urgent,2019-06-20,Inconclusive,9731,106,0,16,,,,DISCHARGED -9732,2021-11-08,21584.10229499755,272,Emergency,2021-11-26,Normal,9732,356,0,10,,,,DISCHARGED -9733,2019-10-05,22208.328318435804,318,Elective,2019-10-12,Inconclusive,9733,303,3,22,,,,DISCHARGED -9734,2022-02-19,16957.17420233623,481,Urgent,2022-02-23,Normal,9734,134,3,6,,,,DISCHARGED -9736,2022-09-24,13581.0089167484,423,Emergency,2022-10-03,Normal,9736,442,0,1,,,,DISCHARGED -9737,2022-01-07,9209.45351961647,213,Urgent,2022-02-04,Abnormal,9737,68,2,18,,,,DISCHARGED -9738,2021-10-01,11578.265499407742,236,Emergency,2021-10-23,Abnormal,9738,10,4,1,,,,DISCHARGED -9739,2022-05-31,5287.393250021994,464,Elective,2022-06-29,Normal,9739,142,1,21,,,,DISCHARGED -9740,2021-07-20,30707.487068089777,371,Emergency,2021-08-07,Inconclusive,9740,191,3,28,,,,DISCHARGED -9742,2022-11-02,25712.33842063509,236,Emergency,2022-11-19,Abnormal,9742,386,4,12,,,,DISCHARGED -9743,2019-06-20,19350.61491477125,224,Urgent,2019-07-05,Abnormal,9743,377,4,23,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9744,2019-01-30,2758.335750637233,117,Urgent,2019-02-21,Normal,9744,68,2,23,,,,DISCHARGED -9745,2021-05-07,10659.36509199032,350,Elective,2021-06-03,Inconclusive,9745,22,4,15,,,,DISCHARGED -9746,2021-02-17,40322.320481317176,146,Emergency,2021-03-13,Normal,9746,180,3,16,,,,DISCHARGED -9747,2022-07-09,49397.99886262989,382,Urgent,2022-08-03,Normal,9747,292,4,10,,,,DISCHARGED -9749,2020-06-01,29709.082207880638,404,Elective,2020-06-11,Abnormal,9749,8,3,8,Persistent feelings of anger and irritability,"Counseling, anger management techniques, and potentially medications for underlying mood disorders. Evaluation for underlying mental health conditions is essential.",F43.8 - Other reactions to severe stress,DISCHARGED -9750,2021-08-06,18555.540732174897,355,Emergency,2021-08-25,Abnormal,9750,270,3,26,Throbbing headache on one side of the head,"Assessment for migraines, lifestyle modifications, and prescription of migraine-specific medications.",R11.0 - Nausea,DISCHARGED -9751,2020-07-06,22735.21328037933,307,Elective,2020-07-07,Normal,9751,386,0,23,"Dull, aching pain in the lower back","Imaging studies (MRI or X-ray), physical therapy, and pain management techniques.","M54.9 - Dorsalgia, unspecified",DISCHARGED -9752,2022-10-03,3325.854786482901,355,Emergency,2022-10-14,Abnormal,9752,92,2,8,,,,DISCHARGED -9753,2023-08-04,34689.217904932564,237,Urgent,2023-08-26,Abnormal,9753,453,1,28,,,,DISCHARGED -9754,2020-12-18,28623.423800404795,381,Elective,2020-12-20,Inconclusive,9754,16,0,13,,,,DISCHARGED -9755,2021-08-11,47707.81839002663,270,Elective,2021-08-15,Abnormal,9755,153,1,12,,,,DISCHARGED -9756,2020-12-27,29031.933569662207,307,Urgent,2021-01-21,Normal,9756,404,3,24,,,,DISCHARGED -9757,2023-05-14,32403.867384594152,280,Emergency,2023-05-19,Inconclusive,9757,327,0,10,Tingling sensation in the hands and feet,"Check for nerve compression or other neurological issues, prescribe medications for nerve health, and recommend lifestyle changes.",G56.9 - Mononeuropathy of unspecified upper limb,DISCHARGED -9758,2022-03-08,7013.703138185272,378,Urgent,2022-03-20,Abnormal,9758,148,4,11,,,,DISCHARGED -9759,2023-09-11,30429.17678092431,366,Urgent,2023-09-26,Inconclusive,9759,376,4,21,Trouble in sleeping,"Sleep hygiene education, cognitive-behavioral therapy for insomnia, and medications if necessary. Identify and address underlying sleep disorders.","G47.00 - Insomnia, unspecified",DISCHARGED -9760,2022-05-23,13046.561061175236,388,Urgent,2022-06-12,Abnormal,9760,266,1,2,,,,DISCHARGED -9761,2023-03-27,30737.38612489365,150,Emergency,,Inconclusive,9761,421,3,0,,,,OPEN -9762,2022-10-06,37668.99231087265,279,Emergency,2022-10-14,Inconclusive,9762,327,1,26,,,,DISCHARGED -9763,2022-04-20,18469.36016439754,365,Emergency,2022-05-01,Normal,9763,105,2,7,,,,DISCHARGED -9765,2023-03-22,47765.5175157545,419,Urgent,2023-03-30,Abnormal,9765,471,4,25,,,,DISCHARGED -9766,2022-02-17,47699.03529922939,229,Elective,2022-03-10,Normal,9766,380,0,18,Abdominal bloating and discomfort after eating,"Assessment for gastrointestinal issues, dietary changes, and anti-gas medications.",R12 - Heartburn,DISCHARGED -9767,2021-04-17,23380.073571168672,396,Urgent,2021-05-08,Inconclusive,9767,34,0,12,Difficulty in swallowing solid foods,"Evaluation by a gastroenterologist, possible endoscopy or swallowing study","R13.10 - Dysphagia, unspecified",DISCHARGED -9768,2022-10-04,23913.339851483797,245,Urgent,2022-10-20,Inconclusive,9768,118,0,6,Frequent urinary incontinence,"Bladder function evaluation, lifestyle modifications, and possible pelvic floor exercises","N32.9 - Bladder disorder, unspecified",DISCHARGED -9769,2022-01-25,33910.75473829914,121,Elective,2022-02-02,Abnormal,9769,13,4,12,,,,DISCHARGED -9770,2019-08-11,6015.95267461178,176,Emergency,2019-08-28,Abnormal,9770,13,3,25,Painful urination,Antibiotics for possible urinary tract infection,N34 - Urethral stricture,DISCHARGED -9771,2021-03-20,10800.610057635917,484,Urgent,2021-04-05,Inconclusive,9771,265,4,5,,,,DISCHARGED -9772,2019-12-03,46032.15309346579,252,Urgent,2019-12-05,Abnormal,9772,139,4,2,,,,DISCHARGED -9773,2019-02-28,36842.56870364607,157,Urgent,2019-03-23,Inconclusive,9773,293,0,5,Abdominal pain in the lower right quadrant,"Evaluation for possible appendicitis, imaging studies, and surgical consultation if necessary.",R10.9 - Unspecified abdominal pain,DISCHARGED -9774,2019-04-07,21535.95199755365,208,Emergency,2019-04-19,Normal,9774,363,4,27,,,,DISCHARGED -9775,2020-08-17,35388.82831578764,206,Emergency,2020-09-16,Normal,9775,118,0,2,Sudden onset of confusion or disorientation,Emergency medical attention for immediate neurological evaluation and identification of the cause.,"G44.9 - Headache syndrome, unspecified",DISCHARGED -9776,2022-10-08,42470.149259777216,159,Urgent,2022-10-30,Inconclusive,9776,237,3,12,,,,DISCHARGED -9777,2020-06-27,34773.11672276814,139,Elective,2020-07-27,Abnormal,9777,33,2,12,,,,DISCHARGED -9778,2023-09-20,28835.050352851187,460,Elective,2023-09-21,Inconclusive,9778,168,0,29,Sudden onset of abdominal swelling,"Emergency medical attention, imaging studies, and possible surgical intervention","M54.9 - Dorsalgia, unspecified",DISCHARGED -9779,2023-01-25,40706.756367193695,382,Elective,2023-01-30,Abnormal,9779,9,1,24,Chest pain that radiates to the arm,"Immediate medical attention, evaluation for heart-related issues, medications, and potential interventions such as angioplasty or bypass surgery.",I20.0 - Unstable angina,DISCHARGED -9780,2020-02-15,11879.459621555614,265,Elective,2020-03-02,Inconclusive,9780,121,2,12,,,,DISCHARGED -9781,2019-07-11,37112.45944905461,369,Elective,2019-07-12,Inconclusive,9781,400,3,0,,,,DISCHARGED -9782,2022-07-28,39823.19094686836,186,Urgent,2022-07-31,Abnormal,9782,144,2,28,,,,DISCHARGED -9783,2023-10-30,48754.92114615348,350,Elective,2023-11-18,Normal,9783,450,0,7,,,,DISCHARGED -9784,2023-06-05,23012.892520303205,438,Emergency,2023-06-19,Normal,9784,445,3,4,,,,DISCHARGED -9785,2021-06-02,2166.596844607958,361,Elective,2021-06-28,Normal,9785,222,1,19,,,,DISCHARGED -9786,2022-07-08,16899.464928324745,200,Emergency,2022-07-26,Abnormal,9786,370,0,16,,,,DISCHARGED -9787,2023-10-10,41430.88386465394,377,Elective,,Inconclusive,9787,256,0,8,,,,OPEN -9788,2020-12-06,47778.244349762965,409,Urgent,2021-01-01,Normal,9788,267,3,12,,,,DISCHARGED -9790,2023-06-08,2202.002980999018,129,Emergency,2023-07-04,Inconclusive,9790,358,3,24,,,,DISCHARGED -9792,2023-10-15,5079.171586366583,200,Emergency,2023-10-21,Abnormal,9792,3,2,12,,,,DISCHARGED -9793,2023-10-18,15276.258410256076,218,Elective,2023-11-13,Inconclusive,9793,425,1,4,Chest tightness and palpitations,"Immediate medical attention, evaluation for cardiac issues, medications, and lifestyle modifications.","I21.9 - Acute myocardial infarction, unspecified",DISCHARGED -9794,2020-01-31,15014.257274069723,496,Urgent,2020-02-19,Abnormal,9794,396,2,13,Blurred vision and eye pain,"Ophthalmic examination, corrective lenses, and medications for eye conditions. Monitor for any signs of worsening vision or complications.",H52.9 - Unspecified visual loss,DISCHARGED -9796,2020-12-17,11333.21108973169,343,Urgent,2021-01-14,Normal,9796,353,2,10,,,,DISCHARGED -9797,2020-03-23,43545.93887670325,205,Urgent,2020-03-31,Inconclusive,9797,105,0,24,Difficulty in focusing and maintaining attention,"Evaluation for underlying conditions such as attention-deficit/hyperactivity disorder (ADHD), anxiety, or depression. Behavioral therapies and medications may be considered.",M25.50 - Pain in unspecified joint,DISCHARGED -9798,2019-07-25,3410.9377230355044,395,Emergency,2019-08-11,Normal,9798,84,3,25,"Sudden, severe back pain","Pain management medications, physical therapy, and potential surgical interventions based on the cause of the back pain.",M54.5 - Low back pain,DISCHARGED -9799,2020-07-25,21444.502242224906,311,Emergency,2020-08-17,Inconclusive,9799,213,0,13,,,,DISCHARGED -9800,2023-02-13,44948.76988215603,257,Emergency,2023-03-15,Inconclusive,9800,120,1,24,,,,DISCHARGED -9801,2023-08-04,22781.12720747372,290,Urgent,2023-08-24,Abnormal,9801,131,2,6,,,,DISCHARGED -9802,2022-03-26,7796.311386434458,241,Elective,2022-03-31,Inconclusive,9802,337,1,23,,,,DISCHARGED -9803,2022-12-13,32113.30182993484,279,Urgent,2022-12-28,Abnormal,9803,196,3,16,,,,DISCHARGED -9805,2021-02-13,14705.97144935834,381,Urgent,2021-03-07,Normal,9805,18,3,3,,,,DISCHARGED -9807,2021-05-15,47748.71634464196,482,Elective,2021-06-05,Normal,9807,129,4,9,,,,DISCHARGED -9808,2020-03-02,42206.57159968563,369,Emergency,2020-03-28,Normal,9808,11,1,9,Stomach ache and swelling,"Diet adjustments, antacids, and medication for underlying gastrointestinal problems. Consider lifestyle modifications.",K21.9 - Gastro-esophageal reflux disease without esophagitis,DISCHARGED -9809,2022-07-30,18734.69948543802,474,Emergency,2022-08-03,Abnormal,9809,80,0,14,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9810,2019-02-22,39238.10515880027,328,Emergency,2019-03-13,Normal,9810,329,1,19,Persistent itchy skin,"Topical creams, antihistamines, and identification of potential allergens. Monitor for improvement in skin condition and adjust treatment as necessary.","L20.9 - Atopic dermatitis, unspecified",DISCHARGED -9811,2019-03-19,4466.9219144162735,397,Urgent,2019-03-31,Inconclusive,9811,353,2,11,Patient reports a history of frequent urinary incontinence.,Evaluate for possible urinary tract or pelvic floor issues; recommend lifestyle changes and consider medications or physical therapy.,R00.2 - Palpitations,DISCHARGED -9812,2021-12-21,22135.06754243555,366,Elective,2022-01-19,Abnormal,9812,261,3,8,,,,DISCHARGED -9813,2020-09-01,46663.76859979641,382,Urgent,2020-09-19,Normal,9813,391,3,2,Difficulty in speaking,Consultation with a speech therapist and a neurologist to assess and address potential speech-related issues.,"R47.9 - Speech disturbances and language disorders, unspecified",DISCHARGED -9814,2022-02-12,13049.755779648058,312,Urgent,2022-02-22,Inconclusive,9814,124,1,14,,,,DISCHARGED -9815,2021-02-12,17269.41067955875,456,Elective,2021-02-19,Abnormal,9815,306,1,11,,,,DISCHARGED -9816,2020-08-15,8643.200302209143,334,Elective,2020-09-07,Normal,9816,266,1,25,,,,DISCHARGED -9817,2019-11-04,34921.00392304842,329,Emergency,2019-12-03,Abnormal,9817,446,2,14,,,,DISCHARGED -9818,2019-10-10,6765.8331684450895,284,Urgent,2019-10-20,Inconclusive,9818,440,2,25,,,,DISCHARGED -9819,2020-09-18,26823.862274730447,201,Emergency,2020-10-08,Normal,9819,382,0,0,,,,DISCHARGED -9820,2019-12-12,16741.267080950478,358,Emergency,2019-12-28,Inconclusive,9820,139,1,14,,,,DISCHARGED -9821,2023-08-19,12118.785653512374,391,Emergency,2023-08-26,Abnormal,9821,328,0,10,,,,DISCHARGED -9822,2022-08-13,38642.26103114028,234,Emergency,2022-08-30,Inconclusive,9822,1,4,4,Persistent shoulder pain,"Physical therapy, pain management, and imaging studies if necessary","M54.9 - Dorsalgia, unspecified",DISCHARGED -9823,2023-05-25,47915.214461528565,280,Emergency,2023-06-20,Abnormal,9823,7,2,6,,,,DISCHARGED -9825,2019-09-26,36417.61284594979,317,Emergency,2019-10-24,Inconclusive,9825,249,3,11,,,,DISCHARGED -9826,2021-03-18,37541.875298376304,113,Elective,2021-04-05,Abnormal,9826,138,4,19,,,,DISCHARGED -9827,2023-04-13,34757.78975456076,205,Elective,2023-05-06,Abnormal,9827,123,3,24,,,,DISCHARGED -9828,2021-06-09,13435.528635815212,266,Elective,2021-06-13,Normal,9828,308,4,5,Unexplained fear or anxiety,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9829,2020-10-20,31488.027156085187,328,Elective,2020-11-18,Abnormal,9829,227,0,21,,,,DISCHARGED -9830,2021-06-20,21340.88365488702,165,Elective,2021-07-12,Normal,9830,9,0,2,,,,DISCHARGED -9831,2020-03-02,27189.88326150428,347,Elective,2020-03-14,Normal,9831,468,2,9,,,,DISCHARGED -9832,2021-03-13,33795.96129444848,372,Urgent,2021-03-24,Normal,9832,211,3,25,Changes in bowel habits,Gastrointestinal evaluation for potential issues such as irritable bowel syndrome or inflammatory bowel disease.,K58 - Irritable bowel syndrome,DISCHARGED -9833,2022-06-10,44801.62700601499,221,Elective,2022-06-30,Inconclusive,9833,111,4,20,,,,DISCHARGED -9834,2021-03-07,45206.9820431323,376,Urgent,2021-03-22,Abnormal,9834,7,1,25,Sudden and severe pain,Immediate evaluation to identify the cause. Treat with pain relievers and interventions based on the specific diagnosis.,G44.82 - Headache associated with sexual activity,DISCHARGED -9835,2020-09-21,42817.19779737234,285,Emergency,2020-10-18,Normal,9835,291,1,21,,,,DISCHARGED -9836,2023-05-13,28844.185454967195,246,Urgent,2023-05-31,Inconclusive,9836,476,2,29,,,,DISCHARGED -9837,2020-10-27,40771.30573754242,480,Emergency,2020-11-25,Normal,9837,361,3,3,,,,DISCHARGED -9838,2022-01-09,41197.52402614246,420,Emergency,2022-01-25,Inconclusive,9838,459,1,12,,,,DISCHARGED -9839,2022-05-21,44684.03127045113,148,Elective,2022-05-31,Abnormal,9839,252,2,18,,,,DISCHARGED -9840,2022-03-25,26692.800531825986,445,Elective,2022-04-17,Normal,9840,13,2,4,,,,DISCHARGED -9841,2020-09-11,14047.059542709438,195,Urgent,2020-10-02,Abnormal,9841,239,3,22,Persistent cough with chest pain,"Investigation for underlying respiratory conditions, antibiotics if necessary, and symptomatic relief with cough suppressants. Evaluation for potential cardiac issues may also be considered.","J44.9 - Chronic obstructive pulmonary disease, unspecified",DISCHARGED -9842,2023-06-19,23031.06799478597,230,Emergency,2023-06-27,Abnormal,9842,437,1,26,,,,DISCHARGED -9843,2022-12-03,37979.31092166392,352,Emergency,2022-12-25,Normal,9843,241,1,21,,,,DISCHARGED -9845,2023-03-27,26350.532740571187,272,Elective,2023-04-05,Inconclusive,9845,468,1,17,Persistent pain in the heels,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9846,2019-06-20,38745.17587433256,275,Emergency,2019-06-22,Abnormal,9846,341,0,0,,,,DISCHARGED -9847,2021-09-06,15620.254668842545,295,Emergency,2021-09-29,Inconclusive,9847,148,1,20,Frequent stomach cramps and bloating,"Identification and treatment of underlying gastrointestinal conditions, dietary changes, and lifestyle modifications.",K30 - Dyspepsia,DISCHARGED -9848,2019-07-12,20519.99016059257,220,Urgent,2019-07-23,Normal,9848,235,4,20,,,,DISCHARGED -9849,2020-08-17,42053.7688302178,338,Urgent,2020-08-19,Abnormal,9849,305,0,27,Abnormal discharge,"Antibiotics for infections, antifungals for fungal infections, or other targeted treatments depending on the cause",B99.9 - Unspecified infectious disease,DISCHARGED -9850,2020-12-15,11011.46410275345,207,Elective,2021-01-13,Inconclusive,9850,477,0,15,,,,DISCHARGED -9851,2020-01-23,44496.9101828404,142,Elective,2020-02-20,Normal,9851,166,0,15,Difficulty in bending or lifting,"Physical therapy, pain management medications, and lifestyle modifications.",M54.5 - Low back pain,DISCHARGED -9852,2023-05-29,35696.85736045369,159,Urgent,2023-05-31,Abnormal,9852,19,0,15,,,,DISCHARGED -9854,2019-04-28,18184.480136417707,258,Urgent,2019-05-04,Normal,9854,215,2,27,,,,DISCHARGED -9856,2020-05-29,24240.32310302941,367,Elective,2020-06-02,Normal,9856,342,4,21,,,,DISCHARGED -9857,2022-11-19,41595.22025421151,294,Elective,2022-11-29,Inconclusive,9857,134,3,18,,,,DISCHARGED -9858,2023-03-24,42645.15112144123,252,Urgent,2023-03-25,Abnormal,9858,392,1,15,,,,DISCHARGED -9859,2020-06-30,8056.605525248469,176,Emergency,2020-07-30,Abnormal,9859,128,0,0,,,,DISCHARGED -9860,2023-10-05,34659.15796406989,414,Urgent,,Inconclusive,9860,409,3,19,,,,OPEN -9861,2023-03-22,21619.576123892017,142,Elective,2023-04-03,Normal,9861,421,2,19,,,,DISCHARGED -9862,2023-08-23,35817.969737550135,316,Emergency,2023-09-08,Inconclusive,9862,293,3,9,,,,DISCHARGED -9863,2019-12-29,48335.96428065138,146,Elective,2020-01-13,Abnormal,9863,245,0,1,,,,DISCHARGED -9864,2023-05-17,10810.151737261876,443,Urgent,2023-06-03,Inconclusive,9864,188,4,13,,,,DISCHARGED -9865,2022-05-16,23232.54753921958,382,Emergency,2022-05-24,Normal,9865,43,3,7,,,,DISCHARGED -9866,2019-04-16,31485.60579909287,390,Emergency,2019-04-20,Inconclusive,9866,85,0,5,,,,DISCHARGED -9867,2023-02-22,23193.954195134866,247,Emergency,2023-02-28,Abnormal,9867,43,0,27,,,,DISCHARGED -9868,2023-06-03,13795.300114503212,163,Elective,,Abnormal,9868,329,1,2,,,,OPEN -9870,2019-12-14,41041.61450399758,367,Emergency,2020-01-04,Inconclusive,9870,374,1,15,,,,DISCHARGED -9872,2021-06-12,4427.709908878663,398,Urgent,2021-06-21,Inconclusive,9872,445,4,16,,,,DISCHARGED -9873,2020-10-27,39196.8179375508,228,Elective,2020-11-03,Inconclusive,9873,377,1,11,,,,DISCHARGED -9874,2019-02-22,37733.90503375637,299,Urgent,2019-02-25,Inconclusive,9874,389,4,26,Pain with urination,Antibiotics for urinary tract infections or other targeted treatments for underlying causes,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9875,2021-06-27,38382.05769240431,233,Elective,2021-07-18,Inconclusive,9875,144,2,18,,,,DISCHARGED -9876,2018-11-28,40070.90994005198,107,Emergency,2018-12-18,Abnormal,9876,50,2,23,Sudden onset of double vision,"Eye examination, assessment for underlying eye conditions or neurological issues, and appropriate treatments.",H53.9 - Unspecified visual disturbance,DISCHARGED -9879,2020-04-12,24461.09201046662,232,Emergency,2020-04-21,Abnormal,9879,241,1,19,Joint swelling and difficulty moving,"Joint examination, imaging studies, and prescription of anti-inflammatory medications or physical therapy.",M25.5 - Pain in joint involving pelvic region and thigh,DISCHARGED -9880,2023-05-28,8566.857147250108,265,Urgent,,Abnormal,9880,293,2,2,,,,OPEN -9881,2023-09-19,18698.263748536832,373,Elective,,Inconclusive,9881,407,3,12,Shortness of breath and wheezing,"Identification and treatment of underlying respiratory conditions, bronchodilators, and anti-inflammatory medications. Management of triggers and lifestyle modifications may also be advised.","J45.909 - Unspecified asthma, uncomplicated",OPEN -9882,2023-05-10,24288.40903048542,367,Emergency,,Inconclusive,9882,50,3,15,,,,OPEN -9883,2023-10-27,49318.25219949161,114,Emergency,2023-11-10,Normal,9883,265,3,10,,,,DISCHARGED -9886,2022-09-23,2313.393614715073,153,Urgent,2022-10-10,Inconclusive,9886,119,2,19,,,,DISCHARGED -9887,2020-12-17,14335.201916936188,326,Emergency,2020-12-30,Inconclusive,9887,199,3,26,,,,DISCHARGED -9888,2023-02-12,13307.3476128259,104,Urgent,2023-03-01,Abnormal,9888,404,4,15,Swollen ankles and leg pain,"Evaluate for cardiovascular issues, prescribe diuretics or other medications, and recommend lifestyle changes including exercise.","I50.9 - Heart failure, unspecified",DISCHARGED -9892,2020-11-02,32158.62433197718,319,Elective,2020-11-29,Inconclusive,9892,247,0,19,,,,DISCHARGED -9893,2022-08-04,16652.75320255519,327,Emergency,2022-08-18,Inconclusive,9893,69,1,1,Sudden difficulty in breathing,"Emergency medical attention, oxygen therapy, and respiratory support","J96.0 - Acute respiratory failure, unspecified",DISCHARGED -9894,2019-02-11,39980.41430525488,142,Elective,2019-02-16,Normal,9894,340,4,3,"Describes a sudden, stabbing pain in the chest.",Urgently assess for potential cardiac issues; administer appropriate treatments such as nitroglycerin or thrombolytics if necessary.,"E03.9 - Hypothyroidism, unspecified",DISCHARGED -9896,2019-11-23,6858.789498835268,473,Elective,2019-12-12,Abnormal,9896,56,3,26,Difficulty in controlling bladder or bowel movements,"Evaluation for underlying causes, pelvic floor exercises, medications, and lifestyle modifications. Referral to a specialist may be necessary.","N94.6 - Dyspareunia, unspecified",DISCHARGED -9897,2021-01-10,36286.222945517125,218,Emergency,2021-01-18,Inconclusive,9897,381,0,27,,,,DISCHARGED -9898,2021-11-02,9368.304069240534,409,Elective,2021-11-16,Inconclusive,9898,38,1,24,,,,DISCHARGED -9899,2022-02-23,39832.75477666103,495,Elective,2022-03-13,Normal,9899,471,4,3,,,,DISCHARGED -9901,2020-03-27,25964.156646785843,488,Emergency,2020-04-19,Inconclusive,9901,288,1,27,Sudden loss of balance,"Evaluation for neurological conditions, physical therapy, and lifestyle modifications.",G99.8 - Other disorders of nervous system in diseases classified elsewhere,DISCHARGED -9902,2019-03-14,30944.78314296131,259,Elective,2019-03-29,Abnormal,9902,442,2,16,Pain in the upper back and shoulders,"Physical therapy, pain management medications, and lifestyle modifications. Posture correction and stress management may also be recommended.","J45.909 - Unspecified asthma, uncomplicated",DISCHARGED -9903,2023-02-24,3639.902717162287,113,Elective,2023-03-02,Normal,9903,17,3,0,,,,DISCHARGED -9904,2022-09-14,29362.847315438463,448,Elective,2022-09-15,Abnormal,9904,439,4,0,,,,DISCHARGED -9905,2018-12-04,28095.84431737133,251,Urgent,2018-12-18,Inconclusive,9905,219,4,29,,,,DISCHARGED -9906,2019-07-11,26808.05931344583,442,Emergency,2019-07-17,Inconclusive,9906,312,0,4,Tremors and shaky hands,"Neurological examination, diagnostic tests, and medications for tremor management. Monitor for changes in tremor intensity and adjust treatment.","G25.9 - Essential tremor, unspecified",DISCHARGED -9907,2021-12-30,5747.392516161541,244,Urgent,2022-01-27,Inconclusive,9907,243,0,21,,,,DISCHARGED -9908,2019-05-30,47331.61914995915,454,Emergency,2019-06-24,Inconclusive,9908,351,0,11,Complains of persistent pain and stiffness in the hands.,Assess for musculoskeletal issues such as arthritis; prescribe pain relievers and recommend joint exercises.,"I49.9 - Cardiac arrhythmia, unspecified",DISCHARGED -9909,2022-01-05,28391.15507272907,198,Emergency,2022-01-20,Abnormal,9909,459,1,5,,,,DISCHARGED -9910,2018-11-10,36241.46652564103,495,Urgent,2018-11-22,Normal,9910,303,3,5,,,,DISCHARGED -9912,2021-01-15,5656.9830731089405,234,Emergency,2021-02-06,Inconclusive,9912,297,1,24,,,,DISCHARGED -9913,2019-04-27,27286.86204746917,485,Elective,2019-05-02,Inconclusive,9913,282,3,16,,,,DISCHARGED -9914,2020-03-21,11794.209346759251,279,Emergency,2020-04-03,Inconclusive,9914,73,4,25,,,,DISCHARGED -9915,2022-10-07,20330.483167829065,296,Elective,2022-10-14,Normal,9915,109,1,21,,,,DISCHARGED -9916,2021-02-19,25956.520629540857,199,Emergency,2021-02-27,Abnormal,9916,179,1,12,,,,DISCHARGED -9917,2019-07-13,33120.34668950248,219,Emergency,2019-08-11,Abnormal,9917,425,1,7,,,,DISCHARGED -9918,2019-02-27,48186.31782177068,360,Elective,2019-03-07,Normal,9918,31,2,23,,,,DISCHARGED -9919,2019-02-06,1725.1148896641266,415,Elective,2019-02-18,Normal,9919,233,3,11,,,,DISCHARGED -9920,2018-11-17,27613.682838009183,178,Emergency,2018-12-04,Inconclusive,9920,281,3,14,,,,DISCHARGED -9921,2022-07-08,10205.114353228477,131,Urgent,2022-08-03,Abnormal,9921,24,1,18,Speech difficulties,"Speech therapy, medications, and addressing underlying causes such as stroke, neurological conditions, or vocal cord issues.","R47.9 - Speech disturbance, unspecified",DISCHARGED -9922,2020-04-20,40729.62766346608,307,Elective,2020-05-09,Inconclusive,9922,330,2,28,Persistent feeling of sadness and hopelessness,"Psychiatric evaluation, counseling, and consideration of appropriate medications for depression.","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9923,2023-07-29,20494.000982512905,251,Urgent,2023-08-17,Inconclusive,9923,278,1,20,,,,DISCHARGED -9925,2022-03-01,3531.068696569242,429,Elective,2022-03-23,Normal,9925,225,3,25,Chest discomfort and abnormal heart sensations,"Immediate evaluation to rule out serious heart conditions. Treat with medications like beta-blockers, anticoagulants, or interventions like angioplasty.","I20.9 - Angina pectoris, unspecified",DISCHARGED -9926,2023-09-06,47419.39761466359,201,Emergency,,Normal,9926,56,4,19,,,,OPEN -9927,2023-08-15,11198.217185056232,130,Elective,2023-08-27,Abnormal,9927,179,2,27,,,,DISCHARGED -9928,2019-01-30,21250.44793985744,148,Urgent,2019-02-27,Normal,9928,231,2,16,Numbness in the fingers and toes,"Perform neurological tests, prescribe medications for nerve pain, and recommend physical therapy or lifestyle changes.","M79.2 - Neuralgia and neuritis, unspecified",DISCHARGED -9929,2021-09-27,24744.98632893047,478,Elective,2021-10-01,Normal,9929,381,1,8,,,,DISCHARGED -9930,2022-11-25,24646.93435464152,386,Emergency,2022-12-21,Inconclusive,9930,342,4,20,,,,DISCHARGED -9931,2021-01-06,21209.20306730281,360,Urgent,2021-01-26,Abnormal,9931,476,3,17,,,,DISCHARGED -9932,2023-07-17,44446.0092126594,264,Urgent,2023-07-25,Abnormal,9932,286,0,27,,,,DISCHARGED -9933,2023-07-09,18734.46151956501,154,Emergency,2023-07-27,Abnormal,9933,63,3,1,,,,DISCHARGED -9934,2019-10-15,29530.40378547967,133,Urgent,2019-11-06,Inconclusive,9934,454,3,10,,,,DISCHARGED -9935,2021-03-02,14816.249950810636,439,Elective,2021-03-14,Inconclusive,9935,231,4,22,,,,DISCHARGED -9936,2019-04-29,35092.03441461157,185,Emergency,2019-05-13,Abnormal,9936,288,2,19,,,,DISCHARGED -9937,2021-01-19,5147.765404180009,308,Elective,2021-02-04,Abnormal,9937,212,3,16,Painful or burning sensation during urination,Urological evaluation for potential urinary tract infections or other urological issues.,"N39.0 - Urinary tract infection, site not specified",DISCHARGED -9938,2022-09-21,31242.295549312053,315,Emergency,2022-09-30,Abnormal,9938,257,2,20,,,,DISCHARGED -9939,2023-02-18,11720.131219777695,342,Elective,2023-02-28,Inconclusive,9939,17,4,17,Abnormal discharge from the nipple,"Investigation for underlying breast conditions, medications, and potential surgical interventions.",N63 - Unspecified lump in breast,DISCHARGED -9940,2019-11-15,46252.88787641144,175,Elective,2019-11-19,Inconclusive,9940,174,4,14,,,,DISCHARGED -9942,2020-11-11,16708.970337510567,214,Urgent,2020-11-29,Normal,9942,416,1,6,,,,DISCHARGED -9943,2019-12-12,30199.155225932805,229,Elective,2019-12-14,Inconclusive,9943,228,0,15,,,,DISCHARGED -9944,2022-04-03,6725.077713641716,185,Emergency,2022-04-21,Abnormal,9944,225,4,24,,,,DISCHARGED -9945,2023-07-21,24267.25807774405,306,Elective,2023-08-02,Normal,9945,83,4,28,,,,DISCHARGED -9946,2019-06-13,26137.619165325617,236,Elective,2019-06-18,Abnormal,9946,290,2,0,,,,DISCHARGED -9947,2019-05-04,48795.9726263526,408,Emergency,2019-05-25,Abnormal,9947,434,4,27,,,,DISCHARGED -9948,2019-12-30,27439.21562104252,125,Urgent,2020-01-10,Normal,9948,369,3,17,,,,DISCHARGED -9949,2022-02-14,4692.280656836254,451,Urgent,2022-03-10,Normal,9949,245,1,26,Chief complaint is a constant feeling of lightheadedness.,Conduct a comprehensive evaluation of cardiovascular and neurological health; recommend lifestyle changes or medications.,I25.10 - Atherosclerotic heart disease of native coronary artery without angina pectoris,DISCHARGED -9950,2023-01-10,7397.07567111418,118,Urgent,,Abnormal,9950,401,1,21,,,,OPEN -9951,2023-02-06,47210.79219383532,233,Urgent,2023-02-28,Normal,9951,109,3,7,,,,DISCHARGED -9952,2021-12-31,21104.79583255904,258,Elective,2022-01-16,Abnormal,9952,253,4,6,,,,DISCHARGED -9953,2019-07-17,10612.01005106014,333,Emergency,2019-08-03,Abnormal,9953,87,0,24,,,,DISCHARGED -9955,2023-03-11,26695.446744601653,452,Elective,2023-03-23,Abnormal,9955,71,4,29,,,,DISCHARGED -9956,2021-08-24,34762.966698467644,204,Elective,2021-09-22,Normal,9956,380,1,1,,,,DISCHARGED -9957,2020-05-29,6062.385270237259,447,Emergency,2020-06-10,Inconclusive,9957,29,0,11,,,,DISCHARGED -9958,2022-01-01,21208.288062255288,478,Urgent,2022-01-13,Normal,9958,171,2,15,,,,DISCHARGED -9959,2020-06-01,4662.825734981702,464,Elective,2020-06-12,Normal,9959,308,2,8,,,,DISCHARGED -9960,2019-07-01,31462.12268844626,478,Elective,2019-07-22,Abnormal,9960,393,4,19,,,,DISCHARGED -9961,2021-11-05,21106.01470190646,340,Elective,2021-11-22,Inconclusive,9961,342,4,10,Skin rash,"Topical creams or ointments, antihistamines, and identification and avoidance of triggers. Further testing may be done to determine underlying causes such as allergies or autoimmune conditions. Regular follow-up to assess rash resolution and manage any flare-ups.","L30.9 - Dermatitis, unspecified",DISCHARGED -9962,2022-09-13,23271.652610987217,120,Elective,2022-09-27,Inconclusive,9962,435,0,14,,,,DISCHARGED -9963,2022-11-20,35072.34407888043,147,Urgent,2022-12-13,Abnormal,9963,176,0,2,Sudden onset of facial swelling,"Emergency medical attention, allergy evaluation, and possible medication",T78.40 - Unspecified adverse effect of drug or medicament,DISCHARGED -9964,2022-11-29,10615.971734907136,353,Elective,2022-12-15,Abnormal,9964,138,4,22,,,,DISCHARGED -9965,2021-10-23,11621.731148179237,245,Elective,2021-10-27,Abnormal,9965,193,1,20,Loss of bladder control,"Pelvic floor exercises, medications, and evaluation for underlying neurological or urological conditions.",N82.9 - Fistula of unspecified female genital tract,DISCHARGED -9966,2021-02-04,6929.770519816653,235,Urgent,2021-02-22,Inconclusive,9966,185,2,12,,,,DISCHARGED -9967,2023-08-21,47126.00320093231,256,Elective,2023-09-07,Normal,9967,217,0,20,,,,DISCHARGED -9968,2022-08-18,31861.53905660595,484,Elective,2022-08-26,Inconclusive,9968,163,1,27,,,,DISCHARGED -9969,2023-09-12,7716.363471943133,462,Elective,2023-09-20,Inconclusive,9969,160,4,12,,,,DISCHARGED -9970,2020-10-11,9640.998632347708,308,Emergency,2020-11-03,Abnormal,9970,430,3,1,Frequent nosebleeds with no apparent cause,"Identification and treatment of underlying causes, including nasal moisture, cauterization, or potential referral to an ear, nose, and throat specialist.","J30.9 - Allergic rhinitis, unspecified",DISCHARGED -9971,2021-07-25,38831.70789279436,151,Emergency,2021-08-11,Abnormal,9971,12,0,5,,,,DISCHARGED -9972,2019-09-15,27648.104886261364,134,Urgent,2019-09-19,Abnormal,9972,295,3,5,,,,DISCHARGED -9973,2020-11-17,18614.469753615056,202,Urgent,2020-12-08,Abnormal,9973,88,1,11,,,,DISCHARGED -9974,2022-05-09,10021.900739617146,298,Urgent,2022-05-31,Abnormal,9974,323,2,3,,,,DISCHARGED -9975,2023-09-13,20793.03137670616,351,Urgent,2023-09-21,Normal,9975,41,1,4,,,,DISCHARGED -9976,2019-03-06,37726.18175745981,245,Elective,2019-04-05,Normal,9976,402,2,22,Giddiness and feeling light-headed,"Address underlying causes such as dehydration, inner ear issues, or cardiovascular problems. Recommend lifestyle changes and medications as needed.",R42 - Dizziness and giddiness,DISCHARGED -9977,2020-05-24,22434.60461042568,103,Emergency,2020-05-29,Abnormal,9977,209,1,29,,,,DISCHARGED -9978,2021-03-08,4997.5802356219,170,Emergency,2021-03-31,Normal,9978,228,0,7,,,,DISCHARGED -9979,2022-01-30,14416.634915039309,307,Urgent,2022-02-19,Inconclusive,9979,349,0,5,"Persistent, non-productive cough with blood-tinged sputum","Chest X-ray, assessment for respiratory conditions, and consultation with a pulmonologist.","J20.9 - Acute bronchitis, unspecified",DISCHARGED -9980,2023-01-09,47369.54997726243,298,Urgent,2023-01-31,Abnormal,9980,274,3,20,Persistent pain in the wrists,"Orthopedic evaluation, imaging studies, and possible physical therapy or pain management",M25.50 - Pain in unspecified joint,DISCHARGED -9981,2021-08-23,46629.771749257714,151,Emergency,2021-09-21,Abnormal,9981,441,1,27,,,,DISCHARGED -9982,2021-01-26,35961.40669720744,235,Elective,2021-02-13,Abnormal,9982,278,1,2,,,,DISCHARGED -9983,2022-01-22,1675.088638953351,374,Elective,2022-02-05,Abnormal,9983,250,3,22,,,,DISCHARGED -9984,2021-09-17,37181.84125741365,151,Emergency,2021-10-02,Normal,9984,309,4,7,,,,DISCHARGED -9985,2019-09-14,27476.721750744066,351,Urgent,2019-09-26,Inconclusive,9985,207,1,18,,,,DISCHARGED -9987,2022-04-18,27920.309415771462,128,Urgent,2022-05-09,Inconclusive,9987,320,1,20,,,,DISCHARGED -9989,2020-07-23,36044.46748784443,137,Elective,2020-08-15,Abnormal,9989,139,1,10,,,,DISCHARGED -9990,2020-10-30,48753.12903257892,179,Urgent,2020-11-13,Inconclusive,9990,279,4,17,,,,DISCHARGED -9991,2022-06-03,14426.402161726,265,Emergency,2022-06-07,Normal,9991,33,0,9,,,,DISCHARGED -9994,2021-12-25,16793.598395039444,341,Elective,2022-01-06,Inconclusive,9994,308,3,25,,,,DISCHARGED -9995,2022-07-29,39606.84008259848,110,Elective,2022-08-02,Abnormal,9995,391,4,27,,,,DISCHARGED -9996,2022-01-06,5995.717487831519,244,Emergency,2022-01-29,Normal,9996,17,2,19,,,,DISCHARGED -9997,2022-07-01,49559.20290467316,312,Elective,2022-07-15,Normal,9997,56,2,11,Unexplained sadness or crying,"Psychological evaluation, counseling, and addressing underlying mental health issues","F32.9 - Major depressive disorder, single episode, unspecified",DISCHARGED -9998,2020-02-06,25236.344760975877,420,Urgent,2020-02-26,Normal,9998,111,4,19,,,,DISCHARGED -9999,2023-03-22,37223.965864725855,290,Emergency,2023-04-15,Abnormal,9999,4,4,27,,,,DISCHARGED diff --git a/langchain-rag-app/source_code_step_5/docker-compose.yml b/langchain-rag-app/source_code_step_5/docker-compose.yml index a68dd3a135..f66b89a50d 100644 --- a/langchain-rag-app/source_code_step_5/docker-compose.yml +++ b/langchain-rag-app/source_code_step_5/docker-compose.yml @@ -1,19 +1,37 @@ -version: '3' - services: + neo4j: + image: neo4j:2026.05-community + ports: + - "7474:7474" + - "7687:7687" + environment: + - NEO4J_AUTH=neo4j/${NEO4J_PASSWORD} + - NEO4J_PLUGINS=["apoc"] + volumes: + - neo4j_data:/data + hospital_neo4j_etl: build: context: ./hospital_neo4j_etl env_file: - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 + depends_on: + - neo4j chatbot_api: build: context: ./chatbot_api env_file: - .env + environment: + - NEO4J_URI=bolt://neo4j:7687 depends_on: - - hospital_neo4j_etl + neo4j: + condition: service_started + hospital_neo4j_etl: + condition: service_completed_successfully ports: - "8000:8000" @@ -25,4 +43,7 @@ services: depends_on: - chatbot_api ports: - - "8501:8501" \ No newline at end of file + - "8501:8501" + +volumes: + neo4j_data: diff --git a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/Dockerfile b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/Dockerfile index 71ff24faa2..7265e32282 100644 --- a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/Dockerfile +++ b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.11-slim +FROM python:3.14-slim WORKDIR /app COPY ./src/ /app COPY ./pyproject.toml /code/pyproject.toml -RUN pip install /code/. +RUN python -m pip install /code/. -CMD ["sh", "entrypoint.sh"] \ No newline at end of file +CMD ["sh", "entrypoint.sh"] diff --git a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/pyproject.toml b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/pyproject.toml index 35c7467ebb..eb44f09746 100644 --- a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/pyproject.toml +++ b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/pyproject.toml @@ -2,9 +2,9 @@ name = "hospital_neo4j_etl" version = "0.1" dependencies = [ - "neo4j==5.14.1", + "neo4j==6.2.0", "retry==0.9.2" ] [project.optional-dependencies] -dev = ["black", "flake8"] \ No newline at end of file +dev = ["ruff"] diff --git a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/entrypoint.sh b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/entrypoint.sh index 94764de2a7..af607f4c6a 100644 --- a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/entrypoint.sh +++ b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/entrypoint.sh @@ -4,4 +4,4 @@ echo "Running ETL to move hospital data from csvs to Neo4j..." # Run the ETL script -python hospital_bulk_csv_write.py \ No newline at end of file +python hospital_bulk_csv_write.py diff --git a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/hospital_bulk_csv_write.py b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/hospital_bulk_csv_write.py index fa7c6c161e..84d9b82766 100644 --- a/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/hospital_bulk_csv_write.py +++ b/langchain-rag-app/source_code_step_5/hospital_neo4j_etl/src/hospital_bulk_csv_write.py @@ -29,7 +29,7 @@ def _set_uniqueness_constraints(tx, node): query = f"""CREATE CONSTRAINT IF NOT EXISTS FOR (n:{node}) REQUIRE n.id IS UNIQUE;""" - _ = tx.run(query, {}) + tx.run(query, {}) @retry(tries=100, delay=10) @@ -55,7 +55,7 @@ def load_hospital_graph_from_csv() -> None: name: hospitals.hospital_name, state_name: hospitals.hospital_state}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading payer nodes") with driver.session(database="neo4j") as session: @@ -65,7 +65,7 @@ def load_hospital_graph_from_csv() -> None: MERGE (p:Payer {{id: toInteger(payers.payer_id), name: payers.payer_name}}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading physician nodes") with driver.session(database="neo4j") as session: @@ -80,7 +80,7 @@ def load_hospital_graph_from_csv() -> None: salary: toFloat(physicians.salary) }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading visit nodes") with driver.session(database="neo4j") as session: @@ -103,7 +103,7 @@ def load_hospital_graph_from_csv() -> None: ON CREATE SET v.discharge_date = visits.discharge_date ON MATCH SET v.discharge_date = visits.discharge_date """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading patient nodes") with driver.session(database="neo4j") as session: @@ -117,7 +117,7 @@ def load_hospital_graph_from_csv() -> None: blood_type: patients.patient_blood_type }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading review nodes") with driver.session(database="neo4j") as session: @@ -131,7 +131,7 @@ def load_hospital_graph_from_csv() -> None: hospital_name: reviews.hospital_name }}); """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'AT' relationships") with driver.session(database="neo4j") as session: @@ -142,7 +142,7 @@ def load_hospital_graph_from_csv() -> None: toInteger(trim(row.`hospital_id`))}}) MERGE (source)-[r: `AT`]->(target) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'WRITES' relationships") with driver.session(database="neo4j") as session: @@ -152,7 +152,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (r:Review {{id: toInteger(reviews.review_id)}}) MERGE (v)-[writes:WRITES]->(r) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'TREATS' relationships") with driver.session(database="neo4j") as session: @@ -162,7 +162,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[treats:TREATS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'COVERED_BY' relationships") with driver.session(database="neo4j") as session: @@ -175,7 +175,7 @@ def load_hospital_graph_from_csv() -> None: covered_by.service_date = visits.discharge_date, covered_by.billing_amount = toFloat(visits.billing_amount) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'HAS' relationships") with driver.session(database="neo4j") as session: @@ -185,7 +185,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (v:Visit {{id: toInteger(visits.visit_id)}}) MERGE (p)-[has:HAS]->(v) """ - _ = session.run(query, {}) + session.run(query, {}) LOGGER.info("Loading 'EMPLOYS' relationships") with driver.session(database="neo4j") as session: @@ -195,7 +195,7 @@ def load_hospital_graph_from_csv() -> None: MATCH (p:Physician {{id: toInteger(visits.physician_id)}}) MERGE (h)-[employs:EMPLOYS]->(p) """ - _ = session.run(query, {}) + session.run(query, {}) if __name__ == "__main__": diff --git a/langchain-rag-app/source_code_step_5/requirements.txt b/langchain-rag-app/source_code_step_5/requirements.txt index 55ae3ace27..acf8be7803 100644 --- a/langchain-rag-app/source_code_step_5/requirements.txt +++ b/langchain-rag-app/source_code_step_5/requirements.txt @@ -1,10 +1,2 @@ -anyio==4.3.0 -certifi==2024.2.2 -charset-normalizer==3.3.2 -h11==0.14.0 -httpcore==1.0.3 -httpx==0.26.0 -idna==3.6 -requests==2.31.0 -sniffio==1.3.0 -urllib3==2.2.1 +httpx==0.28.1 +requests==2.34.2 diff --git a/langchain-rag-app/source_code_step_5/tests/async_agent_requests.py b/langchain-rag-app/source_code_step_5/tests/async_agent_requests.py index 89194d56e4..6badbb11b5 100644 --- a/langchain-rag-app/source_code_step_5/tests/async_agent_requests.py +++ b/langchain-rag-app/source_code_step_5/tests/async_agent_requests.py @@ -21,20 +21,22 @@ async def make_bulk_requests(url, data): questions = [ - "What is the current wait time at wallace-hamilton hospital?", + "What is the current wait time at Wallace-Hamilton hospital?", "Which hospital has the shortest wait time?", - "At which hospitals are patients complaining about billing and insurance issues?", # E501 + "At which hospitals are patients complaining about billing and " + "insurance issues?", "What is the average duration in days for emergency visits?", "What are patients saying about the nursing staff at Castaneda-Hardy?", "What was the total billing amount charged to each payer for 2023?", - "What is the average billing amount for medicaid visits?", + "What is the average billing amount for Medicaid visits?", "How many patients has Dr. Ryan Brown treated?", "Which physician has the lowest average visit duration in days?", "How many visits are open and what is their average duration in days?", "Have any patients complained about noise?", "How much was billed for patient 789's stay?", "Which physician has billed the most to cigna?", - "Which state had the largest percent increase in medicaid visits from 2022 to 2023?", # E501 + "Which state had the largest percent increase in Medicaid " + "visits from 2022 to 2023?", ] request_bodies = [{"text": q} for q in questions] diff --git a/langchain-rag-app/source_code_step_5/tests/sync_agent_requests.py b/langchain-rag-app/source_code_step_5/tests/sync_agent_requests.py index 0f81363f78..f2a38061ec 100644 --- a/langchain-rag-app/source_code_step_5/tests/sync_agent_requests.py +++ b/langchain-rag-app/source_code_step_5/tests/sync_agent_requests.py @@ -5,20 +5,22 @@ CHATBOT_URL = "http://localhost:8000/hospital-rag-agent" questions = [ - "What is the current wait time at wallace-hamilton hospital?", + "What is the current wait time at Wallace-Hamilton hospital?", "Which hospital has the shortest wait time?", - "At which hospitals are patients complaining about billing and insurance issues?", # E501 + "At which hospitals are patients complaining about billing and " + "insurance issues?", "What is the average duration in days for emergency visits?", "What are patients saying about the nursing staff at Castaneda-Hardy?", "What was the total billing amount charged to each payer for 2023?", - "What is the average billing amount for medicaid visits?", + "What is the average billing amount for Medicaid visits?", "How many patients has Dr. Ryan Brown treated?", "Which physician has the lowest average visit duration in days?", "How many visits are open and what is their average duration in days?", "Have any patients complained about noise?", "How much was billed for patient 789's stay?", "Which physician has billed the most to cigna?", - "Which state had the largest percent increase in medicaid visits from 2022 to 2023?", # E501 + "Which state had the largest percent increase in Medicaid " + "visits from 2022 to 2023?", ] request_bodies = [{"text": q} for q in questions]